/* ============================================================
   GIVE MORE TOMORROW — stylesheet
   Aesthetic: Editorial / refined civic — DM Serif Display +
   DM Sans. Dark navy hero, cream evidence section.
   ============================================================ */

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0e1c2f;
  --navy-2:  #162840;
  --navy-3:  #1e3a57;
  --teal:    #1a7f70;
  --teal-2:  #14b8a6;
  --gold:    #c8943a;
  --gold-2:  #e8b44a;
  --cream:   #f6f3ed;
  --cream-2: #ede9e0;
  --white:   #ffffff;
  --slate:   #4a5a6e;
  --slate-2: #8898a8;
  --red:     #c0392b;
  --green:   #1a7f4a;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --shadow-sm: 0 1px 4px rgba(14,28,47,.08);
  --shadow-md: 0 4px 20px rgba(14,28,47,.12);
  --shadow-lg: 0 12px 48px rgba(14,28,47,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Utility ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 780px; }

/* ── Reveal animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,28,47,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
}
.nav__logo-mark {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,.7);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: var(--r-md);
  font-weight: 600 !important;
}
.nav__cta:hover { background: var(--gold-2) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .25s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-2);
  padding: 12px 24px 20px;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-weight: 500;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: .01em;
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover { background: var(--gold-2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,148,58,.35); }

.btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
}
.btn--ghost:hover { background: rgba(255,255,255,.14); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--navy);
  font-size: 15px;
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,127,112,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,127,112,.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 80%);
}
.hero__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 80px;
  position: relative;
  z-index: 2;
}
.hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-2);
  border: 1px solid rgba(20,184,166,.3);
  background: rgba(20,184,166,.07);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -.02em;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.65);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero__sub strong { color: rgba(255,255,255,.9); font-weight: 600; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__numbers {
  position: relative;
  z-index: 2;
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: stretch;
}
.hero__num-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 32px;
}
.hero__num-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero__num-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  font-weight: 400;
}
.hero__num-label small { display: block; color: rgba(255,255,255,.35); font-size: 11px; }
.hero__num-divider {
  width: 1px;
  background: rgba(255,255,255,.07);
  align-self: stretch;
}

/* ── GTD BANNER ─────────────────────────────────────────────── */
.gtd-banner {
  background: var(--teal);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 32px;
  flex-wrap: wrap;
}
.gtd-banner__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal-2);
  background: rgba(0,0,0,.2);
  padding: 3px 10px;
  border-radius: 4px;
}
.gtd-banner__date {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: -.01em;
}
.gtd-banner__desc {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  font-style: italic;
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--light { background: var(--white); }
.section--dark  { background: var(--navy); }
.section--cream { background: var(--cream); }

.section__header {
  margin-bottom: 60px;
  max-width: 700px;
}
.section__header.centered { text-align: center; max-width: none; }
.section__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section__kicker--light { color: var(--teal-2); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--navy);
}
.section__title--light { color: var(--white); }
.section__sub {
  margin-top: 16px;
  font-size: 18px;
  color: var(--slate);
  line-height: 1.65;
  font-weight: 300;
  max-width: 680px;
}
.section__sub--light { color: rgba(255,255,255,.6); }
.section__sub em { font-style: italic; color: var(--teal-2); }

/* ── PROBLEM ────────────────────────────────────────────────── */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem__lead {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}
.problem__text p { color: var(--slate); margin-bottom: 20px; }
.problem__insight {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 15px;
  color: var(--navy) !important;
  margin-top: 24px !important;
}
.research-cards { display: flex; gap: 16px; margin: 28px 0; flex-wrap: wrap; }
.research-card {
  flex: 1;
  min-width: 180px;
  background: var(--navy);
  color: var(--white);
  padding: 20px;
  border-radius: var(--r-md);
}
.research-card__stat {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.research-card__desc {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  margin-bottom: 10px;
}
.research-card__source {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--teal-2);
  text-transform: uppercase;
}

