    /* ==================================================================
       1. DESIGN TOKENS
       ================================================================== */
    :root {
      /* Surface */
      --bg: #FAFAFA;
      --bg-tint: #F4F6FA;
      --surface: #FFFFFF;
      --surface-sunk: #F8FAFC;
      --surface-inverted: #0A0F1E;

      /* Ink */
      --ink: #0A0A0A;
      --text: #0F172A;
      --text-2: #334155;
      --text-3: #64748B;
      --text-4: #94A3B8;
      --text-5: #CBD5E1;
      --text-inverse: #FFFFFF;

      /* Lines */
      --hairline: #ECEEF2;
      --border: #E2E8F0;
      --border-strong: #CBD5E1;

      /* Brand */
      --blue: #1E3A8A;
      --blue-2: #2563EB;
      --blue-3: #3B82F6;
      --blue-dim: rgba(37,99,235,0.08);
      --blue-soft: rgba(30,58,138,0.06);
      --blue-glow: rgba(37,99,235,0.20);

      --teal: #0D9488;
      --teal-2: #14B8A6;
      --teal-dim: rgba(13,148,136,0.10);
      --teal-glow: rgba(13,148,136,0.22);

      --amber: #D97706;
      --amber-dim: rgba(217,119,6,0.10);
      --red: #DC2626;
      --red-dim: rgba(220,38,38,0.08);
      --green: #10B981;

      /* Shadows */
      --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
      --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
      --shadow-md: 0 4px 12px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.05);
      --shadow-lg: 0 12px 32px rgba(15,23,42,0.10), 0 4px 8px rgba(15,23,42,0.04);
      --shadow-xl: 0 24px 64px rgba(15,23,42,0.12), 0 8px 16px rgba(15,23,42,0.05);
      --shadow-card: 0 1px 2px rgba(15,23,42,0.04), 0 8px 24px rgba(15,23,42,0.04);
      --shadow-card-hover: 0 2px 4px rgba(15,23,42,0.06), 0 20px 44px rgba(15,23,42,0.08);

      /* Radii */
      --radius-xs: 6px;
      --radius-sm: 10px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --radius-pill: 999px;

      /* Type */
      --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
      --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
      --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

      /* Motion */
      --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

      /* Layout */
      --container: 1180px;
      --container-narrow: 960px;
      --nav-h: 72px;
    }

    /* ==================================================================
       2. RESET + BASE
       ================================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      font-feature-settings: "cv11", "ss01";
    }
    img, svg, video { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
    input, textarea, select { font: inherit; color: inherit; }
    ul { list-style: none; }

    ::selection { background: var(--blue-2); color: #fff; }

    /* ==================================================================
       3. TYPOGRAPHY
       ================================================================== */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-3);
      padding: 0.45rem 0.85rem;
      border: 1px solid var(--border);
      background: var(--surface);
      border-radius: var(--radius-pill);
      box-shadow: var(--shadow-xs);
    }
    .eyebrow .dot {
      width: 6px; height: 6px; border-radius: 999px;
      background: var(--teal);
      box-shadow: 0 0 0 3px var(--teal-dim);
    }
    .h1 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(2.4rem, 5.6vw, 4.75rem);
      line-height: 1.02;
      letter-spacing: -0.035em;
      color: var(--text);
    }
    .h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.85rem, 3.8vw, 3rem);
      line-height: 1.08;
      letter-spacing: -0.028em;
      color: var(--text);
    }
    .h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.3rem, 2.2vw, 1.75rem);
      line-height: 1.2;
      letter-spacing: -0.018em;
      color: var(--text);
    }
    .h4 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.08rem;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }
    .lead {
      font-size: clamp(1.05rem, 1.5vw, 1.22rem);
      line-height: 1.55;
      color: var(--text-2);
      max-width: 42rem;
    }
    .muted { color: var(--text-3); }
    .mono { font-family: var(--font-mono); font-size: 0.85em; }

    /* ==================================================================
       4. LAYOUT
       ================================================================== */
    .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
    .container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
    section { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; }

    .section-head { max-width: 42rem; margin: 0 auto 3rem; text-align: center; }
    .section-head .eyebrow { margin-bottom: 1rem; }
    .section-head .h2 { margin-bottom: 0.75rem; }
    .section-head .lead { margin: 0 auto; }

    /* ==================================================================
       5. BUTTONS
       ================================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.85rem 1.35rem;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: -0.005em;
      border-radius: var(--radius-md);
      border: 1px solid transparent;
      transition: transform 0.18s var(--ease-out-soft),
                  background 0.18s var(--ease-smooth),
                  color 0.18s var(--ease-smooth),
                  box-shadow 0.25s var(--ease-out-soft),
                  border-color 0.18s var(--ease-smooth);
      cursor: pointer;
      white-space: nowrap;
      user-select: none;
    }
    .btn i { width: 16px; height: 16px; transition: transform 0.2s var(--ease-out-soft); }
    .btn:hover i.arrow { transform: translateX(2px); }
    .btn-primary {
      background: var(--blue);
      color: #fff;
      box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 4px 12px rgba(30,58,138,0.22);
    }
    .btn-primary:hover { background: var(--blue-2); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 8px 20px rgba(37,99,235,0.30); }
    .btn-secondary {
      background: var(--surface);
      color: var(--text);
      border-color: var(--border);
      box-shadow: var(--shadow-xs);
    }
    .btn-secondary:hover { border-color: var(--border-strong); transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .btn-ghost { background: transparent; color: var(--text-2); }
    .btn-ghost:hover { color: var(--text); background: var(--bg-tint); }
    .btn-lg { padding: 1rem 1.6rem; font-size: 1rem; }
    .btn-sm { padding: 0.55rem 0.9rem; font-size: 0.85rem; border-radius: var(--radius-sm); }
    .btn-block { width: 100%; }

    /* ==================================================================
       6. UTILITY CHIPS / BADGES
       ================================================================== */
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.7rem;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-2);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
    }
    .chip-teal { color: var(--teal); background: var(--teal-dim); border-color: transparent; }
    .chip-blue { color: var(--blue-2); background: var(--blue-dim); border-color: transparent; }
    .chip-red { color: var(--red); background: var(--red-dim); border-color: transparent; }
    .chip-amber { color: var(--amber); background: var(--amber-dim); border-color: transparent; }

    /* ==================================================================
       7. SCROLL REVEAL — visible by default, animates only when JS hides first
       ================================================================== */
    .reveal { opacity: 1; transform: none; transition: opacity 0.7s var(--ease-out-soft), transform 0.7s var(--ease-out-soft); }
    html.js-reveal-ready .reveal-hide { opacity: 0; transform: translateY(20px); }
    html.js-reveal-ready .reveal-hide.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; }

    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal-hide { opacity: 1 !important; transform: none !important; transition: none !important; }
      * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }

    /* ==================================================================
       8. NAV
       ================================================================== */
    .nav-wrap {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0.8rem 1.5rem;
      transition: padding 0.3s var(--ease-out-soft);
      pointer-events: none;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: var(--container);
      margin: 0 auto;
      height: var(--nav-h);
      padding: 0 0.6rem 0 1rem;
      background: rgba(250, 250, 250, 0.65);
      backdrop-filter: blur(16px) saturate(180%);
      -webkit-backdrop-filter: blur(16px) saturate(180%);
      border-radius: var(--radius-pill);
      border: 1px solid transparent;
      transition: all 0.3s var(--ease-out-soft);
      pointer-events: auto;
    }
    body.nav-scrolled .nav {
      background: rgba(255, 255, 255, 0.85);
      border-color: var(--hairline);
      box-shadow: 0 8px 32px rgba(15,23,42,0.08);
    }
    body.nav-scrolled .nav-wrap { padding-top: 0.6rem; }

    .nav-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; color: var(--text); }
    .nav-logo img { height: 26px; width: auto; }
    .nav-links { display: flex; gap: 0.25rem; }
    .nav-links a {
      padding: 0.5rem 0.85rem;
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text-2);
      border-radius: var(--radius-sm);
      transition: all 0.15s var(--ease-smooth);
    }
    .nav-links a:hover { color: var(--text); background: rgba(15,23,42,0.04); }
    .nav-cta { display: flex; align-items: center; gap: 0.5rem; }
    .nav-cta .btn { padding: 0.6rem 1rem; font-size: 0.88rem; }
    .nav-mobile-btn {
      display: none;
      width: 40px; height: 40px;
      align-items: center; justify-content: center;
      border-radius: 999px;
      color: var(--text);
    }
    .nav-mobile-btn:hover { background: rgba(15,23,42,0.06); }

    .nav-mobile {
      position: fixed;
      inset: 0;
      background: var(--bg);
      z-index: 99;
      display: none;
      flex-direction: column;
      padding: calc(var(--nav-h) + 3rem) 2rem 2rem;
      opacity: 0;
      transition: opacity 0.3s var(--ease-out-soft);
    }
    .nav-mobile.open { display: flex; opacity: 1; }
    .nav-mobile a {
      padding: 1rem 0;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.4rem;
      border-bottom: 1px solid var(--hairline);
      color: var(--text);
    }
    .nav-mobile .nav-mobile-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

    @media (max-width: 820px) {
      .nav-links, .nav-cta { display: none; }
      .nav-mobile-btn { display: flex; }
    }

    /* ==================================================================
       9. HERO
       ================================================================== */
    .hero {
      position: relative;
      padding: calc(var(--nav-h) + 4rem) 0 clamp(3rem, 5vw, 5rem);
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      z-index: 0;
      pointer-events: none;
    }
    .hero-bg::before {
      content: '';
      position: absolute;
      top: -10%; left: -10%;
      width: 60%; height: 60%;
      background: radial-gradient(circle at center, var(--blue-soft) 0%, transparent 60%);
      filter: blur(40px);
      animation: drift1 22s ease-in-out infinite;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      top: 20%; right: -15%;
      width: 50%; height: 70%;
      background: radial-gradient(circle at center, var(--teal-dim) 0%, transparent 60%);
      filter: blur(50px);
      animation: drift2 28s ease-in-out infinite;
    }
    @keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px, -30px) scale(1.08); } }
    @keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px, 40px) scale(1.1); } }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(var(--hairline) 1px, transparent 1px),
                        linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 80%);
      opacity: 0.55;
    }

    .hero-inner { position: relative; z-index: 1; text-align: center; }
    .hero .eyebrow { margin-bottom: 1.5rem; }
    .hero h1 { margin-bottom: 1.25rem; }
    .hero h1 .accent {
      background: linear-gradient(110deg, var(--blue) 0%, var(--blue-2) 50%, var(--teal) 100%);
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    .hero-lead { margin: 0 auto 2rem; max-width: 38rem; color: var(--text-2); font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
    .hero-cta { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }

    /* Stats */
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: 820px;
      margin: 0 auto;
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-xl);
      padding: 1.2rem 0;
      box-shadow: var(--shadow-card);
    }
    .hero-stat { text-align: center; padding: 0.25rem 0.6rem; border-right: 1px solid var(--hairline); }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      letter-spacing: -0.03em;
      color: var(--text);
      line-height: 1;
      display: block;
      margin-bottom: 0.2rem;
    }
    .hero-stat-num .unit { font-size: 0.55em; color: var(--text-3); font-weight: 500; letter-spacing: -0.01em; }
    .hero-stat-label { font-size: 0.76rem; color: var(--text-3); font-weight: 500; }

    .hero-trust {
      margin-top: 2.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.25rem;
      flex-wrap: wrap;
      font-size: 0.85rem;
      color: var(--text-3);
    }
    .hero-trust .dot { width: 3px; height: 3px; border-radius: 999px; background: var(--text-4); }

    @media (max-width: 720px) {
      .hero-stats { grid-template-columns: repeat(2, 1fr); border-radius: var(--radius-lg); }
      .hero-stat { border-right: none; padding: 0.75rem; }
      .hero-stat:nth-child(odd) { border-right: 1px solid var(--hairline); }
      .hero-stat:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
    }

    /* ==================================================================
       10. LOGO / SPECIALTY BAND
       ================================================================== */
    .band-specialties {
      padding: clamp(2rem, 3.5vw, 3rem) 0;
      border-top: 1px solid var(--hairline);
      border-bottom: 1px solid var(--hairline);
      background: var(--surface-sunk);
    }
    .band-specialties-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
    .band-label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
    .band-specs { display: flex; gap: 0.5rem 0.75rem; flex-wrap: wrap; justify-content: center; }
    .spec-pill {
      display: inline-flex; align-items: center; gap: 0.45rem;
      padding: 0.5rem 0.9rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-2);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      transition: all 0.2s var(--ease-out-soft);
    }
    .spec-pill:hover { color: var(--text); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
    .spec-pill i { width: 14px; height: 14px; color: var(--blue-2); }

    /* ==================================================================
       11. PROBLEM / SOLUTION SPLIT
       ================================================================== */
    .split-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      max-width: 1080px;
      margin: 0 auto;
    }
    .split-card {
      position: relative;
      padding: 2rem;
      border-radius: var(--radius-xl);
      overflow: hidden;
    }
    .split-card-old {
      background: linear-gradient(160deg, #FFF3F2 0%, #FFFAF9 100%);
      border: 1px solid rgba(220,38,38,0.12);
    }
    .split-card-new {
      background: linear-gradient(160deg, #ECFDF5 0%, #F0FDF4 100%);
      border: 1px solid rgba(13,148,136,0.18);
    }
    .split-tag {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.04em; text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .split-card-old .split-tag { background: var(--red-dim); color: var(--red); }
    .split-card-new .split-tag { background: var(--teal-dim); color: var(--teal); }
    .split-card h3 { margin-bottom: 1rem; }
    .split-card .split-hero-num {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(2rem, 4vw, 2.8rem);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 0.35rem;
    }
    .split-card-old .split-hero-num { color: var(--red); }
    .split-card-new .split-hero-num { color: var(--teal); }
    .split-hero-sub { font-size: 0.92rem; color: var(--text-3); margin-bottom: 1.5rem; }
    .split-list { display: flex; flex-direction: column; gap: 0.7rem; }
    .split-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.95rem; color: var(--text-2); }
    .split-list li i { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
    .split-card-old .split-list li i { color: var(--red); }
    .split-card-new .split-list li i { color: var(--teal); }
    @media (max-width: 720px) {
      .split-wrap { grid-template-columns: 1fr; }
    }

    /* ==================================================================
       12. HOW IT WORKS
       ================================================================== */
    .steps-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      position: relative;
    }
    .step {
      position: relative;
      padding: 2rem 1.75rem;
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
      transition: transform 0.3s var(--ease-out-soft), box-shadow 0.3s var(--ease-out-soft);
    }
    .step:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
    .step-num {
      display: inline-flex;
      align-items: center; justify-content: center;
      width: 42px; height: 42px;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
      color: #fff;
      border-radius: 12px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.05rem;
      box-shadow: 0 4px 12px rgba(37,99,235,0.24);
      margin-bottom: 1.25rem;
    }
    .step h4 { margin-bottom: 0.6rem; font-size: 1.2rem; }
    .step p { font-size: 0.96rem; color: var(--text-3); line-height: 1.55; }
    .step-icon {
      position: absolute;
      top: 1.6rem; right: 1.6rem;
      width: 36px; height: 36px;
      display: inline-flex; align-items: center; justify-content: center;
      border-radius: 10px;
      background: var(--blue-dim);
      color: var(--blue-2);
    }
    .step-icon i { width: 18px; height: 18px; }

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

    /* ==================================================================
       13. LIVE DEMO
       ================================================================== */
    .demo-section { background: var(--surface-sunk); position: relative; overflow: hidden; }
    .demo-section::before {
      content: '';
      position: absolute;
      top: -20%; left: 50%;
      width: 70%; height: 100%;
      background: radial-gradient(circle at center, var(--blue-soft) 0%, transparent 60%);
      transform: translateX(-50%);
      pointer-events: none;
    }
    .demo-wrap {
      position: relative;
      max-width: 960px;
      margin: 0 auto;
    }

    .demo-controls {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .demo-select {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      min-width: 180px;
      flex: 1;
    }
    .demo-select-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-3);
      padding-left: 0.5rem;
    }
    .demo-select select {
      appearance: none;
      padding: 0.85rem 2.25rem 0.85rem 1rem;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      cursor: pointer;
      box-shadow: var(--shadow-xs);
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' 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 0.75rem center;
      background-size: 16px;
      transition: all 0.15s var(--ease-smooth);
    }
    .demo-select select:hover { border-color: var(--border-strong); }
    .demo-select select:focus { outline: none; border-color: var(--blue-2); box-shadow: 0 0 0 4px var(--blue-dim); }

    .demo-generate {
      display: flex; justify-content: center; margin-bottom: 1.75rem;
    }
    .demo-generate .btn { min-width: 240px; }

    /* Letter viewport */
    .demo-viewport {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }
    .demo-header {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.9rem 1.2rem;
      border-bottom: 1px solid var(--hairline);
      background: var(--surface-sunk);
    }
    .demo-dot { width: 10px; height: 10px; border-radius: 999px; }
    .demo-dot-r { background: #EF4444; }
    .demo-dot-y { background: #F59E0B; }
    .demo-dot-g { background: #10B981; }
    .demo-filename {
      margin-left: 0.75rem;
      font-family: var(--font-mono);
      font-size: 0.8rem;
      color: var(--text-3);
    }
    .demo-status {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.76rem;
      font-weight: 600;
      color: var(--text-3);
    }
    .demo-status .pulse {
      width: 6px; height: 6px; border-radius: 999px;
      background: var(--text-4);
    }
    .demo-status.typing .pulse { background: var(--amber); animation: pulseTyping 1.2s infinite; }
    .demo-status.approved .pulse { background: var(--green); }
    @keyframes pulseTyping {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 1; }
    }

    .demo-body {
      position: relative;
      padding: 2.25rem 2rem;
      min-height: 420px;
      font-family: var(--font-mono);
      font-size: 0.88rem;
      line-height: 1.85;
      color: var(--text-2);
      white-space: pre-wrap;
      overflow: hidden;
    }
    .demo-body-placeholder {
      color: var(--text-4);
      text-align: center;
      font-family: var(--font-body);
      font-size: 0.95rem;
      padding: 4rem 1rem;
    }
    .demo-body-placeholder .mono-hint {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.4rem 0.8rem;
      background: var(--surface-sunk);
      border: 1px dashed var(--border);
      border-radius: var(--radius-sm);
      font-family: var(--font-mono);
      font-size: 0.78rem;
      color: var(--text-3);
    }
    .demo-body .kw { color: var(--blue); font-weight: 500; }
    .demo-body .dx { color: var(--teal); font-weight: 500; }
    .demo-body .caret { display: inline-block; width: 0.5ch; height: 1em; background: var(--text); vertical-align: text-bottom; margin-left: 1px; animation: blinkCaret 0.8s step-end infinite; }
    @keyframes blinkCaret { 50% { opacity: 0; } }

    .demo-stamp {
      position: absolute;
      top: 38%;
      right: 6%;
      padding: 0.85rem 1.5rem;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.75rem;
      letter-spacing: 0.06em;
      color: var(--teal);
      border: 3px solid var(--teal);
      border-radius: 8px;
      text-transform: uppercase;
      transform: rotate(-8deg) scale(0);
      opacity: 0;
      pointer-events: none;
      background: rgba(255, 255, 255, 0.92);
      transition: transform 0.5s var(--ease-spring), opacity 0.4s ease-out;
      box-shadow: 0 8px 24px rgba(13,148,136,0.25);
    }
    .demo-stamp.show { transform: rotate(-8deg) scale(1); opacity: 1; }
    .demo-stamp::before, .demo-stamp::after {
      content: '';
      position: absolute;
      background: var(--teal);
      opacity: 0.35;
    }
    .demo-stamp::before { left: 4px; right: 4px; top: 2px; height: 1px; }
    .demo-stamp::after { left: 4px; right: 4px; bottom: 2px; height: 1px; }

    .demo-footer {
      padding: 0.9rem 1.2rem;
      border-top: 1px solid var(--hairline);
      background: var(--surface-sunk);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      color: var(--text-3);
    }
    .demo-timer { font-family: var(--font-mono); color: var(--text-2); font-weight: 500; }

    .demo-footnote { text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-3); }
    .demo-footnote strong { color: var(--text); font-weight: 600; }

    @media (max-width: 720px) {
      .demo-controls { flex-direction: column; }
      .demo-body { padding: 1.5rem 1.25rem; font-size: 0.8rem; min-height: 340px; }
      .demo-stamp { font-size: 1.25rem; padding: 0.6rem 1.1rem; right: 50%; transform: translateX(50%) rotate(-8deg) scale(0); top: 30%; }
      .demo-stamp.show { transform: translateX(50%) rotate(-8deg) scale(1); }
    }

    /* ==================================================================
       14. PRICING
       ================================================================== */
    .pricing-toggle {
      display: inline-flex;
      align-items: center;
      padding: 4px;
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-pill);
      margin: 0 auto 3rem;
      box-shadow: var(--shadow-xs);
      position: relative;
    }
    .pricing-toggle-wrap { display: flex; justify-content: center; }
    .pricing-toggle button {
      position: relative;
      padding: 0.55rem 1.15rem;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-3);
      border-radius: var(--radius-pill);
      transition: color 0.2s var(--ease-smooth);
      z-index: 1;
    }
    .pricing-toggle button.active { color: var(--text); }
    .pricing-toggle-indicator {
      position: absolute;
      top: 4px; bottom: 4px;
      background: var(--bg-tint);
      border-radius: var(--radius-pill);
      transition: all 0.3s var(--ease-out-soft);
      z-index: 0;
    }
    .pricing-save {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--teal);
      background: var(--teal-dim);
      padding: 0.15rem 0.4rem;
      border-radius: 4px;
      margin-left: 0.4rem;
      letter-spacing: 0.02em;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .price-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 2rem 1.75rem;
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
      transition: transform 0.35s var(--ease-out-soft), box-shadow 0.35s var(--ease-out-soft);
    }
    .price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

    .price-card.featured {
      background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
      border: 1px solid transparent;
      box-shadow: var(--shadow-xl);
    }
    .price-card.featured::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      padding: 1.5px;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 30%, var(--teal) 100%);
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude;
      background-size: 200% 200%;
      animation: gradientShift 6s ease infinite;
      pointer-events: none;
    }
    @keyframes gradientShift {
      0%,100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .price-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      padding: 0.35rem 0.9rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fff;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
      border-radius: var(--radius-pill);
      box-shadow: 0 4px 12px rgba(37,99,235,0.32);
    }

    .price-name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: -0.01em;
      margin-bottom: 0.35rem;
    }
    .price-sub { font-size: 0.9rem; color: var(--text-3); margin-bottom: 1.25rem; min-height: 1.3rem; }

    .price-amount { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.25rem; }
    .price-amount .num {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.4rem, 4vw, 3rem);
      letter-spacing: -0.035em;
      color: var(--text);
      line-height: 1;
    }
    .price-amount .per { font-size: 0.9rem; color: var(--text-3); font-weight: 500; }
    .price-annual-note { font-size: 0.78rem; color: var(--text-3); min-height: 1.1rem; margin-bottom: 1.5rem; }
    .price-annual-note strong { color: var(--teal); font-weight: 600; }

    .price-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.75rem; flex: 1; }
    .price-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--text-2); }
    .price-features li i { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
    .price-features li strong { color: var(--text); font-weight: 600; }

    .price-cta { width: 100%; }

    .price-footnote {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.85rem;
      color: var(--text-3);
    }
    .price-footnote code {
      font-family: var(--font-mono);
      font-size: 0.82rem;
      padding: 0.1rem 0.35rem;
      background: var(--bg-tint);
      border-radius: 4px;
      color: var(--text);
    }

    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
      .price-card.featured { order: -1; }
    }

    /* ── PLANS INDEX SECTION ─────────────────────────────── */
    .plans-index-section { padding: 80px 0; background: var(--bg-tint, #F8F7F4); }
    .section-sub { max-width: 600px; margin: 0 auto 48px; color: var(--text-3, #6B7280); font-size: 1rem; line-height: 1.7; text-align: center; }

    .plans-index-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      max-width: 1160px;
      margin: 0 auto;
    }
    @media (max-width: 900px) {
      .plans-index-grid { grid-template-columns: 1fr; max-width: 480px; }
    }

    .plans-index-card {
      border-radius: 20px;
      padding: 40px 36px;
      display: flex; flex-direction: column;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      position: relative; overflow: hidden;
    }
    .plans-index-card:hover { transform: translateY(-5px); }

    /* Core card */
    .core-card {
      background: #F0F6FF;
      border: 1px solid rgba(37,99,235,0.2);
      box-shadow: 0 4px 24px rgba(11,25,41,0.08), 0 2px 8px rgba(11,25,41,0.04);
      position: relative; overflow: hidden;
    }
    .core-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: #2563EB;
    }
    .core-card:hover { box-shadow: 0 20px 60px rgba(11,25,41,0.12); }

    /* Full Service card */
    .fs-card {
      background: #0B1929;
      border: 1px solid rgba(200,164,74,0.25);
      box-shadow: 0 4px 24px rgba(11,25,41,0.2), 0 0 0 1px rgba(200,164,74,0.1);
    }
    .fs-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #C8A44A, #F0C97A, #C8A44A);
      background-size: 200% 100%;
      animation: shimmer 3s ease-in-out infinite;
    }
    @keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
    .fs-card:hover { box-shadow: 0 28px 70px rgba(11,25,41,0.3), 0 0 0 1px rgba(200,164,74,0.2); }
    .pic-glow {
      position: absolute; top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(200,164,74,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Badge */
    .pic-badge {
      display: inline-block; padding: 4px 12px; border-radius: 100px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
      text-transform: uppercase; margin-bottom: 16px; width: fit-content;
    }
    .pic-badge-core { background: rgba(37,99,235,0.08); color: #2563EB; border: 1px solid rgba(37,99,235,0.18); }
    .pic-badge-fs   { background: rgba(200,164,74,0.12); color: #C8A44A; border: 1px solid rgba(200,164,74,0.3); }

    /* Name + tagline */
    .pic-name { font-family: var(--font-serif, 'Playfair Display', serif); font-size: 1.6rem; font-weight: 700; color: #0B1929; margin-bottom: 6px; }
    .fs-card .pic-name { color: #ffffff; }
    .pic-tagline { font-size: 0.9rem; color: #6B7280; margin-bottom: 4px; }
    .fs-card .pic-tagline { color: rgba(255,255,255,0.5); }
    .pic-ideal { font-size: 0.78rem; font-weight: 500; color: #2563EB; background: rgba(37,99,235,0.07); display: inline-block; padding: 3px 9px; border-radius: 6px; margin-bottom: 22px; }
    .fs-card .pic-ideal { color: #C8A44A; background: rgba(200,164,74,0.1); }

    /* Divider */
    .pic-divider { height: 1px; background: rgba(11,25,41,0.08); margin: 0 0 20px; }
    .fs-card .pic-divider { background: rgba(255,255,255,0.1); }

    /* Includes label */
    .pic-includes { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }

    /* Features */
    .pic-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; flex: 1; }
    .pic-features li { font-size: 0.875rem; color: #374151; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
    .pic-features li::before { content: '\2713'; color: #10B981; font-weight: 700; font-size: 0.78rem; flex-shrink: 0; margin-top: 2px; }
    .fs-card .pic-features li { color: rgba(255,255,255,0.8); }
    .fs-card .pic-features li::before { color: #C8A44A; }
    .fs-card .pic-features strong { color: #ffffff; }

    /* Highlight box */
    .pic-highlight {
      display: flex; align-items: flex-start; gap: 10px;
      background: rgba(200,164,74,0.08); border: 1px solid rgba(200,164,74,0.2);
      border-radius: 10px; padding: 10px 12px;
      font-size: 0.845rem; color: rgba(255,255,255,0.85); line-height: 1.55;
      margin-bottom: 22px;
    }
    .pic-highlight-icon { color: #C8A44A; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .pic-highlight strong { color: #F0C97A; }

    /* Overage */
    .pic-overage { font-size: 0.78rem; color: #9CA3AF; margin: 12px 0 20px; }
    .fs-card .pic-overage { color: rgba(255,255,255,0.3); }

    /* CTA */
    .pic-cta {
      display: flex; align-items: center; justify-content: center;
      width: 100%; padding: 14px 24px; border-radius: 10px;
      font-size: 0.92rem; font-weight: 600; cursor: pointer;
      transition: all 0.25s ease; border: none; font-family: inherit;
      margin-top: auto;
    }
    .pic-cta-core { background: #2563EB; color: #ffffff; }
    .pic-cta-core:hover { background: #1D4ED8; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.3); }
    .pic-cta-fs { background: #C8A44A; color: #0B1929; }
    .pic-cta-fs:hover { background: #D4A838; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,164,74,0.4); }

    /* Footnote */
    .pic-footnote { text-align: center; margin-top: 28px; font-size: 0.875rem; color: #9CA3AF; }

    @media (max-width: 700px) {
      .plans-index-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
      .plans-index-card { padding: 32px 24px; }
    }

    /* ==================================================================
       15. FOUNDER
       ================================================================== */
    .founder-wrap {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 3rem;
      align-items: center;
      max-width: 1080px;
      margin: 0 auto;
      padding: 2.5rem;
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .founder-wrap::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 300px; height: 300px;
      background: radial-gradient(circle at center, var(--teal-dim) 0%, transparent 60%);
      filter: blur(40px);
      pointer-events: none;
    }
    .founder-photo-wrap { position: relative; }
    .founder-photo {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center 8%;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      background: var(--bg-tint);
    }
    .founder-photo-tag {
      position: absolute;
      bottom: 1rem; left: 1rem; right: 1rem;
      padding: 0.8rem 1rem;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(8px);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      gap: 0.7rem;
      box-shadow: 0 4px 16px rgba(15,23,42,0.12);
    }
    .founder-photo-tag-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }
    .founder-photo-tag strong { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; display: block; }
    .founder-photo-tag span { font-size: 0.78rem; color: var(--text-3); }

    .founder-content { position: relative; z-index: 1; }
    .founder-quote {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(1.25rem, 2vw, 1.55rem);
      line-height: 1.35;
      letter-spacing: -0.015em;
      color: var(--text);
      margin-bottom: 1.5rem;
    }
    .founder-quote .accent { color: var(--blue); }
    .founder-signature {
      display: flex; align-items: center; gap: 1rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--hairline);
    }
    .founder-sig-block strong { font-family: var(--font-display); font-weight: 700; font-size: 1rem; display: block; }
    .founder-sig-block span { font-size: 0.85rem; color: var(--text-3); }
    .founder-creds {
      display: flex; gap: 0.5rem; flex-wrap: wrap;
      margin-top: 1.25rem;
    }

    @media (max-width: 820px) {
      .founder-wrap { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
      .founder-photo { aspect-ratio: 1/1; max-width: 320px; margin: 0 auto; }
    }

    /* ==================================================================
       16. TESTIMONIALS
       ================================================================== */
    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      max-width: 1080px;
      margin: 0 auto;
    }
    .test-card {
      position: relative;
      padding: 1.75rem;
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      min-height: 230px;
    }
    .test-spec {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.76rem;
      font-weight: 600;
      color: var(--blue-2);
      background: var(--blue-dim);
      padding: 0.35rem 0.7rem;
      border-radius: var(--radius-pill);
      align-self: flex-start;
    }
    .test-quote {
      font-size: 0.98rem;
      color: var(--text-2);
      line-height: 1.55;
      flex: 1;
    }
    .test-quote.placeholder {
      color: var(--text-4);
      font-style: italic;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 0;
      text-align: center;
    }
    .test-author {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      padding-top: 1rem;
      border-top: 1px solid var(--hairline);
    }
    .test-avatar {
      width: 38px; height: 38px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--blue-soft), var(--teal-dim));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text-2);
    }
    .test-author-meta strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }
    .test-author-meta span { font-size: 0.8rem; color: var(--text-3); }

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

    /* ==================================================================
       17. FAQ
       ================================================================== */
    .faq-wrap { max-width: 760px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid var(--hairline);
    }
    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.5rem 0;
      text-align: left;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(1rem, 1.3vw, 1.1rem);
      color: var(--text);
      transition: color 0.2s var(--ease-smooth);
    }
    .faq-q:hover { color: var(--blue-2); }
    .faq-q-icon {
      width: 24px; height: 24px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 999px;
      background: var(--bg-tint);
      color: var(--text-3);
      flex-shrink: 0;
      transition: all 0.3s var(--ease-out-soft);
    }
    .faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--blue-dim); color: var(--blue-2); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease-out-soft);
    }
    .faq-item.open .faq-a { max-height: 320px; }
    .faq-a-inner {
      padding: 0 0 1.5rem;
      font-size: 0.98rem;
      color: var(--text-2);
      line-height: 1.6;
      max-width: 90%;
    }

    /* ==================================================================
       18. BIG CTA
       ================================================================== */
    .big-cta {
      max-width: 1080px;
      margin: 0 auto;
      padding: clamp(2.5rem, 5vw, 4rem) 2rem;
      background: linear-gradient(135deg, #0B1929 0%, #1E3A8A 100%);
      border-radius: var(--radius-xl);
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .big-cta::before {
      content: '';
      position: absolute;
      top: -50%; right: -20%;
      width: 60%; height: 200%;
      background: radial-gradient(circle at center, rgba(20,184,166,0.25) 0%, transparent 60%);
      pointer-events: none;
    }
    .big-cta::after {
      content: '';
      position: absolute;
      bottom: -50%; left: -20%;
      width: 60%; height: 200%;
      background: radial-gradient(circle at center, rgba(37,99,235,0.35) 0%, transparent 60%);
      pointer-events: none;
    }
    .big-cta-inner { position: relative; z-index: 1; }
    .big-cta h2 {
      color: #fff;
      margin-bottom: 0.75rem;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
    }
    .big-cta p {
      color: rgba(255,255,255,0.75);
      font-size: 1.05rem;
      max-width: 34rem;
      margin: 0 auto 2rem;
    }
    .big-cta-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
    .btn-invert { background: #fff; color: var(--text); }
    .btn-invert:hover { background: #fff; color: var(--blue); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,0.25); }
    .btn-ghost-invert { background: transparent; color: #fff; border-color: rgba(255,255,255,0.2); }
    .btn-ghost-invert:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

    /* ==================================================================
       19. CONSULT FORM
       ================================================================== */
    .consult-section { background: var(--bg-tint); }
    .consult-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 2rem;
      max-width: 1080px;
      margin: 0 auto;
      align-items: start;
    }
    .consult-card {
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-xl);
      padding: 2.25rem;
      box-shadow: var(--shadow-card);
    }
    .consult-card h3 { margin-bottom: 0.5rem; }
    .consult-card > p { color: var(--text-3); font-size: 0.95rem; margin-bottom: 1.75rem; }
    .float-field { position: relative; }
    .float-field input,
    .float-field textarea {
      width: 100%;
      padding: 1.1rem 1rem 0.5rem;
      font-size: 0.95rem;
      color: var(--text);
      background: var(--surface-sunk);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      transition: all 0.18s var(--ease-smooth);
    }
    .float-field textarea { resize: vertical; padding-top: 1.3rem; }
    .float-field input:focus,
    .float-field textarea:focus {
      outline: none;
      border-color: var(--blue-2);
      background: var(--surface);
      box-shadow: 0 0 0 4px var(--blue-dim);
    }
    .float-field label {
      position: absolute;
      left: 1rem;
      top: 0.95rem;
      font-size: 0.92rem;
      color: var(--text-3);
      pointer-events: none;
      transition: all 0.18s var(--ease-smooth);
    }
    .float-field input:focus ~ label,
    .float-field input:not(:placeholder-shown) ~ label,
    .float-field textarea:focus ~ label,
    .float-field textarea:not(:placeholder-shown) ~ label {
      top: 0.35rem;
      font-size: 0.72rem;
      color: var(--blue-2);
      font-weight: 500;
    }
    .float-field input::placeholder,
    .float-field textarea::placeholder { color: transparent; }
    .form-stack { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.25rem; }

    .consult-rail {
      padding: 2rem;
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
    }
    .consult-rail h4 { margin-bottom: 1.25rem; font-size: 1rem; }
    .consult-rail ol { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 1.25rem; }
    .consult-rail ol li {
      counter-increment: step;
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 0.85rem;
      position: relative;
    }
    .consult-rail ol li::before {
      content: counter(step);
      display: flex; align-items: center; justify-content: center;
      width: 28px; height: 28px;
      background: var(--blue-dim);
      color: var(--blue-2);
      border-radius: 999px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.82rem;
    }
    .consult-rail ol li:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 13px;
      top: 32px;
      bottom: -22px;
      width: 1px;
      background: var(--border);
    }
    .consult-rail ol li strong { display: block; font-weight: 600; font-size: 0.96rem; color: var(--text); margin-bottom: 0.2rem; }
    .consult-rail ol li span { font-size: 0.88rem; color: var(--text-3); line-height: 1.5; }

    #intake-success {
      display: none;
      text-align: center;
      padding: 2rem 0;
    }
    #intake-success.show { display: block; }
    #intake-success .success-check {
      width: 56px; height: 56px;
      border-radius: 999px;
      background: var(--teal-dim);
      color: var(--teal);
      display: inline-flex;
      align-items: center; justify-content: center;
      margin-bottom: 1rem;
    }
    #intake-success h3 { margin-bottom: 0.5rem; }
    #intake-success .muted { color: var(--text-3); margin-bottom: 1.25rem; }
    .btn-spin {
      display: inline-block;
      width: 14px; height: 14px;
      border: 2px solid rgba(255,255,255,0.3);
      border-top-color: #fff;
      border-radius: 999px;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    @media (max-width: 860px) {
      .consult-grid { grid-template-columns: 1fr; }
      .consult-card, .consult-rail { padding: 1.75rem 1.25rem; }
    }

    /* ==================================================================
       20. FOOTER
       ================================================================== */
    footer {
      padding: 3rem 0 2rem;
      background: var(--surface);
      border-top: 1px solid var(--hairline);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    .footer-brand { display: flex; flex-direction: column; gap: 1rem; max-width: 320px; }
    .footer-brand .nav-logo img { height: 28px; }
    .footer-brand p { font-size: 0.9rem; color: var(--text-3); line-height: 1.55; }
    .footer-col h5 {
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 1rem;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col a {
      font-size: 0.92rem;
      color: var(--text-2);
      transition: color 0.15s var(--ease-smooth);
    }
    .footer-col a:hover { color: var(--blue-2); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1.75rem;
      border-top: 1px solid var(--hairline);
      font-size: 0.84rem;
      color: var(--text-3);
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom .footer-links { display: flex; gap: 1.25rem; }
    @media (max-width: 820px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; max-width: none; }
    }
    @media (max-width: 520px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

    /* ==================================================================
       21. SKIP LINK
       ================================================================== */
    .skip-link {
      position: absolute;
      left: -999px;
      top: 0;
      background: var(--text);
      color: #fff;
      padding: 0.5rem 1rem;
      z-index: 999;
      border-radius: 0 0 var(--radius-sm) 0;
    }
    .skip-link:focus { left: 0; }

    /* ==================================================================
       22. MISC
       ================================================================== */
    .hide-sm { display: inline-block; }
    @media (max-width: 520px) { .hide-sm { display: none; } }

    /* ==================================================================
       23. STATS SECTION — "The PA problem, by the numbers."
       ================================================================== */
    .stats-section {
      position: relative;
      background: #060c18;
      color: #fff;
      padding: clamp(64px, 9vw, 120px) 0;
      overflow: hidden;
      isolation: isolate;
    }

    .stats-bg {
      position: absolute; inset: 0; z-index: 0;
      pointer-events: none;
    }
    .stats-grid-lines { position: absolute; inset: 0; opacity: 0.7; }
    .stats-mesh {
      position: absolute; border-radius: 50%; filter: blur(90px);
      opacity: 0.55; will-change: transform;
    }
    .stats-mesh-1 {
      width: 540px; height: 540px; top: -180px; left: -120px;
      background: radial-gradient(circle at 30% 30%, rgba(37,99,235,0.55), transparent 60%);
      animation: statsDrift1 18s ease-in-out infinite;
    }
    .stats-mesh-2 {
      width: 680px; height: 680px; top: 20%; right: -260px;
      background: radial-gradient(circle at 60% 40%, rgba(96,165,250,0.32), transparent 60%);
      animation: statsDrift2 24s ease-in-out infinite;
    }
    .stats-mesh-3 {
      width: 420px; height: 420px; bottom: -120px; left: 30%;
      background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.30), transparent 60%);
      animation: statsDrift3 22s ease-in-out infinite;
    }
    @keyframes statsDrift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(80px, 60px); } }
    @keyframes statsDrift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-70px, -50px); } }
    @keyframes statsDrift3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(50px, -60px); } }

    .stats-section .container { position: relative; z-index: 1; }

    .stats-head { text-align: center; max-width: 820px; margin: 0 auto 64px; }
    .stats-eyebrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 6px 16px; border-radius: 100px;
      background: rgba(37,99,235,0.18);
      border: 1px solid rgba(96,165,250,0.35);
      color: #93c5fd;
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      margin-bottom: 24px;
    }
    .stats-eyebrow-pulse {
      width: 7px; height: 7px; border-radius: 50%;
      background: #60a5fa; box-shadow: 0 0 0 0 rgba(96,165,250,0.6);
      animation: statsEyebrowPulse 2.2s ease-in-out infinite;
    }
    @keyframes statsEyebrowPulse {
      0% { box-shadow: 0 0 0 0 rgba(96,165,250,0.6); }
      70% { box-shadow: 0 0 0 8px rgba(96,165,250,0); }
      100% { box-shadow: 0 0 0 0 rgba(96,165,250,0); }
    }
    .stats-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 700; line-height: 1.1;
      margin-bottom: 18px;
      color: #fff;
      letter-spacing: -0.02em;
    }
    .stats-headline-accent {
      background: linear-gradient(120deg, #60a5fa 0%, #a78bfa 60%, #60a5fa 100%);
      background-size: 200% 100%;
      background-clip: text; -webkit-background-clip: text;
      color: transparent; -webkit-text-fill-color: transparent;
      animation: statsGradientShift 6s ease-in-out infinite;
    }
    @keyframes statsGradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
    .stats-sub {
      font-size: 1rem; color: rgba(255,255,255,0.55);
      margin: 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1080px;
      margin: 0 auto;
    }
    @media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; gap: 16px; } }

    .stat-card {
      position: relative;
      background: linear-gradient(155deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 60%, rgba(255,255,255,0.04) 100%);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: 28px 24px 26px;
      backdrop-filter: blur(8px);
      opacity: 0;
      transform: translateY(28px) scale(0.98);
      transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s,
        box-shadow 0.3s;
      transition-delay: var(--stat-delay, 0ms);
      overflow: hidden;
    }
    .stat-card::before {
      content: '';
      position: absolute; inset: 0;
      border-radius: 20px;
      background: radial-gradient(circle at 50% 0%, rgba(96,165,250,0.18), transparent 70%);
      opacity: 0; transition: opacity 0.35s;
      pointer-events: none;
    }
    .stat-card:hover { border-color: rgba(96,165,250,0.25); box-shadow: 0 20px 50px -20px rgba(37,99,235,0.35); }
    .stat-card:hover::before { opacity: 1; }
    .stat-card.stat-visible { opacity: 1; transform: none; }

    .stat-visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      height: 150px; margin-bottom: 20px;
    }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 4.4vw, 3.4rem);
      font-weight: 700;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.02em;
      position: relative; z-index: 1;
      text-shadow: 0 4px 24px rgba(37,99,235,0.4);
    }
    .stat-number-fraction {
      display: inline-flex; align-items: baseline; gap: 0.3rem;
    }
    .frac-num, .frac-den { font-size: 1em; }
    .frac-sep {
      font-family: 'Inter', sans-serif;
      font-size: 0.4em; font-weight: 500;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase; letter-spacing: 0.1em;
      padding: 0 2px;
    }
    .stat-label {
      font-size: 0.86rem;
      color: rgba(255,255,255,0.62);
      line-height: 1.55;
    }

    /* --- Ring (73%) ---
       Ring is scaled up to 150px so the percentage fits comfortably
       inside. The stat-number font is shrunk specifically for this
       card so "73%" never breaks out of the ring circumference. */
    .stat-card-ring .stat-visual { height: 150px; }
    .ring-svg {
      position: absolute; width: 150px; height: 150px; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      filter: drop-shadow(0 6px 18px rgba(37,99,235,0.35));
    }
    .stat-card-ring .stat-number {
      font-size: clamp(1.7rem, 2.6vw, 2.1rem);
      letter-spacing: -0.01em;
    }
    .ring-progress { stroke-dashoffset: 327; }  /* 2πr with r=52 ≈ 327 */

    /* --- Pills (1 in 3) --- */
    .stat-visual-pills { flex-direction: column; gap: 8px; padding-top: 8px; }
    .pills-svg { width: 120px; height: 48px; }
    .pill { transform-origin: center; }
    .stat-visible .pill-1 { animation: pillPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards; }
    .stat-visible .pill-2 { animation: pillPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s backwards; }
    .stat-visible .pill-highlight { animation: pillPopGlow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s backwards; }
    @keyframes pillPop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    @keyframes pillPopGlow {
      0% { transform: scale(0); opacity: 0; filter: drop-shadow(0 0 0 rgba(96,165,250,0)); }
      100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 12px rgba(96,165,250,0.7)); }
    }

    /* --- Calendar (17 days) ---
       Seventeen thin vertical bars — one per day. They fill in
       left→right on scroll so the viewer literally counts 17.
       Nth-child delays are generated with a per-bar stagger. */
    .stat-card-calendar .stat-visual { flex-direction: column; gap: 14px; }
    .calendar-strip {
      display: grid; grid-template-columns: repeat(17, 1fr);
      gap: 3px; width: 180px; height: 32px;
    }
    .cal-day {
      background: rgba(255,255,255,0.08);
      border-radius: 2px;
      transform: scaleY(0.35);
      transform-origin: bottom center;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    }
    .stat-visible .cal-day {
      animation: calDayFill 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .stat-visible .cal-day:nth-child(1)  { animation-delay: 0.05s; }
    .stat-visible .cal-day:nth-child(2)  { animation-delay: 0.10s; }
    .stat-visible .cal-day:nth-child(3)  { animation-delay: 0.15s; }
    .stat-visible .cal-day:nth-child(4)  { animation-delay: 0.20s; }
    .stat-visible .cal-day:nth-child(5)  { animation-delay: 0.25s; }
    .stat-visible .cal-day:nth-child(6)  { animation-delay: 0.30s; }
    .stat-visible .cal-day:nth-child(7)  { animation-delay: 0.35s; }
    .stat-visible .cal-day:nth-child(8)  { animation-delay: 0.40s; }
    .stat-visible .cal-day:nth-child(9)  { animation-delay: 0.45s; }
    .stat-visible .cal-day:nth-child(10) { animation-delay: 0.50s; }
    .stat-visible .cal-day:nth-child(11) { animation-delay: 0.55s; }
    .stat-visible .cal-day:nth-child(12) { animation-delay: 0.60s; }
    .stat-visible .cal-day:nth-child(13) { animation-delay: 0.65s; }
    .stat-visible .cal-day:nth-child(14) { animation-delay: 0.70s; }
    .stat-visible .cal-day:nth-child(15) { animation-delay: 0.75s; }
    .stat-visible .cal-day:nth-child(16) { animation-delay: 0.80s; }
    .stat-visible .cal-day:nth-child(17) { animation-delay: 0.85s; }
    @keyframes calDayFill {
      0%   { background: rgba(255,255,255,0.08); transform: scaleY(0.35); }
      60%  { background: #60a5fa; transform: scaleY(1); box-shadow: 0 0 12px rgba(96,165,250,0.5); }
      100% { background: #2563EB; transform: scaleY(1); box-shadow: 0 0 0 rgba(96,165,250,0); }
    }
    /* Emphasise the 17th bar as the "finish line." */
    .cal-day:last-child { position: relative; }
    .stat-visible .cal-day:last-child {
      background: linear-gradient(180deg, #a78bfa 0%, #2563EB 100%) !important;
    }

    /* --- Clock (16 hrs) ---
       Clock sits ABOVE the number (matches the pills + people cards)
       instead of behind it — at 3.4rem, "16 hrs" is wider than the
       108px clock face and was spilling sideways with the clock hidden
       behind the text. */
    .stat-card-clock .stat-visual { flex-direction: column; gap: 10px; height: 150px; }
    .stat-card-clock .clock-svg {
      position: relative; width: 72px; height: 72px;
      top: auto; left: auto; transform: none;
      opacity: 0.95;
      flex-shrink: 0;
      filter: drop-shadow(0 4px 14px rgba(37,99,235,0.35));
    }
    .clock-hand { transform-origin: 60px 60px; }
    .stat-visible .clock-hand-min { animation: clockSpinMin 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
    .stat-visible .clock-hand-hour { animation: clockSpinHour 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
    @keyframes clockSpinMin { from { transform: rotate(0deg); } to { transform: rotate(960deg); } } /* several revolutions */
    @keyframes clockSpinHour { from { transform: rotate(0deg); } to { transform: rotate(240deg); } }

    /* --- People (1 in 4) --- */
    .stat-visual-people { flex-direction: column; gap: 10px; }
    .people-row { display: flex; gap: 10px; color: rgba(255,255,255,0.28); }
    .person { width: 28px; height: 38px; }
    .stat-visible .person { animation: personFade 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
    .stat-visible .person:nth-child(1) { animation-delay: 0.15s; }
    .stat-visible .person:nth-child(2) { animation-delay: 0.30s; }
    .stat-visible .person:nth-child(3) { animation-delay: 0.45s; }
    .stat-visible .person-fading {
      color: rgba(96,165,250,0.4);
      animation: personVanish 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
    }
    @keyframes personFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
    @keyframes personVanish {
      0% { opacity: 1; color: #60a5fa; transform: translateY(0); }
      50% { opacity: 0.9; color: #2563EB; transform: translateY(-3px); }
      100% { opacity: 0.25; color: rgba(255,255,255,0.15); transform: translateY(-8px); }
    }

    /* --- Closer card --- */
    .stat-card-closer {
      background: linear-gradient(145deg, rgba(37,99,235,0.18) 0%, rgba(167,139,250,0.12) 100%);
      border: 1px solid rgba(96,165,250,0.35);
      display: flex; flex-direction: column;
      justify-content: center;
      text-align: left;
      padding: 32px 28px;
    }
    .closer-glow {
      position: absolute; inset: -40%;
      background: radial-gradient(circle at 30% 30%, rgba(96,165,250,0.35), transparent 60%);
      filter: blur(40px);
      opacity: 0; transition: opacity 0.5s;
      z-index: 0;
    }
    .stat-card-closer:hover .closer-glow { opacity: 1; }
    .closer-content { position: relative; z-index: 1; }
    .closer-logo {
      display: inline-flex; padding: 10px;
      background: rgba(255,255,255,0.1);
      border-radius: 14px; margin-bottom: 18px;
    }
    .closer-logo img { width: 28px; height: 28px; display: block; }
    .closer-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 700;
      color: #fff; line-height: 1.1; margin-bottom: 10px;
    }
    .closer-body {
      font-size: 0.9rem; color: rgba(255,255,255,0.7);
      line-height: 1.55; margin-bottom: 22px;
    }
    .closer-cta {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 10px 18px; border-radius: 10px;
      background: #fff; color: #0B1929;
      font-weight: 600; font-size: 0.9rem;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .closer-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
    .closer-cta .arrow { width: 14px; height: 14px; transition: transform 0.2s; }
    .closer-cta:hover .arrow { transform: translateX(3px); }

    .stats-tagline {
      text-align: center;
      margin: 56px auto 0;
      max-width: 720px;
      font-size: clamp(1.05rem, 1.8vw, 1.3rem);
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: rgba(255,255,255,0.8);
      line-height: 1.4;
    }
    .stats-tagline-text { display: inline; }
    .stats-tagline-text-accent {
      display: inline;
      background: linear-gradient(120deg, #60a5fa 0%, #a78bfa 100%);
      background-clip: text; -webkit-background-clip: text;
      color: transparent; -webkit-text-fill-color: transparent;
      font-style: italic;
    }
    .stats-sources {
      text-align: center;
      margin-top: 18px;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.02em;
    }

    @media (max-width: 600px) {
      .stat-card-closer { grid-column: 1 / -1; }
      .stat-visual { height: 130px; }
      .stat-card-ring .stat-visual,
      .stat-card-clock .stat-visual { height: 130px; }
      .ring-svg { width: 130px; height: 130px; }
      .calendar-strip { width: 160px; }
    }

    /* ==================================================================
       24. CONSULT MODAL
       ================================================================== */
    .consult-modal {
      position: fixed; inset: 0; z-index: 10000;
      display: none;
      align-items: center; justify-content: center;
      padding: 24px;
      background: rgba(6, 12, 24, 0.72);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      opacity: 0;
      transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .consult-modal.open { display: flex; opacity: 1; }
    .consult-modal-inner {
      position: relative;
      background: #fff;
      border-radius: 24px;
      padding: 44px 40px 36px;
      max-width: 460px; width: 100%;
      box-shadow: 0 40px 100px rgba(6, 12, 24, 0.5), 0 0 0 1px rgba(37, 99, 235, 0.1);
      transform: translateY(18px) scale(0.96);
      opacity: 0;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s;
    }
    .consult-modal.open .consult-modal-inner { transform: none; opacity: 1; }
    .consult-modal-inner::before {
      content: ''; position: absolute; inset: -1px;
      border-radius: 25px;
      background: linear-gradient(135deg, rgba(37,99,235,0.35), rgba(167,139,250,0.25));
      z-index: -1; filter: blur(22px); opacity: 0.5;
    }

    .consult-close {
      position: absolute; top: 16px; right: 16px;
      width: 32px; height: 32px;
      background: #f3f4f6;
      border: none; border-radius: 50%;
      cursor: pointer;
      font-size: 1.1rem; line-height: 1;
      color: #6b7280;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .consult-close:hover { background: #e5e7eb; color: #0B1929; transform: rotate(90deg); }

    .consult-header { margin-bottom: 26px; text-align: left; }
    .consult-eyebrow {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 5px 12px; border-radius: 100px;
      background: rgba(37,99,235,0.08);
      color: #2563EB;
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 14px;
    }
    .consult-eyebrow-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #22c55e;
      animation: consultDot 1.8s ease-in-out infinite;
    }
    @keyframes consultDot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
    .consult-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 700;
      color: #0B1929; line-height: 1.2;
      margin: 0 0 6px;
    }
    .consult-subtitle {
      font-size: 0.9rem; color: #6B7280;
      line-height: 1.55; margin: 0;
    }

    .consult-options { display: flex; flex-direction: column; gap: 12px; }
    .consult-option {
      display: flex; align-items: center; gap: 14px;
      padding: 16px 18px;
      border: 1.5px solid #e5e7eb;
      border-radius: 14px;
      text-decoration: none;
      color: #0B1929;
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
      position: relative;
    }
    .consult-option:hover {
      border-color: #2563EB;
      background: linear-gradient(135deg, rgba(37,99,235,0.04), rgba(96,165,250,0.06));
      transform: translateY(-1px);
    }
    .consult-option-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 12px;
      background: linear-gradient(135deg, #2563EB, #60a5fa);
      color: #fff; font-size: 1.1rem;
    }
    .consult-option-text strong {
      display: block; font-size: 0.94rem;
      color: #0B1929; margin-bottom: 2px;
    }
    .consult-option-text span {
      font-size: 0.8rem; color: #6B7280;
    }
    .consult-option-arrow {
      margin-left: auto; color: #9ca3af;
      transition: color 0.2s, transform 0.2s;
      font-size: 1.2rem;
    }
    .consult-option:hover .consult-option-arrow {
      color: #2563EB; transform: translateX(3px);
    }

    .consult-footer {
      margin-top: 24px; padding-top: 20px;
      border-top: 1px solid #f3f4f6;
      font-size: 0.78rem; color: #9ca3af;
      text-align: center;
    }

    @media (prefers-reduced-motion: reduce) {
      .stat-card { transition: none !important; opacity: 1 !important; transform: none !important; }
      .ring-progress { transition: none !important; stroke-dashoffset: 88.4 !important; } /* ≈ 73% of 327 */
      .stats-mesh-1, .stats-mesh-2, .stats-mesh-3, .stats-headline-accent { animation: none !important; }
      .stat-visible .pill-1, .stat-visible .pill-2, .stat-visible .pill-highlight,
      .stat-visible .cal-day, .stat-visible .clock-hand-min, .stat-visible .clock-hand-hour,
      .stat-visible .person, .stat-visible .person-fading { animation: none !important; }
    }

    /* ==================================================================
       Marketing 2026-04 update — comparison, why-pharmacist, callout,
       hero source line, demo checklist. All token-driven; no new fonts
       or icon libraries. Mobile-tested at 375px. Sectioned by feature.
       ================================================================== */

    /* Hero stat source footnote — sits under the stat row, before the
       trust line. Plain neutral text, low visual weight. */
    .hero-stat-source {
      margin-top: 0.6rem;
      font-size: 0.78rem;
      color: var(--text-4);
      letter-spacing: 0.01em;
    }

    /* ── Comparison section ("We're not software") ─────────────────── */
    .compare-section { padding: 5rem 0 4rem; }
    .compare-table-wrap {
      margin-top: 2.25rem;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border-radius: var(--radius-lg);
      background: var(--surface);
      border: 1px solid var(--hairline);
      box-shadow: var(--shadow-sm);
    }
    .compare-table {
      width: 100%;
      min-width: 720px;
      border-collapse: collapse;
      font-size: 0.92rem;
    }
    /* Header + body cells share padding (14/16) so rows feel even and
       vertical-align: middle keeps badges/icons centered against the
       row-header text. */
    .compare-table thead th {
      text-align: left;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-3);
      padding: 14px 16px;
      background: var(--surface-sunk);
      border-bottom: 1px solid var(--hairline);
    }
    .compare-table thead th.compare-col-us {
      color: var(--blue);
      background: rgba(59, 130, 246, 0.10);
      font-size: 0.88rem;
      border-top: 3px solid var(--blue-2);
      box-shadow: inset 0 -1px 0 var(--blue-dim);
    }
    /* Inline star prefix on the RxGranted header — keeps the header
       to a single line that matches the visual rhythm of the other
       columns. The blue column treatment alone signals "this is us." */
    .compare-col-us-star {
      color: var(--blue-2);
      margin-right: 0.4rem;
      font-size: 0.95em;
    }
    .compare-table tbody th {
      text-align: left;
      font-weight: 600;
      color: var(--text);
      padding: 14px 16px;
      width: 24%;
      border-bottom: 1px solid var(--border);
      vertical-align: middle;
    }
    /* All body cells share left-alignment so multi-word values
       ("A pharmacist on retainer", "Free + your staff's hours per
       case") read cleanly across the row. */
    .compare-table tbody td {
      text-align: left;
      padding: 14px 16px;
      color: var(--text-2);
      font-weight: 400;
      border-bottom: 1px solid var(--border);
      vertical-align: middle;
    }
    .compare-table tbody td.compare-col-us {
      background: rgba(59, 130, 246, 0.07);
      color: var(--text);
      font-weight: 600;
      border-left: 1px solid rgba(59, 130, 246, 0.15);
      border-right: 1px solid rgba(59, 130, 246, 0.15);
    }
    .compare-table tbody tr:last-child th,
    .compare-table tbody tr:last-child td { border-bottom: 0; }
    /* Closing rule for the RxGranted column — keeps the column visually
       sealed at the bottom even though the row's bottom border is gone.
       Matches the new 1px / 0.15 side-rail weight. */
    .compare-table tbody tr:last-child td.compare-col-us {
      border-bottom: 1px solid rgba(59, 130, 246, 0.15);
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }
    .compare-yes {
      width: 16px; height: 16px;
      color: var(--green);
      vertical-align: -3px;
      margin-right: 0.3rem;
    }
    /* Status pills — "No" and "Sometimes" share the same shape, sizing,
       and weight so a quick scan reads them as the same KIND of value
       (a status answer), differentiated only by color/severity. */
    .compare-no,
    .compare-meh {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0.25rem 0.75rem;
      font-size: 0.82rem;
      font-weight: 500;
      border-radius: var(--radius-pill);
      line-height: 1.4;
    }
    .compare-no {
      color: var(--red);
      background: rgba(239, 68, 68, 0.10);
    }
    .compare-meh {
      color: var(--text-3);
      background: rgba(148, 163, 184, 0.12);
    }
    .compare-no i,
    .compare-no svg {
      width: 14px; height: 14px;
      color: inherit;
    }
    /* "Not applicable" cells (bottom row's competitor columns) — render
       a muted em-dash centered horizontally inside the cell. */
    .compare-dash {
      display: inline-block;
      color: var(--text-4);
      font-size: 1.1rem;
      line-height: 1;
      letter-spacing: 0;
    }
    .compare-line {
      text-align: center;
      margin: 2rem auto 0;
      max-width: 720px;
      color: var(--text-2);
      font-size: 1rem;
    }
    .compare-clarity {
      max-width: 820px;
      margin: 1.5rem auto 0;
      padding: 1.5rem 1.75rem;
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }
    /* Section h2 — subtle text gradient (dark → blue). The
       background-clip:text trick has solid fallback color in legacy
       browsers (the var(--text) base color shows through). */
    .compare-section .section-head h2 {
      background: linear-gradient(135deg, var(--text) 0%, var(--blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Row entrance animation — staggered fade+rise. Plays on render
       (the section is below the fold for most users; CSS animations
       run when the element first paints into view). */
    @keyframes rowSlideIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .compare-table tbody tr {
      animation: rowSlideIn 0.35s ease both;
    }
    .compare-table tbody tr:nth-child(1) { animation-delay: 0.05s; }
    .compare-table tbody tr:nth-child(2) { animation-delay: 0.10s; }
    .compare-table tbody tr:nth-child(3) { animation-delay: 0.15s; }
    .compare-table tbody tr:nth-child(4) { animation-delay: 0.20s; }
    .compare-table tbody tr:nth-child(5) { animation-delay: 0.25s; }
    .compare-table tbody tr:nth-child(6) { animation-delay: 0.30s; }

    /* Numbered stepper — replaces the old .compare-clarity-flow.
       Each step has a circled number, a bold label, and a sub-label. */
    .compare-stepper {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem 0.75rem;
    }
    .compare-step {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex: 1;
      min-width: 180px;
    }
    .compare-step-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--blue-2);
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(37, 99, 235, 0.20);
    }
    .compare-step-body {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }
    .compare-step-body strong {
      color: var(--text);
      font-weight: 600;
      font-size: 0.93rem;
    }
    .compare-step-body span {
      color: var(--text-3);
      font-size: 0.8rem;
    }
    .compare-step-arrow {
      color: var(--blue-2);
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .compare-step-arrow svg,
    .compare-step-arrow i {
      width: 16px;
      height: 16px;
    }

    .compare-clarity-sub {
      margin-top: 0.85rem;
      font-size: 0.88rem;
      color: var(--text-3);
      text-align: center;
    }

    @media (max-width: 640px) {
      .compare-stepper { flex-direction: column; align-items: flex-start; }
      .compare-step-arrow { transform: rotate(90deg); }
    }

    /* Reduced motion — skip the row entrance + step shadow pulse. */
    @media (prefers-reduced-motion: reduce) {
      .compare-table tbody tr {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }

    /* ── Why a pharmacist section ──────────────────────────────────── */
    .why-pharm-section { padding: 4.5rem 0 4rem; }
    .why-pharm-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      margin-top: 2rem;
    }
    .why-pharm-item {
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.5rem 1.4rem;
      box-shadow: var(--shadow-xs);
      transition: box-shadow 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth);
    }
    .why-pharm-item:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-1px);
    }
    .why-pharm-icon {
      width: 36px; height: 36px;
      border-radius: var(--radius-sm);
      background: var(--blue-dim);
      color: var(--blue-2);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 0.85rem;
    }
    .why-pharm-icon svg { width: 18px; height: 18px; }
    .why-pharm-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 0.4rem;
      line-height: 1.35;
    }
    .why-pharm-item p {
      font-size: 0.92rem;
      color: var(--text-2);
      line-height: 1.55;
    }
    .why-pharm-closer {
      margin-top: 2rem;
      text-align: center;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.15rem;
      color: var(--text);
    }

    /* Denial callout — sits inside the "Why a pharmacist" section. */
    .denial-callout {
      margin-top: 2rem;
      padding: 1.5rem 1.75rem;
      background: var(--surface);
      border: 1px solid var(--red-dim);
      border-left: 3px solid var(--red);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-xs);
    }
    .denial-callout-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 0.7rem;
    }
    .denial-callout-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.55rem 1.25rem;
    }
    .denial-callout-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      font-size: 0.91rem;
      color: var(--text-2);
      line-height: 1.5;
    }
    .denial-callout-list svg {
      width: 16px; height: 16px;
      color: var(--red);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .denial-callout-sub {
      margin-top: 1rem;
      font-size: 0.88rem;
      color: var(--text-3);
      font-style: italic;
    }

    /* ── Demo: 2-col output (letter + checklist) ───────────────────── */
    .demo-output {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 1.5rem;
      align-items: start;
    }
    .demo-output > .demo-viewport { min-width: 0; }

    /* Pharmacist Verification Checklist card — matches viewport
       aesthetic (light surface, soft border, subtle shadow). */
    .demo-checklist {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--hairline);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
      padding: 1.4rem 1.5rem 1.3rem;
      min-height: 320px;
      display: flex;
      flex-direction: column;
    }
    .demo-checklist[hidden] { display: none; }
    .demo-checklist-head {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text);
      padding-bottom: 0.55rem;
      border-bottom: 1px solid var(--hairline);
    }
    .demo-checklist-icon {
      width: 22px; height: 22px;
      display: inline-flex;
      align-items: center; justify-content: center;
      border-radius: var(--radius-pill);
      background: rgba(16,185,129,0.12);
      color: var(--green);
      font-size: 0.85rem;
      font-weight: 800;
    }
    .demo-checklist-sub {
      margin: 0.45rem 0 0.85rem;
      font-size: 0.78rem;
      color: var(--text-3);
      letter-spacing: 0.02em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .demo-checklist-items {
      list-style: none;
      padding: 0;
      margin: 0;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }
    .demo-checklist-item {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      font-size: 0.84rem;
      color: var(--text-2);
      line-height: 1.5;
      font-family: var(--font-mono);
    }
    .demo-check {
      flex-shrink: 0;
      width: 18px; height: 18px;
      display: inline-flex;
      align-items: center; justify-content: center;
      border-radius: 4px;
      background: rgba(16,185,129,0.14);
      color: var(--green);
      font-size: 0.78rem;
      font-weight: 700;
      margin-top: 1px;
    }
    .demo-checklist-text { min-width: 0; word-break: break-word; }
    .demo-checklist-footer {
      margin-top: 0.85rem;
      padding-top: 0.6rem;
      border-top: 1px dashed var(--border);
      font-size: 0.76rem;
      color: var(--text-3);
      font-style: italic;
    }

    @media (max-width: 900px) {
      .demo-output { grid-template-columns: 1fr; }
      .demo-checklist { min-height: 0; }
    }

    @media (max-width: 720px) {
      .compare-table { min-width: 640px; }
      .why-pharm-grid { grid-template-columns: 1fr; }
      .denial-callout-list { grid-template-columns: 1fr; }
    }

    /* Reduced-motion: skip the checklist stagger fade. */
    @media (prefers-reduced-motion: reduce) {
      .demo-checklist-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

    /* sr-only utility (for the "No" labels in the comparison table) */
    .sr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
      border: 0;
    }

