/* =========================================================
   DST Program Partners — Design System
   Tokens → Base → Layout → Components → Utilities
   ========================================================= */

:root {
  /* Confirmed palette — five colors total
     Ink  / Ink soft / Paper / Black / Gold (gold = two uses only) */
  --ink:        #0F1419;
  --ink-soft:   #4F5B66;
  --ink-mid:    #2F3740;
  --paper-bg:   #F2EDE4;
  --black:      #0A0A0A;
  --gold:       #8B6F3F;

  /* Rule lines */
  --rule-light: rgba(15, 20, 25, 0.12);
  --rule-dark:  rgba(250, 247, 242, 0.12);

  /* Legacy variable aliases — repointed to the five-color palette
     so existing component CSS works without rewriting every selector. */
  --navy-900: var(--black);
  --navy-800: #151515;
  --navy-700: #1E1E1E;
  --navy-600: #2A2A2A;
  --charcoal-900: #070707;
  --charcoal-800: #181818;
  --charcoal-700: #242424;
  --warm-white: var(--paper-bg);
  --warm-white-2: #EEEAE2;
  --paper: #FFFFFF;
  --border: var(--rule-light);
  --border-dark: var(--rule-dark);
  --text: var(--ink);
  --text-muted: var(--ink-soft);
  --text-muted-strong: var(--ink-mid);
  --text-inverse: #F4EFE6;
  --text-inverse-muted: #C9C2B6;
  --text-inverse-muted-soft: #AFA79B;

  /* Gold accent — used only on primary CTA bg and pull-quote text */
  --accent: var(--gold);
  --accent-strong: #6F562F;
  --accent-soft: rgba(139, 111, 63, 0.12);

  /* Type */
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "IBM Plex Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Type scale — exact pixel targets, mobile (≤640px) and desktop values */
  --fs-eyebrow:  0.6875rem; /* 11px mobile */
  --fs-support:  0.9375rem; /* 15px mobile */
  --fs-body:     1.0625rem; /* 17px mobile */
  --fs-h3:       1.5rem;    /* 24px mobile */
  --fs-pullq:    1.5rem;    /* 24px mobile */
  --fs-h2:       2.25rem;   /* 36px mobile */
  --fs-h1:       3rem;      /* 48px mobile */

  /* Legacy step scale retained for non-headline components */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  1.0625rem;
  --step-1:  1.125rem;
  --step-2:  1.25rem;
  --step-3:  1.5rem;
  --step-4:  1.875rem;
  --step-5:  var(--fs-h2);
  --step-6:  var(--fs-h1);

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 1rem + 1.5vw, 2rem);
  --section-y: clamp(4rem, 3rem + 4vw, 7rem);

  /* Radius / shadow */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(11, 27, 43, 0.06), 0 1px 1px rgba(11, 27, 43, 0.04);
  --shadow-md: 0 6px 24px -8px rgba(11, 27, 43, 0.18), 0 2px 4px rgba(11, 27, 43, 0.06);

  /* Motion */
  --ease: cubic-bezier(.2, .6, .2, 1);
}

/* ---------- Reset + Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text);
  background: var(--warm-white);
  font-variant-numeric: proportional-nums lining-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 641px) {
  body { font-size: 1.125rem; } /* 18px desktop */
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  font-feature-settings: "kern" 1, "liga" 1;
  color: var(--text);
  margin: 0 0 0.5em;
}
.section--dark h1, .section--dark h2 { color: #FAF7F2; }
h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 0.45em;
}
h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 0.45em;
}
.section--dark h3 { color: #FAF7F2; }
h1 { font-size: var(--fs-h1); line-height: 1.05; letter-spacing: -0.025em; font-variant-numeric: proportional-nums lining-nums; }
h2 { font-size: var(--fs-h2); line-height: 1.1; font-variant-numeric: proportional-nums lining-nums; }
h3 { font-size: var(--fs-h3); line-height: 1.2; }

@media (min-width: 641px) {
  h1 { font-size: 5.5rem; }   /* 88px desktop */
  h2 { font-size: 3.75rem; }  /* 60px desktop */
  h3 { font-size: 1.875rem; } /* 30px desktop */
}
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
.section--dark h3, .section--dark h4 { color: var(--paper); }
p { margin: 0 0 1em; max-width: 68ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6E5A2E;
  margin: 0 0 1.15rem;
}
.eyebrow::before { content: none; display: none; }
.section--dark .eyebrow,
.hero .eyebrow,
.site-footer .eyebrow {
  color: #C2A15E;
}
@media (max-width: 760px) {
  .eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.075em;
  }
}