/* Saboteurs */
.saboteurs {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--cream-2);
}
.saboteurs__title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 28px;
}
.saboteur {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream-2);
}
.saboteur:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.saboteur__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
}
.saboteur strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--navy); }
.saboteur p { font-size: 13px; color: var(--slate); margin-bottom: 6px; line-height: 1.5; }
.saboteur cite { font-style: normal; font-family: var(--font-mono); font-size: 10px; color: var(--teal); letter-spacing: .04em; }

/* ── TIMELINE ───────────────────────────────────────────────── */
.timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.timeline__item {
  flex: 1;
  min-width: 220px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md);
  padding: 28px;
}
.timeline__connector {
  display: flex;
  align-items: center;
  padding: 0 4px;
  color: var(--teal);
  font-size: 20px;
  flex-shrink: 0;
  width: 24px;
  justify-content: center;
  position: relative;
}
.timeline__connector::after {
  content: '→';
  color: rgba(20,184,166,.5);
  font-size: 20px;
}
.timeline__marker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--gold);
  background: rgba(200,148,58,.12);
  border: 1px solid rgba(200,148,58,.2);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.3;
}
.timeline__content h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.timeline__content p { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 14px; }
.timeline__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--teal-2);
  background: rgba(20,184,166,.08);
  border: 1px solid rgba(20,184,166,.15);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}
.timeline__content--accent { border-color: rgba(200,148,58,.25) !important; }
.timeline__content--accent h4 { color: var(--gold); }
.timeline__tag--accent { color: var(--gold); background: rgba(200,148,58,.08); border-color: rgba(200,148,58,.2); }

/* Branches */
.branches { margin-top: 0; }
.branches__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 6px;
}
.branches__sub { font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: 28px; font-style: italic; }
.branches__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.branch {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.branch:hover { border-color: rgba(20,184,166,.3); transform: translateY(-2px); }
.branch--featured {
  border-color: rgba(200,148,58,.3) !important;
  background: rgba(200,148,58,.05);
}
.branch__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 500;
  color: var(--teal-2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.branch--featured .branch__label { color: var(--gold); }
.branch h4 { font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 10px; }
.branch p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 14px; }
.branch__meta { font-family: var(--font-mono); font-size: 11px; color: var(--teal-2); letter-spacing: .04em; }
.branch--featured .branch__meta { color: var(--gold); }

/* ── EVIDENCE ───────────────────────────────────────────────── */
.evidence__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

/* rho box */
.evidence__rho {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.evidence__rho-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.evidence__greek {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--navy);
  opacity: .08;
  position: relative;
  top: -8px;
  flex-shrink: 0;
}
.evidence__rho-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
}
.evidence__rho-header p { font-size: 13px; color: var(--slate); line-height: 1.5; }
.evidence__rho-central {
  font-size: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--r-sm);
  margin-bottom: 14px;
}
.evidence__rho-central strong { color: var(--gold); font-size: 20px; }
.evidence__rho-method {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.6;
  font-style: italic;
}

