/* ═══════════════════════════════════════════════════════════════
   Bellwether Growth — Shared Design System
   v.2026.11
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Ink — the anchor */
  --ink: #0C0D11;
  --void: #06070A;
  --panel: #16171C;
  --panel-2: #1D1E24;
  --panel-3: #24252C;
  --line: #22232A;
  --line-soft: #191A1F;

  /* Paper */
  --bone: #EDE9DE;
  --bone-2: #E4DFD1;
  --bone-line: #C9C4B6;
  --bone-text: #2A2822;
  --bone-text-2: #6E6A62;
  --bone-text-3: #8A867C;

  /* Text on ink */
  --text-1: #D8D5CE;
  --text-2: #A29F97;
  --text-3: #7C7A75;
  --text-4: #4E4D48;

  /* Signal — rust */
  --signal: #A54F35;
  --signal-bright: #B85D3F;
  --signal-deep: #7F3A26;
  --signal-glow: rgba(165, 79, 53, 0.10);
  --signal-line: rgba(165, 79, 53, 0.30);
  --signal-line-strong: rgba(165, 79, 53, 0.50);
  --signal-tint: rgba(165, 79, 53, 0.06);

  /* Type */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "ss01" on, "cv11" on;
}

/* ─── Typography ─── */
h1, h2 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h3, h4 {
  font-family: var(--f-body);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.display {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
}
em.accent {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  color: var(--signal);
}
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 940px; margin: 0 auto; padding: 0 40px; }

/* ─── Section labels ─── */
.sec-code {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--signal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sec-code::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--signal);
}

/* ═════════════════════════════════════════════════════════
   NAVIGATION — shared across all pages
   ═════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 13, 17, 0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  font-size: 28px;
  color: var(--text-1);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.nav-brand:hover { color: var(--text-1); }
.nav-brand span { color: var(--signal); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--text-1); }
.nav-links a.active {
  color: var(--text-1);
  border-bottom-color: var(--signal);
}
.nav-cta {
  color: var(--signal) !important;
  border: 1px solid var(--signal-line) !important;
  padding: 8px 16px !important;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--signal);
  color: white !important;
  border-color: var(--signal) !important;
}
.nav-time {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 20px;
  margin-right: 4px;
  border-right: 1px solid var(--line);
}
.nav-time-dot {
  width: 5px;
  height: 5px;
  background: var(--signal);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
.nav-toggle { display: none; }

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(165, 79, 53, 0.5); }
  50% { opacity: 0.4; box-shadow: 0 0 0 4px rgba(165, 79, 53, 0); }
}
@keyframes blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* ═════════════════════════════════════════════════════════
   BUTTONS
   ═════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--signal);
  color: white;
  border-color: var(--signal);
}
.btn-primary:hover {
  background: var(--signal-deep);
  border-color: var(--signal-deep);
}
.btn-ghost {
  color: var(--text-2);
  border: 1px solid var(--line);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--text-2);
  color: var(--text-1);
}
.btn-ghost-bone {
  color: var(--bone-text-2);
  border: 1px solid var(--bone-line);
  background: transparent;
}
.btn-ghost-bone:hover {
  border-color: var(--bone-text);
  color: var(--bone-text);
}

/* ═════════════════════════════════════════════════════════
   BONE PAPER SECTIONS
   ═════════════════════════════════════════════════════════ */
.section-bone {
  background: var(--bone);
  color: var(--bone-text);
  padding: 120px 0;
  position: relative;
}
.section-bone h2 {
  color: var(--bone-text);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
}
.section-bone .sec-code { color: var(--signal); }
.section-bone .sec-code::before { background: var(--signal); }

/* ═════════════════════════════════════════════════════════
   BOOK A CALL — shared module on every page
   ═════════════════════════════════════════════════════════ */
