/* ═══════════════════════════════════════════
   SELLKORA — Landing Page
   Dark theme, purple accents + gold highlights
   ═══════════════════════════════════════════ */

:root {
    --bg: #030014;
    --bg-2: #0a0620;
    --bg-3: #110d28;
    --surface: #16112e;
    --border: rgba(186, 156, 255, 0.08);
    --text: #f4f0ff;
    --text-muted: #9b8ec4;
    --text-dim: #6b5f8a;
    --purple: #ba9cff;
    --purple-dim: rgba(186, 156, 255, 0.12);
    --purple-glow: rgba(186, 156, 255, 0.25);
    --pink: #e59cff;
    --blue: #9cb2ff;
    --green: #34d399;
    --green-dim: rgba(52, 211, 153, 0.12);
    --gold: #f5c842;
    --gold-dim: rgba(245, 200, 66, 0.12);
    --gold-glow: rgba(245, 200, 66, 0.25);
    --radius: 12px;
    --radius-sm: 8px;

    /* Typography scale — 8 sizes only */
    --text-xs: 0.75rem;     /* 12px — captions, badges */
    --text-sm: 0.875rem;    /* 14px — small labels, meta */
    --text-base: 1rem;      /* 16px — body default */
    --text-md: 1.125rem;    /* 18px — body emphasis */
    --text-lg: 1.25rem;     /* 20px — card titles */
    --text-xl: 1.5rem;      /* 24px — sub-headings */
    --text-2xl: 2rem;       /* 32px — section titles */
    --text-3xl: 2.5rem;     /* 40px — hero */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── Typography ─── */

.hero-italic {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Inside hero H1: subtitle line is smaller than the punch line */
.hero-title .hero-italic {
    font-size: 0.6em;
    display: block;
    margin-top: 0.3em;
}

/* ─── Navigation ─── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0.75rem 2rem;
    backdrop-filter: blur(12px);
    background: rgba(3, 0, 20, 0.4);
    border-bottom: 1px solid rgba(186, 156, 255, 0.05);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    font-size: var(--text-lg);
    letter-spacing: -0.02em;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px var(--purple-glow)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 20px var(--purple-glow)); }
}


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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

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

/* ─── Buttons ─── */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--purple), #8b6cf7);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(186, 156, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(186, 156, 255, 0.4);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--purple-glow);
    background: var(--purple-dim);
}

.btn-lg { padding: 0.8rem 2rem; font-size: var(--text-base); }
.btn-sm { padding: 0.45rem 1rem; font-size: var(--text-xs); }

/* ─── Spotlights (global ambient glows) ─── */

.spotlight {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}

.spotlight-purple {
    background: rgba(186, 156, 255, 0.07);
}


/* ─── Hero ─── */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

/* ─── Hero directional spotlights ─── */
.hero-spot {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 1;
}

.hero-spot-1 {
    width: 1200px;
    height: 200px;
    top: -5%;
    right: -10%;
    background: linear-gradient(210deg, rgba(186, 156, 255, 0.18) 0%, rgba(186, 156, 255, 0.04) 60%, transparent 100%);
    filter: blur(40px);
    transform: rotate(-35deg);
    transform-origin: top right;
}

.hero-spot-2 {
    width: 1000px;
    height: 150px;
    top: 0;
    right: 5%;
    background: linear-gradient(210deg, rgba(229, 156, 255, 0.12) 0%, rgba(229, 156, 255, 0.02) 60%, transparent 100%);
    filter: blur(50px);
    transform: rotate(-25deg);
    transform-origin: top right;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(186, 156, 255, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 60%, rgba(229, 156, 255, 0.04) 0%, transparent 40%),
                radial-gradient(ellipse at 70% 10%, rgba(245, 200, 66, 0.025) 0%, transparent 30%);
    pointer-events: none;
}

/* Hero video overlay — subtle, 20% opacity, blend with dark bg */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

/* Voice cloning wave video */
.kf-wave-video {
    width: 100%;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    margin: 0.8rem 0;
}

.kf-wave-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 75%;
    mix-blend-mode: lighten;
}

.hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--purple-dim);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--purple);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, var(--text-3xl));
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: var(--text-sm);
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-sub em {
    color: var(--purple);
    font-style: normal;
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-proof {
    margin-top: 1rem;
}

.proof-text {
    font-size: var(--text-xs);
    color: var(--text-dim);
    letter-spacing: 0.03em;
}

.hero-social-proof {
    margin-top: 0.75rem;
}

.proof-badge {
    font-size: var(--text-xs);
    color: var(--text-muted);
    padding: 0.3rem 0.75rem;
    background: var(--purple-dim);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: inline-block;
}

/* Hero video / mockup (right side) */
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-mockup {
    width: 100%;
    aspect-ratio: 16/9;
    background: transparent;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(186, 156, 255, 0.06);
}

.mockup-glow {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at 50% 60%, rgba(186, 156, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.mockup-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.mockup-video-mobile { display: none; }

@media (max-width: 768px) {
    .mockup-video-desktop { display: none; }
    .mockup-video-mobile { display: block; }
}

/* ─── Sections ─── */

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5.5rem 2rem;
}

.section-label {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--purple);
    margin-bottom: 0.75rem;
}

/* Short punchy titles — big, bold, max ~5 words */
.section-title {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(1.5rem, 3vw, var(--text-2xl));
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text);
}

/* Long sentence titles — smaller, lighter weight, readable */
.section-title-long {
    font-size: clamp(1.15rem, 2.2vw, var(--text-xl));
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Gray + white two-line style */
.section-title-clean {
    color: var(--text);
}
.section-title-clean .hero-italic {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    color: var(--text);
    font-style: normal;
}
.text-gray {
    color: #888;
}

/* ─── Comparison ─── */

/* ─── Capabilities Grid ─── */

.capabilities {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

/* Diamond grid background — visible center, fading edges */
/* Grid layer — rombi con glow integrato */
.capabilities::before {
    content: '';
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(186, 156, 255, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(186, 156, 255, 0.25) 1px, transparent 1px);
    background-size: 16px 16px;
    transform: rotate(45deg);
    mask-image: radial-gradient(ellipse 20% 25% at 50% 45%, black 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.1) 60%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 20% 25% at 50% 45%, black 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.1) 60%, transparent 80%);
    pointer-events: none;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 100%;
}

.cap-card {
    padding: 0;
    text-align: center;
}

.cap-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--purple-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: var(--text-lg);
    color: var(--purple);
}

.cap-card h4 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.cap-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ─── Killer Features ─── */

.killer-features {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.kf-card {
    background:
        radial-gradient(ellipse at 90% 10%, rgba(186, 156, 255, 0.08) 0%, transparent 50%),
        linear-gradient(160deg, rgba(36, 28, 66, 0.95) 0%, rgba(14, 10, 28, 0.98) 60%);
    border-radius: 16px;
    border: 1px solid rgba(186, 156, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.kf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 24px rgba(186, 156, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-color: rgba(186, 156, 255, 0.18);
}

.kf-card h4 {
    font-family: 'Urbanist', sans-serif;
    font-size: var(--text-md);
    font-weight: 500;
    padding: 1.5rem 1.5rem 0.4rem;
    color: var(--text);
}

.kf-card > p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
}

/* Bottom row wraps — flexbox for centering */
.kf-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.8rem;
}

.kf-card {
    width: calc(33.33% - 1.8rem);
}

.kf-card-full {
    width: 100%;
}

/* Visual area inside cards */
.kf-visual {
    min-height: 200px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

/* ── Voice Call Mockup ── */
.kf-call-mockup {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.kf-call-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--purple-dim);
}

.kf-call-info {
    text-align: center;
}

.kf-call-name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text);
}

.kf-call-role {
    font-size: var(--text-xs);
    color: var(--text-dim);
}

.kf-call-timer {
    font-size: var(--text-xl);
    font-family: 'Urbanist', monospace;
    font-weight: 300;
    color: var(--purple);
    letter-spacing: 0.05em;
}

.kf-call-wave {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 30px;
}

.kf-wave-bar {
    width: 3px;
    border-radius: 2px;
    background: var(--purple);
    animation: kfWave 0.6s ease-in-out infinite alternate;
}