/* rho table */
.rho-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-bottom: 16px;
}
.rho-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-2);
  padding: 6px 10px;
  border-bottom: 2px solid var(--cream-2);
}
.rho-table td {
  padding: 10px;
  border-bottom: 1px solid var(--cream-2);
  vertical-align: top;
  color: var(--slate);
  line-height: 1.45;
}
.rho-table td small { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--slate-2); margin-top: 2px; }
.rho-table tr:last-child td { border-bottom: none; }
.rho-table tr:hover td { background: var(--cream); }
.bias {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.bias--up      { background: rgba(200,148,58,.12); color: #9a6f20; }
.bias--neutral { background: rgba(74,90,110,.08);  color: var(--slate); }
.bias--down    { background: rgba(26,127,112,.1);  color: #0f5c52; }

.evidence__rho-note {
  font-size: 12px;
  color: var(--slate-2);
  line-height: 1.6;
  border-left: 2px solid var(--teal);
  padding-left: 12px;
}
.evidence__rho-note strong { color: var(--navy); }

/* right column */
.evidence__right { display: flex; flex-direction: column; gap: 24px; }

/* Monte Carlo */
.monte-carlo {
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 28px;
  color: var(--white);
}
.monte-carlo h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 6px; }
.monte-carlo > p { font-size: 12px; color: rgba(255,255,255,.45); font-family: var(--font-mono); margin-bottom: 20px; }
.mc-bars { display: flex; flex-direction: column; gap: 12px; }
.mc-bar { display: flex; align-items: center; gap: 12px; }
.mc-bar__label { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.4); width: 28px; }
.mc-bar__track { flex: 1; height: 10px; background: rgba(255,255,255,.08); border-radius: 5px; overflow: hidden; }
.mc-bar__fill  { height: 100%; background: var(--teal-2); border-radius: 5px; transition: width 1s ease .5s; }
.mc-bar__val   { font-family: var(--font-mono); font-size: 12px; color: var(--teal-2); width: 52px; text-align: right; }
.mc-note { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 16px; line-height: 1.5; font-style: italic; }

/* Precedents */
.precedents {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: var(--r-md);
  padding: 24px;
}
.precedents h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 16px; }
.precedent { display: flex; gap: 16px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--cream-2); align-items: flex-start; }
.precedent:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.precedent__country { font-size: 20px; flex-shrink: 0; line-height: 1; }
.precedent strong { display: block; font-size: 13px; color: var(--navy); margin-bottom: 2px; }
.precedent p { font-size: 12px; color: var(--slate); line-height: 1.4; }

/* Confidence */
.confidence {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 24px;
  border: 1px solid var(--cream-2);
}
.confidence h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 16px; }
.conf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12.5px;
  color: var(--slate);
}
.conf-item span:nth-child(2) { flex: 1; }
.conf-bar {
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}
.conf-bar--high    { background: var(--teal); }
.conf-bar--med     { background: var(--gold); }
.conf-bar--low     { background: var(--slate-2); }
.conf-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate-2);
  white-space: nowrap;
  flex-shrink: 0;
}

/* RCT Callout */
.rct-callout {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.rct-callout__text h3 { font-family: var(--font-display); font-size: 28px; color: var(--white); margin-bottom: 12px; }
.rct-callout__text p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 24px; }
.rct-callout__arms { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rct-arm {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  padding: 16px;
}
.rct-arm--featured {
  border-color: rgba(200,148,58,.3);
  background: rgba(200,148,58,.06);
}
.rct-arm__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--teal-2);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.rct-arm--featured .rct-arm__label { color: var(--gold); }
.rct-arm p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }
.rct-arm--featured p { color: rgba(255,255,255,.7); }

/* ── PARTNERS / ACTIONS ─────────────────────────────────────── */
.actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
  border: 1px solid #e8e4dc;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.action {
  display: flex;
  gap: 28px;
  padding: 32px 36px;
  border-bottom: 1px solid #e8e4dc;
  align-items: flex-start;
  background: var(--white);
  transition: background .2s;
}
.action:last-child { border-bottom: none; }
.action:hover { background: var(--cream); }
.action__num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--cream-2);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  transition: color .2s;
}
.action:hover .action__num { color: var(--gold); }
.action__body h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.action__body p  { font-size: 14px; color: var(--slate); line-height: 1.6; }
.action__deadline {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,127,112,.08);
  border: 1px solid rgba(26,127,112,.15);
  padding: 3px 10px;
  border-radius: 4px;
}
.action__funders {
  margin-top: 8px;
  font-size: 12px;
  color: var(--slate-2);
  font-style: italic;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.partner-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.partner-card__icon {
  width: 36px; height: 36px;
  color: var(--teal);
  margin-bottom: 18px;
}
.partner-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.partner-card p  { font-size: 13.5px; color: var(--slate); line-height: 1.65; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid var(--cream-2);
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  transition: color .2s;
}
.faq__q:hover { color: var(--teal); }
.faq__q svg { flex-shrink: 0; color: var(--slate-2); transition: transform .3s; }
.faq__q.open svg { transform: rotate(180deg); color: var(--teal); }
.faq__a {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.7;
  padding: 0 0 22px;
  display: none;
}
.faq__a.open { display: block; }

/* ── CTA ────────────────────────────────────────────────────── */
.cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(26,127,112,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 70%, rgba(200,148,58,.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 24px;
  text-align: center;
  position: relative;
}
.cta__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,148,58,.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.cta__text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.cta__text p {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 300;
}
.cta__text p strong { color: rgba(255,255,255,.85); font-weight: 600; }
.cta__tag {
  margin-top: 18px !important;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3) !important;
  margin-bottom: 0 !important;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #090f18;
  padding: 48px 0;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 600;
}
.footer__tagline {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
}
.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer__links a:hover { color: var(--teal-2); }
.footer__legal {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.2);
  line-height: 1.6;
}

