/**
 * GRW Talent — Hireability Engine
 * styles.css — Design Elevation Pass
 *
 * Palette (strict):
 *   paper   #F5F6F3   page bg
 *   white   #FFFFFF   cards
 *   ink     #111827   text / dark sections
 *   pine    #0D5C47   primary CTAs, key accents only
 *   moss    #E7EEEA   subtle secondary surfaces
 *   border  #E2E6E2
 *
 * Data colours (earned in charts/scores, not decoration):
 *   red     #C0492F   poor/hard to fill
 *   amber   #C9821E   caution
 *   green   #0D5C47   = pine, fillable/good
 *
 * Typography:
 *   Libre Franklin 600/700  headings
 *   Inter 400/500           body
 *   IBM Plex Mono 400/500   eyebrows, tags, numeric data ONLY
 */

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --paper:          #F5F6F3;
  --white:          #FFFFFF;
  --ink:            #111827;
  --ink-80:         rgba(17,24,39,.80);
  --ink-60:         rgba(17,24,39,.60);
  --ink-40:         rgba(17,24,39,.40);
  --ink-20:         rgba(17,24,39,.20);
  --pine:           #0D5C47;
  --pine-10:        rgba(13,92,71,.10);
  --moss:           #E7EEEA;
  --border:         #E2E6E2;

  --data-red:       #C0492F;
  --data-red-bg:    rgba(192,73,47,.07);
  --data-amber:     #C9821E;
  --data-amber-bg:  rgba(201,130,30,.07);
  --data-green:     #0D5C47;
  --data-green-bg:  rgba(13,92,71,.07);

  --font-heading:   'Libre Franklin', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --font-mono:      'IBM Plex Mono', 'Courier New', monospace;

  /* Type scale */
  --text-xs:    0.6875rem;
  --text-sm:    0.8125rem;
  --text-base:  0.9375rem;
  --text-md:    1.0625rem;
  --text-lg:    1.1875rem;
  --text-xl:    1.375rem;
  --text-2xl:   1.625rem;
  --text-3xl:   2rem;
  --text-4xl:   2.75rem;

  /* Spacing */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px;  --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Layout */
  --max-w:   1160px;
  --col-gap: 24px;

  /* Radii */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-md: 10px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(17,24,39,.06), 0 1px 2px rgba(17,24,39,.04);
  --shadow:    0 2px 8px rgba(17,24,39,.07), 0 1px 3px rgba(17,24,39,.05);
  --shadow-md: 0 4px 16px rgba(17,24,39,.08), 0 2px 6px rgba(17,24,39,.05);
  --shadow-lg: 0 8px 32px rgba(17,24,39,.10), 0 2px 8px rgba(17,24,39,.06);
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
@media (min-width: 768px)  { .container { padding: 0 var(--sp-10); } }
@media (min-width: 1200px) { .container { padding: 0 var(--sp-8);  } }

.section      { padding: var(--sp-16) 0; }
.section--sm  { padding: var(--sp-12) 0; }
.section--moss { background: var(--moss); padding: var(--sp-16) 0; }
.section--dark { background: var(--ink);  padding: var(--sp-16) 0; }

/* Hairline rule between sections */
.section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, var(--text-4xl)); letter-spacing: -0.03em; line-height: 1.10; }
h2 { font-size: clamp(1.5rem, 3.5vw, var(--text-3xl)); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-base); font-weight: 600; letter-spacing: -0.01em; }
h5 { font-size: var(--text-sm);  font-weight: 600; }

.lead {
  font-size: var(--text-md);
  color: var(--ink-60);
  line-height: 1.65;
}

/* Eyebrow — mono, uppercase, small */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: var(--sp-3);
}
.eyebrow--pine { color: var(--pine); }

/* Indexed section eyebrow (e.g. "01 — Section Name") */
.eyebrow--index {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: var(--sp-4);
  display: block;
}

