*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
}

:root {
    --bg: #f8f9fc;
    --surface: #ffffff;
    --surface2: #f1f3f9;
    --border: #e5e7eb;
    --text: #1a1d2e;
    --muted: #6b7280;
    --accent: #3f51b5;
    --accent-light: rgba(63, 81, 181, 0.08);
    --accent-mid: rgba(63, 81, 181, 0.15);
    --linux: #f59e0b;
    --windows: #0078d4;
    --mac: #6b7280;
    --green: #10b981;
    --radius: 16px;
    --blue: #3f51b5;
    --blue-light: #5c6bc0;
    --blue-dark: #283593;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
    text-align: center;
    padding: 100px 40px 70px;
    max-width: 700px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    border: 1px solid var(--accent-mid);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 0px 14px;
    border-radius: 99px;
    margin-bottom: 24px;
    height: 30px;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 36px;
    font-weight: 300;
}

.hero-os-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.os-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 99px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.os-badge.active,
.os-badge:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--accent);
}

.os-badge svg {
    width: 16px;
    height: 16px;
}

/* ── SECTION WRAPPER ── */
.section {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.section-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0px;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    padding: 0 !important;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 20px;
}

/* ── OS TABS ── */
.os-tabs-section {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 80px;
}

.os-tab-header {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--surface2);
}

.os-tab-btn {
    flex: 1;
    padding: 18px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
}

.os-tab-btn:hover {
    color: var(--text);
    background: rgba(0, 0, 0, 0.03);
}

.os-tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: var(--surface);
}

.os-tab-btn .os-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.os-tab-btn[data-os="linux"] .os-dot {
    background: var(--linux);
}

.os-tab-btn[data-os="windows"] .os-dot {
    background: var(--windows);
}

.os-tab-btn[data-os="mac"] .os-dot {
    background: var(--mac);
}

.os-tab-content {
    display: none;
    padding: 20px 30px;
}

.os-tab-content.active {
    display: block;
}

/* ── MODE SELECTOR (Linux only) ── */
.mode-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.mode-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.mode-card.active,
.mode-card:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.mode-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mode-card.active .mode-card-icon {
    background: var(--accent);
}

.mode-card.active .mode-card-icon svg {
    color: white;
}

.mode-card h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.mode-card p {
    font-size: 0.90rem;
    color: var(--muted);
}

/* ── STEPS ── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    position: relative;
}

.step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--border) 60%, transparent);
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface2);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.2s;
}

.step.done .step-num {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

.step-body {
    padding-bottom: 36px;
}

.step-body h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
    margin-top: 10px;
}

.step-body p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── APP MOCKUP ── */
.app-mockup {
    background: #18191f;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 16px;
    border: 1px solid #2d2f3a;
}

.app-mockup-bar {
    background: #111215;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.r {
    background: #ff5f57;
}

.dot.y {
    background: #febc2e;
}

.dot.g {
    background: #28c840;
}

.app-mockup-title {
    font-size: 0.75rem;
    color: #666;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

.app-mockup-body {
    padding: 20px;
}

/* Simulated UI elements */
.sim-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
}

.sim-btn.connect {
    background: #3f51b5;
    color: white;
}

.sim-btn.sound {
    background: #e53935;
    color: white;
}

.sim-btn.green {
    background: #10b981;
    color: white;
}

.sim-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sim-row:last-child {
    border: none;
}

.sim-label {
    font-size: 0.80rem;
    color: #666;
    min-width: 120px;
}

.sim-value {
    font-size: 0.82rem;
    color: #c8cad8;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sim-select {
    font-size: 0.80rem;
    color: #c8cad8;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.sim-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    padding: 3px 10px;
    border-radius: 99px;
}

.sim-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Windows/Mac audio routing diagram */
.routing-diagram {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 16px;
    background: var(--surface2);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.routing-node {
    flex: 1;
    padding: 20px 16px;
    text-align: center;
}

.routing-node-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.routing-node-icon.app {
    background: rgba(63, 81, 181, 0.12);
}

.routing-node-icon.connect {
    background: var(--accent);
}

.routing-node-icon.call {
    background: rgba(16, 185, 129, 0.12);
}

.routing-node h5 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 3px;
}

.routing-node p {
    font-size: 0.75rem;
    color: var(--muted);
}

