:root {
  /* deep space palette */
  --night-0: #05060f;     /* deepest */
  --night-1: #0a0d1f;
  --night-2: #11142b;
  --indigo:  #1a1f4a;
  --violet:  #2c1f5a;
  --electric: #4f7dff;
  --electric-2: #6d6dff;
  --cyan:    #58e0ff;
  --magenta: #c97cff;

  --ink-0: #ffffff;
  --ink-1: rgba(255,255,255,0.92);
  --ink-2: rgba(229,232,255,0.74);
  --ink-3: rgba(200,210,255,0.55);
  --ink-4: rgba(180,195,235,0.38);

  --glass-bg: rgba(255,255,255,0.04);
  --glass-bg-2: rgba(255,255,255,0.06);
  --glass-bg-strong: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.08);
  --glass-border-2: rgba(255,255,255,0.12);

  --shadow-card:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 0 0 1px rgba(255,255,255,0.05),
    0 30px 60px -30px rgba(0,0,5,0.6),
    0 12px 30px -16px rgba(10,15,40,0.6);

  --shadow-glow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 0 0 1px rgba(255,255,255,0.06),
    0 30px 80px -20px rgba(60,90,255,0.32),
    0 12px 30px -10px rgba(40,30,120,0.45);

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

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

html, body {
  background: #ffffff;
  color: #0a0d1f;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Page-level (non-card) text → black/dark on white body */
.hero h1, .block-title { color: #0a0d1f; }
.hero-sub, .block-deck { color: rgba(10,13,31,0.72); }
.signup-note { color: rgba(10,13,31,0.55); }
.signup {
  background: rgba(10,13,31,0.04);
  border-color: rgba(10,13,31,0.10);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 30px -10px rgba(60,90,255,0.18);
}
.signup input { color: #0a0d1f; }
.signup input::placeholder { color: rgba(10,13,31,0.45); }

/* Hero stat row sits outside cards — give it dark text */
.stat-card {
  background: rgba(10,13,31,0.03);
  border-color: rgba(10,13,31,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
}
.stat-card .num { color: #0a0d1f; }
.stat-card .num .unit { color: rgba(10,13,31,0.55); }
.stat-card .lbl { color: rgba(10,13,31,0.55); }

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* atmospheric backdrop — fixed, behind everything */
.backdrop {
  display: none;
}
.backdrop::before {
  /* fine grain noise via repeating gradient */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.04) 0.5px, transparent 0.6px),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,0.03) 0.5px, transparent 0.6px);
  background-size: 3px 3px, 5px 5px;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* ambient blobs */
.orbs { display: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.orb.o1 {
  width: 620px; height: 620px;
  top: -180px; left: -160px;
  background: radial-gradient(circle, #4f7dff 0%, rgba(79,125,255,0) 70%);
  animation: drift1 24s ease-in-out infinite alternate;
}
.orb.o2 {
  width: 720px; height: 720px;
  top: 280px; right: -260px;
  background: radial-gradient(circle, #8a4dff 0%, rgba(138,77,255,0) 70%);
  opacity: 0.45;
  animation: drift2 30s ease-in-out infinite alternate;
}
.orb.o3 {
  width: 540px; height: 540px;
  top: 1200px; left: 10%;
  background: radial-gradient(circle, #58e0ff 0%, rgba(88,224,255,0) 70%);
  opacity: 0.28;
  animation: drift3 28s ease-in-out infinite alternate;
}
.orb.o4 {
  width: 680px; height: 680px;
  bottom: 200px; right: 5%;
  background: radial-gradient(circle, #c97cff 0%, rgba(201,124,255,0) 70%);
  opacity: 0.32;
  animation: drift1 32s ease-in-out infinite alternate-reverse;
}
.orb.o5 {
  width: 500px; height: 500px;
  bottom: -120px; left: -100px;
  background: radial-gradient(circle, #4f7dff 0%, rgba(79,125,255,0) 70%);
  opacity: 0.4;
  animation: drift2 26s ease-in-out infinite alternate;
}
@keyframes drift1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(60px, 80px) scale(1.1); }
}
@keyframes drift2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-80px, 40px) scale(1.08); }
}
@keyframes drift3 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px, -60px) scale(1.05); }
}

/* faint grid lines for atmosphere */
.grid-overlay {
  display: none;
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}