/* ---------- Container + Section ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section--dark { background: var(--navy-900); color: var(--text-inverse); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--paper); }
.section--dark .eyebrow { color: var(--accent); }
.section--dark p { color: var(--text-inverse-muted); }
.section--alt { background: var(--warm-white-2); }
.section--paper { background: var(--paper); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 0.9rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand__mark {
  width: 26px; height: 26px;
  display: inline-block;
}
.brand__name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--navy-900);
}
.brand__name b { font-weight: 600; }
.nav__links { display: none; gap: 1.8rem; align-items: center; }
.nav__links a {
  font-size: 0.92rem;
  color: var(--charcoal-800);
  font-weight: 500;
  letter-spacing: 0.005em;
  position: relative;
  padding-block: 0.25rem;
}
.nav__links a:hover { color: var(--navy-900); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--accent);
}
.nav__cta { display: none; }

.nav__toggle {
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 0.55rem 0.7rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--navy-900); font-size: 0.85rem;
}
.nav__toggle svg { width: 18px; height: 18px; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--warm-white);
  padding: 1rem var(--gutter) 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal-800);
  font-weight: 500;
}
.mobile-menu .btn { margin-top: 1rem; width: 100%; justify-content: center; }

@media (min-width: 920px) {
  .nav__links { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0;
  border: 1px solid transparent;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn--primary { background: var(--navy-900); color: var(--paper); }
.btn--primary:hover { background: var(--navy-800); }
.btn--accent { background: var(--accent); color: var(--paper); }
.btn--accent:hover { background: var(--accent-strong); }
.btn--ghost { background: transparent; color: var(--navy-900); border-color: var(--navy-900); }
.btn--ghost:hover { background: var(--navy-900); color: var(--paper); }
.btn--ghost-light { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: var(--paper); color: var(--navy-900); border-color: var(--paper); }
.btn--lg { padding: 1.1rem 1.8rem; font-size: 1.05rem; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.cta-pair { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }
@media (max-width: 600px) {
  .hero .cta-pair { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .hero .cta-pair .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(5rem, 4rem + 6vw, 9rem);
  background: #0A0A0A;
  color: var(--text-inverse);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: none;
}
.hero::after {
  content: none;
}
.hero h1 { color: var(--paper); max-width: 18ch; }
.hero .lede { font-size: var(--fs-body); color: var(--text-inverse); max-width: 56ch; margin-top: 1.25rem; line-height: 1.55; font-weight: 400; }
@media (min-width: 641px) { .hero .lede { font-size: 1.125rem; } }
.hero .eyebrow { color: var(--accent); }

/* ---------- Cards & Grids ---------- */
.grid { display: grid; gap: clamp(1rem, 0.7rem + 1vw, 1.5rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  position: relative;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.card:hover { border-color: var(--accent); }
.card__index {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); margin-bottom: 0; }
.section--dark .card__index { color: var(--text-inverse-muted); }

.section--dark .card {
  background: var(--navy-800);
  border-color: var(--border-dark);
  color: var(--text-inverse);
}
.section--dark .card:hover { border-color: var(--accent); }
.section--dark .card h3 { color: var(--paper); }
.section--dark .card p { color: var(--text-inverse-muted); }

/* ---------- Two-column layout ---------- */
.two-col {
  display: grid;
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col--lead { grid-template-columns: 1.1fr 0.9fr; }
}

/* ---------- Stat row ---------- */
.stat-row {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat {
  background: var(--paper);
  padding: 1.5rem 1.75rem;
}
.stat__label { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.stat__value { font-family: var(--font-display); font-size: var(--step-3); color: var(--ink); }

/* ---------- Process / Timeline ---------- */
.process {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
}
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process__num {
  font-family: var(--font-display);
  font-size: var(--step-3);
  color: var(--ink-soft);
  line-height: 1;
  font-variant-numeric: tabular-nums lining-nums;
}
.process__step h3 { font-size: var(--step-2); margin-bottom: 0.4rem; }
.process__step p { color: var(--text-muted); margin: 0; }
.section--dark .process { border-color: var(--border-dark); }
.section--dark .process__step { border-color: var(--border-dark); }
.section--dark .process__step p { color: var(--text-inverse-muted); }

/* ---------- Bullets ---------- */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  display: block;
  padding: 0.95rem 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1.45;
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before { content: none; display: none; }
.section--dark .checklist li { color: var(--text-inverse); border-color: var(--border-dark); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; background: transparent; border: 0;
  padding: 1.15rem 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.faq__q .plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq__q .plus::before, .faq__q .plus::after {
  content: ""; position: absolute; background: var(--accent-strong);
  left: 50%; top: 50%;
}
.faq__q .plus::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__q .plus::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); transition: transform .2s var(--ease); }
.faq__item[open] .faq__q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__a { padding: 0 0 1.4rem; color: var(--text-muted); max-width: 75ch; }
.faq__a p { margin-bottom: 0.6rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__field { display: grid; gap: 0.4rem; }
.form__field label {
  font-size: 0.82rem; font-weight: 600; color: var(--charcoal-800);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.form__field label .req { color: var(--accent-strong); }
.form__field input,
.form__field select,
.form__field textarea {
  font: inherit;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.85rem 0.95rem;
  color: var(--text);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  width: 100%;
}
.form__field textarea { resize: vertical; min-height: 130px; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form__hint { font-size: 0.82rem; color: var(--text-muted); }
.form__legal {
  font-size: 0.82rem; color: var(--text-muted); max-width: 70ch;
}
.form__submit { margin-top: 0.5rem; }
.form__success {
  display: none;
  padding: 1rem 1.2rem;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  border-radius: var(--r-md);
  color: var(--navy-900);
  font-weight: 500;
}
.form__success.show { display: block; }

/* ---------- Strategic emphasis line (no decorative bar) ---------- */
.lede-block {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.005em;
  line-height: 1.3;
  max-width: 36ch;
  margin: 1.5rem 0;
}
.section--dark .lede-block { color: var(--paper); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: var(--text-inverse-muted);
  padding-block: 4rem 2rem;
  border-top: 1px solid var(--border-dark);
}
.site-footer h4 {
  color: var(--text-inverse-muted);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand .brand__name { color: var(--paper); }
.footer__brand p { color: #C7C9CC; max-width: 38ch; margin-top: 1rem; font-size: 0.9375rem; line-height: 1.55; }
.footer__nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer__nav a {
  color: #D8D9DB; /* AAA contrast (~13.9:1) on #0A0A0A */
  font-size: 0.9375rem; /* 15px - above 14px floor */
  font-family: var(--font-sans);
  line-height: 1.45;
}
.footer__nav a:hover { color: var(--paper); }
.footer__disclaimer {
  border-top: 1px solid var(--rule-dark);
  padding-top: 1.5rem;
  font-size: 0.9375rem; /* 15px — bumped from 14px for compliance readability */
  color: #D0D2D5; /* slightly brighter, still AAA on #0A0A0A */
  line-height: 1.65;
  max-width: 96ch;
}
.footer__meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between;
  margin-top: 1.5rem; font-size: 0.875rem; /* 14px */
  border-top: 1px solid var(--rule-dark);
  padding-top: 1.25rem;
  color: #C7C9CC;
}
.footer__meta a { color: #D8D9DB; }

/* ---------- Breadcrumbs ---------- */
.crumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-block: 1.5rem 0;
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0; margin: 0; }
.crumbs li::after { content: "/"; margin-left: 0.45rem; color: var(--border); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--navy-900); }
.section--dark .crumbs, .section--dark .crumbs a { color: var(--text-inverse-muted); }

/* ---------- Diagram / SVG block frames ---------- */
.diagram {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--paper);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.section--dark .diagram { background: var(--navy-800); border-color: var(--border-dark); }

/* ---------- Resource cards ---------- */
.resource-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--paper);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.resource-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.resource-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
}
.resource-card h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1.2rem; margin-bottom: 0.25rem; }
.resource-card p { color: var(--text-muted); margin: 0; }
.resource-card .meta { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }

/* ---------- Article ---------- */
.article {
  max-width: 720px; margin-inline: auto;
}
.article header { margin-bottom: 2.5rem; }
.article h1 { font-size: var(--step-5); }
.article .meta { font-size: 0.9rem; color: var(--text-muted); margin-top: 1rem; }
.article p { font-size: 1.07rem; color: var(--text); }
.article h1 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.article h2 { font-family: var(--font-display); font-weight: 600; font-size: var(--step-3); margin-top: 2.5rem; letter-spacing: -0.02em; line-height: 1.1; }
.article h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--step-2); margin-top: 2rem; letter-spacing: -0.01em; }
.article ul, .article ol { color: var(--text); padding-left: 1.2rem; }
.article li { margin-bottom: 0.4rem; }