/* Screen-reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.3;
  transition: background .15s, border-color .15s, color .15s, opacity .15s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn--sm  { padding: 7px 14px;  font-size: var(--text-xs); }
.btn--lg  { padding: 13px 28px; font-size: var(--text-base); }

.btn--pine {
  background: var(--pine);
  color: var(--white);
  border-color: var(--pine);
}
.btn--pine:hover { background: #0a4d3b; border-color: #0a4d3b; text-decoration: none; }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--ink-40); text-decoration: none; }

.btn--outline-pine {
  background: transparent;
  color: var(--pine);
  border-color: var(--pine);
}
.btn--outline-pine:hover { background: var(--pine-10); text-decoration: none; }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.40);
}
.btn--outline-white:hover { border-color: var(--white); text-decoration: none; }

/* ── TAGS ────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  line-height: 1.4;
}
.tag--red   { background: var(--data-red-bg);   color: var(--data-red);   }
.tag--amber { background: var(--data-amber-bg); color: var(--data-amber); }
.tag--green { background: var(--data-green-bg); color: var(--data-green); }
.tag--mono  { background: var(--moss); color: var(--ink-60); border: 1px solid var(--border); }

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.input {
  display: block;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
  line-height: 1.55;
}
.input:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(13,92,71,.08);
}
.input::placeholder { color: var(--ink-40); }
.form-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-60);
  font-weight: 500;
  margin-bottom: var(--sp-2);
  display: block;
}
.form-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink-40);
}

/* ── NAV ─────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,246,243,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
@media (min-width: 768px)  { .nav { padding: 0 var(--sp-10); } }
@media (min-width: 1200px) { .nav { padding: 0 var(--sp-8);  } }

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-4) 0;
}
.nav__wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--ink);
  letter-spacing: -0.025em;
  flex-shrink: 0;
}
.nav__wordmark:hover { text-decoration: none; }

.nav__links {
  display: none;
  gap: var(--sp-6);
  flex: 1;
}
.nav__links a {
  font-size: var(--text-sm);
  color: var(--ink-60);
  font-weight: 500;
  transition: color .15s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--ink); text-decoration: none; }

.nav__cta { display: none; margin-left: auto; }

.nav__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav__mobile-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-4) 0 var(--sp-6);
  border-top: 1px solid var(--border);
  margin-top: var(--sp-2);
}
.nav__mobile-menu a {
  font-size: var(--text-base);
  color: var(--ink-60);
  padding: var(--sp-2) 0;
  font-weight: 500;
  transition: color .15s;
}
.nav__mobile-menu a:hover { color: var(--ink); text-decoration: none; }
.nav__mobile-menu.is-open { display: flex; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-16);
}
.hero__inner { max-width: 680px; }
.hero h1 { margin-bottom: var(--sp-5); }
.hero .lead { font-size: var(--text-lg); margin-bottom: var(--sp-6); max-width: 560px; }
.hero__link {
  font-size: var(--text-sm);
  color: var(--pine);
  font-weight: 500;
  border-bottom: 1px solid var(--pine-10);
  padding-bottom: 1px;
  transition: border-color .15s;
}
.hero__link:hover { border-color: var(--pine); text-decoration: none; }

/* ── SPEC DOOR ───────────────────────────────────────────── */
.spec-door {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
}
.spec-door textarea { min-height: 130px; margin-bottom: var(--sp-4); }
.spec-door__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: space-between;
}
.spec-door__btns { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ── AUDIENCE CARDS ──────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--col-gap);
  margin-top: var(--sp-4);
}
.audience-card {
  padding: var(--sp-8);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
/* Corner tick — restrained craft detail */
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border-top: 1.5px solid rgba(13,92,71,.3);
  border-left: 1.5px solid rgba(13,92,71,.3);
  border-radius: var(--radius-sm) 0 0 0;
}
.audience-card__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.audience-card h3 { font-size: var(--text-xl); line-height: 1.25; }
.audience-card p  { color: var(--ink-60); font-size: var(--text-base); flex: 1; }