/* ── URGENCY BRIDGE ─────────────────────────────────────────── */
.section--urgency {
  background: var(--navy);
  padding: 96px 0;
}
.urgency__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.urgency__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.urgency__text .section__kicker { color: var(--teal-2); margin-bottom: 14px; display: block; }
.urgency__text p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 16px;
}
.urgency__text p strong { color: rgba(255,255,255,.9); }
.urgency__callout {
  background: rgba(200,148,58,.08);
  border: 1px solid rgba(200,148,58,.25);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 20px;
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-top: 8px;
}
.urgency__callout strong { color: var(--gold); }

/* Law card */
.urgency__law {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
  padding: 24px;
  margin-bottom: 20px;
}
.urgency__law-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,148,58,.1);
  border: 1px solid rgba(200,148,58,.2);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
}
.urgency__law-body { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.urgency__law-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--r-sm);
}
.urgency__law-item > span {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}
.urgency__law-item--good { background: rgba(26,127,74,.12); }
.urgency__law-item--good > span { background: rgba(26,127,74,.2); color: #4ade80; }
.urgency__law-item--bad  { background: rgba(192,57,43,.1); }
.urgency__law-item--bad  > span { background: rgba(192,57,43,.2); color: #f87171; }
.urgency__law-item--net  { background: rgba(200,148,58,.08); border: 1px solid rgba(200,148,58,.15); }
.urgency__law-item--net  > span { background: rgba(200,148,58,.15); color: var(--gold); }
.urgency__law-item strong { display: block; font-size: 13px; color: var(--white); margin-bottom: 2px; }
.urgency__law-item p { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.4; margin: 0; }
.urgency__law-source {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}

/* Window timeline */
.urgency__window {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
  overflow: hidden;
}
.urgency__window-item {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
}
.urgency__window-item--now {
  background: rgba(200,148,58,.08);
  border-left: 1px solid rgba(200,148,58,.2);
  border-right: 1px solid rgba(200,148,58,.2);
}
.urgency__window-year {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--slate-2);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.urgency__window-item--now .urgency__window-year { color: var(--gold); }
.urgency__window-item p { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.5; margin: 0; }
.urgency__window-item--now p { color: rgba(255,255,255,.65); }
.urgency__window-connector {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.07);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .urgency__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .urgency__window { flex-direction: column; }
  .urgency__window-connector { width: 100%; height: 1px; }
  .urgency__window-item--now { border-left: none; border-right: none; border-top: 1px solid rgba(200,148,58,.2); border-bottom: 1px solid rgba(200,148,58,.2); }
}

/* ── URGENCY BRIDGE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .problem__grid    { grid-template-columns: 1fr; gap: 40px; }
  .evidence__grid   { grid-template-columns: 1fr; }
  .rct-callout      { grid-template-columns: 1fr; gap: 32px; }
  .branches__grid   { grid-template-columns: 1fr 1fr; }
  .partners__grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section          { padding: 64px 0; }
  .hero__numbers    { flex-direction: column; }
  .hero__num-divider{ width: 100%; height: 1px; }
  .nav__links       { display: none; }
  .nav__burger      { display: flex; }
  .timeline         { flex-direction: column; }
  .timeline__connector { display: none; }
  .branches__grid   { grid-template-columns: 1fr; }
  .partners__grid   { grid-template-columns: 1fr; }
  .rct-callout__arms{ grid-template-columns: 1fr; }
  .action           { padding: 24px 20px; gap: 16px; }
  .action__num      { font-size: 36px; width: 44px; }
}
