/* =========================================================
   PASS Worldwide — Design System (v2)
   Palette: Red accent + warm neutrals, nonprofit/public-interest tone
   Type: Source Serif 4 (display, restrained) + Inter (body)
   ========================================================= */

:root {
  /* Color — PASS Worldwide red identity */
  --red-800: #7B1418;
  --red-700: #9A1B1F;
  --red-600: #C0272D;
  --red-500: #D83740;   /* primary */
  --red-400: #E85D63;
  --red-200: #F6B7BA;
  --red-100: #FBDADC;
  --red-50:  #FCECEC;

  --ink-900: #14100E;
  --ink-800: #24201D;
  --ink-700: #3A342F;
  --ink-600: #4B463F;
  --ink-500: #6E675E;
  --ink-400: #948D82;
  --ink-300: #C9C3B8;
  --ink-200: #E4DFD4;
  --ink-100: #EFEBE0;

  --paper:   #FBF8F1;   /* warm off-white */
  --paper-2: #F6F1E6;
  --paper-3: #F0E9D8;
  --white:   #FFFFFF;

  --focus: #1E6FD9;

  /* Type — display sized more restrained */
  --f-display: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* More restrained scale — nonprofit credibility over keynote drama */
  --fs-hero: clamp(2.25rem, 3.4vw + 1rem, 3.75rem);
  --fs-h1: clamp(1.75rem, 2.2vw + 0.5rem, 2.75rem);
  --fs-h2: clamp(1.4rem, 1.1vw + 0.8rem, 1.95rem);
  --fs-h3: 1.2rem;
  --fs-lead: clamp(1.0625rem, 0.3vw + 1rem, 1.2rem);
  --fs-body: 1.0375rem;
  --fs-small: 0.9125rem;
  --fs-eyebrow: 0.75rem;

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4.5rem;
  --s-9: 6rem;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;

  --container: 1180px;
  --container-narrow: 880px;
  --shadow-sm: 0 1px 2px rgba(20,16,14,0.05), 0 1px 1px rgba(20,16,14,0.03);
  --shadow: 0 10px 30px -12px rgba(20,16,14,0.12), 0 2px 6px rgba(20,16,14,0.05);
  --shadow-lg: 0 24px 60px -24px rgba(20,16,14,0.25), 0 4px 12px rgba(20,16,14,0.06);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink-800);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--red-700); text-decoration: none; }
a:hover { color: var(--red-800); text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink-900);
  line-height: 1.15;
  margin: 0 0 var(--s-4);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-family: var(--f-sans); font-weight: 600; letter-spacing: -0.005em; }
h4 { font-size: 1rem; font-family: var(--f-sans); font-weight: 600; letter-spacing: 0; }
p  { margin: 0 0 var(--s-4); }
p.lead { font-size: var(--fs-lead); color: var(--ink-600); line-height: 1.55; max-width: 62ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-700);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--red-500);
  display: inline-block;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-5); }
@media (min-width: 768px) { .container, .container-narrow { padding: 0 var(--s-6); } }

section { padding: var(--s-9) 0; position: relative; }
@media (max-width: 640px) { section { padding: var(--s-8) 0; } }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--ink-900);
  color: var(--paper-2);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.topbar .inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-4); padding: 8px 0; flex-wrap: wrap;
}
.topbar a { color: var(--red-200); font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar .badge {
  display: inline-flex; gap: 6px; align-items: center;
  font-weight: 600; color: var(--red-200);
}
.topbar .badge::before {
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-400);
  box-shadow: 0 0 0 3px rgba(232,93,99,0.18);
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--ink-200);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: center; gap: var(--s-3);
  color: var(--ink-900); font-weight: 700; letter-spacing: -0.01em;
  font-size: 1.0625rem;
}
.brand:hover { text-decoration: none; }
.brand-mark { width: 34px; height: 34px; }
.brand-word { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.02em; }
.brand-sub { color: var(--ink-500); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: var(--s-6);
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink-800);
  font-size: 0.92rem; font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--red-700); text-decoration: none; }
.nav-links a.active { color: var(--red-700); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red-500); border-radius: 2px;
}

.nav-cta { display: inline-flex; gap: var(--s-3); align-items: center; }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--ink-200);
  background: var(--white);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; content: ""; width: 18px; height: 2px; background: var(--ink-800);
  margin: 0 auto; position: relative; transition: transform .2s ease;
}
.menu-toggle span::before { position: absolute; top: -6px; left: 0; }
.menu-toggle span::after  { position: absolute; top:  6px; left: 0; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--ink-200);
    padding: var(--s-4) var(--s-5); gap: var(--s-4);
  }
  .nav-cta .btn-ghost { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 11px 18px;
  font-weight: 600; font-size: 0.92rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--red-600); color: var(--white); box-shadow: 0 1px 2px rgba(192,39,45,0.3); }
