/* ═══ Guerilla Economist ═══════════════════════════════════════════════════
   Aesthetic: insurgent / field-ops. Deep olive + coal + blood-red + dollar-green.
   Typography: Oswald (bold condensed display), IBM Plex Sans (body), Plex Mono
   (numbers), Black Ops One (tactical one-liner accents). Subtle topo / camo motif.
   Not navy-academic (TWF), not retro-Americana (Coke Index). Its own thing.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --olive:       #4a5d3a;
  --olive-deep:  #2b3825;
  --coal:        #1a1d17;
  --coal-deep:   #0e110c;
  --sand:        #d8cfa8;
  --sand-dark:   #a89d78;
  --blood:       #b02818;
  --blood-deep:  #7a1a0f;
  --money:       #3d8f4a;
  --money-light: #6bc076;
  --paper:       #f4efe2;
  --bone:        #ebe4d0;
  --ink:         #12140f;
  --ink-muted:   #5a5a4e;
  --rust:        #c8632a;

  --display:  'Oswald', 'Impact', sans-serif;
  --stencil:  'Black Ops One', 'Oswald', sans-serif;
  --sans:     'IBM Plex Sans', system-ui, sans-serif;
  --mono:     'IBM Plex Mono', 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--paper);
  background: var(--coal-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  position: relative;
}

/* ─── HEADER ──────────────────────────────────────────────────────────── */
.site-header {
  background: var(--coal);
  border-bottom: 3px solid var(--olive);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 0 var(--olive-deep), 0 4px 24px rgba(0,0,0,0.6);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-mascot {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 2px solid var(--money);
  border-radius: 6px;
  box-shadow: 0 0 0 1px var(--coal), 0 4px 12px rgba(0,0,0,0.4);
}
.brand-text { line-height: 1; }
.brand-line1 {
  font-family: var(--stencil);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--paper);
}
.brand-line2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--money-light);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  gap: 2rem;
}
.site-nav a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.site-nav a:hover {
  color: var(--money-light);
  border-bottom-color: var(--money);
}
@media (max-width: 780px) {
  .site-nav { display: none; }
}

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, var(--coal-deep) 0%, var(--coal) 70%, var(--coal-deep) 100%);
  overflow: hidden;
}
.hero::before {
  /* subtle topographic contour lines motif */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 30%, rgba(74, 93, 58, 0.20) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(176, 40, 24, 0.12) 0%, transparent 55%),
    repeating-linear-gradient(
      135deg,
      transparent 0 18px,
      rgba(216, 207, 168, 0.02) 18px 20px
    );
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-mascot-wrap { display: none !important; }
}
.hero-content {
  max-width: 780px;
}

/* ── Mascot on the right ───────────────────────────────────────────── */
.hero-mascot-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-mascot {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 18px rgba(61, 143, 74, 0.25));
  animation: mascotBreath 6s ease-in-out infinite;
}
@keyframes mascotBreath {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(-0.3deg); }
}
.hero-mascot-halo {
  position: absolute;
  inset: 10% 5%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(61, 143, 74, 0.22) 0%,
    rgba(61, 143, 74, 0.08) 40%,
    transparent 70%
  );
  filter: blur(30px);
  z-index: 1;
  animation: haloPulse 5s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.08); }
}

/* ── Jungle foliage at the four corners ────────────────────────────── */
.foliage {
  position: absolute;
  width: clamp(220px, 28vw, 420px);
  height: clamp(220px, 28vw, 420px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
.foliage-tl { top: -40px;    left: -60px;   transform-origin: top left; }
.foliage-tr { top: -40px;    right: -60px;  transform-origin: top right; }
.foliage-bl { bottom: -40px; left: -60px;   transform-origin: bottom left; }
.foliage-br { bottom: -40px; right: -60px;  transform-origin: bottom right; }

/* Gentle wind sway — each leaf a different tempo/direction */
@keyframes swayA { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(1.8deg); } }
@keyframes swayB { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(-2.2deg); } }
@keyframes swayC { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(1.2deg); } }
@keyframes swayD { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(-1.5deg); } }
.foliage-tl { animation: swayA 9s ease-in-out infinite; }
.foliage-tr { animation: swayB 11s ease-in-out infinite; }
.foliage-bl { animation: swayC 13s ease-in-out infinite; }
.foliage-br { animation: swayD 10s ease-in-out infinite; }

