* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Theme (Default) */
    --bg-primary: #fefefe;
    --bg-secondary: #f8f8f8;
    --text-primary: #1f1f1f;
    --text-secondary: #5a5a5a;
    --accent: #0066ff;
    --accent-hover: #0052cc;
    --accent-rgb: 0, 102, 255;
    --border: #e5e5e5;
    --shadow: rgba(0, 0, 0, 0.08);
    --transition-speed: 0.25s;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    background: 
        radial-gradient(circle at 10% 20%, rgba(var(--accent-rgb), 0.04), transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(var(--accent-rgb), 0.04), transparent 60%),
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.01) 0%, transparent 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.nav-logo {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
}

.nav-logo .logo {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.05);
}

.nav-link.active {
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.1);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Warning Banner */
.warning-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 998;
    width: 100%;
}

.warning-banner strong {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        gap: 0.25rem;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .container {
        padding: 5rem 1.5rem 2rem;
    }
    
    .warning-banner {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        top: 60px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem 3rem;
    position: relative;
    z-index: 1;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.03));
    animation: float 20s infinite ease-in-out;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, 50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Header */
header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: #0066ff;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    transition: transform var(--transition-speed) ease;
    cursor: default;
}

.logo:hover {
    transform: scale(1.02);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-primary) 50%, rgba(var(--accent-rgb), 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.subtitle {
    font-size: clamp(1.125rem, 2.25vw, 1.375rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.7;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 16px rgba(var(--accent-rgb, 74, 158, 255), 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(var(--accent-rgb, 74, 158, 255), 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(var(--accent-rgb, 74, 158, 255), 0.35);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Launch Badge */
.launch-badge-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
    transition: all var(--transition-speed) ease;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 1px 2px rgba(0, 0, 0, 0.08);
}

.launch-badge:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 
        0 4px 12px rgba(var(--accent-rgb), 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.7);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
        box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0);
    }
}

/* Waitlist Section */
.waitlist-section {
    background-color: var(--bg-primary);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin: 3rem auto;
    max-width: 850px;
    text-align: center;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.waitlist-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.waitlist-section:hover {
    border-color: var(--accent);
    box-shadow: 
        0 4px 16px rgba(var(--accent-rgb), 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.waitlist-section:hover::before {
    opacity: 1;
}

.waitlist-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.credits-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0.06));
    border: 1.5px solid var(--accent);
    border-radius: 12px;
    padding: 0.875rem 1.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    box-shadow: 
        0 2px 8px rgba(var(--accent-rgb), 0.15),
        0 1px 4px rgba(var(--accent-rgb), 0.1);
    transition: all 0.3s ease;
}

.credits-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(var(--accent-rgb), 0.2),
        0 2px 6px rgba(var(--accent-rgb), 0.15);
}

.credits-icon {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
}

.credits-text {
    font-family: 'Inter', sans-serif;
}

.credits-text strong {
    color: var(--accent);
    font-weight: 700;
}

.waitlist-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

#email-input {
    flex: 1;
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all var(--transition-speed) ease;
    letter-spacing: -0.01em;
}

#email-input::placeholder {
    color: var(--text-secondary);
}

#email-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(var(--accent-rgb), 0.35),
        0 2px 10px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(var(--accent-rgb), 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(var(--accent-rgb), 0.2),
        0 4px 16px rgba(var(--accent-rgb), 0.3);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.submit-btn:hover .arrow-icon {
    transform: translateX(5px);
}

.message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9375rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.message.show {
    opacity: 1;
    transform: translateY(0);
}

.message.success {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1.5px solid #EF4444;
}

/* Features Preview */
.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 5rem 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.06);
    will-change: transform;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 
        0 4px 16px rgba(var(--accent-rgb), 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 4px 16px rgba(var(--accent-rgb), 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    margin: 5rem 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

.benefits-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item-center {
    grid-column: 2;
    grid-row: 2;
}

.benefit-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.06);
    will-change: transform;
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 
        0 4px 16px rgba(var(--accent-rgb), 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 4px 16px rgba(var(--accent-rgb), 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin: 5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.faq-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 
        0 4px 16px rgba(var(--accent-rgb), 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.4s both;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(var(--accent-rgb), 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 8rem 1rem 1rem;
    }
    
    .logo {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
    
    .tagline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .subtitle {
        font-size: clamp(1rem, 3vw, 1.125rem);
    }
    
    .waitlist-section {
        padding: 1.5rem 1rem;
    }
    
    .input-wrapper {
        flex-direction: column;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .features-preview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item-center {
        grid-column: 1;
        grid-row: auto;
    }

    .benefits-title {
        font-size: 1.5rem;
    }

    .credits-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.9375rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 0.75rem 1rem;
    }
    
    .waitlist-section {
        padding: 1.25rem 0.75rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.privacy-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.privacy-section p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.privacy-section li {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.privacy-section a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-section a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 1rem 0;
    }

    .privacy-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.25rem;
    }
}
