/* Accessibility: honor reduced-motion globally — kills the infinite hero diamonds,
   trust-icon loops, pulse dots, and shimmer for users who ask for less motion. */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  }
  /* Web Everything shimmer */
  .we-shimmer {
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal) 35%, var(--teal-light) 50%, var(--teal) 65%, var(--teal) 100%);
    background-size: 300% 100%;
    background-clip: text; -webkit-background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    animation: verisShimmer 7s linear infinite;
  }
  @keyframes verisShimmer { 0% { background-position: 200% 0; } 100% { background-position: -100% 0; } }

  /* Hero — content-height. Was full-viewport but the empty space below the
     CTAs felt heavy; landing-page eye gets to the demo + deliverables
     faster when the hero just wraps its own content. */
  .hero {
    position: relative; background: var(--dark);
    display: flex; flex-direction: column; align-items: stretch; overflow: hidden;
    /* Tightened to fit the content — even 40/40 (32 on phones). The nav is a
       solid dark sticky bar, so the hero sits right below it; this padding is
       pure breathing room, not nav-clearance. Homepage-specific — subpage
       .page-hero keeps the shared --sec-y-hero token. */
    padding: clamp(40px, 5.5vh, 76px) 0;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 55% 50% at 75% 40%, rgba(0,161,155,0.1) 0%, transparent 70%),
      radial-gradient(ellipse 40% 55% at 20% 70%, rgba(214,51,132,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  /* Diamond decoration system */
  .bg-diamonds { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
  .bg-d {
    position: absolute; border: 1.5px solid rgba(0,161,155,0.20);
    border-radius: var(--bg-diamond-radius); opacity: 0;
    transform: rotate(45deg) translateX(160px);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
  }
  .bg-d.from-l { transform: rotate(45deg) translateX(-160px); }
  .bg-d.in     { opacity: 1; transform: rotate(45deg); }
  @keyframes dFloat1 {
    0%,100% { transform: rotate(45deg) translateX(0)   translateY(0);   }
    25%     { transform: rotate(45deg) translateX(14px)  translateY(-18px); }
    55%     { transform: rotate(45deg) translateX(-10px) translateY(-12px); }
    80%     { transform: rotate(45deg) translateX(16px)  translateY(8px);   }
  }
  @keyframes dFloat2 {
    0%,100% { transform: rotate(45deg) translateX(0)   translateY(0);   }
    30%     { transform: rotate(45deg) translateX(-16px) translateY(14px);  }
    60%     { transform: rotate(45deg) translateX(12px)  translateY(-16px); }
    80%     { transform: rotate(45deg) translateX(-8px)  translateY(8px);   }
  }
  @keyframes dFloat3 {
    0%,100% { transform: rotate(45deg) translateX(0)   translateY(0);   }
    40%     { transform: rotate(45deg) translateX(10px)  translateY(18px);  }
    70%     { transform: rotate(45deg) translateX(-14px) translateY(-10px); }
  }
  .hero .bg-d[data-f="1"].in,
  .contact-section .bg-d[data-f="1"].in { animation: dFloat1  9s ease-in-out 1.3s infinite; }
  .hero .bg-d[data-f="2"].in,
  .contact-section .bg-d[data-f="2"].in { animation: dFloat2 12s ease-in-out 1.6s infinite; }
  .hero .bg-d[data-f="3"].in,
  .contact-section .bg-d[data-f="3"].in { animation: dFloat3  8s ease-in-out 1.0s infinite; }
  .hero .bg-d[data-f="4"].in,
  .contact-section .bg-d[data-f="4"].in { animation: dFloat1 14s ease-in-out 2.0s infinite reverse; }


  /* Animated trust icons */
  @keyframes shieldPulse { 0%,100%{filter:drop-shadow(0 0 0px rgba(0,196,188,0))} 50%{filter:drop-shadow(0 0 5px rgba(0,196,188,0.75))} }
  @keyframes trendDraw   { 0%{stroke-dashoffset:32} 60%,100%{stroke-dashoffset:0} }
  @keyframes clockTick   { 0%{transform:rotate(0deg)} 85%{transform:rotate(330deg)} 100%{transform:rotate(360deg)} }
  @keyframes personBob   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-2px)} }
  @keyframes prcGlow     { 0%,100%{filter:drop-shadow(0 0 0px rgba(0,196,188,0))} 50%{filter:drop-shadow(0 0 8px rgba(0,196,188,0.8))} }
  /* AI sparkle — radiating burst around the central star */
  @keyframes aiSparkle   { 0%,100%{opacity:0.4;transform:scale(0.85)} 50%{opacity:1;transform:scale(1.05)} }
  @keyframes aiCore      { 0%,100%{filter:drop-shadow(0 0 0 rgba(214,51,132,0))} 50%{filter:drop-shadow(0 0 7px rgba(214,51,132,0.6))} }
  /* DMA pin sonar — expanding ring under the pin */
  @keyframes pinPing     { 0%{r:3;opacity:0.8} 100%{r:11;opacity:0} }
  @keyframes pinDrop     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-1.5px)} }
  /* Calendar phase pulse — three blocks light in sequence */
  @keyframes phase30     { 0%,15%{opacity:0.3} 25%,40%{opacity:1} 50%,100%{opacity:0.3} }
  @keyframes phase60     { 0%,40%{opacity:0.3} 50%,65%{opacity:1} 75%,100%{opacity:0.3} }
  @keyframes phase90     { 0%,65%{opacity:0.3} 75%,90%{opacity:1} 100%{opacity:0.3} }
  .trust-shield { animation: shieldPulse 2.6s ease-in-out infinite; }
  .trust-trend  { stroke-dasharray:32; animation: trendDraw 2.2s ease-in-out infinite; }
  .trust-hand   { transform-box:fill-box; transform-origin:bottom center; animation: clockTick 3s cubic-bezier(0.4,0,0.2,1) infinite; }
  .trust-person { animation: personBob 2.4s ease-in-out infinite; }
  .trust-prc    { color: rgba(0,196,188,0.9) !important; }
  .trust-prc svg { animation: prcGlow 2.2s ease-in-out infinite; }
  /* AI Overviews — pink sparkle bursts, teal core star */
  .trust-ai__sparkle { animation: aiSparkle 2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .trust-ai__core    { animation: aiCore 2.4s ease-in-out infinite; }
  /* DMA — teal pin, pink sonar ring */
  .trust-pin__ring   { animation: pinPing 2.6s ease-out infinite; }
  .trust-pin__body   { animation: pinDrop 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: bottom center; }
  /* 30/60/90 — three blocks light in sequence */
  .trust-cal__30 { animation: phase30 3.6s ease-in-out infinite; }
  .trust-cal__60 { animation: phase60 3.6s ease-in-out infinite; }
  .trust-cal__90 { animation: phase90 3.6s ease-in-out infinite; }

  /* Hero body — content-height. Top padding tight against the nav so
     content sits up high. */
  .hero__body {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    padding: 8px 0 0;
  }
  /* Matches home-hero-v2: plain teal eyebrow with a dot — NOT a pill. */
  .hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal-light); margin-bottom: 22px; width: fit-content;
  }
  .hero__eyebrow-dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); animation: pulse-dot 2s ease-in-out infinite; }
  @keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.65); } }

  /* LCP guard: the hero is above the fold and is the homepage's Largest
     Contentful Paint element. It must render with FIRST paint and never wait
     for the deferred fade-in JS (.fi -> .visible, in shell.js). Exempt every
     .fi inside the hero from the hidden state; the scroll-triggered fade stays
     for below-the-fold sections. `section.hero .fi` (0,2,1) outranks
     `.fi.visible` (0,2,0) regardless of stylesheet order. */
  section.hero .fi { opacity: 1; transform: none; }

  .hero__title {
    /* Sized for the longer question headline — the old 62px ceiling
       (tuned for the short stat headline) overflowed the new copy to a
       5-line wall on desktop. Caps at 50px so it lands on ~3 calm lines;
       the vw term scales it down through phones. */
    /* Weight + tracking match home-hero-v2 (600, not the site's 800 headers). */
    font-size: clamp(29px, 4.1vw, 45px); font-weight: 600;
    color: var(--white); letter-spacing: -0.014em; line-height: 1.18;
    margin-bottom: 22px; max-width: 880px;
  }
  .hero__title em { font-style: normal; color: var(--teal-light); }
  /* The 47% stat lives in the why-now tile with its own inline source ("TechTarget, 2026"),
     and the hero no longer carries a "1" superscript, so the shared footer's citation1
     footnote stays COLLAPSED — revealing it would dangle with no in-copy referent. The old
     .hero__fn superscript rule + the citation1 reveal were removed when the stat moved. */
  .hero__sub {
    font-size: 18px; line-height: 1.65;
    color: rgba(255,255,255,0.92); max-width: 620px;
    margin-bottom: 26px; font-weight: 400;
  }
  .hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
  /* Subtle demo text-link (play icon) — calmer than a bordered button so it doesn't
     compete with the form's CTA. Opens the existing demo lightbox via [data-open-demo]. */
  .hero__demo { display:inline-flex; align-items:center; gap:9px; color:#fff; font-size:14.5px; font-weight:600; text-decoration:none; transition:color .15s ease; }
  .hero__demo:hover { color: var(--teal-light); }
  .hero__demo svg { width:30px; height:30px; flex-shrink:0; }
  .hero__call-note {
    font-size: 11.5px; color: rgba(255,255,255,0.42); margin-bottom: 28px;
    letter-spacing: 0.02em;
  }
  /* Secondary, no-cost entry point under the hero CTAs (links to /check). */
  .hero__alt { font-size: 13.5px; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
  .hero__alt a {
    color: var(--teal-light); font-weight: 500; text-decoration: none;
    border-bottom: 1px solid rgba(0,196,188,0.35); padding-bottom: 1px;
    transition: color .15s ease, border-color .15s ease;
  }
  .hero__alt a:hover { color: #fff; border-color: var(--teal-light); }
  /* Operator-voice trust paragraph — sits between CTAs and the pill row. */
  .hero__trust-note {
    font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.65;
    max-width: 620px; margin: 18px 0 28px; font-weight: 400;
  }
  .hero__trust-note em { font-style: normal; color: rgba(255,255,255,0.78); }

  .hero__trust { display: flex; flex-wrap: wrap; gap: 20px 32px; margin-top: 4px; }
  .hero__trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.5);
  }
  .hero__trust-item svg { flex-shrink: 0; overflow: visible; }
  /* Quiet reassurance pills under the hero CTAs — restored 2026-06-19 (Phase C). */
  .hero__pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 13px; border-radius: 999px;
    border: 1px solid rgba(0,196,188,0.22); background: rgba(0,196,188,0.05);
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.62); white-space: nowrap;
  }
  .hero__pill svg { flex-shrink: 0; width: 13px; height: 13px; color: var(--teal-light); }
  .hero__trust-note { margin-top: 18px; font-size: 11px; color: rgba(255,255,255,0.26); line-height: 1.6; max-width: 620px; }

  /* Hero two-column layout — text + CTAs on left, sample competitor card on right.
     Stacks on tablet and below so the CTA stays above the fold on mobile.
     CRITICAL: minmax(0, 1fr) + min-width:0 on items prevents the carousel's
     content (tables, surface chips) from expanding the grid column wider than
     the viewport on mobile — without these the H1 gets cut off too. */
  .hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px; align-items: start;
  }
  @media (min-width: 1024px) {
    .hero__layout { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 56px; }
  }
  .hero__left, .hero__right { min-width: 0; max-width: 100%; }
  .hero__right { position: relative; }

  /* ── Embedded FREE-CHECK form + verdict (lives in .hero__right; posts to /check/run,
     the SAME endpoint as /medical-ai-visibility — see CHECK_HTML. Only the form/verdict
     CSS is copied here, not the §4/§5 page bands. NOTE: this duplicates the form styling
     from CHECK_HTML; a future cleanup could extract both to a shared partial. ── */
  .chk-tool{background:#fff;border:1px solid var(--gray-100);border-radius:16px;padding:24px;box-shadow:0 26px 60px -34px rgba(0,196,188,.55),0 2px 8px rgba(0,0,0,.18)}
  /* Card header — gives the embedded form its own title on the homepage (the /medical-ai-visibility
     page gets this context from its page-hero copy; the homepage form needs it inline). */
  .chk-card-eyebrow{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--teal);margin:0 0 4px}
  .chk-card-h{font-size:19px;font-weight:700;color:var(--gray-900);margin:0 0 16px;letter-spacing:-.01em}
  .chk-field{margin-bottom:14px}
  .chk-field label{display:block;font-size:12.5px;font-weight:600;letter-spacing:.04em;color:#1f2937;margin:0 0 6px}
  .chk-opt{font-weight:400;letter-spacing:0;text-transform:none;color:#6b7280}
  .chk-field input,.chk-field textarea{width:100%;background:#fff;border:1px solid #c2c9d4;border-radius:8px;padding:14px 16px;font-size:16px;color:var(--gray-900);font-family:inherit;box-sizing:border-box;transition:border-color .15s}
  .chk-field textarea{resize:vertical;min-height:48px;line-height:1.5}
  .chk-field input::placeholder,.chk-field textarea::placeholder{color:#6b7280}
  .chk-field input:focus,.chk-field textarea:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px rgba(0,161,155,.14)}
  .chk-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
  .chk-more{border:0;margin:0 0 14px;padding:0}
  .chk-more>summary{list-style:none;cursor:pointer;display:inline-flex;align-items:center;gap:7px;font-size:12.5px;font-weight:600;color:var(--teal-dark);padding:6px 2px;min-height:36px}
  .chk-more>summary::-webkit-details-marker{display:none}
  .chk-more>summary::before{content:'+';font-size:16px;line-height:1;color:var(--teal);font-weight:600}
  .chk-more[open]>summary::before{content:'\2212'}
  .chk-more__body{padding-top:8px}
  .chk-btn{display:block;width:100%;min-height:48px;background:var(--teal-dark);color:#fff;text-align:center;font-size:15px;font-weight:600;border:none;border-radius:10px;padding:14px;cursor:pointer;text-decoration:none;transition:background .15s;font-family:inherit}
  .chk-btn:hover{background:var(--teal)}
  .chk-btn.is-loading{opacity:.7;cursor:default}
  .chk-reassure{display:flex;flex-wrap:wrap;gap:14px;margin-top:14px}
  .chk-reassure span{display:inline-flex;align-items:center;gap:6px;font-size:11px;color:#6b7280}
  .chk-reassure span::before{content:'';width:7px;height:7px;background:var(--teal);transform:rotate(45deg);border-radius:2px;flex:none}
  .chk-err{font-size:12.5px;color:#be123c;margin:11px 2px 0}
  .chk-verdict{background:#fff;border:1px solid var(--gray-100);border-radius:16px;padding:24px;box-shadow:0 26px 60px -34px rgba(0,196,188,.55),0 2px 8px rgba(0,0,0,.18);min-height:430px}
  .chk-verdict__eyebrow{display:inline-block;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--teal-dark);margin-bottom:10px}
  .chk-verdict__line{font-size:19px;line-height:1.4;font-weight:600;color:var(--gray-900);margin:0 0 10px}
  .chk-verdict__sub{font-size:14px;line-height:1.6;color:#4b5563;margin:0 0 18px}
  .chk-verdict .chk-btn{margin-bottom:10px}
  .chk-verdict__alt{font-size:12.5px;line-height:1.55;color:#6b7280;margin:0 0 12px;text-align:center}
  .chk-verdict__alt a{color:var(--teal-dark);font-weight:600;text-decoration:none;border-bottom:1px solid rgba(0,161,155,.3)}
  .chk-reset{background:none;border:none;color:#6b7280;font-size:12.5px;cursor:pointer;text-decoration:underline;font-family:inherit;padding:0}
  .chk-verdict__method{font-size:11.5px;color:#6b7280;margin:14px 0 0;line-height:1.5}
  .chk-turnstile{margin:0 0 10px}
  .chk-verdict__answer{font-size:13.5px;line-height:1.7;color:#374151;white-space:pre-line;margin:0 0 18px;padding:14px 16px;background:#f0fbfa;border-left:3px solid var(--teal);border-radius:0 10px 10px 0}
  .chk-verdict__line,.chk-verdict__sub,.chk-verdict__method,.chk-verdict__answer{overflow-wrap:anywhere}
  .pac-container{z-index:1300}
  .pac-container img{max-width:none}
  @media(max-width:560px){.chk-row{grid-template-columns:1fr;gap:11px}}
  @media(max-width:400px){.chk-tool{padding:18px}.chk-field label{font-size:12px}.chk-btn{padding:15px}.chk-reassure span{font-size:10.5px}}
  @media(max-width:380px){.chk-turnstile{overflow:hidden;max-width:100%}.chk-turnstile>*{transform:scale(.84);transform-origin:left top}}

  /* ── Teal banner under the hero → AI FAQ Kit (the fix most practices need) ── */
  .hh-banner { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; background:linear-gradient(90deg, var(--teal), var(--teal-light)); color:#fff; text-decoration:none; padding:14px 24px; text-align:center; font-size:14.5px; }
  .hh-banner__tag { font-size:10px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; background:rgba(255,255,255,.22); padding:4px 10px; border-radius:999px; }
  .hh-banner__msg { font-weight:500; opacity:.95; }
  .hh-banner__cta { font-weight:700; white-space:nowrap; border-bottom:1px solid rgba(255,255,255,.55); padding-bottom:1px; }
  .hh-banner:hover .hh-banner__cta { border-color:#fff; }
  @media(max-width:560px){ .hh-banner{font-size:13px;padding:12px 16px;gap:10px} }

  /* Sections */
  /* Section vertical rhythm uses the shared tokens (--sec-y / -lg / -sm) defined
     once in the shell :root. Standard bands use var(--sec-y). No per-band clamps,
     no mobile-breakpoint padding, no !important — one source of truth. */
  .section { padding: var(--sec-y) 0; position: relative; overflow: hidden; }
  .section > .container { position: relative; z-index: 1; }
  .section--dark { background: var(--dark); color: var(--white); }
  .section--dark-2 { background: var(--dark-2); color: var(--white); }
  .section--gray { background: var(--gray-50); }
  .section--border { border-top: 1px solid var(--gray-100); }

  /* Static corner diamonds — calm, non-moving accents that visually separate the
     contiguous light offer sections (each section gets a teal + a navy diamond in
     varied corners, plus a faint center glow). Sits behind content (z-index 0). */
  .sec-deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
  .sec-deco span { position: absolute; border-radius: var(--bg-diamond-radius); transform: rotate(45deg); }
  /* Light-theme diamond accent (teal). Bumped +50% from 0.14 for more presence. */
  .sec-deco .d-teal { border: 1.5px solid rgba(0,161,155,0.21); }
  .sec-deco .d-navy { border: 1.5px solid rgba(2,6,35,0.07); }
  .sec-deco .glow { border: 0; border-radius: 50%; filter: blur(70px); transform: none; }
  .sec-deco .glow-teal { background: radial-gradient(circle, rgba(0,161,155,0.10), transparent 68%); }
  .sec-deco .glow-navy { background: radial-gradient(circle, rgba(2,6,35,0.05), transparent 68%); }
  .section--dark-border { border-top: 1px solid rgba(255,255,255,0.05); }

  .section-hd { margin-bottom: 64px; }
  .section-hd--center { text-align: center; }
  .section-hd__label {
    display: inline-block;
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 14px;
  }
  .section-hd__label--muted { color: rgba(255,255,255,0.35); }
  /* Light (gray) sections: darken the teal eyebrow for WCAG 1.4.3 — teal #00A19B
     on the gray-50 bg is only ~2.9:1; teal-dark clears 4.5:1. Dark-section labels
     keep teal/teal-light, which already pass on the navy. */
  .section--gray .section-hd__label { color: var(--teal-dark); }
  .section-hd h2 {
    font-size: clamp(28px, 4vw, 46px); font-weight: 800;
    letter-spacing: -0.025em; margin-bottom: 16px; line-height: 1.12;
  }
  .section-hd--dark h2 { color: var(--white); }
  .section-hd p { font-size: 16.5px; color: var(--gray-500); max-width: 620px; line-height: 1.65; }
  .section-hd--center p { margin: 0 auto; }
  .section-hd--dark p { color: rgba(255,255,255,0.5); }

  /* ─── Deliverable — 4 preview cards aligned with hero card aesthetic ─── */
  .deliv-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    max-width: 1180px; margin: 0 auto;
  }
  @media (max-width: 1024px) { .deliv-cards { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 720px) { .deliv-cards { grid-template-columns: 1fr; } }
  .deliv-card {
    background: white; border-radius: 14px; padding: 28px 26px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
    text-align: left; display: flex; flex-direction: column; gap: 14px;
    min-height: 320px;
    /* Prevent grid-track overflow from inner tables / long words. */
    min-width: 0;
    overflow: hidden;
  }
  .deliv-card--clickable {
    border: 1px solid rgba(0,161,155,0.3);
    background: linear-gradient(180deg, white 0%, rgba(0,161,155,0.04) 100%);
    cursor: pointer; font-family: inherit; color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s;
  }
  .deliv-card--clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,161,155,0.18), 0 4px 10px rgba(0,0,0,0.06);
    border-color: rgba(0,161,155,0.5);
  }
  .deliv-card__eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--teal-dark);
  }
  .deliv-card__title {
    font-family: var(--font-display);
    font-size: 19px; font-weight: 700; color: #0f172a;
    margin: 0; letter-spacing: -0.012em; line-height: 1.25;
  }
  .deliv-card__body { font-size: 13.5px; line-height: 1.6; color: #4b5563; margin: 0; }

  /* Card 1 — mini Diagnosis (3 colored mini-cols) */
  .deliv-card__mini-diag { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: auto; }
  .deliv-card__mini-col {
    padding: 12px 10px; border-radius: 8px; background: #f7f8fa;
    border-left: 3px solid var(--teal); display: flex; flex-direction: column; gap: 4px;
  }
  .deliv-card__mini-h { font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6b7280; }
  .deliv-card__mini-stat { font-size: 16px; font-weight: 700; color: #0f172a; letter-spacing: -0.01em; line-height: 1.1; }
  .deliv-card__mini-sub { font-size: 11.5px; color: #6b7280; line-height: 1.4; }

  /* Card 2 — AI Score */
  .deliv-card__ai-score {
    margin-top: auto; padding: 16px 18px;
    background: linear-gradient(135deg, #fff8e8 0%, #ffeec8 100%);
    border-radius: 10px; border: 1px solid #f3d8a0;
    display: flex; align-items: center; gap: 16px;
  }
  .deliv-card__ai-num { font-size: 36px; font-weight: 800; color: #b85c00; line-height: 1; letter-spacing: -0.02em; }
  .deliv-card__ai-num span { font-size: 16px; font-weight: 600; color: #c08a3a; margin-left: 2px; }
  .deliv-card__ai-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #6b5430; flex: 1; line-height: 1.4; }

  /* Card 3 — Revenue list */
  .deliv-card__rev-list { list-style: none; padding: 0; margin: 0 0 0 0; display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
  .deliv-card__rev-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 12.5px; color: #1f2937; padding: 9px 12px;
    background: #f7f8fa; border-radius: 6px;
  }
  .deliv-card__rev-sev {
    background: #ffe5e8; color: #c1185c;
    font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 4px; flex-shrink: 0;
  }
  .deliv-card__rev-sev--mid { background: #fff4dc; color: #b85c00; }
  .deliv-card__rev-amt { margin-left: auto; font-weight: 700; color: #0f172a; font-size: 12.5px; white-space: nowrap; }

  /* Card 4 — 30/60/90 preview + CTA */
  .deliv-card__plan-preview { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
  .deliv-card__plan-phase {
    display: flex; align-items: center; gap: 12px;
    font-size: 12.5px; color: #1f2937; padding: 9px 12px;
    background: #f7f8fa; border-radius: 6px;
  }
  .deliv-card__plan-num {
    width: 28px; height: 22px; display: inline-flex; align-items: center; justify-content: center;
    background: var(--teal); color: white; border-radius: 4px;
    font-size: 11px; font-weight: 800; letter-spacing: -0.02em;
  }
  .deliv-card__cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12.5px; font-weight: 600; color: var(--teal-dark);
    margin-top: 2px;
  }

  /* Card 4 — Review themes: two-col praise / flag mini */
  .deliv-card__rev-themes {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    margin-top: auto;
  }
  .deliv-card__rev-col {
    background: #f7f8fa; border-radius: 8px;
    padding: 11px 12px;
    border-left: 3px solid var(--teal);
  }
  .deliv-card__rev-col--flag {
    border-left-color: #b85c00;
    background: #fff8ef;
  }
  .deliv-card__rev-col-h {
    font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--teal-dark);
    margin-bottom: 6px;
  }
  .deliv-card__rev-col--flag .deliv-card__rev-col-h { color: #b85c00; }
  .deliv-card__rev-col-t {
    font-size: 11.5px; color: #1f2937; line-height: 1.35;
    padding: 3px 0;
  }

  /* Card 5 — K Matrix mini-table — fixed layout prevents overflow */
  .deliv-card__kmini {
    width: 100%; border-collapse: collapse;
    table-layout: fixed;
    margin-top: auto;
    font-family: ui-monospace, SFMono-Regular, monospace;
  }
  .deliv-card__kmini td, .deliv-card__kmini th {
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .deliv-card__kmini th {
    text-align: left; padding: 6px 4px 5px;
    font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--teal-dark);
    border-bottom: 1px solid rgba(0,161,155,0.2);
    font-family: var(--font-display);
  }
  .deliv-card__kmini td {
    padding: 6px 4px;
    font-size: 10.5px; color: #4b5563;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    line-height: 1.25;
  }
  .deliv-card__kmini td:first-child {
    font-family: var(--font-display); font-weight: 700;
    color: #0f172a; font-size: 11.5px;
  }
  .deliv-card__kmini-self td {
    background: rgba(0,161,155,0.06);
    color: #0f172a;
  }
  .deliv-card__kmini tbody tr:last-child td { border-bottom: none; }

  .deliv-trust {
    max-width: 720px; margin: 40px auto 0; text-align: center;
    font-size: 14px; color: #6b7280; line-height: 1.65;
  }

  /* ─── "How we look at AI" — marquee differentiation section ─── */
  .ai-feature .section-hd h2 em { font-style: normal; color: var(--teal-dark); }
  /* AI Model tiles — each card is a solid color in the model's brand-associated
     hue, with the name large and centered. No icons, no model-spec descriptions. */
  .ai-engines {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
    margin: 40px 0 64px;
  }
  .ai-engine {
    display: flex; align-items: center; justify-content: center;
    min-height: 130px; padding: 30px 18px;
    border-radius: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(15px, 1.45vw, 21px);
    letter-spacing: -0.01em;
    text-align: center;
    line-height: 1.2;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 10px 24px rgba(0,0,0,0.08);
    transition: transform .25s var(--ease), filter .25s var(--ease), box-shadow .25s var(--ease);
  }
  .ai-engine:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow: 0 4px 0 rgba(0,0,0,0.04), 0 18px 36px rgba(0,0,0,0.14);
  }
  /* Brand-associated background colors per AI model. */
  .ai-engine--aio { background: #4285F4; }
  .ai-engine--gpt { background: #10A37F; }
  .ai-engine--ppx { background: #20808D; }
  .ai-engine--gem { background: linear-gradient(135deg, #4285F4 0%, #9168C0 100%); }
  .ai-engine--cla { background: #D97757; }

  /* ─── Animated AI marks (multicolor: teal primary + ink accent) ───
     Each mark has parts that animate slowly + asynchronously. Same SVG
     paths render on light or dark backgrounds — the .ai-mark--dark
     modifier (used in the final CTA on dark) swaps the secondary color
     to a translucent white so the marks still read on dark. */
  .ai-mark { display: inline-block; }
  .ai-mark .aiM-teal { color: var(--teal); fill: currentColor; stroke: currentColor; }
  .ai-mark .aiM-ink  { color: var(--gray-900); fill: currentColor; stroke: currentColor; }
  .ai-mark--dark .aiM-teal { color: var(--teal); }
  .ai-mark--dark .aiM-ink  { color: rgba(255,255,255,0.78); }

  /* Per-mark animations — slow, looping, asymmetric so they feel alive
     without becoming distracting. Each part has its own offset so the
     5 marks don't all pulse in lockstep. */
  @keyframes aiM_sparkle { 0%,100% { opacity: 0.6; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1.1); } }
  @keyframes aiM_row     { 0%,80% { opacity: var(--row-base, 0.45); } 40% { opacity: 0.95; } }
  @keyframes aiM_node    { 0%,100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.18); } }
  @keyframes aiM_line    { 0%,100% { opacity: 0.2; } 50% { opacity: 1; } }
  @keyframes aiM_ring    { 0% { opacity: 0.75; transform: scale(0.7); } 80%,100% { opacity: 0; transform: scale(1.25); } }
  @keyframes aiM_starA   { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.65; transform: scale(0.9); } }
  @keyframes aiM_starB   { 0%,100% { opacity: 0.45; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1.1); } }
  @keyframes aiM_sun     { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-1.2px); } }
  @keyframes aiM_ray     { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

  /* Animated elements — transform-box ensures scale animates around
     the element's own bounding box, not the SVG root. */
  .ai-mark .aiM-anim { transform-box: fill-box; transform-origin: center; }

  .ai-mark__aio .aiM-sparkle { animation: aiM_sparkle 3.2s ease-in-out infinite; }
  .ai-mark__aio .aiM-row-1   { --row-base: 0.55; animation: aiM_row 3.6s ease-in-out infinite; }
  .ai-mark__aio .aiM-row-2   { --row-base: 0.4;  animation: aiM_row 3.6s ease-in-out 0.6s infinite; }
  .ai-mark__aio .aiM-row-3   { --row-base: 0.4;  animation: aiM_row 3.6s ease-in-out 1.2s infinite; }

  .ai-mark__gpt .aiM-node   { animation: aiM_node 2.4s ease-in-out infinite; }
  .ai-mark__gpt .aiM-line-1 { animation: aiM_line 2.4s ease-in-out 0s infinite; }
  .ai-mark__gpt .aiM-line-2 { animation: aiM_line 2.4s ease-in-out 0.4s infinite; }
  .ai-mark__gpt .aiM-line-3 { animation: aiM_line 2.4s ease-in-out 0.8s infinite; }
  .ai-mark__gpt .aiM-line-4 { animation: aiM_line 2.4s ease-in-out 1.2s infinite; }

  .ai-mark__ppx .aiM-ring-1 { animation: aiM_ring 2.6s ease-out infinite; }
  .ai-mark__ppx .aiM-ring-2 { animation: aiM_ring 2.6s ease-out 0.9s infinite; }

  .ai-mark__gem .aiM-starA  { animation: aiM_starA 2.8s ease-in-out infinite; }
  .ai-mark__gem .aiM-starB  { animation: aiM_starB 2.8s ease-in-out infinite; }

  .ai-mark__cla .aiM-sun    { animation: aiM_sun 3.2s ease-in-out infinite; }
  .ai-mark__cla .aiM-ray-1  { animation: aiM_ray 2.4s ease-in-out 0s infinite; }
  .ai-mark__cla .aiM-ray-2  { animation: aiM_ray 2.4s ease-in-out 0.3s infinite; }
  .ai-mark__cla .aiM-ray-3  { animation: aiM_ray 2.4s ease-in-out 0.6s infinite; }
  .ai-mark__cla .aiM-ray-4  { animation: aiM_ray 2.4s ease-in-out 0.9s infinite; }
  .ai-mark__cla .aiM-ray-5  { animation: aiM_ray 2.4s ease-in-out 1.2s infinite; }

  @media (prefers-reduced-motion: reduce) {
    .ai-mark * { animation: none !important; }
  }
  .ai-engine__name {
    font-family: var(--font-display);
    font-size: 14.5px; font-weight: 700;
    color: var(--gray-900); letter-spacing: -0.005em;
    line-height: 1.2;
  }
  .ai-engine__sub {
    font-size: 11.5px; color: var(--gray-500);
    margin-top: 5px; line-height: 1.35;
  }
  @media (max-width: 900px) {
    .ai-engines { grid-template-columns: repeat(3, 1fr); }
    .ai-engine:nth-child(4), .ai-engine:nth-child(5) { grid-column: span 1; }
  }
  @media (max-width: 600px) {
    .ai-engines { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ai-engine { padding: 14px 12px; }
  }

  .ai-feature__grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
    margin-bottom: 40px;
  }
  @media (max-width: 1024px) { .ai-feature__grid { grid-template-columns: 1fr; gap: 20px; } }

  .ai-feature__block {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 28px 26px 26px;
    display: flex; flex-direction: column;
    box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 12px 32px rgba(0,0,0,0.04);
    /* Grid item gotcha: without min-width:0, inner tables/text-overflow
       force the block to grow beyond its grid track, causing right-side
       cut-off on mobile. */
    min-width: 0;
    overflow: hidden;
  }
  .ai-feature__block--accent {
    background: linear-gradient(180deg, rgba(0,161,155,0.04), var(--white) 80%);
    border-color: rgba(0,161,155,0.18);
  }
  .ai-feature__eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--teal-dark);
    margin-bottom: 10px;
  }
  .ai-feature__title {
    font-family: var(--font-display); font-size: 22px; font-weight: 700;
    line-height: 1.18; letter-spacing: -0.015em;
    color: var(--gray-900); margin-bottom: 14px;
  }
  .ai-feature__body {
    font-size: 14.5px; line-height: 1.6; color: #4b5563;
    margin-bottom: 20px;
  }

  .ai-feature__mock {
    background: #fafafa;
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    padding: 16px 16px 14px;
    margin-top: auto;
  }
  .ai-feature__mock-eyebrow {
    font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gray-500);
    margin-bottom: 10px;
  }
  .ai-feature__mock-score {
    display: flex; align-items: baseline; gap: 2px;
    margin-bottom: 12px;
  }
  .ai-feature__mock-num {
    font-family: var(--font-display); font-size: 36px; font-weight: 800;
    color: var(--teal-dark); line-height: 1;
  }
  .ai-feature__mock-denom {
    font-size: 16px; color: var(--gray-500); font-weight: 500;
  }
  .ai-feature__mock-rows {
    display: flex; flex-direction: column; gap: 6px;
  }
  .ai-feature__mock-row {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 12.5px; color: var(--gray-700);
    padding-bottom: 5px;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
  }
  .ai-feature__mock-row:last-child { border-bottom: none; }
  .ai-feature__mock-row b {
    font-family: ui-monospace, SFMono-Regular, monospace;
    color: var(--gray-900); font-weight: 600;
    font-variant-numeric: tabular-nums;
  }
  .ai-feature__mock-foot {
    font-size: 11.5px; color: var(--gray-500);
    margin-top: 10px; font-style: italic; line-height: 1.4;
  }

  /* Booking sim card */
  .ai-feature__sim { display: flex; flex-direction: column; gap: 10px; }
  .ai-feature__sim-bubble {
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px; line-height: 1.5;
    position: relative;
  }
  .ai-feature__sim-bubble--patient {
    background: rgba(0,161,155,0.06);
    color: var(--gray-900);
    border-left: 2.5px solid var(--teal);
    margin-right: 16%;
  }
  .ai-feature__sim-bubble--ai {
    background: rgba(0,161,155,0.12);
    color: var(--gray-900);
    border-left: 2.5px solid var(--teal-dark);
    margin-left: 16%;
  }
  .ai-feature__sim-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    color: var(--gray-500); margin-bottom: 4px;
  }
  .ai-feature__sim-quote { font-style: italic; }
  .ai-feature__sim-source {
    font-size: 11px; color: var(--gray-500);
    margin-top: 6px;
  }

  /* Best-At Matrix mock table — fixed layout so columns share width evenly
     and the table can't overflow its parent on narrow viewports. */
  /* K Matrix table — fixed column widths, generous cell padding, word-wrap
     enabled so long phrases like "balloon sinuplasty" wrap inside their
     cell instead of overflowing into the next column. */
  .ai-feature__matrix {
    width: 100%; border-collapse: collapse;
    table-layout: fixed;
    font-size: 11.5px; margin-top: 8px;
  }
  /* First column = label (wider). 5 data columns share the rest equally. */
  .ai-feature__matrix th:first-child,
  .ai-feature__matrix td:first-child { width: 20%; }
  .ai-feature__matrix th:not(:first-child),
  .ai-feature__matrix td:not(:first-child) { width: 16%; }
  .ai-feature__matrix th {
    text-align: left; padding: 8px 8px 8px 0;
    font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--teal-dark);
    border-bottom: 1px solid rgba(0,161,155,0.2);
    vertical-align: bottom;
  }
  .ai-feature__matrix th:not(:first-child) { padding-left: 8px; padding-right: 4px; }
  .ai-feature__matrix td {
    padding: 10px 8px 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--gray-700);
    font-family: ui-monospace, SFMono-Regular, monospace;
    font-size: 10.5px;
    line-height: 1.35;
    vertical-align: top;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: none;
  }
  .ai-feature__matrix td:not(:first-child) { padding-left: 8px; padding-right: 4px; }
  .ai-feature__matrix td:first-child {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gray-900);
    font-size: 11px;
    padding-right: 10px;
  }
  .ai-feature__matrix-self td {
    background: rgba(0,161,155,0.06);
    color: var(--gray-900);
  }
  .ai-feature__matrix tbody tr:last-child td { border-bottom: none; }

  .ai-feature__close {
    margin-top: 40px;
    text-align: center;
    font-size: 15.5px; color: var(--gray-700);
    line-height: 1.55;
    max-width: 760px; margin-left: auto; margin-right: auto;
    padding: 22px 26px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  }

  /* AI Feature — tablet + mobile tuning. Tighter spacing, narrower bubble
     margins, smaller mock numbers, prevent any overflow on the matrix table. */
  @media (max-width: 1024px) {
    .ai-feature__grid { gap: 16px; }
    .ai-feature__block { padding: 24px 22px; }
    .ai-feature__title { font-size: 20px; }
  }
  @media (max-width: 720px) {
    .ai-engines { grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 30px 0 44px; }
    .ai-engine { min-height: 96px; padding: 18px 12px; font-size: 15px; }
    .ai-feature__block { padding: 22px 20px; border-radius: 14px; }
    .ai-feature__title { font-size: 19px; line-height: 1.22; }
    .ai-feature__body { font-size: 14px; }
    .ai-feature__mock { padding: 16px 14px 14px; }
    .ai-feature__mock-num { font-size: 32px; }
    .ai-feature__sim-bubble--patient { margin-right: 8%; }
    .ai-feature__sim-bubble--ai { margin-left: 8%; }
    .ai-feature__sim-bubble { font-size: 12.5px; padding: 11px 13px; hyphens: none; }
    .ai-feature__sim-quote { hyphens: none; }
    /* Matrix on mobile — looser horizontal padding, slightly smaller text to
       prevent cell-to-cell overlap that we saw at the original tight values. */
    .ai-feature__matrix th { font-size: 8.5px; padding: 7px 5px 7px 0; letter-spacing: 0.04em; }
    .ai-feature__matrix th:not(:first-child) { padding-left: 5px; padding-right: 3px; }
    .ai-feature__matrix td { font-size: 9.5px; padding: 9px 5px 9px 0; }
    .ai-feature__matrix td:not(:first-child) { padding-left: 5px; padding-right: 3px; }
    .ai-feature__matrix td:first-child { font-size: 10px; padding-right: 6px; }
    .ai-feature__matrix th:first-child,
    .ai-feature__matrix td:first-child { width: 22%; }
    .ai-feature__matrix th:not(:first-child),
    .ai-feature__matrix td:not(:first-child) { width: 15.6%; }
    .ai-feature__close {
      margin-top: 32px;
      font-size: 14.5px;
      padding: 18px 20px;
    }
  }
  @media (max-width: 480px) {
    .ai-engines { grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 24px 0 36px; }
    .ai-engine { min-height: 84px; padding: 16px 10px; font-size: 13.5px; }
    .ai-feature__block { padding: 20px 18px; }
    .ai-feature__title { font-size: 18px; }
    .ai-feature__sim-bubble--patient { margin-right: 4%; }
    .ai-feature__sim-bubble--ai { margin-left: 4%; }
    .ai-feature__mock-num { font-size: 28px; }
    .ai-feature__mock-eyebrow { font-size: 9.5px; }
    .ai-feature__mock-row { font-size: 12px; }
  }

  /* ─── "How we look at Search" (dark section, 20% of the story) ─── */
  .search-feature .section-hd--dark h2 em {
    font-style: normal; color: var(--teal-light);
  }
  .search-feature__grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px;
    margin-top: 8px;
  }
  @media (max-width: 1024px) { .search-feature__grid { grid-template-columns: 1fr; gap: 18px; } }
  .search-feature__block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,196,188,0.18);
    border-radius: 14px;
    padding: 26px 24px 22px;
    display: flex; flex-direction: column;
    min-width: 0; overflow: hidden;
    transition: border-color var(--ease), background var(--ease), transform var(--ease);
  }
  .search-feature__block:hover {
    border-color: rgba(0,196,188,0.45);
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
  }
  .search-feature__eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--teal-light);
    margin-bottom: 10px;
  }
  .search-feature__title {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    line-height: 1.22; letter-spacing: -0.012em;
    color: var(--white); margin-bottom: 12px;
  }
  .search-feature__body {
    font-size: 14px; line-height: 1.6;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
  }
  .search-feature__mock {
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 14px 14px 12px;
    margin-top: auto;
  }
  .search-feature__mock-eyebrow {
    font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
  }
  /* Live SERP mockup rows */
  .search-feature__mock-serp { display: flex; flex-direction: column; gap: 8px; }
  .search-feature__serp-row {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 12.5px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
  }
  .search-feature__serp-row:last-child { border-bottom: none; padding-bottom: 0; }
  .search-feature__serp-q {
    color: rgba(255,255,255,0.85);
    font-family: ui-monospace, SFMono-Regular, monospace;
    font-size: 11.5px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    margin-right: 10px;
  }
  .search-feature__serp-r {
    color: var(--teal-light);
    font-weight: 700; font-size: 11.5px;
    white-space: nowrap; flex-shrink: 0;
  }
  .search-feature__serp-r--no { color: #f97316; font-weight: 600; }
  /* Keyword table */
  .search-feature__keywords {
    width: 100%; border-collapse: collapse;
    table-layout: fixed;
    font-size: 12px;
  }
  .search-feature__keywords th {
    text-align: left; padding: 5px 4px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--teal-light);
    border-bottom: 1px solid rgba(0,196,188,0.25);
  }
  .search-feature__keywords td {
    padding: 6px 4px;
    color: rgba(255,255,255,0.78);
    font-family: ui-monospace, SFMono-Regular, monospace;
    font-size: 11px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .search-feature__keywords tbody tr:last-child td { border-bottom: none; }
  .search-feature__keywords td:first-child { color: var(--white); }
  /* Competitor profile */
  .search-feature__comp { display: flex; flex-direction: column; gap: 7px; }
  .search-feature__comp-name {
    font-family: var(--font-display); font-weight: 700;
    color: var(--white); font-size: 13.5px;
    margin-bottom: 4px;
  }
  .search-feature__comp-row {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 11.5px; color: rgba(255,255,255,0.6);
  }
  .search-feature__comp-row b {
    color: var(--white); font-family: ui-monospace, SFMono-Regular, monospace;
    font-size: 11px; font-weight: 600; max-width: 60%; overflow: hidden;
    text-overflow: ellipsis; white-space: nowrap;
  }
  .search-feature__comp-move {
    font-size: 11.5px; color: var(--teal-light);
    margin-top: 8px; padding-top: 8px;
    border-top: 1px solid rgba(0,196,188,0.15);
    font-style: italic; line-height: 1.45;
  }

  /* ─── "How we look at Trust" (light section, 10% of the story) ─── */
  .trust-feature .section-hd h2 em { font-style: normal; color: var(--teal-dark); }
  .trust-feature__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  }
  @media (max-width: 900px) { .trust-feature__grid { grid-template-columns: 1fr; gap: 18px; } }
  .trust-feature__block {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    padding: 26px 24px 22px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 8px 24px rgba(0,0,0,0.04);
    min-width: 0; overflow: hidden;
    display: flex; flex-direction: column;
  }
  .trust-feature__eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--teal-dark);
    margin-bottom: 10px;
  }
  .trust-feature__title {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    line-height: 1.22; letter-spacing: -0.012em;
    color: var(--gray-900); margin-bottom: 12px;
  }
  .trust-feature__body {
    font-size: 14px; line-height: 1.6; color: #4b5563;
    margin-bottom: 18px;
  }
  .trust-feature__themes {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-top: auto;
  }
  .trust-feature__col {
    background: #fafafa;
    border-left: 3px solid var(--teal);
    border-radius: 8px;
    padding: 12px 14px;
  }
  .trust-feature__col--flag {
    border-left-color: #b85c00;
    background: #fff8ef;
  }
  .trust-feature__col-h {
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--teal-dark);
    margin-bottom: 7px;
  }
  .trust-feature__col--flag .trust-feature__col-h { color: #b85c00; }
  .trust-feature__col-i {
    font-size: 12px; color: var(--gray-900); line-height: 1.4;
    padding: 3px 0;
  }
  .trust-feature__nap {
    margin-top: auto;
    background: #fafafa;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    padding: 12px 14px;
  }
  .trust-feature__nap-row {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 12px; color: var(--gray-700);
    padding: 6px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
  }
  .trust-feature__nap-row:last-child { border-bottom: none; }
  .trust-feature__nap-ok { color: var(--teal-dark); font-weight: 700; }
  .trust-feature__nap-flag { color: #b85c00; font-weight: 600; }

  /* Search + Trust feature mobile tuning */
  @media (max-width: 720px) {
    .search-feature__block { padding: 22px 20px; }
    .search-feature__title { font-size: 18px; }
    .search-feature__body { font-size: 13.5px; }
    .search-feature__mock { padding: 12px 12px 10px; }
    .search-feature__serp-q { font-size: 10.5px; }
    .search-feature__serp-r { font-size: 10.5px; }
    .search-feature__keywords th, .search-feature__keywords td { font-size: 10px; padding: 4px 3px; }
    .trust-feature__block { padding: 22px 20px; }
    .trust-feature__title { font-size: 18px; }
    .trust-feature__body { font-size: 13.5px; }
    .trust-feature__themes { gap: 10px; }
  }
  @media (max-width: 440px) {
    .trust-feature__themes { grid-template-columns: 1fr; }
  }

  /* Deliverable cards — mobile polish for new 6-card layout */
  @media (max-width: 720px) {
    .deliv-card { padding: 22px 20px; min-height: 0; }
    .deliv-card__title { font-size: 17.5px; }
    .deliv-card__body { font-size: 13px; }
    .deliv-card__rev-themes { grid-template-columns: 1fr 1fr; gap: 8px; }
    .deliv-card__rev-col { padding: 10px 10px; }
    .deliv-card__rev-col-t { font-size: 11px; }
    .deliv-card__kmini th { font-size: 8.5px; padding: 5px 3px; }
    .deliv-card__kmini td { font-size: 9.5px; padding: 5px 3px; }
    .deliv-card__kmini td:first-child { font-size: 10.5px; }
  }
  @media (max-width: 420px) {
    .deliv-card__rev-themes { grid-template-columns: 1fr; gap: 8px; }
  }

  /* ─── 30/60/90 Plan lightbox ─── */
  .plan-lightbox {
    position: fixed; inset: 0; z-index: 1000;
    display: none; align-items: center; justify-content: center;
    padding: 24px;
  }
  .plan-lightbox.is-open { display: flex; }
  .plan-lightbox__backdrop {
    position: absolute; inset: 0;
    background: rgba(2, 6, 35, 0.78); backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); cursor: pointer;
  }
  .plan-lightbox__sheet {
    position: relative; z-index: 1;
    background: white; border-radius: 16px;
    max-width: 1100px; width: 100%; max-height: 90vh; overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    animation: planSheetIn 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  @keyframes planSheetIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .plan-lightbox__close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,0.06); border: 0; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #4b5563; transition: background 0.15s, color 0.15s; z-index: 2;
  }
  .plan-lightbox__close:hover { background: rgba(0,0,0,0.12); color: #0f172a; }

  .plan-mockup { padding: 44px 48px 36px; color: #1f2937; }
  .plan-mockup__hd { text-align: center; max-width: 720px; margin: 0 auto 36px; }
  .plan-mockup__eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--teal-dark); margin-bottom: 10px;
  }
  .plan-mockup__title {
    font-family: var(--font-display); font-size: 32px; font-weight: 800;
    letter-spacing: -0.022em; color: #0f172a; margin: 0 0 8px;
  }
  .plan-mockup__sub { font-size: 14.5px; color: #6b7280; }
  .plan-mockup__sub strong { color: #0f172a; font-weight: 700; }

  .plan-mockup__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 28px; }
  .plan-col { display: flex; flex-direction: column; gap: 12px; }
  .plan-col__h {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
    padding-bottom: 14px; border-bottom: 2px solid #e5e7eb;
  }
  .plan-col__h-label { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #0f172a; }
  .plan-col__h-sub { font-size: 11px; font-weight: 500; color: #6b7280; margin-top: -6px; }
  .plan-col__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%;
    font-size: 20px; font-weight: 800; color: white; letter-spacing: -0.02em;
  }
  .plan-col__num--30 { background: var(--teal-dark); }
  .plan-col__num--60 { background: var(--teal); }
  .plan-col__num--90 { background: var(--teal-light); color: var(--dark); }

  .plan-item {
    background: #f7f8fa; border-radius: 10px; padding: 14px 16px;
    border: 1px solid #e5e7eb;
    transition: border-color 0.2s, transform 0.18s;
  }
  .plan-item:hover { border-color: rgba(0,161,155,0.4); transform: translateY(-1px); }
  .plan-item__t { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 6px; letter-spacing: -0.005em; line-height: 1.3; }
  .plan-item__d { font-size: 12.5px; color: #4b5563; line-height: 1.55; margin-bottom: 10px; }
  .plan-item__tags { display: flex; gap: 6px; flex-wrap: wrap; }
  .plan-tag {
    font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 4px; background: #e5e7eb; color: #4b5563;
  }
  .plan-tag--diy { background: #ddf5e0; color: #126e2a; }
  .plan-tag--dev { background: #e0e7ff; color: #3730a3; }
  .plan-tag--agency { background: #fef3c7; color: #92400e; }
  .plan-tag--target { background: rgba(0,161,155,0.15); color: var(--teal-dark); }

  .plan-mockup__foot {
    margin-top: 28px; padding: 18px 22px; background: #f7f8fa;
    border-left: 3px solid var(--teal); border-radius: 0 8px 8px 0;
    font-size: 13.5px; line-height: 1.65; color: #4b5563;
  }
  .plan-mockup__foot strong { color: #0f172a; font-weight: 700; }

  @media (max-width: 900px) {
    .plan-mockup { padding: 32px 24px 28px; }
    .plan-mockup__title { font-size: 26px; }
    .plan-mockup__grid { grid-template-columns: 1fr; gap: 28px; }
    .plan-col__h { font-size: 13px; }
  }
  @media (max-width: 540px) {
    .plan-mockup { padding: 24px 18px 22px; }
    .plan-mockup__title { font-size: 22px; }
    .plan-lightbox__sheet { max-height: 94vh; border-radius: 12px; }
  }
  .preview-title { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 8px; }
  .preview-sub { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
  .preview-stat {
    padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px;
  }
  .preview-stat-value {
    font-size: 36px; font-weight: 700; letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1.1;
  }
  .preview-stat-label {
    font-size: 9.5px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 6px;
  }
  .preview-gap { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 16px; }
  .preview-pill {
    display: inline-block; padding: 3px 8px; border-radius: 999px;
    font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    background: rgba(217,119,6,0.16); color: var(--sev-high); margin-bottom: 10px;
  }
  .preview-gap-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
  .preview-gap-body { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.55; margin-bottom: 12px; }
  .preview-gap-impact {
    font-size: 11px; font-weight: 600; color: var(--teal-light);
    padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between;
  }
  .preview-gap-impact span:first-child { color: rgba(255,255,255,0.45); font-weight: 500; }

  /* How it works cards (dark) */
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .step-card {
    background: rgba(255,255,255,0.025); border: 1.5px solid rgba(0,161,155,0.28);
    border-radius: 12px; padding: 32px 28px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .step-card:hover {
    border-color: rgba(0,161,155,0.6); background: rgba(0,161,155,0.04);
    box-shadow: 0 0 0 3px rgba(0,161,155,0.07);
  }
  .step-num {
    font-size: 44px; font-weight: 800; letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 20px;
  }
  .step-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--white); letter-spacing: -0.01em; }
  .step-body { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.65; }
  .step-time {
    margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--teal-light);
  }

  /* Pricing */
  .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .pricing-grid--single { grid-template-columns: minmax(280px, 540px); justify-content: center; }
  .price-card {
    background: var(--white); border: 1.5px solid var(--gray-200);
    border-radius: 14px; padding: 36px 32px;
    display: flex; flex-direction: column; position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .price-card:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(2,6,35,0.08); }
  .price-card.featured { border-color: rgba(0,161,155,0.45); box-shadow: 0 8px 32px rgba(0,161,155,0.10); }
  /* Delivery indicator — replaces the old "Most popular" badge. Top-right,
     shows the report ships as web + email, both included. */
  .price-delivery {
    position: absolute; top: -13px; right: 24px;
    display: flex; gap: 8px;
  }
  .price-delivery__item {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--white); border: 1.5px solid rgba(0,161,155,0.30);
    border-radius: 999px; padding: 5px 11px 5px 9px;
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.02em;
    color: var(--teal-dark); white-space: nowrap;
    box-shadow: 0 4px 14px rgba(2,6,35,0.06);
  }
  .price-delivery__check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--teal); color: #fff; flex-shrink: 0;
  }
  .price-delivery__check svg { width: 9px; height: 9px; }
  .price-delivery__item svg.price-delivery__glyph { width: 12px; height: 12px; color: var(--teal); flex-shrink: 0; }
  @media (max-width: 480px) {
    .price-delivery { position: static; justify-content: center; margin-bottom: 18px; }
  }
  .price-name { font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
                text-transform: uppercase; color: var(--teal-dark); margin-bottom: 10px; }
  .price-headline { font-size: 21px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 18px; line-height: 1.25; color: var(--gray-900); }
  .price-amount {
    font-size: 44px; font-weight: 800; letter-spacing: -0.02em;
    margin-bottom: 4px; line-height: 1; color: var(--gray-900);
  }
  .price-amount em { font-style: normal;
                     background: linear-gradient(135deg, var(--teal-light), var(--teal));
                     -webkit-background-clip: text; -webkit-text-fill-color: transparent;
                     background-clip: text; }
  .price-detail { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
  .price-locations { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; width: fit-content; max-width: 100%; margin-bottom: 28px; padding: 9px 16px; font-size: 12.5px; font-weight: 600; line-height: 1.5; color: var(--teal-dark); background: rgba(0,161,155,0.08); border: 1px solid rgba(0,161,155,0.2); border-radius: 16px; }
  .price-locations strong { font-weight: 800; white-space: nowrap; }
  .price-locations svg { width: 14px; height: 14px; flex-shrink: 0; }
  @media (max-width: 480px) { .price-locations { align-items: flex-start; } .price-locations svg { margin-top: 3px; } }
  .price-list {
    list-style: none; margin-bottom: 32px; flex: 1; padding: 0;
    column-count: 2; column-gap: 40px;
  }
  /* Each li stays intact across the column break — no item splits in half. */
  .price-list li { break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid; }
  @media (max-width: 720px) {
    .price-list { column-count: 1; }
  }
  /* Switched from display:flex to position:relative — the previous flex
     setup was treating <strong> and the trailing text as separate flex
     items, forcing a column layout where each bold name took its own
     visual column. With abs-positioned ✓, the content flows as one
     inline paragraph and the bold name reads inline with the description. */
  .price-list li {
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.55;
    position: relative;
  }
  .price-list li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 10px;
    line-height: 1.55;
  }
  .price-list li strong { color: var(--gray-900); font-weight: 700; }
  .price-list li:last-child { border-bottom: none; }
  /* Subtle group headers inside the bullet list — visually separates AI /
     Search / Reviews / Plan blocks without breaking the bulleted feel. */
  .price-list li.price-list__group-h {
    padding: 18px 0 6px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--teal-dark);
    border-bottom: none;
  }
  .price-list li.price-list__group-h::before { content: ''; display: none; }
  .price-list li.price-list__group-h:first-child { padding-top: 8px; }
  /* Pricing CTA uses the core .btn system (btn btn--teal btn--lg). */
  .compare-note {
    margin-top: 32px; padding: 22px 26px; background: var(--white);
    border: 1px solid var(--gray-100); border-radius: 12px;
    font-size: 13.5px; color: var(--gray-500); line-height: 1.7;
  }
  .compare-note strong { color: var(--gray-900); font-weight: 700; }

  /* Who this is for (dark cards) */
  .who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .who-card {
    padding: 28px 26px; background: rgba(255,255,255,0.025);
    border: 1.5px solid rgba(0,161,155,0.28); border-radius: 12px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .who-card:hover {
    border-color: rgba(0,161,155,0.6); background: rgba(0,161,155,0.04);
    box-shadow: 0 0 0 3px rgba(0,161,155,0.07);
  }
  .who-icon { width: 28px; height: 28px; color: var(--teal-light); margin-bottom: 14px; display: block; }
  .who-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--white); letter-spacing: -0.01em; }
  .who-body { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.65; }

  /* FAQ */
  /* ─── Tight centered hero ─── */
  .hero--tight .hero__layout { display: block; }
  .hero__center {
    max-width: 620px; margin: 0 auto; text-align: center;
    padding: 80px 0 76px;
  }
  .hero--tight .hero__eyebrow { justify-content: center; }
  .hero--tight .hero__title {
    font-size: clamp(30px, 4.8vw, 54px);
    line-height: 1.12; letter-spacing: -0.025em;
  }
  .hero--tight .hero__sub {
    font-size: 18px; line-height: 1.55;
    color: rgba(255,255,255,0.68);
    margin: 20px auto 36px; max-width: 460px;
  }
  .hero--tight .hero__actions { justify-content: center; }

  /* ─── Hero layout (two-column: copy left, free-check card right) ─── */
  .hero--rings .hero__layout { display: grid; grid-template-columns: minmax(0,1fr); gap: 40px; align-items: center; }
  @media (min-width: 1024px) {
    .hero--rings .hero__layout { grid-template-columns: minmax(0,1.04fr) minmax(0,0.96fr); gap: 56px; }
  }
  .hero--rings .hero__left { padding: 0; }
  @media (max-width: 1023px) {
    .hero--rings .hero__left { padding: 0 0 4px; text-align: center; }
    .hero--rings .hero__eyebrow { margin-left: auto; margin-right: auto; }
    .hero--rings .hero__actions { justify-content: center; }
  }

  /* Report preview placeholder — where the carousel was */
  .report-placeholder {
    background: var(--gray-50, #f9fafb);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 56px 0;
  }
  .report-placeholder__inner {
    max-width: 800px; margin: 0 auto;
    border: 2px dashed rgba(0,161,155,0.3);
    border-radius: 16px; padding: 44px 32px;
    text-align: center;
  }
  .report-placeholder__label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--teal-dark);
    margin-bottom: 8px;
  }
  .report-placeholder__note {
    font-size: 14px; color: var(--gray-400, #9ca3af); line-height: 1.5;
  }

  /* Customer quote */
  .quote-section { padding: var(--sec-y) 0; }
  .site-quote {
    max-width: 700px; margin: 0 auto; text-align: center;
    padding: 0; border: 0;
  }
  .site-quote__text {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 600; line-height: 1.3; letter-spacing: -0.02em;
    color: var(--white); margin-bottom: 28px;
  }
  .site-quote__attr {
    display: flex; flex-direction: column; gap: 4px; align-items: center;
  }
  .site-quote__who  { font-size: 13px; font-weight: 700; color: var(--teal-light); }
  .site-quote__where { font-size: 12px; color: rgba(255,255,255,0.38); }

  /* The problem */
  .problem-section {
    padding: 96px 0; background: var(--white);
    border-bottom: 1px solid var(--gray-100);
  }
  .problem-statement {
    max-width: 520px; margin: 0 auto; text-align: center;
  }
  .problem-statement p {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.2vw, 40px);
    font-weight: 700; line-height: 1.2; letter-spacing: -0.025em;
    color: var(--gray-900); margin: 0 0 6px;
  }
  .problem-statement p:last-child { color: var(--teal-dark); margin-bottom: 0; }

  /* Report sample — the actual product, anonymized */
  .report-sample-section {
    background: var(--white);
    padding: 80px 0 96px;
  }
  .report-sample__header { text-align: center; margin-bottom: 36px; }
  .report-sample__attr {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(0,161,155,0.8);
    background: rgba(0,161,155,0.06);
    border: 1px solid rgba(0,161,155,0.18);
    border-radius: 20px; padding: 6px 18px;
  }
  .report-sample {
    max-width: 740px; margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 44px 48px 40px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 20px 60px rgba(0,0,0,0.07);
  }
  .report-sample__eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--teal-dark); margin-bottom: 4px;
  }
  .report-sample__meta {
    font-size: 12px; color: var(--gray-400, #9ca3af); margin-bottom: 28px;
    border-bottom: 1px solid var(--gray-100); padding-bottom: 20px;
  }
  .report-sample__body p {
    font-size: 15px; line-height: 1.72; color: #374151;
    margin: 0 0 18px;
  }
  .report-sample__body p:last-child { margin-bottom: 0; }
  .report-sample__action {
    margin-top: 32px; padding-top: 28px;
    border-top: 1px solid var(--gray-100);
  }
  .report-sample__action-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--teal-dark); margin-bottom: 14px;
  }
  .report-sample__action ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .report-sample__action li {
    font-size: 14px; line-height: 1.6; color: #374151;
    padding-left: 18px; position: relative;
  }
  .report-sample__action li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px;
    background: var(--teal); border-radius: 50%;
  }
  @media (max-width: 640px) { .report-sample { padding: 28px 24px; } }

  /* What we measure — 3 compact columns */
  .measure-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-top: 48px;
  }
  @media (max-width: 820px) { .measure-grid { grid-template-columns: 1fr; gap: 28px; } }
  .measure-col__head {
    font-family: var(--font-display); font-size: 17px; font-weight: 700;
    letter-spacing: -0.01em; color: var(--gray-900); margin-bottom: 12px;
  }
  .measure-col p {
    font-size: 14.5px; line-height: 1.65; color: #4b5563; margin: 0;
  }

  /* Evidence strip — three real data fragments from anonymized workups.
     Sits between the hero and methodology sections. Compact, number-forward. */
  .evidence-strip {
    background: var(--gray-900);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 40px 0;
  }
  .evidence-strip__eyebrow {
    text-align: center;
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: rgba(255,255,255,0.35);
    margin-bottom: 28px;
  }
  .evidence-strip__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; overflow: hidden;
  }
  @media (max-width: 720px) {
    .evidence-strip__grid { grid-template-columns: 1fr; }
  }
  .evidence-strip__item {
    background: rgba(255,255,255,0.03);
    padding: 28px 28px 24px;
  }
  .evidence-strip__num {
    font-family: var(--font-display); font-size: 42px; font-weight: 800;
    color: var(--teal-light); line-height: 1; letter-spacing: -0.03em;
    margin-bottom: 6px;
  }
  .evidence-strip__num span { font-size: 20px; color: rgba(0,196,188,0.55); }
  .evidence-strip__label {
    font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85);
    margin-bottom: 8px; line-height: 1.3;
  }
  .evidence-strip__note {
    font-size: 12.5px; color: rgba(255,255,255,0.42);
    line-height: 1.55;
  }
  /* Hero score definition — small subtitle under "AI Citation Score" label */
  .hero-score__def {
    display: block;
    font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.45);
    letter-spacing: 0; text-transform: none; margin-top: 2px; line-height: 1.4;
  }

  /* Execution Brief teal strip — bridge between Deliverable + How it works */
  .exec-brief-strip {
    background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-dark) 100%);
    color: white; padding: 22px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .exec-brief-strip__inner {
    display: flex; align-items: center; gap: 16px;
    max-width: 880px; margin: 0 auto;
  }
  .exec-brief-strip__icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: white;
  }
  .exec-brief-strip__copy {
    font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.92);
  }
  .exec-brief-strip__copy strong { color: white; font-weight: 700; }
  @media (max-width: 600px) {
    .exec-brief-strip { padding: 18px 0; }
    .exec-brief-strip__inner { gap: 12px; }
    .exec-brief-strip__icon { width: 36px; height: 36px; }
    .exec-brief-strip__icon svg { width: 18px; height: 18px; }
    .exec-brief-strip__copy { font-size: 13.5px; line-height: 1.5; }
  }

  /* FAQ — the canonical teal-left-bar accordion (matches /pricing + the product
     pages' page-emphasis <details> list): flat items, a 3px teal left rule, a 24px
     inset, and a +/− marker. The smoother animated disclosure + accessible button
     JS from the homepage are kept — only the chrome is restyled to the site standard. */
  .faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin: 0 auto; }
  .faq-item {
    border-left: 3px solid rgba(0,161,155,0.5);
    padding-left: 24px;
    transition: border-color 0.2s var(--ease);
  }
  .faq-item:hover, .faq-item.open { border-left-color: var(--teal); }
  .faq-h { margin: 0; font: inherit; }
  .faq-q {
    width: 100%; background: none; border: 0; text-align: left; margin: 0;
    padding: 14px 0;
    cursor: pointer; user-select: none;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    font-family: var(--font-display);
    font-size: 17px; font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.005em;
    line-height: 1.4;
    transition: color 0.18s var(--ease);
  }
  .faq-q:focus-visible { outline: 2px solid var(--teal-dark); outline-offset: 2px; border-radius: 4px; }
  .faq-item.open .faq-q { color: var(--teal-dark); }
  /* +/− marker (replaces the chevron) — the site-standard disclosure affordance */
  .faq-chevron { display: none; }
  .faq-q::after {
    content: "+";
    flex: none;
    color: var(--teal-dark);
    font-weight: 400; font-size: 24px; line-height: 1;
  }
  .faq-item.open .faq-q::after { content: "\2212"; }
  .faq-a {
    max-height: 0; overflow: hidden; visibility: hidden;
    padding: 0;
    color: #4b5563;
    font-size: 15px; line-height: 1.7;
    transition: max-height 0.4s var(--ease), padding 0.35s var(--ease), visibility 0s linear 0.4s;
  }
  .faq-item.open .faq-a {
    max-height: 600px; visibility: visible;
    padding: 0 0 16px;
    transition: max-height 0.4s var(--ease), padding 0.35s var(--ease), visibility 0s;
  }
  /* Inside-FAQ links + bold text — make sure they read teal-themed */
  .faq-a strong { color: var(--gray-900); font-weight: 700; }
  .faq-a a { color: var(--teal-dark); border-bottom: 1px dotted rgba(0,161,155,0.4); }
  .faq-a a:hover { color: var(--teal); border-bottom-color: var(--teal); }

  /* The Conversation — homepage section that mirrors the workup's Section 9 voice.
     Quiet, confident, generous spacing. No decoration competes with the prose. */
  .conversation {
    max-width: 760px; margin: 0 auto; text-align: left;
  }
  .conversation__eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--teal-light);
    margin-bottom: 16px;
  }
  .conversation__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.2vw, 40px); font-weight: 700;
    letter-spacing: -0.018em; line-height: 1.18;
    color: var(--white); margin: 0 0 32px;
  }
  .conversation__title-muted {
    color: rgba(255,255,255,0.55); font-weight: 600;
  }
  .conversation__body p {
    font-size: 16.5px; line-height: 1.78;
    color: rgba(255,255,255,0.78); margin: 0 0 20px;
  }
  .conversation__body p:last-child { margin-bottom: 0; }
  .conversation__close {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 22px; margin-top: 28px !important;
    color: rgba(255,255,255,0.88) !important;
  }
  .conversation__close strong { color: var(--teal-light); font-weight: 700; }
  .conversation__cta {
    margin-top: 36px; display: flex; align-items: center;
    gap: 18px 24px; flex-wrap: wrap;
  }
  .conversation__secondary {
    color: rgba(255,255,255,0.55); font-size: 14px;
    text-decoration: none; transition: color var(--ease);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-bottom: 2px;
  }
  .conversation__secondary:hover {
    color: var(--teal-light);
    border-bottom-color: var(--teal);
  }
  @media (max-width: 640px) {
    .conversation { padding: 0 4px; }
    .conversation__body p { font-size: 15.5px; }
    .conversation__cta { flex-direction: column; align-items: stretch; }
    .conversation__cta .btn { justify-content: center; }
    .conversation__secondary { text-align: center; }
  }

  /* Built on Trust — homepage trust pillar grid */
  .trust-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px; max-width: 980px; margin: 0 auto;
  }
  .trust-pillar {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: 14px; padding: 28px 28px 26px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .trust-pillar:hover { border-color: rgba(0,161,155,0.35); box-shadow: 0 8px 24px rgba(0,161,155,0.06); }
  .trust-pillar__icon {
    width: 38px; height: 38px; border-radius: 9px;
    background: rgba(0,161,155,0.10); color: var(--teal);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .trust-pillar__icon svg { width: 19px; height: 19px; }
  .trust-pillar h3 {
    font-size: 17px; font-weight: 700; color: var(--gray-900);
    margin: 0 0 8px; letter-spacing: -0.01em;
  }
  .trust-pillar p {
    font-size: 14.5px; line-height: 1.7; color: var(--gray-700); margin: 0;
  }
  .trust-footnote {
    text-align: center; font-size: 12.5px; color: var(--gray-500);
    margin-top: 28px; max-width: 720px; margin-left: auto; margin-right: auto;
  }
  @media (max-width: 720px) {
    .trust-grid { grid-template-columns: 1fr; gap: 14px; }
    .trust-pillar { padding: 22px 22px 20px; }
  }

  /* ─── #trust recolored to DARK outro act (scoped under .trust--dark) ───
     Matches the dark reference (deliverable / final-CTA): translucent-white cards,
     white headings, muted-white body, teal-light accents. Header handled by
     .section-hd--dark + label --muted in the markup. */
  .trust--dark .trust-pillar {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .trust--dark .trust-pillar:hover {
    border-color: rgba(0,196,188,0.45);
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  }
  .trust--dark .trust-pillar__icon {
    background: rgba(0,196,188,0.14);
    color: var(--teal-light);
  }
  .trust--dark .trust-pillar h3 { color: var(--white); }
  .trust--dark .trust-pillar p { color: rgba(255,255,255,0.66); }
  .trust--dark .trust-footnote { color: rgba(255,255,255,0.5); }
  .trust--dark .trust-pillar p a[href^="mailto:"],
  .trust--dark .trust-footnote a[href^="mailto:"] { color: var(--teal-light); }
  .trust--dark .trust-pillar p a[href^="mailto:"]:hover,
  .trust--dark .trust-footnote a[href^="mailto:"]:hover { color: #5fe0da; }

  /* Web Everything badge (used in CTAs) */
  .we-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; background: rgba(0,161,155,0.08);
    border: 1px solid rgba(0,196,188,0.32); border-radius: 999px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--teal-light);
    margin-bottom: 24px;
  }
  .we-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); animation: pulse-dot 2s ease-in-out infinite; }

  /* Final CTA */
  .final-cta {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
    border: 1px solid rgba(0,161,155,0.18); border-radius: 20px;
    /* Card owns horizontal only; the wrapping .section pays the band rhythm
       (var(--sec-y)). Inner content carries the vertical via padding-block —
       matches the subpage .page-cta__card model (no double padding). The
       horizontal clamp replaces the old bespoke mobile ladder. */
    padding: 0 clamp(20px, 5vw, 48px); text-align: center; position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(0,161,155,0.10) 0%, transparent 70%);
    pointer-events: none;
  }
  .final-cta-inner { position: relative; z-index: 1; padding-block: clamp(40px, 6vw, 64px); }
  .final-cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.025em; color: var(--white); margin: 0 auto 16px; max-width: 720px; line-height: 1.15; }
  .final-cta p { font-size: 16.5px; color: rgba(255,255,255,0.5); max-width: 580px; margin: 0 auto 32px; line-height: 1.65; }

  /* Mark row above the final-cta H2 — Google + 5 AIs with animated SVGs */
  .final-cta__marks {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 0 auto 30px;
    max-width: 760px;
  }
  .final-cta__mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 64px;
  }
  .final-cta__mark-glyph {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .final-cta__mark-glyph svg { width: 100%; height: 100%; display: block; overflow: visible; }
  /* Option A engine strip (specialty pages): real brand logos, monochrome white, no tiles. */
  .final-cta__marks--logos { gap: 30px 46px; max-width: 900px; }
  .final-cta__mark-logo { height: 34px; display: flex; align-items: center; justify-content: center; }
  .final-cta__mark-logo svg { height: 34px; width: auto; display: block; }
  @media (max-width: 720px) {
    .final-cta__marks--logos { gap: 22px 30px; }
    .final-cta__mark-logo, .final-cta__mark-logo svg { height: 28px; }
  }
  .final-cta__mark-name {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
    text-align: center;
    line-height: 1.35;
  }
  .final-cta__plus {
    font-size: 18px;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
    align-self: flex-start;
    height: 30px;          /* match the glyph height so the + centers on the icons */
    line-height: 30px;
  }
  @media (max-width: 720px) {
    .final-cta__marks { gap: 12px; }
    .final-cta__mark { min-width: 52px; }
    .final-cta__mark-glyph { width: 26px; height: 26px; }
    .final-cta__mark-name { font-size: 9.5px; }
    .final-cta__plus { display: none; }
  }

  /* ─── FINAL CTA — TEAL crescendo (scoped under .final-cta-section--teal) ───
     The one full-bleed teal moment: brand peak before the navy outro. */
  .final-cta-section--teal.section--dark {
    background: linear-gradient(160deg, #00615c 0%, var(--teal-dark) 55%, var(--teal) 130%); /* darkened: white body text ≥4.6:1 across the band */
  }
  .final-cta-section--teal .final-cta {
    background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 24px 60px rgba(0,72,69,0.30);
  }
  .final-cta-section--teal .final-cta::before {
    background: radial-gradient(ellipse, rgba(255,255,255,0.16) 0%, transparent 70%);
  }
  .final-cta-section--teal .final-cta h2 { color: var(--white); text-shadow: 0 1px 2px rgba(0,60,57,0.25); }
  .final-cta-section--teal .final-cta p { color: rgba(255,255,255,0.92); }
  /* Engine marks: seat each glyph on a navy inset chip so the per-engine colors
     (tuned for navy) read correctly on teal. */
  .final-cta-section--teal .final-cta__mark-glyph {
    width: 44px; height: 44px; padding: 7px; border-radius: 11px;
    background: rgba(2,6,35,0.55); border: 1px solid rgba(255,255,255,0.16);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.35);
  }
  @media (max-width: 720px) { .final-cta-section--teal .final-cta__mark-glyph { width: 40px; height: 40px; padding: 6px; } }
  .final-cta-section--teal .final-cta__mark-name { color: rgba(255,255,255,0.80); }
  .final-cta-section--teal .final-cta__plus { color: rgba(255,255,255,0.55); }
  .final-cta-section--teal .btn--white .price { opacity: 0.65; }

  /* Contact section (prod) */
  /* Seam: the unified teal hairline at the dark→light boundary (matches
     .page-hero::after / .page-quote). Replaces the old gray hairline. */
  .contact-section { background: var(--white); padding: var(--sec-y) 0; border-top: 1px solid rgba(0,196,188,0.18); position: relative; overflow: hidden; }
  .contact-section .container { position: relative; z-index: 1; }
  .contact-section__header { text-align: center; max-width: 580px; margin: 0 auto 48px; }
  .contact-section__label {
    display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
  }
  .contact-section__h {
    font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -0.025em;
    line-height: 1.12; color: var(--gray-900); margin-bottom: 16px;
  }
  .contact-section__sub { font-size: 16.5px; color: var(--gray-500); line-height: 1.65; }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
    align-items: start; max-width: 1080px; margin: 0 auto;
  }
  .contact-grid__info { padding-top: 4px; }
  .contact-grid__h3 {
    font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--teal); margin: 32px 0 16px;
  }
  .contact-grid__h3:first-child { margin-top: 0; }
  .contact-grid__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
  .contact-grid__list li {
    position: relative; padding-left: 22px;
    font-size: 14.5px; line-height: 1.55; color: var(--gray-700);
  }
  .contact-grid__list li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 8px; height: 8px; border: 1.5px solid var(--teal);
    border-radius: 1px; transform: rotate(45deg);
  }
  .contact-grid__list li strong { color: var(--gray-900); font-weight: 700; }
  .contact-form { display: grid; gap: 16px; text-align: left; }
  .contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-form label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-700); margin-bottom: 6px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%; padding: 12px 14px; background-color: var(--white);
    border: 1.5px solid var(--gray-200); border-radius: 8px; color: var(--gray-900);
    font-family: var(--font-body); font-size: 14.5px;
    transition: border-color var(--ease), box-shadow var(--ease);
  }
  /* Custom dropdown chevron with breathing room from the edge (native arrow tucks
     to the border). Light-form gray chevron; the dark contact form overrides it
     with a lighter one below. */
  .contact-form select {
    appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 42px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 15px center;
  }
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,161,155,0.10);
  }
  .contact-form textarea { resize: vertical; min-height: 120px; }
  .contact-form__submit { margin-top: 10px; display: flex; justify-content: center; }
  .contact-form__submit .btn,
  .contact-form__submit .btn:active { transform: none; box-shadow: none; }
  .contact-form__submit .btn { transition: background 0.22s ease; }
  .contact-form__submit .btn:hover { transform: none; box-shadow: none; background: var(--teal-dark); }
  .contact-form__msg { display: none; padding: 12px 16px; border-radius: 8px; font-size: 13.5px; text-align: center; margin-top: 4px; }
  .contact-form__msg--success { background: rgba(0,161,155,0.08); color: var(--teal-dark); border: 1px solid rgba(0,161,155,0.35); }
  .contact-form__msg--error   { background: rgba(214,51,132,0.08); color: var(--pharma-pink); border: 1px solid rgba(214,51,132,0.35); }

  /* ─── Contact — DARK variant (scoped under .contact-section--dark) ───
     Continues the navy outro into the footer. Navy bg, white text, teal-light
     accents, translucent-white inputs. */
  /* Dark variant keeps the unified teal hairline seam (not a faint-white one),
     so every section boundary on the homepage reads with one treatment. */
  .contact-section--dark { background: var(--dark); color: var(--white); border-top: 1px solid rgba(0,196,188,0.18); }
  .contact-section--dark .bg-d { border-color: rgba(0,196,188,0.22) !important; }
  .contact-section--dark .bg-d[data-f="3"] { border-color: rgba(214,51,132,0.16) !important; }
  .contact-section--dark .contact-section__label { color: var(--teal-light); }
  .contact-section--dark .contact-section__h { color: var(--white); }
  .contact-section--dark .contact-section__sub { color: rgba(255,255,255,0.55); }
  .contact-section--dark .contact-grid__h3 { color: var(--teal-light); }
  .contact-section--dark .contact-grid__list li { color: rgba(255,255,255,0.62); }
  .contact-section--dark .contact-grid__list li strong { color: var(--white); }
  .contact-section--dark .contact-grid__list li::before { border-color: var(--teal-light); }
  .contact-section--dark .contact-form label { color: rgba(255,255,255,0.72); }
  .contact-section--dark .contact-form label span { color: rgba(255,255,255,0.40) !important; }
  .contact-section--dark .contact-form input,
  .contact-section--dark .contact-form select,
  .contact-section--dark .contact-form textarea {
    background-color: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.16);
    color: var(--white);
  }
  .contact-section--dark .contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b9c0cf' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  }
  .contact-section--dark .contact-form input::placeholder,
  .contact-section--dark .contact-form textarea::placeholder { color: rgba(255,255,255,0.38); }
  .contact-section--dark .contact-form select:invalid,
  .contact-section--dark .contact-form select option[value=""] { color: rgba(255,255,255,0.45); }
  .contact-section--dark .contact-form select option { color: var(--white); background: var(--dark-2); }
  .contact-section--dark .contact-form input:-webkit-autofill,
  .contact-section--dark .contact-form input:-webkit-autofill:hover,
  .contact-section--dark .contact-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--white);
    caret-color: var(--white);
    -webkit-box-shadow: 0 0 0 1000px rgba(8,13,42,0.96) inset;
    box-shadow: 0 0 0 1000px rgba(8,13,42,0.96) inset;
    transition: background-color 9999s ease-in-out 0s;
  }
  .contact-section--dark .contact-form input:focus,
  .contact-section--dark .contact-form select:focus,
  .contact-section--dark .contact-form textarea:focus {
    border-color: var(--teal-light);
    box-shadow: 0 0 0 3px rgba(0,196,188,0.22);
  }
  .contact-section--dark .contact-form__msg--success { background: rgba(0,196,188,0.12); color: var(--teal-light); border: 1px solid rgba(0,196,188,0.40); }
  .contact-section--dark .contact-form__msg--error { background: rgba(214,51,132,0.14); color: #f3a4cb; border: 1px solid rgba(214,51,132,0.45); }

  /* Footer */
  /* Footnote superscript markers — $399¹ and time²
     Tiny, semi-transparent. Should sit lightly on the type, not compete with it. */


  /* Responsive */
  @media (max-width: 1024px) {
    .deliv-grid { gap: 40px; }
  }
  @media (max-width: 900px) {
    .deliv-grid { grid-template-columns: 1fr; gap: 48px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 768px) {
    .container { padding: 0 20px; }
    /* Hero spacing lives in ONE place on mobile (the section), even top+bottom.
       The inner .hero__body / .hero__left vertical padding is zeroed so it can't
       stack into dead space above the eyebrow. */
    .hero { padding-top: 32px; padding-bottom: 32px; }
    .hero__body { padding: 0; }
    .hero__title { font-size: clamp(32px, 7.2vw, 46px); line-height: 1.1; }
    .hero__sub { font-size: 16px; }
    .who-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .contact-form__row { grid-template-columns: 1fr; }
    .price-card { padding: 32px 24px; }
    .footer-mini { padding: 24px 0 22px; }
    .footer-mini__inner { flex-direction: column; gap: 10px; text-align: center; }
    .footer-mini__copy { font-size: 11.5px; }
    .footer-mini__footnotes { margin-bottom: 16px; padding: 14px 0 10px; }
    .footer-mini__footnotes p { font-size: 11px; }
  }
  @media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section-hd { margin-bottom: 36px; }
    .section-hd h2 { font-size: clamp(26px, 8vw, 34px); }
    .hero__title { font-size: clamp(28px, 8.5vw, 38px); line-height: 1.12; }
    .hero__sub { font-size: 15px; }
    .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    /* The demo text-link isn't a full-width button — size it to content + center it. */
    .hero__actions .hero__demo { align-self: center; }
    .hero__call-note { font-size: 11px; text-align: center; margin-bottom: 24px; }
    .hero__trust { gap: 14px 22px; justify-content: center; }
    .hero__trust-item { font-size: 11.5px; }
    .price-card { padding: 24px 18px; border-radius: 12px; }
    .price-amount em { font-size: 44px; }
    .price-card .btn { width: 100%; justify-content: center; }
    .step-card { padding: 22px 18px; }
    .step-title { font-size: 16px; }
    .step-body { font-size: 13.5px; }
    .compare-note { font-size: 13px; padding: 18px 16px; }
    .faq-item { padding-left: 18px; }
    .faq-q { font-size: 15.5px; padding: 13px 0; gap: 10px; }
    .faq-q::after { font-size: 22px; }
    .faq-a { font-size: 14.5px; }
    .faq-item.open .faq-a { padding: 0 0 14px; }
    .final-cta h2 { font-size: clamp(24px, 7.5vw, 32px); }
    .trust-grid { gap: 12px; }
    .trust-pillar { padding: 20px 18px; }
    .trust-pillar h3 { font-size: 16px; }
    .trust-pillar p { font-size: 13.5px; }
    .trust-footnote { font-size: 11.5px; margin-top: 22px; }

    /* Deliverable section mobile */
    .deliv-copy h3 { font-size: 19px; }
    .deliv-copy p { font-size: 14.5px; }
    .deliv-item { gap: 14px; padding: 14px 0; }
    .deliv-num { font-size: 18px; min-width: 28px; }
    .deliv-title { font-size: 14.5px; gap: 6px; }
    .deliv-tag { font-size: 9px; padding: 2px 6px; }
    .deliv-text { font-size: 13px; }
    /* Report preview card sized down on phone */
    .report-preview { padding: 26px 22px; border-radius: 14px; }
    .preview-stat-value { font-size: 28px; }
    .preview-title { font-size: 20px; }
    .preview-gap-title { font-size: 13px; }
    .preview-gap-body { font-size: 12px; }
  }

  /* Naples ENT demo section CSS removed 2026-05-24. */

  /* ════════════════════════════════════════════════════════════════════
     HOMEPAGE REBUILD — 2026-06-05. Below-the-hero story system.
     Split diagram · the instrument bar · the 9-section workup preview
     (dark product-UI) · callouts. Reuses tokens + .section/.container/
     .btn/.section-hd. New components are prefixed split-/inst-/wk-/clt-.
     ════════════════════════════════════════════════════════════════════ */

  /* ── The split: how patients choose now (dark, diagram-led) ── */
  .split { background: var(--dark); color: #fff; position: relative; overflow: hidden; padding: var(--sec-y-lg) 0; }
  /* On mobile the diagram stacks under the copy, so the large-tier padding compounds
     into dead space — drop this band to the normal section tier below the 2-col break. */
  @media (max-width: 939px) { .split { padding: var(--sec-y) 0; } }
  .split::before { content:""; position:absolute; inset:0; background:
      radial-gradient(900px 380px at 78% 12%, rgba(0,161,155,0.14), transparent 60%),
      radial-gradient(680px 300px at 8% 92%, rgba(214,51,132,0.08), transparent 60%); pointer-events:none; }
  .split__inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 40px; }
  @media (min-width: 940px) { .split__inner { grid-template-columns: minmax(0,0.82fr) minmax(0,1.18fr); gap: 56px; align-items: center; } }
  .split__lead .section-hd__label { color: var(--teal-light); }
  .split__h { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin: 14px 0 18px; }
  .split__h em { font-style: normal; color: var(--teal-light); }
  .split__p { font-size: clamp(15px, 1.3vw, 17px); line-height: 1.66; color: rgba(255,255,255,0.72); max-width: 46ch; }
  .split__p + .split__p { margin-top: 14px; }
  .split__p strong { color: #fff; font-weight: 600; }

  /* The diagram itself */
  .split__fig { position: relative; }
  .split-dia { width: 100%; height: auto; display: block; overflow: visible; }
  .split-dia text { font-family: var(--font-display); }
  .split-dia .sd-flow { stroke-dasharray: 7 9; opacity: 0; }
  .fi.visible .split-dia .sd-flow { opacity: 1; animation: sdDash 1.1s linear infinite; }
  .fi.visible .split-dia .sd-flow--2 { animation-delay: 0.4s; }
  @keyframes sdDash { to { stroke-dashoffset: -32; } }
  .split-dia .sd-card { opacity: 0; transform: translateY(8px); transform-box: fill-box; transform-origin: center; }
  .fi.visible .split-dia .sd-card { animation: sdPop 0.6s cubic-bezier(0.2,0.7,0.3,1) forwards; }
  .fi.visible .split-dia .sd-card--b { animation-delay: 0.18s; }
  .fi.visible .split-dia .sd-card--c { animation-delay: 0.36s; }
  @keyframes sdPop { to { opacity: 1; transform: translateY(0); } }
  .split-dia .sd-pulse { transform-box: fill-box; transform-origin: center; }
  .fi.visible .split-dia .sd-pulse { animation: sdPulse 2.4s ease-in-out infinite; }
  @keyframes sdPulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }

  /* ── The instrument bar: what one workup reads ── */
  /* Seam: unified teal hairline (matches .page-hero::after / .page-quote /
     .contact-section), replacing the old faint-white divider. */
  .inst { background: var(--dark-2); color: #fff; border-top: 1px solid rgba(0,196,188,0.18); padding: var(--sec-y-sm) 0; }
  .inst__row { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: stretch; }
  @media (min-width: 720px) { .inst__row { grid-template-columns: repeat(4, 1fr); gap: 0; } }
  .inst__node { padding: 6px 22px; position: relative; }
  @media (min-width: 720px) { .inst__node + .inst__node { border-left: 1px solid rgba(255,255,255,0.08); } }
  .inst__node-h { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; letter-spacing: 0.01em; }
  .inst__node-h svg { width: 20px; height: 20px; color: var(--teal-light); flex-shrink: 0; }
  .inst__node-p { font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,0.58); margin-top: 8px; }
  .inst__node-w { display: inline-block; margin-top: 9px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-light); }
  .inst__scope { text-align: center; margin-top: 28px; font-size: 12.5px; color: rgba(255,255,255,0.42); }
  .inst__scope b { color: rgba(255,255,255,0.7); font-weight: 600; }

  /* ════ THE CENTERPIECE — 9-section workup preview (dark product UI) ════ */
  .wk { background: var(--dark); color: #fff; position: relative; overflow: clip; padding: var(--sec-y-lg) 0; }
  .wk::before { content:""; position:absolute; inset:0; background:
      radial-gradient(760px 420px at 88% 4%, rgba(0,161,155,0.12), transparent 62%); pointer-events:none; }
  .wk__hd { position: relative; max-width: 760px; }
  .wk__hd .section-hd__label { color: var(--teal-light); }
  .wk__h { font-size: clamp(28px,3.6vw,44px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin: 14px 0 16px; }
  .wk__h em { font-style: normal; color: var(--teal-light); }
  .wk__sub { font-size: clamp(15px,1.3vw,17px); line-height: 1.62; color: rgba(255,255,255,0.66); max-width: 60ch; }
  .wk__sample-tag { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 7px 14px; border: 1px solid rgba(0,161,155,0.4); border-radius: 999px; background: rgba(0,161,155,0.08); font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--teal-light); }
  .wk__sample-tag svg { width: 13px; height: 13px; flex-shrink: 0; }
  /* Deliverable intro: the copy + a real-life photo, two columns on desktop,
     stacked on mobile. Sits above the interactive report mockup (unchanged). */
  .wk__intro { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
  @media (min-width: 940px) { .wk__intro { grid-template-columns: minmax(0,1fr) minmax(0,1fr); column-gap: 48px; row-gap: 18px; } }
  .wk__intro > .wk__sample-tag { margin-top: 0; justify-self: start; }
  .wk__photo img { width: 100%; height: auto; display: block; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.55); }
  @media (max-width: 480px) { .wk__sample-tag { align-items: flex-start; border-radius: 14px; max-width: 100%; } .wk__sample-tag svg { margin-top: 2px; } }
  /* Mobile-only CTA below the deliverable showcase. On desktop the page flows
     straight into the pricing band, so this only shows on phones/tablets. */
  .wk__cta { display: none; }
  @media (max-width: 820px) {
    .wk__cta { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 30px; }
    .wk__cta .btn { width: 100%; max-width: 380px; }
    .wk__cta-note { margin: 0; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.5); text-align: center; }
  }

  /* The app frame */
  /* overflow:clip (not hidden) clips the rounded corners identically but does
     NOT create a scroll container, so the sticky tab menu can pin to the viewport. */
  .wk__app { position: relative; margin-top: 44px; border: 1px solid rgba(255,255,255,0.10); border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)); box-shadow: 0 40px 90px -40px rgba(0,0,0,0.7); overflow: clip; }
  /* Fade the card with opacity only — a translate transform would make .wk__app a
     containing block and break the sticky tab menu inside it. */
  .wk__app.fi { transform: none; }
  .wk__chrome { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.18); }
  .wk__chrome-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.01em; }
  .wk__chrome-live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .wk__chrome-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-light); box-shadow: 0 0 0 0 rgba(0,196,188,0.5); animation: wkLive 2.2s ease-out infinite; }
  @keyframes wkLive { 0% { box-shadow: 0 0 0 0 rgba(0,196,188,0.45);} 70%{box-shadow:0 0 0 7px rgba(0,196,188,0);} 100%{box-shadow:0 0 0 0 rgba(0,196,188,0);} }

  .wk__body { display: grid; grid-template-columns: 1fr; }
  @media (min-width: 900px) { .wk__body { grid-template-columns: 276px minmax(0,1fr); } }

  /* Left rail = tablist. Wrapped in .wk__tabwrap which is the sticky grid item. */
  .wk__tabwrap {
    position: sticky; top: var(--nav-h); z-index: 20;
    align-self: start; min-width: 0;
  }
  /* Mobile: opaque backing so panel content doesn't bleed through while pinned. */
  @media (max-width: 899px) {
    .wk__tabwrap { background: rgba(4,8,30,0.95); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
  }
  .wk__tabs { padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .wk__tabs::-webkit-scrollbar { display: none; }
  @media (min-width: 900px) {
    .wk__tabs { flex-direction: column; gap: 2px; padding: 14px; border-bottom: 0; overflow: visible; }
    /* divider runs full card height — moved off the (now content-height) sticky rail onto the panels */
    .wk__panels { border-left: 1px solid rgba(255,255,255,0.08); }
  }
  /* Swipe affordance — mobile only, over the right edge of the scrolling rail. */
  .wk__tabwrap::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 54px;
    background: linear-gradient(90deg, rgba(4,8,30,0) 0%, rgba(4,8,30,0.92) 72%);
    pointer-events: none; z-index: 3; opacity: 1; transition: opacity 0.3s ease;
  }
  .wk__swipe {
    position: absolute; top: 50%; right: 9px; transform: translateY(-50%);
    z-index: 4; pointer-events: none; display: inline-flex; align-items: center;
    color: var(--teal-light); opacity: 0.9; transition: opacity 0.3s ease;
    animation: wkSwipeNudge 1.5s ease-in-out infinite;
  }
  .wk__swipe svg { width: 16px; height: 16px; }
  @keyframes wkSwipeNudge { 0%,100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(4px); } }
  .wk__tabwrap.is-end::after, .wk__tabwrap.no-overflow::after,
  .wk__tabwrap.is-end .wk__swipe, .wk__tabwrap.no-overflow .wk__swipe { opacity: 0; }
  @media (min-width: 900px) {
    .wk__tabwrap::after, .wk__swipe { display: none; }
  }
  @media (prefers-reduced-motion: reduce) { .wk__swipe { animation: none; } }
  .wk__tab { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 10px; border: 0; background: transparent; color: rgba(255,255,255,0.6); font-family: var(--font-display); font-size: 13.5px; font-weight: 600; text-align: left; cursor: pointer; white-space: nowrap; transition: background var(--ease), color var(--ease); }
  @media (min-width: 900px) { .wk__tab { white-space: normal; } }
  .wk__tab:hover { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.9); }
  .wk__tab[aria-selected="true"] { background: rgba(0,161,155,0.14); color: #fff; }
  .wk__tab[aria-selected="true"] .wk__tab-glyph { color: var(--teal-light); border-color: rgba(0,196,188,0.5); background: rgba(0,196,188,0.1); }
  .wk__tab:focus-visible { outline: 2px solid var(--teal-light); outline-offset: 2px; }
  .wk__tab-glyph { flex-shrink: 0; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; color: rgba(255,255,255,0.7); transition: all var(--ease); }
  .wk__tab-glyph svg { width: 16px; height: 16px; }
  .wk__tab-n { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); }
  .wk__tab[aria-selected="true"] .wk__tab-n { color: var(--teal-light); }

  /* Right = panels */
  .wk__panels { position: relative; min-height: 460px; }
  .wk__panel { display: none; padding: clamp(22px,3vw,38px); }
  .wk__panel.is-active { display: grid; grid-template-columns: 1fr; gap: 26px; animation: wkFade 0.4s ease; min-width: 0; }
  @media (min-width: 1080px) { .wk__panel.is-active { grid-template-columns: minmax(0,0.92fr) minmax(0,1.08fr); gap: 38px; align-items: start; } }
  @keyframes wkFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
  .wk__copy-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-light); }
  .wk__copy-h { font-size: clamp(20px,2vw,26px); font-weight: 700; line-height: 1.16; letter-spacing: -0.01em; margin: 10px 0 14px; color: #fff; }
  .wk__copy-p { font-size: 14.5px; line-height: 1.62; color: rgba(255,255,255,0.7); }
  .wk__copy-p + .wk__copy-p { margin-top: 12px; }
  .wk__copy-p strong { color: #fff; font-weight: 600; }
  .wk__do { margin-top: 20px; padding: 14px 16px; border-left: 2px solid var(--teal); background: rgba(0,161,155,0.07); border-radius: 0 8px 8px 0; }
  .wk__do-l { font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 6px; }
  .wk__do-t { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.85); }

  /* Artifact = light dashboard card on the dark */
  .wk__art { background: #fff; color: var(--dark-3); border-radius: 14px; padding: 22px; box-shadow: 0 24px 60px -30px rgba(0,0,0,0.6); overflow: hidden; min-width: 0; }
  .wk__art-eyebrow { display:flex; align-items:center; justify-content:space-between; gap:10px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 14px; }
  .wk__art-stamp { font-weight: 600; letter-spacing: 0.04em; color: var(--gray-500); text-transform: none; }

  /* Artifact: The Read prose */
  .wk-read p { font-size: 13.5px; line-height: 1.66; color: var(--gray-700); margin: 0 0 11px; }
  .wk-read p:last-child { margin-bottom: 0; }
  .wk-read b { color: var(--gray-900); font-weight: 700; }
  .wk-read .wk-read__pink { color: var(--pharma-pink); font-weight: 700; }

  /* Artifact: citation gauge + engine rows */
  .wk-gauge { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
  .wk-gauge__ring { position: relative; width: 104px; height: 104px; flex-shrink: 0; }
  .wk-gauge__ring svg { width: 104px; height: 104px; transform: rotate(-90deg); }
  .wk-gauge__track { stroke: var(--gray-100); }
  .wk-gauge__val { stroke: var(--sev-high); stroke-linecap: round; stroke-dasharray: 283; stroke-dashoffset: 283; }
  .fi.visible .wk-gauge__val { animation: wkRing 1.3s cubic-bezier(0.2,0.7,0.3,1) 0.2s forwards; }
  @keyframes wkRing { to { stroke-dashoffset: 190; } } /* ~33/100 */
  .wk-gauge__center { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
  .wk-gauge__num { font-size: 30px; font-weight: 800; color: var(--sev-high); line-height: 1; letter-spacing: -0.02em; }
  .wk-gauge__denom { font-size: 12px; font-weight: 700; color: var(--gray-500); }
  .wk-gauge__cap h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin: 0 0 5px; }
  .wk-gauge__cap p { font-size: 12px; line-height: 1.5; color: var(--gray-500); margin: 0; }
  .wk-rows { border-top: 1px solid var(--gray-100); }
  .wk-row { display: grid; grid-template-columns: 1fr auto 64px; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--gray-100); font-size: 12.5px; }
  .wk-row:last-child { border-bottom: 0; }
  .wk-row__name { font-weight: 600; color: var(--gray-700); }
  .wk-row__name b { display:block; font-size:9.5px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--teal-dark); }
  .wk-row__bar { width: 100%; height: 6px; border-radius: 3px; background: var(--gray-100); overflow: hidden; }
  .wk-row__bar i { display: block; height: 100%; border-radius: 3px; background: var(--teal); transform: scaleX(0); transform-origin: left; }
  .fi.visible .wk-row__bar i { animation: wkBar 0.9s cubic-bezier(0.2,0.7,0.3,1) forwards; }
  @keyframes wkBar { to { transform: scaleX(var(--w, 0.3)); } }
  .wk-row__pct { text-align: right; font-weight: 700; color: var(--gray-900); font-variant-numeric: tabular-nums; }
  .wk-row--low .wk-row__pct { color: var(--sev-high); }

  /* Artifact: booking simulation chat */
  .wk-chat__q, .wk-chat__a { border-radius: 12px; padding: 13px 15px; font-size: 13px; line-height: 1.55; }
  .wk-chat__q { background: var(--gray-50); color: var(--gray-700); border: 1px solid var(--gray-100); margin-bottom: 12px; }
  .wk-chat__a { background: #0c1230; color: rgba(255,255,255,0.92); }
  .wk-chat__lbl { font-size: 9.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-bottom: 6px; }
  .wk-chat__a .wk-chat__lbl { color: var(--teal-light); opacity: 1; }
  .wk-chat__quote em { font-style: normal; color: #fff; }
  .wk-chat__src { margin-top: 9px; font-size: 11px; color: rgba(255,255,255,0.5); }
  .wk-chat__verdict { margin-top: 13px; display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; color: var(--pharma-pink); }
  .wk-chat__verdict svg { width: 16px; height: 16px; flex-shrink: 0; }

  /* Artifact: keyword / SERP table */
  .wk-tbl { width: 100%; border-collapse: collapse; font-size: 12.5px; }
  .wk-tbl th { text-align: left; font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); padding: 0 10px 9px 0; border-bottom: 1px solid var(--gray-100); }
  .wk-tbl th:last-child, .wk-tbl td:last-child { text-align: right; padding-right: 0; }
  .wk-tbl td { padding: 9px 10px 9px 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); font-variant-numeric: tabular-nums; }
  .wk-tbl tr:last-child td { border-bottom: 0; }
  .wk-tbl .wk-q { font-weight: 600; color: var(--gray-900); }
  .wk-pos { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 700; }
  .wk-pos--good { background: #ddf5e0; color: #126e2a; }
  .wk-pos--mid { background: #fff4dc; color: #b85c00; }
  .wk-pos--no { background: #fde7ef; color: var(--pharma-pink); }
  .wk-tbl__foot { margin-top: 12px; font-size: 11.5px; color: var(--gray-500); }
  .wk-tbl__foot b { color: var(--gray-900); }

  /* Artifact: trust velocity + themes */
  .wk-trust__top { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--gray-100); }
  .wk-stars { font-size: 26px; font-weight: 800; color: var(--gray-900); line-height: 1; }
  .wk-stars span { font-size: 13px; color: var(--gray-500); font-weight: 600; }
  .wk-trust__vel { font-size: 12px; color: var(--gray-500); line-height: 1.5; }
  .wk-trust__vel b { color: var(--sev-high); }
  .wk-themes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .wk-themes h5 { font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); margin: 0 0 8px; }
  .wk-themes li { list-style: none; font-size: 12px; color: var(--gray-700); padding: 4px 0 4px 16px; position: relative; }
  .wk-themes li::before { content:""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; }
  .wk-themes__praise li::before { background: #2a9d50; }
  .wk-themes__flag li::before { background: var(--sev-high); }

  /* Artifact: provider findability */
  .wk-prov__name { font-size: 15px; font-weight: 700; color: var(--gray-900); }
  .wk-prov__name span { display:block; font-size: 12px; font-weight: 500; color: var(--gray-500); margin-top: 2px; }
  .wk-checks { margin-top: 14px; }
  .wk-check { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: 12.5px; color: var(--gray-700); }
  .wk-check:last-child { border-bottom: 0; }
  .wk-check svg { width: 16px; height: 16px; flex-shrink: 0; }
  .wk-check--y svg { color: #2a9d50; }
  .wk-check--n { color: var(--gray-500); }
  .wk-check--n svg { color: var(--pharma-pink); }
  .wk-check b { margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-500); }

  /* Artifact: best-at matrix */
  .wk-matrix { width: 100%; border-collapse: collapse; font-size: 11.5px; table-layout: fixed; }
  .wk-matrix th { font-size: 9px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gray-500); padding: 0 6px 8px; text-align: center; overflow: hidden; }
  .wk-matrix th:first-child { text-align: left; width: 26%; }
  .wk-matrix td { padding: 8px 6px; text-align: center; color: var(--gray-600); border-top: 1px solid var(--gray-100); overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
  .wk-matrix td:first-child { text-align: left; font-weight: 700; color: var(--gray-900); }
  .wk-matrix .wk-matrix__you td { background: rgba(0,161,155,0.06); }
  .wk-matrix .wk-matrix__you td:first-child { color: var(--teal-dark); }
  .wk-matrix__foot { margin-top: 12px; font-size: 11.5px; line-height: 1.5; color: var(--gray-500); }

  /* Artifact: 30/60/90 timeline */
  .wk-plan__line { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
  .wk-plan__phase { text-align: center; }
  .wk-plan__bub { width: 46px; height: 46px; margin: 0 auto 8px; border-radius: 50%; display: grid; place-items: center; font-size: 15px; font-weight: 800; color: #fff; position: relative; }
  .wk-plan__bub--30 { background: var(--teal-dark); }
  .wk-plan__bub--60 { background: var(--teal); }
  .wk-plan__bub--90 { background: var(--teal-light); color: var(--dark-3); }
  .wk-plan__phase span { font-size: 11px; font-weight: 600; color: var(--gray-500); }
  .wk-plan__phase span b { display: block; color: var(--gray-900); font-weight: 700; font-size: 12px; }
  .wk-plan__items { border-top: 1px solid var(--gray-100); }
  .wk-plan__item { padding: 9px 0; border-bottom: 1px solid var(--gray-100); }
  .wk-plan__item:last-child { border-bottom: 0; }
  .wk-plan__item-t { font-size: 12.5px; font-weight: 600; color: var(--gray-900); }
  .wk-plan__tags { margin-top: 5px; display: flex; gap: 6px; }
  .wk-tag { font-size: 9.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 2px 8px; border-radius: 999px; }
  .wk-tag--diy { background: #ddf5e0; color: #126e2a; }
  .wk-tag--dev { background: #e6efff; color: #1e4fa3; }
  .wk-tag--time { background: var(--gray-50); color: var(--gray-500); }
  .wk-plan__open { margin-top: 14px; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border: 1px solid var(--gray-200); border-radius: 9px; background: #fff; color: var(--teal-dark); font-family: var(--font-display); font-size: 12.5px; font-weight: 700; cursor: pointer; transition: all var(--ease); }
  .wk-plan__open:hover { border-color: var(--teal); background: var(--teal-faint); }
  .wk-plan__open svg { width: 14px; height: 14px; }

  /* Artifact: the conversation / exec brief */
  .wk-conv p { font-size: 13px; line-height: 1.62; color: var(--gray-700); margin: 0 0 12px; }
  .wk-conv__brief { margin-top: 6px; border: 1px dashed var(--teal); border-radius: 11px; padding: 16px; background: var(--teal-faint); }
  .wk-conv__brief-h { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; color: var(--teal-dark); }
  .wk-conv__brief-h svg { width: 17px; height: 17px; }
  .wk-conv__brief-h .wk-conv__free { margin-left: auto; font-size: 9.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: var(--teal); padding: 3px 9px; border-radius: 999px; }
  .wk-conv__brief p { font-size: 12px; line-height: 1.55; color: var(--gray-600); margin: 9px 0 0; }

  /* ── Callouts: the offers, stated as quiet confidence ── */
  .clt__grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  @media (min-width: 640px) { .clt__grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1000px) { .clt__grid { grid-template-columns: repeat(3,1fr); } }
  .clt { position: relative; padding: 24px 24px 22px; border: 1px solid var(--gray-100); border-radius: 14px; background: #fff; transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease); }
  .clt:hover { border-color: rgba(0,161,155,0.4); box-shadow: 0 14px 34px -20px rgba(0,161,155,0.4); transform: translateY(-2px); }
  .clt--feature { border-color: rgba(0,161,155,0.45); background: linear-gradient(180deg, var(--teal-faint), #fff); }
  .clt__icon { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--teal-faint); color: var(--teal-dark); margin-bottom: 14px; }
  .clt__icon svg { width: 20px; height: 20px; }
  .clt__badge { position: absolute; top: 18px; right: 18px; font-size: 9.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: var(--teal); padding: 3px 9px; border-radius: 999px; }
  .clt__h { font-size: 15px; font-weight: 700; color: var(--gray-900); margin: 0 0 7px; letter-spacing: -0.01em; }
  .clt__p { font-size: 13px; line-height: 1.55; color: var(--gray-500); margin: 0; }

  /* ── Concise how-it-works ── */
  .hiw__grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 34px; counter-reset: hiw; }
  @media (min-width: 820px) { .hiw__grid { grid-template-columns: repeat(3,1fr); gap: 20px; } }
  .hiw__step { position: relative; padding: 26px 24px; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
  .hiw__n { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; color: var(--teal-light); }
  .hiw__t { font-size: 16px; font-weight: 700; color: #fff; margin: 10px 0 8px; }
  .hiw__b { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.6); }
  .hiw__b .we-shimmer { font-weight: 700; }
  /* ─── HOW IT WORKS — light offer act (scoped recolor) ───
     Mirrors the .clt card system from "What's included": white bg, light gray
     border, dark title, gray body. Step number uses --teal-dark (teal-light is
     too pale on white). */
  /* Slightly darker section bg (one token step) to separate How-it-works from
     its neighbors; the white step-cards pop against it. */
  .hiw--light { background: var(--gray-100); }
  .hiw--light .hiw__step {
    background: #fff;
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 2px rgba(16,24,40,0.04);
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  }
  .hiw--light .hiw__step:hover {
    border-color: rgba(0,161,155,0.4);
    box-shadow: 0 14px 34px -20px rgba(0,161,155,0.4);
    transform: translateY(-2px);
  }
  .hiw--light .hiw__n { color: var(--teal-dark); }
  .hiw--light .hiw__t { color: var(--gray-900); }
  .hiw--light .hiw__b { color: var(--gray-500); }

  @media (prefers-reduced-motion: reduce) {
    .split-dia .sd-flow, .split-dia .sd-card, .split-dia .sd-pulse,
    .wk-gauge__val, .wk-row__bar i, .wk__chrome-live i { animation: none !important; }
    .fi.visible .wk-gauge__val { stroke-dashoffset: 190; }
    .fi.visible .wk-row__bar i { transform: scaleX(var(--w,0.3)); }
    .split-dia .sd-card { opacity: 1; transform: none; }
    .split-dia .sd-flow { opacity: 1; }
  }

  .wk-dia { color: var(--teal-light); font-style: normal; font-size: 0.85em; }
  .inst__node-h svg { animation: instGlow 4.5s ease-in-out infinite; }
  .inst__node:nth-child(2) .inst__node-h svg { animation-delay: 0.6s; }
  .inst__node:nth-child(3) .inst__node-h svg { animation-delay: 1.2s; }
  .inst__node:nth-child(4) .inst__node-h svg { animation-delay: 1.8s; }
  @keyframes instGlow { 0%, 100% { color: var(--teal-light); } 50% { color: rgba(255,255,255,0.95); } }
  @media (prefers-reduced-motion: reduce) { .inst__node-h svg { animation: none !important; } }
  /* Instrument strip — stagger the four nodes in on reveal (mobile + desktop) */
  .inst__row.fi { transform: none; }
  .inst__node { opacity: 0; transform: translateY(16px); transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1); }
  .inst__row.visible .inst__node { opacity: 1; transform: none; }
  .inst__row.visible .inst__node:nth-child(1) { transition-delay: 0.05s; }
  .inst__row.visible .inst__node:nth-child(2) { transition-delay: 0.14s; }
  .inst__row.visible .inst__node:nth-child(3) { transition-delay: 0.23s; }
  .inst__row.visible .inst__node:nth-child(4) { transition-delay: 0.32s; }
  @media (prefers-reduced-motion: reduce) { .inst__node { opacity: 1 !important; transform: none !important; transition: none !important; } }
