/* ---------- design tokens (City of Atlanta palette: royal blue + gold + red) ---------- */
:root {
  --ink:       #163E85;   /* royal blue — Atlanta flag */
  --ink-soft:  #2354A8;
  --ink-deep:  #0E2E68;   /* deeper royal for hero base */
  --cream:     #FAF7F2;
  --cream-2:   #F2EDE3;
  --paper:     #FFFFFF;
  --gold:      #FFC42E;   /* bright Atlanta flag gold */
  --gold-dark: #D9A41A;
  --red:       #D7301F;   /* Atlanta flag red */
  --red-dark:  #B02519;
  --muted:     #6B7280;
  --border:    #E5E1D8;
  --shadow-sm: 0 1px 2px rgba(20, 33, 61, 0.04), 0 2px 8px rgba(20, 33, 61, 0.04);
  --shadow-md: 0 4px 12px rgba(20, 33, 61, 0.06), 0 12px 32px rgba(20, 33, 61, 0.08);
  --radius:    14px;
  --radius-sm: 8px;
  --maxw:      1180px;
  --space:     clamp(1rem, 2vw, 1.5rem);
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
section { padding: clamp(3.5rem, 7vw, 6rem) 0; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand-logo {
  width: auto;
  height: 84px;
  display: block;
  flex-shrink: 0;
  filter:
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.30))
    drop-shadow(0 8px 26px rgba(255, 196, 46, 0.22))
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.50));
  transition: transform 0.2s ease, filter 0.2s ease;
}
.brand-logo:hover {
  transform: scale(1.05);
  filter:
    drop-shadow(0 0 32px rgba(255, 255, 255, 0.45))
    drop-shadow(0 10px 32px rgba(255, 196, 46, 0.35))
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.50));
}
.nav .brand-logo    { height: 128px; }
.footer .brand-logo { height: 224px; margin-bottom: 1rem; }

@media (max-width: 768px) {
  .nav .brand-logo    { height: 92px; }
  .footer .brand-logo { height: 160px; }
}
@media (max-width: 480px) {
  .nav .brand-logo    { height: 72px; }
  .footer .brand-logo { height: 124px; }
}

/* Nav grows to fit the larger logo */
.nav-inner { padding: 0.4rem 0; }

/* Legacy gold dot — kept for "Next session" pulse usage */
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 196, 46, 0.18);
}
.nav-links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a { color: var(--ink-soft); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover { background: var(--ink-soft); transform: translateY(-1px); }

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(255, 196, 46, 0.35);
}
.btn-primary:hover { background: var(--gold-dark); color: var(--cream); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 247, 242, 0.35);
}
.btn-secondary:hover { background: rgba(250, 247, 242, 0.08); border-color: rgba(250, 247, 242, 0.6); }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--paper); border-color: var(--ink); }
.btn-arrow::after { content: "→"; transition: transform 0.15s ease; }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- liquid glass button ---------- */
.btn-liquid {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 2.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  color: var(--cream);
  background: transparent;
  border: none;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.btn-liquid.is-accent { color: var(--gold); }
.btn-liquid > * {
  position: relative;
  z-index: 2;
}
.btn-liquid::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  box-shadow:
    0 0 8px rgba(0, 0, 0, 0.05),
    0 2px 6px rgba(0, 0, 0, 0.10),
    inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.90),
    inset -3px -3px 0.5px -3.5px rgba(255, 255, 255, 0.85),
    inset 1px 1px 1px -0.5px rgba(255, 255, 255, 0.60),
    inset -1px -1px 1px -0.5px rgba(255, 255, 255, 0.60),
    inset 0 0 6px 6px rgba(255, 255, 255, 0.10),
    inset 0 0 2px 2px rgba(255, 255, 255, 0.06),
    0 0 14px rgba(255, 255, 255, 0.18);
  transition: box-shadow 0.3s ease;
}
.btn-liquid::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  backdrop-filter: url("#liquid-glass");
  -webkit-backdrop-filter: url("#liquid-glass");
}
.btn-liquid:hover {
  transform: scale(1.04);
}
.btn-liquid:hover::before {
  box-shadow:
    0 0 12px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.12),
    inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 1.00),
    inset -3px -3px 0.5px -3.5px rgba(255, 255, 255, 0.95),
    inset 1px 1px 1px -0.5px rgba(255, 255, 255, 0.70),
    inset -1px -1px 1px -0.5px rgba(255, 255, 255, 0.70),
    inset 0 0 8px 8px rgba(255, 255, 255, 0.14),
    inset 0 0 2px 2px rgba(255, 255, 255, 0.08),
    0 0 20px rgba(255, 196, 46, 0.25);
}
.btn-liquid:active {
  transform: scale(0.98);
}
.btn-liquid:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.btn-liquid .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn-liquid:hover .arrow {
  transform: translateX(3px);
}