/* ── TICKER ──────────────────────────────────────────────── */
.ticker {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
}
.ticker__inner {
  display: flex;
  align-items: stretch;
  min-height: 42px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
@media (min-width: 768px)  { .ticker__inner { padding: 0 var(--sp-10); } }
@media (min-width: 1200px) { .ticker__inner { padding: 0 var(--sp-8);  } }

.ticker__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--pine);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0 var(--sp-5) 0 0;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.09);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: var(--sp-5);
}
.ticker__track { flex: 1; overflow: hidden; position: relative; display: flex; align-items: center; }
.ticker__items { display: flex; white-space: nowrap; align-items: center; }
.ticker__item {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.50);
  padding: 0 var(--sp-8);
  letter-spacing: .04em;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  height: 42px;
  font-variant-numeric: tabular-nums;
}
.ticker__item--supply-tight { color: var(--data-red); }

/* ── ENGINE GRID ─────────────────────────────────────────── */
.engine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.engine-intro .lead { margin-bottom: var(--sp-4); }
.engine-signoff {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-40);
  letter-spacing: .04em;
  line-height: 1.7;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  margin-top: var(--sp-6);
}

/* ── RESULT CARD PLACEHOLDER ─────────────────────────────── */
.result-card-placeholder {
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-16) var(--sp-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.result-card-placeholder h3 { font-size: var(--text-xl); color: var(--ink-60); }
.result-card-placeholder p  { font-size: var(--text-sm); color: var(--ink-40); max-width: 260px; }

/* ── RESULT CARD ─────────────────────────────────────────── */
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
/* Corner register marks */
.result-card::before {
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  width: 12px; height: 12px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  pointer-events: none;
  z-index: 1;
}

.result-card__header {
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.result-card__role {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--ink);
  margin-bottom: var(--sp-1);
  line-height: 1.2;
}
.result-card__meta {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-60);
  letter-spacing: .04em;
}
.result-card__body  { padding: var(--sp-4) var(--sp-6); }
.result-card__section {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}
.result-card__section:last-child { border-bottom: none; }
.result-card__section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ── SCORE GAUGE — SVG arc ───────────────────────────────── */
/*
 * 270° radial arc gauge. viewBox 200×130.
 * Radius 80, centre (100, 100).
 * Arc starts 225° (bottom-left) sweeps 270° to 315° (bottom-right).
 * Total arc length ≈ 2π×80×(270/360) ≈ 376.99 px → use 377.
 */
.gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--sp-2) 0;
}
.gauge-svg {
  width: 190px;
  height: 115px;
  overflow: visible;
}
.gauge-track {
  fill: none;
  stroke: var(--border);
  stroke-width: 6;
  stroke-linecap: round;
}
/* Fill arc — JS drives stroke-dasharray. Transition for animation. */
.gauge-fill {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 0 377;
  transition: stroke-dasharray 1.15s cubic-bezier(.22,.61,.36,1);
}
.gauge-fill--red   { stroke: var(--data-red);   }
.gauge-fill--amber { stroke: var(--data-amber);  }
.gauge-fill--green { stroke: var(--data-green);  }

/* ── AVAILABILITY SEGMENTED METER ────────────────────────── */
.availability-meter {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.availability-meter__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-1);
}
.availability-meter__score {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--data-red);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
}
.availability-meter__denom {
  font-size: var(--text-xs);
  color: var(--ink-40);
  font-family: var(--font-mono);
}

.seg-bar {
  display: flex;
  gap: 3px;
  height: 8px;
}
.seg-bar__seg {
  flex: 1;
  border-radius: 2px;
  background: var(--border);
  transition: background .25s;
}
.seg-bar__seg.is-filled-red   { background: var(--data-red);   }
.seg-bar__seg.is-filled-amber { background: var(--data-amber); }
.seg-bar__seg.is-filled-green { background: var(--data-green); }