.book-call {
  padding: 120px 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
  text-align: center;
}
.book-call-inner { max-width: 720px; margin: 0 auto; padding: 0 40px; }
.book-call .sec-code { justify-content: center; }
.book-call h2 {
  color: var(--text-1);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
}
.book-call h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  color: var(--signal);
}
.book-call p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300;
}
.book-call-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.book-call-email {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.book-call-email:hover { color: var(--signal); }

/* ═════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════ */
footer {
  background: var(--void);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-brand-block .nav-brand { font-size: 22px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 380px;
  font-weight: 300;
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--signal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col a {
  display: block;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-1); }
.footer-inner {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-4);
  letter-spacing: 0.03em;
}

/* ═════════════════════════════════════════════════════════
   HERO — shared shell
   ═════════════════════════════════════════════════════════ */
.hero {
  padding: 140px 0 64px;
  position: relative;
}
.hero .container { position: relative; }
.hero-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--signal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--signal);
}
.hero h1 {
  font-size: clamp(2.75rem, 5.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  color: var(--text-1);
  position: relative;
  z-index: 2;
}
.hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 20, "wght" 400;
  color: var(--signal);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* ─── Hero graphic — compound growth curves ─── */
.hero-graphic {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 460px;
  aspect-ratio: 400 / 320;
  pointer-events: none;
  z-index: 0;
}
.hero-graphic svg { width: 100%; height: 100%; display: block; overflow: visible; }
.hero-graphic .hg-grid line { stroke: var(--signal); stroke-width: 0.5; opacity: 0.09; }
.hero-graphic .hg-axis-h { stroke: var(--signal); stroke-width: 0.5; opacity: 0.28; }
.hero-graphic .hg-axis-v { stroke: var(--signal); stroke-width: 0.5; opacity: 0.18; }
.hero-graphic .hg-label {
  font-family: var(--f-mono);
  font-size: 8px;
  fill: var(--signal);
  opacity: 0.55;
  letter-spacing: 0.05em;
}
.hero-graphic .hg-origin { fill: var(--signal); opacity: 0.7; }
.hero-graphic .hg-c {
  fill: none;
  stroke-linecap: round;
  stroke: var(--signal);
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  opacity: 0;
}
.hero-graphic .hg-c1 { stroke-width: 1.1; animation: bwDraw1 5s ease-in-out forwards; }
.hero-graphic .hg-c2 { stroke-width: 1.25; animation: bwDraw2 5s ease-in-out forwards; }
.hero-graphic .hg-c3 { stroke-width: 1.5; animation: bwDraw3 5s ease-in-out forwards; }
.hero-graphic .hg-d { fill: var(--signal); opacity: 0; }
.hero-graphic .hg-d-bright { fill: var(--signal-bright); }
.hero-graphic .hg-d1 { animation: bwDot1 5s ease-in-out forwards; }
.hero-graphic .hg-d2 { animation: bwDot2 5s ease-in-out forwards; }
.hero-graphic .hg-d3 { animation: bwDot3 5s ease-in-out forwards; }
.hero-graphic .hg-yl {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  fill: var(--signal);
  opacity: 0;
}
.hero-graphic .hg-yl-bright { fill: var(--signal-bright); }

@keyframes bwDraw1 {
  0%   { stroke-dashoffset: 700; opacity: 0; }
  4%   { opacity: 0.32; }
  17%  { stroke-dashoffset: 0; opacity: 0.32; }
  100% { stroke-dashoffset: 0; opacity: 0.32; }
}
@keyframes bwDraw2 {
  0%, 17% { stroke-dashoffset: 700; opacity: 0; }
  21%     { opacity: 0.55; }
  34%     { stroke-dashoffset: 0; opacity: 0.55; }
  100%    { stroke-dashoffset: 0; opacity: 0.55; }
}
@keyframes bwDraw3 {
  0%, 34% { stroke-dashoffset: 700; opacity: 0; }
  38%     { opacity: 1; }
  51%     { stroke-dashoffset: 0; opacity: 1; }
  100%    { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes bwDot1 { 0%, 15% { opacity: 0; } 17%, 100% { opacity: 0.6; } }
@keyframes bwDot2 { 0%, 32% { opacity: 0; } 34%, 100% { opacity: 0.85; } }
@keyframes bwDot3 { 0%, 49% { opacity: 0; } 51%, 100% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .hero-graphic .hg-c,
  .hero-graphic .hg-d,
  .hero-graphic .hg-yl { animation: none !important; stroke-dashoffset: 0 !important; }
  .hero-graphic .hg-c1 { opacity: 0.32; }
  .hero-graphic .hg-c2 { opacity: 0.55; }
  .hero-graphic .hg-c3 { opacity: 1; }
  .hero-graphic .hg-d1, .hero-graphic .hg-yl.hg-d1 { opacity: 0.6; }
  .hero-graphic .hg-d2, .hero-graphic .hg-yl.hg-d2 { opacity: 0.85; }
  .hero-graphic .hg-d3, .hero-graphic .hg-yl.hg-d3 { opacity: 1; }
}

/* Split hero (used on Sprint page with scan panel) */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-split .hero-sub { max-width: 540px; }

/* ═════════════════════════════════════════════════════════
   PACKAGE CARDS (Home page)
   ═════════════════════════════════════════════════════════ */
.package-menu {
  padding: 80px 0 120px;
  background: var(--ink);
}
.package-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
.package-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  position: relative;
  transition: border-color 0.2s;
}
.package-card:hover { border-color: var(--line); }
.package-card.featured {
  border-left: 2px solid var(--signal);
}
.package-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.package-tag::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--signal-line);
}
.package-name {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  font-size: 34px;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.package-pitch {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 10, "wght" 400;
  font-style: italic;
  font-size: 22px;
  color: var(--text-1);
  line-height: 1.35;
  margin-bottom: 28px;
  max-width: 440px;
}
.package-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.package-meta-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 8px;
}
.package-meta-value {
  font-family: var(--f-mono);
  font-size: 15px;
  color: var(--text-1);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.package-meta-value.price { color: var(--signal); }
.package-buyer {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 300;
}
.package-includes {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.03em;
  line-height: 1.85;
  margin-bottom: 32px;
  flex: 1;
}
.package-includes .item {
  display: block;
  padding-left: 16px;
  position: relative;
}
.package-includes .item::before {
  content: "→";
  color: var(--signal);
  position: absolute;
  left: 0;
}
.package-cta { align-self: flex-start; }

/* Workbench-on-home band */
.workbench-band {
  padding: 96px 0;
  background: var(--void);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.workbench-band-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.workbench-band h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.workbench-band h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  color: var(--signal);
}
.workbench-band-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
  max-width: 500px;
}
.tile-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.tile-mini {
  background: var(--panel);
  padding: 22px 18px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: background 0.2s;
}
.tile-mini:hover { background: var(--panel-2); }
.tile-mini-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.tile-mini-code {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
}
.tile-mini-mark {
  opacity: 0.6;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.tile-mini-mark line,
.tile-mini-mark rect,
.tile-mini-mark polyline,
.tile-mini-mark circle { stroke: var(--signal); stroke-width: 1; }
.tile-mini-mark-dot { fill: var(--signal); stroke: none; }
.tile-mini:hover .tile-mini-mark { opacity: 0.95; }
.tile-mini-body { display: flex; flex-direction: column; gap: 6px; }
.tile-mini-name {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-1);
  line-height: 1.2;
}
.tile-mini-desc {
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.4;
  font-weight: 300;
}

