/* ═══════════════════════════════════════════════ */
/* RESET & BASE                                    */
/* ═══════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #050810;
    color: #e6edf3;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════════ */
/* AMBIENT BACKGROUND GLOW                         */
/* ═══════════════════════════════════════════════ */
.bg-glow {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 10%, rgba(0, 255, 136, 0.04), transparent),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(56, 189, 248, 0.03), transparent),
        radial-gradient(ellipse 40% 30% at 50% 90%, rgba(168, 85, 247, 0.02), transparent);
}

/* ═══════════════════════════════════════════════ */
/* NAVIGATION                                      */
/* ═══════════════════════════════════════════════ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 40px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 20px; font-weight: 800; letter-spacing: -0.6px;
}
.nav-logo span {
    background: linear-gradient(90deg, #fff 60%, rgba(255,255,255,0.65));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-logo-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, #0f1628, #080c1c);
    border: 1px solid rgba(0,255,102,0.3);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 14px rgba(0,255,102,0.22);
}
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 14px; color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 20px !important; 
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important; 
    font-weight: 600 !important;
    transition: all 0.3s !important;
    text-align: center !important;
    letter-spacing: 0.3px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}
.nav-btn:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px) !important;
}
.nav-btn-primary {
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.12), rgba(0, 255, 102, 0.08)) !important;
    color: #00ff66 !important;
    border: 1px solid rgba(0, 255, 102, 0.25) !important;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2), 0 2px 10px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    letter-spacing: 0.5px !important;
}

/* ═══════════════════════════════════════════════ */
/* BUTTONS                                         */
/* ═══════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.12), rgba(0, 255, 102, 0.08));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #00ff66; font-weight: 700; font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.15), 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 255, 102, 0.25);
    position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.18), rgba(0, 255, 102, 0.12));
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 255, 102, 0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff; font-weight: 600; font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: 10px; width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: #e6edf3; font-weight: 600; font-size: 14px;
    transition: all 0.2s;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════ */
/* HERO                                            */
/* ═══════════════════════════════════════════════ */
.hero {
    position: relative; z-index: 1;
    padding: 140px 40px 80px;
    text-align: center;
    max-width: 1100px; margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px; border-radius: 20px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    color: #00ff88; font-size: 13px; font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}
.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.gradient-text {
    background: linear-gradient(135deg, #00ff88 0%, #38bdf8 50%, #a855f7 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 18px; color: rgba(255,255,255,0.5);
    max-width: 560px; margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-actions {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Hero mockup */
.hero-visual { margin: 0 auto; max-width: 700px; }
.hero-mockup {
    border-radius: 16px; overflow: hidden;
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0, 255, 136, 0.03);
}
.mockup-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.mockup-url {
    margin-left: 12px; font-size: 12px; color: rgba(255,255,255,0.3);
    font-family: 'SF Mono', Monaco, monospace;
}
.mockup-content { padding: 32px 28px 48px; position: relative; }
.mockup-text {
    font-size: 16px; line-height: 2; color: rgba(255,255,255,0.7);
    text-align: left;
}
.mockup-text .w { display: inline; padding: 2px 0; border-radius: 3px; transition: all 0.3s; }
.mockup-text .w.read { color: rgba(255,255,255,0.35); }
.mockup-text .w.sent {
    background: rgba(0, 255, 136, 0.06);
    color: rgba(255,255,255,0.6);
}
.mockup-text .w.neb {
    background: rgba(0, 255, 136, 0.12);
    color: rgba(255,255,255,0.8);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.08);
}
.mockup-text .w.active {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.35), rgba(56, 189, 248, 0.25));
    color: #fff; font-weight: 600;
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.2), 0 0 4px rgba(0, 255, 136, 0.3);
    border-radius: 4px; padding: 2px 4px;
}

/* Mockup pill widget */
.mockup-pill {
    position: absolute; bottom: 12px; right: 16px;
    display: flex; align-items: center; gap: 6px;
    padding: 0 8px; height: 32px; border-radius: 16px;
    background: rgba(8, 12, 28, 0.95);
    border: 1px solid rgba(0, 255, 136, 0.15);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    font-size: 11px;
}
.mp-btn {
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #00ff88; font-size: 10px;
}
.mp-btn.sm { font-size: 8px; color: rgba(0, 255, 136, 0.7); }
.mp-status { color: rgba(255,255,255,0.4); font-size: 10px; }
.mp-speed {
    color: rgba(0, 255, 136, 0.6); font-size: 10px; font-weight: 600;
    padding: 2px 5px; border-radius: 4px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}
