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

    :root {
      /* ── Brand palette (unchanged) ── */
      --navy:      #070e1d;
      --navy2:     #0b1424;
      --navy3:     #0f1c33;
      --blue:      #1d4ed8;
      --blue-lt:   #3b82f6;
      --blue-pale: rgba(59,130,246,0.10);
      --red:       #dc2626;
      --red-pale:  rgba(220,38,38,0.08);
      --green:     #16a34a;
      --amber:     #d97706;
      --text:      #dde4f0;
      --muted:     #8899b4;
      --border:    #172035;
      --card:      #0a1120;
      --white:     #ffffff;

      /* ── shadcn Slate design tokens ── */
      --sl-bg:           #020817;
      --sl-bg-card:      #0f172a;
      --sl-bg-popover:   #0f172a;
      --sl-fg:           #f8fafc;
      --sl-fg-muted:     #94a3b8;
      --sl-fg-subtle:    #475569;
      --sl-border:       rgba(148,163,184,0.12);
      --sl-border-input: rgba(148,163,184,0.2);
      --sl-ring:         rgba(59,130,246,0.5);
      --sl-primary:      #3b82f6;
      --sl-primary-fg:   #f8fafc;
      --sl-destructive:      #7f1d1d;
      --sl-destructive-fg:   #fca5a5;
      --sl-destructive-bg:   rgba(127,29,29,0.25);
      --sl-destructive-border: rgba(239,68,68,0.35);
      --sl-warning-bg:       rgba(120,53,15,0.25);
      --sl-warning-fg:       #fcd34d;
      --sl-warning-border:   rgba(245,158,11,0.35);
      --sl-success-bg:       rgba(5,46,22,0.35);
      --sl-success-fg:       #86efac;
      --sl-success-border:   rgba(34,197,94,0.35);
      --sl-radius:       8px;
      --sl-radius-sm:    6px;
      --sl-radius-lg:    12px;
      --sl-shadow-sm:    0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
      --sl-shadow:       0 4px 6px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.3);
      --sl-shadow-lg:    0 10px 40px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
      --sl-transition:   150ms cubic-bezier(0.4,0,0.2,1);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy);
      color: var(--text);
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ─────────────────────────────────────────
       UTILITY
    ───────────────────────────────────────── */
    .container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
    section { padding: 96px 0; }

    .label {
      display: inline-block;
      font-size: 10px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--blue-lt);
      margin-bottom: 14px;
    }

    h1 {
      font-size: clamp(36px, 5.5vw, 64px);
      font-weight: 900;
      line-height: 1.06;
      letter-spacing: -2px;
      color: var(--white);
    }

    h2 {
      font-size: clamp(28px, 3.8vw, 44px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1.2px;
      color: var(--white);
      margin-bottom: 16px;
    }

    h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }

    p.sub {
      font-size: 17px; color: var(--muted);
      max-width: 560px; line-height: 1.7;
      margin-bottom: 0;
    }

    /* ─────────────────────────────────────────
       SCROLL ANIMATIONS
    ───────────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal.d1 { transition-delay: 0.08s; }
    .reveal.d2 { transition-delay: 0.16s; }
    .reveal.d3 { transition-delay: 0.24s; }
    .reveal.d4 { transition-delay: 0.32s; }
    .reveal.d5 { transition-delay: 0.40s; }

    /* ─────────────────────────────────────────
       BUTTONS
    ───────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 700;
      padding: 14px 28px; border-radius: 8px;
      text-decoration: none; cursor: pointer; border: none;
      transition: all 0.18s ease;
    }
    .btn-blue {
      background: var(--blue); color: var(--white);
      box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    .btn-blue:hover {
      background: var(--blue-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(59,130,246,0.3);
    }
    .btn-outline {
      background: transparent; color: var(--text);
      border: 1px solid var(--border);
    }
    .btn-outline:hover { border-color: var(--blue-lt); color: var(--blue-lt); background: var(--blue-pale); }

    .btn-lg { font-size: 16px; padding: 16px 36px; }

    /* CTA microcopy */
    .cta-micro {
      font-size: 12px; color: var(--muted);
      margin-top: 10px; text-align: center;
    }

    /* ROI E&O callout anchor */
    .roi-callout {
      background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(220,38,38,0.03));
      border: 1px solid rgba(220,38,38,0.22);
      border-radius: 14px;
      padding: 28px 36px;
      margin: 32px 0 40px;
      text-align: center;
    }
    .roi-callout-num {
      font-size: clamp(52px, 7vw, 80px);
      font-weight: 900; color: var(--red);
      line-height: 1; letter-spacing: -3px;
    }
    .roi-callout-label {
      font-size: 15px; color: var(--muted); margin-top: 8px;
    }
    .roi-callout-sub {
      font-size: 12px; color: var(--red); margin-top: 6px; opacity: 0.75;
    }

    /* Analyzing pulse animation */
    @keyframes pulse-ring {
      0%   { box-shadow: 0 0 0 0 rgba(59,130,246,0.35); }
      70%  { box-shadow: 0 0 0 10px rgba(59,130,246,0); }
      100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
    }
    .drop-zone.analyzing {
      border-color: var(--blue-lt);
      animation: pulse-ring 1.2s ease-out infinite;
    }

    /* Static trust strip (replaces scrolling ticker) */
    .trust-strip {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--navy2);
      padding: 14px 0;
    }
    .trust-strip-inner {
      max-width: 1000px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 10px 28px;
    }
    .trust-strip-item {
      font-size: 12px; color: var(--muted);
      display: flex; align-items: center; gap: 7px;
      white-space: nowrap;
    }
    .trust-strip-item .dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--blue-lt); flex-shrink: 0;
    }

    /* Sample file trigger link */
    .sample-trigger { margin-top: 12px; text-align: center; }
    .sample-btn {
      background: none; border: none; cursor: pointer;
      color: var(--blue-lt); font-size: 13px; font-weight: 600;
      text-decoration: underline; padding: 4px 0;
      font-family: inherit;
    }
    .sample-btn:hover { color: var(--white); }
    .sample-label { font-size: 11px; color: var(--muted); margin-left: 4px; }

    /* Demo sample notice */
    .demo-sample-notice {
      font-size: 11px; color: var(--muted); text-align: right;
      margin-bottom: 8px; font-style: italic;
    }

    /* Risk level badge inline */
    .risk-badge {
      display: inline-block;
      font-size: 10px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: var(--red);
      background: rgba(220,38,38,0.12);
      border: 1px solid rgba(220,38,38,0.22);
      padding: 2px 8px; border-radius: 4px; margin-left: 8px;
      vertical-align: middle;
    }

    /* Post-result conversion hook */
    .post-result-hook {
      margin-top: 20px;
      background: linear-gradient(135deg, rgba(220,38,38,0.08), rgba(220,38,38,0.02));
      border: 1px solid rgba(220,38,38,0.2);
      border-radius: 10px; padding: 18px 20px;
    }
    .post-result-headline {
      font-size: 15px; font-weight: 800; color: var(--white);
      margin-bottom: 6px;
    }
    .post-result-sub {
      font-size: 12px; color: var(--muted); line-height: 1.6;
      margin-bottom: 14px;
    }
    .post-result-sub strong { color: var(--text); }
    .post-result-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
    .post-result-ctas .btn { font-size: 13px; padding: 10px 18px; }

    /* Hero secondary text link */
    .hero-cta-secondary {
      margin-top: 12px; font-size: 13px; text-align: center;
    }
    .hero-cta-secondary a { color: var(--muted); text-decoration: none; }
    .hero-cta-secondary a:hover { color: var(--blue-lt); }

    /* ─────────────────────────────────────────
       NAV
    ───────────────────────────────────────── */
    nav {
      position: sticky; top: 0; z-index: 200;
      background: rgba(7,14,29,0.95);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      height: 64px;
      display: flex; align-items: center;
    }
    .nav-inner {
      width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo { font-size: 18px; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: -0.5px; }
    .logo span { color: var(--blue-lt); }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.15s; }
    .nav-links a:hover { color: var(--white); }
    .nav-right { display: flex; align-items: center; gap: 12px; }
    .nav-cta {
      background: var(--blue); color: var(--white);
      padding: 8px 18px; border-radius: 6px;
      font-size: 13px; font-weight: 700;
      text-decoration: none; transition: background 0.15s;
    }
    .nav-cta:hover { background: var(--blue-lt); }
    .nav-login { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.15s; }
    .nav-login:hover { color: var(--white); }
    @media (max-width: 700px) { .nav-links { display: none; } }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    #hero {
      position: relative;
      padding: 120px 0 100px;
      text-align: center;
      overflow: hidden;
    }
    /* subtle grid */
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(59,130,246,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.035) 1px, transparent 1px);
      background-size: 52px 52px;
    }
    /* top glow */
    #hero::after {
      content: '';
      position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
      width: 900px; height: 500px;
      background: radial-gradient(ellipse at 50% 0%, rgba(29,78,216,0.16) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-inner { position: relative; z-index: 1; }

    .hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(29,78,216,0.1);
      border: 1px solid rgba(59,130,246,0.22);
      color: var(--blue-lt);
      font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
      padding: 6px 16px; border-radius: 100px;
      margin-bottom: 30px;
    }
    .hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: blink 2.2s infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

    h1 { margin-bottom: 24px; }
    h1 .red { color: #f87171; }

    .hero-sub {
      font-size: clamp(16px, 2vw, 19px);
      color: var(--muted); line-height: 1.7;
      max-width: 580px; margin: 0 auto 40px;
    }

    .hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    .hero-proof {
      margin-top: 64px;
      display: inline-flex; flex-wrap: wrap; justify-content: center;
      border: 1px solid var(--border); border-radius: 12px;
      overflow: hidden;
    }
    .proof-cell {
      padding: 22px 36px; text-align: center;
      border-right: 1px solid var(--border);
    }
    .proof-cell:last-child { border-right: none; }
    .proof-num { font-size: 34px; font-weight: 900; color: var(--white); letter-spacing: -1.5px; line-height: 1; }
    .proof-num em { color: var(--blue-lt); font-style: normal; }
    .proof-label { font-size: 11px; color: var(--muted); margin-top: 6px; max-width: 110px; margin-left: auto; margin-right: auto; }
    @media (max-width: 640px) {
      .hero-proof { flex-direction: column; }
      .proof-cell { border-right: none; border-bottom: 1px solid var(--border); }
      .proof-cell:last-child { border-bottom: none; }
    }

    /* ─────────────────────────────────────────
       TICKER
    ───────────────────────────────────────── */
    .ticker-wrap {
      background: var(--navy2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      overflow: hidden;
    }
    .ticker-track {
      display: flex; gap: 52px; align-items: center;
      animation: scroll-left 30s linear infinite;
      width: max-content;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .ticker-item { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
    .ticker-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-lt); flex-shrink: 0; }

    /* ─────────────────────────────────────────
       WHY THIS MATTERS (ROI)
    ───────────────────────────────────────── */
    #roi { background: var(--navy2); }

    .roi-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 52px;
    }
    @media (max-width: 680px) { .roi-split { grid-template-columns: 1fr; } }

    .roi-card {
      border-radius: 14px;
      padding: 32px;
    }
    .roi-card.bad {
      background: var(--red-pale);
      border: 1px solid rgba(220,38,38,0.18);
    }
    .roi-card.good {
      background: rgba(22,163,74,0.06);
      border: 1px solid rgba(22,163,74,0.18);
    }
    .roi-card .card-label {
      font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .roi-card.bad  .card-label { color: #f87171; }
    .roi-card.good .card-label { color: #4ade80; }

    .roi-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .roi-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text); line-height: 1.5; }
    .roi-list li .icon { flex-shrink: 0; font-size: 15px; margin-top: 1px; }

    .roi-stat-row {
      display: flex; flex-wrap: wrap; gap: 16px;
      margin-top: 40px; justify-content: center;
    }
    .roi-stat {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 20px 28px;
      text-align: center;
      min-width: 160px;
    }
    .roi-stat .n { font-size: 30px; font-weight: 900; color: var(--white); letter-spacing: -1px; }
    .roi-stat .n span { color: var(--blue-lt); }
    .roi-stat .l { font-size: 11px; color: var(--muted); margin-top: 4px; }

    /* ─────────────────────────────────────────
       HOW IT WORKS
    ───────────────────────────────────────── */
    #how { background: var(--navy); }

    .steps-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
      position: relative;
    }
    @media (max-width: 680px) { .steps-row { grid-template-columns: 1fr; } }

    /* connecting line between steps */
    .steps-row::before {
      content: '';
      position: absolute;
      top: 28px; left: calc(16.666% + 16px); right: calc(16.666% + 16px);
      height: 1px;
      background: linear-gradient(90deg, var(--border), var(--blue-lt), var(--border));
      z-index: 0;
    }
    @media (max-width: 680px) { .steps-row::before { display: none; } }

    .step {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 32px 24px;
      text-align: center;
      position: relative; z-index: 1;
      transition: border-color 0.2s, transform 0.2s;
    }
    .step:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-4px); }

    .step-icon {
      width: 52px; height: 52px; border-radius: 14px;
      margin: 0 auto 20px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
    }
    .step:nth-child(1) .step-icon { background: rgba(29,78,216,0.15); }
    .step:nth-child(2) .step-icon { background: rgba(217,119,6,0.12); }
    .step:nth-child(3) .step-icon { background: rgba(22,163,74,0.12); }

    .step-num {
      font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 10px;
    }
    .step h3 { font-size: 16px; margin-bottom: 10px; text-align: center; }
    .step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

    /* ─────────────────────────────────────────
       DEMO / UPLOAD MOCKUP
    ───────────────────────────────────────── */
    #demo { background: var(--navy2); }

    .demo-wrap {
      margin-top: 52px;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }
    @media (max-width: 700px) { .demo-wrap { grid-template-columns: 1fr; } }

    /* LEFT: upload zone */
    .demo-upload {
      background: var(--card);
      border-right: 1px solid var(--border);
      padding: 36px 32px;
      display: flex; flex-direction: column;
    }
    .demo-upload .upload-label {
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--muted); margin-bottom: 20px;
    }
    .drop-zone {
      flex: 1;
      border: 2px dashed var(--border);
      border-radius: 12px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 36px 24px;
      cursor: pointer; text-align: center;
      transition: border-color 0.2s, background 0.2s;
      position: relative; overflow: hidden;
    }
    .drop-zone:hover, .drop-zone.active {
      border-color: var(--blue-lt);
      background: rgba(59,130,246,0.04);
    }
    .drop-icon { font-size: 36px; margin-bottom: 14px; }
    .drop-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
    .drop-sub { font-size: 12px; color: var(--muted); line-height: 1.6; }
    .drop-note {
      margin-top: 14px;
      font-size: 11px; color: var(--blue-lt);
      background: rgba(59,130,246,0.08);
      border: 1px solid rgba(59,130,246,0.2);
      padding: 6px 12px; border-radius: 6px;
      display: inline-block;
    }
    .carrier-list { margin-top: 24px; font-size: 11px; color: var(--muted); text-align: center; line-height: 1.8; }
    .carrier-list strong { color: var(--text); }

    /* scan bar animation */
    .scan-bar {
      position: absolute; inset: 0; pointer-events: none;
      display: none;
    }
    .scan-bar.running { display: block; }
    .scan-line {
      position: absolute; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--blue-lt), transparent);
      animation: scanDown 1.6s ease-in-out infinite;
    }
    @keyframes scanDown {
      0%   { top: 0%; opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 1; }
      100% { top: 100%; opacity: 0; }
    }

    /* RIGHT: results panel */
    .demo-result {
      background: var(--navy);
      padding: 36px 32px;
    }
    .result-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 22px;
    }
    .result-title { font-size: 13px; font-weight: 700; color: var(--white); }
    .result-meta { font-size: 11px; color: var(--muted); }
    .result-badge {
      font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 20px;
      background: rgba(220,38,38,0.12); color: #f87171; border: 1px solid rgba(220,38,38,0.2);
    }
    .result-badge.ok { background: rgba(22,163,74,0.1); color: #4ade80; border-color: rgba(22,163,74,0.2); }

    /* ─────────────────────────────────────────
       SHADCN-STYLE CARD — gap rows
    ───────────────────────────────────────── */
    .gap-list { display: flex; flex-direction: column; gap: 6px; }
    .gap-row {
      display: flex; align-items: flex-start; justify-content: space-between;
      padding: 12px 16px;
      background: var(--sl-bg-card);
      border: 1px solid var(--sl-border);
      border-radius: var(--sl-radius);
      box-shadow: var(--sl-shadow-sm);
      transition: border-color var(--sl-transition), box-shadow var(--sl-transition);
    }
    .gap-row:hover {
      border-color: var(--sl-border-input);
      box-shadow: var(--sl-shadow);
    }
    /* Status-tinted left border — gives immediate severity read */
    .gap-row.gap-bad  { border-left: 3px solid #ef4444; }
    .gap-row.gap-warn { border-left: 3px solid #f59e0b; }
    .gap-row.gap-good { border-left: 3px solid #22c55e; }

    .gap-row .name { font-size: 13px; font-weight: 500; color: var(--sl-fg); }
    .gap-row .val  { font-size: 13px; font-weight: 600; }
    .gap-row .val.bad  { color: var(--sl-destructive-fg); }
    .gap-row .val.warn { color: var(--sl-warning-fg); }
    .gap-row .val.good { color: var(--sl-success-fg); }

    /* shadcn Badge style */
    .gap-row .tag {
      font-size: 10px; font-weight: 700; letter-spacing: 0.6px;
      padding: 2px 8px; border-radius: 9999px;
      border: 1px solid transparent;
      white-space: nowrap;
    }
    .tag.bad  {
      background: var(--sl-destructive-bg);
      color: var(--sl-destructive-fg);
      border-color: var(--sl-destructive-border);
    }
    .tag.warn {
      background: var(--sl-warning-bg);
      color: var(--sl-warning-fg);
      border-color: var(--sl-warning-border);
    }
    .tag.good {
      background: var(--sl-success-bg);
      color: var(--sl-success-fg);
      border-color: var(--sl-success-border);
    }

    .result-divider { height: 1px; background: var(--border); margin: 14px 0; }

    .result-total {
      background: rgba(220,38,38,0.07);
      border: 1px solid rgba(220,38,38,0.18);
      border-radius: 10px;
      padding: 16px 18px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .result-total .tot-label { font-size: 13px; color: var(--muted); }
    .result-total .tot-num { font-size: 24px; font-weight: 900; color: #f87171; letter-spacing: -1px; }

    .result-action {
      margin-top: 16px;
      display: flex; gap: 10px; flex-wrap: wrap;
    }
    .result-action a {
      flex: 1; text-align: center;
      padding: 11px 16px; border-radius: 8px;
      font-size: 13px; font-weight: 700; text-decoration: none;
      transition: all 0.15s;
    }
    .result-action a.primary { background: var(--blue); color: var(--white); }
    .result-action a.primary:hover { background: var(--blue-lt); }
    .result-action a.sec { background: transparent; color: var(--muted); border: 1px solid var(--border); }
    .result-action a.sec:hover { color: var(--text); border-color: var(--muted); }

    /* ─────────────────────────────────────────
       WHO IT'S FOR
    ───────────────────────────────────────── */
    #who { background: var(--navy); }

    .icp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 16px;
      margin-top: 48px;
    }

    .icp-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 26px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .icp-card:hover { border-color: rgba(59,130,246,0.35); transform: translateY(-3px); }

    .icp-icon { font-size: 28px; margin-bottom: 16px; }
    .icp-card h3 { font-size: 16px; margin-bottom: 12px; }
    .icp-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .icp-card ul li {
      font-size: 13px; color: var(--muted);
      display: flex; gap: 10px; align-items: flex-start; line-height: 1.45;
    }
    .icp-card ul li::before { content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0; }

    .icp-callout {
      margin-top: 40px;
      background: var(--blue-pale);
      border: 1px solid rgba(59,130,246,0.22);
      border-radius: 14px;
      padding: 28px 32px;
    }
    .icp-callout p {
      font-size: 15px; color: var(--text); line-height: 1.7; margin: 0;
    }
    .icp-callout strong { color: var(--white); }

    /* ─────────────────────────────────────────
       E&O PROTECTION
    ───────────────────────────────────────── */
    #eo { background: var(--navy2); }

    .eo-wrap {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-top: 56px;
    }
    @media (max-width: 720px) { .eo-wrap { grid-template-columns: 1fr; } }

    .eo-left {}
    .eo-left p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
    .eo-left p strong { color: var(--text); }

    .eo-stat {
      background: var(--red-pale);
      border: 1px solid rgba(220,38,38,0.18);
      border-radius: 12px;
      padding: 22px 26px;
      margin-bottom: 16px;
    }
    .eo-stat .eo-n { font-size: 36px; font-weight: 900; color: #f87171; letter-spacing: -1.5px; line-height: 1; }
    .eo-stat .eo-l { font-size: 13px; color: var(--muted); margin-top: 4px; }

    .eo-right {}
    .eo-feature {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }
    .eo-feature:last-child { border-bottom: none; }
    .eo-feature-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(29,78,216,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 17px; flex-shrink: 0;
    }
    .eo-feature h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .eo-feature p  { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

    /* ─────────────────────────────────────────
       PRICING
    ───────────────────────────────────────── */
    #pricing { background: var(--navy); }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }
    @media (max-width: 820px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; } }

    .price-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 34px 30px;
      display: flex; flex-direction: column;
      transition: transform 0.2s;
    }
    .price-card:hover { transform: translateY(-4px); }
    .price-card.pop {
      border-color: var(--blue);
      box-shadow: 0 0 0 1px var(--blue), 0 20px 60px rgba(29,78,216,0.12);
      position: relative;
    }
    .pop-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--blue); color: var(--white);
      font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
      padding: 5px 18px; border-radius: 100px; white-space: nowrap;
    }

    .price-tier { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 16px; }
    .price-amount { font-size: 48px; font-weight: 900; color: var(--white); letter-spacing: -2.5px; line-height: 1; }
    .price-amount .per { font-size: 16px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
    .price-desc { font-size: 13px; color: var(--muted); margin: 14px 0 24px; line-height: 1.65; }

    .price-feats { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
    .price-feats li { font-size: 13px; color: var(--text); display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
    .price-feats li .ck { color: #4ade80; font-weight: 700; flex-shrink: 0; }
    .price-feats li.off { color: var(--muted); }
    .price-feats li.off .ck { color: var(--muted); }

    .price-btn {
      display: block; width: 100%;
      padding: 14px; border-radius: 8px;
      text-align: center; font-size: 14px; font-weight: 700;
      text-decoration: none; transition: all 0.15s;
    }
    .price-btn.blue { background: var(--blue); color: var(--white); }
    .price-btn.blue:hover { background: var(--blue-lt); box-shadow: 0 6px 20px rgba(59,130,246,0.3); }
    .price-btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
    .price-btn.ghost:hover { border-color: var(--blue-lt); color: var(--blue-lt); }

    .price-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--muted); }

    /* ─────────────────────────────────────────
       FAQ
    ───────────────────────────────────────── */
    #faq { background: var(--navy2); }

    .faq-list {
      margin-top: 48px;
      display: flex; flex-direction: column; gap: 10px;
      max-width: 740px;
    }
    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item:hover { border-color: rgba(59,130,246,0.25); }
    .faq-item.open { border-color: rgba(59,130,246,0.3); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 22px; cursor: pointer;
      font-size: 15px; font-weight: 600; color: var(--white);
      user-select: none; gap: 16px;
    }
    .faq-q .chevron { flex-shrink: 0; font-size: 12px; color: var(--muted); transition: transform 0.25s; }
    .faq-item.open .faq-q .chevron { transform: rotate(180deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      font-size: 14px; color: var(--muted); line-height: 1.75;
      padding: 0 22px;
      transition: max-height 0.35s ease, padding 0.2s ease;
    }
    .faq-item.open .faq-a { max-height: 260px; padding: 0 22px 22px; }

    /* ─────────────────────────────────────────
       TRUST BAR
    ───────────────────────────────────────── */
    #trust { background: var(--navy); border-top: 1px solid var(--border); padding: 48px 0; }
    .trust-grid {
      display: flex; flex-wrap: wrap; gap: 12px;
      justify-content: center;
    }
    .trust-chip {
      display: flex; align-items: center; gap: 8px;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 8px; padding: 10px 18px;
      font-size: 13px; color: var(--text); font-weight: 500;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
      opacity: 0; transform: translateY(14px);
    }
    .trust-chip.chip-in {
      opacity: 1; transform: translateY(0);
      transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s, box-shadow 0.2s;
    }
    .trust-chip:hover {
      border-color: rgba(59,130,246,0.4);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(59,130,246,0.1);
    }
    .trust-chip .ic { font-size: 16px; }

    /* ─────────────────────────────────────────
       QUOTE / TESTIMONIAL
    ───────────────────────────────────────── */
    .quote-block {
      background: rgba(59,130,246,0.06);
      border: 1px solid rgba(59,130,246,0.18);
      border-left: 3px solid var(--blue-lt);
      border-radius: 0 12px 12px 0;
      padding: 22px 28px;
      margin: 40px 0 0;
      max-width: 680px;
    }
    .quote-block p {
      font-size: 15px; color: var(--text);
      font-style: italic; line-height: 1.7; margin-bottom: 12px;
    }
    .quote-block .q-attr {
      font-size: 12px; color: var(--muted); font-style: normal;
      display: flex; align-items: center; gap: 8px;
    }
    .quote-block .q-attr::before {
      content: '';
      display: inline-block; width: 24px; height: 2px;
      background: var(--muted);
    }

    /* ─────────────────────────────────────────
       ANIMATED STEP LINE
    ───────────────────────────────────────── */
    .steps-row::before {
      transform-origin: left center;
      transform: scaleX(0);
      transition: transform 0.9s ease 0.2s;
    }
    .steps-row.line-in::before { transform: scaleX(1); }

    /* ─────────────────────────────────────────
       CONFIDENCE SCORE IN DEMO
    ───────────────────────────────────────── */
    .confidence-bar-wrap {
      margin-top: 14px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 16px;
    }
    .confidence-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 10px;
    }
    .confidence-header .ch-label { font-size: 12px; color: var(--muted); font-weight: 600; }
    .confidence-header .ch-score { font-size: 18px; font-weight: 900; color: #f87171; letter-spacing: -0.5px; }
    .conf-bar-track {
      width: 100%; height: 8px; background: var(--border); border-radius: 100px; overflow: hidden;
    }
    .conf-bar-fill {
      height: 100%; width: 0%; border-radius: 100px;
      background: linear-gradient(90deg, #4ade80, #fbbf24, #f87171);
      transition: width 1.2s ease 0.4s;
    }
    .conf-bar-fill.filled { width: 34%; }
    .conf-labels {
      display: flex; justify-content: space-between;
      margin-top: 6px; font-size: 10px; color: var(--muted);
    }

    /* ─────────────────────────────────────────
       NOT FOR YOU CARD
    ───────────────────────────────────────── */
    .icp-card.notfor {
      background: rgba(255,255,255,0.02);
      border-style: dashed;
      border-color: var(--border);
    }
    .icp-card.notfor:hover { border-color: rgba(255,255,255,0.15); transform: none; }
    .icp-card.notfor h3 { color: var(--muted); }
    .icp-card.notfor ul li { color: var(--muted); opacity: 0.75; }
    .icp-card.notfor ul li::before { content: '✗'; color: #f87171; }

    /* ─────────────────────────────────────────
       E&O INLINE CTA
    ───────────────────────────────────────── */
    .eo-inline-cta {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 28px;
      color: var(--blue-lt); font-size: 14px; font-weight: 700;
      text-decoration: none; border-bottom: 1px solid rgba(59,130,246,0.35);
      padding-bottom: 2px;
      transition: color 0.15s, border-color 0.15s;
    }
    .eo-inline-cta:hover { color: #fff; border-color: #fff; }
    .eo-inline-cta .arr { transition: transform 0.2s; }
    .eo-inline-cta:hover .arr { transform: translateX(4px); }

    /* ─────────────────────────────────────────
       FAQ VISUAL MICROCOPY
    ───────────────────────────────────────── */
    .faq-tag-row {
      display: flex; flex-wrap: wrap; gap: 7px;
      margin-top: 12px;
    }
    .faq-tag {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11px; font-weight: 600;
      padding: 4px 10px; border-radius: 20px;
      background: rgba(59,130,246,0.08);
      border: 1px solid rgba(59,130,246,0.18);
      color: var(--blue-lt);
    }

    /* ─────────────────────────────────────────
       FINAL CTA
    ───────────────────────────────────────── */
    #cta {
      background: linear-gradient(160deg, #0c1e3a 0%, #07101e 100%);
      border-top: 1px solid var(--border);
      text-align: center;
      position: relative; overflow: hidden;
    }
    #cta::after {
      content: '';
      position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
      width: 700px; height: 300px;
      background: radial-gradient(ellipse, rgba(29,78,216,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    #cta .container { position: relative; z-index: 1; }
    #cta h2 { margin-bottom: 18px; }
    #cta .sub { max-width: 460px; margin: 0 auto 44px; }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .cta-trust-row {
      margin-top: 28px;
      display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    }
    .cta-trust-row span { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
    .cta-trust-row span::before { content: '✓'; color: #4ade80; font-weight: 700; }

    /* ─────────────────────────────────────────
       UTILITY FLEX (replaces inline style attrs)
    ───────────────────────────────────────── */
    .flex-row-gap { display: flex; gap: 8px; align-items: center; }

    /* ─────────────────────────────────────────
       PRIVACY / COOKIE BANNER
    ───────────────────────────────────────── */
    #privacy-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
      background: var(--navy2);
      border-top: 1px solid var(--border);
      padding: 14px 24px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
      font-size: 12px; color: var(--muted);
      transform: translateY(100%);
      transition: transform 0.35s ease;
    }
    #privacy-banner.show { transform: translateY(0); }
    #privacy-banner a { color: var(--blue-lt); text-decoration: none; }
    #privacy-banner a:hover { text-decoration: underline; }
    .privacy-btns { display: flex; gap: 8px; flex-shrink: 0; }
    .privacy-btn {
      padding: 7px 16px; border-radius: 6px;
      font-size: 12px; font-weight: 600; cursor: pointer; border: none;
    }
    .privacy-btn.accept { background: var(--blue); color: var(--white); }
    .privacy-btn.accept:hover { background: var(--blue-lt); }
    .privacy-btn.decline { background: transparent; color: var(--muted); border: 1px solid var(--border); }
    .privacy-btn.decline:hover { color: var(--text); }

    /* ─────────────────────────────────────────
       FILE UPLOAD ERROR MESSAGE
    ───────────────────────────────────────── */
    /* shadcn Alert — destructive variant */
    .upload-error {
      margin-top: 10px;
      font-size: 12px; color: var(--sl-destructive-fg);
      background: var(--sl-destructive-bg);
      border: 1px solid var(--sl-destructive-border);
      border-radius: var(--sl-radius-sm);
      padding: 9px 13px;
      display: none;
      animation: alert-in var(--sl-transition) ease-out;
    }
    .upload-error.show { display: block; }
    @keyframes alert-in {
      from { opacity: 0; transform: translateY(-4px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─────────────────────────────────────────
       DATA HANDLING NOTE
    ───────────────────────────────────────── */
    .data-handling-note {
      margin-top: 14px;
      background: rgba(22,163,74,0.06);
      border: 1px solid rgba(22,163,74,0.2);
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 11px; color: var(--muted);
      line-height: 1.6;
    }
    .data-handling-note strong { color: var(--green); }

    /* Agent name / firm fields for PDF personalization */
    .agent-fields {
      margin-top: 20px;
      padding: 16px 18px;
      background: var(--navy3);
      border: 1px solid var(--border);
      border-radius: 10px;
    }
    .agent-fields-label {
      font-size: 10px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--muted); margin-bottom: 10px;
    }
    .agent-fields-row {
      display: flex; gap: 10px; flex-wrap: wrap;
    }
    .agent-input {
      flex: 1; min-width: 140px;
      background: var(--navy2); color: var(--text);
      border: 1px solid var(--border); border-radius: 7px;
      padding: 9px 12px; font-size: 13px; font-family: inherit;
      outline: none; transition: border-color 0.15s;
    }
    .agent-input::placeholder { color: var(--muted); }
    .agent-input:focus { border-color: var(--blue-lt); }

    /* Demo accuracy disclaimer */
    .demo-accuracy-note {
      margin-top: 12px;
      font-size: 11px; color: var(--muted);
      line-height: 1.6; text-align: center;
      padding: 0 4px;
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    footer {
      background: var(--navy2);
      border-top: 1px solid var(--border);
      padding: 56px 24px 28px;
    }
    .footer-grid {
      max-width: 1000px; margin: 0 auto 40px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
    }
    @media (max-width: 700px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    }
    .footer-tagline {
      font-size: 12px; color: var(--muted);
      margin: 10px 0 6px; line-height: 1.6;
    }
    .footer-maker {
      font-size: 11px; color: var(--muted); opacity: 0.7;
    }
    .footer-col-head {
      font-size: 10px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--text); margin-bottom: 14px;
    }
    .footer-col { display: flex; flex-direction: column; gap: 8px; }
    footer a { color: var(--muted); text-decoration: none; font-size: 13px; }
    footer a:hover { color: var(--text); }
    .footer-legal {
      max-width: 1000px; margin: 0 auto;
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
      font-size: 11px; color: var(--muted);
    }
    .footer-disclaimer {
      font-size: 11px; color: var(--muted); opacity: 0.65;
      max-width: 600px; line-height: 1.6;
    }

    /* ─────────────────────────────────────────
       LEAD CAPTURE FORM (real scans only)
    ───────────────────────────────────────── */
    .lead-capture-wrap {
      margin-top: 20px;
      border-top: 1px solid var(--border);
      padding-top: 20px;
    }
    .lead-capture-inner {
      background: var(--navy3);
      border: 1px solid rgba(59,130,246,0.2);
      border-radius: 12px;
      padding: 22px 22px 18px;
    }
    .lead-capture-title {
      font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px;
    }
    .lead-capture-sub {
      font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 16px;
    }
    .lead-fields-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    }
    .lead-field { margin-bottom: 10px; }
    .lead-field label {
      display: block; font-size: 10px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px;
      color: var(--muted); margin-bottom: 5px;
    }
    .lf-req { color: var(--red); }
    .lf-opt { font-weight: 400; text-transform: none; letter-spacing: 0; }
    .lead-field input, .lead-field textarea {
      width: 100%;
      background: var(--navy2);
      border: 1px solid var(--border);
      border-radius: 7px;
      padding: 9px 11px;
      color: var(--text);
      font-size: 13px;
      font-family: inherit;
      transition: border-color 0.15s;
    }
    .lead-field input:focus, .lead-field textarea:focus {
      outline: none; border-color: var(--blue-lt); background: var(--navy3);
    }
    .lead-field input:disabled, .lead-field textarea:disabled { opacity: 0.5; cursor: not-allowed; }
    .lead-field textarea { resize: vertical; line-height: 1.5; }
    .lead-privacy-note {
      font-size: 10px; color: var(--muted); line-height: 1.6; margin: 10px 0 14px;
    }
    .lead-submit-btn { width: 100%; font-size: 14px; }
    .lead-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
    .lead-status {
      margin-top: 10px; font-size: 12px; text-align: center; min-height: 18px;
    }
    .lead-status.success { color: var(--green); font-weight: 600; }
    .lead-status.error   { color: var(--red); }
    .lead-success-panel  { text-align: center; padding: 12px 0; }
    .lead-success-icon   { font-size: 28px; margin-bottom: 8px; }
    .lead-success-title  { font-size: 14px; font-weight: 700; color: var(--green); margin-bottom: 5px; }
    .lead-success-sub    { font-size: 12px; color: var(--muted); line-height: 1.6; }
    @media (max-width: 480px) { .lead-fields-row { grid-template-columns: 1fr; } }

    /* ─────────────────────────────────────────
       RISK SUMMARY BANNER
    ───────────────────────────────────────── */
    .risk-summary-banner {
      border-radius: 10px;
      padding: 14px 18px;
      margin-bottom: 14px;
    }
    .risk-banner-high {
      background: rgba(220,38,38,0.08);
      border: 1px solid rgba(220,38,38,0.25);
    }
    .risk-banner-mod {
      background: rgba(217,119,6,0.08);
      border: 1px solid rgba(217,119,6,0.25);
    }
    .rsb-headline {
      font-size: 13px; font-weight: 700;
      color: var(--white); margin-bottom: 5px;
    }
    .risk-banner-high .rsb-headline { color: #fca5a5; }
    .risk-banner-mod  .rsb-headline { color: #fcd34d; }
    .rsb-sub {
      font-size: 12px; color: var(--muted); line-height: 1.55;
    }

    /* ─────────────────────────────────────────
       INSTANT UNLOCK GATE
    ───────────────────────────────────────── */
    .instant-unlock-gate {
      background: var(--navy2);
      border: 1px solid rgba(59,130,246,0.35);
      border-radius: 14px;
      padding: 28px 28px 24px;
      margin: 16px 0;
      text-align: center;
      box-shadow: 0 8px 40px rgba(29,78,216,0.15);
      position: relative;
    }
    .iug-badge {
      display: inline-block;
      background: rgba(220,38,38,0.12);
      border: 1px solid rgba(220,38,38,0.3);
      color: #fca5a5;
      font-size: 11px; font-weight: 700;
      padding: 3px 12px; border-radius: 20px;
      margin-bottom: 14px; letter-spacing: 0.04em;
    }
    .iug-lock { font-size: 32px; margin-bottom: 10px; }
    .iug-title {
      font-size: 18px; font-weight: 800; color: var(--white);
      margin-bottom: 8px; line-height: 1.2;
    }
    .iug-sub {
      font-size: 13px; color: var(--muted); line-height: 1.65;
      max-width: 380px; margin: 0 auto 18px;
    }
    .iug-value-row {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px;
      margin-bottom: 14px;
    }
    .iug-value-row span {
      font-size: 12px; color: #4ade80; font-weight: 600;
    }
    .iug-anchor {
      font-size: 11px; color: var(--muted); margin-bottom: 20px;
      font-style: italic; line-height: 1.5;
    }
    .iug-btn {
      display: block; width: 100%;
      padding: 15px;
      background: var(--blue); color: var(--white);
      border-radius: 8px; font-size: 15px; font-weight: 800;
      border: none; cursor: pointer; font-family: inherit;
      transition: background 0.15s, transform 0.15s;
      margin-bottom: 14px;
      letter-spacing: 0.01em;
    }
    .iug-btn:hover { background: var(--blue-lt); transform: translateY(-1px); }
    .iug-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    .iug-dismiss-wrap { margin-top: 4px; }
    .iug-dismiss {
      font-size: 12px; color: var(--muted); cursor: pointer;
      text-decoration: underline; text-underline-offset: 2px;
    }
    .iug-dismiss:hover { color: var(--text); }

    /* ─────────────────────────────────────────
       GAP ROW — WHY MICROCOPY
    ───────────────────────────────────────── */
    .gap-row-top {
      display: flex; align-items: center; justify-content: space-between; width: 100%;
    }
    /* shadcn Alert — inline "why this matters" */
    .gap-why {
      font-size: 11.5px; color: var(--sl-fg-muted);
      line-height: 1.6; margin-top: 8px;
      padding: 8px 10px;
      background: rgba(15,23,42,0.7);
      border-radius: var(--sl-radius-sm);
      border: 1px solid var(--sl-border);
      border-left: 2px solid var(--sl-fg-subtle);
    }
    .gap-row.has-why { flex-direction: column; align-items: stretch; padding-bottom: 12px; }

    /* ─────────────────────────────────────────
       GAP SECTION HEADERS — Critical / Recommended / Info
    ───────────────────────────────────────── */
    .gap-section { display: flex; flex-direction: column; gap: 6px; }
    .gap-section + .gap-section { margin-top: 14px; }
    .gap-section-header {
      display: flex; align-items: center; gap: 8px;
      font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0 2px; margin-bottom: 2px;
    }
    .gap-section-header::after {
      content: ''; flex: 1; height: 1px; background: var(--sl-border);
    }
    .gap-section-header.section-critical { color: var(--sl-destructive-fg); }
    .gap-section-header.section-warn     { color: var(--sl-warning-fg); }
    .gap-section-header.section-good     { color: var(--sl-success-fg); }

    /* ─────────────────────────────────────────
       RISK-COST FOOTER — "What this could cost you"
    ───────────────────────────────────────── */
    .risk-cost-footer {
      margin-top: 16px;
      background: var(--sl-destructive-bg);
      border: 1px solid var(--sl-destructive-border);
      border-radius: var(--sl-radius);
      padding: 16px 18px;
    }
    .rcf-eyebrow {
      font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--sl-destructive-fg);
      margin-bottom: 6px;
    }
    .rcf-headline {
      font-size: 14px; font-weight: 700; color: var(--sl-fg);
      margin-bottom: 6px;
    }
    .rcf-body {
      font-size: 12.5px; color: var(--sl-fg-muted); line-height: 1.55;
    }
    .rcf-stats {
      display: flex; gap: 24px; margin: 12px 0; flex-wrap: wrap;
    }
    .rcf-stat { display: flex; flex-direction: column; }
    .rcf-stat-num {
      font-size: 18px; font-weight: 900; color: var(--sl-destructive-fg);
      letter-spacing: -0.5px;
    }
    .rcf-stat-desc { font-size: 11px; color: var(--sl-fg-muted); }

    /* ─────────────────────────────────────────
       BEFORE / AFTER SECTION
    ───────────────────────────────────────── */
    #before-after { background: var(--navy); }

    .ba-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 48px;
    }
    @media (max-width: 680px) { .ba-grid { grid-template-columns: 1fr; } }

    .ba-card {
      border-radius: 14px;
      padding: 28px 28px 32px;
    }
    .ba-card.ba-bad {
      background: rgba(220,38,38,0.05);
      border: 1px solid rgba(220,38,38,0.2);
    }
    .ba-card.ba-good {
      background: rgba(22,163,74,0.05);
      border: 1px solid rgba(22,163,74,0.2);
    }
    .ba-card-label {
      font-size: 12px; font-weight: 800;
      letter-spacing: 0.05em; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .ba-bad .ba-card-label  { color: #f87171; }
    .ba-good .ba-card-label { color: #4ade80; }

    .ba-list {
      list-style: none;
      display: flex; flex-direction: column; gap: 13px;
    }
    .ba-list li {
      font-size: 14px; color: var(--text);
      display: flex; align-items: flex-start; gap: 10px;
      line-height: 1.5;
    }
    .ba-x  { color: #f87171; font-weight: 700; flex-shrink: 0; }
    .ba-ck { color: #4ade80; font-weight: 700; flex-shrink: 0; }

    /* ─────────────────────────────────────────
       SCAN PROGRESS PANEL
    ───────────────────────────────────────── */
    .scan-progress-panel {
      background: var(--card);
      border: 1px solid var(--blue);
      border-radius: 12px;
      padding: 28px 28px 24px;
      margin-bottom: 24px;
      box-shadow: 0 0 32px rgba(29,78,216,0.12);
      transition: opacity 0.4s;
    }
    .spp-title {
      font-size: 14px; font-weight: 700; color: var(--white);
      text-align: center; margin-bottom: 24px;
    }
    .spp-steps {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-bottom: 20px;
    }
    .spp-steps::before {
      content: '';
      position: absolute;
      top: 14px; left: 14px; right: 14px;
      height: 1px; background: var(--border);
      z-index: 0;
    }
    .prog-step {
      display: flex; flex-direction: column; align-items: center;
      gap: 8px; flex: 1;
      font-size: 11px; color: var(--muted);
      text-align: center; position: relative; z-index: 1;
      transition: color 0.3s;
    }
    .prog-icon {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--navy);
      border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px;
      transition: all 0.3s;
      position: relative;
    }
    .prog-pending .prog-icon { border-color: var(--border); }
    .prog-active  .prog-icon {
      border-color: var(--blue-lt);
      background: rgba(59,130,246,0.12);
      box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
    }
    .prog-active .prog-spin {
      display: block;
      width: 10px; height: 10px;
      border: 2px solid var(--blue-lt);
      border-top-color: transparent;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
    }
    .prog-done .prog-icon {
      border-color: #22c55e;
      background: rgba(34,197,94,0.1);
    }
    .prog-done .prog-icon::after {
      content: '✓';
      color: #22c55e;
      font-size: 13px;
      font-weight: 800;
    }
    .prog-active { color: var(--white); }
    .prog-done   { color: #22c55e; }
    @keyframes spin { to { transform: rotate(360deg); } }

    .spp-bar-wrap {
      height: 3px; background: var(--border);
      border-radius: 2px; overflow: hidden;
    }
    .spp-bar-fill {
      height: 100%; width: 0%;
      background: linear-gradient(90deg, var(--blue), var(--blue-lt));
      border-radius: 2px;
      transition: width 0.6s ease;
    }

    /* ─────────────────────────────────────────
       UPSELL MODAL — DARK THEME
    ───────────────────────────────────────── */
    .upsell-modal-box {
      background: var(--navy2);
      border: 1px solid rgba(59,130,246,0.3);
      border-radius: 16px;
      padding: 40px 36px;
      max-width: 440px;
      width: 90%;
      text-align: center;
      box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(59,130,246,0.1);
      position: relative;
    }
    .upsell-lock { font-size: 40px; margin-bottom: 16px; }

    /* Risk framing header */
    .upsell-risk-header {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      margin-bottom: 14px;
    }
    .upsell-risk-icon {
      font-size: 15px; color: var(--sl-warning-fg);
    }
    .upsell-risk-label {
      font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--sl-warning-fg);
    }

    .upsell-title {
      font-size: 20px; font-weight: 900;
      color: var(--white); margin-bottom: 10px;
      line-height: 1.2;
    }
    .upsell-sub {
      font-size: 13px; color: var(--muted);
      line-height: 1.65; margin-bottom: 20px;
    }

    /* Proof stat row */
    .upsell-stat-row {
      display: flex; align-items: center; gap: 0;
      background: var(--sl-destructive-bg);
      border: 1px solid var(--sl-destructive-border);
      border-radius: var(--sl-radius);
      padding: 14px 16px;
      margin-bottom: 20px;
    }
    .upsell-stat { flex: 1; text-align: center; }
    .upsell-stat-num {
      font-size: 26px; font-weight: 900;
      color: var(--sl-destructive-fg); line-height: 1;
      margin-bottom: 4px;
    }
    .upsell-stat-desc {
      font-size: 10px; color: var(--muted);
      line-height: 1.4;
    }
    .upsell-stat-divider {
      width: 1px; height: 40px; background: var(--sl-destructive-border);
      flex-shrink: 0;
    }
    .upsell-plan-box {
      background: var(--navy3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 24px;
    }
    .upsell-plan-tier {
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--blue-lt);
      margin-bottom: 6px;
    }
    .upsell-plan-price {
      font-size: 36px; font-weight: 900; color: var(--white);
      line-height: 1; margin-bottom: 4px;
    }
    .upsell-plan-price span { font-size: 15px; font-weight: 400; color: var(--muted); }
    .upsell-plan-note { font-size: 12px; color: var(--muted); }
    .upsell-feats {
      list-style: none;
      display: flex; flex-direction: column; gap: 8px;
      margin-bottom: 24px;
      text-align: left;
    }
    .upsell-feats li {
      font-size: 13px; color: var(--text);
      display: flex; align-items: center; gap: 8px;
    }
    .upsell-feats li::before {
      content: '✓'; color: #4ade80;
      font-weight: 700; flex-shrink: 0;
    }
    .upsell-upgrade-btn {
      display: block; width: 100%;
      padding: 14px;
      background: var(--blue); color: var(--white);
      border-radius: 8px; font-size: 15px; font-weight: 700;
      text-decoration: none;
      transition: background 0.15s, transform 0.15s;
      cursor: pointer; border: none; font-family: inherit;
    }
    .upsell-upgrade-btn:hover { background: var(--blue-lt); transform: translateY(-1px); }
    .upsell-dismiss {
      background: none; border: none;
      color: var(--sl-fg-subtle); font-size: 11px;
      cursor: pointer; margin-top: 14px;
      font-family: inherit;
      transition: color var(--sl-transition);
      text-decoration: underline underline solid;
      text-underline-offset: 2px;
    }
    .upsell-dismiss:hover { color: var(--sl-fg-muted); }

    /* ─────────────────────────────────────────
       HOW IT WORKS — MULTI-PAGE FUNNEL
    ───────────────────────────────────────── */
    .hiw-progress-wrap {
      background: var(--navy2);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 20px 0 0;
    }
    .hiw-progress-track {
      max-width: 520px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      padding: 0 24px;
    }
    .hiw-prog-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
      flex-shrink: 0;
    }
    .hiw-prog-dot {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 2px solid var(--border);
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 800;
      color: var(--muted);
      transition: all .2s;
    }
    .hiw-prog-step.active .hiw-prog-dot {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
    }
    .hiw-prog-step.done .hiw-prog-dot {
      background: #16a34a;
      border-color: #16a34a;
      color: #fff;
      font-size: 13px;
    }
    .hiw-prog-label {
      font-size: 10px;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .06em;
      white-space: nowrap;
      padding-bottom: 14px;
    }
    .hiw-prog-step.active .hiw-prog-label { color: var(--blue-lt); }
    .hiw-prog-step.done  .hiw-prog-label { color: #4ade80; }
    .hiw-prog-line {
      flex: 1;
      height: 2px;
      background: var(--border);
      margin: 0 6px;
      margin-top: 14px;
    }
    .hiw-prog-step.done ~ .hiw-prog-line { background: #16a34a; }

    /* Bottom nav strip */
    .hiw-nav-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 680px;
      margin: 0 auto 20px;
      padding: 0 24px;
      gap: 16px;
    }
    .hiw-back {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
      transition: color .15s;
    }
    .hiw-back:hover { color: var(--white); }

    /* ─────────────────────────────────────────
       RESPONSIVE MISC
    ───────────────────────────────────────── */
    @media (max-width: 600px) {
      section { padding: 72px 0; }
      #hero { padding: 88px 0 72px; }
      .hiw-prog-label { font-size: 9px; }
    }

    /* ─────────────────────────────────────────
       TOAST NOTIFICATION SYSTEM (shadcn-style)
    ───────────────────────────────────────── */
    #toast-container {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 10000;
      display: flex;
      flex-direction: column-reverse;
      gap: 8px;
      pointer-events: none;
    }
    .toast {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      min-width: 280px;
      max-width: 380px;
      padding: 14px 16px;
      background: var(--sl-bg-card);
      border: 1px solid var(--sl-border);
      border-radius: var(--sl-radius);
      box-shadow: var(--sl-shadow-lg);
      font-size: 13px;
      line-height: 1.5;
      color: var(--sl-fg);
      pointer-events: all;
      animation: toast-in 200ms cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .toast.toast-exit {
      animation: toast-out 200ms ease-in forwards;
    }
    .toast-icon {
      font-size: 15px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .toast-body { flex: 1; }
    .toast-title { font-weight: 600; margin-bottom: 2px; }
    .toast-msg   { color: var(--sl-fg-muted); font-size: 12px; }

    .toast.toast-success { border-left: 3px solid #22c55e; }
    .toast.toast-success .toast-icon { color: #22c55e; }

    .toast.toast-error { border-left: 3px solid #ef4444; }
    .toast.toast-error .toast-icon { color: #ef4444; }

    .toast.toast-warning { border-left: 3px solid #f59e0b; }
    .toast.toast-warning .toast-icon { color: #f59e0b; }

    .toast.toast-info { border-left: 3px solid var(--sl-primary); }
    .toast.toast-info .toast-icon { color: var(--sl-primary); }

    .toast-close {
      background: none; border: none;
      color: var(--sl-fg-muted); cursor: pointer;
      font-size: 16px; line-height: 1;
      flex-shrink: 0; padding: 0 2px;
      transition: color var(--sl-transition);
    }
    .toast-close:hover { color: var(--sl-fg); }

    @keyframes toast-in {
      from { opacity: 0; transform: translateX(20px) scale(0.96); }
      to   { opacity: 1; transform: translateX(0) scale(1); }
    }
    @keyframes toast-out {
      from { opacity: 1; transform: translateX(0) scale(1); }
      to   { opacity: 0; transform: translateX(20px) scale(0.95); }
    }
    @media (max-width: 480px) {
      #toast-container { right: 12px; left: 12px; bottom: 16px; }
      .toast { max-width: none; }
    }