/* ─── Workbench Live panel (homepage) ─── */
.wb-live {
  background: var(--panel);
  border: 1px solid var(--line);
  font-family: var(--f-mono);
}
.wb-live-head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wb-live-title {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-1);
}
.wb-live-title strong { font-weight: 500; }
.wb-live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-2);
  text-transform: uppercase;
}
.wb-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-bright);
  box-shadow: 0 0 6px rgba(184,93,63,0.6);
  animation: wbPulse 1.6s ease-in-out infinite;
}
@keyframes wbPulse {
  0%, 100% { opacity: 0.7; box-shadow: 0 0 4px rgba(184,93,63,0.4); }
  50%      { opacity: 1;   box-shadow: 0 0 10px rgba(184,93,63,0.9); }
}

.wb-live-tabs {
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 4px;
  overflow-x: auto;
}
.wb-tab {
  padding: 7px 12px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-3);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.wb-tab:hover { color: var(--text-1); }
.wb-tab.active {
  color: var(--signal-bright);
  background: rgba(165,79,53,0.12);
  border-color: rgba(165,79,53,0.35);
}

.wb-live-body {
  position: relative;
  min-height: 340px;
}
.wb-scene {
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}
.wb-scene.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.wb-scene-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-2);
  text-transform: uppercase;
}
.wb-scene-meta { color: var(--text-3); }

.wb-progress {
  height: 3px;
  background: var(--line);
  margin-bottom: 20px;
  overflow: hidden;
}
.wb-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--signal), var(--signal-bright));
}
.wb-scene.active .wb-progress-fill {
  animation: wbProgress 4.5s ease-out forwards;
}
@keyframes wbProgress {
  0%   { width: 0; }
  100% { width: 88%; }
}

.wb-rows { display: flex; flex-direction: column; gap: 8px; }
.wb-row {
  display: grid;
  grid-template-columns: 130px 1fr 56px;
  gap: 12px;
  align-items: baseline;
  padding: 9px 12px;
  background: rgba(165,79,53,0.05);
  border-left: 1px solid rgba(165,79,53,0.4);
  opacity: 0;
  transform: translateY(4px);
}
.wb-scene.active .wb-row {
  animation: wbRowIn 0.5s ease forwards;
}
.wb-scene.active .wb-row:nth-child(1) { animation-delay: 0.15s; }
.wb-scene.active .wb-row:nth-child(2) { animation-delay: 0.55s; }
.wb-scene.active .wb-row:nth-child(3) { animation-delay: 0.95s; }
.wb-scene.active .wb-row:nth-child(4) { animation-delay: 1.35s; }
.wb-scene.active .wb-row:nth-child(5) { animation-delay: 1.75s; }
@keyframes wbRowIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wb-row-label {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  text-transform: uppercase;
}
.wb-row-value {
  font-size: 12px;
  color: var(--text-1);
}
.wb-row-conf {
  font-size: 10px;
  color: var(--signal-bright);
  text-align: right;
}
.wb-row.wb-summary {
  background: rgba(165,79,53,0.12);
  border-left-color: var(--signal);
}
.wb-row.wb-summary .wb-row-value { color: var(--signal-bright); }