@media (max-width: 700px) {
  .foliage { opacity: 0.55; width: 170px; height: 170px; }
}
.kicker {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--money-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-left: 1.4rem;
  position: relative;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: var(--money);
}
.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-accent {
  color: var(--money-light);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.015em;
}
.hero-blurb {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 640px;
  color: var(--bone);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn-primary {
  background: var(--money);
  color: var(--coal-deep);
  border-color: var(--money);
  box-shadow: 0 3px 0 var(--olive-deep);
}
.btn-primary:hover {
  background: var(--money-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--olive-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--sand-dark);
}
.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(216, 207, 168, 0.08);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(216, 207, 168, 0.15);
}
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--rust);
  line-height: 1;
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--sand);
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* ─── SECTION HATS (common headers) ──────────────────────────────────── */
.section-hat {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding: 6px 14px;
  background: rgba(74, 93, 58, 0.18);
  border: 1px solid var(--olive);
  border-radius: 2px;
}
.section-hat.light {
  background: rgba(216, 207, 168, 0.12);
  border-color: var(--sand-dark);
}
.hat-chevron { color: var(--money-light); font-weight: 700; }
.hat-num {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--money-light);
  letter-spacing: 0.15em;
}
.hat-label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--sand);
  text-transform: uppercase;
}
.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}
.section-title.light { color: var(--coal); }
.section-lede {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--bone);
  max-width: 780px;
  margin-bottom: 2rem;
}

/* ─── BATTLEFIELD MAP ────────────────────────────────────────────────── */
.battlefield {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    linear-gradient(180deg, var(--coal) 0%, var(--coal-deep) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><g fill='%23243018' opacity='0.15'><path d='M10 0L0 10v6l16-16zM60 44L44 60h6l10-10z'/></g></svg>");
  background-blend-mode: overlay;
  border-top: 3px solid var(--olive-deep);
  border-bottom: 3px solid var(--olive-deep);
}

.map-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.toggle-group {
  display: inline-flex;
  border: 2px solid var(--olive);
  border-radius: 3px;
  overflow: hidden;
  background: var(--coal-deep);
}
.toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.2rem;
  background: transparent;
  border: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  cursor: pointer;
  transition: all 0.2s ease;
  border-right: 1px solid var(--olive-deep);
}
.toggle-btn:last-child { border-right: none; }
.toggle-btn:hover { color: var(--paper); background: rgba(74, 93, 58, 0.25); }
.toggle-btn.is-active {
  background: var(--money);
  color: var(--coal-deep);
}
.toggle-btn.is-active .toggle-icon { color: var(--coal-deep); }
.toggle-icon { color: var(--money-light); font-size: 0.75rem; }

.map-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--sand-dark);
  text-transform: uppercase;
}
.meta-dot {
  width: 8px; height: 8px;
  background: var(--money);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(61, 143, 74, 0.25);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(61, 143, 74, 0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(61, 143, 74, 0.06); }
}

.map-wrap {
  position: relative;
  background: var(--coal-deep);
  border: 1px solid var(--olive-deep);
  border-radius: 4px;
  overflow: hidden;
  padding: 1rem;
  box-shadow:
    inset 0 0 60px rgba(0,0,0,0.5),
    0 10px 30px rgba(0,0,0,0.4);
}
.map-host {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  min-height: 380px;
}
.map-host svg { width: 100%; height: 100%; display: block; }

.map-host .country {
  stroke: var(--coal-deep);
  stroke-width: 0.5;
  transition: filter 0.15s, stroke-width 0.15s;
  cursor: pointer;
}
.map-host .country.no-data {
  fill: #33372e;
}
.map-host .country:hover {
  stroke: var(--paper);
  stroke-width: 1.5;
  filter: brightness(1.2);
}

.map-tooltip {
  position: fixed;
  pointer-events: none;
  z-index: 50;
  padding: 10px 14px;
  background: rgba(14, 17, 12, 0.96);
  border: 1px solid var(--money);
  border-radius: 3px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.45;
  opacity: 0;
  transform: translate(12px, 12px);
  transition: opacity 0.12s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.7);
  min-width: 180px;
}
.map-tooltip[data-visible="1"] { opacity: 1; }
.map-tooltip .tip-country {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--money-light);
  margin-bottom: 0.3rem;
}
.map-tooltip .tip-row {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  padding: 2px 0;
}
.map-tooltip .tip-row .label { color: var(--sand-dark); }
.map-tooltip .tip-row .val { color: var(--paper); font-weight: 500; }
.map-tooltip .tip-row .val.pos { color: var(--money-light); }
.map-tooltip .tip-row .val.neg { color: #e07d5f; }

.map-legend {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}
.legend-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.2rem;
}
.legend-bar { position: relative; }
.legend-gradient {
  height: 12px;
  border-radius: 2px;
  border: 1px solid var(--olive-deep);
}
.legend-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--sand);
}
.legend-note {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--sand-dark);
  margin-top: 0.4rem;
  font-style: italic;
}