.seg-bar-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}
.seg-bar-scale span {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-40);
  font-variant-numeric: tabular-nums;
}
.availability__note {
  font-size: var(--text-xs);
  color: var(--ink-60);
  line-height: 1.55;
  margin-top: var(--sp-2);
}

/* ── WHY FACTORS — DIVERGING BAR CHART ──────────────────── */
/*
 * Grid layout: label | bar-area (80px) | chip (right-aligned).
 * Bar area uses flex; pos bars grow left→right, neg bars grow left→right too
 * (we don't split on a centre axis — the whole bar is sized proportionally
 * to its magnitude, green for +, red for −, aligned in same column for clarity).
 */
.why-chart { display: flex; flex-direction: column; gap: 0; }
.why-chart__row {
  display: grid;
  grid-template-columns: 1fr 80px 44px;
  align-items: center;
  gap: var(--sp-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.why-chart__row:last-child { border-bottom: none; }

.why-chart__label {
  font-size: var(--text-xs);
  color: var(--ink);
  line-height: 1.4;
}
.why-chart__bar-cell {
  display: flex;
  align-items: center;
  height: 14px;
}
.why-chart__bar {
  height: 7px;
  border-radius: 2px;
  min-width: 2px;
  width: 0;
  transition: width .8s cubic-bezier(.4,0,.2,1);
}
.why-chart__bar--pos { background: var(--data-green); }
.why-chart__bar--neg { background: var(--data-red);   }

.why-chart__chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  justify-self: end;
}
.why-chart__chip--pos { background: var(--data-green-bg); color: var(--data-green); }
.why-chart__chip--neg { background: var(--data-red-bg);   color: var(--data-red);   }

/* ── PROBABILITY STATS ───────────────────────────────────── */
.stat-row { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 130px; }
.stat-item__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-60);
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.stat-item__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--ink);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

/* ── PROOF BOX ───────────────────────────────────────────── */
.proof-box {
  background: var(--moss);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--ink-60);
  line-height: 1.6;
  letter-spacing: .02em;
}

/* ── GREEN LANDING ZONE ──────────────────────────────────── */
.zone-bar-section { display: flex; flex-direction: column; gap: var(--sp-3); }
.zone-bar { display: flex; flex-direction: column; gap: var(--sp-1); }
.bar-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}
.bar-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-60);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.bar-value {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.bar-track {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s cubic-bezier(.4,0,.2,1);
  width: 0;
}
.bar-fill--red   { background: var(--data-red);   }
.bar-fill--amber { background: var(--data-amber);  }
.bar-fill--green { background: var(--data-green);  }

/* Delta indicator (+25) between now/target bars */
.zone-delta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 2px 0;
}
.zone-delta__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.zone-delta__chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--data-green);
  background: var(--data-green-bg);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
}

/* ── CAPTURE STRIP ───────────────────────────────────────── */
.capture-strip {
  background: var(--ink);
  padding: var(--sp-6);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.capture-strip h4 {
  color: var(--white);
  font-size: var(--text-md);
  margin-bottom: var(--sp-1);
}
.capture-strip p {
  color: rgba(255,255,255,.60);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-4);
  line-height: 1.55;
}
.capture-strip .input {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.17);
  color: var(--white);
  border-radius: var(--radius-sm);
}
.capture-strip .input::placeholder { color: rgba(255,255,255,.30); }
.capture-strip .input:focus {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.10);
  box-shadow: none;
}
.capture-row { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.capture-row input { flex: 1; min-width: 180px; }

/* ── MODULES ─────────────────────────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--col-gap);
}
.module-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  box-shadow: var(--shadow-sm);
}
.module-card__num   { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-40); letter-spacing: .10em; font-weight: 500; }
.module-card__title { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-base); color: var(--ink); line-height: 1.3; }
.module-card__desc  { font-size: var(--text-sm); color: var(--ink-60); line-height: 1.55; flex: 1; }
.module-card__tag-row { display: flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-1); }

/* ── PROOF STATS ─────────────────────────────────────────── */
.proof-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--col-gap);
}
.proof-stat { padding: var(--sp-6) 0; border-bottom: 1px solid var(--border); }
.proof-stat:last-child { border-bottom: none; }
.proof-stat__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--pine);
  margin-bottom: var(--sp-2);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.proof-stat__desc { font-size: var(--text-base); color: var(--ink-60); line-height: 1.55; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); }