/* ---------- hero — Atlanta royal blue with vector backdrop ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #1A4A9E 0%, #0E2E68 100%);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3.5rem, 7vw, 5rem);
}
.hero::before { content: none; }
.hero-inner {
  position: relative;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-inner .eyebrow,
.hero-inner h1,
.hero-inner p.lede,
.hero-inner .next-session { text-align: center; }
.hero-inner h1 { width: 100%; }
.hero-inner p.lede { max-width: 640px; }
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ---------- hero vector backdrop (SVG) ---------- */
.hero-vectors {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero-vectors-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  /* Slight scale-up so drift animation never reveals the SVG edge */
  transform: scale(1.06);
  transform-origin: center center;
}

/* Layer drift — slow, opposing directions for parallax depth */
.hv-contours { animation: hv-drift-slow 90s ease-in-out infinite alternate; }
.hv-routes   { animation: hv-drift-fast 70s ease-in-out infinite alternate; }
.hv-spot     { animation: hv-drift-spot 120s ease-in-out infinite alternate; }

@keyframes hv-drift-slow {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(28px, -10px, 0); }
}
@keyframes hv-drift-fast {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-32px, 8px, 0); }
}
@keyframes hv-drift-spot {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-40px, 20px, 0); }
}

/* Per-route drawing animation (very subtle dashed flow) */
.hv-route-1 {
  stroke-dasharray: 6 18;
  animation: hv-flow-fwd 14s linear infinite;
}
.hv-route-2 {
  stroke-dasharray: 5 16;
  animation: hv-flow-rev 18s linear infinite;
}
@keyframes hv-flow-fwd {
  to { stroke-dashoffset: -240; }
}
@keyframes hv-flow-rev {
  to { stroke-dashoffset: 240; }
}

/* Station node pulse — staggered, gentle */
.hv-node circle:first-child {
  transform-origin: center;
  transform-box: fill-box;
}
.hv-node-1 circle:first-child { animation: hv-node-pulse 5.5s ease-in-out infinite; }
.hv-node-2 circle:first-child { animation: hv-node-pulse 4.0s ease-in-out infinite 0.8s; }
.hv-node-3 circle:first-child { animation: hv-node-pulse 6.2s ease-in-out infinite 1.6s; }

@keyframes hv-node-pulse {
  0%, 100% { opacity: 0.7; transform: scale(0.92); }
  50%      { opacity: 1;   transform: scale(1.12); }
}

/* Reduced-motion respect */
@media (prefers-reduced-motion: reduce) {
  .hv-contours, .hv-routes, .hv-spot,
  .hv-route-1, .hv-route-2,
  .hv-node-1 circle:first-child, .hv-node-2 circle:first-child, .hv-node-3 circle:first-child {
    animation: none !important;
  }
}

/* Make sure carousel and content sit above the vectors */
.hero-carousel-wrap { z-index: 2; }

/* ---------- hero carousel (3D rotating station cards) ---------- */
.hero-carousel-wrap {
  position: relative;
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  margin-top: clamp(-0.5rem, -1vw, -1rem);
  margin-bottom: clamp(1rem, 2.5vw, 2rem);
  perspective: 1400px;
  pointer-events: none;
}
.hero-carousel-wrap.is-interactive { pointer-events: auto; }