.mp-close { color: rgba(255,255,255,0.2); font-size: 9px; }
.mp-progress {
    position: absolute; bottom: 0; left: 12px; right: 12px;
    height: 2px; background: rgba(255,255,255,0.06); border-radius: 1px;
}
.mp-fill {
    width: 45%; height: 100%; border-radius: 1px;
    background: linear-gradient(90deg, #00ff88, #38bdf8);
}

/* Hero stats */
.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 40px;
    margin-top: 60px;
}
.stat { text-align: center; }
.stat-num {
    display: block; font-size: 28px; font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #38bdf8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.4); }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.08); }

/* ═══════════════════════════════════════════════ */
/* SECTIONS                                        */
/* ═══════════════════════════════════════════════ */
.section {
    position: relative; z-index: 1;
    padding: 100px 40px;
    max-width: 1100px; margin: 0 auto;
}
.section-dark {
    max-width: 100%;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.section-dark > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800; text-align: center;
    letter-spacing: -1px; margin-bottom: 12px;
}
.section-sub {
    text-align: center; color: rgba(255,255,255,0.45);
    font-size: 16px; margin-bottom: 56px;
}

/* ═══════════════════════════════════════════════ */
/* FEATURES GRID                                   */
/* ═══════════════════════════════════════════════ */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    padding: 32px 28px; border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(0, 255, 136, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-card h3 {
    font-size: 17px; font-weight: 700; margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ═══════════════════════════════════════════════ */
/* VOICES                                          */
/* ═══════════════════════════════════════════════ */
.voices-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.voice-card {
    padding: 28px 24px; border-radius: 16px; text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
    position: relative;
}
.voice-card:hover {
    border-color: rgba(0, 255, 136, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.voice-avatar { font-size: 36px; margin-bottom: 12px; }
.voice-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.voice-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; margin-bottom: 12px; }
.voice-tag {
    display: inline-block; padding: 3px 10px; border-radius: 6px;
    background: rgba(0, 255, 136, 0.08);
    color: rgba(0, 255, 136, 0.7); font-size: 11px; font-weight: 600;
}

/* ═══════════════════════════════════════════════ */
/* HOW IT WORKS                                    */
/* ═══════════════════════════════════════════════ */
.steps-row {
    display: flex; align-items: flex-start; justify-content: center; gap: 32px;
}
.step {
    flex: 1; max-width: 280px; text-align: center;
    padding: 32px 24px; border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}
.step-num {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(56, 189, 248, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: #00ff88;
    margin: 0 auto 16px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.step-arrow {
    font-size: 24px; color: rgba(255,255,255,0.15);
    margin-top: 48px; flex-shrink: 0;
}

/* ═══════════════════════════════════════════════ */
/* USE CASES                                       */
/* ═══════════════════════════════════════════════ */
.usecases-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.usecase-card {
    padding: 28px 24px; border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.usecase-card:hover {
    border-color: rgba(0, 255, 136, 0.1);
    transform: translateY(-4px);
}
.usecase-icon { font-size: 28px; margin-bottom: 14px; }
.usecase-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.usecase-card p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ═══════════════════════════════════════════════ */
/* PRICING                                         */
/* ═══════════════════════════════════════════════ */
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; align-items: start;
}
.pricing-card {
    padding: 36px 28px; border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.pricing-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.pricing-card.featured {
    background: rgba(0, 255, 136, 0.03);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.08);
    transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 16px; border-radius: 8px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #050810; font-size: 12px; font-weight: 700;
    white-space: nowrap;
}
.pricing-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pricing-price {
    font-size: 48px; font-weight: 800; letter-spacing: -2px;
    margin-bottom: 0;
}
.pricing-cents { font-size: 24px; }
.pricing-period { font-size: 14px; color: rgba(255,255,255,0.35); margin-bottom: 28px; }
.pricing-features {
    list-style: none; text-align: left;
    margin-bottom: 28px;
}
.pricing-features li {
    padding: 8px 0; font-size: 14px; color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.pricing-features li.muted { color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════ */
/* TESTIMONIALS                                    */
/* ═══════════════════════════════════════════════ */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial {
    padding: 28px 24px; border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}
.stars { color: #fbbf24; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p {
    font-size: 14px; color: rgba(255,255,255,0.55);
    line-height: 1.7; margin-bottom: 16px; font-style: italic;
}
.testimonial-author { font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 600; }

/* ═══════════════════════════════════════════════ */
/* CTA                                             */
/* ═══════════════════════════════════════════════ */
.cta-section {
    position: relative; z-index: 1;
    text-align: center;
    padding: 100px 40px;
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 255, 136, 0.04), transparent);
}
.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800; letter-spacing: -1.5px;
    margin-bottom: 12px;
}
.cta-sub {
    font-size: 17px; color: rgba(255,255,255,0.45);
    margin-bottom: 36px;
}

/* ═══════════════════════════════════════════════ */
/* FOOTER                                          */
/* ═══════════════════════════════════════════════ */
.footer {
    position: relative; z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 60px 40px 30px;
}
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between;
    gap: 60px;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.3); margin-top: 12px; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    max-width: 1100px; margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════ */
/* RESPONSIVE                                      */
/* ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
    nav { padding: 12px 20px; }
    .nav-links { gap: 20px; }
    .hero { padding: 120px 20px 60px; }
    .section { padding: 60px 20px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .voices-grid { grid-template-columns: repeat(2, 1fr); }
    .usecases-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .steps-row { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); margin: 0; }
    .footer-inner { flex-direction: column; gap: 40px; }
    .footer-links { gap: 40px; }
    .hero-stats { gap: 24px; }
    .cta-section { padding: 60px 20px; }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .voices-grid { grid-template-columns: 1fr; }
    .usecases-grid { grid-template-columns: 1fr; }
    .nav-links a:not(.nav-btn) { display: none; }
    .nav-btn { 
        padding: 8px 14px !important; 
        font-size: 13px !important; 
        min-height: 36px !important;
        white-space: nowrap;
    }
    .nav-links { gap: 6px; }
    .hero { padding: 120px 20px 40px; }
    .hero-badge { 
        font-size: 12px; 
        padding: 8px 16px; 
        margin-bottom: 24px;
        display: inline-block;
        max-width: 90%;
        text-align: center;
    }
    .hero-title { font-size: 36px; line-height: 1.2; margin-bottom: 20px; }
    .hero-sub { font-size: 16px; line-height: 1.6; margin-bottom: 32px; }
    .hero-actions { 
        flex-direction: column; 
        align-items: stretch; 
        width: 100%; 
        max-width: 320px; 
        margin: 0 auto;
        gap: 12px;
    }
    .btn-primary, .btn-secondary { 
        width: 100%; 
        min-height: 52px; 
        font-size: 16px;
        justify-content: center !important;
        text-align: center;
    }
    .btn-secondary { padding: 14px 24px; }
    .hero-visual { margin-top: 48px; }
    .hero-mockup { transform: scale(0.95); }
    .hero-stats { flex-direction: column; gap: 16px; margin-top: 48px; }
    .stat-divider { width: 40px; height: 1px; }
    .section-title { font-size: 32px; }
    .section-sub { font-size: 16px; }
    .feature-card, .voice-card, .usecase-card { padding: 24px; }
    .pricing-card { padding: 32px 24px; }
    .footer-links { flex-direction: column; gap: 32px; }
    .footer-col { text-align: center; }
}

/* ═══════════════════════════════════════════════ */
/* ANIMATIONS                                      */
/* ═══════════════════════════════════════════════ */
@keyframes float-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: float-in 0.6s ease-out; }
.hero-title { animation: float-in 0.6s ease-out 0.1s both; }
.hero-sub { animation: float-in 0.6s ease-out 0.2s both; }
.hero-actions { animation: float-in 0.6s ease-out 0.3s both; }
.hero-visual { animation: float-in 0.8s ease-out 0.4s both; }
.hero-stats { animation: float-in 0.6s ease-out 0.6s both; }

@keyframes pulse-word {
    0%, 100% { box-shadow: 0 0 16px rgba(0, 255, 136, 0.2), 0 0 4px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 24px rgba(0, 255, 136, 0.35), 0 0 8px rgba(0, 255, 136, 0.4); }
}
.mockup-text .w.active { animation: pulse-word 2s ease-in-out infinite; }