.how-step { display: flex; gap: var(--sp-5); align-items: flex-start; }
.how-step__num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 500;
  color: rgba(255,255,255,.12);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}
.how-step__content h3 { color: var(--white); font-size: var(--text-xl); margin-bottom: var(--sp-2); }
.how-step__content p  { color: rgba(255,255,255,.60); font-size: var(--text-base); line-height: 1.65; }

/* ── ROLE RESCUE ─────────────────────────────────────────── */
.role-rescue {
  background: var(--ink);
  padding: var(--sp-16) 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.role-rescue__inner { display: flex; flex-direction: column; gap: var(--sp-6); align-items: flex-start; }

/* ── TRUST / FOUNDERS ────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
}

/* Photo wrapper with editorial border treatment */
.founders-photo-wrap {
  width: 100%;
  max-width: 280px;
  position: relative;
}
.founders-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: block;
}
/* Corner mark on photo */
.founders-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 12px; right: 12px;
  width: 14px; height: 14px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  border-right: 1px solid rgba(255,255,255,.45);
  pointer-events: none;
}

/* Retained fallback placeholder styles */
.founders-portrait {
  width: 100%; max-width: 280px;
  aspect-ratio: 3/4;
  background: var(--moss);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--sp-3);
}
.founders-portrait__initials { font-family: var(--font-heading); font-weight: 700; font-size: 2.5rem; color: var(--pine); letter-spacing: -0.04em; }
.founders-portrait__label    { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-60); letter-spacing: .08em; text-transform: uppercase; }

.pull-quote {
  font-size: var(--text-md);
  color: var(--ink);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: var(--sp-6);
  padding-left: var(--sp-5);
  border-left: 2px solid var(--pine);
}
.founders-names { display: flex; flex-direction: column; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.founder { display: flex; flex-direction: column; gap: 2px; }
.founder__name { font-weight: 600; font-size: var(--text-base); color: var(--ink); }
.founder__role { font-size: var(--text-sm); color: var(--ink-60); line-height: 1.45; }
.trust-note {
  background: var(--moss);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--ink-60);
  line-height: 1.55;
}

/* ── CLOSING CTA ─────────────────────────────────────────── */
.closing-cta { background: var(--pine); padding: var(--sp-16) 0; text-align: center; }
.closing-cta h2 { color: var(--white); margin-bottom: var(--sp-5); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--ink); padding: var(--sp-16) 0 var(--sp-10); }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: var(--sp-8);
}
.footer__brand { max-width: 300px; }
.footer__wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-3);
  display: block;
}
.footer__tagline { font-size: var(--text-sm); color: rgba(255,255,255,.50); line-height: 1.55; margin-bottom: var(--sp-4); }
.footer__contact { display: flex; flex-direction: column; gap: var(--sp-1); }
.footer__contact a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.50);
  transition: color .15s;
  font-family: var(--font-mono);
  letter-spacing: .02em;
}
.footer__contact a:hover { color: var(--white); text-decoration: none; }
.footer__links-group { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__links-group h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.30);
  font-weight: 500;
}
.footer__links-group ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__links-group a { font-size: var(--text-sm); color: rgba(255,255,255,.50); transition: color .15s; }
.footer__links-group a:hover { color: var(--white); text-decoration: none; }
.footer__governance {
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: rgba(255,255,255,.28);
  line-height: 1.75;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.07);
  letter-spacing: .01em;
}