.wb-compare, .wb-check { display: flex; flex-direction: column; gap: 6px; }
.wb-compare-head, .wb-check-head {
  display: grid;
  grid-template-columns: 90px 1fr 1fr 1fr;
  gap: 8px;
  padding: 6px 12px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-transform: uppercase;
}
.wb-check-head { grid-template-columns: 100px 1fr 1fr 32px; }
.wb-compare-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr 1fr;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(165,79,53,0.05);
  border-left: 1px solid rgba(165,79,53,0.4);
  align-items: baseline;
  font-size: 12px;
  color: var(--text-1);
  opacity: 0;
}
.wb-check-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 32px;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(165,79,53,0.05);
  border-left: 1px solid rgba(165,79,53,0.4);
  align-items: baseline;
  font-size: 12px;
  color: var(--text-1);
  opacity: 0;
}
.wb-scene.active .wb-compare-row,
.wb-scene.active .wb-check-row {
  animation: wbRowIn 0.5s ease forwards;
}
.wb-scene.active .wb-compare-row:nth-child(2) { animation-delay: 0.20s; }
.wb-scene.active .wb-compare-row:nth-child(3) { animation-delay: 0.60s; }
.wb-scene.active .wb-compare-row:nth-child(4) { animation-delay: 1.00s; }
.wb-scene.active .wb-compare-row:nth-child(5) { animation-delay: 1.40s; }
.wb-scene.active .wb-check-row:nth-child(2) { animation-delay: 0.15s; }
.wb-scene.active .wb-check-row:nth-child(3) { animation-delay: 0.50s; }
.wb-scene.active .wb-check-row:nth-child(4) { animation-delay: 0.85s; }
.wb-scene.active .wb-check-row:nth-child(5) { animation-delay: 1.20s; }
.wb-scene.active .wb-check-row:nth-child(6) { animation-delay: 1.55s; }
.wb-flag { color: var(--signal-bright); }
.wb-best { color: #97C459; }
.wb-diff { color: var(--signal-bright); }
.wb-ok { color: #97C459; text-align: center; font-size: 13px; }
.wb-warn { color: var(--signal-bright); text-align: center; font-size: 13px; }

.wb-live-foot {
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.05em;
  color: var(--text-3);
}

@media (prefers-reduced-motion: reduce) {
  .wb-live-dot,
  .wb-scene.active .wb-progress-fill,
  .wb-scene.active .wb-row,
  .wb-scene.active .wb-compare-row,
  .wb-scene.active .wb-check-row { animation: none !important; }
  .wb-scene.active .wb-row,
  .wb-scene.active .wb-compare-row,
  .wb-scene.active .wb-check-row { opacity: 1; transform: none; }
  .wb-scene.active .wb-progress-fill { width: 88%; }
}

/* ─── Data assurance band ─── */
.data-assurance {
  padding: 48px 0;
  background: var(--void);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.data-assurance-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.data-assurance-mark {
  margin-top: 3px;
  flex-shrink: 0;
  opacity: 0.85;
}
.data-assurance-title {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-1);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.data-assurance-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
  max-width: 680px;
  margin: 0;
}

/* ─── Form data note ─── */
.form-data-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 520px;
}

/* Competitive positioning strip */
.competitive-strip {
  padding: 100px 0;
  background: var(--ink);
}
.competitive-strip-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.competitive-strip p {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 10, "wght" 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text-1);
  line-height: 1.35;
  letter-spacing: -0.015em;
  padding-left: 42px;
  border-left: 2px solid var(--signal);
}
.competitive-strip p em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  color: var(--signal);
}
.competitive-strip-caption {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 32px;
  padding-left: 44px;
}

/* ═════════════════════════════════════════════════════════
   LIVE SCAN PANEL (Sprint page hero)
   ═════════════════════════════════════════════════════════ */
