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

:root {
    --bg: #f5f5f7;
    --bg-dark: #111119;
    --bg-card-dark: #1a1a24;
    --bg-white: #ffffff;
    --text: #111119;
    --text-light: #f5f5f7;
    --text-muted: #6b7280;
    --border: rgba(0, 0, 0, 0.1);
    --border-light: rgba(255, 255, 255, 0.1);
    --accent: #7c3aed;
    --accent-2: #3b82f6;
    --gradient: linear-gradient(135deg, #7c3aed, #3b82f6);
    --max: 1180px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.container { width: min(var(--max), 100% - 2.5rem); margin-inline: auto; }
section { padding: 5rem 0; }

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(17, 17, 25, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner { height: 72px; display: flex; justify-content: space-between; align-items: center; }
.logo { text-decoration: none; display: inline-flex; gap: .35rem; align-items: baseline; }
.logo-flow {
    font-weight: 800;
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-intel { color: var(--text-light); font-weight: 500; }
.nav { display: flex; gap: 1.1rem; align-items: center; }
.nav a { color: #c4c4cd; text-decoration: none; font-size: .95rem; transition: color .2s ease; }
.nav a:hover { color: #fff; }
.nav-cta { border: 1px solid var(--border-light); border-radius: 999px; padding: .45rem .85rem; }

.hero {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 5.2rem 0 3.4rem;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 60% 52% at 50% 40%, black, transparent 75%);
    animation: gridDrift 10s linear infinite;
}
.hero-grid::after {
    content: "";
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at 25% 35%, rgba(124,58,237,.1), transparent 45%),
                radial-gradient(circle at 70% 65%, rgba(59,130,246,.08), transparent 42%);
    animation: glowDrift 7.5s ease-in-out infinite alternate;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}
.hero-orb-1 {
    width: 280px; height: 280px;
    top: -80px; right: -30px;
    background: rgba(124,58,237,.23);
    animation: floatA 8s ease-in-out infinite;
}
.hero-orb-2 {
    width: 220px; height: 220px;
    bottom: -80px; left: -60px;
    background: rgba(59,130,246,.18);
    animation: floatB 10s ease-in-out infinite;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 920px; }
.hero-content, .hero-grid, .hero-orb { will-change: transform; }
.hero-badge {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #cfcfd7;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    padding: .35rem .75rem;
}
.hero-title {
    margin-top: 1rem;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.hero-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub { margin: 1rem auto 1.7rem; color: #b0b0ba; max-width: 700px; }
.hero-ctas { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

.btn {
    border: none;
    border-radius: 12px;
    padding: .8rem 1.1rem;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    font-size: .96rem;
    transition: transform .2s var(--ease), filter .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--gradient); box-shadow: 0 8px 24px rgba(59,130,246,.28); }
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 12px 28px rgba(59,130,246,.38); }
.btn-ghost { color: #e5e5ea; background: transparent; border: 1px solid var(--border-light); }
.btn-ghost:hover { border-color: #8b8b9a; }
.pulse {
    animation: pulseGlow 2.8s ease-in-out infinite;
    position: relative;
    isolation: isolate;
}
.pulse::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 16px;
    background: radial-gradient(circle, rgba(124,58,237,.28), rgba(59,130,246,.18), transparent 72%);
    filter: blur(16px);
    opacity: .9;
    z-index: -1;
    animation: buttonAura 2.1s ease-in-out infinite;
}
.pulse::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 14px;
    border: 1px solid rgba(167, 139, 250, .55);
    opacity: .65;
    z-index: -1;
    pointer-events: none;
    animation: buttonRing 2.1s ease-in-out infinite;
}

.positioning { background: var(--bg-white); }
.split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: start; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; letter-spacing: -0.02em; }
.positioning-list p { padding: .45rem 0; color: #35353f; }

.section-head { margin-bottom: 1.5rem; }
.section-kicker {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    color: var(--text-muted);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .35rem;
}

/* Stats bar */
.stats-bar { background: var(--bg-dark); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-num {
    display: block; font-size: 2rem; font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #60a5fa); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { color: #9797a5; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }

.domains { background: #efeff3; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.2rem;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { border-color: rgba(124,58,237,.25); box-shadow: 0 14px 30px rgba(0,0,0,.08); }
.card h3 { font-size: 1.02rem; margin-bottom: .55rem; }
.card p { color: #4d4d57; font-size: .92rem; }

.engagements { background: var(--bg-dark); color: var(--text-light); border-top: 1px solid rgba(255,255,255,.08); }
.engagements .section-title { color: var(--text-light); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.eng-card {
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--bg-card-dark);
    padding: 1.2rem;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.eng-card:hover { border-color: rgba(124,58,237,.4); box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.eng-thumb {
    border-radius: 10px; overflow: hidden; margin-bottom: .7rem;
    aspect-ratio: 16/10; background: #0d0d14;
}
.eng-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: .75; transition: opacity .3s ease, transform .4s var(--ease);
}
.eng-card:hover .eng-thumb img { opacity: 1; transform: scale(1.03); }
.eng-num {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    color: #8f8fa0;
    font-size: .78rem;
}
.eng-card h3 { margin: .4rem 0 .35rem; font-size: 1.02rem; }
.eng-card p { color: #b6b6bf; font-size: .92rem; }

.method { background: var(--bg-white); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.step {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: 1rem;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.step:hover { border-color: rgba(124,58,237,.25); box-shadow: 0 14px 26px rgba(0,0,0,.08); }
.step span {
    display: inline-block;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    color: var(--text-muted);
    font-size: .8rem;
}
.step h3 { margin: .5rem 0 .25rem; font-size: 1rem; }
.step p { color: #52525d; font-size: .9rem; }

/* Audit offer */
.audit-offer { background: var(--bg-dark); color: var(--text-light); }
.audit-offer .section-title { color: var(--text-light); }
.audit-card {
    border: 1px solid var(--border-light); border-radius: 18px;
    background: var(--bg-card-dark); padding: 2rem; max-width: 720px;
}
.audit-price {
    font-size: 2.2rem; font-weight: 800;
    background: var(--gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.audit-price span {
    font-size: .85rem; font-weight: 500;
    -webkit-text-fill-color: #9797a5;
}
.audit-desc { color: #b6b6bf; margin: .8rem 0 1rem; font-size: .94rem; max-width: 600px; }
.audit-includes { list-style: none; display: grid; gap: .4rem; margin-bottom: 1.3rem; }
.audit-includes li { color: #c8c8d2; font-size: .9rem; padding-left: 1.4rem; position: relative; }
.audit-includes li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 600; }

.case-studies { background: #ededf2; }
.case-intro { color: #555b72; margin-bottom: .95rem; max-width: 720px; font-size: .94rem; }
.case-list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.case-link {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .9rem 1rem;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    gap: .6rem;
    align-items: center;
    color: var(--text);
    transition: all .2s var(--ease);
}
.case-link span { font-weight: 600; }
.case-link em { color: #727991; font-style: normal; font-size: .82rem; }
.case-link:hover { border-color: rgba(124,58,237,.35); transform: translateY(-1px); }

.credibility {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.08);
}
.credibility .section-title { color: var(--text-light); }
.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: 1.1rem; }
.tags span {
    border: 1px solid var(--border-light);
    border-radius: 999px;
    padding: .38rem .8rem;
    font-size: .76rem;
    color: #b7b7c1;
}
.onsite-note {
    margin: 1.3rem auto 0;
    max-width: 700px;
    font-size: .9rem;
    color: #9797a5;
    font-style: italic;
}

.cta-final { background: var(--bg-dark); padding-top: 0; }
.cta-box {
    background: #151520;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}
.cta-box h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; }
.cta-box p { margin: .65rem auto 1.1rem; color: #ababba; max-width: 620px; }

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(8px);
    z-index: 50;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
    width: min(520px, 100%);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.2rem;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    animation: modalIn .24s var(--ease);
}
.modal-close {
    position: absolute;
    top: .6rem;
    right: .6rem;
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}
.modal-head h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.modal-head p { color: #5f5f69; font-size: .9rem; margin-bottom: .75rem; }
.modal-form { display: grid; gap: .7rem; }
.form-grid { display: grid; gap: .6rem; grid-template-columns: 1fr 1fr; }
label { display: grid; gap: .26rem; font-size: .82rem; color: #2f2f37; }
input, textarea {
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
    padding: .56rem .62rem;
    color: var(--text);
    background: #f8f8fb;
}
textarea { resize: vertical; min-height: 80px; }
input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
    background: #fff;
}
.tiny-note { text-align: center; color: #7a7a87; font-size: .75rem; }

/* Challenge section with audio */
.challenge-section { display: grid; gap: .5rem; }
.challenge-label { font-size: .82rem; color: #2f2f37; }
.audio-recorder { display: flex; flex-direction: column; gap: .5rem; }
.audio-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: #f0edf7; border: 1px solid rgba(124,58,237,.18);
    border-radius: 10px; padding: .5rem .75rem;
    cursor: pointer; font: inherit; font-size: .85rem; color: var(--accent);
    transition: all .2s var(--ease);
}
.audio-btn:hover { background: #e8e3f3; border-color: rgba(124,58,237,.35); }
.audio-btn.recording {
    background: #fef2f2; border-color: rgba(239,68,68,.3); color: #dc2626;
    animation: recPulse 1.5s ease-in-out infinite;
}
.audio-icon { display: flex; align-items: center; }
.audio-recording {
    display: flex; align-items: center; gap: .6rem;
    background: #fef2f2; border: 1px solid rgba(239,68,68,.2);
    border-radius: 10px; padding: .45rem .7rem;
}
.audio-waveform {
    display: flex; align-items: center; gap: 2px; height: 28px; flex: 1;
}
.audio-waveform .bar {
    width: 3px; border-radius: 2px; background: #dc2626;
    animation: waveBar .6s ease-in-out infinite alternate;
}
.audio-timer, .audio-duration {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .78rem; color: #6b7280; min-width: 32px; text-align: right;
}
.audio-playback {
    display: flex; align-items: center; gap: .5rem;
    background: #f0edf7; border: 1px solid rgba(124,58,237,.15);
    border-radius: 10px; padding: .45rem .7rem;
}
.audio-play-btn {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--gradient); color: #fff; border: none; cursor: pointer;
    transition: transform .15s var(--ease);
}
.audio-play-btn:hover { transform: scale(1.08); }
.audio-progress {
    flex: 1; height: 4px; background: rgba(124,58,237,.15);
    border-radius: 2px; overflow: hidden; cursor: pointer;
}
.audio-progress-bar {
    height: 100%; width: 0%; background: var(--gradient);
    border-radius: 2px; transition: width .1s linear;
}
.audio-delete-btn {
    display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 6px;
    background: transparent; border: 1px solid rgba(0,0,0,.1);
    cursor: pointer; color: #9797a5; transition: all .15s ease;
}
.audio-delete-btn:hover { color: #dc2626; border-color: rgba(239,68,68,.3); background: #fef2f2; }

@keyframes recPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.15); }
    50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
@keyframes waveBar {
    0% { height: 4px; }
    100% { height: 22px; }
}

.success { display: none; text-align: center; padding: .9rem 0 .4rem; }

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #0f0f16;
    color: #8f8f9e;
    padding: 1.7rem 0;
}
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; }
.footer-logo { font-weight: 700; margin-bottom: .3rem; }
.footer-right { text-align: right; }

[data-animate] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

.tilt { transform-style: preserve-3d; }

/* Case pages */
.case-page-hero { background: var(--bg-dark); color: var(--text-light); padding: 5.1rem 0 3.3rem; }
.case-page-title { margin-top: .75rem; margin-bottom: .8rem; font-size: clamp(2rem, 4.8vw, 3.3rem); line-height: 1.08; letter-spacing: -0.03em; }
.case-page-sub { color: #b4bbd1; max-width: 760px; }
.case-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1rem; align-items: start; }
.spec-card, .gallery-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1rem; }
.spec-card h3, .gallery-card h3 { font-size: 1rem; margin-bottom: .55rem; }
.spec-list { list-style: none; display: grid; gap: .45rem; }
.spec-list li { color: #464b5f; font-size: .92rem; }
.gallery-grid { display: grid; gap: .65rem; }
.gallery-grid img { width: 100%; height: auto; border-radius: 10px; border: 1px solid rgba(0,0,0,.08); }

@keyframes floatA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
@keyframes floatB {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(14px); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 8px 24px rgba(59,130,246,.28); }
    50% { box-shadow: 0 12px 30px rgba(124,58,237,.42); }
}
@keyframes buttonAura {
    0%, 100% { opacity: .38; transform: scale(0.995); }
    50% { opacity: .58; transform: scale(1.01); }
}
@keyframes buttonRing {
    0%, 100% { opacity: .24; transform: scale(0.995); }
    50% { opacity: .62; transform: scale(1.012); }
}
@keyframes gridDrift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 90px 58px, -70px 90px; }
}
@keyframes glowDrift {
    0% { transform: translate3d(-2%, 0, 0); opacity: .24; }
    100% { transform: translate3d(2%, -2%, 0); opacity: .4; }
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 960px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
}
/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: #c4c4cd; border-radius: 2px; transition: all .2s ease; }

@media (max-width: 760px) {
    section { padding: 4.2rem 0; }
    .header-inner { height: 64px; }
    .nav-toggle { display: flex; }
    .nav {
        display: none; position: absolute; top: 64px; left: 0; right: 0;
        background: rgba(17,17,25,.98); backdrop-filter: blur(12px);
        flex-direction: column; padding: 1rem 1.25rem; gap: .8rem;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .nav.nav-open { display: flex; }
    .split, .grid-2, .grid-3, .grid-4, .form-grid, .case-list, .case-layout { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero { padding: 4.8rem 0 3rem; }
    .hero-ctas { flex-direction: column; }
    .footer-inner { flex-direction: column; }
    .footer-right { text-align: left; }
    .audit-card { padding: 1.3rem; }
    .audit-price { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════════════════════════
   Recognition components (2026-07-26)
   Reuse existing tokens only — no new palette, no new fonts.
   ═══════════════════════════════════════════════════════════ */

/* Proof shot — one real product screenshot, directly under the hero */
.proof-shot { background: var(--bg-dark); padding: 0 0 5rem; }
.proof-frame {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    background: #0d0d14;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
    aspect-ratio: 16 / 9;
}
.proof-frame img { width: 100%; height: 100%; display: block; object-fit: contain; }
.proof-caption {
    margin-top: .95rem;
    text-align: center;
    color: #9797a5;
    font-size: .88rem;
}
.proof-caption strong { color: #c8c8d2; font-weight: 500; }

/* Symptom checklist — the recognition moment */
.symptoms { background: var(--bg-white); }
.symptom-list {
    list-style: none;
    margin-top: 1.5rem;
    max-width: 820px;
}
.symptom-list li {
    position: relative;
    padding: .8rem 0 .8rem 2.2rem;
    border-bottom: 1px solid var(--border);
    color: #2c2c36;
    font-size: 1.02rem;
}
.symptom-list li:last-child { border-bottom: 0; }
.symptom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.15rem;
    width: 16px;
    height: 16px;
    border: 1.5px solid #c3c3cd;
    border-radius: 4px;
}
.symptoms-verdict {
    margin-top: 1.6rem;
    max-width: 760px;
    font-size: 1.02rem;
    color: #35353f;
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
}

/* Concrete system types — the Globant taxonomy lesson, in plain nouns */
.type-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.type-pills span {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    padding: .44rem .9rem;
    font-size: .83rem;
    color: #3f3f4a;
}
.industries-line {
    margin-top: 1.4rem;
    max-width: 860px;
    color: var(--text-muted);
    font-size: .94rem;
}

/* Before / after inside a dark card */
.beforeafter { display: grid; gap: .45rem; margin-top: .9rem; padding-top: .85rem; border-top: 1px solid var(--border-light); }
.beforeafter p { position: relative; padding-left: 4.2rem; font-size: .87rem; color: #9797a5; }
.beforeafter p b {
    position: absolute; left: 0; top: .1rem;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .65rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .07em;
    color: #6f6f7d;
}
.beforeafter .ba-after { color: #dcdce3; }

@media (max-width: 760px) {
    .proof-shot { padding-bottom: 3.4rem; }
    .proof-slide .proof-caption { min-height: 4.6em; }
    .audio-btn-hero { width: 96px; height: 96px; font-size: .72rem; }
    .audio-btn-hero svg { width: 26px; height: 26px; }
    .symptom-list li { font-size: .96rem; padding-left: 1.9rem; }
    .symptom-list li::before { width: 14px; height: 14px; top: 1.1rem; }
    .beforeafter p { padding-left: 0; padding-top: 1.1rem; }
    .beforeafter p b { top: 0; }
}

/* ═══════════════════════════════════════════════════════════
   Narrative upgrade (2026-08-11)
   Outcome → cost → origin → Client Zero → transformation → ROI.
   Reuse existing tokens only — no new palette, no new fonts.
   ═══════════════════════════════════════════════════════════ */

.hero-sub-owner { margin-top: -0.6rem; }
.symptoms-verdict strong { color: var(--text); }

/* Cost of inaction */
.cost { background: #efeff3; }
.cost .grid-3 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.cost-verdict {
    margin-top: 1.6rem;
    max-width: 780px;
    font-size: 1.02rem;
    color: #35353f;
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
}

/* Origin story */
.origin { background: var(--bg-white); }
.origin-body p { padding: .45rem 0; color: #35353f; }
.origin-punch {
    font-weight: 700;
    color: var(--text) !important;
    font-size: 1.08rem;
    border-left: 2px solid var(--accent);
    padding-left: 1rem !important;
    margin: .35rem 0;
}

/* Client Zero sub line */
.engagements-sub { margin-top: .7rem; color: #b6b6bf; max-width: 760px; font-size: .96rem; }

/* What changes — canonical transformations */
.changes { background: var(--bg-white); }
.transform-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem .9rem;
    max-width: 860px;
    margin-top: 1.4rem;
}
.transform-list li {
    display: flex;
    align-items: baseline;
    gap: .55rem;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 12px;
    padding: .7rem .95rem;
    font-size: .95rem;
}
.transform-list li span:first-child { color: var(--text-muted); }
.transform-list li em {
    font-style: normal;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    color: var(--accent);
    font-size: .85rem;
}
.transform-list li span:last-child { font-weight: 600; color: var(--text); }

/* Imagine if — chained outcome */
.imagine {
    margin-top: 1.6rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #f8f8fb;
    padding: 1.2rem 1.3rem;
    max-width: 860px;
}
.imagine-lead {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: .7rem;
}
.flow-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    margin-bottom: .8rem;
}
.flow-strip span {
    border: 1px solid rgba(124,58,237,.28);
    background: #fff;
    border-radius: 999px;
    padding: .34rem .8rem;
    font-size: .84rem;
    font-weight: 600;
    color: var(--text);
}
.flow-strip em {
    font-style: normal;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    color: var(--accent);
    font-size: .85rem;
}
.imagine-body { color: #4d4d57; font-size: .95rem; }

/* Competitive advantage */
.advantage { background: var(--bg-dark); color: var(--text-light); }
.advantage .section-title { color: var(--text-light); }
.advantage-body p { padding: .45rem 0; color: #b6b6bf; }
.advantage-body p:last-child { color: #dcdce3; }

/* How it works sub line */
.method-sub { margin-top: .7rem; color: var(--text-muted); max-width: 760px; font-size: .96rem; }

/* ROI */
.roi { background: #efeff3; }
.roi-body p { color: #35353f; }
.roi-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem .9rem;
    margin: .9rem 0 1rem;
}
.roi-list li {
    position: relative;
    padding-left: 1.4rem;
    color: #35353f;
    font-size: .93rem;
}
.roi-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 600; }

/* Pricing tiers */
.audit-tier, .tier-kicker {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #8f8fa0;
    margin-bottom: .3rem;
}

@media (max-width: 760px) {
    .transform-list, .roi-list { grid-template-columns: 1fr; }
    .imagine { padding: 1rem; }
}

/* ═══════════════════════════════════════════════════════════
   Mini case studies (2026-08-11)
   ═══════════════════════════════════════════════════════════ */

.mini-cases { background: #efeff3; padding-top: 3.4rem; }
.mini-case {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 2rem;
    align-items: center;
    padding: 2.4rem 0;
    border-bottom: 1px solid var(--border);
}
.mini-case:last-of-type { border-bottom: 0; }
.mini-case:nth-of-type(even) .mini-shot { order: 2; }
.mini-shot svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 18px 44px rgba(0,0,0,.16);
}
.mini-shot-note {
    margin-top: .6rem;
    font-size: .78rem;
    color: var(--text-muted);
    text-align: center;
}
.mini-body h2 { font-size: 1.5rem; letter-spacing: -0.02em; margin: .15rem 0 .8rem; }
.mini-dl { display: grid; gap: .55rem; }
.mini-dl dt {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent);
}
.mini-dl dd { color: #35353f; font-size: .93rem; margin-bottom: .35rem; }
.mini-proof {
    margin-top: .9rem;
    font-size: .85rem;
    color: var(--text-muted);
    border-left: 2px solid var(--accent);
    padding-left: .8rem;
}
.case-link-wide { grid-column: 1 / -1; background: var(--bg-dark); color: var(--text-light); border-color: rgba(255,255,255,.14); }
.case-link-wide span { color: #fff; }
.case-link-wide em { color: #9797a5; }
.case-link-wide:hover { border-color: rgba(124,58,237,.55); }

@media (max-width: 860px) {
    .mini-case { grid-template-columns: 1fr; gap: 1.2rem; }
    .mini-case:nth-of-type(even) .mini-shot { order: 0; }
}

/* ═══════════════════════════════════════════════════════════
   Homepage restructure (2026-08-11, brief v2)
   ═══════════════════════════════════════════════════════════ */

/* Client Zero merged origin story */
.engagements-story { margin-top: .9rem; max-width: 780px; }
.engagements-story p { color: #b6b6bf; font-size: .96rem; padding: .3rem 0; }
.engagements-punch {
    color: #fff !important;
    font-weight: 700;
    border-left: 2px solid var(--accent);
    padding-left: 1rem !important;
    margin: .3rem 0;
}

/* Imagine the day it's running */
.imagine-day { background: #efeff3; }
.flow-strip-lg { margin: 1.2rem 0 1.1rem; }
.flow-strip-lg span { font-size: .92rem; padding: .42rem 1rem; }
.imagine-copy { max-width: 820px; color: #35353f; font-size: 1.02rem; }
.imagine-punch {
    margin: 1.2rem 0 1.6rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
    max-width: 820px;
}

/* Beyond efficiency closing line */
.advantage-punch { color: #fff !important; font-weight: 600; }

/* Curated outcome cards */
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.outcome-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.2rem;
    text-decoration: none;
    color: var(--text);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.outcome-card:hover { border-color: rgba(124,58,237,.35); box-shadow: 0 14px 30px rgba(0,0,0,.08); transform: translateY(-2px); }
.outcome-kicker {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
}
.outcome-num {
    font-size: 2rem;
    font-weight: 800;
    margin: .3rem 0 .1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.outcome-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.outcome-card > p:last-child { color: #4d4d57; font-size: .88rem; }
.outcome-more { margin-top: 1.4rem; text-align: center; }
.btn-ghost-dark { color: var(--text); background: transparent; border: 1px solid rgba(0,0,0,.2); }
.btn-ghost-dark:hover { border-color: var(--accent); color: var(--accent); }

/* Final CTA list line */
.cta-list { font-style: italic; color: #c4c4d0 !important; }

@media (max-width: 960px) {
    .outcome-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .outcome-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   Visual upgrade (2026-08-11): real screenshots, case carousel,
   audio-first modal, Nina voice widget
   ═══════════════════════════════════════════════════════════ */

/* Mini-case real screenshots */
.mini-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 18px 44px rgba(0,0,0,.16);
}
.mini-img-stack { margin-top: .8rem; }

/* Outcome stat chip inside mini cases */
.mini-stat {
    display: inline-block;
    margin: -.3rem 0 .8rem;
    padding: .32rem .8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(59,130,246,.1));
    border: 1px solid rgba(124,58,237,.25);
    color: var(--accent);
    font-weight: 700;
    font-size: .82rem;
}

/* Proof carousel under the hero */
.proof-carousel { position: relative; }
.proof-slide { display: none; margin: 0; }
.proof-slide.active { display: block; animation: slideIn .6s var(--ease); }
.proof-slide .proof-caption { min-height: 3.2em; }
.proof-dots { display: flex; justify-content: center; gap: .5rem; margin-top: .9rem; }
.proof-dots button {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: none;
    background: #3a3a48;
    cursor: pointer;
    padding: 0;
    transition: background .25s ease, transform .25s ease;
}
.proof-dots button.active { background: var(--accent); transform: scale(1.25); }
.proof-dots button { background: #55556a; }
.proof-dots button:hover { background: #6b6b7d; }
@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Outcome card thumbnails */
.outcome-thumb {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: .8rem;
    border: 1px solid rgba(0,0,0,.08);
    background: #0d0d14;
}
.outcome-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .4s var(--ease);
}
.outcome-card:hover .outcome-thumb img { transform: scale(1.04); }

/* Audio-first modal */
.audio-recorder-hero { align-items: center; }
.audio-btn-hero {
    flex-direction: column;
    justify-content: center;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    margin: .3rem auto .2rem;
    gap: .35rem;
    background: var(--gradient);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    box-shadow: 0 10px 30px rgba(124,58,237,.35);
    animation: pulseGlow 2.8s ease-in-out infinite;
}
.audio-btn-hero:hover { background: var(--gradient); filter: brightness(1.07); border: none; }
.audio-btn-hero #audioBtnText { max-width: 100px; line-height: 1.2; text-align: center; }
.audio-btn-hero.recording {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    animation: recPulse 1.5s ease-in-out infinite;
}
.or-divider {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #9797a5;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin: .35rem 0 .1rem;
}
.or-divider::before, .or-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.fields-hint { font-size: .8rem; color: #6b7280; margin-top: .2rem; }

/* Nina — floating voice receptionist */
.nina-fab {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: .55rem;
    border: none;
    border-radius: 999px;
    padding: .7rem 1.1rem;
    background: var(--gradient);
    color: #fff;
    font: inherit;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(124,58,237,.4);
    transition: transform .2s var(--ease), filter .2s var(--ease);
}
.nina-fab:hover { transform: translateY(-2px); filter: brightness(1.06); }
.nina-fab.live { background: linear-gradient(135deg, #dc2626, #b91c1c); animation: recPulse 1.5s ease-in-out infinite; }
.nina-fab-dot { width: 9px; height: 9px; border-radius: 50%; background: #7ef0d4; }
.nina-fab.live .nina-fab-dot { background: #fff; }


/* Required-bottleneck validation (2026-08-12) */
.challenge-error {
    display: none;
    background: #fef2f2;
    border: 1px solid rgba(239,68,68,.35);
    color: #b91c1c;
    border-radius: 10px;
    padding: .6rem .8rem;
    font-size: .82rem;
}
.challenge-error.show { display: block; }

/* CTA lines after case grid and economics */
.outcome-cta-line { color: #35353f; font-size: .95rem; margin-bottom: .8rem; }
.outcome-more .btn { margin: 0 .35rem; }
.roi-cta { margin-top: .9rem; }
.roi-cta a { color: var(--accent); font-weight: 600; text-decoration: none; }
.roi-cta a:hover { text-decoration: underline; }
.type-pill-more {
    border: 1px dashed rgba(124,58,237,.4);
    background: transparent;
    border-radius: 999px;
    padding: .44rem .9rem;
    font-size: .83rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.type-pill-more:hover { background: rgba(124,58,237,.06); }


/* ═══════════════════════════════════════════════════════════
   Section redesigns (2026-08-12): interactive symptoms,
   transformation tiles, method timeline
   ═══════════════════════════════════════════════════════════ */

/* A · Symptoms as a real checklist */
.symptoms-hint {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--accent);
    margin-top: 1.2rem;
}
.symptom-list li { cursor: pointer; user-select: none; transition: color .2s ease, padding-left .2s var(--ease); border-radius: 8px; }
.symptom-list li:hover { color: var(--text); }
.symptom-list li:hover::before { border-color: var(--accent); }
.symptom-list li::before { transition: all .2s var(--ease); }
.symptom-list li.checked { color: var(--text); font-weight: 600; }
.symptom-list li.checked::before {
    background: var(--gradient);
    border-color: transparent;
}
.symptom-list li.checked::after {
    content: "\2713";
    position: absolute;
    left: 3px;
    top: .78rem;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
}
.symptoms-verdict { transition: all .35s var(--ease); }
.symptoms-verdict.lit {
    background: linear-gradient(135deg, rgba(124,58,237,.07), rgba(59,130,246,.07));
    border-left-width: 4px;
    padding: 1rem 1rem 1rem 1.2rem;
    border-radius: 0 12px 12px 0;
    font-size: 1.08rem;
}

/* B · Transformation tiles */
.transform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.6rem;
}
.transform-tile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.2rem 1.4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.transform-tile:hover { border-color: rgba(124,58,237,.3); box-shadow: 0 16px 34px rgba(0,0,0,.08); transform: translateY(-3px); }
.t-before {
    color: var(--text-muted);
    font-size: .92rem;
    text-decoration: line-through;
    text-decoration-color: rgba(124,58,237,.45);
    text-decoration-thickness: 1.5px;
}
.t-arrow { color: var(--accent); font-size: 1rem; line-height: 1; }
.t-after {
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* C · Method timeline */
.method-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    position: relative;
    margin-top: 2rem;
}
.method-line::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    opacity: .3;
}
.stepv2 { position: relative; text-align: center; padding: 0 .4rem; }
.stepv2-dot {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 6px 18px rgba(124,58,237,.3), 0 0 0 6px var(--bg-white);
}
.stepv2-time {
    display: block;
    margin-top: .7rem;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--accent);
}
.stepv2 h3 { margin: .25rem 0 .35rem; font-size: 1.05rem; }
.stepv2 p { color: #52525d; font-size: .9rem; }

@media (max-width: 860px) {
    .transform-grid { grid-template-columns: 1fr 1fr; }
    .method-line { grid-template-columns: 1fr; gap: 1.6rem; }
    .method-line::before {
        top: 8%;
        bottom: 8%;
        left: 21px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, #7c3aed, #3b82f6);
    }
    .stepv2 { text-align: left; padding-left: 3.4rem; }
    .stepv2-dot { position: absolute; left: 0; top: 0; box-shadow: 0 6px 18px rgba(124,58,237,.3), 0 0 0 6px var(--bg-white); }
    .stepv2-time { margin-top: 0; }
}
@media (max-width: 560px) {
    .transform-grid { grid-template-columns: 1fr; }
}

/* ---- Nina: voice SDR in the contact modal ---- */
.nina {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(59, 130, 246, 0.05));
}
.nina-head { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 0.9rem; }
.nina-avatar {
    flex: 0 0 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--gradient); color: #fff;
}
.nina-copy { display: flex; flex-direction: column; gap: 0.2rem; }
.nina-copy strong { font-size: 0.98rem; }
.nina-copy span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; }
.btn-nina {
    width: 100%; background: var(--gradient); color: #fff; border: 0;
    padding: 0.75rem 1rem; border-radius: 10px; font-weight: 600; cursor: pointer;
    font-size: 0.95rem; transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-nina:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.btn-nina:disabled { opacity: 0.5; cursor: default; }
.nina-status { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.6rem; min-height: 1.2em; }
.nina-status-live { color: var(--accent); }
.nina-status-warn { color: #b45309; }
.nina-status-done { color: #047857; }
.nina-panel { margin-top: 0.9rem; }
.nina-transcript {
    max-height: 190px; overflow-y: auto;
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: 10px; padding: 0.7rem 0.8rem;
}
.nina-transcript:empty { display: none; }
.nina-line { font-size: 0.86rem; line-height: 1.5; margin-bottom: 0.5rem; }
.nina-line:last-child { margin-bottom: 0; }
.nina-line-nina { color: var(--text); }
.nina-line-nina::before { content: "Nina — "; font-weight: 600; color: var(--accent); }
.nina-line-user { color: var(--text-muted); }
.nina-line-user::before { content: "You — "; font-weight: 600; color: var(--text); }
.nina-booking {
    margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--border);
    text-align: center;
}
.nina-booking p { font-size: 0.88rem; margin-bottom: 0.6rem; }
@media (prefers-reduced-motion: reduce) { .btn-nina { transition: none; } }


/* ═══ Testimonials (2026-08-13) ═══ */
.testimonials { background: var(--bg-dark); color: var(--text-light); border-top: 1px solid rgba(255,255,255,.08); }
.testimonials .section-title { color: var(--text-light); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-card {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.6rem 1.5rem 1.3rem;
    position: relative;
    margin: 0;
}
.quote-card::before {
    content: "\201C";
    position: absolute;
    top: .2rem;
    left: 1.1rem;
    font-size: 3.4rem;
    line-height: 1;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .9;
}
.quote-card blockquote { margin: 1.4rem 0 .9rem; color: #d6d6de; font-size: .95rem; line-height: 1.65; }
.quote-card figcaption {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9797a5;
}
@media (max-width: 760px) { .quote-grid { grid-template-columns: 1fr; } }


/* Symptoms → Nina CTA (appears at 3+ checks, never blocks scrolling) */
.symptoms-cta {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(6px);
    transition: max-height .45s var(--ease), opacity .4s ease, transform .45s var(--ease);
    max-width: 760px;
}
.symptoms-cta.show {
    max-height: 260px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 1.1rem;
}
.symptoms-cta p { color: #35353f; font-size: .98rem; margin-bottom: .8rem; }
.symptoms-cta .btn { margin-right: .8rem; }
.symptoms-cta-note { color: var(--text-muted); font-size: .85rem; font-style: italic; }
@media (prefers-reduced-motion: reduce) { .symptoms-cta { transition: none; } }

/* ---- Nina: two explicit paths ---- */
.paths { display: grid; gap: 0.7rem; margin-bottom: 0.5rem; }
.path {
    display: grid; grid-template-columns: 38px 1fr; gap: 0.2rem 0.85rem;
    align-items: center; text-align: left; cursor: pointer;
    border: 1px solid var(--border); border-radius: 14px;
    padding: 1rem 1.15rem; background: var(--bg-white);
    transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
    font: inherit; color: inherit;
}
.path:hover { border-color: var(--accent); transform: translateY(-1px); }
.path:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.path-icon {
    grid-row: 1 / span 2; width: 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center; color: #fff; background: var(--gradient);
}
.path-write .path-icon { background: #111119; }
.path strong { font-size: 0.98rem; }
.path > span:not(.path-icon) { font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; }
.nina-back {
    background: none; border: 0; color: var(--text-muted); cursor: pointer;
    font: inherit; font-size: 0.85rem; padding: 0 0 0.6rem;
}
.nina-back:hover { color: var(--accent); }
.nina-intro { font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; margin-bottom: 0.85rem; }
.nina-email-label { display: block; font-size: 0.85rem; margin-bottom: 0.9rem; }
.nina-email-label input {
    display: block; width: 100%; margin-top: 0.35rem;
    padding: 0.7rem 0.85rem; border: 1px solid var(--border);
    border-radius: 10px; font: inherit; font-size: 0.95rem;
}
.nina-email-label input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
@media (prefers-reduced-motion: reduce) { .path { transition: none; } }

.nina-clock {
    font-size: 0.78rem; color: var(--text-muted);
    font-variant-numeric: tabular-nums; margin-top: 0.6rem;
}
.nina-clock-over { color: #b45309; }


/* Landing + phone side by side (Later case) */
.mini-duo { display: grid; grid-template-columns: 1fr auto; gap: .8rem; align-items: start; }
.mini-duo .mini-img:first-child { align-self: center; }
.mini-phone { width: 148px; border-radius: 22px; border: 3px solid #1a1a24; box-shadow: 0 18px 44px rgba(0,0,0,.28); }
@media (max-width: 560px) { .mini-duo { grid-template-columns: 1fr; } .mini-phone { width: 180px; justify-self: center; } }

/* Two side-by-side shots under a hero shot (Chase case) */
.mini-pair { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: .8rem; }
@media (max-width: 560px) { .mini-pair { grid-template-columns: 1fr; } }
