/* self-hosted variable fonts — no CDN, consistent across every page */
    @font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url('fonts/inter-var.woff2') format('woff2');}
    @font-face{font-family:'JetBrains Mono';font-style:normal;font-weight:100 800;font-display:swap;src:url('fonts/jetbrains-mono-var.woff2') format('woff2');}
    /* ── Reset & Base ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg-deep:      #080d18;
      --bg-mid:       #0d1628;
      --bg-panel:     rgba(13, 22, 40, 0.72);
      --bg-glass:     rgba(255,255,255,0.035);
      --border:       rgba(54, 214, 195, 0.14);
      --border-faint: rgba(255,255,255,0.07);
      --teal:         #36d6c3;
      --teal-light:   #5fe0d0;
      --teal-dim:     rgba(54, 214, 195, 0.18);
      --teal-glow:    rgba(54, 214, 195, 0.28);
      --text:         #e8eef8;
      --text-muted:   #7a8fb5;
      --text-dim:     #6b81a8; /* a11y: was #3e5070 (~2.3:1, failed WCAG AA); now 4.9:1 on bg */
      --code-bg:      rgba(0,0,0,0.45);
      --radius:       12px;
      --radius-sm:    8px;
      --radius-lg:    18px;
    }

    html { scroll-behavior: smooth; overflow-x: clip; }

    /* a11y: honor reduced-motion — kill the scroll-glide, glow-pulse, and fade-ins */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
      .fade-in { opacity: 1 !important; transform: none !important; }
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg-deep);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Radial background glows ────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      top: -30vh; left: 50%;
      transform: translateX(-50%);
      width: 900px; height: 600px;
      background: radial-gradient(ellipse at center, rgba(54,214,195,0.12) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    body::after {
      content: '';
      position: fixed;
      bottom: 0; right: -20vw;
      width: 700px; height: 700px;
      background: radial-gradient(ellipse at center, rgba(30,60,120,0.18) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }

    /* ── Utilities ──────────────────────────────────────────────────── */
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .mono { font-family: 'JetBrains Mono', monospace; }

    .badge {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px; font-weight: 500;
      color: var(--teal);
      background: var(--teal-dim);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 4px 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .section-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px; letter-spacing: 0.14em;
      color: var(--teal); text-transform: uppercase;
      margin-bottom: 12px;
    }

    .glass-panel {
      background: var(--bg-glass);
      border: 1px solid var(--border-faint);
      border-radius: var(--radius-lg);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    /* ── Scroll fade-in ─────────────────────────────────────────────── */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: none;
    }
    .fade-in.delay-1 { transition-delay: 0.1s; }
    .fade-in.delay-2 { transition-delay: 0.2s; }
    .fade-in.delay-3 { transition-delay: 0.3s; }
    .fade-in.delay-4 { transition-delay: 0.4s; }
    .fade-in.delay-5 { transition-delay: 0.5s; }
    .fade-in.delay-6 { transition-delay: 0.6s; }

    /* ══════════════════════════════════════════════════════════════════
       NAV
    ══════════════════════════════════════════════════════════════════ */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(8, 13, 24, 0.82);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-faint);
    }
    .nav-inner {
      display: flex; align-items: center;
      max-width: 1160px; margin: 0 auto; padding: 0 24px;
      height: 62px;
      gap: 0;
    }
    .nav-brand {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-wordmark {
      font-size: 17px; font-weight: 700;
      color: var(--text);
      letter-spacing: -0.02em;
    }
    .nav-links {
      display: flex; align-items: center; gap: 4px;
      margin-left: 40px;
      list-style: none;
    }
    .nav-links a {
      display: block; padding: 6px 14px;
      font-size: 14px; font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      border-radius: var(--radius-sm);
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--text); background: var(--bg-glass); }

    .nav-cta {
      margin-left: auto;
    }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 600;
      padding: 9px 20px;
      border-radius: var(--radius-sm);
      cursor: pointer; text-decoration: none;
      transition: all 0.2s ease;
      border: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      color: #080d18;
      box-shadow: 0 0 24px rgba(54,214,195,0.35);
    }
    .btn-primary:hover {
      box-shadow: 0 0 36px rgba(54,214,195,0.55);
      transform: translateY(-1px);
    }
    .btn-secondary {
      background: transparent;
      color: var(--teal);
      border: 1px solid var(--border);
    }
    .btn-secondary:hover {
      background: var(--teal-dim);
      border-color: var(--teal);
    }
    .btn-lg { font-size: 15px; padding: 13px 28px; border-radius: 10px; }
    .btn-sm { font-size: 13px; padding: 7px 16px; }

    /* ══════════════════════════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════════════════════════ */
    #hero {
      position: relative; z-index: 1;
      padding: 100px 0 80px;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-kicker {
      display: inline-flex; align-items: center; gap: 8px;
      margin-bottom: 24px;
    }
    .hero-kicker-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 8px var(--teal);
      animation: pulse-dot 2.4s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal); }
      50% { opacity: 0.5; box-shadow: 0 0 16px var(--teal); }
    }
    .hero-h1 {
      font-size: clamp(40px, 5vw, 62px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: var(--text); /* off-white, not pure #fff — avoids halation on near-black */
      margin-bottom: 22px;
    }
    .hero-h1 span {
      background: linear-gradient(90deg, var(--teal), var(--teal-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 480px;
      margin-bottom: 38px;
    }
    .hero-ctas {
      display: flex; align-items: center; gap: 14px;
      flex-wrap: wrap;
    }
    /* Glow pulse on primary CTA */
    .btn-glow {
      animation: glow-pulse 3s ease-in-out infinite;
    }
    @keyframes glow-pulse {
      0%, 100% { box-shadow: 0 0 24px rgba(54,214,195,0.35); }
      50% { box-shadow: 0 0 44px rgba(54,214,195,0.65), 0 0 80px rgba(54,214,195,0.18); }
    }

    /* ── Console mock window ─────────────────────────────────────────── */
    .console-mock {
      background: linear-gradient(170deg, #0e1a2e 0%, #0a1220 100%);
      border: 1px solid rgba(54,214,195,0.22);
      border-radius: 14px;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 40px 80px rgba(0,0,0,0.7),
        0 0 60px rgba(54,214,195,0.08);
    }
    .mock-titlebar {
      display: flex; align-items: center; gap: 8px;
      padding: 12px 16px;
      background: rgba(0,0,0,0.3);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mock-dot {
      width: 11px; height: 11px;
      border-radius: 50%;
    }
    .mock-dot.red    { background: #ff5f57; }
    .mock-dot.yellow { background: #febc2e; }
    .mock-dot.green  { background: #28c840; }
    .mock-title {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: var(--text-dim);
      margin-left: 8px;
    }
    .mock-body {
      display: flex;
      height: 320px;
    }
    .mock-sidebar {
      width: 130px;
      flex-shrink: 0;
      background: rgba(0,0,0,0.18);
      border-right: 1px solid rgba(255,255,255,0.05);
      padding: 14px 0;
    }
    .mock-nav-item {
      display: flex; align-items: center; gap: 8px;
      padding: 7px 14px;
      font-size: 12px;
      color: var(--text-dim);
      cursor: default;
      border-radius: 0;
      transition: background 0.15s;
    }
    .mock-nav-item.active {
      background: rgba(54,214,195,0.1);
      color: var(--teal);
      border-right: 2px solid var(--teal);
    }
    .mock-nav-item svg { flex-shrink: 0; }
    .mock-content {
      flex: 1;
      padding: 16px;
      overflow: hidden;
    }
    .mock-content-title {
      font-size: 13px; font-weight: 600;
      color: var(--text);
      margin-bottom: 12px;
    }
    .mock-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 14px;
    }
    .mock-stat {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px;
      padding: 10px 10px 8px;
    }
    .mock-stat-val {
      font-size: 18px; font-weight: 700;
      color: var(--teal);
      font-family: 'JetBrains Mono', monospace;
      line-height: 1;
    }
    .mock-stat-label {
      font-size: 10px;
      color: var(--text-dim);
      margin-top: 4px;
    }
    .mock-bar-section { margin-top: 6px; }
    .mock-bar-label {
      font-size: 10px;
      color: var(--text-dim);
      margin-bottom: 4px;
      font-family: 'JetBrains Mono', monospace;
    }
    .mock-bar-row {
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 6px;
    }
    .mock-bar-track {
      flex: 1; height: 5px;
      background: rgba(255,255,255,0.06);
      border-radius: 3px;
      overflow: hidden;
    }
    .mock-bar-fill {
      height: 100%;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--teal), var(--teal-light));
    }
    .mock-bar-pct {
      font-size: 10px; color: var(--text-dim);
      font-family: 'JetBrains Mono', monospace;
      width: 28px; text-align: right;
    }
    .mock-sparkline {
      margin-top: 10px;
    }
    .mock-spark-label {
      font-size: 10px; color: var(--text-dim);
      font-family: 'JetBrains Mono', monospace;
      margin-bottom: 4px;
    }
    .mock-spark-bars {
      display: flex; align-items: flex-end; gap: 3px;
      height: 30px;
    }
    .mock-spark-bar {
      flex: 1; border-radius: 2px 2px 0 0;
      background: linear-gradient(180deg, var(--teal-light), var(--teal));
      opacity: 0.7;
    }
    .mock-agent-dots {
      display: flex; gap: 6px; align-items: center;
      margin-top: 8px;
    }
    .mock-agent-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 6px var(--teal);
    }
    .mock-agent-dot.dim { background: var(--text-dim); box-shadow: none; opacity: 0.4; }
    .mock-agent-label { font-size: 10px; color: var(--text-dim); }

    /* ══════════════════════════════════════════════════════════════════
       WHAT IS HIVEMIND
    ══════════════════════════════════════════════════════════════════ */
    #what {
      position: relative; z-index: 1;
      padding: 110px 0 80px;
    }
    .what-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .section-h2 {
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--text);
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 520px;
      margin: 0 auto;
    }
    /* Architecture diagram — vertical stack */
    .arch-diagram {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      max-width: 380px;
      margin: 0 auto;
    }
    .arch-block {
      text-align: center;
      padding: 28px 32px;
      width: 100%;
    }
    .arch-block.glass-panel {
      border-radius: var(--radius-lg);
    }
    .arch-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
      background: var(--teal-dim);
    }
    .arch-title {
      font-size: 15px; font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
    }
    .arch-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }
    /* Vertical connector between tiers */
    .arch-connector {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      padding: 6px 0;
    }
    .arch-connector-line {
      width: 1.5px;
      height: 28px;
      background: linear-gradient(180deg, var(--teal) 0%, rgba(54,214,195,0.3) 100%);
    }
    .arch-connector-arrow {
      color: var(--teal);
      font-size: 14px;
      line-height: 1;
      opacity: 0.7;
    }
    /* Keep old .arch-arrow hidden in case stray refs exist */
    .arch-arrow { display: none; }
    .arch-split {
      display: flex; flex-direction: column; gap: 12px;
      align-items: center;
    }
    .arch-label-free {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; letter-spacing: 0.1em;
      color: var(--teal); text-transform: uppercase;
      background: var(--teal-dim);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 2px 10px;
      margin-top: 8px;
    }
    .arch-label-pro {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; letter-spacing: 0.1em;
      color: #febc2e; text-transform: uppercase;
      background: rgba(254,188,46,0.1);
      border: 1px solid rgba(254,188,46,0.2);
      border-radius: 100px;
      padding: 2px 10px;
      margin-top: 8px;
    }

    /* ══════════════════════════════════════════════════════════════════
       HOW TO GET IT
    ══════════════════════════════════════════════════════════════════ */
    #get {
      position: relative; z-index: 1;
      padding: 80px 0 90px;
    }
    .get-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 52px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }
    .get-card {
      background: var(--bg-glass);
      border: 1px solid var(--border-faint);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: border-color 0.2s, transform 0.2s;
      display: flex;
      flex-direction: column;
    }
    .get-card:hover {
      border-color: var(--border);
      transform: translateY(-3px);
    }
    .get-card-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--teal-dim);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .get-card h3 {
      font-size: 17px; font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }
    .get-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .code-snippet {
      background: var(--code-bg);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-sm);
      padding: 12px 14px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      color: var(--teal-light);
      overflow-x: auto;
      margin-bottom: 22px;
      white-space: pre;
    }
    .code-snippet .comment { color: var(--text-dim); }
    .code-snippet .key { color: #7dd3fc; }
    .code-snippet .val { color: #86efac; }
    .code-snippet .str { color: #fbbf24; }
    .get-card .btn { width: 100%; justify-content: center; margin-top: auto; }

    /* ══════════════════════════════════════════════════════════════════
       INSTALL STEPS
    ══════════════════════════════════════════════════════════════════ */
    #install {
      position: relative; z-index: 1;
      padding: 80px 0 90px;
      background: linear-gradient(180deg, transparent 0%, rgba(13,22,40,0.4) 100%);
    }
    .install-steps {
      margin-top: 52px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .install-step {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 0 28px;
      position: relative;
    }
    .install-step + .install-step { margin-top: 0; }
    .step-left {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .step-num {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--bg-mid);
      display: flex; align-items: center; justify-content: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 16px; font-weight: 700;
      color: var(--teal);
      flex-shrink: 0;
      z-index: 1;
      position: relative;
    }
    .step-line {
      flex: 1;
      width: 1.5px;
      background: linear-gradient(180deg, var(--border) 0%, transparent 100%);
      margin: 8px 0;
      min-height: 40px;
    }
    .install-step:last-child .step-line { display: none; }
    .step-right {
      padding-bottom: 44px;
    }
    .step-right h3 {
      font-size: 18px; font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      padding-top: 9px;
    }
    .step-right p {
      font-size: 14px; color: var(--text-muted);
      margin-bottom: 14px;
      max-width: 62ch; /* a11y: was ~145 CPL on desktop (failed WCAG 1.4.8); cap the measure */
    }
    .os-chips {
      display: flex; gap: 8px; flex-wrap: wrap;
      margin-bottom: 14px;
    }
    .os-chip {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px; font-weight: 500;
      color: var(--text-muted);
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border-faint);
      border-radius: 100px;
      padding: 5px 12px;
    }
    .mode-chips {
      display: flex; gap: 8px; flex-wrap: wrap;
      margin-bottom: 14px;
    }
    .mode-chip {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 12px; font-weight: 500;
      color: var(--text-muted);
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border-faint);
      border-radius: var(--radius-sm);
      padding: 5px 12px;
      transition: all 0.2s;
    }
    .mode-chip.active {
      color: var(--teal);
      background: var(--teal-dim);
      border-color: var(--border);
    }

    /* ══════════════════════════════════════════════════════════════════
       DEBUG / PROVE / PURGE (replaces 7-card govern grid)
    ══════════════════════════════════════════════════════════════════ */
    #govern {
      position: relative; z-index: 1;
      padding: 80px 0 90px;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 52px;
    }
    .feature-card {
      background: var(--bg-glass);
      border: 1px solid var(--border-faint);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: border-color 0.2s, transform 0.2s, background 0.2s;
    }
    .feature-card:hover {
      border-color: var(--border);
      background: rgba(54,214,195,0.04);
      transform: translateY(-2px);
    }
    .feature-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: var(--teal-dim);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .feature-name {
      font-size: 20px; font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }
    .feature-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 18px;
    }
    .feature-views {
      display: flex; flex-wrap: wrap; gap: 6px;
    }
    .feature-view-pill {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; font-weight: 500;
      color: var(--teal);
      background: var(--teal-dim);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 3px 9px;
      letter-spacing: 0.04em;
    }

    /* ══════════════════════════════════════════════════════════════════
       PRICING
    ══════════════════════════════════════════════════════════════════ */
    #pricing {
      position: relative; z-index: 1;
      padding: 80px 0 100px;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 52px;
      align-items: start;
    }
    .pricing-card {
      background: var(--bg-glass);
      border: 1px solid var(--border-faint);
      border-radius: var(--radius-lg);
      padding: 34px 30px;
      position: relative;
    }
    .pricing-card.popular {
      border-color: var(--border);
      background: rgba(54,214,195,0.05);
      box-shadow: 0 0 40px rgba(54,214,195,0.1);
    }
    .popular-badge {
      position: absolute;
      top: -13px; left: 50%;
      transform: translateX(-50%);
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #080d18;
      background: linear-gradient(90deg, var(--teal), var(--teal-light));
      border-radius: 100px;
      padding: 4px 14px;
      white-space: nowrap;
    }
    .pricing-tier {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px; letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .pricing-name {
      font-size: 22px; font-weight: 800;
      color: var(--text);
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }
    .pricing-price {
      font-size: 40px; font-weight: 800;
      color: var(--text);
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 6px;
    }
    .pricing-price span {
      font-size: 15px; font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0;
    }
    .pricing-pitch {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.5;
    }
    .pricing-divider {
      height: 1px;
      background: var(--border-faint);
      margin-bottom: 24px;
    }
    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }
    .pricing-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--text-muted);
    }
    .check {
      flex-shrink: 0;
      width: 17px; height: 17px;
      border-radius: 50%;
      background: var(--teal-dim);
      display: inline-flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .pricing-card .btn { width: 100%; justify-content: center; }

    /* ══════════════════════════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════════════════════════ */
    footer {
      position: relative; z-index: 1;
      border-top: 1px solid var(--border-faint);
      padding: 60px 0 40px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 40px;
    }
    .footer-brand { }
    .footer-brand-row {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 14px;
    }
    .footer-tagline {
      font-size: 13px;
      color: var(--text-dim);
      line-height: 1.6;
      max-width: 260px;
    }
    .footer-made {
      font-size: 12px;
      color: var(--text-dim);
      margin-top: 16px;
      font-family: 'JetBrains Mono', monospace;
    }
    .footer-col h4 {
      font-size: 12px; font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col a {
      font-size: 14px;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--text-muted); }
    .footer-bottom {
      margin-top: 52px;
      padding-top: 24px;
      border-top: 1px solid var(--border-faint);
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-copy {
      font-size: 12px;
      color: var(--text-dim);
    }
    .footer-legal {
      display: flex; gap: 20px;
    }
    .footer-legal a {
      font-size: 12px;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-legal a:hover { color: var(--text-muted); }

    /* ══════════════════════════════════════════════════════════════════
       SECTION GUTTER DIVIDERS
    ══════════════════════════════════════════════════════════════════ */
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-faint) 30%, var(--border-faint) 70%, transparent);
      margin: 0 auto;
      max-width: 900px;
    }

    /* ══════════════════════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════════════════════ */
    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .console-mock { max-width: 520px; }
      .get-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; margin-top: 52px; }
      .features-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 680px) {
      /* iPhone: hide secondary nav links so brand + Apply CTA fit (was overflowing) */
      .nav-links { display: none; }
      .nav-inner { padding: 0 16px; }
      .nav-cta .btn { padding: 7px 12px; }
      /* iPhone: tighten the hero, stack CTAs full-width for big tap targets */
      #hero { padding: 52px 0 44px; }
      .hero-h1 { font-size: clamp(34px, 10vw, 44px); }
      .hero-sub { margin-bottom: 26px; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-ctas .btn { width: 100%; justify-content: center; }
      .features-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
    .beta-banner {
      display: block;
      background: rgba(251,191,36,0.08);
      border: 1px solid rgba(251,191,36,0.3);
      border-radius: 8px;
      padding: 9px 14px;
      font-size: 12.5px;
      line-height: 1.5;
      color: #fbbf24;
      margin-bottom: 14px;
    }
    .beta-banner strong { color: #fbbf24; font-weight: 700; }
    .badge-beta {
      display: inline-flex; align-items: center; gap: 4px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px; font-weight: 600;
      color: #fbbf24;
      background: rgba(251,191,36,0.10);
      border: 1px solid rgba(251,191,36,0.35);
      border-radius: 100px;
      padding: 2px 9px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      vertical-align: middle;
      margin-left: 6px;
    }
    .maturity-banner {
      display: block;
      background: rgba(251,191,36,0.08);
      border: 1px solid rgba(251,191,36,0.3);
      border-left: 3px solid #fbbf24;
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 12.5px;
      line-height: 1.5;
      color: #fbbf24;
      margin-bottom: 16px;
    }
    .maturity-banner strong { color: #fbbf24; font-weight: 700; }