/* ---------- Utility ---------- */
.u-center { text-align: center; }
.u-mt-0 { margin-top: 0 !important; }
.u-mt-1 { margin-top: 0.75rem; }
.u-mt-2 { margin-top: 1.5rem; }
.u-mt-3 { margin-top: 2.5rem; }
.u-mb-0 { margin-bottom: 0 !important; }
.u-narrow { max-width: 60ch; }
.u-muted { color: var(--text-muted); }
.u-divider { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.section--dark .u-divider { border-color: var(--border-dark); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-900); color: var(--paper);
  padding: 0.75rem 1rem; border-radius: var(--r-sm);
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; }

/* ---------- Conversion modules (added in homepage rewrite) ---------- */

/* Tighter h2 for B2B conversion sections (inherits Source Serif 4) */
.h2--report {
  font-size: clamp(1.6rem, 1rem + 1.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.6em;
}

/* Diagnostic / comparison panels */
.panel {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(1.75rem, 1.25rem + 1.75vw, 2.5rem);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.panel--auto { height: auto; align-self: start; }
.panel h3 { margin-bottom: 0.75rem; font-size: var(--step-2); }
.panel p { color: var(--text-muted); }
.panel ul.checklist { margin: 0; }
.panel--pos { border-color: var(--accent); }
.section--dark .panel {
  background: var(--navy-800);
  border-color: var(--border-dark);
  color: var(--text-inverse);
}
.section--dark .panel h3 { color: var(--paper); }
.section--dark .panel p { color: var(--text-inverse-muted); }
.section--dark .panel--pos { border-color: var(--accent); }

.panel__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0;
  margin-bottom: 1rem;
  align-self: flex-start;
  color: var(--text-muted);
  background: transparent;
  border: 0;
}
.panel__label--pos { color: var(--ink); }
.panel__label--neg { color: var(--text-muted); }
.section--dark .panel__label,
.section--dark .panel__label--neg { color: var(--text-inverse-muted); }
.section--dark .panel__label--pos { color: var(--text-inverse-muted); }

/* Institutional comparison table */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  font-size: clamp(0.92rem, 0.2vw + 0.86rem, 1rem);
  line-height: 1.55;
  background: var(--paper);
}
.compare-table th,
.compare-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  font-variant-numeric: tabular-nums lining-nums;
}
.compare-table thead th {
  background: var(--warm-white-2);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-800);
}
.compare-table thead th + th { border-left: 1px solid var(--border); }
.compare-table tbody td + td { border-left: 1px solid var(--border); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table thead th:nth-child(3) { color: var(--ink); }
.compare-table tbody td:first-child {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--warm-white-2);
  width: 22%;
}
.compare-table tbody td:nth-child(2) { color: var(--text-muted-strong); }
.compare-table tbody td:nth-child(3) { color: var(--text); font-weight: 500; }
@media (max-width: 720px) {
  .compare-table { font-size: 0.95rem; }
  .compare-table th, .compare-table td { padding: 0.85rem 0.85rem; }
  .compare-table tbody td:first-child { width: auto; }
}

/* Structured "What we provide" cards: What / Why / Outcome */
.what-card { display: flex; flex-direction: column; gap: 0.55rem; height: 100%; }
.what-card .what-meta {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.5rem;
}
.what-card .what-outcome {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--accent-strong);
  font-weight: 600;
}
.section--dark .what-card .what-outcome { border-top-color: var(--border-dark); }

/* ICP card text-link CTA */
.card__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.88rem; font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.card__link:hover { color: var(--ink); }
.card__link::after {
  content: "→";
  transition: transform .2s var(--ease);
}
.card__link:hover::after { transform: translateX(3px); }

/* Punch list — pill-style horizontal */
.punch-list {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin: 1.75rem 0 0; padding: 0;
  list-style: none;
}
.punch-list li {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: var(--charcoal-800);
  font-weight: 500;
}
.section--dark .punch-list li {
  background: var(--navy-800);
  border-color: var(--border-dark);
  color: var(--text-inverse);
}