.map-leaderboard {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  .map-leaderboard { grid-template-columns: 1fr; }
}
.board-card {
  background: var(--coal-deep);
  border: 1px solid var(--olive-deep);
  border-radius: 3px;
  padding: 1rem 1.2rem;
}
.board-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  color: var(--money-light);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--olive-deep);
}
.board-card:last-child .board-title { color: #e07d5f; }
.board-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.board-list li {
  display: grid;
  grid-template-columns: 20px 1fr 70px 60px;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  padding: 2px 0;
}
.board-list .rank { color: var(--sand-dark); }
.board-list .country-name { color: var(--paper); }
.board-list .etf { color: var(--sand); font-weight: 500; }
.board-list .pct { text-align: right; font-weight: 600; }
.board-list .pct.pos { color: var(--money-light); }
.board-list .pct.neg { color: #e07d5f; }

/* ─── FIELD REPORTS ──────────────────────────────────────────────────── */
.field-reports {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--coal);
}
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.25rem;
}
.report-card {
  display: block;
  padding: 1.5rem 1.5rem 1.75rem;
  background: var(--coal-deep);
  border: 1px solid var(--olive-deep);
  border-radius: 4px;
  position: relative;
  transition: all 0.22s ease;
  min-height: 300px;
}
.report-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 3px;
  background: var(--olive);
  transition: all 0.22s ease;
}
.report-card.is-live::before { background: var(--money); width: 100%; }
.report-card.is-draft::before { background: var(--rust); }
.report-card.is-coming::before { background: var(--sand-dark); }

.report-card:hover {
  transform: translateY(-3px);
  border-color: var(--money);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.report-card.is-live:hover { border-color: var(--money-light); }

.report-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.75rem;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.status-dot.live  { background: var(--money);     box-shadow: 0 0 0 3px rgba(61, 143, 74, 0.3); }
.status-dot.draft { background: var(--rust); }
.status-dot.coming{ background: var(--sand-dark); }

.report-num {
  font-family: var(--stencil);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--sand-dark);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}
.report-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.report-card.is-live .report-title { color: var(--money-light); }
.report-blurb {
  font-size: 0.92rem;
  color: var(--bone);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.report-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.report-stat {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 3px 8px;
  background: rgba(61, 143, 74, 0.12);
  color: var(--money-light);
  border-radius: 2px;
  border: 1px solid rgba(61, 143, 74, 0.3);
}
.report-card.is-draft .report-stat {
  background: rgba(200, 99, 42, 0.1);
  color: var(--rust);
  border-color: rgba(200, 99, 42, 0.3);
}
.report-cta {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--money-light);
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
}
.report-card.is-draft .report-cta { color: var(--rust); }
.report-card.is-coming .report-cta { color: var(--sand); }

/* ─── MANIFESTO ──────────────────────────────────────────────────────── */
.manifesto {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bone);
  color: var(--coal);
  position: relative;
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0 22px,
      rgba(74, 93, 58, 0.04) 22px 24px
    );
  pointer-events: none;
}
.manifesto .section-lede { color: var(--ink-muted); }
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.manifesto-col h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--olive);
  letter-spacing: 0.01em;
}
.manifesto-col p {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--coal);
}

/* ─── INTEL DROP (NEWSLETTER) ────────────────────────────────────────── */
.intel-drop {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--coal-deep);
  border-top: 3px solid var(--olive);
}
.intel-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.25rem;
  background:
    linear-gradient(135deg, var(--olive-deep) 0%, var(--coal) 100%);
  border: 1px solid var(--olive);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