.btn-primary:hover { background: var(--red-700); color: var(--white); box-shadow: 0 6px 16px -4px rgba(192,39,45,0.4); }
.btn-ghost { background: transparent; color: var(--ink-800); border-color: var(--ink-300); }
.btn-ghost:hover { background: var(--white); border-color: var(--ink-800); color: var(--ink-900); }
.btn-dark { background: var(--ink-900); color: var(--white); }
.btn-dark:hover { background: var(--ink-800); color: var(--white); }
.btn-white { background: #fff; color: var(--red-700); }
.btn-white:hover { background: var(--paper); color: var(--red-800); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }
.btn-sm { padding: 8px 14px; font-size: 0.85rem; }
.btn-arrow::after {
  content: "→"; display: inline-block; transition: transform .2s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- HERO — more foundation, less keynote ---------- */
.hero {
  padding: var(--s-8) 0 var(--s-9);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(216,55,64,0.06), transparent 40%),
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}
.hero::before {
  /* subtle dot pattern */
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(122,25,30,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, transparent, black 40%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 40%, black 80%, transparent);
  pointer-events: none;
  opacity: 0.55;
}
.hero > .container { position: relative; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-7); }
}
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
}
.hero h1 em {
  font-style: italic; color: var(--red-700);
  font-weight: 600;
}
.hero .lead { margin-top: var(--s-5); max-width: 56ch; }
.hero-ctas { display: flex; gap: var(--s-3); margin-top: var(--s-6); flex-wrap: wrap; }

/* Hero visual — info-rich, not one giant card */
.hero-panel {
  position: relative;
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid; gap: var(--s-4);
}
.hero-panel-title {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: var(--s-3);
  border-bottom: 1px dashed var(--ink-200);
}
.hero-panel-title .label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red-700);
}
.hero-panel-title .meta {
  font-size: 0.78rem; color: var(--ink-500);
}
.hero-stat-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--s-4);
}
.hero-stat-row .num {
  font-family: var(--f-display); font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink-900); font-size: 2.2rem; line-height: 1;
}
.hero-stat-row .num em { color: var(--red-700); font-style: normal; }
.hero-stat-row .lbl {
  text-align: right; color: var(--ink-600); font-size: 0.85rem;
  max-width: 18ch;
}
.hero-bar {
  height: 6px; background: var(--ink-100); border-radius: 999px; overflow: hidden;
}
.hero-bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--red-500), var(--red-700)); border-radius: 999px; }

.hero-panel-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--s-3); border-top: 1px dashed var(--ink-200);
  font-size: 0.82rem; color: var(--ink-500);
}
.hero-panel-foot a { color: var(--red-700); font-weight: 600; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-5); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  font-size: 0.8rem;
  color: var(--ink-700);
  font-weight: 500;
}
.chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red-500);
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  background: var(--paper-2);
}
.trust-strip .inner {
  display: flex; gap: var(--s-6); align-items: center; flex-wrap: wrap;
  padding: var(--s-5) 0;
}
.trust-strip .label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-500);
}
.trust-strip .items {
  display: flex; gap: var(--s-6); flex-wrap: wrap; align-items: center;
  color: var(--ink-600); font-size: 0.9rem; font-weight: 500;
}
.trust-strip .items span {
  display: inline-flex; align-items: center; gap: 8px;
}
.trust-strip .items svg { color: var(--red-600); flex-shrink: 0; }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  padding: var(--s-6);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--ink-300); }
.card h3 { margin-top: 0; }
.card .icon-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red-50); color: var(--red-700);
  margin-bottom: var(--s-4);
}
.card .icon-circle svg { width: 24px; height: 24px; }

.card .num-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red-50); color: var(--red-700);
  font-family: var(--f-display); font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--s-4);
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  padding: var(--s-6);
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pillar-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red-500), var(--red-700));
}
.pillar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--red-200); }
.pillar-card .pillar-head {
  display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4);
}
.pillar-card .pillar-head .icon-circle { margin: 0; }
.pillar-card .pillar-head .step {
  font-family: var(--f-display); font-size: 0.95rem;
  color: var(--red-700); font-weight: 700; letter-spacing: 0.02em;
}
.pillar-card ul { list-style: none; padding: 0; margin: var(--s-4) 0 0; display: grid; gap: 8px; }
.pillar-card ul li {
  padding-left: 22px; position: relative; color: var(--ink-700); font-size: 0.93rem;
}
.pillar-card ul li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 2px; background: var(--red-500);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card .feature-body { padding: var(--s-6); }
.feature-card .feature-head {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--red-50), var(--paper-2));
  border-bottom: 1px solid var(--ink-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--red-700);
}

