/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF, #FFE4E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FF1493, #FF6B35);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #1a1a1a;
    border: 2px solid rgba(255, 20, 147, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 20, 147, 0.1);
    border-color: #FF1493;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 8px rgba(255, 20, 147, 0.3));
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF1493, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FF1493, #FF6B35);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-mobile {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #FF1493;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FF1493 0%, #FF6B35 100%);
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.2) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0 4rem;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF1493, #FF6B35);
    border-radius: 32px;
    padding: 2rem 1.5rem;
    overflow: hidden;
    position: relative;
}

.mock-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mock-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mock-logo img {
    width: 40px;
    height: 40px;
}

.mock-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.mock-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.mock-spills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mock-spill {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mock-avatar {
    width: 40px;
    height: 40px;
    background: #FF1493;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mock-user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.mock-username {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1a1a1a;
}

.mock-handle {
    font-size: 0.8rem;
    color: #666;
}

.mock-time {
    font-size: 0.8rem;
    color: #999;
    margin-left: auto;
}

.mock-content p {
    font-size: 0.85rem;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.mock-hashtags {
    font-size: 0.8rem;
    color: #FF1493;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.mock-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #666;
}

.mock-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.floating-emoji:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-emoji:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-emoji:nth-child(3) {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.floating-emoji:nth-child(4) {
    top: 10%;
    right: 25%;
    animation-delay: 3s;
}

.floating-emoji:nth-child(5) {
    bottom: 60%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-3deg); }
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: #f8f9fa;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #FF1493, #FF6B35);
    transition: left 0.3s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.7;
}

/* Download Section */
.download {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FF1493 0%, #FF6B35 100%);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-title {
    color: white;
    margin-bottom: 1.5rem;
}

.download-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.waitlist-container {
    margin-bottom: 2rem;
}

.waitlist-form {
    width: 100%;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.waitlist-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    outline: none;
}

.waitlist-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.waitlist-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.waitlist-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.download-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid white;
}

/* Download Visual */
.download-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-phones {
    position: relative;
    width: 400px;
    height: 500px;
}

.phone {
    position: absolute;
    width: 200px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 6px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.phone-1 {
    top: 0;
    left: 0;
    z-index: 2;
    transform: rotate(-15deg);
}

.phone-2 {
    top: 50px;
    right: 0;
    z-index: 1;
    transform: rotate(15deg);
}

.phone-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF1493, #FF6B35);
    border-radius: 24px;
    padding: 1.5rem 1rem;
    color: white;
    overflow: hidden;
    box-sizing: border-box;
}

.profile-mockup {
    text-align: center;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF1493;
    font-weight: 800;
    font-size: 1.5rem;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    margin-top: auto;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.profile-mockup {
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.profile-mockup h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    text-align: left;
}

.profile-mockup p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.trending-badge {
    background: #FF1493;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.profile-bio {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    opacity: 0.9;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.trending-mockup {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.trending-mockup h3 {
    margin-bottom: 0.5rem;
    text-align: center;
    flex-shrink: 0;
}

.trending-text {
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.trending-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
    overflow: hidden;
}

.trending-rank {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FF1493;
    min-width: 24px;
}

.trending-topic {
    font-size: 0.85rem;
    font-weight: 600;
    flex: 1;
    margin-left: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.trending-count {
    font-size: 0.75rem;
    opacity: 0.7;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF1493, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: #ccc;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF1493;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #FF1493;
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #FF1493;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero {
        padding-top: 100px; /* Increased for mobile navbar */
    }
    
    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0 2rem;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    /* Phone mockup mobile */
    .phone-mockup {
        width: 280px;
        height: 560px;
        margin: 0 auto;
    }
    
    .mock-spills {
        gap: 0.75rem;
    }
    
    .mock-spill {
        padding: 0.75rem;
    }
    
    .mock-username {
        font-size: 0.8rem;
    }
    
    .mock-handle, .mock-time {
        font-size: 0.75rem;
    }
    
    .mock-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .mock-hashtags {
        font-size: 0.75rem;
    }
    
    .mock-stats {
        font-size: 0.7rem;
        gap: 0.75rem;
    }
    
    /* Features mobile */
    .features {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    /* Download section mobile */
    .download {
        padding: 4rem 0;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .download-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .download-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .waitlist-container {
        width: 100%;
        padding: 0 1rem;
    }
    
    .input-group {
        flex-direction: column;
        gap: 0.75rem;
        padding: 12px;
    }
    
    .waitlist-input {
        text-align: left;
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .waitlist-btn {
        padding: 1.25rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .download-note {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    /* Download phones mobile */
    .download-phones {
        width: 320px;
        height: 400px;
        margin: 0 auto;
    }
    
    .phone {
        width: 160px;
        height: 320px;
    }
    
    .phone-1 {
        left: 30px;
        top: 20px;
    }
    
    .phone-2 {
        right: 30px;
        top: 60px;
    }
    
    .phone-content {
        padding: 1rem 0.75rem;
        font-size: 0.8rem;
        overflow: hidden;
    }
    
    .profile-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .profile-bio {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .trending-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    
    .trending-text {
        font-size: 0.7rem;
    }
    
    .trending-item {
        padding: 0.5rem;
        margin-bottom: 0.3rem;
    }
    
    .trending-rank {
        font-size: 0.75rem;
    }
    
    .trending-topic {
        font-size: 0.8rem;
    }
    
    .trending-count {
        font-size: 0.7rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        text-align: left;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 120px; /* Even more for small mobile */
    }
    
    .hero-content {
        padding: 1rem 0 1rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        max-width: 240px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .phone-screen {
        padding: 1.5rem 1rem;
    }
    
    .mock-header h3 {
        font-size: 1.2rem;
    }
    
    .mock-header p {
        font-size: 0.8rem;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1.25rem;
        margin: 0;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .download {
        padding: 3rem 0;
    }
    
    .download-title {
        font-size: 2.2rem;
    }
    
    .download-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .waitlist-container {
        padding: 0 0.5rem;
    }
    
    .input-group {
        padding: 8px;
    }
    
    .waitlist-input {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .waitlist-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .download-phones {
        width: 280px;
        height: 350px;
    }
    
    .phone {
        width: 140px;
        height: 280px;
    }
    
    .floating-emoji {
        font-size: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}