@media (max-width: 720px) {
  .intel-card { grid-template-columns: 1fr; }
}
.intel-kicker {
  font-family: var(--stencil);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--money-light);
  margin-bottom: 0.7rem;
}
.intel-text h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.intel-text p {
  color: var(--bone);
  font-weight: 300;
  font-size: 0.95rem;
}
.intel-form {
  display: flex;
  gap: 0.5rem;
}
.intel-input {
  flex: 1;
  padding: 0.9rem 1rem;
  background: var(--coal-deep);
  border: 2px solid var(--olive);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.9rem;
  border-radius: 2px;
}
.intel-input:focus {
  outline: none;
  border-color: var(--money);
}

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.site-footer {
  padding: 2.5rem 0;
  background: var(--coal-deep);
  border-top: 1px solid var(--olive-deep);
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-mascot {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  border: 2px solid var(--olive);
  object-fit: cover;
}
.footer-title {
  font-family: var(--stencil);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--paper);
}
.footer-tag {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--sand-dark);
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.footer-disclaimer {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 760px;
  font-weight: 300;
}

/* ─── MOBILE ADJUSTMENTS ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.7rem; }
  .map-controls { flex-direction: column; align-items: flex-start; }
}

/* ─── SUPPORT THE CAUSE ──────────────────────────────────────────────── */
.support-op {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    linear-gradient(180deg, var(--coal) 0%, var(--coal-deep) 100%);
  border-top: 3px solid var(--olive-deep);
  position: relative;
  overflow: hidden;
}
.support-op::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent 0 22px,
      rgba(74, 93, 58, 0.04) 22px 24px
    );
  pointer-events: none;
}
.support-op .wrap { position: relative; z-index: 1; }

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 820px) {
  .support-grid { grid-template-columns: 1fr; }
}

.donate-card {
  background: var(--coal-deep);
  border: 1px solid var(--olive-deep);
  border-radius: 4px;
  padding: 1.5rem 1.5rem 1.75rem;
  display: grid;
  grid-template-areas:
    "head  qr"
    "addr  addr"
    "foot  foot";
  grid-template-columns: 1fr 150px;
  gap: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}
.donate-card:hover { border-color: var(--olive); }
@media (max-width: 500px) {
  .donate-card {
    grid-template-areas: "head" "qr" "addr" "foot";
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

.donate-head { grid-area: head; }
.donate-qr { grid-area: qr; }
.donate-addr { grid-area: addr; }
.donate-foot { grid-area: foot; }

.donate-rail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.donate-kind {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--money-light);
}
.donate-status {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid;
}
.donate-status.pending {
  color: var(--rust);
  border-color: rgba(200, 99, 42, 0.5);
  background: rgba(200, 99, 42, 0.1);
}
.donate-status.phase2 {
  color: var(--money-light);
  border-color: rgba(107, 192, 118, 0.4);
  background: rgba(61, 143, 74, 0.12);
}

.donate-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--paper);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}
.donate-note {
  font-size: 0.9rem;
  color: var(--bone);
  font-weight: 300;
  line-height: 1.55;
}

.donate-qr {
  align-self: start;
}
.qr-svg {
  width: 150px;
  height: 150px;
  background: var(--coal-deep);
  border: 1px solid var(--olive-deep);
  border-radius: 3px;
  display: block;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}

.donate-addr {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--olive-deep);
  border-radius: 3px;
  overflow: hidden;
}
.addr-text {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--sand);
  padding: 0.7rem 0.85rem;
  flex: 1;
  overflow-x: auto;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.addr-copy {
  padding: 0 1rem;
  background: var(--olive-deep);
  color: var(--sand);
  border: none;
  border-left: 1px solid var(--olive);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.addr-copy:hover:not(:disabled) {
  background: var(--money);
  color: var(--coal-deep);
}
.addr-copy:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.donate-foot {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 300;
  color: var(--sand-dark);
  line-height: 1.5;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--olive-deep);
}

/* Breakdown: what donations fund / don't fund */
.support-breakdown {
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  gap: 2rem;
  padding: 1.5rem 1.75rem;
  background: rgba(74, 93, 58, 0.08);
  border: 1px solid var(--olive-deep);
  border-left: 4px solid var(--money);
  border-radius: 3px;
}
@media (max-width: 720px) {
  .support-breakdown { grid-template-columns: 1fr; }
}
.breakdown-title,
.no-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--money-light);
  margin-bottom: 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--olive-deep);
}
.no-title { color: var(--rust); }
.breakdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--sans);
  font-size: 0.93rem;
  color: var(--bone);
  font-weight: 300;
}
.breakdown-list li { display: flex; align-items: flex-start; gap: 0.55rem; }
.bd-icon { color: var(--money); font-weight: 700; flex-shrink: 0; }
.no-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--sand-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.no-list li::before {
  content: "✕  ";
  color: var(--rust);
  font-weight: 700;
}