.routing-arrow {
    padding: 0 8px;
    color: var(--muted);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ── OPTIONAL CONFIG SECTION ── */
.config-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.config-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.2s;
}

.config-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(63, 81, 181, 0.08);
    transform: translateY(-2px);
}

.config-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
}

.config-card h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.config-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.config-tag {
    display: inline-flex;
    margin-top: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 99px;
}

.tag-optional {
    background: #f3f4f6;
    color: #9ca3af;
}

.tag-plan {
    background: var(--accent-light);
    color: var(--accent);
}

/* ── VOICE & CREDITS SECTION ── */
.feature-split {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.feature-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.feature-panel-header {
    padding: 20px 28px 15px;
    border-bottom: 1px solid var(--border);
}

.feature-panel-header h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0px;
}

.feature-panel-header p {
    font-size: 1rem;
    color: var(--muted);
}

.feature-panel-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: row;
}

/* Voice previews */
.voice-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.voice-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.15s;
}

.voice-item:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.voice-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.va-1 {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.va-2 {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
}

.va-3 {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.va-4 {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
}

.voice-info {
    flex: 1;
}

.voice-info h5 {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.voice-info span {
    font-size: 0.75rem;
    color: var(--muted);
}

.voice-play {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    flex-shrink: 0;
}

.voice-play:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Credits visual */
.credits-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credit-pack-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.15s;
}

.credit-pack-mini:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.credit-pack-mini.featured {
    border-color: var(--accent);
    background: var(--accent-light);
}

.credit-pack-mini-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.credit-pack-mini-left strong {
    font-weight: 700;
    font-size: 0.9rem;
}

.credit-pack-mini-left span {
    font-size: 0.75rem;
    color: var(--muted);
}

.credit-pack-mini-right {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
}

.best-value-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--accent);
    color: white;
    padding: 2px 8px;
    border-radius: 99px;
    margin-left: 8px;
}


/* ─────────────────────────────────────────────
   MOCKUP — Exact app button design
   Add this to usage.css (replaces old .sim-btn rules)
───────────────────────────────────────────── */

/* Outer pill container matching the real app toolbar */
.sim-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #111215;
    border-radius: 99px;
    padding: 5px 6px 5px 5px;
    width: fit-content;
    margin: 16px auto;
    border: 1px solid rgba(255,255,255,0.06);
}

/* Base button reset */
.sim-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    white-space: nowrap;
    line-height: 1;
    height: 40px;
}

/* ── Red "How I Sound?" button ── */
.sim-btn.sound {
    background: #e53935;
    color: white;
    padding: 7px 14px 7px 7px;
}

.sim-btn.sound .sim-ear {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Blue "CONNECT-ON" button ── */
.sim-btn.connect {
    background: #3f51b5;
    color: white;
    padding: 7px 16px 7px 10px;
    gap: 10px;
}

/* Animated audio bars */
.sim-btn.connect .sim-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 18px;
}

.sim-btn.connect .sim-bars span {
    display: block;
    width: 2.5px;
    border-radius: 99px;
    background: rgba(255,255,255,0.85);
    animation: barBounce 1.1s ease-in-out infinite;
}

.sim-btn.connect .sim-bars span:nth-child(1) { height: 5px;  animation-delay: 0s;    }
.sim-btn.connect .sim-bars span:nth-child(2) { height: 11px; animation-delay: 0.12s; }
.sim-btn.connect .sim-bars span:nth-child(3) { height: 16px; animation-delay: 0.24s; }
.sim-btn.connect .sim-bars span:nth-child(4) { height: 9px;  animation-delay: 0.36s; }
.sim-btn.connect .sim-bars span:nth-child(5) { height: 14px; animation-delay: 0.48s; }
.sim-btn.connect .sim-bars span:nth-child(6) { height: 7px;  animation-delay: 0.60s; }

@keyframes barBounce {
    0%, 100% { transform: scaleY(1);   opacity: 0.9; }
    50%       { transform: scaleY(0.3); opacity: 0.35; }
}

/* Timer text */
.sim-btn.connect .sim-timer {
    font-size: 0.76rem;
    font-weight: 600;
    opacity: 0.80;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}

/* ── Mute icon pill ── */
.sim-mute {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
}

/* ── CTA Section améliorée ── */
.footer-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 120, 255, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(79, 100, 220, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 60% 80%, rgba(50, 70, 200, 0.25) 0%, transparent 50%),
        #3f51b5;
    padding: 80px 40px;
    text-align: center;
}

