  /* ─── Nexa @font-face — local OTFs shipped with the project ─── */
  @font-face {
    font-family: "Nexa";
    src: url("assets/fonts/Nexa-Light.otf") format("opentype");
    font-weight: 300; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: "Nexa";
    src: url("assets/fonts/Nexa-Book.otf") format("opentype");
    font-weight: 400; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: "Nexa";
    src: url("assets/fonts/Nexa-Regular.otf") format("opentype");
    font-weight: 500; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: "Nexa";
    src: url("assets/fonts/Nexa-Bold.otf") format("opentype");
    font-weight: 700; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: "Nexa";
    src: url("assets/fonts/Nexa-Heavy.otf") format("opentype");
    font-weight: 800; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: "Nexa";
    src: url("assets/fonts/Nexa-Black.otf") format("opentype");
    font-weight: 900; font-style: normal; font-display: swap;
  }

  :root {
    /* ─── AMSA brand palette (canonical tokens from amsa/tokens.css) ─── */
    --amsa-cyan: #00B0F0;
    --amsa-cyan-600: #009BD2;
    --amsa-cyan-100: #CCEFFC;
    --amsa-cyan-50: #E6F7FE;
    --amsa-navy: #1060A0;
    --amsa-navy-600: #0D4F84;
    --amsa-navy-900: #0A2540;
    --amsa-navy-50: #E7EEF5;
    --amsa-green: #00B080;
    --amsa-green-600: #008E68;
    --amsa-green-50: #E0F5EE;
    --amsa-red: #F04030;
    --amsa-red-600: #D2331F;
    --amsa-red-50: #FDE4E0;
    --amsa-purple: #9070E0;
    --amsa-purple-600: #6F50C5;
    --amsa-purple-50: #ECE5F8;
    --amsa-teal: #00B0B0;
    --amsa-indigo: #4060C0;

    /* ─── Navy-tinted neutrals ─── */
    --neutral-0: #FFFFFF;
    --neutral-50: #F7F9FC;
    --neutral-100: #EEF2F7;
    --neutral-200: #DCE3ED;
    --neutral-300: #BCC7D6;
    --neutral-400: #8C9AAE;
    --neutral-500: #5F6E83;
    --neutral-600: #43526A;
    --neutral-700: #2D3B52;
    --neutral-800: #1B2840;
    --neutral-900: #0A1428;

    /* ─── Schema bindings ─── */
    --bg: #FFFFFF;
    --surface: #FFFFFF;
    --fg: #0A2540;           /* navy-grade text, never #000 */
    --fg-2: #43526A;
    --muted: #5F6E83;
    --meta: #8C9AAE;
    --border: #DCE3ED;
    --border-soft: #EEF2F7;
    --accent: #00B0F0;
    --accent-on: #FFFFFF;
    --accent-hover: #009BD2;
    --success: #00B080;
    --warn: #F2A93B;
    --danger: #F04030;

    /* ─── Page-local aliases (used by existing class system) ─── */
    --ink:        var(--fg);
    --ink-2:      var(--fg-2);
    --ink-3:      var(--muted);
    --ink-4:      var(--meta);
    --rule:       var(--border);
    --rule-soft:  var(--border-soft);
    --paper:      var(--bg);
    --paper-2:    var(--neutral-50);

    --states:       var(--amsa-green);
    --states-ink:   var(--amsa-green-600);
    --states-tint:  var(--amsa-green-50);
    --funders:      var(--amsa-cyan);
    --funders-ink:  var(--amsa-navy);
    --funders-tint: var(--amsa-cyan-50);

    /* ─── Typography — Nexa primary, system fallbacks ─── */
    --display: "Nexa", "Avenir Next", "Avenir", "Helvetica Neue", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --sans:    "Nexa", "Avenir Next", "Avenir", "Helvetica Neue", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --mono:    "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;

    --leading-body: 1.55;
    --leading-tight: 1.15;
    --tracking-display: -0.022em;

    /* ─── Radius ─── */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    /* ─── Elevation — navy-tinted, never neutral gray ─── */
    --elev-flat: none;
    --elev-ring: 0 0 0 1px var(--border);
    --elev-raised: 0 6px 18px rgba(10, 37, 64, 0.10);
    --shadow-brand: 0 8px 24px rgba(0, 176, 240, 0.28);
    --focus-ring: 0 0 0 3px rgba(0, 176, 240, 0.30);

    /* ─── Motion ─── */
    --motion-fast: 150ms;
    --motion-base: 200ms;
    --ease-standard: cubic-bezier(0.2, 0, 0, 1);

    /* ─── Layout ─── */
    --maxw:      720px;
    --maxw-wide: 1040px;
    --pad-x:     24px;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  ::selection { background: var(--states); color: #fff; }
  a { color: var(--amsa-cyan-600); text-decoration: none; }
  a:hover { color: var(--amsa-navy); text-decoration: underline; }

  .wrap      { max-width: var(--maxw);      margin: 0 auto; padding: 0 var(--pad-x); }
  .wrap-wide { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 var(--pad-x); }

  .section       { padding: 84px 0; }
  .section-tight { padding: 56px 0; }
  .section-loose { padding: 112px 0; }
  @media (max-width: 720px) {
    .section       { padding: 56px 0; }
    .section-loose { padding: 72px 0; }
  }

  /* =====================================================
     EYEBROW
     ===================================================== */
  /* Editorial eyebrow — mono section number, hairline bar, cyan UPPERCASE label.
     This is one of two sanctioned cyan surfaces per screen. */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amsa-cyan-600);
    margin: 0 0 28px;
  }
  .eyebrow .num {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--ink-4);
  }
  .eyebrow .bar {
    width: 24px; height: 1px;
    background: var(--amsa-cyan);
    opacity: 0.6;
  }

  /* =====================================================
     1. WELCOME STRIP
     ===================================================== */
  .welcome-strip {
    background: var(--ink);
    color: #fff;
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 11px 16px 10px;
    line-height: 1.4;
  }
  .welcome-strip .pulse {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--amsa-cyan);
    margin-right: 10px;
    transform: translateY(-2px);
    box-shadow: 0 0 0 0 rgba(0,176,240,0.7);
    animation: pulse 2.4s ease-out infinite;
  }
  .welcome-strip .meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,0.18);
    text-transform: uppercase;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0   rgba(0,176,240,0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(0,176,240,0); }
    100% { box-shadow: 0 0 0 0   rgba(0,176,240,0); }
  }
  @media (max-width: 600px) {
    .welcome-strip .meta { display: none; }
  }

  /* =====================================================
     2. CO-BRAND HEADER
     ===================================================== */
  .cobrand {
    border-bottom: 1px solid var(--rule);
    background: color-mix(in srgb, var(--paper) 88%, transparent);
    backdrop-filter: saturate(150%) blur(9px);
    -webkit-backdrop-filter: saturate(150%) blur(9px);
    transition: box-shadow 0.3s ease;
  }
  .cobrand .inner {
    max-width: var(--maxw-wide);
    margin: 0 auto;
    padding: 15px var(--pad-x);
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .cobrand .logos {
    display: flex;
    align-items: center;
    gap: 17px;
  }
  .cobrand .divider {
    width: 1px; height: 26px;
    background: var(--rule);
  }
  /* Endorsement line — reads as part of the lockup, not a second headline */
  .cobrand .tag {
    padding-left: 17px;
    border-left: 1px solid var(--rule);
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--ink-3);
    white-space: nowrap;
  }
  /* Where you are, and the way back */
  .cobrand .crumb {
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
    white-space: nowrap;
  }
  .cobrand .crumb a {
    color: var(--ink-3);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .cobrand .crumb a:hover {
    color: var(--amsa-green);
    border-bottom-color: var(--amsa-green);
  }
  .cobrand .crumb a:focus-visible { outline: 2px solid var(--amsa-cyan); outline-offset: 3px; }
  .cobrand .crumb .sep { color: var(--ink-3); opacity: 0.55; }
  .cobrand .crumb [aria-current] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
  }
  .cobrand .crumb [aria-current]::before {
    content: "";
    width: 5px; height: 5px;
    background: var(--amsa-green);
    flex: 0 0 auto;
  }
  @media (max-width: 900px) {
    .cobrand .tag { display: none; }
  }
  @media (max-width: 600px) {
    .cobrand .inner { padding: 12px var(--pad-x); gap: 12px; }
    .cobrand .crumb { font-size: 10px; gap: 7px; }
    .cobrand .crumb a { display: none; }
    .cobrand .crumb .sep { display: none; }
  }

  /* DRHC + AMSA logo marks — real brand-supplied assets */
  .drhc-mark { display: flex; align-items: center; }
  .drhc-mark img {
    height: 40px; width: auto;
    display: block;
    transition: height 0.3s ease;
  }
  .amsa-mark { display: inline-flex; align-items: center; }
  .amsa-mark img {
    height: 27px; width: auto;
    display: block;
    filter: brightness(0);
    transition: height 0.3s ease;
  }
  /* Condense once the page scrolls under it */
  .cobrand.is-stuck { box-shadow: 0 6px 24px rgba(10, 37, 64, 0.07); }
  .cobrand.is-stuck .drhc-mark img { height: 34px; }
  .cobrand.is-stuck .amsa-mark img { height: 23px; }
  @media (max-width: 600px) {
    .drhc-mark img { height: 34px; }
    .amsa-mark img { height: 23px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .drhc-mark img, .amsa-mark img { transition: none; }
  }

  /* =====================================================
     3. OPENER
     ===================================================== */
  .opener .display {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(25px, 3.92vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin: 0 0 28px;
    text-wrap: balance;
    max-width: 760px;
  }
  .opener .display em {
    font-style: normal;
    color: var(--amsa-cyan-600);
    font-weight: 900;
  }
  .opener p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink-2);
    margin: 0 0 22px;
    max-width: 640px;
    text-wrap: pretty;
  }
  .opener p:last-of-type { margin-bottom: 0; }
  .opener p .lead-line { color: var(--ink); font-weight: 500; }

  /* =====================================================
     3b. HERO — full-bleed branded banner
     ===================================================== */
  .hero {
    position: relative;
    background: var(--amsa-navy-900);
    color: #fff;
    overflow: hidden;
    padding: 100px 0 108px;
  }
  /* AMSA vertical-line motif — the brand's atmospheric primitive */
  .hero::before {
    content: "";
    position: absolute;
    inset: -160px 0;
    background-image: url("assets/patterns/vertlines-white-transp.png");
    background-repeat: repeat;
    background-size: 320px 320px;
    opacity: 0.12;
    pointer-events: none;
  }
  /* Brand-green glow behind the wheat — one moment, not a wash */
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 80% 42%, rgba(22,169,87,0.26), transparent 40%),
      radial-gradient(circle at 88% 12%, rgba(0,176,240,0.12), transparent 46%);
    pointer-events: none;
  }
  .hero > .wrap-wide { position: relative; z-index: 1; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 68px;
    align-items: center;
  }
  .hero-copy { max-width: 560px; }
  .hero .eyebrow { color: #2CC67E; margin-bottom: 26px; }
  .hero .eyebrow .num { color: rgba(255,255,255,0.5); }
  .hero .eyebrow .bar { background: #2CC67E; opacity: 0.8; }
  .hero h1 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(40px, 5.4vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.024em;
    margin: 0 0 24px;
    text-wrap: balance;
  }
  .hero h1 em { font-style: normal; color: #2CC67E; }
  .hero .sub {
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255,255,255,0.74);
    margin: 0 0 38px;
    max-width: 500px;
    text-wrap: pretty;
  }
  .hero-cta { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
  .hero .btn-hero { background: var(--amsa-cyan); color: var(--amsa-navy-900); }
  .hero .btn-hero:hover { background: #fff; color: var(--amsa-navy-900); }
  .hero .link-hero {
    color: #fff;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 3px;
    transition: color var(--motion-fast) var(--ease-standard),
                border-color var(--motion-fast) var(--ease-standard);
  }
  .hero .link-hero:hover { color: var(--amsa-cyan); border-color: var(--amsa-cyan); }

  /* Framed field photo */
  .hero-figure {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 32px 64px -26px rgba(0,0,0,0.6);
  }
  .hero-figure img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 32%;
    display: block;
  }
  .hero-figure figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 46px 18px 15px;
    background: linear-gradient(to top, rgba(10,37,64,0.9), transparent);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
  }
  /* ── DRHC wheat mark ─────────────────────────────────
     The real brand mark. On hover the colors lift and brighten,
     like a shadow passing off the field — a reverse shadow.
     Subtle, not literal. */
  .hero-wheat {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
  }
  .hero-wheat img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
    filter:
      drop-shadow(0 26px 48px rgba(0,0,0,0.30))
      brightness(1) saturate(1);
    transition: filter var(--motion-slow, .55s) var(--ease-standard, ease-in-out);
    will-change: filter;
  }
  .hero-wheat:hover img,
  .hero-wheat:focus-visible img {
    /* colors lighten, shadow softens — the shadow lifting away */
    filter:
      drop-shadow(0 20px 40px rgba(0,0,0,0.22))
      brightness(1.14) saturate(1.06);
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-wheat img { transition: none; }
  }

  @media (max-width: 860px) {
    .hero { padding: 64px 0 72px; }
    .hero-grid { grid-template-columns: 1fr; gap: 42px; }
    .hero-copy { max-width: 640px; }
    .hero-figure { aspect-ratio: 16 / 10; }
    .hero-wheat img { max-width: 240px; }
  }
  @media (max-width: 600px) {
    .hero .sub { font-size: 18px; }
    .hero-cta { gap: 18px; }
  }

  /* Stat bar — at-a-glance under the hero */
  .stat-bar {
    margin-top: 56px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat {
    padding: 28px 24px 26px;
    border-left: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
  }
  .stat:first-child { border-left: 0; padding-left: 0; }
  .stat::before {
    content: "";
    display: block;
    width: 6px; height: 6px;
    border-radius: 999px;
    background: transparent;
    margin-bottom: 16px;
  }
  .stat.has-dot::before { background: var(--states); }
  .stat .num {
    font-family: var(--display);
    font-weight: 900;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.022em;
    color: var(--ink);
    display: block;
    margin-bottom: 12px;
    white-space: nowrap;
  }
  .stat .num .unit {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0;
    color: var(--ink-3);
    margin-left: 4px;
    vertical-align: baseline;
  }
  .stat .lbl {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
    line-height: 1.4;
  }
  @media (max-width: 800px) {
    .stat-bar { grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 22px 20px; border-left: 1px solid var(--rule); }
    .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
    .stat:nth-child(n+3) { border-top: 1px solid var(--rule); }
  }

  /* =====================================================
     4. WHAT DRHC DOES (plain)
     ===================================================== */
  .plain {
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  /* =====================================================
     02 — "What states are asking for"
     Conceptually part of the hero. Same paper bg as opener,
     hairline divider above for breath, one visual callout (50/50 dot grid)
     as the editorial moment.
     ===================================================== */
  .opener-continued {
    background: var(--paper);
    border-top: 1px solid var(--rule-soft);
    padding-top: 48px;
  }
  .opener-continued h2.section-h { color: var(--ink); }

  .rhtp-callout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    margin: 28px 0 36px;
    padding: 22px 24px 20px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .rhtp-callout .num {
    font-family: var(--display);
    font-weight: 900;
    font-size: 56px;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--ink);
    white-space: nowrap;
  }
  .rhtp-callout .num span {
    color: var(--ink-3);
    font-weight: 500;
    margin-left: 2px;
  }
  .rhtp-callout .grid {
    display: grid;
    grid-template-columns: repeat(10, 8px);
    gap: 6px 8px;
    align-self: center;
    justify-self: start;
  }
  .rhtp-callout .grid .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--neutral-200);
  }
  .rhtp-callout .grid .dot.active {
    background: var(--amsa-cyan);
    box-shadow: 0 0 0 2px var(--amsa-cyan-50);
  }
  .rhtp-callout .cap {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
    line-height: 1.55;
    max-width: 260px;
  }
  .rhtp-callout .cap strong {
    color: var(--ink);
    font-weight: 700;
  }
  .rhtp-callout .cap .active-row {
    display: block;
    margin-top: 4px;
    color: var(--amsa-cyan-600);
  }
  @media (max-width: 720px) {
    .rhtp-callout {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 20px;
    }
    .rhtp-callout .num { font-size: 44px; }
  }

  /* =====================================================
     Editorial photo figure — 03 "In a nutshell"
     Same hairline-framed restraint logic as the 50/50 callout:
     one moment, top + bottom rule, mono caption underneath.
     ===================================================== */
  .photo-figure {
    margin: 32px 0 8px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 22px 0 20px;
  }
  .photo-figure .frame {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    background: var(--neutral-200);
    overflow: hidden;
  }
  .photo-figure .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
  }
  .photo-figure .cap {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-top: 14px;
    line-height: 1.55;
  }
  .photo-figure .cap strong {
    color: var(--ink);
    font-weight: 700;
  }
  h2.section-h {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(28px, 3.8vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 24px;
    text-wrap: balance;
  }
  .plain h2.section-h { color: var(--states); }
  .body-prose p {
    font-size: 18px;
    line-height: 1.62;
    color: var(--ink-2);
    margin: 0 0 18px;
    text-wrap: pretty;
  }
  .body-prose p:last-child { margin-bottom: 0; }
  .body-prose strong { color: var(--ink); font-weight: 700; }

  /* About AMSA — editorial colophon (between 08 form and footer) */
  .about-amsa {
    border-top: 1px solid var(--rule);
    padding: 72px 0 88px;
    background: var(--paper);
  }
  .about-amsa .grid {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }
  .about-amsa .lead-col .eyebrow { margin-bottom: 22px; }
  .about-amsa .amsa-wordmark {
    height: 38px;
    width: auto;
    display: block;
    margin: 0 0 18px;
  }
  .about-amsa .tagline {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-3);
    line-height: 1.4;
  }
  .about-amsa h2 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(24px, 2.6vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin: 0 0 22px;
    text-wrap: balance;
    max-width: 620px;
  }
  .about-amsa h2 em {
    font-style: normal;
    color: var(--amsa-cyan-600);
    font-weight: 900;
  }
  .about-amsa p {
    font-size: 17px;
    line-height: 1.62;
    color: var(--ink-2);
    margin: 0 0 16px;
    max-width: 600px;
    text-wrap: pretty;
  }
  .about-amsa .link-row {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .about-amsa .link {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amsa-cyan-600);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--amsa-cyan-600);
    transition: color 160ms ease, border-color 160ms ease;
  }
  .about-amsa .link:hover {
    color: var(--amsa-navy);
    border-bottom-color: var(--amsa-navy);
  }
  .about-amsa .link .arrow { transition: transform 160ms ease; }
  .about-amsa .link:hover .arrow { transform: translateX(3px); }
  .about-amsa .meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--ink-4);
  }
  @media (max-width: 820px) {
    .about-amsa { padding: 56px 0 64px; }
    .about-amsa .grid { grid-template-columns: 1fr; gap: 28px; }
    .about-amsa .amsa-wordmark { height: 32px; }
  }

  /* =====================================================
     5. FRAMEWORK
     ===================================================== */
  .framework .lede {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(22px, 2.4vw, 26px);
    line-height: 1.34;
    letter-spacing: -0.008em;
    color: var(--ink);
    margin: 0 0 22px;
    max-width: 680px;
    text-wrap: balance;
  }
  .framework .lede em {
    font-style: normal;
    color: var(--states);
    font-weight: 800;
  }
  .framework .intro p {
    font-size: 18px;
    line-height: 1.62;
    color: var(--ink-2);
    margin: 0 0 18px;
    max-width: 660px;
  }

  /* Differentiation table */
  .diff-wrap {
    margin: 56px auto 56px;
    max-width: var(--maxw-wide);
    padding: 0 var(--pad-x);
  }
  .caption-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 0 4px 14px;
  }
  .caption-row .ttl {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
  }
  .caption-row .src {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-4);
  }
  .diff-table-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .diff-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--sans);
    font-size: 15.5px;
  }
  .diff-table thead th {
    text-align: left;
    padding: 22px 24px 18px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    border-bottom: 1px solid var(--rule);
    width: 50%;
    vertical-align: bottom;
  }
  .diff-table thead th + th {
    color: var(--states);
    border-left: 1px solid var(--rule);
  }
  .diff-table tbody td {
    padding: 18px 24px;
    vertical-align: top;
    line-height: 1.5;
    border-top: 1px solid var(--rule-soft);
  }
  .diff-table tbody tr:first-child td { border-top: 0; }
  .diff-table tbody td:first-child {
    color: var(--ink-3);
    background: var(--paper-2);
  }
  .diff-table tbody td:last-child {
    color: var(--ink);
    font-weight: 500;
    border-left: 1px solid var(--rule);
  }
  @media (max-width: 640px) {
    .diff-table thead th, .diff-table tbody td {
      padding: 14px 16px;
      font-size: 14.5px;
    }
  }

  /* Five layers — refined: cyan index rail, hover state */
  .layers-intro {
    font-family: var(--display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    color: var(--ink);
    margin: 0 0 36px;
  }
  ol.layers {
    list-style: none;
    counter-reset: layer;
    margin: 0;
    padding: 0;
  }
  ol.layers > li {
    counter-increment: layer;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 8px 24px;
    padding: 30px 0;
    border-top: 1px solid var(--rule);
    align-items: baseline;
    position: relative;
    transition: background .2s ease;
  }
  ol.layers > li:last-child { border-bottom: 1px solid var(--rule); }
  ol.layers > li:hover { background: linear-gradient(90deg, var(--states-tint), transparent 60%); }
  ol.layers > li::before {
    content: "L" counter(layer);
    font-family: var(--mono);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--states);
    grid-column: 1;
    align-self: start;
    padding-top: 8px;
  }
  ol.layers .name {
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    line-height: 1.22;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin: 0 0 8px;
  }
  ol.layers .body-txt {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink-2);
    margin: 0;
    max-width: 580px;
    text-wrap: pretty;
  }
  @media (max-width: 600px) {
    ol.layers > li { grid-template-columns: 56px 1fr; gap: 4px 14px; padding: 22px 0; }
    ol.layers .name { font-size: 19px; }
  }

  .spine-quote {
    margin: 72px auto 0;
    max-width: 720px;
    padding: 44px 0 40px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
  }
  .spine-quote::before {
    content: "“";
    position: absolute;
    top: -8px;
    left: -8px;
    font-family: var(--display);
    font-weight: 900;
    font-size: 64px;
    color: var(--states);
    opacity: 0.35;
    line-height: 1;
  }
  .spine-quote p {
    font-family: var(--display);
    font-weight: 500;
    font-style: italic;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 0;
    text-wrap: pretty;
  }
  .spine-quote p .key {
    font-style: normal;
    font-weight: 800;
    color: var(--states);
  }

  /* =====================================================
     6. SIX-PHASE METHODOLOGY
     ===================================================== */
  .phases {
    background: var(--amsa-navy-900);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  /* AMSA diagonal-stripe motif — the brand's atmospheric primitive */
  .phases::before {
    content: "";
    position: absolute;
    inset: -160px 0;
    background-image: url("assets/patterns/vertlines-white-transp.png");
    background-repeat: repeat;
    background-size: 320px 320px;
    opacity: 0.14;
    pointer-events: none;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
  }
  /* Subtle cyan glow accent — single brand moment, not a wash */
  .phases::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 12%, rgba(0,176,240,0.18), transparent 38%);
    pointer-events: none;
  }
  .phases > .wrap, .phases > .wrap-wide { position: relative; z-index: 1; }
  .phases h2.section-h { color: #fff; }
  .phases .intro {
    font-size: 18px;
    line-height: 1.62;
    color: rgba(255,255,255,0.7);
    margin: 0 0 48px;
    max-width: 600px;
  }
  .phases .eyebrow { color: var(--amsa-cyan); }
  .phases .eyebrow .num { color: rgba(255,255,255,0.5); }
  .phases .eyebrow .bar { background: var(--amsa-cyan); opacity: 0.75; }

  .phase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-left: 1px solid rgba(255,255,255,0.12);
  }
  .phase-card {
    padding: 32px 32px 36px;
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    position: relative;
    transition: background .2s ease, box-shadow .2s ease;
  }
  .phase-card:hover,
  .phase-card.is-paired {
    background: rgba(0,176,240,0.09);
    box-shadow: inset 0 0 0 1px rgba(0,176,240,0.22);
  }
  .phase-card .ph-num {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amsa-cyan);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .phase-card .ph-num .tick {
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--amsa-cyan);
    opacity: 0.6;
  }
  .phase-card .ph-name {
    font-family: var(--display);
    font-weight: 800;
    font-size: 21px;
    line-height: 1.22;
    letter-spacing: -0.012em;
    color: #fff;
    margin: 0 0 12px;
    text-wrap: balance;
  }
  .phase-card .ph-body {
    font-size: 15.5px;
    line-height: 1.58;
    color: rgba(255,255,255,0.74);
    margin: 0;
    text-wrap: pretty;
  }
  @media (max-width: 720px) {
    .phase-grid { grid-template-columns: 1fr; }
    .phase-card { padding: 26px 22px 28px; }
  }

  /* 05 — phase rail diagram (editorial visual summary above the detail cards) */
  .phase-rail {
    margin: 12px 0 56px;
    padding: 36px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    position: relative;
  }
  .phase-rail-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    position: relative;
  }
  .phase-rail-track::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 8.333%;
    right: 8.333%;
    height: 1px;
    background: linear-gradient(to right, var(--amsa-cyan) 0%, rgba(0,176,240,0.55) 35%, rgba(255,255,255,0.18) 100%);
    z-index: 0;
  }
  .phase-rail-tick {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 6px;
    cursor: default;
  }
  .phase-rail-tick .num,
  .phase-rail-tick .lbl,
  .phase-rail-tick .dot,
  .phase-rail-tick .dot::after { transition: color .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease; }
  .phase-rail-tick .num {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .phase-rail-tick .dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--amsa-navy-900);
    border: 1.5px solid rgba(255,255,255,0.35);
    margin-bottom: 16px;
    position: relative;
  }
  .phase-rail-tick .dot::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    background: transparent;
  }
  .phase-rail-tick.is-active .num { color: var(--amsa-cyan); }
  .phase-rail-tick.is-active .dot {
    background: var(--amsa-cyan);
    border-color: var(--amsa-cyan);
    box-shadow: 0 0 0 4px rgba(0, 176, 240, 0.20);
  }
  .phase-rail-tick.is-active .dot::after { background: #fff; }
  .phase-rail-tick .lbl {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.35;
    max-width: 100px;
  }
  .phase-rail-tick.is-active .lbl { color: var(--amsa-cyan); }

  /* Paired hover — fires on both tick and card via JS, stronger than is-active */
  .phase-rail-tick.is-paired .num { color: var(--amsa-cyan); }
  .phase-rail-tick.is-paired .dot {
    background: var(--amsa-cyan);
    border-color: var(--amsa-cyan);
    box-shadow: 0 0 0 6px rgba(0, 176, 240, 0.32);
    transform: scale(1.15);
  }
  .phase-rail-tick.is-paired .dot::after { background: #fff; }
  .phase-rail-tick.is-paired .lbl { color: var(--amsa-cyan); }
  .phase-rail-cap {
    margin-top: 22px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-align: center;
  }
  .phase-rail-cap strong { color: #fff; font-weight: 700; }
  @media (max-width: 720px) {
    .phase-rail { margin: 8px 0 40px; padding: 28px 0 22px; }
    .phase-rail-track { grid-template-columns: repeat(3, 1fr); gap: 26px 4px; }
    .phase-rail-track::before { display: none; }
    .phase-rail-tick .lbl { font-size: 10.5px; }
  }

  /* =====================================================
     7. PROOF — status board
     ===================================================== */
  .proof h2.section-h { margin-bottom: 36px; }
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
  }
  .proof-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 26px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: border-color var(--motion-base) var(--ease-standard),
                box-shadow var(--motion-base) var(--ease-standard),
                transform var(--motion-base) var(--ease-standard);
  }
  /* AMSA card hover — lose the border, gain the navy-tinted shadow */
  .proof-card:hover {
    border-color: transparent;
    box-shadow: var(--elev-raised);
    transform: translateY(-3px);
  }
  .proof-card.span-2 { grid-column: 1 / -1; }
  .proof-card .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  .proof-card .h-l {
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.012em;
    color: var(--ink);
    line-height: 1.1;
  }
  .proof-card .h-r {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-4);
  }
  .proof-card .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--states-tint);
    color: var(--states-ink);
    width: fit-content;
  }
  .proof-card .pill::before {
    content: "";
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--states);
  }
  .proof-card.next .pill { background: var(--funders-tint); color: var(--funders-ink); }
  .proof-card.next .pill::before { background: var(--funders); }
  .proof-card.validation .pill { background: var(--neutral-100); color: var(--ink-2); }
  .proof-card.validation .pill::before { background: var(--ink-3); }
  .proof-card .body-txt {
    font-size: 16px;
    line-height: 1.58;
    color: var(--ink-2);
    margin: 0;
    text-wrap: pretty;
  }
  .proof-card .body-txt b { color: var(--ink); font-weight: 700; }
  .proof-card .meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--ink-4);
    border-top: 1px solid var(--rule-soft);
    padding-top: 12px;
    margin-top: 4px;
  }
  @media (max-width: 720px) {
    .proof-grid { grid-template-columns: 1fr; }
    .proof-card.span-2 { grid-column: 1; }
  }

  /* =====================================================
     FieldHub specimen — supporting evidence inside 04 framework
     ===================================================== */
  .fieldhub-spec {
    margin: 64px auto 64px;
    max-width: var(--maxw-wide);
    padding: 0 var(--pad-x);
  }
  .fh-card {
    position: relative;
    display: grid;
    grid-template-columns: 224px minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    background: var(--amsa-navy-50);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    overflow: hidden;
  }
  .fh-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/patterns/vertlines-darkblue-transp.png");
    background-repeat: repeat;
    background-size: 320px 320px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
  }
  .fh-card > * { position: relative; z-index: 1; }
  .fh-phone-frame {
    border-radius: 36px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--rule);
    box-shadow: var(--elev-raised);
    overflow: hidden;
    transform: rotate(-1.2deg);
    transition: transform var(--motion-base) var(--ease-standard);
  }
  .fh-phone-frame:hover { transform: rotate(0deg) translateY(-2px); }
  .fh-phone-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
  }
  .fh-phone-caption {
    margin: 18px 4px 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-4);
    text-align: center;
    line-height: 1.5;
  }
  .fh-headline {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(22px, 2.6vw, 28px);
    line-height: 1.18;
    letter-spacing: -0.014em;
    color: var(--ink);
    margin: 14px 0 16px;
    text-wrap: balance;
  }
  .fh-headline em { font-style: normal; color: var(--amsa-cyan-600); font-weight: 900; }
  .fh-body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-2);
    margin: 0 0 22px;
    max-width: 520px;
  }
  .fh-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .fh-features li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-2);
  }
  .fh-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--amsa-cyan);
  }
  .fh-features b { color: var(--ink); font-weight: 700; }
  .fh-foot-meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--ink-4);
    border-top: 1px solid var(--rule);
    padding-top: 14px;
    margin: 0;
  }
  @media (max-width: 820px) {
    .fh-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
    .fh-phone-frame { max-width: 196px; margin: 0 auto; transform: rotate(0deg); }
    .fh-phone-caption { max-width: 196px; margin-left: auto; margin-right: auto; }
    .fh-features { grid-template-columns: 1fr; }
  }

  /* =====================================================
     8 & 9. PATH CTAs
     ===================================================== */
  .path {
    padding: 96px 0;
    border-top: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
  }
  .path.states  { background: var(--states-tint); }
  .path.funders { background: var(--funders-tint); }
  /* Light-tint diagonal stripes — brand motif at low opacity on -50 tinted grounds */
  .path.states::before {
    content: "";
    position: absolute;
    inset: -160px 0;
    background-image: url("assets/patterns/vertlines-white-transp.png");
    background-repeat: repeat;
    background-size: 320px 320px;
    opacity: 0.30;
    pointer-events: none;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
  }
  .path.funders::before {
    content: "";
    position: absolute;
    inset: -160px 0;
    background-image: url("assets/patterns/vertlines-white-transp.png");
    background-repeat: repeat;
    background-size: 320px 320px;
    opacity: 0.32;
    pointer-events: none;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
  }
  .path > .wrap { position: relative; z-index: 1; }
  .path .eyebrow.path-eyebrow { color: var(--states); }
  .path.funders .eyebrow.path-eyebrow { color: var(--funders); }
  .path h2.path-h {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.022em;
    color: var(--states-ink);
    margin: 0 0 28px;
    max-width: 640px;
    text-wrap: balance;
  }
  .path.funders h2.path-h { color: var(--funders-ink); }
  .path p {
    font-size: 18px;
    line-height: 1.62;
    color: var(--states-ink);
    margin: 0 0 18px;
    max-width: 620px;
    text-wrap: pretty;
  }
  .path.funders p { color: var(--funders-ink); }
  .path p:last-of-type { margin-bottom: 32px; }
  .path .spine {
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
  }

  .cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
  }
  /* AMSA buttons — pill geometry, Nexa Bold UPPERCASE tracked 0.04em.
     Primary cyan CTA earns --shadow-brand on hover as a deliberate brand moment. */
  .btn {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    text-decoration: none;
    transition: background var(--motion-fast) var(--ease-standard),
                color var(--motion-fast) var(--ease-standard),
                transform 120ms ease,
                box-shadow var(--motion-base) var(--ease-standard);
    white-space: nowrap;
    text-transform: uppercase;
  }
  .btn:focus-visible { outline: 0; box-shadow: var(--focus-ring); }
  .btn .arrow { display: inline-block; transition: transform .18s ease; }
  .btn:hover .arrow { transform: translateX(4px); }
  .btn:active { transform: translateY(1px); }
  .btn-states  { background: var(--states);  color: #fff; }
  .btn-states:hover  {
    background: var(--states-ink);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 176, 128, 0.28);
  }
  .btn-funders { background: var(--funders); color: #fff; }
  .btn-funders:hover {
    background: var(--funders-ink);
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-brand);
  }
  /* Secondary link button — bottom hairline only (per AMSA component spec) */
  .btn-link {
    background: transparent;
    color: var(--states-ink);
    padding: 14px 4px;
    border-radius: 0;
    border-bottom: 1px solid currentColor;
    text-transform: uppercase;
  }
  .path.funders .btn-link { color: var(--funders-ink); }
  .btn-link:hover { color: var(--states); text-decoration: none; }
  .path.funders .btn-link:hover { color: var(--funders); }
  .btn-link:focus-visible { outline: 0; box-shadow: var(--focus-ring); border-radius: 4px; }

  .meta-line {
    margin-top: 22px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--ink-3);
  }
  .path.funders .meta-line { color: var(--funders-ink); opacity: 0.65; }
  .path.states  .meta-line { color: var(--states-ink);  opacity: 0.65; }

  /* "What happens after" rail under CTAs */
  .after-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .after-rail .step {
    padding: 0 20px;
    border-left: 1px solid rgba(0,0,0,0.08);
  }
  .after-rail .step:first-child { border-left: 0; padding-left: 0; }
  .after-rail .step .n {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--states-ink);
    opacity: 0.7;
    margin-bottom: 6px;
    display: block;
  }
  .path.funders .after-rail .step .n { color: var(--funders-ink); }
  .after-rail .step .ttl {
    font-family: var(--display);
    font-weight: 800;
    font-size: 15px;
    color: var(--states-ink);
    line-height: 1.3;
    margin-bottom: 4px;
    letter-spacing: -0.005em;
  }
  .path.funders .after-rail .step .ttl { color: var(--funders-ink); }
  .after-rail .step .sub {
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--states-ink);
    opacity: 0.78;
    margin: 0;
  }
  .path.funders .after-rail .step .sub { color: var(--funders-ink); }
  @media (max-width: 720px) {
    .after-rail { grid-template-columns: 1fr; gap: 18px; }
    .after-rail .step { border-left: 0; padding-left: 0; padding-bottom: 18px; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .after-rail .step:last-child { border-bottom: 0; padding-bottom: 0; }
  }

  /* =====================================================
     10. CAPTURE FORM
     ===================================================== */
  .form-section {
    background: var(--paper);
    border-top: 1px solid var(--rule);
  }
  .form-section h2 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(28px, 3.8vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    color: var(--ink);
    text-wrap: balance;
  }
  .form-section .sub {
    font-size: 18px;
    color: var(--ink-2);
    margin: 0 0 36px;
    max-width: 540px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .form-grid .full { grid-column: 1 / -1; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-3);
  }
  .field input,
  .field select,
  .field textarea {
    font-family: var(--sans);
    font-size: 16px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    outline: 0;
    transition: border-color var(--motion-fast) var(--ease-standard),
                box-shadow var(--motion-fast) var(--ease-standard);
    width: 100%;
  }
  .field textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: var(--amsa-cyan);
    box-shadow: var(--focus-ring);
  }
  .form-submit {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .form-submit .privacy {
    font-size: 13px;
    color: var(--ink-3);
    max-width: 380px;
    line-height: 1.5;
  }
  .field.check {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0 0;
    border: 0;
    background: transparent;
  }
  .field.check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    flex: none;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    border: 2px solid var(--amsa-navy);
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    display: grid;
    place-content: center;
    transition: border-color 120ms ease, background 120ms ease;
  }
  .field.check input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    background: #fff;
    clip-path: polygon(14% 44%, 0 60%, 38% 100%, 100% 18%, 86% 4%, 38% 70%);
    transition: transform 120ms ease;
  }
  .field.check input[type="checkbox"]:checked {
    background: var(--amsa-cyan);
    border-color: var(--amsa-cyan);
  }
  .field.check input[type="checkbox"]:checked::before { transform: scale(1); }
  .field.check input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--amsa-cyan);
    outline-offset: 2px;
  }
  .field.check label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink-1);
    line-height: 1.5;
    cursor: pointer;
  }
  .field.check label .sub {
    display: block;
    font-weight: 400;
    color: var(--ink-3);
    font-size: 13px;
    margin-top: 2px;
  }
  /* The form CTA is the primary cyan action on this section */
  .form-submit .btn-states { background: var(--amsa-cyan); }
  .form-submit .btn-states:hover {
    background: var(--amsa-cyan-600);
    box-shadow: var(--shadow-brand);
  }
  .form-confirm {
    display: none;
    background: var(--states-tint);
    color: var(--states-ink);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    font-size: 16px;
    border-left: 3px solid var(--states);
  }
  .form-confirm.shown { display: block; }
  @media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
  }

  /* =====================================================
     11. FOOTER
     ===================================================== */
  footer.foot {
    background: var(--amsa-navy-900);
    color: rgba(255, 252, 246, 0.78);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
  }
  /* AMSA diagonal-stripe motif — 12% on the footer per brand-spec */
  footer.foot::before {
    content: "";
    position: absolute;
    inset: -160px 0;
    background-image: url("assets/patterns/vertlines-white-transp.png");
    background-repeat: repeat;
    background-size: 320px 320px;
    opacity: 0.12;
    pointer-events: none;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
  }
  footer.foot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 92% 8%, rgba(0,176,240,0.16), transparent 38%);
    pointer-events: none;
  }
  footer.foot .inner {
    max-width: var(--maxw-wide);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
    position: relative;
    z-index: 1;
  }
  footer.foot p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.6;
    max-width: 560px;
  }
  footer.foot a {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    text-decoration: none;
  }
  footer.foot a:hover { border-bottom-color: #fff; }
  footer.foot .colophon {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin-top: 22px;
  }
  footer.foot .footer-mark {
    display: inline-flex;
    align-items: center;
    opacity: 0.95;
  }
  footer.foot .footer-mark img {
    height: 40px;
    width: auto;
    display: block;
  }
  @media (max-width: 600px) {
    footer.foot .inner { grid-template-columns: 1fr; align-items: start; }
  }

  /* =====================================================
     PRINT
     ===================================================== */
  @media print {
    .welcome-strip .pulse { display: none !important; }
    body { background: #fff; color: #000; }
    .phases, footer.foot { background: #fff; color: #000; }
    .phases .ph-body, .phases .intro { color: #333; }
    .phases h2.section-h, .phases .ph-name { color: #000; }
    .phases::before, .phases::after, .path::before, footer.foot::before { display: none !important; }
  }

  /* =====================================================
     Timeline — horizontal rail, hover / focus popups
     ===================================================== */
  .timeline-section .section-h { margin-bottom: 6px; }
  .timeline-section .tl-lead {
    color: var(--muted); font-size: 16px; max-width: 640px; margin: 0 0 8px;
  }
  .timeline {
    position: relative;
    display: flex;
    gap: 2px;
    margin-top: 104px;   /* headroom for popups */
    margin-bottom: 24px;
  }
  .tl-line {
    position: absolute;
    top: 9px; left: 2%; right: 2%;
    height: 3px; border-radius: 2px;
    background: linear-gradient(90deg, var(--amsa-green), var(--amsa-cyan));
    z-index: 0;
  }
  .tl-node {
    position: relative;
    flex: 1 1 0; min-width: 0;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 0 8px;
    background: none; border: 0; font: inherit; color: inherit;
    cursor: pointer; text-align: center; z-index: 1;
  }
  .tl-dot {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--paper); border: 3px solid var(--amsa-green);
    box-shadow: 0 0 0 4px var(--paper);
    transition: transform .22s var(--ease-standard), background .22s, border-color .22s;
  }
  .tl-node:hover .tl-dot,
  .tl-node:focus-visible .tl-dot {
    background: var(--amsa-cyan); border-color: var(--amsa-cyan); transform: scale(1.34);
  }
  .tl-body { display: flex; flex-direction: column; align-items: center; gap: 7px; }
  .tl-date {
    font-family: var(--mono); font-size: 12px; letter-spacing: .04em;
    font-weight: 600; color: var(--amsa-green-600);
  }
  .tl-title {
    font-family: var(--sans); font-size: 13.5px; line-height: 1.28;
    font-weight: 700; color: var(--ink); text-wrap: balance;
  }
  .tl-pop {
    position: absolute; bottom: calc(100% + 16px); left: 50%;
    width: 250px; max-width: 62vw;
    transform: translate(-50%, 6px);
    background: var(--amsa-navy-900); color: #fff;
    padding: 15px 18px; border-radius: 12px;
    font-size: 13px; line-height: 1.5; text-align: left;
    box-shadow: 0 24px 48px -20px rgba(10,37,64,.55);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s, transform .2s; z-index: 5;
  }
  .tl-pop::after {
    content: ""; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent; border-top-color: var(--amsa-navy-900);
  }
  .tl-pop-date {
    display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .06em;
    text-transform: uppercase; color: var(--amsa-cyan); margin-bottom: 6px;
  }
  .tl-node:hover .tl-pop,
  .tl-node:focus-visible .tl-pop {
    opacity: 1; visibility: visible; transform: translate(-50%, 0);
  }
  /* keep edge popups inside the frame */
  .tl-node:first-child .tl-pop { left: 0; transform: translate(0, 6px); }
  .tl-node:first-child:hover .tl-pop,
  .tl-node:first-child:focus-visible .tl-pop { transform: translate(0, 0); }
  .tl-node:first-child .tl-pop::after { left: 16px; transform: none; }
  .tl-node:last-child .tl-pop { left: auto; right: 0; transform: translate(0, 6px); }
  .tl-node:last-child:hover .tl-pop,
  .tl-node:last-child:focus-visible .tl-pop { transform: translate(0, 0); }
  .tl-node:last-child .tl-pop::after { left: auto; right: 16px; transform: none; }

  @media (max-width: 900px) {
    .timeline { flex-direction: column; margin-top: 28px; gap: 0; }
    .tl-line { top: 4px; bottom: 10px; left: 8px; right: auto; width: 3px; height: auto; }
    .tl-node {
      flex-direction: row; align-items: flex-start; gap: 18px;
      text-align: left; padding: 0 0 26px 0;
    }
    .tl-dot { flex: none; margin-top: 2px; }
    .tl-body { align-items: flex-start; }
    /* details become an always-visible card on small screens */
    .tl-pop, .tl-node:first-child .tl-pop, .tl-node:last-child .tl-pop {
      position: static; opacity: 1; visibility: visible; pointer-events: auto;
      transform: none; width: 100%; max-width: none; margin-top: 4px;
    }
    .tl-pop::after { display: none; }
  }

  /* =====================================================
     01·b — AUDIENCE ROUTER (two doors: navigators + states)
     ===================================================== */
  .audience {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 64px 0 68px;
  }
  .audience .lede {
    max-width: 640px;
    margin: 10px 0 34px;
    font-family: var(--sans);
    font-weight: 400;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.55;
    color: var(--ink-2);
  }
  .doors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .door {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 34px 30px 38px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 180ms var(--ease-standard),
                box-shadow 220ms var(--ease-standard),
                border-color 180ms var(--ease-standard);
  }
  .door::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    transition: width 180ms var(--ease-standard);
  }
  .door.nav::before   { background: var(--amsa-green); }
  .door.state::before { background: var(--amsa-cyan); }
  .door:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(10, 37, 64, 0.10);
  }
  .door.nav:hover   { border-color: var(--amsa-green); }
  .door.state:hover { border-color: var(--amsa-cyan); }
  .door:hover::before { width: 8px; }
  .door:focus-visible { outline: 0; box-shadow: var(--focus-ring); }
  .door .kick {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .door.nav .kick   { color: var(--amsa-green-600); }
  .door.state .kick { color: var(--amsa-navy); }
  .door h3 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(21px, 2.2vw, 26px);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 12px;
  }
  .door p {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0 0 22px;
    max-width: 42ch;
  }
  .door .go {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .door.nav .go   { color: var(--amsa-green-600); }
  .door.state .go { color: var(--amsa-navy); }
  .door .go .arrow { transition: transform .18s ease; }
  .door:hover .go .arrow { transform: translateX(4px); }
  @media (max-width: 720px) {
    .audience { padding: 48px 0 52px; }
    .doors { grid-template-columns: 1fr; gap: 16px; }
    .door { padding: 28px 26px 26px 30px; }
  }

  /* =====================================================
     SUB-PAGE CHROME — breadcrumb + masthead
     ===================================================== */
  .breadcrumb {
    background: var(--ink);
    color: rgba(255,255,255,0.62);
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 11px var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  .breadcrumb a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .breadcrumb a:hover { color: var(--amsa-cyan); text-decoration: none; }
  .breadcrumb a .arrow { transition: transform 0.2s ease; }
  .breadcrumb a:hover .arrow { transform: translateX(-3px); }
  .breadcrumb .here {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }
  .breadcrumb .here::before { content: "/ "; }

  .subhero {
    position: relative;
    background: var(--amsa-navy-900);
    color: #fff;
    overflow: hidden;
    padding: 86px 0 90px;
  }
  .subhero::before {
    content: "";
    position: absolute;
    inset: -160px 0;
    background-image: url("assets/patterns/vertlines-white-transp.png");
    background-repeat: repeat;
    background-size: 320px 320px;
    opacity: 0.10;
    pointer-events: none;
  }
  .subhero .wrap { position: relative; z-index: 1; }
  .subhero .eyebrow { color: #7FE0B8; }
  .subhero .eyebrow .num { color: rgba(255,255,255,0.42); }
  .subhero .eyebrow .bar { background: var(--amsa-green); opacity: 0.8; }
  .subhero h1 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.024em;
    margin: 0 0 22px;
    max-width: 17ch;
    text-wrap: balance;
  }
  .subhero h1 em { font-style: normal; color: #2CC67E; }
  .subhero .sub {
    font-size: 19px;
    line-height: 1.55;
    color: rgba(255,255,255,0.74);
    margin: 0;
    max-width: 62ch;
    text-wrap: pretty;
  }
  @media (max-width: 720px) {
    .subhero { padding: 60px 0 62px; }
    .subhero .sub { font-size: 17px; }
  }

  /* =====================================================
     RHTP NOTE — an inset card on the home page, door to /for-states
     A dot matrix stands in for the 50 states so the point is glanceable
     without a display numeral claiming section-level weight.
     ===================================================== */
  .rhtp-note {
    background: var(--paper);
    padding: 30px 0 34px;
  }
  .rhtp-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0 30px;
    padding: 20px 24px;
    border: 1px solid var(--rule);
    border-radius: 3px;
    background: var(--surface);
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
  }
  .rhtp-card:hover {
    text-decoration: none;
    border-color: color-mix(in oklab, var(--amsa-green) 45%, var(--rule));
    box-shadow: 0 1px 0 rgba(16, 32, 48, 0.04);
  }
  /* 10 x 5 grid of dots = the 50 states, drawn in CSS, no markup needed */
  .rhtp-fig {
    display: block;
    width: 94px;
    height: 42px;
    background-image: radial-gradient(circle, var(--amsa-green) 1.7px, transparent 1.9px);
    background-size: 9.4px 8.4px;
    background-position: 0 0;
    opacity: 0.7;
    transition: opacity 0.22s ease;
  }
  .rhtp-card:hover .rhtp-fig { opacity: 1; }
  .rhtp-copy {
    font-size: 13.5px;
    line-height: 1.58;
    color: var(--ink-3);
    max-width: 74ch;
    text-wrap: pretty;
  }
  .rhtp-copy strong {
    color: var(--ink-1);
    font-weight: 650;
  }
  .rhtp-go {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    color: var(--ink-2);
  }
  .rhtp-card:hover .rhtp-go { color: var(--states-ink); }
  .rhtp-go .arrow { transition: transform 0.22s ease; }
  .rhtp-card:hover .rhtp-go .arrow { transform: translateX(3px); }
  @media (max-width: 900px) {
    .rhtp-card {
      grid-template-columns: auto 1fr;
      gap: 12px 24px;
      padding: 18px 20px;
    }
    .rhtp-go { grid-column: 2 / -1; }
  }
  @media (max-width: 620px) {
    .rhtp-card { grid-template-columns: 1fr; gap: 12px; }
    .rhtp-go { grid-column: 1 / -1; }
    .rhtp-fig { width: 85px; height: 38px; background-size: 8.5px 7.6px; }
  }

  /* =====================================================
     SITE NAVIGATION — sticky header + hamburger drawer
     ===================================================== */

  /* Sticky co-brand header, with the hamburger living inside it */
  .cobrand {
    position: sticky;
    top: 0;
    z-index: 60;
  }
  .cobrand .inner { max-width: min(var(--maxw-wide), 100%); }

  /* ── Brand lockup doubles as the home link ── */
  .cobrand .brand-home {
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.22s ease;
  }
  .cobrand .brand-home:hover { opacity: 0.74; }
  .cobrand .brand-home:focus-visible {
    outline: 2px solid var(--amsa-cyan);
    outline-offset: 6px;
  }
  .cobrand .brand-home .divider { display: block; }

  /* ── Menu button: bars + label, so it reads as navigation ── */
  .menu-btn {
    margin-left: auto;
    flex: 0 0 auto;
    height: 38px;
    padding: 0 13px 0 11px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid var(--rule);
    border-radius: 3px;
    cursor: pointer;
    color: var(--ink);
    transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
  }
  .crumb + .menu-btn { margin-left: 20px; }
  .menu-btn:hover { border-color: var(--amsa-green); background: var(--amsa-green-50); color: var(--amsa-green); }
  .menu-btn:focus-visible { outline: 2px solid var(--amsa-cyan); outline-offset: 3px; }
  .menu-btn .bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 18px;
  }
  .menu-btn .bar {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, width 0.3s ease;
  }
  .menu-btn .bar:nth-child(2) { width: 12px; }
  .menu-btn:hover .bar:nth-child(2) { width: 18px; }
  .menu-btn[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-btn[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .menu-btn[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .menu-btn .menu-label {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1;
  }
  .menu-btn .l-close { display: none; }
  .menu-btn[aria-expanded="true"] .l-open { display: none; }
  .menu-btn[aria-expanded="true"] .l-close { display: inline; }
  @media (max-width: 600px) {
    .menu-btn { padding: 0 11px 0 10px; gap: 8px; }
    .crumb + .menu-btn { margin-left: 12px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .menu-btn .bar { transition: none; }
  }

  /* ── Scrim ── */
  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(10, 37, 64, 0.52);
    backdrop-filter: saturate(140%) blur(3px);
    -webkit-backdrop-filter: saturate(140%) blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.34s ease, visibility 0s linear 0.34s;
  }
  body.nav-open .nav-scrim {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.34s ease, visibility 0s;
  }

  /* ── Drawer ── */
  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    width: min(340px, 84vw);
    background: var(--amsa-navy-900);
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(101%);
    visibility: hidden;
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0.42s;
    box-shadow: -30px 0 70px rgba(10, 37, 64, 0.32);
  }
  body.nav-open .nav-drawer {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s;
  }
  body { overflow-x: clip; }

  /* Brand atmosphere inside the drawer: stripe motif + a single green glow */
  .nav-drawer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/patterns/vertlines-white-transp.png");
    background-size: auto 100%;
    background-repeat: repeat-x;
    opacity: 0.09;
    pointer-events: none;
  }
  .nav-drawer::after {
    content: "";
    position: absolute;
    top: -14%;
    right: -26%;
    width: 78%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(0, 176, 128, 0.30) 0%, rgba(0, 176, 128, 0) 68%);
    pointer-events: none;
  }
  .nav-drawer > * { position: relative; z-index: 1; }

  /* Drawer head */
  .nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav-head .label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
  }
  .nav-close {
    width: 34px; height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    color: #fff;
    font-size: 19px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .nav-close:hover { border-color: var(--amsa-green); background: rgba(0, 176, 128, 0.14); }
  .nav-close:focus-visible { outline: 2px solid var(--amsa-cyan); outline-offset: 3px; }

  /* Drawer links */
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 6px 0 4px;
    flex: 1 1 auto;
  }
  .nav-list li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .nav-list li:last-child { border-bottom: none; }
  .nav-list a {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 24px 11px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: background 0.22s ease, padding-left 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .nav-list a::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--amsa-green);
    transition: width 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: rgba(255, 255, 255, 0.045);
    padding-left: 31px;
    text-decoration: none;
    outline: none;
  }
  .nav-list a:hover::before,
  .nav-list a:focus-visible::before { width: 3px; }
  /* Group labels split the drawer into About / Get involved */
  .nav-list li.nav-group {
    border-bottom: none;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    padding: 20px 24px 8px;
  }
  .nav-list li.nav-group:first-child { padding-top: 6px; }
  .nav-list li.nav-group + li { border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .nav-list .txt {
    font-family: var(--sans);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.008em;
    line-height: 1.15;
  }
  .nav-list .sub {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
  }
  /* Current page */
  .nav-list a[aria-current="page"] { background: rgba(0, 176, 128, 0.07); }
  .nav-list a[aria-current="page"]::before { width: 3px; }
  .nav-list a[aria-current="page"] .txt { color: var(--amsa-green); }

  /* Drawer foot */
  .nav-foot {
    padding: 24px 32px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav-foot .nav-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    padding-bottom: 3px;
    margin-bottom: 22px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .nav-foot .nav-contact:hover { color: var(--amsa-green); border-color: var(--amsa-green); }
  .nav-foot img {
    height: 22px;
    width: auto;
    display: block;
    margin-bottom: 12px;
    opacity: 0.9;
  }
  .nav-foot p {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.07em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
  }
  .nav-foot a { color: rgba(255, 255, 255, 0.72); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
  .nav-foot a:hover { color: var(--amsa-green); border-color: var(--amsa-green); }

  body.nav-open { overflow: hidden; }

  @media (max-width: 600px) {
    .nav-list a { padding: 16px 26px 15px; }
    .nav-list .txt { font-size: 23px; }
    .nav-head, .nav-foot { padding-left: 26px; padding-right: 26px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .nav-drawer, .nav-scrim, .nav-list a, .nav-list a::before, .menu-btn .bar { transition: none !important; }
  }

  /* =====================================================
     PAGE MASTHEAD — shared by every interior page
     ===================================================== */
  .pagehead {
    background: var(--amsa-navy-900);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 78px 0 70px;
  }
  .pagehead::before {
    content: "";
    position: absolute;
    inset: -18% 0;
    background-image: url("assets/patterns/vertlines-white-transp.png");
    background-size: auto 100%;
    background-repeat: repeat-x;
    opacity: 0.10;
    pointer-events: none;
    transform: translate3d(0, var(--parallax-y, 0px), 0);
    will-change: transform;
  }
  .pagehead::after {
    content: "";
    position: absolute;
    top: -40%;
    left: 58%;
    width: 62%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(0, 176, 128, 0.26) 0%, rgba(0, 176, 128, 0) 66%);
    pointer-events: none;
  }
  .pagehead > * { position: relative; z-index: 1; }
  .pagehead .eyebrow { color: var(--amsa-green); }
  .pagehead .eyebrow .bar { background: var(--amsa-green); }
  .pagehead .eyebrow .num { color: rgba(255, 255, 255, 0.5); }
  .pagehead h1 {
    font-family: var(--sans);
    font-size: clamp(38px, 5.2vw, 62px);
    font-weight: 700;
    letter-spacing: -0.028em;
    line-height: 1.04;
    margin: 18px 0 0;
    max-width: 17ch;
    text-wrap: balance;
  }
  .pagehead h1 em { font-style: normal; color: var(--amsa-green); }
  .pagehead .sub {
    font-family: var(--sans);
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.74);
    margin: 22px 0 0;
    max-width: 58ch;
    text-wrap: pretty;
  }
  @media (max-width: 600px) {
    .pagehead { padding: 54px 0 48px; }
  }

  /* =====================================================
     PAGE PAGER — prev / next at the foot of interior pages
     ===================================================== */
  .pager {
    border-top: 1px solid var(--rule);
    background: var(--paper-2);
  }
  .pager .inner {
    max-width: var(--maxw-wide);
    margin: 0 auto;
    padding: 34px var(--pad-x);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .pager a {
    text-decoration: none;
    display: block;
    max-width: 46%;
  }
  .pager .k {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 6px;
  }
  .pager .t {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    transition: color 0.2s ease;
  }
  .pager a:hover .t { color: var(--amsa-green); }
  .pager .next { text-align: right; margin-left: auto; }
  @media (max-width: 600px) {
    .pager a { max-width: 100%; }
    .pager .next { text-align: left; margin-left: 0; }
    .pager .inner { flex-direction: column; gap: 22px; }
  }

  /* =====================================================
     HOMEPAGE — proof bar, beats, credibility strip
     ===================================================== */

  /* Proof bar — sits inside the navy hero band, under the copy */
  .hero-proof {
    position: relative;
    z-index: 1;
    margin-top: 74px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,0.16);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .hero-proof .hp {
    padding: 0 26px;
    border-left: 1px solid rgba(255,255,255,0.13);
  }
  .hero-proof .hp:first-child { border-left: 0; padding-left: 0; }
  .hero-proof .hp .n {
    display: block;
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(28px, 3.1vw, 40px);
    line-height: 1;
    letter-spacing: -0.024em;
    color: #fff;
    margin-bottom: 12px;
    white-space: nowrap;
  }
  .hero-proof .hp.accent .n { color: #2CC67E; }
  .hero-proof .hp .l {
    display: block;
    font-family: var(--mono);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    line-height: 1.45;
    color: rgba(255,255,255,0.62);
  }
  @media (max-width: 900px) {
    .hero-proof { grid-template-columns: repeat(3, 1fr); row-gap: 30px; margin-top: 54px; }
    .hero-proof .hp { padding: 0 18px; }
    .hero-proof .hp:nth-child(3n+1) { border-left: 0; padding-left: 0; }
  }
  @media (max-width: 560px) {
    .hero-proof { grid-template-columns: repeat(2, 1fr); }
    .hero-proof .hp:nth-child(3n+1) { border-left: 1px solid rgba(255,255,255,0.13); padding-left: 18px; }
    .hero-proof .hp:nth-child(odd) { border-left: 0; padding-left: 0; }
  }

  /* Beats — Train / Deploy / Measure */
  .beats-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 56px;
    align-items: start;
  }
  .beats { display: flex; flex-direction: column; gap: 4px; }
  .beat {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--rule);
    align-items: start;
  }
  .beat:last-child { border-bottom: 1px solid var(--rule); }
  .beat .k {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--amsa-green-600);
    padding-top: 5px;
  }
  .beat h3 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.15;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin: 0 0 8px;
  }
  .beat p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.58;
    color: var(--ink-2);
    margin: 0;
    max-width: 46ch;
    text-wrap: pretty;
  }
  @media (max-width: 900px) {
    .beats-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* Credibility strip */
  .cred {
    background: var(--surface-2, #F6F8FA);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 46px 0 44px;
  }
  .cred .cred-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 34px;
  }
  .cred .item {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ink-2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .cred .item::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 999px;
    background: var(--amsa-green);
    flex: none;
  }
  .cred .cred-note {
    margin: 22px 0 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 62ch;
    text-wrap: pretty;
  }
  .cred .cred-note a {
    color: var(--amsa-green-600);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(22,169,87,0.35);
  }
  .cred .cred-note a:hover { border-bottom-color: var(--amsa-green); }

  /* Funder door variant — mirrors .door.state */
  .door.fund::before { background: var(--amsa-cyan); }
  .door.fund:hover { border-color: var(--amsa-cyan); }
  .door.fund .kick { color: var(--amsa-navy); }

  /* Backers — who has already funded and hosted DRHC */
  .backers { padding: 68px 0 64px; }
  .backers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 30px;
  }
  .backer {
    border: 1px solid var(--rule);
    border-radius: 3px;
    padding: 30px 30px 28px;
    position: relative;
    background: var(--surface);
  }
  .backer::before {
    content: "";
    position: absolute;
    left: -1px; top: -1px; bottom: -1px;
    width: 3px;
    border-radius: 3px 0 0 3px;
    background: var(--amsa-green);
  }
  .backer.host::before { background: var(--amsa-cyan); }
  .backer .kick {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amsa-green-600);
    margin-bottom: 12px;
  }
  .backer.host .kick { color: var(--amsa-navy); }
  .backer h3 {
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 6px;
  }
  .backer .amt {
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: 0.04em;
    color: var(--ink-2);
    margin: 0 0 16px;
  }
  .backer p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.62;
    color: var(--ink-2);
    margin: 0 0 12px;
    text-wrap: pretty;
  }
  .backer p:last-child { margin-bottom: 0; }
  @media (max-width: 820px) {
    .backers-grid { grid-template-columns: 1fr; gap: 20px; }
    .backer { padding: 26px 24px 24px; }
  }

  /* Funder split — two paths at the top of for-funders */
  .fsplit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .fsplit a {
    display: flex;
    flex-direction: column;
    padding: 26px 26px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 180ms var(--ease-standard), transform 180ms var(--ease-standard);
  }
  .fsplit a:hover { border-color: var(--amsa-cyan); transform: translateY(-2px); }
  .fsplit a:focus-visible { outline: 0; box-shadow: var(--focus-ring); }
  .fsplit .kick {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amsa-navy);
    margin-bottom: 12px;
  }
  .fsplit strong {
    font-family: var(--display);
    font-weight: 800;
    font-size: 19px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .fsplit p {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0 0 16px;
  }
  .fsplit .go { margin-top: auto; }
  @media (max-width: 720px) { .fsplit { grid-template-columns: 1fr; } }

  /* Homepage hero — retuned for the longer problem-first headline */
  .hero-grid { grid-template-columns: 1.3fr 0.7fr; gap: 56px; }
  .hero-copy { max-width: 640px; }
  .hero h1 { font-size: clamp(34px, 4.4vw, 54px); line-height: 1.06; }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 100%; }
  }

  /* =====================================================
     LEADERSHIP — fellow feature, roster grid, monograms
     ===================================================== */
  .lead-feature { padding: 76px 0 72px; }
  .lead-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: start;
  }
  /* Left column: portrait + "her why" video stacked as one person module */
  .lead-aside {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  /* Portrait / monogram plate */
  .portrait {
    border: 1px solid var(--rule);
    border-radius: var(--r-lg, 14px);
    background: var(--paper);
    overflow: hidden;
    position: relative;
  }
  .portrait .plate {
    aspect-ratio: 4 / 5;
    display: grid;
    place-items: center;
    background:
      radial-gradient(circle at 50% 30%, rgba(0, 176, 128, 0.16) 0%, rgba(0, 176, 128, 0) 62%),
      var(--amsa-green-50);
    position: relative;
  }
  .portrait .plate::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/patterns/vertlines-green-transp.png");
    background-size: auto 100%;
    background-repeat: repeat-x;
    opacity: 0.30;
    pointer-events: none;
  }
  .portrait .plate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
    display: block;
    position: relative;
    z-index: 2;
  }
  /* photo plates carry the image, not the stripe motif */
  .portrait .plate.has-photo::after { opacity: 0; }
  .monogram {
    font-family: var(--display);
    font-size: 62px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--amsa-green-600);
    position: relative;
    z-index: 1;
  }
  .portrait .cap {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--ink-4);
    padding: 13px 16px;
    border-top: 1px solid var(--rule);
    background: var(--paper);
  }

  /* "Her why" video, sits under the portrait in the same column */
  .why-video { margin: 0; }
  .why-video .why-label {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 12px;
  }
  .why-video .why-label .k {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amsa-green-600);
  }
  .why-video .why-label .t {
    font-family: var(--display);
    font-weight: 900;
    font-size: 19px;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .why-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg, 14px);
    overflow: hidden;
    background: var(--amsa-navy-900);
  }
  .why-frame video,
  .why-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  /* Pending state: brand ground + play affordance, so the slot reads as a
     player waiting on a file, not as a broken image. */
  .why-frame .why-ground {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 44%, rgba(0, 176, 128, 0.30) 0%, rgba(0, 176, 128, 0) 64%),
      var(--amsa-navy-900);
  }
  .why-frame .why-ground::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/patterns/vertlines-white-transp.png");
    background-size: cover;
    opacity: 0.10;
  }
  .why-pending {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 18px;
  }
  .why-pending .play {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
  }
  .why-pending .play svg { display: block; }
  .why-pending .badge {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
  }
  .why-cap {
    margin: 12px 0 0;
    font-family: var(--sans);
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ink-4);
  }

  /* Fellow copy */
  .lead-body .role {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amsa-green-600);
    display: block;
    margin-bottom: 12px;
  }
  .lead-body h2 {
    font-family: var(--display);
    font-size: clamp(30px, 3.6vw, 42px);
    font-weight: 700;
    letter-spacing: -0.026em;
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 22px;
  }
  .lead-body p {
    font-size: 17px;
    line-height: var(--leading-body);
    color: var(--ink-2);
    margin: 0 0 18px;
    max-width: 62ch;
    text-wrap: pretty;
  }
  .pquote {
    border-left: 3px solid var(--amsa-green);
    padding: 4px 0 4px 22px;
    margin: 30px 0 26px;
    font-family: var(--display);
    font-size: clamp(19px, 2.1vw, 24px);
    font-weight: 500;
    line-height: 1.34;
    letter-spacing: -0.014em;
    color: var(--ink);
    max-width: 46ch;
  }
  .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }
  .chips span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--states-ink);
    background: var(--states-tint);
    border: 1px solid rgba(0, 176, 128, 0.28);
    border-radius: 999px;
    padding: 6px 12px;
  }

  /* Roster — horizontal media cards, two up. Keeps the text measure wide
     enough to read and stops a third column from squeezing to ~200px. */
  .roster {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 34px;
  }
  /* An odd final card spans the row instead of leaving a hole beside it. */
  .roster > .p-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .p-card {
    border: 1px solid var(--rule);
    border-radius: var(--r-lg, 14px);
    background: var(--paper);
    padding: 26px 28px 28px;
    display: grid;
    grid-template-columns: 104px 1fr;
    column-gap: 24px;
    row-gap: 12px;
    align-items: start;
  }
  /* name + role + bio = 3 rows; the avatar sits alongside all of them */
  .p-card > .avatar { grid-column: 1; grid-row: 1 / span 3; align-self: start; }
  .p-card > h3,
  .p-card > .p-role,
  .p-card > p { grid-column: 2; }
  .p-card .avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--states-tint);
    color: var(--states-ink);
    border: 1px solid rgba(0, 176, 128, 0.28);
  }
  .p-card.cyan .avatar {
    background: var(--funders-tint);
    color: var(--funders-ink);
    border-color: rgba(0, 176, 240, 0.30);
  }
  /* Photo avatars: real headshots replace the monogram */
  .p-card .avatar.photo {
    width: 104px;
    height: 104px;
    padding: 0;
    overflow: hidden;
    background: var(--neutral-100);
    border-color: var(--rule);
  }
  .p-card.cyan .avatar.photo { border-color: rgba(0, 176, 240, 0.30); }
  .p-card .avatar.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* sources are pre-cropped square with the face centered */
    object-position: 50% 50%;
    display: block;
  }
  .p-card h3 {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.016em;
    color: var(--ink);
    margin: 0;
  }
  .p-card .p-role {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin: -10px 0 0;
  }
  .p-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-3);
    margin: 0;
    max-width: 58ch;
    text-wrap: pretty;
  }
  .p-card.stub {
    background: var(--paper-2);
    border-style: dashed;
  }
  .p-card.stub .avatar {
    background: var(--neutral-100);
    color: var(--ink-4);
    border-color: var(--rule);
  }
  /* Past fellows read quieter than the current roster */
  .p-card.past .avatar {
    background: var(--neutral-100);
    color: var(--ink-3);
    border-color: var(--rule);
  }
  /* Legacy count modifiers: the base roster is already two up and full width,
     so these no longer cap the grid. Kept so existing markup keeps working. */
  .roster.roster-1 { grid-template-columns: 1fr; max-width: 620px; }
  .roster.roster-2 { grid-template-columns: repeat(2, 1fr); }

  @media (max-width: 980px) {
    .lead-grid { grid-template-columns: 1fr; gap: 34px; }
    .lead-aside { gap: 30px; }
    .portrait { max-width: 340px; }
    .why-video { max-width: 560px; }
  }
  @media (max-width: 860px) {
    .roster,
    .roster.roster-1,
    .roster.roster-2 { grid-template-columns: 1fr; }
    .roster > .p-card:last-child:nth-child(odd) { grid-column: auto; }
  }
  @media (max-width: 560px) {
    .p-card {
      grid-template-columns: 1fr;
      row-gap: 14px;
      padding: 24px 22px 26px;
    }
    .p-card > .avatar { grid-row: auto; grid-column: 1; }
    .p-card > h3,
    .p-card > .p-role,
    .p-card > p { grid-column: 1; }
    .lead-feature { padding: 52px 0 48px; }
  }

  /* =====================================================
     STUDENT PAGE
     ===================================================== */

  /* Unconfirmed content — visibly marked so it can never ship as fact */
  .tbd {
    font-family: var(--mono);
    font-size: 0.86em;
    letter-spacing: 0.02em;
    color: var(--amsa-navy);
    background: var(--amsa-cyan-50);
    border: 1px dashed var(--amsa-cyan);
    border-radius: 3px;
    padding: 1px 7px;
    white-space: nowrap;
  }
  .btn.btn-tbd {
    background: var(--amsa-cyan-50);
    color: var(--amsa-navy);
    border: 1px dashed var(--amsa-cyan);
    cursor: default;
  }
  .btn.btn-tbd:hover { background: var(--amsa-cyan-50); transform: none; }
  .btn.btn-tbd .arrow { opacity: 0.5; }

  /* Opening lede — the page's argument, set larger than body */
  .stu-lede { max-width: 30ch; }
  .stu-lede p {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(21px, 2.3vw, 27px);
    line-height: 1.34;
    letter-spacing: -0.014em;
    color: var(--ink);
    margin: 0 0 20px;
    max-width: 30ch;
    text-wrap: pretty;
  }
  .stu-lede p.body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 58ch;
    letter-spacing: 0;
  }
  .stu-lede p.turn {
    font-weight: 900;
    color: var(--amsa-green-600);
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 0;
  }
  @media (max-width: 720px) { .stu-lede, .stu-lede p { max-width: none; } }

  /* Framing note — a boundary on the claim, not a pull quote */
  .stu-note {
    margin-top: 44px;
    max-width: 68ch;
    padding: 26px 30px;
    background: var(--paper-2);
    border-left: 3px solid var(--amsa-green);
    border-radius: 0 3px 3px 0;
  }
  .stu-note p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.62;
    color: var(--ink-2);
    margin: 0;
    text-wrap: pretty;
  }
  .stu-note p strong { color: var(--ink); font-weight: 800; }

  /* Tick list — curriculum, outcomes, expectations */
  .tick-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    max-width: 66ch;
  }
  .tick-list li {
    position: relative;
    padding: 0 0 0 26px;
    margin-bottom: 13px;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.58;
    color: var(--ink-2);
    text-wrap: pretty;
  }
  .tick-list li::before {
    content: "";
    position: absolute;
    left: 2px; top: 9px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--amsa-green);
  }
  .tick-list li:last-child { margin-bottom: 0; }
  .tick-list li b, .tick-list li strong { color: var(--ink); font-weight: 800; }

  /* Session banner — the one date that drives the page */
  .session-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin-top: 26px;
    padding: 16px 22px;
    background: var(--states-tint);
    border: 1px solid rgba(0, 176, 128, 0.28);
    border-radius: 3px;
    max-width: 620px;
  }
  .session-bar .k {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--states-ink);
  }
  .session-bar .v {
    font-family: var(--display);
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
  }

  /* Video module — Sohawm */
  .vid-module { margin-top: 40px; max-width: 720px; }
  .vid-label {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(22px, 2.2vw, 28px);
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0 0 16px;
  }
  .vid-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
    background: var(--amsa-navy-900);
  }
  .vid-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    opacity: 0.42;
    filter: saturate(0.85);
  }
  .vid-pending {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 20px;
  }
  .vid-pending .badge {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    border: 1px dashed rgba(255, 255, 255, 0.55);
    border-radius: 3px;
    padding: 7px 14px;
  }
  .vid-pending .hint {
    font-family: var(--sans);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 40ch;
  }
  .vid-attrib {
    margin: 14px 0 0;
    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--ink-3);
  }
  .vid-attrib b { color: var(--ink); font-weight: 800; }

  /* Page footnote */
  .stu-footnote {
    padding: 34px 0 44px;
    border-top: 1px solid var(--rule);
  }
  .stu-footnote p {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-4);
    margin: 0;
    max-width: 82ch;
  }