.scan-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.scan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  background: var(--void);
  border-bottom: 1px solid var(--line);
}
.scan-header-title {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.scan-header-title strong { color: var(--text-1); font-weight: 500; }
.scan-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--signal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: var(--signal);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
.scan-status.done { color: var(--text-3); }
.scan-status.done .live-dot { animation: none; background: var(--text-4); }
.scan-progress {
  padding: 16px 22px 18px;
  background: var(--void);
  border-bottom: 1px solid var(--line);
}
.scan-progress-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.running-label {
  color: var(--text-4);
  margin-right: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.running-total {
  color: var(--signal);
  font-weight: 500;
  font-size: 13px;
  transition: color 0.3s;
}
.running-total.pop { color: var(--signal-bright); }
.scan-progress-track {
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.scan-progress-fill {
  height: 100%;
  background: var(--signal);
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.scan-current {
  padding: 18px 22px;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scan-current-id {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-1);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cli-code { color: var(--signal); font-weight: 500; }
.cli-name { color: var(--text-1); }
.scan-current-phase {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 18px;
}
.phase-label { text-transform: uppercase; color: var(--text-3); transition: color 0.2s; }
.phase-label.matching { color: var(--text-1); }
.phase-label.scored { color: var(--signal); }
.phase-detail { color: var(--text-4); font-size: 10px; }
.phase-detail .rule-cycling { color: var(--text-1); font-weight: 500; }
.phase-cursor {
  display: inline-block;
  width: 6px;
  height: 12px;
  background: var(--signal);
  vertical-align: middle;
  animation: blink 0.9s steps(2) infinite;
  margin-left: 2px;
}
.findings-header {
  padding: 12px 22px;
  background: var(--void);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.findings-header .count { color: var(--text-1); font-weight: 500; }
.findings-list {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.findings-list::-webkit-scrollbar { width: 6px; }
.findings-list::-webkit-scrollbar-track { background: transparent; }
.findings-list::-webkit-scrollbar-thumb { background: var(--line); }
.finding {
  border-bottom: 1px solid var(--line-soft);
  animation: findingEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
@keyframes findingEnter {
  from { opacity: 0; transform: translateY(-6px); background: var(--signal-tint); }
  to { opacity: 1; transform: translateY(0); background: transparent; }
}
.finding-row {
  padding: 13px 22px;
  display: grid;
  grid-template-columns: 68px 1fr auto 24px;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s;
}
.finding-row:hover { background: var(--panel-3); }
.finding-rule {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--signal);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.finding-body { min-width: 0; }
.finding-title {
  font-size: 13px;
  color: var(--text-1);
  margin-bottom: 3px;
  font-weight: 400;
  line-height: 1.35;
}
.finding-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-4);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.finding-amount {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--text-1);
  font-weight: 500;
  text-align: right;
}
.finding-amount-cap {
  display: block;
  font-size: 9px;
  color: var(--text-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 400;
}
.finding-toggle {
  color: var(--text-4);
  font-size: 14px;
  transition: transform 0.25s;
  text-align: center;
  line-height: 24px;
  user-select: none;
}
.finding.open .finding-toggle { transform: rotate(45deg); color: var(--signal); }
.finding-reasoning {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--void);
  border-top: 1px solid transparent;
}
.finding.open .finding-reasoning {
  max-height: 400px;
  border-top-color: var(--line-soft);
}
.reasoning-inner {
  padding: 16px 22px 18px 90px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 7px 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.6;
}
.reasoning-label {
  color: var(--text-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 10px;
}
.reasoning-value { color: var(--text-1); }
.reasoning-value.confidence { color: var(--signal); font-weight: 500; }
.reasoning-value.range { color: var(--text-2); }
.findings-empty {
  padding: 32px 22px;
  text-align: center;
  color: var(--text-4);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.scan-footer {
  padding: 12px 22px;
  background: var(--void);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-4);
  letter-spacing: 0.05em;
}
.scan-replay {
  background: transparent;
  border: 1px solid var(--signal-line);
  color: var(--signal);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: none;
}
.scan-replay:hover { background: var(--signal); color: white; }
.scan-replay.visible { display: inline-block; }

/* ═════════════════════════════════════════════════════════
   LOOP CARDS (Operating System page)
   ═════════════════════════════════════════════════════════ */
.loops-section {
  padding: 140px 0;
  background: var(--ink);
}
.loops-header { max-width: 900px; margin-bottom: 72px; }
.loops-header h2 {
  color: var(--text-1);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 24px;
}
.loops-header p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 680px;
  font-weight: 300;
}
.loops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 96px;
}
.loop {
  background: var(--ink);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: background 0.2s;
  position: relative;
}
.loop:hover { background: var(--panel); }
.loop-status {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 3px 8px;
  border: 1px solid var(--line);
  background: var(--void);
}
.loop-status.foundation { color: var(--text-1); border-color: var(--text-4); }
.loop-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.loop-tag::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--signal-line);
}
.loop-name {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 26px;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.loop-promise {
  font-family: var(--f-body);
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.4;
  margin-bottom: 16px;
}
.loop-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
  flex: 1;
}

/* Artifact fragment */
.artifact {
  background: var(--void);
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--text-1);
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.artifact-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.artifact-head .signal-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--signal);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.artifact-line { display: block; }
.artifact-line .lbl { color: var(--text-3); }
.artifact-line .val { color: var(--text-1); font-weight: 500; }
.artifact-line .accent { color: var(--signal); font-weight: 500; }
.artifact-line .arrow { color: var(--signal); margin-right: 4px; }

/* ═════════════════════════════════════════════════════════
   COMPOUNDING OUTCOME (Operating System page)
   ═════════════════════════════════════════════════════════ */
.compounding-outcome {
  padding: 120px 0;
  background: var(--void);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.compounding-outcome-header { max-width: 800px; margin-bottom: 56px; }
.compounding-outcome-header h2 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.compounding-outcome-header h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  color: var(--signal);
}
.compounding-outcome-header p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 680px;
  font-weight: 300;
}
.gap-chart {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 48px 56px;
}
.gap-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.gap-chart-title {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  font-size: 28px;
  color: var(--text-1);
  letter-spacing: -0.02em;
  max-width: 480px;
}
.gap-chart-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  color: var(--signal);
}
.gap-chart-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
  text-align: right;
  line-height: 1.7;
}
.gap-chart-svg-wrap { position: relative; height: 260px; }
.gap-chart-legend {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 14px; }
.legend-swatch { width: 28px; height: 2px; background: var(--signal); }
.legend-swatch.flat {
  background: transparent;
  border-top: 1.5px dashed var(--text-3);
  width: 28px;
  height: 0;
}
.legend-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-2);
}
.legend-label .value {
  display: block;
  font-size: 10px;
  color: var(--text-4);
  margin-top: 3px;
  letter-spacing: 0.03em;
}