/* Section heads */
.section-head { max-width: 740px; margin-bottom: var(--s-7); }
.section-head h2 { margin: 0 0 var(--s-4); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center p.lead { margin-left: auto; margin-right: auto; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center;
}
.split.align-start { align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--s-6); } }

/* ---------- IMPACT / STATISTICS SECTION ---------- */
.impact-band {
  background:
    linear-gradient(180deg, var(--paper-2), var(--paper));
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  position: relative; overflow: hidden;
}
.impact-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(192,39,45,0.04) 0 1px, transparent 1px 14px);
  pointer-events: none;
}
.impact-band > .container { position: relative; }
.impact-note {
  display: flex; gap: var(--s-3); align-items: flex-start;
  padding: var(--s-4) var(--s-5);
  background: var(--red-50);
  border: 1px solid var(--red-100);
  border-left: 3px solid var(--red-500);
  border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--ink-700);
  margin-bottom: var(--s-6);
}
.impact-note svg { flex-shrink: 0; color: var(--red-700); margin-top: 2px; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stat-grid { grid-template-columns: 1fr; } }

.stat-card-v2 {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-4);
  min-height: 230px;
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}
.stat-card-v2:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stat-card-v2 .stat-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
}
.stat-card-v2 .stat-head .src {
  background: var(--paper-2); color: var(--red-700);
  padding: 3px 8px; border-radius: 999px; font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.stat-card-v2 .stat-num {
  font-family: var(--f-display); font-weight: 700; color: var(--ink-900);
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem); line-height: 1;
  letter-spacing: -0.02em;
}
.stat-card-v2 .stat-num em { color: var(--red-700); font-style: normal; }
.stat-card-v2 .stat-text {
  color: var(--ink-700); font-size: 0.95rem; line-height: 1.5;
  margin: 0;
}
.stat-card-v2 .stat-source {
  margin-top: auto; font-size: 0.8rem;
}
.stat-card-v2 .stat-source a { color: var(--ink-500); font-weight: 500; }
.stat-card-v2 .stat-source a:hover { color: var(--red-700); }

/* Progress/proportion bars inside stats */
.prop-bar {
  height: 10px; background: var(--ink-100);
  border-radius: 999px; overflow: hidden;
  position: relative;
}
.prop-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--red-500), var(--red-700));
  border-radius: 999px;
}
.prop-bar.light > span {
  background: linear-gradient(90deg, var(--red-200), var(--red-400));
}
.prop-row {
  display: grid; grid-template-columns: 70px 1fr 50px;
  gap: var(--s-3); align-items: center;
  font-size: 0.85rem;
}
.prop-row .prop-label { color: var(--ink-600); font-weight: 500; }
.prop-row .prop-val {
  font-family: var(--f-display); font-weight: 700; font-size: 1rem;
  color: var(--ink-900); text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Radial proportion */
.radial {
  --p: 50;
  --size: 96px;
  width: var(--size); height: var(--size);
  border-radius: 50%;
  background:
    conic-gradient(var(--red-600) calc(var(--p) * 1%), var(--ink-100) 0);
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.radial::after {
  content: ""; position: absolute; inset: 8px;
  background: var(--white); border-radius: 50%;
}
.radial .val {
  position: relative;
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-900);
}
.radial-row {
  display: flex; gap: var(--s-4); align-items: center;
}
.radial-row .radial-text {
  font-size: 0.92rem; color: var(--ink-700); line-height: 1.5;
}

/* People/clock icon stat */
.icon-count {
  display: flex; gap: var(--s-4); align-items: center;
}
.icon-count .mega-icon {
  flex-shrink: 0; width: 64px; height: 64px;
  border-radius: 16px; background: var(--red-50);
  display: grid; place-items: center; color: var(--red-700);
}
.icon-count .mega-icon svg { width: 34px; height: 34px; }
.icon-count .text-block .big {
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.8rem; color: var(--ink-900); line-height: 1;
  letter-spacing: -0.02em;
}
.icon-count .text-block .sub {
  font-size: 0.88rem; color: var(--ink-600); margin-top: 6px;
}

/* KPI strip (for PASS Worldwide-reported numbers) */
.kpi-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  padding: var(--s-7) var(--s-6);
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
}
@media (max-width: 800px) { .kpi-strip { grid-template-columns: repeat(2, 1fr); } }
.kpi { position: relative; }
.kpi + .kpi::before {
  content: ""; position: absolute; left: calc(-1 * var(--s-6) / 2); top: 10%; bottom: 10%;
  width: 1px; background: var(--ink-200);
}
@media (max-width: 800px) { .kpi + .kpi::before { display: none; } }
.kpi .num { font-family: var(--f-display); font-weight: 700; font-size: 2.25rem; color: var(--ink-900); letter-spacing: -0.02em; line-height: 1; }
.kpi .num em { color: var(--red-700); font-style: normal; }
.kpi .lbl { color: var(--ink-600); margin-top: 8px; font-size: 0.9rem; line-height: 1.4; }
.kpi .tag { display: inline-block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-400); margin-top: 6px; font-weight: 600; }