::selection { background: var(--electric); color: white; }
a { color: inherit; text-decoration: none; }

/* ─── NAV — flat white, hairline on scroll, hide on down-scroll ─── */
.nav-shell {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 80;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: transform 0.32s ease, border-bottom-color 0.25s ease;
  will-change: transform;
}
.nav-shell.is-scrolled {
  border-bottom-color: rgba(10,13,31,0.08);
}
.nav-shell.is-hidden {
  transform: translateY(-100%);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px clamp(20px, 4vw, 56px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #003da4;
}
.brand-mark {
  width: 64px; height: 64px;
  display: inline-block;
  background: url('/qb-logo.png') center/contain no-repeat;
  flex: none;
}
.footer-mark .brand-mark { width: 56px; height: 56px; }
.brand i {
  font-style: normal;
  font-weight: 700;
  color: #ff8a4c;
  font-size: inherit;
}

.nav-links {
  display: flex;
  gap: 4px;
  font-size: 14px;
}
.nav-link {
  color: rgba(10,13,31,0.7);
  padding: 10px 16px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: #800000; background: rgba(10,13,31,0.05); }

.nav-cta {
  display: flex; align-items: center; gap: 6px;
}
.nav-ghost {
  font-size: 16px;
  color: rgba(10,13,31,0.7);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-ghost:hover { color: #0a0d1f; background: rgba(10,13,31,0.05); }
.nav-solid {
  font-size: 12px;
  color: #ffffff;
  background: linear-gradient(180deg, #1a1f4a, #0a0d1f);
  border: 1px solid rgba(10,13,31,0.18);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 500;
  transition: transform .2s, background .2s;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-solid:hover { transform: translateY(-1px); background: linear-gradient(180deg, #2c3068, #11142b); }
@media (max-width: 800px) { .nav-links { display: none; } }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Geist', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: linear-gradient(180deg, #9a1a1a 0%, #800000 100%);
  color: white;
  border-color: rgba(255,255,255,0.18);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 10px 28px rgba(0, 0, 0, 0.22),
    0 4px 10px rgba(0, 0, 0, 0.12);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #0a3a8a 0%, #002766 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 10px 28px rgba(0, 0, 0, 0.22),
    0 4px 10px rgba(0, 0, 0, 0.12);
}

.btn-glass {
  color: var(--ink-1);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.24); }

/* Secondary ghost button — on light body. Pairs with .btn-primary in .cta-row. */
.btn-secondary {
  background: transparent;
  color: #0a0d1f;
  border-color: rgba(10,13,31,0.22);
}
.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(10,13,31,0.04);
  border-color: rgba(10,13,31,0.36);
}
/* Inside the dark footer CTA card, secondary becomes a light-ghost variant */
.cta-row .btn-secondary {
  color: var(--ink-0);
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.cta-row .btn-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.75);
}

/* Small expectation-setter under CTA rows */
.cta-microcopy {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(10,13,31,0.55);
  text-align: center;
  letter-spacing: 0.005em;
}
.site-footer-cta .cta-microcopy { color: rgba(229,232,255,0.62); }

.btn-arrow { width: 14px; height: 14px; transition: transform .2s; }
.btn:hover .btn-arrow { transform: translate(2px, -2px); }

/* Nav emphasis for the primary action link (The Diagnostic) */
.nav-link.is-primary {
  color: #0a0d1f;
  background: rgba(10,13,31,0.05);
  font-weight: 500;
}
.nav-link.is-primary:hover {
  color: #ffffff;
  background: linear-gradient(180deg, #9a1a1a 0%, #800000 100%);
}

/* Permanent orange pill — The Assured AI newsletter (top nav + footer nav).
   Always rendered as a filled bubble, brand-orange, darker on hover. */
.newsletter-pill {
  color: #ffffff !important;
  background: #ff8a4c !important;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  transition: background .15s ease, transform .15s ease;
  white-space: nowrap;
}
.newsletter-pill:hover {
  background: #e57530 !important;
  transform: translateY(-1px);
}
/* Inside the dark footer nav, keep the pill self-asserting */
.site-footer-nav .newsletter-pill {
  color: #ffffff !important;
}

/* ─── PILL ─── */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  backdrop-filter: blur(10px);
}
.pill .dot {
  position: relative;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan) 0%, var(--electric) 60%);
  box-shadow: 0 0 10px var(--electric);
}
.pill .dot::after {
  content: "";
  position: absolute; inset: 5px;
  background: var(--night-1);
  border-radius: 50%;
}
.pill b { color: var(--ink-0); font-weight: 500; }

/* ─── PAGE ─── */
.page {
  max-width: var(--max);
  margin: 0 auto;
  /* 52px + the 88px body padding components.js adds with the injected nav = 140px
     total clearance (look unchanged). All pages now use the injected nav. */
  padding: 52px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
  z-index: 1;
}

/* ─── EYEBROW ─── */
.eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90deg, #1a56c4 0%, #c25410 100%);
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-flex; align-items: center;
}
.eyebrow.eyebrow-blue {
  background: linear-gradient(90deg, #1a56c4 0%, #001f5c 100%);
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 19px;
  padding: 12px 12px;
  /* 55 margin + 20 flex gap on .block-head = 75px visual to the H2 */
  margin-bottom: 55px;
}

/* Per-section above-pillbox spacing tweaks (.page gap is 120 baseline) */
[data-screen-label="02 The actual problem"] { margin-top: -50px; }
[data-screen-label="03 What Quantum Beard does"] { margin-top: -25px; }
[data-screen-label="04 Who this is for"] { margin-top: -50px; }

/* Center all text inside the three problem-section cards */
[data-screen-label="02 The actual problem"] .glass {
  text-align: center;
  align-items: center;
}
[data-screen-label="02 The actual problem"] .glass .card-icon {
  margin-left: auto;
  margin-right: auto;
}

/* Constrain section-02 card grid and section-03 cap-list to pillbox width */
[data-screen-label="02 The actual problem"] .hero-stats {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
[data-screen-label="03 What Quantum Beard does"] .cap-list {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── HERO ─── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding-top: 24px;
  position: relative;
}
.hero h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(33px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #0a0d1f;
  max-width: 16ch;
  margin: 0 auto;
}
.hero h1 em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(110deg, #58e0ff 0%, #6d6dff 35%, #c97cff 70%, #ff8df0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
  padding: 0 0.05em;
}

/* per-emphasis flat color palette */
em.g1 { background: none !important; -webkit-background-clip: unset !important; background-clip: unset !important; color: #ff8a4c !important; }
em.g2 { background: none !important; -webkit-background-clip: unset !important; background-clip: unset !important; color: #ff8a4c !important; }
em.g3 { background: none !important; -webkit-background-clip: unset !important; background-clip: unset !important; color: #ff8a4c !important; }
em.g4 { background: none !important; -webkit-background-clip: unset !important; background-clip: unset !important; color: #ff8a4c !important; }
em.g5 { background: none !important; -webkit-background-clip: unset !important; background-clip: unset !important; color: #ff8a4c !important; }
em.g6 { background: none !important; -webkit-background-clip: unset !important; background-clip: unset !important; color: #ff8a4c !important; }
em.g7 { background: none !important; -webkit-background-clip: unset !important; background-clip: unset !important; color: #ff8a4c !important; }
.hero-sub {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(10,13,31,0.72);
  font-weight: 500;
}
.hero-sub-secondary {
  max-width: 56ch;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(10,13,31,0.5);
  font-style: italic;
  letter-spacing: 0.005em;
}

/* hero CTA panel — translucent floating */
.signup {
  margin: 14px auto 0;
  width: 100%;
  max-width: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}
.signup input {
  flex: 1;
  background: rgba(10,13,31,0.04);
  border: 1px solid rgba(10,13,31,0.10);
  outline: none;
  color: #0a0d1f;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(10,13,31,0.04);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.signup input:focus {
  border-color: rgba(60,90,255,0.45);
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(10,13,31,0.04), 0 0 0 4px rgba(60,90,255,0.12);
}
.signup input::placeholder { color: rgba(10,13,31,0.45); }
.signup .btn { padding: 14px 26px; font-size: 15px; }
.signup-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(10,13,31,0.55);
  letter-spacing: 0.04em;
}

/* hero stat row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 880px;
  margin: 32px auto 0;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  text-align: left;
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #800000, transparent);
}
.stat-card .num {
  font-family: 'Geist', sans-serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #0a0d1f;
  display: flex; align-items: baseline; gap: 6px;
}
.stat-card .num .unit { font-size: 18px; color: rgba(10,13,31,0.55); }
.stat-card .lbl {
  margin-top: 8px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(10,13,31,0.55);
}
@media (max-width: 720px) { .hero-stats { grid-template-columns: 1fr; } }

/* ─── BLOCK HEAD ─── */
.block-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}
.block-head.left { text-align: left; align-items: flex-start; margin: 0; }
.block-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.25vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #0a0d1f;
}
.block-title em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(110deg, #58e0ff, #6d6dff 50%, #c97cff);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.title-prefix {
  display: inline;
  color: #3c5aff;
  font-weight: 700;
  margin-right: 0.25em;
}
.block-deck {
  font-size: 17px;
  color: #0a0d1f;
  font-weight: 500;
  line-height: 1.6;
  max-width: 58ch;
}

/* ─── GLASS PANEL — base for all cards ─── */
.glass {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    linear-gradient(180deg, #11142b, #0a0d1f);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  padding: 32px;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), border-color .35s, background .35s;
}
.glass:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    linear-gradient(180deg, #11142b, #0a0d1f);
}
.glass::before {
  content: "";
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140,170,255,0.45), transparent);
  border-radius: 1px;
}

/* card pieces */
.card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 22px;
  position: relative;
}
.card-icon::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--electric), transparent 50%, var(--magenta));
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
  filter: blur(8px);
}
.glass:hover .card-icon::after { opacity: 0.5; }
.card-icon svg { width: 22px; height: 22px; stroke: var(--ink-0); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card-icon.icon-cream svg { stroke: oklch(60% 0.26 28); stroke-width: 2.2; }
.card-icon.icon-mint  svg { stroke: oklch(62% 0.24 160); stroke-width: 2.2; }
.card-icon.icon-blue  svg { stroke: oklch(52% 0.28 265); stroke-width: 2.2; }
.card-icon.icon-lilac svg { stroke: oklch(55% 0.30 320); stroke-width: 2.2; }

.card-title {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink-0);
}
.card-body {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 500;
}
.card-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.card-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 8px var(--electric);
}

/* ─── BLOCK: WHAT — comparison: old vs new ─── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare .glass { padding: 38px 36px; }
.compare-old {
  background: #000000;
  border-color: rgba(255,255,255,0.12);
}
.compare-old .card-tag { color: rgba(255,255,255,0.7) !important; }
.compare-old li { color: #f2f2f2 !important; }
.compare-old li svg path { stroke: #e34b4b !important; }
.compare-old li { border-top-color: rgba(255,255,255,0.12) !important; }
.compare-new li { color: #f2f2f2 !important; }
.compare-new .card-tag { color: rgba(255,255,255,0.85) !important; }
.compare-new {
  background:
    linear-gradient(180deg,
      rgba(79,125,255,0.12),
      rgba(140,80,255,0.06)),
    linear-gradient(180deg, #11142b, #0a0d1f);
  border-color: rgba(140,170,255,0.22);
  box-shadow:
    var(--shadow-glow);
}
.compare h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--ink-0);
  margin-bottom: 6px;
}
.compare h3 em {
  font-style: normal;
}
.compare ul { list-style: none; margin-top: 24px; }
.compare li {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
}
.compare-old li { color: var(--ink-3); }
.compare li:first-child { border-top: none; }
.compare li svg { width: 16px; height: 16px; flex: none; margin-top: 4px; }
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }

/* ─── BLOCK: AUDIENCE — 3 cards ─── */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience .glass {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.audience .card-body { margin-top: auto; padding-top: 18px; }
.audience h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink-0);
  max-width: 12ch;
}
.audience h3 em {
  font-style: normal;
  background: linear-gradient(110deg, var(--cyan), var(--electric-2));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.audience .card-tag::before { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.audience .glass:nth-child(2) .card-tag::before { background: var(--electric-2); box-shadow: 0 0 8px var(--electric-2); }
.audience .glass:nth-child(3) .card-tag::before { background: var(--magenta); box-shadow: 0 0 8px var(--magenta); }
@media (max-width: 880px) { .audience { grid-template-columns: 1fr; } }

/* ─── BLOCK: FEATURES — 2 large + 4 small ─── */
.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feat-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feat-large .glass {
  padding: 44px 40px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feat-large h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-0);
  max-width: 14ch;
}
.feat-large h3 em {
  font-style: normal;
  color: var(--cyan);
}
.feat-large p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 500;
  max-width: 36ch;
}