/* ═════════════════════════════════════════════════════════
   REPORT CARD (Sprint & OS pages)
   ═════════════════════════════════════════════════════════ */
.deliverable {
  padding: 140px 0;
  background: var(--panel);
}
.deliverable-header { text-align: center; max-width: 720px; margin: 0 auto 72px; padding: 0 40px; }
.deliverable-header .sec-code { justify-content: center; }
.deliverable-header h2 {
  color: var(--text-1);
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
}
.deliverable-header p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}
.report-paper {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bone);
  color: var(--bone-text);
  padding: 56px 64px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.32);
  position: relative;
}
.report-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bone-line);
  margin-bottom: 32px;
}
.report-doc-code {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-text-2);
  margin-bottom: 8px;
}
.report-doc-client {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  font-size: 30px;
  color: var(--bone-text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.report-doc-brand {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  font-size: 17px;
  color: var(--bone-text);
  text-align: right;
}
.report-doc-brand::after { content: "."; color: var(--signal); }
.report-meta {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--bone-text-2);
  letter-spacing: 0.05em;
  margin-top: 6px;
  text-transform: uppercase;
}
.report-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--bone-line);
  margin-bottom: 36px;
}
.report-stat {
  padding: 24px 22px;
  border-right: 1px solid var(--bone-line);
}
.report-stat:last-child { border-right: none; }
.report-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-text-2);
  margin-bottom: 10px;
}
.report-stat-num {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  font-size: 32px;
  color: var(--bone-text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.report-stat.highlight .report-stat-num { color: var(--signal); }
.report-rows { border-top: 1px solid var(--bone-line); }
.report-row {
  display: grid;
  grid-template-columns: 70px 1fr 140px;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bone-line);
  align-items: center;
}
.report-row:last-child { border-bottom: none; }
.report-row-code {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--signal);
  text-transform: uppercase;
  font-weight: 500;
}
.report-row-code.med { color: var(--bone-text-2); }
.report-row-name {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--bone-text);
  font-weight: 500;
  margin-bottom: 4px;
}
.report-row-desc {
  font-size: 13px;
  color: var(--bone-text-2);
  line-height: 1.5;
}
.report-row-val {
  text-align: right;
  font-family: var(--f-mono);
  font-size: 16px;
  color: var(--bone-text);
  font-weight: 500;
}
.report-row-val-cap {
  display: block;
  font-size: 9px;
  color: var(--bone-text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 400;
}
.report-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 1px solid var(--bone-line);
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--bone-text-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ═════════════════════════════════════════════════════════
   TIMELINE (Sprint page — 4 phases)
   ═════════════════════════════════════════════════════════ */
.timeline-section {
  padding: 140px 0;
  background: var(--ink);
}
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.timeline-intro h2 {
  color: var(--text-1);
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}
.timeline-intro p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item:last-of-type { border-bottom: none; }
.timeline-week {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--signal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 4px;
}
.timeline-content h3 {
  color: var(--text-1);
  font-size: 20px;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}
.timeline-result {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--signal-tint);
  border-left: 2px solid var(--signal);
}
.timeline-result-label {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--signal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.timeline-result p {
  font-size: 16px;
  color: var(--text-1);
  line-height: 1.6;
  font-weight: 300;
}

/* ═════════════════════════════════════════════════════════
   TESTIMONIAL SLOT (Sprint page)
   ═════════════════════════════════════════════════════════ */
.testimonial-slot {
  padding: 120px 0;
  background: var(--void);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonial-inner { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.testimonial-placeholder {
  padding: 40px 44px;
  border: 1px dashed var(--line);
  background: var(--ink);
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-4);
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.7;
}
.testimonial-placeholder .label {
  display: block;
  font-size: 10px;
  color: var(--signal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ═════════════════════════════════════════════════════════
   WORKBENCH — anchor tile + grid
   ═════════════════════════════════════════════════════════ */
.workbench-anchor {
  padding: 60px 0 100px;
  background: var(--ink);
}
.tile-anchor {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 2px solid var(--signal);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: stretch;
}
.tile-anchor-content { display: flex; flex-direction: column; }
.tile-anchor-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 20px;
}
.tile-anchor-name {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 40px;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.tile-anchor-tagline {
  font-family: var(--f-body);
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  color: var(--text-2);
  line-height: 1.25;
  margin-bottom: 28px;
}
.tile-anchor-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
  flex: 1;
}
.tile-anchor-outcome {
  padding: 20px 22px;
  background: var(--signal-tint);
  border-left: 2px solid var(--signal);
  font-family: var(--f-mono);
  font-size: 15px;
  color: var(--text-1);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.tile-anchor-outcome .lbl {
  display: block;
  color: var(--signal);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tile-anchor-outcome strong { color: var(--text-1); font-weight: 500; }
.tile-anchor-preview {
  background: var(--void);
  border: 1px solid var(--line);
}
.workflow-panel-head {
  padding: 14px 20px;
  background: var(--void);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.workflow-panel-head .live { color: var(--signal); }
.workflow-step {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}
.workflow-step:last-child { border-bottom: none; }
.workflow-step-num {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--signal);
  letter-spacing: 0.05em;
}
.workflow-step-title {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-1);
  font-weight: 500;
  margin-bottom: 4px;
}
.workflow-step-detail {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.workflow-step-detail .highlight { color: var(--signal); }
.workflow-panel-foot {
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  background: var(--void);
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-4);
  letter-spacing: 0.05em;
}

/* Workbench tile grid (4 remaining tiles) */
.workbench-grid-section {
  padding: 60px 0 120px;
  background: var(--ink);
}
.workbench-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tile-card {
  background: var(--panel);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: background 0.2s;
}
.tile-card { position: relative; }
.tile-card:hover { background: var(--panel-2); }
.tile-card-status {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 3px 8px;
  border: 1px solid var(--line);
  background: var(--void);
}
.tile-card-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tile-card-tag::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--signal-line);
}
.tile-card-name {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 32px;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.tile-card-tagline {
  font-family: var(--f-body);
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  color: var(--text-2);
  line-height: 1.3;
  margin-bottom: 20px;
}
.tile-card-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
  flex: 1;
}
.tile-card-learn {
  padding: 14px 16px;
  background: var(--void);
  border-left: 2px solid var(--signal);
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.tile-card-learn .lbl { color: var(--signal); font-weight: 500; margin-right: 4px; }

/* Workbench learning strip */
.workbench-learning {
  padding: 100px 0;
  background: var(--void);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.workbench-learning-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}
.workbench-learning h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 0;
}
.workbench-learning h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  color: var(--signal);
}
.workbench-learning-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  font-weight: 300;
  max-width: 620px;
}
.workbench-learning-body strong { color: var(--text-1); font-weight: 500; }