/* Programs list item */
.program {
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: var(--s-4); align-items: flex-start;
  padding: var(--s-5) var(--s-5);
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.program:hover { border-color: var(--red-200); box-shadow: var(--shadow); }
.program .icon-circle { margin: 0; }
.program h3 { margin: 0 0 4px; font-size: 1.05rem; }
.program p { margin: 0; color: var(--ink-600); font-size: 0.92rem; }
.program .go {
  color: var(--red-700); font-weight: 600; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 4px;
  align-self: center;
}

/* Advisor cards */
.advisor {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--s-5);
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
}
.advisor .avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-50), var(--paper-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--red-700); font-family: var(--f-display); font-size: 1.75rem; font-weight: 700;
  border: 1px solid var(--ink-200);
  overflow: hidden;
  flex-shrink: 0;
}
.advisor .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.advisor h3 { margin: 0 0 4px; font-size: 1.1rem; font-family: var(--f-display); font-weight: 700; letter-spacing: -0.01em; }
.advisor .affil { color: var(--red-700); font-weight: 600; font-size: 0.88rem; margin-bottom: var(--s-3); }
@media (max-width: 600px) {
  .advisor { grid-template-columns: 1fr; text-align: left; }
  .advisor .avatar { width: 72px; height: 72px; font-size: 1.4rem; }
}

/* Bands */
.band-dark {
  background: var(--ink-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4 { color: var(--white); }
.band-dark p.lead { color: var(--ink-300); }
.band-dark .eyebrow { color: var(--red-400); }
.band-dark .eyebrow::before { background: var(--red-400); }
.band-dark::before {
  content: ""; position: absolute; inset: auto -8% -30% auto;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,55,64,0.20), transparent 60%);
  pointer-events: none;
}
.band-dark::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.band-dark > .container { position: relative; z-index: 1; }

.band-red {
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  color: var(--white);
  position: relative; overflow: hidden;
}
.band-red h1, .band-red h2, .band-red h3 { color: var(--white); }
.band-red p.lead { color: rgba(255,255,255,0.9); }
.band-red::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.band-red > .container { position: relative; }

.band-paper {
  background: var(--paper-2);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}

/* Section divider */
.divider-rule {
  display: flex; align-items: center; gap: var(--s-4);
  color: var(--red-700);
  font-family: var(--f-display); font-style: italic;
  margin: 0 0 var(--s-6);
}
.divider-rule::before, .divider-rule::after {
  content: ""; flex: 1; height: 1px; background: var(--ink-200);
}
.divider-rule span { font-size: 1rem; }

/* ---------- Storytelling steps (horizontal) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  counter-reset: step;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step-item {
  position: relative;
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
}
.step-item .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--red-700); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: 0.95rem;
  margin-bottom: var(--s-4);
}
.step-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step-item p { font-size: 0.93rem; color: var(--ink-600); margin: 0; }

/* ---------- Donor CTA card ---------- */
.donor-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-7);
  align-items: stretch;
  background: linear-gradient(135deg, #fff 0%, var(--paper-2) 100%);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.donor-card::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,55,64,0.12), transparent 60%);
  pointer-events: none;
}
@media (max-width: 800px) { .donor-card { grid-template-columns: 1fr; padding: var(--s-6); } }
.donor-card .ticks { list-style: none; padding: 0; margin: var(--s-4) 0 0; display: grid; gap: 10px; }
.donor-card .ticks li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.95rem; color: var(--ink-700);
}
.donor-card .ticks li svg { flex-shrink: 0; color: var(--red-600); margin-top: 3px; }