/* ── SAMPLE REPORT PAGE ──────────────────────────────────── */
.report-header { background: var(--ink); padding: var(--sp-16) 0 var(--sp-12); }
.report-header__inner { max-width: 720px; }
.report-header h1 { color: var(--white); margin-bottom: var(--sp-4); }
.report-header .lead { color: rgba(255,255,255,.60); }

.confidence-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.60);
  letter-spacing: .06em;
  margin-bottom: var(--sp-5);
}
.confidence-chip--moss { background: var(--moss); border-color: var(--border); color: var(--ink-60); }

/* ── BEFORE / AFTER with delta connector ─────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--col-gap);
}
.ba-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: var(--shadow-sm);
}
.ba-card--optimised {
  border-color: var(--pine);
  box-shadow: 0 0 0 1px var(--pine), var(--shadow-sm);
}
.ba-card__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--ink-60);
}
.ba-card__score {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}
.ba-card__score--red   { color: var(--data-red);   }
.ba-card__score--green { color: var(--data-green); }
.ba-card__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--ink-60);
}
.ba-card__details span {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

/* Delta connector: "+31" badge between the two cards */
.ba-delta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) 0;
}
.ba-delta__line {
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 48px;
}
.ba-delta__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--sp-3) var(--sp-4);
  background: var(--data-green-bg);
  border: 1px solid rgba(13,92,71,.18);
  border-radius: var(--radius-md);
}
.ba-delta__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--data-green);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.ba-delta__label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--data-green);
  letter-spacing: .10em;
  text-transform: uppercase;
}
/* On medium+ screens: horizontal layout, delta badge sits between cards */
.ba-delta--horizontal {
  padding: 0;
  align-self: center;
}

/* ── DELIVERABLE CARDS ───────────────────────────────────── */
.deliverable-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.deliverable-card__header {
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--paper);
}
.deliverable-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--ink-40);
  flex-shrink: 0;
  text-transform: uppercase;
}
.deliverable-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--ink);
  line-height: 1.2;
}
.deliverable-card__body { padding: var(--sp-6); }
.deliverable-card__body p {
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.deliverable-card__body p:last-child { margin-bottom: 0; }
.deliverable-card__body h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-2);
  margin-top: var(--sp-5);
}
.deliverable-card__body h4:first-child { margin-top: 0; }
.deliverable-card__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
}
.deliverable-card__body ul li {
  font-size: var(--text-sm);
  color: var(--ink);
  padding-left: var(--sp-5);
  position: relative;
  line-height: 1.55;
}
.deliverable-card__body ul li::before { content: '—'; position: absolute; left: 0; color: var(--ink-40); }

/* Advert header block */
.advert-header {
  background: var(--moss);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.advert-header__role {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: var(--sp-1);
}
.advert-header__location {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--pine);
  letter-spacing: .06em;
}

/* Strategy table */
.strategy-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.strategy-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--ink-60);
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.strategy-table td {
  padding: var(--sp-3);
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  vertical-align: top;
  line-height: 1.5;
}
.strategy-table tr:last-child td { border-bottom: none; }
.strategy-table td:first-child {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-60);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Callout box */
.callout-box {
  border-left: 2px solid var(--pine);
  background: var(--moss);
  padding: var(--sp-4) var(--sp-5);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--sp-5) 0;
}
.callout-box p {
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Pricing cards (sample report deliverable 04) */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--col-gap);
  margin: var(--sp-5) 0;
}
.pricing-card { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.pricing-card--current  .pricing-card__label-bar { background: var(--data-red-bg);   border-bottom: 1px solid rgba(192,73,47,.15); }
.pricing-card--optimised .pricing-card__label-bar { background: var(--data-green-bg); border-bottom: 1px solid rgba(13,92,71,.15);  }
.pricing-card--optimised { border-color: var(--pine); }
.pricing-card__label-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-5);
}
.pricing-card__option {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.pricing-card--current   .pricing-card__option { color: var(--data-red);   }
.pricing-card--optimised .pricing-card__option { color: var(--data-green); }
.pricing-card__body { padding: var(--sp-5); }
.pricing-card__fee {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-2xl);
  line-height: 1;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.pricing-card--current   .pricing-card__fee { color: var(--data-red);   }
.pricing-card--optimised .pricing-card__fee { color: var(--data-green); }
.pricing-card__detail-row {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
}
.pricing-card__detail-row:last-child { border-bottom: none; }
.pricing-card__detail-label { color: var(--ink-60); }
.pricing-card__detail-value { font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }
.pricing-small-print {
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--ink-60);
  line-height: 1.65;
  margin-top: var(--sp-4);
  letter-spacing: .01em;
}