/* ---------- Premium institutional components (homepage refinement) ---------- */

/* Hero platform pillar band (4-column institutional credibility strip) */
.hero-band {
  background: var(--navy-900);
  color: var(--text-inverse);
  border-top: 1px solid rgba(230, 234, 240, 0.08);
  padding-block: clamp(2.5rem, 2rem + 2vw, 4rem);
  position: relative;
}
.hero-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 760px) {
  .hero-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 3rem;
  }
}
@media (min-width: 1080px) {
  .hero-pillars { grid-template-columns: repeat(4, 1fr); gap: 3rem; }
}
.hero-pillar { display: block; }
.hero-pillar {
  border-top: 1px solid var(--rule-dark);
  padding-top: 1.25rem;
}
.hero-pillar__name {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  color: var(--paper);
  letter-spacing: -0.005em;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.hero-pillar p {
  color: var(--text-inverse-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
  max-width: 30ch;
}

/* Architectural section header — h2 left, meta paragraph right */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: end;
  padding-bottom: clamp(2rem, 1.5rem + 1.5vw, 3.25rem);
  margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3.25rem);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}
.section--dark .section-head { border-bottom-color: var(--border-dark); }
.section-head h2 { margin: 0; }
.section-head .section-head__meta { color: var(--text-muted); max-width: 60ch; }
.section--dark .section-head .section-head__meta { color: var(--text-inverse-muted); }
.section-head .section-head__meta p:last-child { margin-bottom: 0; }

/* Large premium tile (ICP) */
.tile {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 1.1rem + 1.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  min-height: 100%;
  transition: border-color .2s var(--ease);
}
.tile:hover { border-color: var(--accent); }
.tile h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 0.4rem;
  line-height: 1.25;
  color: var(--navy-900);
}
.tile p { color: var(--text-muted); margin: 0; max-width: 42ch; }

/* Interlude band (short, confident statement section) */
.interlude {
  padding-block: clamp(3rem, 2.5rem + 2vw, 5rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.interlude h2 {
  font-size: var(--step-4);
  margin: 0 0 0.5em;
  max-width: 22ch;
}
.interlude p { color: var(--text-muted); max-width: 55ch; }

/* Compare table — more generous row height for the institutional feel */
.compare-table th,
.compare-table td { padding: 1.15rem 1.25rem; }
.compare-table thead th { padding-block: 1rem; }

/* Hero pre-CTA emphasis line (timing trigger) */
.hero__urgency {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--paper);
  font-weight: 500;
  margin: 0.25rem 0 1.75rem;
  max-width: 62ch;
  line-height: 1.55;
}

/* Hero load reveal — visible by default; html.hero-animate-ready (added by JS) enables fade-in */
.hero-reveal {
  opacity: 1;
  transform: none;
}
html.hero-animate-ready .hero-reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: heroReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--hero-delay, 0ms);
}
@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  html.hero-animate-ready .hero-reveal,
  .hero-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Scroll reveal — visible by default; html.reveal-ready (added by JS) enables fade-in */
.reveal {
  opacity: 1;
  transform: none;
}
html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
html.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal,
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero label — small uppercase brand mark above H1 */
.hero__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C2A15E;
  margin: 0 0 1.5rem;
}

/* Hero H1 — Blackstone-style serif clarity, sentence case */
.hero .hero__thesis {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.8vw, 4.4rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-transform: none;
  color: #F4EFE6;
  margin: 0 0 1.75rem;
  max-width: 1100px;
  width: auto;
  display: block;
  overflow-wrap: normal;
  word-break: normal;
}
@media (min-width: 980px) {
  .hero .hero__thesis {
    font-size: clamp(2.7rem, 4.6vw, 5.3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }
}
@media (min-width: 1280px) {
  .hero .hero__thesis {
    font-size: clamp(2.9rem, 4.8vw, 5.75rem);
    line-height: 1;
    letter-spacing: -0.045em;
  }
}

/* Hero intro — supporting descriptive paragraph */
.hero__intro {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 0.3vw + 1rem, 1.2rem);
  font-weight: 400;
  color: var(--text-inverse);
  line-height: 1.55;
  margin: 0 0 1.5rem;
  max-width: 62ch;
}

/* Hero opportunity line — gold accent, sits between intro and pain */
.hero__opportunity {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.125rem);
  font-weight: 500;
  color: #C2A15E;
  line-height: 1.55;
  margin: 0 0 1.5rem;
  max-width: 64ch;
  letter-spacing: 0.002em;
}

/* Hero statement — serif secondary headline subordinate to the thesis */
.hero__statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.75vw, 2.75rem);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #FAF7F2;
  text-transform: none;
  margin: 0 0 1.25rem;
  max-width: 28ch;
}

/* Hero pain line — emphasized "years and millions" message */
.hero__pain {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.86rem + 0.45vw, 1.18rem);
  font-weight: 600;
  color: var(--paper);
  margin: 1.5rem 0 1.5rem;
  max-width: 56ch;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

/* Hero ICP line — audience qualifier, sits between body and pain line */
.hero__icp {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-inverse-muted);
  margin: 1.25rem 0 0;
  max-width: 64ch;
  line-height: 1.55;
  letter-spacing: 0.005em;
}

/* Hero support line — sits below the CTAs, footer-style */
.hero__support {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-inverse-muted);
  margin: 1.5rem 0 0;
  max-width: 56ch;
  line-height: 1.55;
}

/* Small "what we are not" memo callout */
.memo-note {
  margin-top: 2rem;
  font-size: 0.92rem;
  color: var(--text-inverse-muted);
  max-width: 70ch;
  line-height: 1.6;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
}
.memo-note strong { color: var(--paper); font-weight: 600; }