.kf-wave-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.kf-wave-bar:nth-child(2) { height: 16px; animation-delay: 0.08s; }
.kf-wave-bar:nth-child(3) { height: 24px; animation-delay: 0.16s; }
.kf-wave-bar:nth-child(4) { height: 12px; animation-delay: 0.24s; }
.kf-wave-bar:nth-child(5) { height: 28px; animation-delay: 0.32s; }
.kf-wave-bar:nth-child(6) { height: 18px; animation-delay: 0.4s; }
.kf-wave-bar:nth-child(7) { height: 22px; animation-delay: 0.48s; }
.kf-wave-bar:nth-child(8) { height: 10px; animation-delay: 0.56s; }
.kf-wave-bar:nth-child(9) { height: 26px; animation-delay: 0.64s; }
.kf-wave-bar:nth-child(10) { height: 14px; animation-delay: 0.72s; }
.kf-wave-bar:nth-child(11) { height: 20px; animation-delay: 0.8s; }
.kf-wave-bar:nth-child(12) { height: 8px; animation-delay: 0.88s; }

@keyframes kfWave {
    from { transform: scaleY(0.3); }
    to { transform: scaleY(1); }
}

.kf-call-status {
    font-size: var(--text-xs);
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.kf-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: kfPulse 1.5s ease-in-out infinite;
}

@keyframes kfPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ── WhatsApp Mockup ── */
.kf-wa-mockup {
    width: 100%;
    border-radius: 12px;
    background: #111;
    overflow: hidden;
}

.kf-wa-header {
    padding: 0.6rem 1rem;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text);
}

.kf-wa-header i {
    color: #25d366;
    font-size: var(--text-base);
}

