/* ============================================
   IRAN WAR TRUTH – Design System
   A Stack of Truth
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #050505;
  --bg-secondary: #0d0d12;
  --bg-card: #111118;
  --bg-card-hover: #16161f;
  --red: #c41e1e;
  --red-bright: #e63535;
  --red-dark: #8b0000;
  --red-glow: rgba(196, 30, 30, 0.25);
  --gold: #e8c547;
  --gold-dim: rgba(232, 197, 71, 0.15);
  --white: #f0f0f0;
  --white-dim: rgba(240, 240, 240, 0.7);
  --white-faint: rgba(240, 240, 240, 0.35);
  --green-truth: #2ecc71;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-red: rgba(196, 30, 30, 0.35);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --section-padding: clamp(60px, 10vh, 120px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--red);
  color: white;
}

a {
  color: var(--red-bright);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

/* --- Utility --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseRed {
  0%, 100% { box-shadow: 0 0 20px var(--red-glow); }
  50% { box-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(196,30,30,0.1); }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(-3px, -3px); }
  60% { transform: translate(3px, 3px); }
  80% { transform: translate(3px, -3px); }
  100% { transform: translate(0); }
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes borderGlow {
  0%, 100% { border-color: var(--border-red); }
  50% { border-color: var(--red-bright); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: transform 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--white);
}
.nav-brand span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--white-dim);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(196, 30, 30, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(139, 0, 0, 0.06) 0%, transparent 50%),
    var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.01) 2px,
    rgba(255,255,255,0.01) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 300%; height: 4px;
  background: rgba(196, 30, 30, 0.15);
  animation: scanline 8s linear infinite;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  animation: fadeIn 1s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: 4px;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-title .red { color: var(--red); }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 700px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-counters {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-counter {
  text-align: center;
}

.hero-counter-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--red);
  line-height: 1;
  display: block;
}

.hero-counter-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-top: 8px;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1.5s ease 1.5s both;
}
.hero-scroll-cue span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-faint);
}
.hero-scroll-cue .arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  animation: pulseRed 2s infinite;
}

/* ============================================
   SECTION — SHARED
   ============================================ */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: 3px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 750px;
  margin-bottom: 50px;
  font-weight: 300;
  line-height: 1.8;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin-bottom: 50px;
}

/* ============================================
   THE TOLL
   ============================================ */
#toll {
  background:
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.toll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.toll-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.4s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.toll-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.toll-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}
.toll-card:hover::before { opacity: 1; }

.toll-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.toll-card-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.toll-card-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.toll-card-detail {
  font-size: 0.82rem;
  color: var(--white-faint);
  line-height: 1.7;
}

.toll-breakdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.toll-breakdown-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s;
}
.toll-breakdown-item:hover {
  border-color: var(--border-red);
}

.toll-breakdown-img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.toll-breakdown-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.toll-breakdown-text p {
  font-size: 0.78rem;
  color: var(--white-faint);
  line-height: 1.6;
}
.toll-breakdown-text .cost {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ============================================
   THE LIES
   ============================================ */
#lies {
  background: var(--bg-primary);
}

.lies-glitch {
  position: relative;
  display: inline-block;
}
.lies-glitch::before,
.lies-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.lies-glitch::before {
  color: var(--red);
  z-index: -1;
  animation: glitch 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px, -2px);
  opacity: 0.7;
}
.lies-glitch::after {
  color: #3498db;
  z-index: -1;
  animation: glitch 2s infinite reverse;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translate(2px, 2px);
  opacity: 0.7;
}

.lies-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lie-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  overflow: hidden;
  animation: borderGlow 4s infinite;
  transition: transform 0.3s;
}
.lie-card:hover { transform: scale(1.01); }

.lie-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: rgba(196, 30, 30, 0.08);
  border-bottom: 1px solid var(--border-red);
}

.lie-card-source {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

.lie-card-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.lie-said, .lie-reality {
  padding: 24px 28px;
}

.lie-said {
  background: rgba(196, 30, 30, 0.04);
}

.lie-said-label, .lie-reality-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.lie-said-label { color: var(--red); }
.lie-reality-label { color: var(--green-truth); }

.lie-said-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white-dim);
  font-style: italic;
}

.lie-reality-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.lie-arrow {
  font-size: 1.8rem;
  color: var(--red);
  padding: 0 12px;
  font-weight: 700;
}