/* Workbench install note */
.install-note {
  padding: 64px 0;
  background: var(--ink);
}
.install-note-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.install-note p {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 10, "wght" 500;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text-1);
  line-height: 1.4;
}
.install-note p em {
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  color: var(--signal);
  font-style: italic;
}

/* ═════════════════════════════════════════════════════════
   OPERATING SYSTEM — pricing block
   ═════════════════════════════════════════════════════════ */
.pricing-block {
  padding: 100px 0;
  background: var(--void);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pricing-block-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}
.pricing-block h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.pricing-block h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  color: var(--signal);
}
.pricing-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pricing-line {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.pricing-line-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 12px;
}
.pricing-line-value {
  font-family: var(--f-mono);
  font-size: 20px;
  color: var(--signal);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.pricing-line-note {
  display: block;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-3);
  margin-top: 6px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

/* ═════════════════════════════════════════════════════════
   ABOUT — Founder section
   ═════════════════════════════════════════════════════════ */
.about-hero { padding: 140px 0 96px; }
.about-hero .container-narrow { max-width: 820px; }
.about-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  color: var(--text-1);
  max-width: 780px;
  margin-bottom: 0;
}
.about-hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 20, "wght" 400;
  color: var(--signal);
}
.founder-section {
  padding: 100px 0 120px;
  background: var(--bone);
  color: var(--bone-text);
}
.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.founder-photo {
  width: 320px;
  height: 320px;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-text h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  margin-bottom: 28px;
  color: var(--bone-text);
}
.founder-text p {
  font-size: 16px;
  color: var(--bone-text-2);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 620px;
}
.founder-thesis {
  padding: 28px 32px;
  background: var(--bone-2);
  border-left: 2px solid var(--signal);
  margin: 32px 0;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 10, "wght" 500;
  font-style: italic;
  font-size: 21px;
  color: var(--bone-text);
  line-height: 1.5;
  max-width: 640px;
}
.founder-thesis em {
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
  color: var(--signal);
}
.founder-cred {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--bone-line);
}
.founder-cred-item {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--bone-text-2);
  line-height: 1.6;
}
.founder-cred-item strong {
  display: block;
  color: var(--signal);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.about-practice { padding: 100px 0; background: var(--ink); }
.about-practice-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.about-practice h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-practice h3 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  color: var(--signal);
}
.about-practice p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