.kf-wa-messages {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.kf-wa-bubble {
    max-width: 85%;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    font-size: var(--text-xs);
    line-height: 1.5;
}

.kf-wa-sent {
    background: #005c4b;
    color: #e0e0e0;
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}

.kf-wa-received {
    background: #1e1e30;
    color: #d0d0d0;
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}

.kf-wa-appear {
    animation: kfSlideUp 0.5s ease-out 2s both;
}

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

.kf-wa-voice-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kf-wa-voice-note i {
    color: #25d366;
    font-size: var(--text-base);
}

.kf-wa-waveform {
    display: flex;
    gap: 2px;
    align-items: center;
    height: 20px;
}

.kf-wa-waveform span {
    width: 2px;
    border-radius: 1px;
    background: #4ade80;
    opacity: 0.6;
}

.kf-wa-waveform span:nth-child(1) { height: 4px; }
.kf-wa-waveform span:nth-child(2) { height: 10px; }
.kf-wa-waveform span:nth-child(3) { height: 16px; }
.kf-wa-waveform span:nth-child(4) { height: 8px; }
.kf-wa-waveform span:nth-child(5) { height: 14px; }
.kf-wa-waveform span:nth-child(6) { height: 6px; }
.kf-wa-waveform span:nth-child(7) { height: 18px; }
.kf-wa-waveform span:nth-child(8) { height: 10px; }
.kf-wa-waveform span:nth-child(9) { height: 12px; }
.kf-wa-waveform span:nth-child(10) { height: 4px; }
.kf-wa-waveform span:nth-child(11) { height: 14px; }
.kf-wa-waveform span:nth-child(12) { height: 8px; }
.kf-wa-waveform span:nth-child(13) { height: 16px; }
.kf-wa-waveform span:nth-child(14) { height: 6px; }
.kf-wa-waveform span:nth-child(15) { height: 10px; }

.kf-wa-duration {
    font-size: var(--text-xs);
    color: #a0a0a0;
    min-width: 28px;
}

/* ── Language Switcher Mockup ── */
.kf-lang-mockup {
    width: 100%;
}

.kf-lang-switcher {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.kf-lang-line {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.8rem;
    border-radius: 8px;
    font-size: var(--text-xs);
    color: var(--text-dim);
    transition: all 0.4s ease;
    opacity: 0.4;
}

.kf-lang-active {
    background: rgba(186, 156, 255, 0.08);
    color: var(--text);
    opacity: 1;
}

.kf-lang-flag {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.kf-lang-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Voice Cloning Studio ── */
.kf-studio {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.kf-studio-step {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    background: rgba(186, 156, 255, 0.05);
    border: 1px solid rgba(186, 156, 255, 0.1);
}

.kf-studio-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--purple-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.kf-studio-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
}

.kf-studio-sub {
    font-size: var(--text-xs);
    color: var(--text-dim);
}

.kf-studio-check {
    margin-left: auto;
    color: var(--green);
    font-size: var(--text-base);
}

/* Result bar */
.kf-studio-result {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.kf-studio-match-bar {
    height: 6px;
    background: rgba(186, 156, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.kf-studio-match-fill {
    height: 100%;
    width: 98.7%;
    background: linear-gradient(90deg, var(--purple), var(--green));
    border-radius: 3px;
    animation: kfFillBar 2s ease-out 1s both;
}

@keyframes kfFillBar {
    from { width: 0; }
    to { width: 98.7%; }
}

.kf-studio-match-text {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-xs);
    color: var(--green);
}

.kf-studio-match-text i {
    font-size: var(--text-sm);
}

.kf-studio-match-text strong {
    color: var(--text);
}

/* ── Transcript Mockup ── */
.kf-transcript-mockup {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kf-transcript-line {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
}

.kf-t-agent {
    background: rgba(186, 156, 255, 0.06);
}

.kf-t-prospect {
    background: rgba(52, 211, 153, 0.06);
}

.kf-t-speaker {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.kf-t-agent .kf-t-speaker { color: var(--purple); }
.kf-t-prospect .kf-t-speaker { color: var(--green); }

.kf-t-text {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.5;
}

.kf-transcript-summary {
    margin-top: 0.3rem;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    background: rgba(245, 200, 66, 0.06);
    border: 1px solid rgba(245, 200, 66, 0.12);
    font-size: var(--text-xs);
    color: var(--gold);
    line-height: 1.5;
}

.kf-transcript-summary i {
    margin-right: 0.3rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .kf-grid { grid-template-columns: repeat(2, 1fr); }
    .kf-card-full { grid-column: span 1; }
}

@media (max-width: 768px) {
    .kf-grid { grid-template-columns: 1fr; }
}

/* ─── Features ─── */

/* ─── AI Agents — Bento Grid ─── */
.agents-section {
    background: var(--bg);
    position: relative;
    padding-bottom: 0;
}

.agents-section .section-inner {
    padding-bottom: 2rem;
}

/* ─── Bento Grid ─── */
.bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
}

.bento-card:nth-child(1) { grid-column: 1 / 3; }
.bento-card:nth-child(2) { grid-column: 3 / 4; }
.bento-card:nth-child(3) { grid-column: 1 / 2; }
.bento-card:nth-child(4) { grid-column: 2 / 4; }
.bento-card:nth-child(5) { grid-column: 1 / 4; min-height: 200px; }

.bento-card {
    position: relative;
    padding: 2.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover { transform: scale(0.985); }

/* Inner glow */
.bento-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.4s;
}
.bento-card:hover .bento-glow { opacity: 0.7; }

/* Card backgrounds — contrast against the purple site bg */
.bento-research { background: #0a1a1a; }
.bento-research .bento-glow { background: rgba(52, 211, 153, 0.3); top: -20%; right: -8%; }

.bento-sales { background: #1a1308; }
.bento-sales .bento-glow { background: rgba(245, 200, 66, 0.35); bottom: -15%; left: -8%; top: auto; }

.bento-linkedin { background: #081420; }
.bento-linkedin .bento-glow { background: rgba(56, 140, 245, 0.3); top: -15%; left: -8%; right: auto; }

.bento-inbox { background: #180a10; }
.bento-inbox .bento-glow { background: rgba(245, 100, 140, 0.25); bottom: -15%; right: -5%; top: auto; }

.bento-closer { background: linear-gradient(135deg, #1a1308, #0a1a1a); }
.bento-closer .bento-glow { background: rgba(245, 200, 66, 0.35); top: -15%; right: 15%; width: 400px; }

/* Agent number */
.bento-num {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.15);
    margin-bottom: auto;
    font-family: 'JetBrains Mono', monospace;
}

/* Text */
.bento-body h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.bento-body p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
}

/* Background icon */
.bento-icon {
    position: absolute;
    font-size: 7rem;
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    transition: color 0.4s;
}
.bento-card:hover .bento-icon { color: rgba(255,255,255,0.04); }

.bento-closer .bento-icon { right: 10%; font-size: 5.5rem; }


/* ─── Meet the Voices ─── */
.meet-voices {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.section-sub {
    color: var(--text-muted);
    max-width: 560px;
    margin: 1rem auto 0;
    font-size: var(--text-sm);
    line-height: 1.7;
    text-align: center;
}

.voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.voice-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s;
    overflow: hidden;
}

.voice-card:hover {
    border-color: var(--purple-glow);
    transform: translateY(-3px);
}

.voice-card.playing {
    border-color: var(--purple);
    box-shadow: 0 0 30px var(--purple-glow);
}

/* Avatar */
.vc-avatar {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.vc-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.vc-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--purple-glow);
    opacity: 0;
    transition: opacity 0.3s;
}

.voice-card.playing .vc-pulse {
    opacity: 1;
    animation: vc-pulse-ring 1.5s ease-out infinite;
}

@keyframes vc-pulse-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Top row: avatar + name + play button */
.vc-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vc-name-row {
    flex: 1;
}

.vc-name-row h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.2;
}

.vc-role {
    font-size: var(--text-xs);
    color: var(--purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.15rem;
}

.voice-card > p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

.vc-traits {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.vc-traits span {
    font-size: var(--text-xs);
    padding: 0.25rem 0.6rem;
    background: var(--purple-dim);
    color: var(--purple);
    border-radius: 20px;
    font-weight: 500;
}

/* Play button — inline in top row */
.vc-play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--purple);
    font-size: var(--text-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.vc-play:hover {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
    box-shadow: 0 0 16px var(--purple-glow);
}

.voice-card.playing .vc-play {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

/* Mini progress player */
.vc-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.voice-card.playing .vc-player {
    opacity: 1;
    max-height: 30px;
    margin-top: 0.25rem;
}

.vc-progress {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.vc-progress-fill {
    height: 100%;
    background: var(--purple);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.vc-progress-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0;
    transition: opacity 0.2s;
}

.voice-card.playing .vc-progress-fill::after {
    opacity: 1;
}

.vc-time {
    font-size: var(--text-xs);
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
    min-width: 28px;
}

/* Hide native audio element */
.voice-card audio { display: none; }

/* ─── Voice Cloning (premium section) ─── */
.voice-cloning {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* Dual video background */
.vc-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vc-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.vc-bg-video.active {
    opacity: 1;
}

/* Content centered */
.vc-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 7rem 2rem;
}

.vc-desc {
    font-size: var(--text-base);
    color: var(--text-muted);
    max-width: 540px;
    margin: 1.5rem auto 2.5rem;
    line-height: 1.8;
}

.vc-desc em {
    color: var(--purple);
    font-style: normal;
    font-weight: 600;
}

/* Studio card — glassmorphism centered */
.vc-studio-card {
    max-width: 440px;
    margin: 0 auto 2.5rem;
    background: rgba(22, 17, 46, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(186, 156, 255, 0.15);
    border-radius: var(--radius);
    padding: 1.25rem;
}

/* ─── Brand Trained — proof of differentiation ─── */

.brand-trained {
    background: var(--bg);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 7rem 0;
}

.brand-trained .section-inner {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bt-desc {
    font-size: var(--text-base);
    color: var(--text-muted);
    max-width: 720px;
    margin: 1.5rem auto 4rem;
    line-height: 1.8;
}

.bt-desc strong {
    color: var(--text);
    font-weight: 600;
}

.bt-desc em {
    color: var(--purple);
    font-style: normal;
    font-weight: 600;
}

.bt-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1080px;
    margin: 0 auto;
    text-align: left;
}

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

.bt-setup,
.bt-output {
    background: rgba(22, 17, 46, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(186, 156, 255, 0.15);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.bt-foundation {
    background: linear-gradient(135deg, rgba(186, 156, 255, 0.12), rgba(88, 214, 141, 0.08));
    border: 1px solid rgba(186, 156, 255, 0.2);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
}

.bt-foundation-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bt-foundation-row > i {
    font-size: 1.4rem;
    color: var(--purple);
    flex-shrink: 0;
}

.bt-foundation-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.bt-foundation-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.bt-foundation-badge {
    margin-left: auto;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #58d68d;
    background: rgba(88, 214, 141, 0.12);
    border: 1px solid rgba(88, 214, 141, 0.25);
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    flex-shrink: 0;
    font-weight: 600;
}

.bt-setup-header,
.bt-output-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(186, 156, 255, 0.1);
}

.bt-setup-header i,
.bt-output-header i {
    color: var(--purple);
    font-size: 1rem;
}

.bt-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(186, 156, 255, 0.08);
}

.bt-field:last-of-type {
    border-bottom: none;
}

.bt-field-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bt-field-value {
    font-size: 0.95rem;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.bt-field-value i.bi-globe {
    color: var(--purple);
}

.bt-check {
    color: #58d68d;
    margin-left: auto;
}

.bt-train {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(186, 156, 255, 0.1);
}

.bt-train-bar {
    height: 4px;
    background: rgba(186, 156, 255, 0.12);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.65rem;
}

.bt-train-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--purple), #58d68d);
    border-radius: 2px;
}

.bt-train-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bt-train-text strong {
    color: #58d68d;
    font-weight: 600;
}

.bt-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(186, 156, 255, 0.08);
}

.bt-channel {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(186, 156, 255, 0.06);
    border: 1px solid rgba(186, 156, 255, 0.12);
    color: var(--text);
    font-size: 0.72rem;
    padding: 0.3rem 0.55rem;
    border-radius: 6px;
}

.bt-channel i {
    color: var(--purple);
    font-size: 0.85rem;
}

.bt-email-meta {
    padding-bottom: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(186, 156, 255, 0.08);
}

.bt-email-to {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.bt-email-subject {
    display: block;
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

.bt-email-body {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
}

.bt-email-body p {
    margin: 0 0 0.75rem;
}

.bt-email-body p:last-child {
    margin-bottom: 0;
}

.bt-email-tags {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(186, 156, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bt-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(186, 156, 255, 0.08);
    border: 1px solid rgba(186, 156, 255, 0.15);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.bt-tag i {
    color: #58d68d;
}

/* ─── How it works ─── */

.how-it-works {
    background: var(--bg);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 3rem auto 0;
}

.hiw-step {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.hiw-step:last-child {
    border-bottom: none;
}

.hiw-big {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, rgba(186, 156, 255, 0.15) 0%, rgba(186, 156, 255, 0.03) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    flex-shrink: 0;
    width: 120px;
    text-align: center;
    user-select: none;
}

.hiw-text {
    position: relative;
    z-index: 1;
    padding-left: 1rem;
}

.hiw-text h4 {
    font-size: var(--text-md);
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #fff;
}

.hiw-text p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 440px;
}

/* ─── Pricing teaser ─── */

/* ─── Pricing ─── */
.pricing {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 50%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

/* Block label (Manual Outreach / AI Sales Agents) */
.price-block {
    margin-bottom: 3rem;
}

.price-divider {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 3rem 0 2.5rem;
}

.price-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(186, 156, 255, 0.3), transparent);
}

.price-divider-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    font-style: italic;
}

.price-block-label {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--purple);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(186, 156, 255, 0.25);
    border-radius: 100px;
    display: inline-block;
    background: rgba(186, 156, 255, 0.06);
}

/* Card rows */
.price-row {
    display: grid;
    gap: 1.25rem;
}

.price-row-2 { grid-template-columns: 1fr 1fr; }
.price-row-3 { grid-template-columns: 1fr 1fr 1fr; }

/* Individual card */
.pc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.pc:hover {
    border-color: var(--purple-glow);
    transform: translateY(-3px);
}

/* Featured card — glow underneath */
.pc-featured {
    border-color: rgba(186, 156, 255, 0.2);
    background: linear-gradient(180deg, rgba(186, 156, 255, 0.06) 0%, var(--surface) 100%);
}


.pc-premium {
    border-color: rgba(245, 200, 66, 0.12);
}

/* Badge */
.pc-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.85rem;
    background: linear-gradient(135deg, var(--purple), var(--gold));
    color: #fff;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 20px;
    white-space: nowrap;
}

/* Header */
.pc-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pc-name {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pc-price-old {
    font-size: var(--text-sm);
    color: var(--text-dim);
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.pc-price {
    font-size: var(--text-2xl);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pc-price span {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--text-muted);
}

.pc-launch-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green);
    background: var(--green-dim);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.pc-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* Feature list */
.pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    margin-bottom: 1.5rem;
}

.pc-features li {
    font-size: var(--text-sm);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pc-features li i {
    font-size: var(--text-sm);
    color: var(--green);
    flex-shrink: 0;
}

.pc-features .pc-no {
    color: var(--text-dim);
}

.pc-features .pc-no i {
    color: var(--text-dim);
}

/* Buttons */
.pc-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: auto;
}

.pc-btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
}

.pc-btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.pc-btn-primary {
    background: var(--purple);
    color: #fff;
    border: 1px solid var(--purple);
}

.pc-btn-primary:hover {
    box-shadow: 0 0 20px var(--purple-glow);
    transform: translateY(-1px);
}

/* Expand button */
.price-expand {
    text-align: center;
    margin-bottom: 2rem;
}

.price-expand-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.price-expand-btn:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.price-expand-btn i {
    font-size: var(--text-xs);
    transition: transform 0.3s;
}

.price-expand-btn.open i {
    transform: rotate(180deg);
}

/* Comparison table — collapsed by default */
.price-compare {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease, margin 0.4s ease;
    margin-bottom: 0;
}

.price-compare.open {
    max-height: 3000px;
    opacity: 1;
    margin-bottom: 2.5rem;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
}

.compare-table thead {
    position: sticky;
    top: 0;
    z-index: 2;
}

.compare-table th {
    padding: 1rem 0.75rem;
    text-align: center;
    font-weight: 700;
    font-size: var(--text-xs);
    color: var(--text-muted);
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
}

.compare-table th:first-child {
    text-align: left;
    color: var(--text-dim);
    font-weight: 500;
}

.compare-table th.ct-featured {
    color: var(--purple);
}

.compare-table td {
    padding: 0.65rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--text);
}

.compare-table td:first-child {
    text-align: left;
    color: var(--text-muted);
}

.compare-table td.ct-featured {
    background: rgba(186, 156, 255, 0.04);
}

.compare-table td i.bi-check2 {
    color: var(--green);
    font-size: var(--text-base);
}

.compare-table td i.ct-no {
    color: var(--text-dim);
    font-size: var(--text-sm);
    opacity: 0.4;
}

/* Section headers in table */
.ct-section td {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple) !important;
    padding-top: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    background: none !important;
}

/* Hover row */
.compare-table tbody tr:not(.ct-section):hover td {
    background: rgba(255,255,255,0.02);
}
.compare-table tbody tr:not(.ct-section):hover td.ct-featured {
    background: rgba(186, 156, 255, 0.07);
}

/* Custom / Enterprise row */
.price-custom {
    margin-bottom: 2.5rem;
}

.price-custom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.price-custom-text h4 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.price-custom-text p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.price-custom .pc-btn {
    flex-shrink: 0;
    padding: 0.65rem 1.5rem;
    white-space: nowrap;
}

.pricing-note {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.pricing-note a {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
}

.launch-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--green-dim);
    color: var(--green);
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: 4px;
    margin-right: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ─── Final CTA ─── */

.final-cta {
    background: radial-gradient(ellipse at center, rgba(186, 156, 255, 0.1) 0%, var(--bg) 70%);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

/* ─── Newsletter ─── */
.newsletter {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.nl-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.nl-text h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.nl-text p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

.nl-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nl-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: var(--text-sm);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.nl-input:focus {
    border-color: var(--purple);
}

.nl-input::placeholder {
    color: var(--text-dim);
}

.nl-segment {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nl-segment-label {
    font-size: var(--text-xs);
    color: var(--text-dim);
    font-weight: 500;
}

.nl-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.nl-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
    cursor: pointer;
}

.nl-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: var(--surface);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.nl-option input[type="checkbox"]:checked {
    background: var(--purple);
    border-color: var(--purple);
}

.nl-option input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: var(--text-xs);
    font-weight: 700;
}

.nl-btn {
    padding: 0.8rem;
    background: var(--purple);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.nl-btn:hover {
    box-shadow: 0 0 20px var(--purple-glow);
    transform: translateY(-1px);
}

/* ─── Footer ─── */

.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--text-dim);
    margin-top: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col h5 {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: var(--text-sm);
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: var(--text-xs);
    color: var(--text-dim);
}

/* ─── Animations ─── */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Decrypt text effect */
.decrypt-text {
    display: inline;
    word-spacing: 0.25em;
}

.decrypt-text .char {
    display: inline;
    transition: opacity 0.1s;
}

/* ─── Back to Top ─── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: var(--text-base);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--purple-dim);
    border-color: var(--purple);
    color: var(--purple);
}

.decrypt-text .char.cipher {
    color: var(--purple);
    opacity: 0.6;
}

/* ─── Hamburger Button ─── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Menu Overlay ─── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: rgba(3, 0, 20, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mm-link {
    color: var(--text);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

.mm-link:hover {
    color: var(--purple);
}

.mm-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
}

.mm-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
    .cap-grid { grid-template-columns: repeat(2, 1fr); }
    .price-row-3 { grid-template-columns: 1fr 1fr 1fr; }
    .price-row-2 { grid-template-columns: 1fr 1fr; }
    .hiw-big { font-size: 3.5rem; width: 100px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .vc-stats { gap: 2rem; }
    .bento { grid-template-columns: 1fr 1fr; }
    .bento-card:nth-child(1),
    .bento-card:nth-child(4) { grid-column: span 2; }
    .bento-card:nth-child(2),
    .bento-card:nth-child(3) { grid-column: span 1; }
    .bento-card:nth-child(5) { grid-column: span 2; }
    .voices-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 1.5rem; }
    .section-title { line-height: 1.4; margin-bottom: 2rem; }
    .section-label { margin-bottom: 0.8rem; }
    .cap-grid { grid-template-columns: 1fr; }
    .kf-card, .kf-card-full, .kf-card-full { width: 100% !important; }
    .kf-grid { gap: 1.2rem; }
    .voices-grid { grid-template-columns: 1fr; padding: 0 1rem; }
    .bento { grid-template-columns: 1fr; }
    .bento-card:nth-child(1),
    .bento-card:nth-child(2),
    .bento-card:nth-child(3),
    .bento-card:nth-child(4),
    .bento-card:nth-child(5) { grid-column: 1; }
    .bento-card { min-height: 200px; padding: 1.75rem; }
    .bento-icon { font-size: 5rem; right: 1.5rem; }
    .price-row-2, .price-row-3 { grid-template-columns: 1fr; }
    .pc { padding: 1.5rem; }
    .hiw-step { flex-direction: column; text-align: center; padding: 1.5rem 0; }
    .hiw-big { width: auto; font-size: 2.5rem; }
    .hiw-text { padding-left: 0; }
    .hiw-text p { max-width: 100%; }
    .vc-stats { gap: 1.5rem; }
    .vc-content { padding: 5rem 1.5rem; }
    .vc-studio-card { margin: 0 auto 2rem; }
    .nl-content { grid-template-columns: 1fr; gap: 2rem; }
    .price-custom-inner { flex-direction: column; gap: 1rem; text-align: center; }
    .compare-table { font-size: var(--text-xs); }
    .compare-table th, .compare-table td { padding: 0.5rem 0.35rem; }
    .footer-inner { flex-direction: column; gap: 2rem; }
    .footer-links { flex-wrap: wrap; gap: 2rem; }

    /* Nav mobile */
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    /* Hero video mobile — full width under text */
    .hero-visual { margin-top: 1.5rem; }
    .hero-mockup { max-width: 100%; aspect-ratio: 9/16; }
    .mockup-video { width: 100%; border-radius: 12px; }

    /* Hero spots — hide on mobile to prevent overflow */
    .hero-spot { display: none; }
}