.carousel-stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128px;
  height: 168px;
  margin-left: -64px;
  margin-top: -84px;
  border-radius: 18px;
  overflow: hidden;
  background: #0b162e;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(250, 247, 242, 0.06);
  transform-style: preserve-3d;
  transition: filter 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
  cursor: pointer;
}
.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(11, 22, 46, 0.7) 100%);
  pointer-events: none;
}
.carousel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250, 247, 242, 0.18) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 2;
}
.carousel-card:hover { filter: brightness(1.15); }
.carousel-card:hover::before { opacity: 1; }
.carousel-card:hover { box-shadow:
  0 30px 80px rgba(0, 0, 0, 0.55),
  0 10px 24px rgba(255, 196, 46, 0.25),
  inset 0 0 0 1px rgba(255, 196, 46, 0.4);
}

.carousel-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  z-index: 3;
  pointer-events: none;
}

@media (min-width: 640px) {
  .carousel-card { width: 168px; height: 220px; margin-left: -84px; margin-top: -110px; border-radius: 22px; }
  .carousel-label { font-size: 0.82rem; left: 14px; bottom: 14px; }
}

/* Fallback for prefers-reduced-motion: distribute cards in a static fan */
@media (prefers-reduced-motion: reduce) {
  .carousel-card { transition: none; }
}
.hero h1 { color: var(--cream); margin-top: 0.75rem; }
.hero p.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(250, 247, 242, 0.78);
  max-width: 640px;
  margin-bottom: 2.25rem;
  text-wrap: pretty;
  -webkit-text-wrap: pretty;
  text-align: center;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.next-session {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.12);
  font-size: 0.95rem;
}
.next-session strong { color: var(--gold); font-weight: 600; }
.pulse {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2);   opacity: 0; }
}

/* ---------- ticker / scroll cue ---------- */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- sections ---------- */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
}
.section-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 2.5rem;
}

/* ---------- the mission (formerly .moment) — royal blue ---------- */
.moment {
  background: #1A4A9E;
  color: var(--cream);
  border-top: 1px solid rgba(255, 196, 46, 0.12);
  border-bottom: 1px solid rgba(255, 196, 46, 0.12);
}
.moment h2 { color: var(--cream); }
.moment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.moment-text p { font-size: 1.05rem; color: rgba(250, 247, 242, 0.80); }
.moment-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.moment-card h4 { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.5rem; }
.moment-card p { color: rgba(250, 247, 242, 0.80); }
.moment-card p:last-child { margin-bottom: 0; }
.moment-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.stat {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-num { font-size: 1.8rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.stat-lbl { font-size: 0.82rem; color: rgba(250, 247, 242, 0.60); margin-top: 0.35rem; display: block; }

@media (max-width: 760px) {
  .moment-grid { grid-template-columns: 1fr; }
}

/* ---------- approach — royal blue (slightly deeper) ---------- */
.approach {
  background: #0E2E68;
  color: var(--cream);
  border-top: 1px solid rgba(255, 196, 46, 0.12);
}
.approach h2 { color: var(--cream); }
.approach .section-lede { color: rgba(250, 247, 242, 0.78); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  color: var(--cream);
}
.card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 196, 46, 0.40);
}
.card-num {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  display: block;
}
.card h3 { margin-bottom: 0.6rem; color: var(--cream); }
.card p { color: rgba(250, 247, 242, 0.78); margin: 0; }

@media (max-width: 880px) { .cards { grid-template-columns: 1fr; } }

/* ---------- stations — royal blue ---------- */
.stations {
  background: #1A4A9E;
  color: var(--cream);
  border-top: 1px solid rgba(255, 196, 46, 0.12);
}
.stations h2 { color: var(--cream); }
.stations .section-lede { color: rgba(250, 247, 242, 0.78); }
.station-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
.station {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  color: var(--cream);
}
.station:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}
.station-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
}
.station[data-line="red"] .station-dot,
.station[data-line="gold"] .station-dot { background: var(--gold); }
.station.pilot {
  border-color: rgba(255, 196, 46, 0.55);
  background: linear-gradient(135deg, rgba(255, 196, 46, 0.18) 0%, rgba(255, 196, 46, 0.06) 100%);
}
.station-name { font-weight: 600; font-size: 0.98rem; color: var(--cream); }
.station-meta { font-size: 0.78rem; color: rgba(250, 247, 242, 0.60); }
.station-tag {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- evidence / "what we saw" — royal blue band with photo grid ---------- */
.evidence {
  background: #0E2E68;
  color: var(--cream);
  border-top: 1px solid rgba(255, 196, 46, 0.12);
}
.evidence h2 { color: var(--cream); }
.evidence .section-lede { color: rgba(250, 247, 242, 0.78); max-width: 760px; }

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 1100px) { .evidence-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .evidence-grid { grid-template-columns: 1fr; gap: 1rem; } }