.donate-tiers {
  display: grid; gap: var(--s-3);
  align-content: start;
}
.donate-tier {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border: 1px solid var(--ink-200);
  border-radius: var(--radius-sm);
  padding: var(--s-4); gap: var(--s-3);
}
.donate-tier .amount {
  font-family: var(--f-display); font-weight: 700;
  color: var(--ink-900); font-size: 1.2rem;
}
.donate-tier .desc { color: var(--ink-600); font-size: 0.88rem; }
.donate-tier.primary { border-color: var(--red-500); background: var(--red-50); }
.donate-tier.primary .amount { color: var(--red-800); }

/* ---------- Newsletter signup inline ---------- */
.signup-inline {
  display: flex; gap: var(--s-3); max-width: 520px; margin-top: var(--s-5);
}
.signup-inline input {
  flex: 1; padding: 12px 14px;
  border: 1px solid var(--ink-300);
  border-radius: 999px;
  font-family: inherit; font-size: 0.95rem;
  background: #fff; color: var(--ink-900);
}
.signup-inline input:focus { outline: none; border-color: var(--red-500); box-shadow: 0 0 0 3px rgba(216,55,64,0.15); }
@media (max-width: 500px) { .signup-inline { flex-direction: column; } }

/* Page hero (interior) */
.page-hero {
  padding: var(--s-8) 0 var(--s-7);
  border-bottom: 1px solid var(--ink-200);
  background:
    radial-gradient(circle at 85% 10%, rgba(216,55,64,0.06), transparent 40%),
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(122,25,30,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, transparent, black 40%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 40%, black 80%, transparent);
  pointer-events: none;
  opacity: 0.5;
}
.page-hero > .container { position: relative; }
.page-hero h1 {
  font-size: var(--fs-h1);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.page-hero .lead { margin-top: var(--s-4); }

.breadcrumb {
  font-size: 0.82rem; color: var(--ink-500); margin-bottom: var(--s-4);
}
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--red-700); }

/* Prose */
.prose { max-width: 72ch; }
.prose p { color: var(--ink-700); }
.prose h2 { margin-top: var(--s-7); }
.prose h3 { margin-top: var(--s-6); }
.prose ul { padding-left: 1.2rem; color: var(--ink-700); }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  margin: var(--s-6) 0; padding: var(--s-5) var(--s-6);
  border-left: 3px solid var(--red-500);
  background: var(--paper-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--f-display); font-style: italic; font-size: 1.15rem; line-height: 1.5;
  color: var(--ink-800);
}

/* Newsletter cards */
.newsletter-card {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: var(--s-6);
  align-items: center;
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}
.newsletter-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.newsletter-card .cover {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--red-600), var(--red-800));
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: var(--s-5);
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--f-display);
  position: relative; overflow: hidden;
}
.newsletter-card .cover::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.newsletter-card .cover .label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--f-sans); font-weight: 700; opacity: 0.9; }
.newsletter-card .cover .title { font-size: 1.7rem; line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; }
.newsletter-card h3 { margin: 0 0 6px; font-size: 1.15rem; font-family: var(--f-display); font-weight: 700; }
.newsletter-card .meta { color: var(--ink-500); font-size: 0.88rem; margin-bottom: var(--s-3); }
@media (max-width: 760px) {
  .newsletter-card { grid-template-columns: 1fr; }
  .newsletter-card .cover { aspect-ratio: 16/9; }
}

/* Form */
.form {
  display: grid; gap: var(--s-4);
}
.form label { font-weight: 600; font-size: 0.92rem; color: var(--ink-800); display: block; margin-bottom: 6px; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--ink-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit; font-size: 0.98rem;
  color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(216,55,64,0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 560px) { .form .row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: var(--s-9) 0 var(--s-5);
  margin-top: var(--s-9);
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.site-footer > .container { position: relative; }
.site-footer h4 {
  color: var(--white); font-family: var(--f-sans); font-weight: 700;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: var(--s-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--s-7);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer a { color: var(--ink-300); }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer .brand { color: var(--white); }
.site-footer .brand-word { color: var(--white); }
.site-footer .brand-sub { color: var(--ink-400); }
.site-footer p { color: var(--ink-400); font-size: 0.92rem; }
.footer-badges {
  display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-4);
}
.footer-badges .badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--ink-300);
  padding: 6px 10px; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}
.footer-badges .badge svg { color: var(--red-400); }

.footer-bottom {
  margin-top: var(--s-7); padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink-400); font-size: 0.82rem; flex-wrap: wrap; gap: var(--s-3);
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-7); }
.muted { color: var(--ink-500); }
.rule { height: 1px; background: var(--ink-200); border: 0; margin: var(--s-7) 0; }

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