/* Hero secondary line — composed, prominent but not oversized */
.hero__tagline {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 0.95rem + 0.8vw, 1.3rem);
  color: var(--paper);
  margin: 1rem 0 1.25rem;
  max-width: 48ch;
  letter-spacing: -0.01em;
  line-height: 1.35;
  font-weight: 600;
}

/* Hero disclaimer line — eyebrow-style: 11px, tracked uppercase, muted ink */
.trust-line {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem; /* 11px */
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  border-top: 1px solid var(--rule-dark);
  padding-top: 1.25rem;
  max-width: 64ch;
  line-height: 1.6;
}

/* CTA polish */
.btn--accent { box-shadow: 0 1px 0 rgba(11, 27, 43, 0.08); }
.btn--accent:hover { background: var(--accent-strong); transform: translateY(-1px); }

/* Section spacing variant for tighter conversion cadence */
.section--report { padding-block: clamp(3rem, 2.5rem + 2vw, 4.5rem); }

/* Anchor scroll offset under sticky header */
[id] { scroll-margin-top: 84px; }

/* =========================================================
   Institutional redesign — DESIGN.md
   12-column grid, hero split, DST Program Infrastructure Map
   ========================================================= */

/* 12-column grid */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 0.5rem + 1.5vw, 2.5rem) clamp(1rem, 0.5rem + 1.5vw, 2rem);
}
.col-span-12 { grid-column: span 12; }
.col-span-3, .col-span-4, .col-span-5,
.col-span-6, .col-span-7, .col-span-8 { grid-column: span 12; }
@media (min-width: 720px) {
  .col-span-6 { grid-column: span 6; }
  .col-span-4 { grid-column: span 6; }
  .col-span-3 { grid-column: span 6; }
}
@media (min-width: 1000px) {
  .col-span-3 { grid-column: span 3; }
  .col-span-4 { grid-column: span 4; }
  .col-span-5 { grid-column: span 5; }
  .col-span-6 { grid-column: span 6; }
  .col-span-7 { grid-column: span 7; }
  .col-span-8 { grid-column: span 8; }
}

/* Hero — wide thesis + split (copy left, panel right) */
.hero .container {
  max-width: 1400px;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    column-gap: clamp(2.5rem, 4vw, 5rem);
    align-items: start;
  }
}
.hero__copy { max-width: 38rem; }
.hero {
  min-height: calc(100svh - var(--header-height, 72px));
  display: flex;
  align-items: center;
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}
.hero > .container { width: 100%; }
/* Internal-page hero modifier — disables viewport-fill so content pages don't force a giant first-fold */
.hero.hero--page {
  min-height: 0;
  display: block;
  padding-top: clamp(3.5rem, 5vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 5vw, 5.5rem);
}
.hero--page .hero__thesis {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
  max-width: 980px;
}
@media (min-width: 1280px) {
  .hero--page .hero__thesis {
    white-space: normal;
    font-size: clamp(2.25rem, 3.4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.028em;
  }
}
.hero__tag {
  margin: 1.25rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-inverse-muted);
  letter-spacing: 0.005em;
  max-width: 64ch;
}

/* Numbered process row — used on /the-platform/ "What We Do" section */
.process-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 1vw + 1rem, 2rem);
  margin-top: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
}
@media (min-width: 760px) {
  .process-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .process-row {
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(1rem, 0.5vw + 0.5rem, 1.5rem);
  }
  .process-row.process-row--3col {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 1vw + 1rem, 2.5rem);
  }
}
.process-row--3col .process-step__desc { font-size: 0.9rem; }
.process-row--3col .process-step { padding-top: 1rem; }
.process-step {
  padding: 0.9rem 0 0;
  border-top: 2px solid var(--accent);
}
.process-step__num {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5rem;
  letter-spacing: -0.012em;
}
.process-step__desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted-strong);
  margin: 0;
}

/* Compact section — reduces vertical footprint for de-emphasized sections */
.section--compact {
  padding-block: clamp(2rem, 1.5rem + 1.5vw, 4rem);
}

/* Boundary section — compact, stacked, restrained compliance/boundary block */
.boundary__head {
  max-width: 880px;
  margin-bottom: clamp(1.75rem, 1.25rem + 1vw, 2.5rem);
}
.boundary__h2 {
  margin: 0;
  font-size: clamp(1.5rem, 1.75vw + 1rem, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  font-weight: 600;
}
.boundary__intro {
  margin: 1rem 0 0;
  max-width: 760px;
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.0625rem);
  line-height: 1.55;
  color: var(--text);
}
.boundary__close {
  margin: clamp(1.5rem, 1rem + 1vw, 2rem) 0 0;
  max-width: 90ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted-strong);
}

/* Internal-page section — moderate padding reduction (~30%) for /the-platform/, /about/, /program-standards/ */
.section--internal {
  padding-block: clamp(2.75rem, 2rem + 2.5vw, 5rem);
}

/* Readiness card — used on /program-standards/ to consolidate six readiness sections */
.readiness-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.readiness-card__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}
.readiness-card__question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.85rem;
  letter-spacing: -0.012em;
}
.readiness-card__inputs {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted-strong);
  margin: 0;
}
.section--dark .readiness-card { background: var(--navy-800); border-color: var(--border-dark); }
.section--dark .readiness-card__question { color: var(--paper); }
.section--dark .readiness-card__inputs { color: var(--text-inverse-muted); }
.hero__copy .cta-pair { margin-top: 1.75rem; }

