/* ── Reset & base ───────────────────────────────────────────────────────── */

/* Brand defaults — overridden at the .meda-root level by app.jsx when Tweaks
   change the palette/font. These let any page using styles.css render
   correctly without a JS palette injection (e.g. the About page). */
:root {
  --bg: #FFFFFF;
  --ink: #000000;
  --primary: #118241;
  --secondary: #FBE542;
  --muted: rgba(22, 20, 15, 0.62);
  --hairline: rgba(22, 20, 15, 0.14);
  --surface: rgba(22, 20, 15, 0.04);
  --paper: #FAF7F0;
  --display-stack: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --display-weight: 700;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--primary); color: #fff; }

.meda-root {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
}

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .35 0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='.6'/></svg>");
  mix-blend-mode: multiply;
  opacity: .22;
}

/* ── Type ───────────────────────────────────────────────────────────────── */
.display, .h-display {
  font-family: var(--display-stack);
  font-weight: var(--display-weight);
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-wrap: balance;
  margin: 0;
}
.display em, .h-display em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
}
.eyebrow-light { color: #fff; border-color: rgba(255,255,255,.7); background: rgba(0,0,0,.25); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

/* ── Reveal animations ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-in { opacity: 1; transform: none; }

/* ── Layout helpers ─────────────────────────────────────────────────────── */
main { display: flex; flex-direction: column; position: relative; z-index: 2; }
.section-head {
  display: flex; align-items: center; gap: 16px;
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}
.section-head::after {
  content: ""; flex: 1; height: 1px; background: var(--hairline);
}
.section-no { color: var(--primary); font-weight: 700; }

/* ── Nav ────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 48px;
  background: color-mix(in oklab, var(--bg), transparent 20%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: padding .2s ease, border-color .2s ease;
}
.nav-scrolled {
  padding: 12px 48px;
  border-bottom-color: var(--hairline);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700;
  text-decoration: none;
}
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
@media (max-width: 720px) {
  .brand-logo { height: 36px; max-width: 180px; }
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  font-family: var(--display-stack);
  letter-spacing: -0.04em;
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; right: -2px; bottom: -2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--primary); border: 2px solid var(--bg);
}
.brand-mark.big { width: 76px; height: 76px; font-size: 42px; }
.brand-mark.big::after { width: 22px; height: 22px; border-width: 3px; }
.brand-name {
  font-family: var(--display-stack);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.nav-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 32px;
  font-size: 14px;
  font-weight: 500;
  justify-self: center;
}
.nav-links a { color: var(--ink); opacity: .8; transition: opacity .15s; position: relative; }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--primary);
}
/* Mobile hamburger + drawer */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; border: 0; background: transparent;
  cursor: pointer; margin-left: 4px;
}
.nav-burger span {
  display: block; height: 2px; width: 100%; background: var(--ink);
  border-radius: 2px; transition: transform .25s ease, opacity .2s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  position: fixed; inset: 64px 0 0; z-index: 90;
  background: var(--paper, #faf7f0);
  display: flex; flex-direction: column; gap: 2px;
  padding: 24px 22px calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  animation: navMobileIn .22s ease both;
}
@keyframes navMobileIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.nav-mobile-link {
  font-family: var(--display-stack); font-weight: 800; font-size: 30px;
  letter-spacing: -0.02em; color: var(--ink); text-decoration: none;
  padding: 14px 4px; border-bottom: 1px solid var(--hairline);
}
.nav-mobile-sub {
  display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 16px 4px 8px;
}
.nav-mobile-sub a {
  font: 600 14px/1 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  padding: 8px 0; min-height: 24px; display: inline-flex; align-items: center;
}
.nav-mobile-donate { margin-top: 22px; text-align: center; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--primary);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  list-style: none;
  margin: 0;
  padding: 14px 0 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .18s ease, visibility .15s;
  z-index: 50;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  inset: 14px 0 0;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  box-shadow: 0 22px 44px -20px rgba(0,0,0,.18);
  z-index: -1;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu li { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: .82;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  opacity: 1;
  background: color-mix(in oklab, var(--primary), transparent 94%);
  color: var(--primary);
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-cta {
  display: flex; gap: 8px;
  justify-self: end;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  cursor: pointer;
}
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover { background: var(--ink); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-onimg {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-onimg:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-onaccent {
  background: var(--bg); color: var(--primary);
  border-color: var(--bg);
  font-weight: 700;
}
.btn-onaccent:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn:disabled { opacity: .4; cursor: not-allowed; }
.btn-sm { padding: 8px 14px; font-size: 12.5px; font-weight: 700; }

/* ── BigStat — 42% / 2030 hook ──────────────────────────────────────────── */
.bigstat {
  padding: 112px 48px;
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bigstat::before {
  content: ""; position: absolute;
  top: -120px; right: -120px; width: 480px; height: 480px;
  border-radius: 50%; background: var(--secondary); opacity: .18;
}
.bigstat-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 14px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 999px;
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.bigstat-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); }
.bigstat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: end;
  position: relative; z-index: 1;
}
.bigstat-num {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: var(--secondary);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: flex-start;
}
.bigstat-sym {
  font-size: 0.5em;
  margin-top: 0.15em;
  margin-left: 0.04em;
  color: rgba(255,255,255,.85);
}
.bigstat-h {
  font-family: var(--display-stack);
  font-weight: var(--display-weight);
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.bigstat-by { color: rgba(255,255,255,.8); }
.bigstat-year { color: var(--secondary); font-variant-numeric: tabular-nums; }
.bigstat-tail {
  max-width: 56ch;
  margin: 56px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  position: relative; z-index: 1;
}

/* ── BigStat — carousel chrome ─────────────────────────────────────────── */
.bigstat:focus { outline: none; }
.bigstat:focus-visible {
  outline: 2px solid rgba(255,255,255,.55);
  outline-offset: -8px;
}
.bigstat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.bigstat-head .bigstat-eyebrow { margin-bottom: 0; }
.bigstat-count {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.16em;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,.55);
}
.bigstat-count-i { color: #fff; }
.bigstat-count-s { color: rgba(255,255,255,.35); }

.bigstat-stage {
  position: relative; z-index: 1;
  animation: bigstatStageIn .6s cubic-bezier(.22,.61,.36,1) both;
}
.bigstat-stage .bigstat-tail {
  animation: bigstatTailIn .6s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: .1s;
}
@keyframes bigstatStageIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bigstatTailIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bigstat-nav {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; z-index: 1;
}
.bigstat-balls {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.bigstat-ball {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 64px; height: 64px;
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s cubic-bezier(.22,.61,.36,1);
}
.bigstat-ball:hover { transform: scale(1.08); }
.bigstat-ball:active { transform: scale(.96); }
.bigstat-ball:focus { outline: none; }
.bigstat-ball:focus-visible { box-shadow: 0 0 0 3px rgba(255,255,255,.45); }
.bigstat-ball-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.bigstat-ball-emoji {
  position: relative;
  z-index: 1;
  font-size: 34px;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
  filter: grayscale(.7);
  opacity: .42;
  transition: filter .25s ease, opacity .25s ease;
  user-select: none;
}
.bigstat-ball:hover .bigstat-ball-emoji {
  filter: grayscale(.2);
  opacity: .8;
}
.bigstat-ball.is-on .bigstat-ball-emoji {
  filter: drop-shadow(0 0 12px rgba(255,255,255,.45));
  opacity: 1;
}
.bigstat-ball-progress {
  animation-name: bigstatBallProgress;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes bigstatBallProgress {
  from { stroke-dashoffset: 157.08; }
  to   { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bigstat-stage,
  .bigstat-stage .bigstat-tail { animation: none; }
  .bigstat-ball-progress { animation: none !important; stroke-dashoffset: 0 !important; }
}

/* ── Values strip ────────────────────────────────────────────────────────── */
.values {
  padding: 96px 48px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* ── Commitments ─────────────────────────────────────────────────────────── */
.commitments {
  padding: 112px 48px;
  border-top: 1px solid var(--hairline);
  background: var(--bg);
}
.commitments .section-head { margin-bottom: 28px; }
.commitments-h {
  font-family: var(--display-stack);
  font-weight: var(--display-weight);
  font-size: clamp(44px, 5.4vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 64px;
  max-width: 14ch;
  text-wrap: balance;
}
.commitments-h em {
  font-style: normal;
  color: var(--primary);
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
}
.commitment {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 40px 36px 44px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.commitment:nth-child(odd) { border-right: 1px solid var(--hairline); }
.commitment:nth-child(even) { padding-left: 36px; padding-right: 0; }
.commitment:nth-last-child(-n+2) { border-bottom: 0; }

.commitment-n {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: 44px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.commitment-text {
  display: flex; flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.commitment-title {
  font-family: var(--display-stack);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.commitment-sub {
  font: 500 16px/1.4 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  color: var(--muted);
  margin: 2px 0 8px;
  text-wrap: pretty;
}
.commitment-points {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.commitment-points li {
  font-size: 14.5px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--ink), transparent 25%);
  padding-left: 24px;
  position: relative;
  text-wrap: pretty;
}
.commitment-points li::before {
  content: ""; position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' fill='none' stroke='%23118241' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='2 6 6 10 14 2'/></svg>") no-repeat center / contain;
}

/* ── Commitments · Variant B — Editorial vertical list ─────────────────── */
.commitments--list .commitments-list {
  border-top: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
}
.commitment-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1.5px solid var(--ink);
  align-items: start;
}
.commitment-row-n {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.commitment-row-titles {
  display: flex; flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}
.commitment-row-title {
  font-family: var(--display-stack);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.commitment-row-sub {
  font: 500 18px/1.4 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}
.commitment-row-points {
  list-style: none; margin: 0; padding: 18px 0 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.commitment-row-points li {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in oklab, var(--ink), transparent 22%);
  padding-left: 26px;
  position: relative;
  text-wrap: pretty;
}
.commitment-row-points li::before {
  content: ""; position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' fill='none' stroke='%23118241' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='2 6 6 10 14 2'/></svg>") no-repeat center / contain;
}

/* ── Commitments · Variant C — Ink-dark statement ──────────────────────── */
.commitments--ink {
  background: var(--ink);
  color: var(--bg);
  border-top: 0;
}
.commitments--ink .section-head { color: rgba(255,255,255,.6); }
.commitments--ink .section-head::after { background: rgba(255,255,255,.18); }
.commitments--ink .section-no { color: var(--secondary); }
.commitments--ink .commitments-h { color: #fff; }
.commitments--ink .commitments-h em { color: var(--secondary); }
.commitments--ink .commitments-grid { border-top-color: var(--secondary); }
.commitments--ink .commitment {
  border-bottom-color: rgba(255,255,255,.14);
}
.commitments--ink .commitment:nth-child(odd) { border-right-color: rgba(255,255,255,.14); }
.commitments--ink .commitment-n { color: var(--secondary); }
.commitments--ink .commitment-title { color: #fff; }
.commitments--ink .commitment-sub { color: rgba(255,255,255,.65); }
.commitments--ink .commitment-points li { color: rgba(255,255,255,.78); }
.commitments--ink .commitment-points li::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' fill='none' stroke='%23FBE542' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='2 6 6 10 14 2'/></svg>"); }

/* ── Commitments teaser (homepage version) ─────────────────────────────── */
.commitments-teaser {
  padding: 80px 48px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
}
.commitments-teaser-head {
  margin-bottom: 48px;
  max-width: 720px;
}
.commitments-teaser-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.commitments-teaser-kicker::before {
  content: ""; display: inline-block;
  width: 28px; height: 1.5px; background: var(--primary);
}
.commitments-teaser-h {
  font-family: var(--display-stack);
  font-weight: var(--display-weight);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 20ch;
  text-wrap: balance;
}
.commitments-teaser-h em {
  font-style: normal;
  color: var(--primary);
}
.commitments-teaser-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
}
.commitments-teaser-list li {
  padding: 28px 24px 32px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.commitments-teaser-list li:last-child {
  border-right: 0;
  padding-right: 0;
}
.commitments-teaser-list li:first-child {
  padding-left: 0;
}
.commitments-teaser-n {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: 26px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
}
.commitments-teaser-title {
  font-family: var(--display-stack);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.commitments-teaser-sub {
  font: 500 14px/1.45 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}
.commitments-teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-family: var(--display-stack);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 2px solid var(--ink);
  width: fit-content;
  transition: gap .15s ease, color .15s ease, border-color .15s ease;
}
.commitments-teaser-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  gap: 18px;
}

@media (max-width: 1024px) {
  .commitments-teaser-list { grid-template-columns: repeat(2, 1fr); }
  .commitments-teaser-list li {
    padding: 26px 20px;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .commitments-teaser-list li:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }
  .commitments-teaser-list li:nth-child(odd) { padding-left: 0; }
  .commitments-teaser-list li:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 720px) {
  .commitments-teaser { padding: 64px 22px; }
  .commitments-teaser-list { grid-template-columns: 1fr; }
  .commitments-teaser-list li {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }
  .commitments-teaser-list li:last-child { border-bottom: 0; }
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.value { display: flex; flex-direction: column; gap: 16px; }
.value-n {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.value-title {
  font-family: var(--display-stack);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0;
}
.value-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 38ch;
}

/* ── Why founder creds ───────────────────────────────────────────────────── */
.why-creds {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.why-creds li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: baseline;
  font-size: 13.5px;
  line-height: 1.4;
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
}
.why-creds li span {
  font: 600 10.5px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Programs intro ──────────────────────────────────────────────────────── */
.programs-h { max-width: 16ch; margin-bottom: 56px; }

/* ── Impact mono-light ──────────────────────────────────────────────────── */
.mono-light {
  font: 500 11px/1.4 'JetBrains Mono', ui-monospace, monospace;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.04em;
}
.impact-foot { margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }

/* ── Active & upcoming projects ─────────────────────────────────────────── */
.projects-active {
  padding: 112px 48px;
  background: var(--bg);
}

/* Current project card */
.cp {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 40px 44px;
  background: var(--bg);
  display: flex; flex-direction: column;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.cp::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--primary);
}

.cp-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 36px;
  align-items: start;
  margin-bottom: 32px;
}
.cp-top-l { max-width: 56ch; }
.cp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: color-mix(in oklab, var(--primary), transparent 92%);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.cp-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  animation: cp-pulse 2s infinite;
}
@keyframes cp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.cp-h { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 14px; }
.cp-sum { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 60ch; }

.cp-partners {
  display: flex; align-items: center; gap: 18px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 16px 22px;
  flex-shrink: 0;
}
.cp-partners-l {
  font: 700 10px/1.2 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 7ch;
}
.cp-partners-divider { width: 1px; height: 32px; background: var(--hairline); }
.cp-partners-list { display: flex; align-items: center; gap: 18px; }
.cp-partner { display: flex; flex-direction: column; gap: 2px; text-align: center; }
.cp-partner-n {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cp-partner-s {
  font: 600 9px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.cp-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.cp-detail {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 20px 22px;
  background: var(--bg);
  transition: border-color .15s, transform .15s;
}
.cp-detail:hover { transform: translateY(-2px); }
.cp-detail-on { border-color: var(--primary); border-width: 1.5px; }
.cp-detail-h {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}
.cp-detail-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.cp-detail ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.cp-detail li {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.cp-detail li::before {
  content: ""; position: absolute;
  left: 0; top: 9px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--muted);
}

.cp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.cp-stat {
  background: var(--surface);
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
}
.cp-stat-n {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.cp-stat-l {
  font: 600 11px/1.2 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.cp-tracker {
  background: var(--ink);
  border-radius: 8px;
  padding: 24px 32px;
  display: flex; align-items: center; gap: 32px;
  color: var(--bg);
}
.cp-tracker-info { flex: 1; min-width: 0; }
.cp-tracker-amounts {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 12px; flex-wrap: wrap;
}
.cp-tracker-raised {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--secondary);
  font-variant-numeric: tabular-nums;
}
.cp-tracker-goal {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
}
.cp-bar-bg {
  height: 8px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  overflow: hidden;
}
.cp-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  transition: width 1.6s cubic-bezier(.22, 1, .36, 1) .2s;
}
.cp-tracker-pct {
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: 8px;
}
.cp-tracker-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.cp-donate { background: var(--primary); border-color: var(--primary); color: #fff; }
.cp-donate:hover { background: var(--secondary); color: var(--ink); border-color: var(--secondary); }
.cp-learn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.cp-learn:hover { color: #fff; }

/* Upcoming divider */
.lp-divider {
  display: flex; align-items: center; gap: 18px;
  margin: 24px 0 32px;
}
.lp-divider-line { flex: 1; height: 1px; background: var(--hairline); }
.lp-divider-label {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.lp-list { display: flex; flex-direction: column; gap: 22px; }

/* Locked project card */
.lp {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
  transition: border-color .2s;
}
.lp:hover { border-color: var(--muted); }
.lp::after {
  content: ""; position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    color-mix(in oklab, var(--ink), transparent 96%) 3px,
    color-mix(in oklab, var(--ink), transparent 96%) 4px
  );
}
.lp-inner { filter: grayscale(.55) opacity(.6); transition: filter .25s, opacity .25s; }
.lp:hover .lp-inner { filter: grayscale(.25) opacity(.78); }

.lp-lock {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 10;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  font: 700 10.5px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-lock span { white-space: nowrap; }
.lp-lock svg { color: rgba(255,255,255,.55); }

.lp-content {
  padding: 30px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  align-items: start;
}
.lp-main { min-width: 0; }
.lp-phase {
  font: 700 10.5px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.lp-title {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.lp-country {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.lp-flag { font-size: 13px; }
.lp-desc { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; max-width: 60ch; }
.lp-items { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-item {
  display: inline-flex; align-items: center;
  background: var(--surface);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}

.lp-tracker {
  background: var(--surface);
  border-radius: 8px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.lp-tracker-l {
  font: 700 10px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.lp-tracker-n {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.lp-bar-bg { height: 6px; background: var(--hairline); border-radius: 999px; overflow: hidden; }
.lp-bar-fill { height: 100%; width: 0; background: var(--hairline); }
.lp-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.lp-partners {
  position: relative;
  z-index: 6;
  padding: 14px 36px;
  border-top: 1px solid var(--hairline);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: color-mix(in oklab, var(--bg), var(--ink) 2%);
}
.lp-partners-l {
  font: 700 10px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.lp-partners-divider { width: 1px; height: 14px; background: var(--hairline); }
.lp-partners-list { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.lp-partner-n {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* ── Inaugural project ──────────────────────────────────────────────────── */
.project { background: var(--surface); }
.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: start;
}
.project-l { position: sticky; top: 96px; }
.project-r { display: flex; flex-direction: column; gap: 24px; }
.project-loc {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 12px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  align-self: flex-start;
}
.project-flag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--primary); color: #fff;
  border-radius: 4px;
  font-size: 11px;
}
.project-h { max-width: 22ch; font-size: clamp(32px, 4vw, 52px); }
.project-body { font-size: 17px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 52ch; }

.progress { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.progress-bar {
  position: relative;
  height: 12px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--primary);
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(.2,.7,.2,1);
  transition-delay: .2s;
}
.progress-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px;
}
.progress-meta strong { font-family: var(--display-stack); font-weight: 700; }
.progress-pct {
  font: 700 11.5px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary);
}

.pstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 24px;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
}
.pstat {
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--hairline);
  background: var(--bg);
}
.pstat:last-child { border-right: 0; }
.pstat-n {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.pstat-l {
  font: 600 10.5px/1.3 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.project-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

/* ── Donors strip ────────────────────────────────────────────────────────── */
.donors {
  padding: 64px 48px;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.donors-h {
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.donors-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.donors-list li {
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  padding-top: 16px;
  border-top: 2px solid var(--ink);
}
.donors-list strong {
  display: block;
  font-family: var(--display-stack);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
}

/* ── Newsletter (big, in footer brand) ──────────────────────────────────── */
.newsletter-big {
  margin-top: 8px;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.2);
  padding: 6px 6px 6px 18px;
}
.newsletter-big input { font-size: 15px; padding: 10px 0; }
.newsletter-big button { width: 40px; height: 40px; }

/* ── Placeholders ───────────────────────────────────────────────────────── */
.ph {
  position: relative;
  width: 100%;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--ink), transparent 90%) 0 2px,
      transparent 2px 14px),
    color-mix(in oklab, var(--ink), transparent 94%);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
}
.ph-label {
  position: absolute;
  left: 14px; bottom: 12px;
  font: 500 10.5px/1 'JetBrains Mono', ui-monospace, monospace;
  color: var(--muted);
  letter-spacing: 0.04em;
  background: color-mix(in oklab, var(--bg), transparent 10%);
  padding: 6px 9px;
  border-radius: 4px;
  border: 1px solid var(--hairline);
}

/* Cut-out portrait */
.cutout {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  display: flex; align-items: center; justify-content: center;
}
.cutout-blob {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.12));
}
.cutout-img {
  position: relative;
  width: 76%;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.4) 0 2px,
      transparent 2px 12px),
    color-mix(in oklab, var(--cutout-accent, var(--primary)), #000 30%);
  border-radius: 3px;
  margin-top: 6%;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.cutout-label {
  font: 500 10.5px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0,0,0,.5);
  padding: 5px 9px;
  border-radius: 3px;
  margin-bottom: 14px;
  text-align: center;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding: 64px 48px 96px; }
.hero .display { font-size: clamp(56px, 8.6vw, 136px); }

.hero-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
}
.hero-l { display: flex; flex-direction: column; gap: 28px; min-width: 0; }
.hero-l .eyebrow { align-self: flex-start; }
.hero-l .lede { max-width: 38ch; }
.hero-r { display: flex; flex-direction: column; gap: 14px; position: relative; }

/* Yellow accent shape behind hero image */
.hero-r::before {
  content: ""; position: absolute;
  top: -20px; right: -20px; bottom: 60px; left: 40px;
  background: var(--secondary);
  border-radius: 4px;
  z-index: 0;
}
.hero-r > * { position: relative; z-index: 1; }

.lede {
  font-size: 18.5px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 48ch;
  margin: 0;
}
.lede-onimg { color: rgba(255,255,255,.94); }

.hero-ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 4px;
}

.hero-meta {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.hero-meta > div { display: flex; flex-direction: column; gap: 6px; }
.meta-k {
  font: 600 10.5px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-v {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.meta-v:hover { color: var(--primary); }

.hero-caption {
  display: flex; gap: 14px;
  font: 500 12px/1.4 'JetBrains Mono', ui-monospace, monospace;
  color: var(--muted);
  padding: 4px 2px;
}
.hero-caption-no { color: var(--primary); font-weight: 700; }
.hero-caption-tx { flex: 1; }

/* Hero centered variant */
.hero-centered { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.hero-centered .display { font-size: clamp(60px, 9.2vw, 160px); }
.hero-centered .lede { max-width: 56ch; text-align: center; }
.hero-strip { width: 100%; margin-top: 16px; }
.hero-centered .hero-ctas { justify-content: center; }

/* Hero bleed variant */
.hero-bleed {
  position: relative;
  padding: 0;
  height: auto;
  min-height: 88vh;
  min-height: 640px;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-bleed .ph { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; border: 0; }
.hero-bleed .ph::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.6) 100%);
}
.hero-bleed-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 80%;
  z-index: 0;
  pointer-events: none;
  background: #0a0a0a;
  /* Soft blur masks compression artifacts + makes the white text pop */
  filter: blur(6px) brightness(0.7) saturate(1.1);
  transform: scale(1.06); /* compensate for blur edge halo */
}
.hero-bleed::after {
  /* Dark gradient overlay — keeps white type readable over any frame */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
}
.hero-bleed-overlay { position: relative; z-index: 2; }
@media (max-width: 720px) {
  .hero-bleed-video {
    object-fit: contain;
    object-position: center center;
    filter: blur(4px) brightness(0.7) saturate(1.1);
    transform: scale(1.05);
  }
  .hero-bleed { background: #0a0a0a; }
}
.hero-bleed::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-bleed-overlay {
  position: relative; z-index: 2;
  height: 100%;
  padding: 48px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 22px;
  max-width: 1100px;
}
.display-onimg { color: #fff; font-size: clamp(56px, 8.6vw, 132px); }
.display-onimg em { color: var(--secondary); }
@media (max-width: 720px) {
  .hero-bleed { height: auto; min-height: 100svh; min-height: 100vh; }
  .hero-bleed .display { font-size: clamp(28px, 8vw, 40px); }
  .hero-bleed-overlay { padding: 20px; padding-top: 36px; padding-bottom: 40px; gap: 14px; justify-content: flex-start; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-ctas .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin: 0 48px;
}
.stat {
  padding: 40px 28px;
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat-n {
  font-family: var(--display-stack);
  font-weight: var(--display-weight);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-l {
  font: 600 11.5px/1.2 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Sections shared ────────────────────────────────────────────────────── */
.why, .programs, .impact, .story, .quote, .involve {
  padding: 112px 48px;
  position: relative;
}
.h-display {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ── Why we exist (Founder) ─────────────────────────────────────────────── */
.why {
  background: var(--surface);
}
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: start;
}
.why-portrait-wrap { position: relative; }
.why-portrait-wrap::before {
  content: ""; position: absolute;
  /* Decorative accent: sits behind the upper portion of the photo only —
     never reaches the caption below. */
  top: -16px; right: -16px; left: 32px;
  height: 38%;
  background: var(--primary);
  border-radius: 4px;
  z-index: 0;
}
.why-portrait {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% 18%;
  border-radius: 4px;
  background: #eee;
}
.why-caption {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.why-caption-name { font-weight: 700; font-size: 16px; }
.why-caption-role { font: 500 11.5px/1.4 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.why-r { display: flex; flex-direction: column; gap: 24px; }
.why-kicker {
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}
.why-h { font-size: clamp(28px, 3.2vw, 42px); max-width: 22ch; line-height: 1.1; letter-spacing: -0.02em; }
.why-body { display: flex; flex-direction: column; gap: 14px; }
.why-body p { font-size: 17px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 56ch; }

.why-pullquote {
  position: relative;
  margin: 28px 0 8px;
  padding: 36px 36px 28px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 18px;
}
.pullquote-mark {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: 96px;
  line-height: 0.6;
  color: var(--secondary);
  align-self: flex-start;
  letter-spacing: -0.05em;
}
.why-pullquote blockquote {
  font-family: var(--display-stack);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 32ch;
  text-wrap: balance;
}
.why-pullquote blockquote em { font-style: normal; color: var(--secondary); }
.why-pullquote figcaption {
  font: 500 12px/1.4 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.08em;
  color: color-mix(in oklab, var(--bg), transparent 40%);
}

.why-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 15px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 2px solid var(--ink);
  width: fit-content;
  transition: gap .15s, color .15s, border-color .15s;
}
.why-cta:hover { gap: 18px; color: var(--primary); border-bottom-color: var(--primary); }
.why-cta-arrow { font-weight: 400; }

/* ── Programs ───────────────────────────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.program {
  display: flex; flex-direction: column; gap: 16px;
}
.program .ph { transition: transform .35s ease; }
.program:hover .ph { transform: translateY(-6px); }
.program-meta { display: flex; align-items: baseline; justify-content: space-between; margin-top: 4px; }
.tag {
  font: 600 10.5px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.tag-no {
  font: 500 10.5px/1 'JetBrains Mono', ui-monospace, monospace;
  color: var(--muted);
}
.program-title {
  font-family: var(--display-stack);
  font-weight: var(--display-weight);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.program-body { font-size: 14.5px; line-height: 1.5; color: var(--muted); margin: 0; }
.program-link {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 12.5px/1 'JetBrains Mono', ui-monospace, monospace;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 8px;
  width: fit-content;
  transition: border-color .15s, gap .15s, color .15s;
}
.program-link:hover { border-color: var(--primary); color: var(--primary); gap: 10px; }

/* ── Impact ─────────────────────────────────────────────────────────────── */
.impact {
  background: var(--ink);
  color: var(--bg);
}
.impact .section-head { color: rgba(255,255,255,.6); }
.impact .section-head::after { background: rgba(255,255,255,.18); }
.impact .section-no { color: var(--secondary); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.voice {
  display: flex; flex-direction: column; gap: 24px;
  padding: 8px;
}
.voice .cutout { margin: 0 auto; max-width: 320px; }
.voice-quote {
  font-family: var(--display-stack);
  font-weight: var(--display-weight);
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--secondary);
}
.voice-by { display: flex; flex-direction: column; gap: 4px; }
.voice-n { font-weight: 700; font-size: 15px; color: #fff; }
.voice-r { font: 500 11.5px/1.4 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.08em; color: rgba(255,255,255,.55); text-transform: uppercase; }

/* ── Story ──────────────────────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}
.story-r { display: flex; flex-direction: column; gap: 26px; padding-top: 32px; }
.story-eyebrow {
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.story-title {
  font-family: var(--display-stack);
  font-weight: var(--display-weight);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.story-body { font-size: 17px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 52ch; }
.story-byline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.byline-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary);
}
.byline-n { font-weight: 700; font-size: 14px; }
.byline-r { font: 500 11px/1.2 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; margin-top: 2px; }
.story-link {
  font: 600 13px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
}
.story-link:hover { color: var(--primary); }
.story-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--hairline);
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  transition: border-color .15s, background .15s, color .15s;
}
.pill:hover { border-color: var(--primary); color: var(--primary); }

/* ── Involve / Donate cart ──────────────────────────────────────────────── */
.involve {
  background: var(--surface);
}
.involve-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}
.involve-l { display: flex; flex-direction: column; gap: 28px; padding-top: 12px; }
.involve-h { max-width: 14ch; }
.involve-tail { font-size: 17px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 44ch; }
.mono { font: 500 14px/1 'JetBrains Mono', ui-monospace, monospace; color: var(--ink); padding: 2px 6px; background: var(--bg); border: 1px solid var(--hairline); border-radius: 4px; }

.other-ways { margin-top: 16px; border-top: 1px solid var(--hairline); padding-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.other-h { font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.other-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding .15s;
}
.other-row:hover { padding-left: 8px; }
.other-row > span:first-child { font-weight: 700; font-size: 15px; }
.other-d { font-size: 14px; color: var(--muted); }
.other-x { color: var(--primary); font-weight: 700; }

.cart {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 28px;
  display: flex; flex-direction: column;
  position: sticky; top: 100px;
  box-shadow: 0 24px 64px -32px rgba(0,0,0,.25);
}
.cart-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}
.cart-h {
  font-family: var(--display-stack);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.cart-fine {
  font: 500 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-list { display: flex; flex-direction: column; }
.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  transition: background .15s;
}
.cart-row-l { display: flex; flex-direction: column; gap: 4px; }
.cart-row-title { font-weight: 600; font-size: 15px; }
.cart-row-detail { font-size: 13px; color: var(--muted); }
.cart-row-r { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-row-price { font-family: var(--display-stack); font-weight: 700; font-size: 18px; }
.cart-row-on .cart-row-title { color: var(--primary); }

/* Custom amount row in homepage cart */
.cart-row--custom { border-top: 1px dashed color-mix(in oklab, var(--hairline), var(--ink) 20%); }
.cart-row-r--custom { flex-direction: row; align-items: center; gap: 10px; }
.cart-custom-input {
  display: inline-flex; align-items: baseline;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  padding: 6px 10px;
  gap: 2px;
  width: 90px;
}
.cart-custom-cur {
  font-family: var(--display-stack);
  font-weight: 700;
  font-size: 16px;
  color: var(--muted);
}
.cart-custom-input input {
  border: 0; outline: 0; background: transparent;
  font-family: var(--display-stack);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  width: 100%;
  min-width: 0;
}
.cart-custom-add {
  appearance: none;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font: 700 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
  white-space: nowrap;
}
.cart-custom-add:hover:not(:disabled) { background: var(--primary); transform: translateY(-2px); }
.cart-custom-add:disabled { opacity: .35; cursor: not-allowed; }

.qty {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
}
.qty button {
  width: 30px; height: 30px;
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .12s, color .12s;
}
.qty button:hover:not(:disabled) { background: var(--ink); color: var(--bg); }
.qty button:disabled { opacity: .3; cursor: not-allowed; }
.qty-n {
  min-width: 24px;
  text-align: center;
  font: 600 14px/1 'JetBrains Mono', ui-monospace, monospace;
}

.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0 18px;
  border-bottom: 2px solid var(--ink);
}
.cart-total-l { display: flex; flex-direction: column; gap: 4px; }
.cart-total-k { font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.cart-total-c { font-size: 13px; color: var(--muted); }
.cart-total-v {
  font-family: var(--display-stack);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.025em;
}
.cart-cta { margin-top: 18px; width: 100%; }
.cart-foot { margin-top: 14px; text-transform: none; letter-spacing: 0; font-family: inherit; font-size: 12px; }
.cart-see-all { color: var(--primary); border-bottom: 1px solid currentColor; white-space: nowrap; }

/* ── Contact modal ───────────────────────────────────────────────────── */
.contact-mask {
  position: fixed; inset: 0;
  z-index: 1000;
  background: color-mix(in oklab, var(--ink), transparent 30%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 32px 24px;
  animation: contactFadeIn .2s ease;
}
@keyframes contactFadeIn { from { opacity: 0; } to { opacity: 1; } }
.contact-dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 56px 56px 48px;
  box-shadow: 0 32px 80px -24px rgba(0,0,0,.4);
  animation: contactSlideUp .25s ease;
}
@keyframes contactSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.contact-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--bg);
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s ease, transform .15s ease;
}
.contact-close:hover { background: color-mix(in oklab, var(--ink), transparent 92%); transform: rotate(90deg); }

.contact-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.contact-kicker::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--primary);
}
.contact-h {
  font-family: var(--display-stack);
  font-weight: var(--display-weight, 800);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}
.contact-h em { font-style: normal; color: var(--primary); }
.contact-sub {
  font-size: 15px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--ink), transparent 28%);
  margin: 0;
  text-wrap: pretty;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-field { display: flex; flex-direction: column; gap: 8px; }
.contact-label {
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: baseline; gap: 8px;
}
.contact-req { color: var(--primary); }
.contact-opt {
  font: 400 10px/1 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}
.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  font: 400 15px/1.4 inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-family: inherit;
}
.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary), transparent 80%);
}
.contact-field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.contact-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.contact-actions {
  display: flex; gap: 12px; justify-content: flex-end;
  margin-top: 8px;
}
.contact-fine {
  font: 500 12.5px/1.5 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  color: var(--muted);
  margin-top: 4px;
}

.contact-success {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  padding: 24px 0 8px;
  text-align: center;
}
.contact-success-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 32px;
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.contact-mailto { color: var(--primary); }

@media (max-width: 720px) {
  .contact-dialog { padding: 48px 24px 32px; max-height: 95vh; }
  .contact-row { grid-template-columns: 1fr; gap: 14px; }
  .contact-actions { flex-direction: column-reverse; }
  .contact-actions .btn { width: 100%; }
}

/* Button-style "other-row" inside Involve (for note-form trigger) */
.other-row--btn {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

/* ── Featured in — press credit card ────────────────────────────────── */
.featured-in {
  padding: 56px 48px;
  border-top: 1px solid var(--hairline);
}
.featured-in-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.featured-in-kicker {
  font: 700 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.featured-in-kicker::before {
  content: ""; display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--primary);
}
.featured-in-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  background: var(--paper, #FAF7F0);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, background .15s ease;
}
.featured-in-card:hover {
  transform: translateY(-3px);
  background: var(--bg);
  box-shadow: 0 16px 32px -16px rgba(0,0,0,.18);
}
.featured-in-card-l {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.featured-in-card-play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .15s ease;
}
.featured-in-card:hover .featured-in-card-play { transform: scale(1.08); }
.featured-in-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  font: 600 10.5px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.featured-in-card-pub { color: var(--ink); }
.featured-in-card-sep { opacity: .5; }
.featured-in-card-body { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.featured-in-card-h {
  font-family: var(--display-stack);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  max-width: 38ch;
}
.featured-in-card-h em {
  font-style: normal;
  color: var(--primary);
}
.featured-in-card-p {
  font-size: 14.5px;
  line-height: 1.5;
  color: color-mix(in oklab, var(--ink), transparent 22%);
  margin: 0;
  max-width: 56ch;
}
.featured-in-card-x {
  font: 700 12px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  flex-shrink: 0;
  padding: 14px 18px;
  border-bottom: 2px solid var(--ink);
  transition: color .15s ease, border-color .15s ease, gap .15s ease;
}
.featured-in-card:hover .featured-in-card-x {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
@media (max-width: 720px) {
  .featured-in { padding: 32px 22px; }
  .featured-in-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    text-align: left;
  }
  .featured-in-card-l { flex-direction: row; align-items: center; gap: 14px; }
  .featured-in-card-meta { justify-content: flex-start; }
  .featured-in-card-x { padding: 12px 0; align-self: flex-start; }
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  padding: 96px 48px 36px;
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 72px;
  margin-bottom: 64px;
}
.footer-brand { display: flex; flex-direction: column; gap: 28px; }
.footer-brand-logo {
  width: 200px;
  max-width: 60%;
  height: auto;
  object-fit: contain;
  display: block;
}
.footer-display { font-size: clamp(36px, 4vw, 56px); line-height: 0.98; letter-spacing: -0.03em; color: #fff; }
.footer-display em { color: var(--secondary); font-style: normal; }

/* Donate band — full-width prompt above the columns */
.footer-donate-band {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  margin-bottom: 64px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: transform .15s ease, background .15s ease;
}
.footer-donate-band:hover {
  transform: translateY(-2px);
  background: color-mix(in oklab, var(--primary), #fff 10%);
}
.footer-donate-band-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  flex-shrink: 0;
}
.footer-donate-band-text {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1;
}
.footer-donate-band-k {
  font: 700 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.footer-donate-band-v {
  font-family: var(--display-stack);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.015em;
  color: #fff;
}
.footer-donate-band-x {
  font-family: var(--display-stack);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .footer-donate-band { padding: 18px 20px; gap: 14px; margin-bottom: 40px; }
  .footer-donate-band-icon { width: 40px; height: 40px; }
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-cols--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
@media (max-width: 900px) {
  .footer-cols--3 { grid-template-columns: 1fr; gap: 28px; }
}
.footer-cols > div { display: flex; flex-direction: column; gap: 12px; }
.footer-h {
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}
.footer-cols a { font-size: 14px; opacity: .82; color: #fff; }
.footer-cols a:hover { opacity: 1; color: var(--secondary); }

.newsletter {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 4px 4px 4px 14px;
}
.newsletter input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  color: #fff; font: inherit; font-size: 14px;
  padding: 6px 0;
}
.newsletter input::placeholder { color: rgba(255,255,255,.45); }
.newsletter button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary); color: #fff;
  border: 0; cursor: pointer;
  font-weight: 700;
}
.newsletter button:hover { background: var(--secondary); color: var(--ink); }
.newsletter-thanks {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.9);
}
.footer-fine { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ── Social links ───────────────────────────────────────────────────── */
.social { display: inline-flex; align-items: center; gap: 12px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.social-link:hover {
  background: var(--secondary);
  color: var(--ink);
  border-color: var(--secondary);
  transform: translateY(-2px);
}
.footer-follow {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-follow-label {
  font: 800 13px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secondary);
}
.footer-follow .social { gap: 14px; }
.footer-follow .social-link {
  width: 44px; height: 44px;
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.footer-follow .social-link:hover {
  background: var(--secondary);
  color: var(--ink);
  border-color: var(--secondary);
}

/* On-light variant for the contact modal success state */
.social--contact .social-link,
.social--strip .social-link {
  border-color: var(--hairline);
  color: var(--ink);
}
.social--contact .social-link:hover,
.social--strip .social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.social--strip { gap: 14px; }
.social--strip .social-link { width: 48px; height: 48px; }

/* ── Social strip (full-width band on homepage etc.) ─────────────────── */
.social-strip {
  padding: 40px 48px;
  background: var(--paper, #FAF7F0);
  border-top: 1px solid var(--hairline);
}
.social-strip-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  align-items: center;
  gap: 48px;
}
.social-strip-l { display: flex; flex-direction: column; gap: 10px; }
.social-strip-kicker {
  font: 700 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 12px;
}
.social-strip-kicker::before {
  content: ""; display: inline-block;
  width: 28px; height: 1.5px; background: var(--primary);
}
.social-strip-h {
  font-family: var(--display-stack);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  max-width: 50ch;
}
@media (max-width: 720px) {
  .social-strip { padding: 32px 22px; }
  .social-strip-inner { grid-template-columns: 1fr; gap: 22px; }
}
.contact-success-follow {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 18px 0 4px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  width: 100%;
  margin: 8px 0;
}
.contact-success-follow-label {
  font: 600 11px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  font: 500 12px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.5);
}
.footer-mini { display: flex; gap: 18px; }
.footer-mini a:hover { color: var(--secondary); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .impact-grid { grid-template-columns: 1fr; gap: 56px; max-width: 720px; margin: 0 auto; }
  .involve-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-cols--3 { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .cart { position: static; }
  .bigstat-row { grid-template-columns: 1fr; gap: 24px; }
  .bigstat-head { margin-bottom: 36px; }
  .bigstat-nav { margin-top: 52px; }
  .bigstat-balls { gap: 22px; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
  .commitments-grid { grid-template-columns: 1fr; border-top: 1.5px solid var(--ink); }
  .commitment { padding: 32px 0 !important; border-right: 0 !important; border-bottom: 1px solid var(--hairline); }
  .commitment:last-child { border-bottom: 0; }
  .commitment-row { grid-template-columns: 1fr; gap: 18px; padding: 32px 0; }
  .commitment-row-n { font-size: 64px; }
  .project-grid { grid-template-columns: 1fr; gap: 40px; }
  .project-l { position: static; }
  .pstats { grid-template-columns: repeat(2, 1fr); }
  .pstat:nth-child(2) { border-right: 0; }
  .pstat:nth-child(1), .pstat:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .donors-list { grid-template-columns: repeat(2, 1fr); }
  .cp-top { grid-template-columns: 1fr; gap: 20px; }
  .cp-partners { width: 100%; flex-wrap: wrap; justify-content: flex-start; }
  .cp-details { grid-template-columns: 1fr; }
  .cp-tracker { flex-direction: column; align-items: stretch; gap: 20px; padding: 22px 24px; }
  .cp-tracker-actions { justify-content: space-between; }
  .lp-content { grid-template-columns: 1fr; gap: 20px; }
  .lp-tracker { width: 100%; }
}
@media (max-width: 480px) {
  .h-display, h1, h2, .hero h1, .why-h, .founder-h {
    overflow-wrap: break-word; word-break: normal; hyphens: none;
  }
  .stat-number, .pstat-n, .oi-dd-title { overflow-wrap: break-word; }
}
@media (max-width: 720px) {
  .nav { grid-template-columns: 1fr auto; padding: 14px 22px; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary { display: none; }
  .nav-burger { display: inline-flex; }
  .hero { padding: 32px 22px 64px; }
  .hero-editorial { grid-template-columns: 1fr; gap: 36px; }
  .hero-r::before { display: none; }
  .stats { margin: 0 22px; grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .stat:last-child { border-bottom: 0; }
  .why, .programs, .impact, .story, .involve, .footer { padding-left: 22px; padding-right: 22px; padding-top: 72px; padding-bottom: 72px; }
  .quote { margin: 0 22px; padding: 56px 28px; }
  .programs-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .other-row { grid-template-columns: 1fr auto; gap: 4px; }
  .other-d { grid-column: 1 / -1; }
  .why-pullquote { padding: 28px 24px; }
  .bigstat, .values, .commitments, .project, .donors { padding-left: 22px; padding-right: 22px; padding-top: 72px; padding-bottom: 72px; }
  .pstats { grid-template-columns: 1fr; }
  .pstat { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .pstat:last-child { border-bottom: 0; }
  .donors-list { grid-template-columns: 1fr; }
  .projects-active { padding-left: 22px; padding-right: 22px; padding-top: 72px; padding-bottom: 72px; }
  .cp { padding: 28px 22px; }
  .cp-stats { grid-template-columns: 1fr; }
  .lp-content { padding: 26px 22px; }
  .lp-partners { padding: 14px 22px; }
  .lp-title { font-size: 19px; }
}

/* ── Fund what's next — hold-mode give moment ───────────────────────────── */
.fund-next {
  background: var(--primary);
  color: #fff;
  padding: 104px 48px;
  position: relative;
}
.fund-next-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 72px;
  align-items: center;
}
.fund-next-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 12px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 22px;
}
.fund-next-kicker .dot { background: var(--secondary); }
.fund-next-h {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.fund-next-h em {
  font-style: normal;
  color: var(--secondary);
}
.fund-next-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  max-width: 46ch;
  margin: 0 0 34px;
}
.fund-next-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.fund-next .btn-ghost {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.fund-next .btn-ghost:hover { background: rgba(255,255,255,.12); }
.fund-next-proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1.5px solid rgba(255,255,255,.22);
}
.fund-next-stat {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1.5px solid rgba(255,255,255,.22);
}
.fund-next-stat-v {
  font: var(--display-weight, 700) 52px/1 var(--display-stack, sans-serif);
  color: var(--secondary);
  min-width: 130px;
  letter-spacing: -0.02em;
}
.fund-next-stat-k {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255,255,255,.86);
}
@media (max-width: 860px) {
  .fund-next { padding: 72px 22px; }
  .fund-next-inner { grid-template-columns: 1fr; gap: 44px; }
  .fund-next-stat-v { font-size: 42px; min-width: 96px; }
}

/* ── Promoted basket (hold-mode primary give moment) ────────────────────── */
.involve--promoted {
  border-top: 3px solid var(--primary);
}
.involve--promoted .section-title { color: var(--primary); }