/* Message boxes */
.message-box {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
}
.message-box__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--ink-60);
  margin-bottom: var(--sp-3);
}
.message-box__text {
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.7;
  white-space: pre-line;
}

/* Prompt card */
.prompt-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  margin-top: var(--sp-8);
  border: 1px solid rgba(255,255,255,.06);
}
.prompt-card h2 { color: var(--white); margin-bottom: var(--sp-3); }
.prompt-card p  { color: rgba(255,255,255,.60); font-size: var(--text-sm); line-height: 1.65; margin-bottom: var(--sp-5); }
.prompt-preview {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-height: 280px;
  overflow: hidden;
  position: relative;
}
/* Solid colour fade — not gradient-as-decoration */
.prompt-preview::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: rgba(17,24,39,.96);
  border-radius: 0 0 var(--radius) var(--radius);
}
.prompt-copy-btn { display: inline-flex; align-items: center; gap: var(--sp-2); }
.prompt-copy-btn .copy-icon { width: 14px; height: 14px; opacity: .65; }

/* Report CTA */
.report-cta { background: var(--pine); padding: var(--sp-16) 0; text-align: center; }
.report-cta h2 { color: var(--white); margin-bottom: var(--sp-3); }
.report-cta p  {
  color: rgba(255,255,255,.75);
  font-size: var(--text-md);
  max-width: 520px;
  margin: 0 auto var(--sp-6);
  line-height: 1.65;
}

/* Caveat footer */
.caveat-footer { background: var(--paper); border-top: 1px solid var(--border); padding: var(--sp-8) 0; }
.caveat-footer p {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-60);
  line-height: 1.75;
  max-width: 720px;
  letter-spacing: .02em;
}