/* DST path panel */
.map {
  background: rgba(250, 247, 242, 0.03);
  border: 1px solid rgba(250, 247, 242, 0.18);
  border-radius: 4px;
  padding: clamp(1.4rem, 1rem + 1.35vw, 2.2rem);
  position: relative;
  overflow: hidden;
}
.map::after {
  content: none;
}
.map > * { position: relative; z-index: 1; }
.map__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-dark);
}
.map__title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FAF7F2;
}
.map__subtitle {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--text-inverse-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.map__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
}
.map__node {
  position: relative;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}
.map__node:first-child { padding-top: 0.95rem; }
.map__node:last-child { padding-bottom: 0; border-bottom: 0; }
.map__node::before {
  content: none;
}
.map__row {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: baseline;
  gap: 0.9rem;
}
.map__num {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B8934B;
  font-weight: 700;
  font-variant-numeric: tabular-nums lining-nums;
}
.map__name {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  color: #FAF7F2;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.map__desc {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-inverse-muted);
  line-height: 1.5;
  margin: 0.25rem 0 0;
  max-width: 38ch;
}

/* Audience list — no cards, left-weighted dl-style rows */
.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}
.audience-list > li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
@media (min-width: 760px) {
  .audience-list > li {
    grid-template-columns: minmax(220px, 22rem) 1fr;
    gap: 2.5rem;
  }
}
.audience-list h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--navy-900);
}
.audience-list p { color: var(--text-muted); margin: 0; max-width: 60ch; }

/* "Not a fit" exclusion note — restrained, institutional */
.not-fit {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-light);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  max-width: 92ch;
  line-height: 1.55;
  font-family: var(--font-sans);
}
.not-fit strong {
  color: var(--ink);
  font-weight: 600;
}
.section--dark .not-fit { border-top-color: var(--rule-dark); color: var(--text-inverse-muted); }
.section--dark .not-fit strong { color: var(--paper); }

/* Operating model blocks ("What We Do" + Standards 3-up) */
.op-block {
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule-light);
  height: 100%;
}
.section--dark .op-block { border-top-color: var(--rule-dark); }
.op-block h3 { font-size: clamp(1.2rem, 0.9rem + 0.6vw, 1.45rem); margin-bottom: 0.6rem; }
.op-block p { font-size: 0.95rem; line-height: 1.55; }

/* CH8: Op-section offset layout — narrow head, wider step row */
.op-section__inner { display: block; }
.op-section__head { max-width: 36rem; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.op-section__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 760px) {
  .op-section__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-left: clamp(0px, 4vw, 5rem);
  }
}
.op-block__step {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.op-block h3 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--navy-900);
}
.op-block p { color: var(--text-muted-strong); margin: 0; max-width: 36ch; }
.section--dark .op-block h3 { color: var(--paper); }
.section--dark .op-block p { color: var(--text-inverse-muted); }
.section--dark .op-block__step { color: var(--text-inverse-muted); }

/* Left-weighted section block */
.section-block { max-width: 60rem; margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem); }
.section-block h2 { margin-bottom: 0.5em; }
.section-block .lede { color: var(--text-muted); max-width: 60ch; }
.section--dark .section-block .lede { color: var(--text-inverse-muted); }

/* DST in Plain English — wide horizontal header + 3-up problem row */
.plain-english__head {
  max-width: 1100px;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.plain-english__h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(1.75rem, 2.7vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.plain-english__def {
  margin: 1.25rem 0 0;
  max-width: 900px;
  font-size: clamp(1.25rem, 0.5vw + 1.1rem, 1.5rem);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.plain-english__explain {
  margin: 1rem 0 0;
  max-width: 760px;
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.125rem);
  line-height: 1.6;
  color: var(--text);
}
.plain-english__bridge {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-light);
  max-width: 860px;
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.2rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.plain-english__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 72px);
}
@media (min-width: 900px) {
  .plain-english__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Wide horizontal section header — Supply Gap, Partnership Model, Build vs Partner */
.section-header-wide {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(48px, 5vw, 96px);
  row-gap: 1.5rem;
  align-items: start;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.section-header-wide__title { grid-column: span 12; }
.section-header-wide__copy { grid-column: span 12; }
.section-header-wide .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.section-header-wide__title h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.5rem, 3.4vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-transform: none;
}
.section-header-wide__copy p {
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.125rem);
  line-height: 1.6;
  margin: 0 0 1rem;
  color: var(--text);
}
.section-header-wide__copy p:last-child { margin-bottom: 0; }
.section-header-wide__copy .strong-line {
  font-size: clamp(1.1rem, 0.5vw + 1rem, 1.375rem);
  line-height: 1.4;
  font-weight: 600;
  color: var(--ink);
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-light);
  letter-spacing: -0.015em;
}
.section--dark .section-header-wide__copy .strong-line { border-top-color: var(--rule-dark); }
.section-header-wide__copy .source-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}
.section--dark .section-header-wide__copy p { color: var(--text-inverse-muted); }
.section--dark .section-header-wide__copy .strong-line { color: var(--paper); }