.evidence-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 196, 46, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.evidence-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 196, 46, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.evidence-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  background: #0b162e;
}
@media (max-width: 640px) { .evidence-card img { height: 260px; } }

.evidence-card figcaption {
  padding: 1rem 1.15rem 1.15rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.82);
  border-top: 1px solid rgba(255, 196, 46, 0.12);
  flex: 1;
}

.evidence-foot {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 196, 46, 0.18);
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.78);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.evidence-foot a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.35rem;
  white-space: nowrap;
}
.evidence-foot a:hover { color: #FFE082; }

/* ---------- impact / goals ---------- */
.goals { background: var(--ink); color: var(--cream); }
.goals h2 { color: var(--cream); }
.goals .section-eyebrow { color: var(--gold); }
.goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.goal {
  padding: 1.75rem 1.5rem;
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.08);
  border-radius: var(--radius);
}
.goal-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.goal-lbl {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.75);
  margin-top: 0.6rem;
}

@media (max-width: 880px) { .goals-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- cta band — royal blue ---------- */
.cta-band {
  background: #0E2E68;
  color: var(--cream);
  border-top: 1px solid rgba(255, 196, 46, 0.12);
}
.cta-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cta-card h2 { margin-bottom: 0.75rem; color: var(--cream); }
.cta-card p { color: rgba(250, 247, 242, 0.78); margin-bottom: 0; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 720px) {
  .cta-card { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.7);
  padding: 3.5rem 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer h4 {
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer a { color: rgba(250, 247, 242, 0.7); display: block; padding: 0.25rem 0; transition: color 0.15s ease; }
.footer a:hover { color: var(--gold); }
.footer-brand p { color: rgba(250, 247, 242, 0.6); max-width: 320px; font-size: 0.92rem; }
.footer-bot {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- secondary page (Get Involved) ---------- */
.page-hero {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(255, 196, 46, 0.18), transparent 60%),
    linear-gradient(180deg, #1A4A9E 0%, #0E2E68 100%);
  color: var(--cream);
  padding: clamp(5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.page-hero h1 { color: var(--cream); }
.page-hero p { color: rgba(250, 247, 242, 0.78); max-width: 640px; font-size: 1.1rem; }

.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 5;
}
.path-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.path-card .icon {
  width: 44px; height: 44px;
  background: var(--cream-2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.path-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.path-card.featured h3 { color: var(--cream); }
.path-card.featured .icon { background: rgba(250, 247, 242, 0.1); color: var(--gold); }
.path-card.featured p { color: rgba(250, 247, 242, 0.75); }
.path-card p { color: var(--ink-soft); margin-bottom: 1.5rem; flex: 1; }

@media (max-width: 880px) {
  .paths { grid-template-columns: 1fr; margin-top: clamp(1.5rem, 4vw, 2.5rem); }
}

/* ---------- detail sections ---------- */
.detail { background: var(--paper); }
.detail + .detail { background: var(--cream); border-top: 1px solid var(--border); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.detail-list {
  list-style: none;
  padding: 0; margin: 0;
}
.detail-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list .dl-num {
  flex-shrink: 0;
  width: 28px;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}
.detail-list .dl-content strong { font-weight: 600; color: var(--ink); }
.detail-list .dl-content { color: var(--ink-soft); }
@media (max-width: 760px) {
  .detail-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.faq-q::before {
  content: "?";
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.faq-a { color: var(--ink-soft); padding-left: 38px; margin: 0; }

/* ---------- sponsor tiers ---------- */
.tiers { background: var(--paper); }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.tier {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.tier:hover { border-color: var(--gold); transform: translateY(-2px); }
.tier-name { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem; }
.tier-band { font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.tier-list { list-style: none; padding: 0; margin: 0; }
.tier-list li {
  padding: 0.4rem 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.5rem;
}
.tier-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}
@media (max-width: 880px) { .tier-grid { grid-template-columns: 1fr; } }

/* ---------- inline note ---------- */
.note {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  padding: 0.75rem 1rem;
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  margin-top: 1.5rem;
}

/* ---------- email action popover (email-actions.js) ---------- */
.ea-pop {
  position: absolute;
  z-index: 9999;
  min-width: 260px;
  padding: 6px;
  border-radius: 14px;
  background: #0E2E68;
  border: 1px solid rgba(255, 196, 46, 0.35);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 6px 18px rgba(0, 0, 0, 0.30);
  font-family: 'Inter', sans-serif;
  animation: ea-pop-in 0.16s ease-out;
}
@keyframes ea-pop-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ea-pop__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--cream);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}
.ea-pop__item svg { color: var(--gold); flex-shrink: 0; }
.ea-pop__item:hover,
.ea-pop__item:focus-visible {
  background: rgba(255, 196, 46, 0.14);
  color: var(--cream);
  outline: none;
}
.ea-pop__item:hover svg,
.ea-pop__item:focus-visible svg { color: #FFE082; }

.ea-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 8px);
  z-index: 10000;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: #0E2E68;
  border: 1px solid rgba(255, 196, 46, 0.45);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.ea-toast--show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- documentary modal (auto-opens 10s after landing) ---------- */
/* Modal sits BELOW the sticky nav so the logo + menu stay on display
   above the playing video. JS measures the nav height on open and sets
   --kca-nav-height on the document element; CSS reads it here. */
.doc-modal {
  position: fixed;
  top: var(--kca-nav-height, 100px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;                /* below the nav (z-index 50) — defense in depth */
  display: flex;
  align-items: flex-start;    /* top-aligned so title + video sit at the top */
  justify-content: center;
  padding: clamp(0.15rem, 0.4vw, 0.4rem) clamp(1rem, 4vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  background: rgba(14, 46, 104, 0.97);   /* --ink-deep #0E2E68 — same blue family as the site's section bands */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: doc-modal-fade 0.25s ease-out;
}
.doc-modal[hidden] { display: none; }
@keyframes doc-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.doc-modal__inner {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;             /* tight stack — eyebrow + title + lede read as one block */
  text-align: center;
}

.doc-modal__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.doc-modal__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
}

.doc-modal__lede {
  margin: 0;
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  line-height: 1.4;
  color: rgba(250, 247, 242, 0.78);
  max-width: 56ch;
}

.doc-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 0.5rem;         /* small breath between text block and video, not a chasm */
  border-radius: 12px;
  overflow: hidden;
  background: #0b162e;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 196, 46, 0.30);
}
.doc-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.doc-modal__hint {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.50);
  font-weight: 500;
}

.doc-modal__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 196, 46, 0.12);
  border: 1px solid rgba(255, 196, 46, 0.45);
  border-radius: 999px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.doc-modal__ig svg { color: var(--gold); flex-shrink: 0; }
.doc-modal__ig:hover,
.doc-modal__ig:focus-visible {
  background: rgba(255, 196, 46, 0.22);
  border-color: rgba(255, 196, 46, 0.75);
  color: #FFE082;
  transform: translateY(-1px);
  outline: none;
}
.doc-modal__ig:hover svg, .doc-modal__ig:focus-visible svg { color: #FFE082; }
.doc-modal__ig:active { transform: translateY(0); }

.doc-modal__close {
  position: fixed;
  top: calc(var(--kca-nav-height, 100px) + 16px);
  right: 20px;
  z-index: 50;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: var(--cream);
  border: 1px solid rgba(255, 196, 46, 0.35);
  cursor: pointer;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.doc-modal__close:hover,
.doc-modal__close:focus-visible {
  background: rgba(255, 196, 46, 0.18);
  border-color: var(--gold);
  color: #FFE082;
  outline: none;
  transform: scale(1.08);
}

@media (max-width: 640px) {
  .doc-modal__close { top: calc(var(--kca-nav-height, 90px) + 8px); right: 12px; width: 40px; height: 40px; font-size: 1.4rem; }
  .doc-modal__title { font-size: 1.25rem; }
  .doc-modal__lede  { font-size: 0.92rem; }
}