/* ── INTERIOR PAGES (pricing / privacy) ──────────────────── */
.page-header {
  background: var(--ink);
  padding: var(--sp-16) 0 var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.page-header__inner { max-width: 600px; }
.page-header h1 { color: var(--white); margin-top: var(--sp-4); margin-bottom: var(--sp-4); }
.page-header p  { color: rgba(255,255,255,.60); font-size: var(--text-md); line-height: 1.65; }
.page-body { padding: var(--sp-16) 0 var(--sp-24); }

.prose { max-width: 660px; }
.prose h2 {
  font-size: var(--text-xl);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.prose h3 { font-size: var(--text-lg); margin-top: var(--sp-8); margin-bottom: var(--sp-3); }
.prose p  { font-size: var(--text-base); color: var(--ink-60); line-height: 1.75; margin-bottom: var(--sp-4); }
.prose p:last-child { margin-bottom: 0; }
.prose ul  { list-style: none; margin-bottom: var(--sp-5); }
.prose ul li {
  font-size: var(--text-base);
  color: var(--ink-60);
  padding-left: var(--sp-5);
  position: relative;
  line-height: 1.65;
  margin-bottom: var(--sp-2);
}
.prose ul li::before { content: '—'; position: absolute; left: 0; color: var(--ink-40); }
.prose .highlight-box {
  background: var(--moss);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-6) 0;
}
.prose .highlight-box p { color: var(--ink); margin-bottom: 0; font-size: var(--text-sm); line-height: 1.65; }
.prose a { color: var(--pine); border-bottom: 1px solid var(--pine-10); }
.prose a:hover { border-color: var(--pine); text-decoration: none; }

.pricing-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--col-gap);
  margin: var(--sp-8) 0;
}
.pricing-tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-tier--featured { border-color: var(--pine); box-shadow: 0 0 0 1px var(--pine), var(--shadow-sm); }
.pricing-tier__top { padding: var(--sp-6); border-bottom: 1px solid var(--border); }
.pricing-tier__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
  margin-bottom: var(--sp-2);
}
.pricing-tier--standard .pricing-tier__label { color: var(--ink-60); }
.pricing-tier--featured  .pricing-tier__label { color: var(--pine);   }
.pricing-tier__rate {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-2);
  font-variant-numeric: tabular-nums;
}
.pricing-tier__desc { font-size: var(--text-sm); color: var(--ink-60); line-height: 1.55; }
.pricing-tier__body { padding: var(--sp-6); }
.pricing-tier__row {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
}
.pricing-tier__row:last-child { border-bottom: none; }
.pricing-tier__key { color: var(--ink-60); }
.pricing-tier__val { font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header { margin-bottom: var(--sp-10); }
.section-header .lead { max-width: 520px; margin-top: var(--sp-3); }
.section-header--center { text-align: center; }
.section-header--center .lead { margin-left: auto; margin-right: auto; }

/* ── SCORE LARGE (legacy, used on sample report ba delta) ─── */
.score-large {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}
.score-large--red   { color: var(--data-red);   }
.score-large--green { color: var(--data-green); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s;   }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .07s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .14s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .21s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .28s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .bar-fill        { transition: none; }
  .gauge-fill      { transition: none; }
  .seg-bar__seg    { transition: none; }
  .why-chart__bar  { transition: none; }
  html             { scroll-behavior: auto; }
}

/* ── UTILITIES ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2  { margin-top: var(--sp-2);  } .mt-3  { margin-top: var(--sp-3);  }
.mt-4  { margin-top: var(--sp-4);  } .mt-5  { margin-top: var(--sp-5);  }
.mt-6  { margin-top: var(--sp-6);  } .mt-8  { margin-top: var(--sp-8);  }
.mt-10 { margin-top: var(--sp-10); } .mt-12 { margin-top: var(--sp-12); }
.mb-4  { margin-bottom: var(--sp-4); } .mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); } .mb-12 { margin-bottom: var(--sp-12); }
.flex  { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.wrap { flex-wrap: wrap; }
.full-width { width: 100%; }
.grid-2 { display: grid; gap: var(--col-gap); }
.grid-3 { display: grid; gap: var(--col-gap); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (min-width: 600px) {
  .grid-2           { grid-template-columns: 1fr 1fr; }
  .audience-grid    { grid-template-columns: 1fr 1fr; }
  .proof-stats      { grid-template-columns: 1fr 1fr 1fr; }
  .proof-stat       { border-bottom: none; border-right: 1px solid var(--border); padding: 0 var(--sp-6); }
  .proof-stat:first-child { padding-left: 0; }
  .proof-stat:last-child  { border-right: none; }
  .pricing-cards    { grid-template-columns: 1fr 1fr; }
  .pricing-comparison { grid-template-columns: 1fr 1fr; }
  .modules-grid     { grid-template-columns: 1fr 1fr; }
  /* BA grid with delta in middle column */
  .ba-grid          { grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--sp-3); }
}

@media (min-width: 768px) {
  .nav__links        { display: flex; }
  .nav__cta          { display: flex; }
  .nav__mobile-toggle { display: none; }
  .grid-3            { grid-template-columns: repeat(3, 1fr); }
  .how-grid          { grid-template-columns: repeat(3, 1fr); }
  .how-step          { flex-direction: column; gap: var(--sp-4); }
  .trust-grid        { grid-template-columns: 280px 1fr; }
  .engine-grid       { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer__top       { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .modules-grid      { grid-template-columns: repeat(3, 1fr); }
}