/* Grille géométrique en overlay */
.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Points décoratifs coins */
.footer-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: 12px 12px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, black 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, black 100%);
}

/* S'assurer que le contenu passe au-dessus des overlays */
.footer-cta>* {
    position: relative;
    z-index: 1;
}

.footer-cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    position: relative;
    letter-spacing: -0.02em;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin-bottom: 26px;
    position: relative;
    font-weight: 300;
}

.footer-cta .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.footer-cta .hero-form {
    display: flex;
    gap: 10px;
    margin: 0px;
    max-width: 600px;
}

.footer-cta .hero-form input {
    flex: 1;
    padding: 13px 18px;
    border: 1.5px solid rgba(63, 81, 181, 0.18);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: white;
    color: var(--text);
    outline: none;
    width: 250px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.footer-cta .hero-form input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

.footer-cta .hero-form input::placeholder {
    color: #b0b5c9;
}


.footer-cta .btn-cta {
    background: white;
    color: var(--blue);
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-cta .btn-cta:hover {
    background: #f0f2ff;
    transform: translateY(-1px);
}

.footer-cta .btn-ghost-white {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 26px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-cta .btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ── VOICE CREATION GRID ── */
.voice-creation-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.vc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vc-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(63, 81, 181, 0.1);
    transform: translateY(-3px);
}

.vc-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.vc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vc-card-header>div:nth-child(2) {
    flex: 1;
}

.vc-card-header h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.vc-card-header p {
    font-size: 0.90rem;
    color: var(--muted);
}

.vc-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
}

.vc-badge.recommended {
    background: var(--accent);
    color: white;
}

.vc-desc {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.vc-note {
    display: flex;
    gap: 6px;
    font-size: 0.90rem;
    color: var(--muted);
    background: var(--surface2);
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    line-height: 1.5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.vc-note [data-lucide] {}

/* Dark mockup mimicking the real app */
.vc-mockup {
    background: #18191f;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2d2f3a;
    flex: 1;
}

.vc-mockup-bar {
    background: #111215;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: #555;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

.vc-mockup-bar span {
    margin: 0 auto;
}

.vc-mockup-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vc-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vc-field-label {
    font-size: 0.7rem;
    color: #888;
    font-weight: 500;
}

.vc-field-val {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.80rem;
    color: #c8cad8;
}

.vc-field-val.vc-textarea {
    min-height: 48px;
    font-size: 0.72rem;
    color: #555;
    line-height: 1.4;
}

.vc-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-tab {
    flex: 1;
    text-align: center;
    padding: 6px;
    font-size: 0.72rem;
    color: #666;
    cursor: pointer;
}

.vc-tab.active {
    background: rgba(63, 81, 181, 0.3);
    color: #a0aaff;
    font-weight: 600;
}

.vc-upload {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px dashed rgba(63, 81, 181, 0.4);
    border-radius: 8px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #aaa;
}

.vc-preview-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.vc-prev-btn {
    font-size: 0.7rem;
    color: #666;
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.vc-prev-btn.active {
    color: #a0aaff;
    background: rgba(63, 81, 181, 0.2);
}

.vc-footer-btns {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 4px;
}

.vc-btn-sec {
    font-size: 0.75rem;
    color: #666;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 35px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.vc-btn-pri {
    font-size: 0.75rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 35px;
    border-radius: 6px;
    background: #3f51b5;
    cursor: pointer;
    font-weight: 600;
}
/* ── FOOTER ── */
footer {
    background: white;
    border-top: 1px solid var(--border);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer span {
    font-size: 0.8rem;
    color: #c0c5d8;
}

footer a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--blue);
}

@media (max-width: 860px) {
    .voice-creation-grid {
        grid-template-columns: 1fr;
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero>* {
    animation: fadeUp 0.5s ease forwards;
}

.hero>*:nth-child(1) {
    animation-delay: 0.05s;
    opacity: 0;
}

.hero>*:nth-child(2) {
    animation-delay: 0.15s;
    opacity: 0;
}

.hero>*:nth-child(3) {
    animation-delay: 0.25s;
    opacity: 0;
}

.hero>*:nth-child(4) {
    animation-delay: 0.35s;
    opacity: 0;
}