/* ═════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .package-cards, .hero-split, .workbench-band-inner, .workbench-learning-inner,
  .pricing-block-inner, .tile-anchor, .compounding-outcome-header,
  .timeline-grid, .founder-grid, .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .loops-grid, .workbench-grid, .pricing-lines { grid-template-columns: 1fr 1fr; }
  .tile-strip { grid-template-columns: repeat(3, 1fr); }
  .founder-photo { width: 100%; max-width: 280px; height: auto; aspect-ratio: 1; margin: 0 auto; }
  .hero-graphic { display: none; }
  .hero h1 { max-width: none; }
  .hero-sub { max-width: 620px; }
}
@media (max-width: 900px) {
  .nav-time { display: none; }
}
@media (max-width: 700px) {
  .container, .container-narrow { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(12, 13, 17, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 24px 32px;
    border-bottom: 1px solid var(--line);
    gap: 0;
    align-items: stretch;
    z-index: 99;
  }
  .nav-links.open a {
    font-size: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    width: 100%;
    color: var(--text-1);
    letter-spacing: 0.06em;
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open .nav-cta {
    margin-top: 16px;
    padding: 14px 20px;
    text-align: center;
    border: 1px solid var(--signal-line);
    color: var(--signal) !important;
    border-bottom: 1px solid var(--signal-line) !important;
  }
  .nav-links.open .nav-time { display: none; }
  .nav-toggle {
    display: flex;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text-2);
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 14px;
    cursor: pointer;
  }
  .hero { padding: 88px 0 32px; }
  .about-hero { padding: 88px 0 0; }
  .package-menu { padding: 32px 0 64px; }
  .founder-photo { width: 100%; max-width: 220px; height: auto; aspect-ratio: 1; margin: 0 auto; }
  .section-bone, .workbench-band, .competitive-strip,
  .loops-section, .compounding-outcome, .deliverable, .timeline-section,
  .testimonial-slot, .workbench-anchor, .workbench-grid-section,
  .workbench-learning, .install-note, .pricing-block, .founder-section,
  .about-practice, .book-call { padding: 72px 0; }
  .loops-grid, .workbench-grid { grid-template-columns: 1fr; }
  .tile-strip { grid-template-columns: 1fr 1fr; }
  .pricing-lines { grid-template-columns: 1fr; }
  .report-paper { padding: 32px 24px; }
  .report-summary { grid-template-columns: 1fr; }
  .report-stat { border-right: none; border-bottom: 1px solid var(--bone-line); }
  .report-stat:last-child { border-bottom: none; }
  .report-row { grid-template-columns: 60px 1fr; }
  .report-row-val { grid-column: 1 / -1; text-align: left; padding-left: 60px; }
  .tile-anchor, .package-card, .gap-chart { padding: 32px 28px; }
  .founder-cred { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 8px; }
  .wb-live-body { min-height: 300px; }
  .wb-scene { padding: 16px; }
  .wb-row { grid-template-columns: 100px 1fr 44px; gap: 8px; padding: 8px 10px; }
  .wb-row-label { font-size: 9px; }
  .wb-row-value { font-size: 11px; word-break: break-word; }
  .wb-compare-head, .wb-compare-row { grid-template-columns: 70px 1fr 1fr 1fr; font-size: 11px; padding: 8px 10px; }
  .wb-check-head, .wb-check-row { grid-template-columns: 80px 1fr 1fr 28px; font-size: 11px; padding: 8px 10px; }
  .wb-live-tabs { padding: 8px 12px; }
  .wb-tab { padding: 6px 10px; font-size: 9px; }
  .wb-live-head, .wb-live-foot { padding: 10px 14px; }
  .wb-live-foot { font-size: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   REQUEST FORM
   ═══════════════════════════════════════════════════════════════ */
.request-hero {
  padding: 140px 0 60px;
  background: var(--ink);
}
.request-hero .container-narrow { max-width: 820px; }
.request-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--text-1);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 500;
}
.request-hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
  color: var(--signal);
}
.request-hero-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 640px;
  font-weight: 300;
}
.request-hero-body strong { color: var(--text-1); font-weight: 500; }

.request-form-section {
  padding: 40px 0 120px;
  background: var(--ink);
}
.request-form-section .container-narrow { max-width: 820px; }
.request-form {
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.form-code {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--signal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.form-code::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--signal);
}
.form-field {
  margin-bottom: 40px;
}
.form-label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.form-label-num {
  color: var(--signal);
  font-weight: 500;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--text-1);
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 300;
  padding: 12px 0;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-select {
  background-image: linear-gradient(45deg, transparent 50%, var(--text-3) 50%), linear-gradient(135deg, var(--text-3) 50%, transparent 50%);
  background-position: calc(100% - 12px) center, calc(100% - 7px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 24px;
  cursor: pointer;
}
.form-select option {
  background: var(--panel);
  color: var(--text-1);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--signal);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-4);
  font-weight: 300;
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: var(--f-body);
  line-height: 1.6;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.honeypot { position: absolute; left: -9999px; }
.form-submit {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.form-submit button {
  background: var(--signal);
  color: white;
  border: none;
  padding: 16px 32px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit button:hover { background: var(--signal-deep); }
.form-submit-note {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-4);
  letter-spacing: 0.03em;
}
.form-referral {
  margin-top: 88px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.form-referral-label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--signal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.form-referral p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
}
.form-referral p a {
  color: var(--signal);
  border-bottom: 1px solid var(--signal-line);
  transition: border-color 0.2s;
}
.form-referral p a:hover { border-color: var(--signal); }

@media (max-width: 700px) {
  .request-hero { padding: 88px 0 32px; }
  .request-form-section { padding: 24px 0 80px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 40px; }
  .form-referral { margin-top: 56px; }
}
