/* ============================================================
   ENDURING WELCOME — STYLESHEET
   Built on the AfghanEvac Brand Guidelines v2.0 (July 2026)
   ============================================================ */

:root{
  /* --- AE primary triad (muted, for full-bleed surfaces) --- */
  --navy:        #132867;
  --red:         #AB2531;
  --green:       #3D823E;

  /* --- saturated logo / accent variants --- */
  --navy-deep:   #002868;
  --red-deep:    #BF0A30;
  --green-deep:  #00843D;
  --gold:        #e8cb50;

  /* --- secondary / slate set --- */
  --slate:       #415A77;
  --cadet:       #778DA9;
  --platinum:    #E0E1DD;

  /* --- neutrals --- */
  --ink:         #10182b;
  --ink-soft:    #3a4258;
  --cream:       #F9F7F1;
  --white:       #FFFFFF;
  --line:        #E4E3DC;

  --shadow: 0 12px 32px -12px rgba(16,24,43,0.25);
  --shadow-sm: 0 4px 14px -6px rgba(16,24,43,0.18);
  --radius: 14px;
  --radius-sm: 8px;

  --font-display: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img,svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; line-height:1.1; }
p{ margin:0 0 1em; }
p:last-child{ margin-bottom:0; }
button{ font-family: inherit; cursor:pointer; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- tricolor stripe (brand rule: header + footer) ---------- */
.tricolor{ display:flex; height:5px; width:100%; }
.tricolor span{ flex:1; }
.tricolor .b1{ background: var(--navy-deep); }
.tricolor .b2{ background: var(--red-deep); }
.tricolor .b3{ background: var(--green-deep); }

/* ---------- eyebrow / status pill ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-display);
  font-weight:800; font-size:12px; letter-spacing:.14em;
  text-transform:uppercase;
  color:#fff; background: var(--red);
  padding:6px 14px; border-radius:999px;
}
.eyebrow.navy{ background: var(--navy); }
.eyebrow.outline{
  background:transparent; color:var(--red); border:1.5px solid var(--red);
}
.eyebrow .dot{
  width:7px; height:7px; border-radius:50%; background:#fff;
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%,100%{ opacity:1; } 50%{ opacity:.35; }
}

/* ---------- headings ---------- */
.section-kicker{
  font-family: var(--font-display); font-weight:800; letter-spacing:.14em;
  text-transform:uppercase; font-size:13px; color: var(--red);
  margin-bottom:10px; display:block;
}
.section-title{
  font-weight:900; text-transform:uppercase;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing:.01em;
  color: var(--navy);
  margin-bottom:16px;
}
.section-title.on-dark{ color:#fff; }
.section-lede{
  font-size: clamp(16px,2vw,19px);
  color: var(--ink-soft);
  max-width:760px;
}
.section-lede.on-dark{ color: var(--platinum); }
.section-head{ margin-bottom:44px; }

/* ============================================================
   NAV
   ============================================================ */
.utility-bar{ background: var(--cream); border-bottom: 1px solid var(--line); }
.utility-bar .container{ display:flex; justify-content:flex-end; padding-top:6px; padding-bottom:6px; }
.utility-link{
  font-size:12px; font-weight:600; color: var(--slate);
  display:inline-flex; align-items:center; gap:5px;
  transition: color .15s;
}
.utility-link:hover{ color: var(--navy); }

.site-nav{
  position: sticky; top:0; z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.site-nav .container{
  display:flex; align-items:center; justify-content:space-between;
  height:68px;
  max-width: 1320px;
}
.brand{ display:flex; align-items:center; gap:10px; flex:0 0 auto; }
.brand .brand-name{
  font-family: var(--font-display); font-weight:900; color: var(--navy);
  letter-spacing:.02em; font-size:15px; line-height:1.15;
  white-space:nowrap;
}
.brand .brand-name small{
  display:block; font-family: var(--font-body); font-weight:500;
  text-transform:none; letter-spacing:0; color: var(--slate); font-size:11px;
}
.nav-links{
  display:flex; align-items:center; gap:20px;
}
.nav-links a{
  color: var(--ink-soft); font-size:13.5px; font-weight:600;
  padding:6px 2px; border-bottom:2px solid transparent;
  white-space:nowrap; flex:0 0 auto;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover, .nav-links a.active{ color: var(--navy); border-color: var(--red-deep); }
.nav-cta{
  background: var(--red); color:#fff !important; padding:8px 18px !important;
  border-radius:8px; font-weight:700 !important; border:none !important;
  margin-left:4px;
}
.nav-cta:hover{ background: var(--red-deep); }
.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px;
}
.nav-toggle span{ width:24px; height:2px; background: var(--navy); display:block; }

@media (max-width: 1140px){
  .nav-links{ gap:14px; }
  .nav-links a{ font-size:13px; }
}

@media (max-width: 900px){
  .nav-toggle{ display:flex; }
  .nav-links{
    position:absolute; top:68px; left:0; right:0;
    background: var(--white); flex-direction:column; align-items:flex-start;
    padding: 10px 24px 26px; gap:16px;
    display:none;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .nav-links a{ white-space:normal; font-size:14px; }
  .nav-links.open{ display:flex; }
  .nav-cta{ align-self:flex-start; margin-left:0; }
  .utility-bar .container{ justify-content:center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  background:
    radial-gradient(1100px 500px at 15% -10%, rgba(0,132,61,.35), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(191,10,48,.35), transparent 55%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 60%, #0b1638 100%);
  color:#fff;
  padding: 84px 0 96px;
  overflow:hidden;
}
.hero::after{
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity:.35; pointer-events:none;
}
.hero .container{ position:relative; z-index:2; }
.hero-grid{
  display:grid; grid-template-columns: 1.15fr .85fr; gap:56px; align-items:center;
}
.hero h1{
  font-weight:900; text-transform:uppercase;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing:.005em;
  margin: 18px 0 20px;
}
.hero h1 .accent{ color: var(--gold); }
.hero p.lede{
  font-size: clamp(16px,2vw,19px);
  color: var(--platinum);
  max-width: 560px;
  margin-bottom: 14px;
}
.hero p.lede:last-of-type{ margin-bottom: 32px; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:38px; }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:15px;
  padding:13px 24px; border-radius:999px;
  border:1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--red); color:#fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--red-deep); }
.btn-ghost{ background: rgba(255,255,255,.06); color:#fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover{ background: rgba(255,255,255,.14); }
.btn-navy{ background: var(--navy); color:#fff; }
.btn-navy:hover{ background: var(--navy-deep); }
.btn-outline{ background:transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover{ background: var(--navy); color:#fff; }
.btn-sm{ padding:9px 16px; font-size:13px; }

.hero-stats{ display:flex; gap:32px; flex-wrap:wrap; row-gap:18px; }
.hero-stat b{
  display:block; font-family: var(--font-display); font-weight:900;
  font-size:30px; color:#fff;
}
.hero-stat span{ font-size:12.5px; color: var(--cadet); text-transform:uppercase; letter-spacing:.06em; }

/* hero visual: simple “arrow” motif card */
.hero-visual{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding:26px;
  backdrop-filter: blur(6px);
}
.hero-visual .hv-head{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:16px; font-size:12px; text-transform:uppercase; letter-spacing:.08em;
  color: var(--cadet); font-weight:700;
}
.hero-visual canvas{ width:100% !important; height:220px !important; }
.hv-caption{ font-size:12.5px; color: var(--cadet); margin-top:14px; }

/* ============================================================
   STATUS DASHBOARD
   ============================================================ */
.status-section{ background: var(--white); padding: 70px 0; border-bottom: 1px solid var(--line); }
.status-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; margin-top:34px;
}
.status-card{
  background: var(--cream); border-radius: var(--radius);
  padding:22px 22px 20px; border-left:5px solid var(--slate);
  transition: transform .15s ease, box-shadow .15s ease;
}
.status-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.status-card.red{ border-color: var(--red); }
.status-card.navy{ border-color: var(--navy); }
.status-card.gold{ border-color: var(--gold); }
.status-card .val{
  font-family: var(--font-display); font-weight:900; font-size:34px; color: var(--navy);
  margin-bottom:6px;
}
.status-card.red .val{ color: var(--red); }
.status-card .lbl{ font-weight:700; font-size:14.5px; margin-bottom:8px; }
.status-card .note{ font-size:12.5px; color: var(--ink-soft); }
.status-asof{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
}

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

.status-card .src{ margin-top:8px; font-size:11px; color: var(--cadet); font-style:italic; }

/* ============================================================
   WHAT THIS HAS COST
   ============================================================ */
.cost-section{ background: var(--white); padding: 90px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.war-compare{
  margin-top:34px; display:grid; grid-template-columns: 1fr auto 1fr;
  align-items:center; gap:24px; background: var(--navy-deep); border-radius: var(--radius);
  padding:36px 30px; color:#fff;
}
.wc-item{ text-align:center; }
.wc-value{
  font-family: var(--font-display); font-weight:900; font-size: clamp(32px,4vw,48px);
  color:#fff; line-height:1;
}
.wc-value.accent{ color: var(--gold); }
.wc-label{ margin-top:10px; font-size:14px; color: var(--platinum); max-width:320px; margin-left:auto; margin-right:auto; }
.wc-source{ margin-top:8px; font-size:11.5px; color: var(--cadet); font-style:italic; }
.wc-divider{
  font-family: var(--font-display); font-weight:800; color: var(--cadet);
  font-size:14px; text-transform:uppercase; letter-spacing:.06em;
}
.cost-policy-point{
  margin-top:22px; font-size:15px; color: var(--ink-soft); max-width:820px; line-height:1.65;
}
.cost-policy-point strong{ color: var(--navy); }

.cost-contrast{
  margin-top:24px; padding:18px 22px; background: rgba(232,203,80,.15);
  border-left:4px solid var(--gold); border-radius: 8px; font-size:14.5px; color: var(--ink-soft);
}
.cost-contrast strong{ color: var(--ink); }
.cost-takeaway{
  margin-top:22px; font-size:18px; font-weight:600; color: var(--navy);
  max-width:760px; line-height:1.5;
}

/* ============================================================
   STORY / SCROLLYTELLING TIMELINE
   ============================================================ */
.story-section{ background: var(--navy-deep); padding: 90px 0 100px; position:relative; }
.story-section .container{ position:relative; }
.timeline{
  position:relative; margin-top: 50px;
  padding-left: 30px;
  border-left: 2px solid rgba(255,255,255,.15);
}
.tl-item{
  position:relative; padding: 0 0 46px 26px;
  opacity:0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.tl-item.in-view{ opacity:1; transform:none; }
.tl-item:last-child{ padding-bottom:0; }
.tl-item::before{
  content:""; position:absolute; left:-37px; top:4px;
  width:14px; height:14px; border-radius:50%;
  background: var(--cadet); border:3px solid var(--navy-deep);
}
.tl-item[data-era="bush"]::before{ background: var(--slate); }
.tl-item[data-era="obama"]::before{ background: var(--cadet); }
.tl-item[data-era="trump1"]::before{ background: var(--gold); }
.tl-item[data-era="biden"]::before{ background: var(--green-deep); }
.tl-item[data-era="trump2"]::before{ background: var(--red-deep); }

.tl-year{
  font-family: var(--font-display); font-weight:800; font-size:13px;
  letter-spacing:.08em; text-transform:uppercase; margin-bottom:6px;
  display:inline-block; padding:3px 11px; border-radius:999px;
}
.tl-item[data-era="bush"] .tl-year{ background: rgba(65,90,119,.3); color:#aebedd; }
.tl-item[data-era="obama"] .tl-year{ background: rgba(119,141,169,.22); color:#c9d6e6; }
.tl-item[data-era="trump1"] .tl-year{ background: rgba(232,203,80,.2); color: var(--gold); }
.tl-item[data-era="biden"] .tl-year{ background: rgba(0,132,61,.25); color:#7fd39a; }
.tl-item[data-era="trump2"] .tl-year{ background: rgba(191,10,48,.25); color:#ff98a3; }

.tl-item h3{ color:#fff; font-size: 20px; font-weight:800; text-transform:none; margin-bottom:8px; }
.tl-item p{ color: var(--platinum); font-size:15px; max-width:640px; }

.era-legend{
  display:flex; gap:22px; flex-wrap:wrap; margin-top:36px;
}
.era-legend span{
  display:inline-flex; align-items:center; gap:8px; font-size:12.5px; color: var(--cadet);
  text-transform:uppercase; letter-spacing:.05em; font-weight:700;
}
.era-legend i{ width:10px; height:10px; border-radius:50%; display:inline-block; }
.era-legend .i-bush{ background: var(--slate); }
.era-legend .i-obama{ background: var(--cadet); }
.era-legend .i-trump1{ background: var(--gold); }
.era-legend .i-biden{ background: var(--green-deep); }
.era-legend .i-trump2{ background: var(--red-deep); }

/* ============================================================
   NUMBERS / CHARTS
   ============================================================ */
.numbers-section{ background: var(--white); padding: 90px 0; }
.chart-grid{
  display:grid; grid-template-columns: 1.3fr 1fr; gap:22px; margin-top:40px;
}
.chart-grid .full{ grid-column: 1 / -1; }
.chart-card{
  background: var(--cream); border-radius: var(--radius);
  padding: 26px 26px 18px; border:1px solid var(--line);
}
.chart-card h3{
  font-size:16px; font-weight:800; color: var(--navy); text-transform:uppercase; letter-spacing:.02em;
  margin-bottom:4px;
}
.chart-card .chart-sub{ font-size:13px; color: var(--ink-soft); margin-bottom:16px; }
.chart-card .chart-wrap{ position:relative; height: 300px; }
.chart-card .chart-source{
  font-size:11.5px; color: var(--cadet); margin-top:14px; border-top:1px dashed var(--line); padding-top:10px;
}
.two-bar-compare{ display:flex; align-items:flex-end; gap:36px; height:230px; padding: 10px 6px 0; }
.tbc-bar{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; height:100%; }
.tbc-bar .bar{ width:64px; border-radius: 8px 8px 0 0; transition: height 1s cubic-bezier(.2,.8,.2,1); }
.tbc-bar .bar-val{ font-family: var(--font-display); font-weight:900; margin-bottom:8px; font-size:20px; }
.tbc-bar .bar-lbl{ margin-top:10px; font-size:12.5px; text-align:center; color: var(--ink-soft); font-weight:600; max-width:120px;}

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

/* ============================================================
   MAP
   ============================================================ */
.map-section{ background: var(--cream); padding: 90px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.map-layout{ display:grid; grid-template-columns: 1.3fr .9fr; gap:26px; margin-top:40px; align-items:start; }
.map-card{ background:#fff; border-radius: var(--radius); border:1px solid var(--line); padding:20px; }
#world-map{ width:100%; height:auto; }
#world-map path{ fill:#dfe4ee; stroke:#fff; stroke-width:.5; }
.map-dot{ fill: var(--red); fill-opacity:.82; stroke:#fff; stroke-width:1; cursor:pointer; transition: fill-opacity .15s; }
.map-dot:hover{ fill-opacity:1; }
.map-callout{
  fill: var(--navy); font-family: var(--font-body); font-size:10px; font-weight:600; pointer-events:none;
}
.map-tooltip{
  position:absolute; pointer-events:none; background: var(--navy); color:#fff;
  font-size:12.5px; padding:8px 12px; border-radius:8px; max-width:220px;
  box-shadow: var(--shadow-sm); opacity:0; transition: opacity .12s; z-index:5;
}
.country-list{ background:#fff; border-radius: var(--radius); border:1px solid var(--line); padding:8px; }
.country-row{
  display:flex; align-items:center; gap:12px; padding:12px 14px; border-radius:10px;
  cursor:pointer; transition: background .15s;
}
.country-row:hover, .country-row.active{ background: var(--cream); }
.country-row .cr-name{ font-weight:700; font-size:14px; flex:1; }
.country-row .cr-bar{ width:110px; height:8px; border-radius:6px; background: var(--platinum); overflow:hidden; }
.country-row .cr-bar i{ display:block; height:100%; background: var(--red); border-radius:6px; }
.country-row .cr-val{ font-family: var(--font-display); font-weight:800; font-size:13.5px; width:56px; text-align:right; color: var(--navy); }
.country-note{
  margin-top:10px; padding: 12px 14px; background: rgba(171,37,49,.08);
  border-left:3px solid var(--red); border-radius: 8px; font-size:12.5px; color: var(--ink-soft);
  display:none;
}
.country-note.show{ display:block; }

@media (max-width: 980px){ .map-layout{ grid-template-columns: 1fr; } }

/* ============================================================
   COUNTERING THE NARRATIVE (accordion)
   ============================================================ */
.counter-section{ background: var(--cream); padding: 90px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.counter-list{ margin-top:36px; display:flex; flex-direction:column; gap:14px; max-width:900px; }
.counter-item{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden;
}
.counter-claim{
  width:100%; display:flex; align-items:center; gap:16px;
  padding:20px 22px; background:none; border:none; text-align:left;
}
.counter-claim .cc-x{
  flex:0 0 auto; width:30px; height:30px; border-radius:50%;
  background: rgba(171,37,49,.1); color: var(--red);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:900; font-size:15px;
}
.counter-claim .cc-text{
  flex:1; font-weight:700; font-size:16px; color: var(--ink); font-style:italic;
}
.counter-claim .cc-chevron{
  flex:0 0 auto; width:22px; height:22px; color: var(--cadet);
  transition: transform .25s ease;
}
.counter-item.open .counter-claim .cc-chevron{ transform: rotate(135deg); }
.counter-item.open .counter-claim .cc-x{ background: var(--red); color:#fff; }

.counter-answer{
  max-height:0; overflow:hidden; transition: max-height .35s ease;
}
.counter-answer-inner{
  padding: 0 22px 22px 68px; border-top:1px dashed var(--line); margin-top:0;
}
.counter-item.open .counter-answer-inner{ padding-top:18px; }
.ca-label{
  display:inline-flex; align-items:center; gap:6px;
  font-family: var(--font-display); font-weight:800; font-size:11.5px;
  letter-spacing:.1em; text-transform:uppercase; color: var(--green-deep);
  margin-bottom:10px;
}
.counter-answer p{ font-size:15px; color: var(--ink-soft); }
.counter-answer .ca-source{
  margin-top:12px; font-size:12px; color: var(--cadet); font-style:italic;
}

/* ============================================================
   LEGAL TIMELINE
   ============================================================ */
.legal-section{ background: var(--navy); padding: 90px 0; color:#fff; }
.legal-case-pill{
  display:inline-block; background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25);
  padding:8px 16px; border-radius:999px; font-family: var(--font-display); font-weight:700;
  font-size:13px; letter-spacing:.02em; margin-bottom:8px;
}
.legal-grid{ margin-top:40px; display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.legal-card{
  background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding:20px; border-top:4px solid var(--gold);
}
.legal-card .ldate{ font-family: var(--font-display); font-weight:800; font-size:13px; color: var(--gold); margin-bottom:8px; letter-spacing:.03em; }
.legal-card p{ font-size:14px; color: var(--platinum); }
@media (max-width: 980px){ .legal-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .legal-grid{ grid-template-columns: 1fr;} }

/* ============================================================
   TAKE ACTION
   ============================================================ */
.action-section{ background: var(--white); padding:90px 0; }
.asks-list{ margin: 26px 0 46px; display:grid; grid-template-columns: 1fr 1fr; gap:14px 30px; }
.asks-list li{
  display:flex; gap:12px; font-size:15px; color: var(--ink-soft); align-items:flex-start;
}
.asks-list li .num{
  flex:0 0 auto; width:26px; height:26px; border-radius:50%; background: var(--navy); color:#fff;
  font-family: var(--font-display); font-weight:800; font-size:12.5px;
  display:flex; align-items:center; justify-content:center; margin-top:2px;
}
@media (max-width: 760px){ .asks-list{ grid-template-columns: 1fr; } }

.action-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.action-card{
  background: var(--cream); border-radius: var(--radius); padding:24px; border:1px solid var(--line);
  display:flex; flex-direction:column; height:100%;
  transition: transform .15s ease, box-shadow .15s ease;
}
.action-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.action-card h4{ font-size:16px; font-weight:800; color: var(--navy); margin-bottom:8px; text-transform:none; }
.action-card p{ font-size:13.5px; color: var(--ink-soft); flex:1; margin-bottom:18px; }
@media (max-width: 980px){ .action-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .action-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--navy-deep); color: var(--platinum); padding: 56px 0 30px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-grid h5{ color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:16px; font-family: var(--font-display); }
.footer-grid ul li{ margin-bottom:10px; font-size:14px; }
.footer-grid ul a:hover{ color:#fff; text-decoration:underline; }
.footer-brand p{ font-size:13.5px; color: var(--cadet); max-width:340px; }
.footer-disclaimer{
  border-top:1px solid rgba(255,255,255,.12); padding-top:24px; font-size:12px; color: var(--cadet);
  display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;
}
.footer-disclaimer p{ max-width:720px; }

/* ============================================================
   LOGO (inline SVG mark) — three-bar forward arrow
   ============================================================ */
.ae-logo{ width:30px; height:auto; flex:0 0 auto; }

.footer-logo-chip{
  display:inline-block; background:#fff; padding:14px 20px;
  border-radius:12px; margin-bottom:16px; box-shadow: var(--shadow-sm);
}
.footer-logo-chip img{ height:32px; width:auto; display:block; }

/* ============================================================
   REVEAL ANIMATION (generic)
   ============================================================ */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view{ opacity:1; transform:none; }

/* scrollbar niceness for tooltips etc (non-critical) */
::selection{ background: var(--gold); color: var(--ink); }

/* ============================================================
   MOBILE FIXES
   These were the gaps in the first pass: the hero and footer
   grids had no small-screen breakpoint at all, and several
   sections carried desktop-scale spacing onto phones. Fixed here
   rather than scattered through the file above so it's easy to
   audit in one place.
   ============================================================ */

/* tighten the outer gutter a bit on phones */
@media (max-width: 480px){
  .container{ padding: 0 18px; }
}

/* hero: stack, and don't waste vertical space */
@media (max-width: 900px){
  .hero{ padding: 56px 0 64px; }
  .hero-grid{ grid-template-columns: 1fr; gap:36px; }
  .hero-visual{ padding:20px; }
  .hero-ctas{ gap:10px; }
  .btn{ padding:12px 20px; font-size:14px; }
}
@media (max-width: 480px){
  .hero-stats{ gap:22px; }
  .hero-stat b{ font-size:24px; }
}

/* every section: less padding once we're off desktop */
@media (max-width: 640px){
  .status-section, .story-section, .numbers-section, .cost-section,
  .map-section, .counter-section, .legal-section, .action-section{
    padding-top: 56px; padding-bottom: 56px;
  }
  .section-head{ margin-bottom:30px; }
  .section-title{ margin-bottom:12px; }
}

/* footer: stack the three columns */
@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr; gap:32px; }
}
@media (max-width: 480px){
  .footer-disclaimer{ flex-direction:column; }
}

/* war-cost comparison: stack the two stats with the divider between */
@media (max-width: 640px){
  .war-compare{ grid-template-columns: 1fr; padding:28px 20px; gap:14px; }
  .wc-divider{ padding:2px 0; }
}

/* status + cost cards: a little tighter padding on phones */
@media (max-width: 480px){
  .status-card{ padding:18px 18px 16px; }
  .status-card .val{ font-size:28px; }
  .status-asof{ align-items:flex-start; flex-direction:column; }
}

/* timeline: pull the rail in so copy has more room to breathe */
@media (max-width: 640px){
  .timeline{ padding-left:16px; }
  .tl-item{ padding-left:22px; }
  .tl-item::before{ left:-25px; width:12px; height:12px; }
  .tl-item h3{ font-size:18px; }
}

/* processing-time bars: fit three bars on a narrow phone */
@media (max-width: 480px){
  .two-bar-compare{ gap:14px; height:190px; }
  .tbc-bar .bar{ width:44px; }
  .tbc-bar .bar-val{ font-size:16px; }
  .tbc-bar .bar-lbl{ font-size:11px; max-width:90px; }
}

/* chart cards: reclaim padding for the chart itself */
@media (max-width: 480px){
  .chart-card{ padding:18px 16px 14px; }
  .chart-card .chart-wrap{ height:240px; }
}

/* country list: let the name wrap instead of forcing overflow */
@media (max-width: 480px){
  .country-row{ flex-wrap:wrap; row-gap:6px; padding:12px 10px; }
  .country-row .cr-name{ flex:1 1 100%; }
  .country-row .cr-bar{ width:auto; flex:1; }
}

/* counter accordion: full-width answers on phones */
@media (max-width: 640px){
  .counter-claim{ padding:16px 16px; gap:12px; }
  .counter-claim .cc-text{ font-size:14.5px; }
  .counter-answer-inner{ padding-left:16px; padding-right:16px; }
}

/* legal case cards: comfortable single column below tablet already
   kicks in at 620px via .legal-grid rule; just trim padding here */
@media (max-width: 480px){
  .legal-card{ padding:16px; }
}

/* asks list: numbered items shouldn't crowd the number chip */
@media (max-width: 480px){
  .asks-list li{ font-size:14px; }
}

/* nav: keep the wordmark from crowding the hamburger on tiny phones */
@media (max-width: 380px){
  .brand-name{ font-size:13px; }
  .brand-name small{ font-size:10px; }
}