.feat-visual {
  margin-top: 32px;
  flex: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.05));
  border: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  display: flex; align-items: end; gap: 6px;
  min-height: 140px;
  position: relative;
  overflow: hidden;
}
.feat-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(79,125,255,0.06), transparent 50%);
}
.feat-visual .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--cyan), var(--electric));
  border-radius: 3px;
  opacity: 0.85;
  position: relative;
  box-shadow: 0 0 10px rgba(79,125,255,0.5);
}

.feat-orbit {
  margin-top: 32px;
  flex: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.05));
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  display: grid; place-items: center;
  min-height: 200px;
  overflow: hidden;
}
.feat-orbit::after {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,170,255,0.18), transparent 70%);
  filter: blur(20px);
}
.feat-orbit .ring {
  position: absolute;
  border: 1px dashed rgba(160,180,255,0.25);
  border-radius: 50%;
}
.feat-orbit .ring.r1 { width: 90px; height: 90px; }
.feat-orbit .ring.r2 { width: 160px; height: 160px; }
.feat-orbit .ring.r3 { width: 230px; height: 230px; }
.feat-orbit .core {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 18px var(--cyan), 0 0 32px var(--electric);
  z-index: 2;
}
.feat-orbit .moon {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: orbit 9s linear infinite;
}
.feat-orbit .moon.m2 {
  width: 6px; height: 6px;
  background: var(--magenta);
  box-shadow: 0 0 10px var(--magenta);
  animation: orbit2 14s linear infinite reverse;
}
@keyframes orbit {
  from { transform: rotate(0) translateX(80px) rotate(0); }
  to { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}
@keyframes orbit2 {
  from { transform: rotate(0) translateX(115px) rotate(0); }
  to { transform: rotate(360deg) translateX(115px) rotate(-360deg); }
}

.feat-small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-small .glass { padding: 28px 24px; }
.feat-small .card-title { font-size: 17px; line-height: 1.25; }
.feat-small .card-body { font-size: 13.5px; margin-top: 10px; }

/* Hero step cards — white panels, no icon chip */
.hero-stats.feat-small .glass {
  background: #ffffff;
  border: 1px solid rgba(10,13,31,0.10);
}
.hero-stats.feat-small .glass::before,
.hero-stats.feat-small .glass::after { display: none; }
.hero-stats.feat-small .card-icon {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  width: auto; height: auto;
  border-radius: 0;
  padding: 0;
  margin-bottom: 4px;
}
.hero-stats.feat-small .card-icon::before,
.hero-stats.feat-small .card-icon::after { display: none; }
.hero-stats.feat-small .card-icon svg { width: 26px; height: 26px; }
.hero-stats.feat-small .card-title { color: #0a0d1f !important; }
.hero-stats.feat-small .card-body { color: rgba(10,13,31,0.65); }

@media (max-width: 1000px) {
  .feat-large { grid-template-columns: 1fr; }
  .feat-small { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .feat-small { grid-template-columns: 1fr; }
}

/* ─── BLOCK: HOW (capabilities) — bento ─── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.cap-grid .glass { display: flex; flex-direction: column; padding: 36px 32px; }
.cap-grid .card-body { margin-top: auto; padding-top: 18px; max-width: 36ch; }
.cap-lg { grid-column: span 4; min-height: 320px; }
.cap-md { grid-column: span 2; min-height: 320px; }
.cap-sm { grid-column: span 2; min-height: 260px; }
@media (max-width: 1000px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-lg, .cap-md, .cap-sm { grid-column: span 2; }
}
@media (max-width: 540px) {
  .cap-grid { grid-template-columns: 1fr; }
  .cap-lg, .cap-md, .cap-sm { grid-column: span 1; }
}

/* Capabilities list (replacement for cap-grid bento) */
.cap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.cap-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.cap-row-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cap-row-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #3ecf6a;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cap-row-body {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}
.cap-row-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0a0d1f !important;
  margin: 0;
}
.cap-row-divider {
  display: none;
}
.cap-row-title { margin-bottom: 10px; }
.cap-section-divider {
  width: 25%;
  height: 2px;
  background: rgba(10,13,31,0.12);
  border: 0;
  margin: 50px auto;
}
.cap-row-text {
  font-family: 'Geist', sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(10,13,31,0.7);
  margin: 0;
  max-width: 60ch;
}
@media (max-width: 540px) {
  .cap-row { grid-template-columns: 36px 1fr; gap: 16px; }
  .cap-row-icon { width: 32px; height: 32px; }
  .cap-row-icon svg { width: 24px; height: 24px; }
  .cap-row-title { font-size: 19px; }
}

/* ─── CTA BANNER ─── */
.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 100px 64px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(89, 224, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 80% at 30% 0%, rgba(140, 80, 255, 0.25), transparent 60%),
    radial-gradient(ellipse 60% 80% at 70% 0%, rgba(60, 90, 255, 0.28), transparent 60%),
    linear-gradient(180deg, #1a1f50 0%, #0e1130 100%);
  border: 1px solid rgba(140,170,255,0.18);
  box-shadow:
    var(--shadow-card),
    0 1px 0 rgba(255,255,255,0.1) inset;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}
.cta-headline {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(23px, 3.7vw, 51px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto;
  color: var(--ink-0);
}
.cta-headline em {
  font-style: normal;
  background: linear-gradient(110deg, #58e0ff, #c97cff);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.cta-subhead {
  margin: 18px auto 0;
  max-width: 56ch;
  font-family: 'Geist', sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.005em;
}
.cta-sub {
  margin: 24px auto 0;
  max-width: 50ch;
  color: var(--ink-2);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}
.cta-whisper {
  margin: 18px auto 0;
  font-size: 13px;
  font-style: italic;
  color: rgba(180,195,235,0.55);
  letter-spacing: 0.01em;
}
.cta-row {
  margin-top: 40px;
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
@media (max-width: 760px) { .cta-card { padding: 72px 28px; } }

/* ─── SITE FOOTER — full-width dark, CTA + hairline + nav-as-footer ─── */
footer.site-footer {
  margin-top: 120px;
  padding: 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(89, 224, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 80% at 30% 0%, rgba(140, 80, 255, 0.25), transparent 60%),
    radial-gradient(ellipse 60% 80% at 70% 0%, rgba(60, 90, 255, 0.28), transparent 60%),
    linear-gradient(180deg, #1a1f50 0%, #0e1130 100%);
  color: var(--ink-0);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.site-footer::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}
.site-footer-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 100px) var(--gutter);
  text-align: center;
}
.site-footer-cta .cta-headline { color: var(--ink-0); }
.site-footer-divider {
  width: min(calc(100% - 64px), 1180px);
  margin: 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.10);
}
.site-footer-nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.site-footer-tag {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
}
.site-footer-nav .footer-mark {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.site-footer-nav .footer-mark i { font-style: normal; font-weight: 700; color: #ff8a4c; font-size: inherit; }
.site-footer-nav .footer-mark .brand-mark {
  width: 56px; height: 56px;
  background-color: #ffffff;
  background-size: 78%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 6px 18px rgba(10,15,40,0.35);
}
.site-footer-nav .footer-links {
  display: flex; gap: 4px;
  font-size: 14px;
}
.site-footer-nav .footer-links a {
  color: rgba(255,255,255,0.78);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.site-footer-nav .footer-links a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}
.site-footer-base {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 26px;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  display: flex; justify-content: center; gap: 28px;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .site-footer-nav { flex-direction: column; gap: 12px; padding: 28px var(--gutter); }
}

/* Footer proof strip — single framed depth-reveal link to the Verse Mesh */
.site-footer-proof {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer-proof a {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  transition: color .2s;
}
.site-footer-proof a:hover { color: #fff; }
.site-footer-proof strong { color: #ff8a4c; font-weight: 700; }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }


/* HEADINGS — card titles only stay orange */
.compare h3, .audience h3, .feat-large h3,
.glass h3, .card-title { color: #ff8a4c !important; }

/* Colored emphasis words — all orange */
.hero h1 em, .block-title em, .cta-headline em,
.compare h3 em, .audience h3 em, .feat-large h3 em,
.glass h3 em {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: #ff8a4c !important;
}

/* ─── GOVERNANCE CLUSTER ─────────────────────────────────────────────
   Cluster strip (intra-cluster nav), sequence flow (bottom prev/next),
   gov prose shell (narrow text page), gov card grid + deferred block.
   Added 2026-05-29 for first-wave governance cluster.
─────────────────────────────────────────────────────────────────── */

.cluster-strip {
  max-width: 760px;
  margin: 0 auto;
  padding: 18px var(--gutter) 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: rgba(10,13,31,0.55);
}
/* Cluster-strip root = the cluster NAME ("Doctrine"), not a page — eyebrow/label
   styling + the "/" separator. The pages (incl. Governance overview) are the peer
   items after it. This breadcrumb format is correct now that the root is a true
   category rather than one of the sibling pages. */
.cluster-strip-home {
  font-weight: 600;
  color: rgba(10,13,31,0.78);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  border-bottom: none;
}
.cluster-strip-divider {
  color: rgba(10,13,31,0.20);
}
.cluster-strip-items {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.cluster-strip-items a {
  color: rgba(10,13,31,0.55);
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.cluster-strip-items a:hover {
  color: rgba(10,13,31,0.85);
}
.cluster-strip-items a[aria-current="page"] {
  color: #0a0d1f;
  font-weight: 600;
  border-bottom-color: rgba(10,13,31,0.85);
}
@media (max-width: 640px) {
  /* On narrow screens the strip WRAPS (base flex-wrap) so every page stays
     visible — no horizontal scroll / cut-off. */
  .cluster-strip { padding-bottom: 8px; }
}

.sequence-flow {
  margin: 48px 0 8px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(10,13,31,0.10);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(10,13,31,0.65);
}
.sequence-flow a {
  color: rgba(10,13,31,0.78);
  transition: color .2s;
  border-bottom: none;
}
.sequence-flow a:hover {
  color: #0a0d1f;
}
.sequence-flow-end {
  justify-content: flex-start;
}

.gov-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 0 64px;
}
.gov-head {
  margin-bottom: 48px;
}
.gov-eyebrow {
  display: inline-block;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,13,31,0.55);
  margin-bottom: 20px;
}
.gov-head h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #0a0d1f;
  margin: 0 0 22px;
}
.gov-head h1 em {
  font-style: normal;
  color: #ff8a4c;
}
.gov-deck {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  line-height: 1.45;
  color: rgba(10,13,31,0.78);
  font-weight: 500;
  max-width: 62ch;
  margin: 0;
}
.gov-section {
  margin-bottom: 40px;
}
.gov-section h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #0a0d1f;
  margin: 0 0 16px;
}
.gov-section p,
.gov-section li {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(10,13,31,0.78);
}
.gov-section p { margin: 0 0 14px; }
.gov-section p:last-child { margin-bottom: 0; }
.gov-section ul {
  margin: 12px 0 14px;
  padding-left: 22px;
}
.gov-section li { margin-bottom: 8px; }
.gov-section li strong {
  color: #0a0d1f;
  font-weight: 600;
}
.gov-section a {
  color: #0a0d1f;
  border-bottom: 1px solid rgba(10,13,31,0.25);
  transition: border-color .2s;
}
.gov-section a:hover {
  border-bottom-color: rgba(10,13,31,0.6);
}
.gov-section em { font-style: italic; }
.gov-cta {
  margin-top: 32px;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(10,13,31,0.78);
}
.gov-cta a {
  color: #0a0d1f;
  border-bottom: 1px solid rgba(10,13,31,0.25);
}

.gov-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0 40px;
}
.gov-card-grid a {
  display: block;
  padding: 22px 24px;
  background: rgba(10,13,31,0.03);
  border: 1px solid rgba(10,13,31,0.08);
  border-radius: 14px;
  border-bottom-width: 1px;
  transition: background .2s, border-color .2s, transform .2s;
}
.gov-card-grid a:hover {
  background: rgba(10,13,31,0.05);
  border-color: rgba(10,13,31,0.18);
  transform: translateY(-1px);
}
.gov-card-grid h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #0a0d1f;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.gov-card-grid p {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(10,13,31,0.68);
  margin: 0;
}
@media (max-width: 760px) {
  .gov-card-grid { grid-template-columns: 1fr; }
}

.gov-deferred-block {
  margin: 28px 0 12px;
  padding: 20px 24px;
  background: rgba(255, 138, 76, 0.05);
  border: 1px dashed rgba(10,13,31,0.20);
  border-radius: 14px;
}
.gov-deferred-block .eyebrow-deferred {
  display: inline-block;
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,13,31,0.55);
  margin-bottom: 8px;
}
.gov-deferred-block h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: rgba(10,13,31,0.78);
  margin: 0 0 6px;
}
.gov-deferred-block p {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(10,13,31,0.62);
  margin: 0;
}

/* ─── FOOTER FOUR-COLUMN — replaces flat link row pattern ─── */
.site-footer-columns {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px var(--gutter) 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}
.site-footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer-col-head {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: #ff8a4c;
  margin: 0 0 10px;
}
.site-footer-col a {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  padding: 4px 0;
  transition: color .2s;
  text-decoration: none;
}
.site-footer-col a:hover { color: #ffffff; }
.site-footer-col .newsletter-pill {
  color: #ff8a4c;
  font-weight: 500;
}
.site-footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.site-footer-brand-col .footer-mark {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.site-footer-brand-col .footer-mark i {
  font-style: normal; font-weight: 700; color: #ff8a4c; font-size: inherit;
}
.site-footer-brand-col .footer-mark .brand-mark {
  width: 44px; height: 44px;
  background-color: #ffffff;
  background-size: 78%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 6px 18px rgba(10,15,40,0.35);
}
.site-footer-brand-col .footer-tag {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 28ch;
}
@media (max-width: 800px) {
  .site-footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 36px var(--gutter) 24px;
  }
}
@media (max-width: 480px) {
  .site-footer-columns { grid-template-columns: 1fr; gap: 28px; }
}

/* ─── Site-wide footer subscribe (one line, centered, above copyright) ─── */
.site-footer-subscribe {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.qb-subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.qb-subscribe-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.qb-subscribe-copy {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}
.qb-subscribe-input {
  width: 240px;
  max-width: 100%;
  font-family: 'Geist', sans-serif;
  font-size: 14.5px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--ink-0);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.qb-subscribe-input::placeholder { color: var(--ink-4); }
.qb-subscribe-input:focus {
  outline: none;
  border-color: #ff8a4c;
  background: rgba(255,255,255,0.06);
}
.qb-subscribe-btn {
  background: #ff8a4c;
  color: #0a0d1f;
  border-color: rgba(0,0,0,0.10);
  font-weight: 600;
}
.qb-subscribe-btn:hover {
  transform: translateY(-1px);
  background: #ff9a5e;
}
.qb-subscribe-status {
  margin: 0;
  min-height: 1em;
  font-size: 13px;
  text-align: center;
  color: var(--ink-3);
}
.qb-subscribe-status.error { color: #ff9b9b; }
.qb-subscribe-status.ok    { color: #7ee0a0; }
.qb-subscribe-status.info  { color: var(--ink-2); }
@media (max-width: 480px) {
  .qb-subscribe-copy { white-space: normal; text-align: center; }
  .qb-subscribe-input { width: 100%; }
}

/* ─── Phase 1 homepage tuning ─────────────────────────────────────────── */
/* Tighten the dead space between the last homepage section and the footer CTA.
   Scoped to the homepage so other pages' footer spacing is untouched. */
.page-home { padding-bottom: 18px; }
.page-home + .site-footer .site-footer-cta { padding-top: clamp(18px, 2vw, 26px); }

/* Footer CTA button: clean white edges in the resting state — solid white 1px
   border plus a 1px white outer ring (replaces the pink-over-red translucent
   borders). Hover state is untouched (btn-primary:hover sets its own box-shadow). */
.site-footer-cta .btn-primary {
  border-color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.55),
    0 10px 28px rgba(0,0,0,0.22),
    0 4px 10px rgba(0,0,0,0.12);
}

/* Hero whisper lines + problem-card subcopy: lift to the page's subcopy size (16px). */
.hero .cta-microcopy { font-size: 16px; }
.page-home .feat-small .card-body { font-size: 16px; }

/* No-inference page assistant styles now live self-injected in
   quantumbeard/js/assistant.js, so the one script is portable across the
   QB / verse-mesh / data-mesh surfaces (which don't load this stylesheet). */