.lie-source {
  padding: 10px 28px 16px;
  font-size: 0.72rem;
  color: var(--white-faint);
  border-top: 1px solid var(--border-subtle);
}
.lie-source a {
  color: var(--gold);
  font-weight: 600;
}

.propaganda-callout {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(232, 197, 71, 0.08), rgba(196, 30, 30, 0.08));
  border: 1px solid var(--gold-dim);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
}
.propaganda-callout h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--gold);
}
.propaganda-callout p {
  font-size: 0.92rem;
  color: var(--white-dim);
  line-height: 1.8;
}

/* ============================================
   ONE AND DONE?
   ============================================ */
#one-and-done {
  background:
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--red-dark), var(--red));
  border-radius: 3px;
}

.timeline-day {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}

.timeline-day::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 12px var(--red-glow);
  z-index: 2;
}

.timeline-day-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 8px;
  background: rgba(196, 30, 30, 0.1);
  padding: 4px 14px;
  border-radius: 4px;
}

.timeline-claim {
  background: rgba(196, 30, 30, 0.06);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  margin-bottom: 12px;
}
.timeline-claim-tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.timeline-claim-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white-dim);
}

.timeline-reality {
  background: rgba(46, 204, 113, 0.06);
  border-left: 3px solid var(--green-truth);
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  margin-bottom: 12px;
}
.timeline-reality-tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-truth);
  margin-bottom: 4px;
}
.timeline-reality-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.timeline-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-event {
  font-size: 0.85rem;
  color: var(--white-dim);
  padding: 8px 14px;
  background: var(--bg-card);
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}
.timeline-event strong { color: var(--white); }
.timeline-event .time {
  color: var(--white-faint);
  font-size: 0.75rem;
  font-weight: 600;
}

.expert-quote {
  margin-top: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}
.expert-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 1;
}
.expert-quote blockquote {
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 12px;
}
.expert-quote cite {
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--red);
}

/* ============================================
   EVIDENCE STACK
   ============================================ */
#evidence {
  background: var(--bg-primary);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.evidence-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.evidence-card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
}

.evidence-card-type {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.evidence-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.evidence-card p {
  font-size: 0.82rem;
  color: var(--white-faint);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 16px;
}

.evidence-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.evidence-card-link::after {
  content: '→';
  transition: transform 0.2s;
}
.evidence-card-link:hover::after { transform: translateX(4px); }

/* ============================================
   HISTORICAL PATTERN
   ============================================ */
#history {
  background:
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.history-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.history-card:hover { border-color: var(--border-red); }

.history-card-year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
}

.history-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.history-card .lie-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  display: block;
}

.history-card .truth-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-truth);
  margin-top: 12px;
  margin-bottom: 6px;
  display: block;
}

.history-card p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.7;
}

.history-punchline {
  margin-top: 40px;
  text-align: center;
  padding: 40px;
  background: rgba(196, 30, 30, 0.05);
  border: 1px solid var(--border-red);
  border-radius: 12px;
}
.history-punchline p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white-dim);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
.history-punchline strong { color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px;
}

.footer-sources {
  margin-bottom: 32px;
}
.footer-sources h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-sources-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 8px;
  list-style: none;
}
.footer-sources-list li {
  font-size: 0.78rem;
  color: var(--white-faint);
  padding: 6px 0;
}
.footer-sources-list li a {
  color: var(--white-dim);
  transition: color 0.2s;
}
.footer-sources-list li a:hover { color: var(--red-bright); }

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--white-faint);
}

.footer-share {
  display: flex;
  gap: 10px;
}
.footer-share-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--white-dim);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.footer-share-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .toll-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .toll-breakdown { grid-template-columns: 1fr; }
  .lie-card-body { grid-template-columns: 1fr; }
  .lie-arrow {
    text-align: center;
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.97);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-hamburger { display: flex; }

  .hero-counters { gap: 24px; }

  .toll-grid { grid-template-columns: 1fr; }

  .evidence-grid { grid-template-columns: 1fr; }
  .history-grid { grid-template-columns: 1fr; }

  .footer-meta {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: 1px; }
  .timeline { padding-left: 30px; }
  .timeline::before { left: 10px; }
  .timeline-day { padding-left: 16px; }
  .timeline-day::before { left: -27px; width: 12px; height: 12px; }
}