@media (min-width: 900px) {
  .section-header-wide__title { grid-column: span 8; }
  .section-header-wide__copy { grid-column: span 4; }
  .section-header-wide--wide-title .section-header-wide__title { grid-column: 1 / -1; }
  .section-header-wide--wide-title .section-header-wide__title h2 {
    max-width: none;
    font-size: clamp(2rem, 2.3vw, 3.1rem);
  }
  .section-header-wide--wide-title .section-header-wide__copy { grid-column: 1 / span 7; margin-top: 0.25rem; }
  .section-header-wide--narrow-title .section-header-wide__title { grid-column: span 6; }
  .section-header-wide--narrow-title .section-header-wide__copy { grid-column: 7 / -1; }
  .section-header-wide--long-title .section-header-wide__title { grid-column: span 10; }
  .section-header-wide--long-title .section-header-wide__title h2 {
    max-width: none;
    font-size: clamp(2rem, 2.8vw, 3.25rem);
  }
  .section-header-wide--long-title .section-header-wide__copy { grid-column: 1 / span 7; margin-top: 0.5rem; }
  /* Stacked variant — replaces the oversized split pattern on internal pages */
  .section-header-wide--stacked .section-header-wide__title { grid-column: 1 / -1; }
  .section-header-wide--stacked .section-header-wide__copy {
    grid-column: 1 / -1;
    margin-top: clamp(1rem, 0.5vw + 0.75rem, 1.5rem);
    max-width: 720px;
  }
}
.section-header-wide--stacked .section-header-wide__title h2 {
  font-size: clamp(1.85rem, 2.8vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
}

/* Build vs Partner — full-width thesis: headline + supporting copy + anchored decision line + table */
.bvp__head { margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.bvp__head .eyebrow { margin-bottom: 1.25rem; }
.bvp__head h2 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.bvp__copy {
  margin: 1.5rem 0 0;
  max-width: 880px;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.125rem);
  line-height: 1.6;
  color: var(--text);
}
.bvp__decision {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-light);
  max-width: 920px;
  font-size: clamp(1.1rem, 0.5vw + 1rem, 1.35rem);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.bvp__review {
  margin: 1.25rem 0 0;
  max-width: 880px;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.125rem);
  line-height: 1.6;
  color: var(--text);
}

/* Supply Gap — full-width thesis: headline + supporting copy + bridge line + data row */
.supply-gap__head { margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.supply-gap__head .eyebrow { margin-bottom: 1.25rem; }
.supply-gap__head h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(1.75rem, 2.65vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.supply-gap__copy {
  margin: 1.5rem 0 0;
  max-width: 760px;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.125rem);
  line-height: 1.6;
  color: var(--text);
}
.supply-gap__bridge {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-light);
  max-width: 880px;
  font-size: clamp(1.1rem, 0.5vw + 1rem, 1.3rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
}

/* Standards — full-width thesis: eyebrow + headline + core statement + supporting copy */
.section--standards {
  padding-block: clamp(4rem, 3rem + 2.5vw, 6.5rem);
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.section--standards .eyebrow { margin-bottom: 1.5rem; }
.section--standards h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(1.75rem, 2.8vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
@media (min-width: 1280px) {
  .section--standards h2 {
    white-space: nowrap;
    font-size: clamp(2.2rem, 2.6vw, 3.1rem);
    letter-spacing: -0.03em;
  }
}
.standards-core {
  margin: clamp(1.75rem, 1.25rem + 1vw, 2.5rem) 0 0;
  max-width: 920px;
  font-size: clamp(1.3rem, 0.95vw + 1.05rem, 1.85rem);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.standards-copy {
  margin: 1rem 0 0;
  max-width: 760px;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.125rem);
  line-height: 1.6;
  color: var(--text);
}
.standards-close {
  margin: 1.25rem 0 0;
  max-width: 760px;
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.0625rem);
  line-height: 1.6;
  color: var(--text-muted);
}

/* Industry boundary disclosure — restrained, sub-CTA, top-rule separated */
.boundary-note {
  margin: clamp(2rem, 1.5rem + 1vw, 3rem) 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-light);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 92ch;
}
.section--dark .boundary-note {
  border-top-color: var(--rule-dark);
  color: var(--text-inverse-muted);
}

/* Final CTA — single left-aligned block, no awkward right column */
.final-cta { max-width: 880px; }
.final-cta h2 {
  margin: 0.25rem 0 1.25rem;
  font-size: clamp(1.75rem, 2.5vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.final-cta .lede { margin: 0 0 1rem; max-width: 60ch; }
.final-cta__support {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-inverse-muted);
  margin: 0 0 1.75rem;
  max-width: 60ch;
}
.final-cta__actions { justify-content: flex-start; margin-top: 0; }

/* Strong emphasis line (replaces .lede-block brass bar) */
.strong-line {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 0.7rem + 1.3vw, 1.7rem);
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: 42ch;
  margin: 1.75rem 0 0;
}

/* Pull-quote treatment — the proof line */
.pull-quote {
  margin: clamp(2.5rem, 1.5rem + 2vw, 4rem) auto;
  padding: 48px 1rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 920px;
}
.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem; /* 24px mobile */
  line-height: 1.3;
  color: var(--accent);
  margin: 0;
  letter-spacing: -0.005em;
}
@media (min-width: 641px) {
  .pull-quote p { font-size: 2rem; } /* 32px desktop */
}
.section--dark .pull-quote { border-color: var(--border-dark); }
.section--dark .strong-line { color: var(--paper); }

/* Reduce hero CTA pair margin in split layout */
.hero__copy .cta-pair { margin-top: 2rem; }

/* =========================================================
   Hero DST mechanics blocks
   ========================================================= */

/* Map title accent rule (gold) */
.map__rule {
  height: 1px;
  background: var(--rule-dark);
  margin: 1.25rem 0 1rem;
  position: relative;
}

.map__footer {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(250, 247, 242, 0.18);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: #FAF7F2;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* Asset card — abstract architectural massing + facts panel */
.asset-card {
  margin-bottom: 0.75rem;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding-block: 0.25rem;
}

.asset-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.asset-facts li {
  padding: 0.58rem 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}
.asset-facts li:last-child { border-bottom: 0; }
.asset-facts__k {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B8934B;
  font-weight: 700;
}
.asset-facts__v {
  font-family: var(--font-sans);
  color: #FAF7F2;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: left;
  letter-spacing: -0.005em;
}
.asset-facts li {
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.42fr) 1fr;
  gap: 0.75rem;
  align-items: baseline;
  justify-content: start;
  font-variant-numeric: tabular-nums lining-nums;
}

/* =========================================================
   Diagnostic list — "Before you call the MBD"
   ========================================================= */
.diagnostic-list {
  list-style: none;
  padding: 0;
  margin: clamp(2rem, 1.5rem + 1vw, 3rem) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 720px) {
  .diagnostic-list { grid-template-columns: repeat(2, 1fr); }
  .diagnostic-list > li:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 1.25rem; }
}
@media (min-width: 1000px) {
  .diagnostic-list { grid-template-columns: repeat(3, 1fr); }
  .diagnostic-list > li { border-right: 1px solid var(--border); padding-right: 1.25rem; }
  .diagnostic-list > li:nth-child(3n) { border-right: 0; padding-right: 0; }
}
.diagnostic-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0 1.1rem 0.1rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
}
.diagnostic-list__body {
  flex: 1;
  min-width: 0;
}
.diagnostic-list__title {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.35;
}
.diagnostic-list__q {
  font-size: 0.875rem; /* 14px */
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.25rem;
}
.diagnostic-list__n {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--ink-soft);
  flex: none;
  min-width: 1.8rem;
  font-variant-numeric: tabular-nums lining-nums;
}

/* =========================================================
   Real estate use cases — institutional rows
   ========================================================= */
.use-cases {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  border-top: 1px solid var(--border);
}
.use-case {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem 2rem;
  padding: 1.75rem 0;
  position: relative;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 760px) {
  .use-case {
    grid-template-columns: minmax(220px, 22rem) 1fr;
    align-items: baseline;
    padding: 2rem 0;
  }
  .use-case__index { grid-column: 1; grid-row: 1; margin-bottom: 0; }
  .use-case h3 { grid-column: 1; grid-row: 2; margin: 0; }
  .use-case p { grid-column: 2; grid-row: 1 / span 2; align-self: center; max-width: 60ch; }
}
.use-case__index {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums lining-nums;
}
.use-case h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
}
.use-case p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1rem;
  max-width: 48ch;
  line-height: 1.55;
}

/* =========================================================
   Supply Gap data block — typography-only 4-row data stack
   ========================================================= */
.data-stack {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-light);
}
.section--dark .data-stack,
.hero .data-stack { border-top-color: var(--rule-dark); }
.data-stack__row {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule-light);
  margin: 0;
}
.section--dark .data-stack__row,
.hero .data-stack__row { border-bottom-color: var(--rule-dark); }
.data-stack__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 0.6rem;
}
.section--dark .data-stack__label { color: var(--text-inverse-muted); }
.data-stack__figure {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 1.1rem + 2.2vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 0.65rem;
  font-variant-numeric: tabular-nums lining-nums;
}
.section--dark .data-stack__figure,
.hero .data-stack__figure { color: var(--paper); }
.data-stack__note {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.section--dark .data-stack__note,
.hero .data-stack__note { color: var(--text-inverse-muted); }

/* Build vs. Partner header — two columns aligned, bottom rule unifies with table below */
.build-partner__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  padding-bottom: clamp(1.75rem, 1rem + 1.5vw, 2.5rem);
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: clamp(1.75rem, 1.25rem + 1vw, 2.5rem);
}
@media (min-width: 760px) {
  .build-partner__head {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 1rem + 3vw, 4rem);
  }
}
.build-partner__head h2 { margin-bottom: 0; }
.build-partner__head .lede { margin: 0 0 1rem; }
.build-partner__head .strong-line { margin-top: 0; }

/* Horizontal data row — 4 institutional figures across the section */
.data-row {
  margin: clamp(2rem, 1.5rem + 1.5vw, 3rem) 0 2rem;
  border-top: 1px solid var(--rule-light);
  padding-top: clamp(1.5rem, 1rem + 1vw, 2rem);
}
.section--dark .data-row,
.hero .data-row { border-top-color: var(--rule-dark); }
.data-row__cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.data-row__figure {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1rem + 2vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #B8934B;
  font-variant-numeric: tabular-nums lining-nums;
}
.section--dark .data-row__figure,
.hero .data-row__figure { color: #B8934B; }
.data-row__note {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 28ch;
  letter-spacing: 0.02em;
}

/* Supply Gap closing line — institutional thesis statement below data row */
.supply-gap__close {
  margin-top: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  max-width: 80ch;
}

/* Minimal footer layout — single row brand/copy + links, disclaimer below */
.site-footer--minimal { padding-block: 2.5rem 1.75rem; }
.site-footer--minimal .footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.site-footer--minimal .footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.site-footer--minimal .footer__brand .brand { gap: 0.55rem; }
.site-footer--minimal .footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: #B8BBC2;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.site-footer--minimal .footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  align-items: center;
}
.site-footer--minimal .footer__links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C7C9CC;
}
.site-footer--minimal .footer__links a:hover { color: #FAF7F2; }
.site-footer--minimal .footer__disclaimer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-dark);
  font-size: 0.78rem;
  color: #9CA0A6;
  line-height: 1.55;
  max-width: 100%;
}
.section--dark .data-row__note,
.hero .data-row__note { color: var(--text-inverse-muted); }

/* Source note */
.source-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-light);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0;
  font-style: italic;
  max-width: 90ch;
}
.section--dark .source-note { border-top-color: var(--rule-dark); color: var(--text-inverse-muted); }

/* =========================================================
   "What we review" compact summary line (final CTA)
   ========================================================= */
.review-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.review-line span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  font-weight: 600;
}
.review-line span:not(:last-child) {
  padding-right: 1rem;
  border-right: 1px solid var(--rule-dark);
}

/* =========================================================
   Map node text colors (now applies to operating sequence)
   ========================================================= */
.map__desc { display: none; }  /* tighter map in new design */
.map__node { padding-bottom: 0.55rem; }
.map__node:last-child { padding-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
