@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=Libre+Franklin:wght@300;400;500;600&display=swap');

/* ── ROOT ─────────────────────────────────────────── */
:root {
  --bg:        #FAFAF7;
  --bg-dark:   #0E2545;
  --ink:       #0B1B2E;
  --mid:       #3B4557;
  --soft:      #6E7789;
  --rule:      #DAD4CA;
  --rule-dark: #1B2A3D;
  --red:       #C78E2A;
  --red-pale:  #F6EED9;
  --pull-bg:   #F1ECE3;
  /* Neon-/Marker-Farben (wie Textmarker) – für Designelemente: Zahlen, Linien, Akzente */
  --neon-1:    #FF1F9C; /* Neonpink */
  --neon-2:    #FF7A00; /* Neonorange */
  --neon-3:    #12C926; /* Neongrün */
  --neon-4:    #F2B800; /* Neongelb */
  --neon-5:    #00C2D6; /* Neon-Türkis */
  --serif: 'Playfair Display', Georgia, serif;
  --body:  'Source Serif 4', Georgia, serif;
  --sans:  'Libre Franklin', 'Franklin Gothic Medium', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── PROGRESS BAR ─────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-1), var(--neon-2), var(--neon-3), var(--neon-4), var(--neon-5));
  z-index: 999;
  transition: width 0.1s linear;
}

/* ── MASTHEAD ─────────────────────────────────────── */
.masthead {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,250,247,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.masthead-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.masthead-logo {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-1);
  text-decoration: none;
}
.masthead-logo a {
  color: inherit;
  text-decoration: none;
}
.masthead-logo a:hover {
  text-decoration: underline;
}
.masthead-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}
.masthead-nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  text-decoration: none;
  transition: color 0.2s;
}
/* Neon-/Marker-Farben für die Navigation (wie Textmarker) */
.masthead-nav li:nth-child(1) a { color: #FF1F9C; } /* Neonpink */
.masthead-nav li:nth-child(2) a { color: #FF7A00; } /* Neonorange */
.masthead-nav li:nth-child(3) a { color: #12C926; } /* Neongrün */
.masthead-nav li:nth-child(4) a { color: #F2B800; } /* Neongelb */
.masthead-nav li:nth-child(5) a { color: #00C2D6; } /* Neon-Türkis */
.masthead-nav a:hover { color: var(--ink); }
.masthead-date {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--soft);
  letter-spacing: 0.05em;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 64px;
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-1);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards 0.1s;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--neon-1);
  opacity: 0.4;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) forwards 0.25s;
}
.hero-deck {
  font-family: var(--body);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--mid);
  max-width: 580px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease forwards 0.45s;
}
.hero-byline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--soft);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.65s;
}
.hero-byline strong { color: var(--ink); font-weight: 600; }
.hero-rule {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 48px auto 0;
  max-width: 300px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.8s;
}
.hero-rule::before, .hero-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.hero-rule-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon-3);
  margin: 0 12px;
}

/* ── ARTICLE WRAPPER ──────────────────────────────── */
.article-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

/* ── SECTION HEADS ────────────────────────────────── */
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-1);
  margin-bottom: 14px;
  display: block;
}
.article-wrap h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  margin: 72px 0 18px;
  padding-top: 52px;
  border-top: 1px solid var(--rule);
}
.article-wrap h2:first-of-type { padding-top: 0; border-top: none; margin-top: 0; }

/* Abschnittsnummern & Trennlinien in rotierenden Neon-/Marker-Farben */
.article-wrap > h2:nth-of-type(1) .section-label { color: var(--neon-1); }
.article-wrap > h2:nth-of-type(2) .section-label { color: var(--neon-2); }
.article-wrap > h2:nth-of-type(3) .section-label { color: var(--neon-3); }
.article-wrap > h2:nth-of-type(4) .section-label { color: var(--neon-4); }
.article-wrap > h2:nth-of-type(5) .section-label { color: var(--neon-5); }
.article-wrap > h2:nth-of-type(2) { border-top-color: var(--neon-2); }
.article-wrap > h2:nth-of-type(3) { border-top-color: var(--neon-3); }
.article-wrap > h2:nth-of-type(4) { border-top-color: var(--neon-4); }
.article-wrap > h2:nth-of-type(5) { border-top-color: var(--neon-5); }

/* ── PARAGRAPHS ───────────────────────────────────── */
.article-wrap p {
  font-size: 18px;
  line-height: 1.82;
  color: var(--mid);
  margin-bottom: 26px;
  font-weight: 300;
}
.article-wrap p strong {
  color: var(--ink);
  font-weight: 600;
}
sup {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--neon-2);
  cursor: default;
  vertical-align: super;
  line-height: 0;
  margin-left: 1px;
}

/* ── OPENING PARAGRAPH ────────────────────────────── */
.lede {
  font-size: 20px !important;
  line-height: 1.7 !important;
  color: var(--ink) !important;
  font-weight: 400 !important;
  font-style: italic;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 32px;
  margin-bottom: 40px !important;
}

/* ── STATS ────────────────────────────────────────── */
.stat-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 28px;
  align-items: center;
  background: var(--pull-bg);
  border-left: 4px solid var(--neon-2);
  padding: 28px 32px;
  margin: 40px 0;
  border-radius: 0 3px 3px 0;
}
.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
  color: var(--neon-2);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.stat-text {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--mid);
}
.stat-text strong { color: var(--ink); font-weight: 600; }

/* animated counter */
.count-target { display: inline; }

/* ── PULL QUOTE ───────────────────────────────────── */
.pull-quote {
  position: relative;
  background: var(--pull-bg);
  border-top: 3px solid var(--neon-3);
  border-bottom: 1px solid var(--rule);
  padding: 44px 48px 36px;
  margin: 44px -40px;
  text-align: center;
  overflow: hidden;
}
.pull-quote::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 160px;
  color: var(--rule);
  position: absolute;
  top: -24px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}
.pull-quote p {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink) !important;
  margin: 0 !important;
  position: relative;
}
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  font-style: normal;
}

/* ── EXT QUOTE ────────────────────────────────────── */
.ext-quote {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0 24px;
  margin: 36px 0;
}
.ext-quote p {
  font-family: var(--serif);
  font-size: 20px !important;
  font-style: italic !important;
  color: var(--ink) !important;
  font-weight: 400 !important;
  margin-bottom: 10px !important;
  line-height: 1.55 !important;
}
.ext-quote cite {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  font-style: normal;
}

/* ── IMPACT LIST ──────────────────────────────────── */
.impact-list {
  list-style: none;
  margin: 20px 0 32px;
  border-top: 1px solid var(--rule);
}
.impact-list li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--body);
  font-size: 16px;
  color: var(--mid);
  line-height: 1.65;
  position: relative;
  font-weight: 300;
}
.impact-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--neon-1);
  font-weight: 400;
}
.impact-list li:nth-child(5n+2)::before { color: var(--neon-2); }
.impact-list li:nth-child(5n+3)::before { color: var(--neon-3); }
.impact-list li:nth-child(5n+4)::before { color: var(--neon-4); }
.impact-list li:nth-child(5n+5)::before { color: var(--neon-5); }
.impact-list li strong { color: var(--ink); font-weight: 600; }

/* ── INFOGRAFIK ───────────────────────────────────── */
.infografik {
  margin: 48px -40px;
  background: #fff;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.infografik img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.infografik:hover img { transform: scale(1.015); }
.infografik figcaption {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--soft);
  padding: 10px 20px 12px;
  border-top: 1px solid var(--rule);
  letter-spacing: 0.05em;
}

/* ── CLOSING BLOCK (02B: editorial + NOEMIC strip) ── */
.closing {
  margin: 64px -40px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing-main {
  padding: 64px 56px 48px;
}
.closing-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-1);
  margin-bottom: 22px;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
  border: none;
  padding: 0;
}
.closing-headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}
.closing-intro {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--mid);
  max-width: 580px;
  margin-bottom: 40px;
}
.closing-signatures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.closing-sig {
  padding: 24px 32px 8px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.closing-sig:last-child {
  border-right: none;
  padding-left: 32px;
  padding-right: 0;
}
.closing-role {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 10px;
}
.closing-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.1;
}
.closing-bio {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--soft);
  margin: 0 0 14px 0;
}
.closing-sig a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--neon-3);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.closing-sig a:hover { color: var(--neon-3); }

.closing-noemic {
  background: var(--bg-dark);
  color: #fff;
  padding: 28px 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.closing-noemic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(0,194,214,0.22), transparent 55%);
  pointer-events: none;
}
.closing-noemic-left { position: relative; }
.closing-noemic-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon-5);
  margin-bottom: 6px;
}
.closing-noemic-brand {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.closing-noemic-brand em {
  color: var(--neon-5);
  font-style: italic;
}
.closing-noemic-desc {
  font-family: var(--body);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  position: relative;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.15);
  max-width: 360px;
}
.closing-noemic-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  position: relative;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}
.closing-noemic-cta::after {
  content: '→';
  color: var(--neon-5);
}
.closing-noemic-cta:hover {
  border-color: var(--neon-5);
  background: rgba(0,194,214,0.12);
}

/* ── AUTHORS (deprecated — kept for backward compat, unused) ── */
.authors {
  display: none;
}

/* ── FOOTNOTES ────────────────────────────────────── */
.footnotes {
  border-top: 2px solid var(--ink);
  padding-top: 28px;
  margin-top: 72px;
}
.footnotes-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-1);
  margin-bottom: 20px;
}
.fn {
  display: flex;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--soft);
  line-height: 1.6;
}
.fn:last-child { border-bottom: none; }
.fn-num {
  font-weight: 600;
  color: var(--neon-1);
  min-width: 30px;
  flex-shrink: 0;
}
/* Fußnotennummern in rotierenden Neon-/Marker-Farben (Titel ist 1. Kind) */
.footnotes > .fn:nth-child(5n+3) .fn-num { color: var(--neon-2); }
.footnotes > .fn:nth-child(5n+4) .fn-num { color: var(--neon-3); }
.footnotes > .fn:nth-child(5n+5) .fn-num { color: var(--neon-4); }
.footnotes > .fn:nth-child(5n+1) .fn-num { color: var(--neon-5); }
.fn a {
  color: var(--soft);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  transition: color 0.15s;
}
.fn a:hover { color: var(--ink); }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  border-top: 1px solid var(--rule);
  padding: 32px 40px;
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--soft);
  letter-spacing: 0.06em;
  margin-top: 60px;
}
footer a { color: var(--soft); text-decoration: none; }
footer a:hover { color: var(--ink); }

/* ── SCROLL REVEAL ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.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; }

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── AFROBAROMETER CHART (V. Vor Ort) ─────────────── */
.afro-fig {
  margin: 48px -40px;
  background: #fff;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 40px 40px 28px;
  --china: #C0392B;
  --russia: #444444;
  --germany: #5B4EC8;
  --eu: #1A6FA8;
  --france: #1A8C5B;
  --usa: #C77B14;
}
.afro-fig .afro-head { margin-bottom: 26px; }
.afro-fig .afro-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 10px;
}
.afro-fig .afro-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 8px;
}
.afro-fig .afro-subtitle {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--soft);
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
}

.afro-fig .afro-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.afro-fig .afro-btn {
  font-family: var(--sans);
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--soft);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.afro-fig .afro-btn:hover { border-color: #aaa; color: var(--ink); }
.afro-fig .afro-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.afro-fig .afro-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 28px;
}
.afro-fig .afro-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--soft);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 2px;
  transition: background 0.2s;
}
.afro-fig .afro-legend-item:hover { background: rgba(0,0,0,0.04); }
.afro-fig .afro-legend-item.active { color: var(--ink); }
.afro-fig .afro-legend-line {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}
.afro-fig .afro-legend-line.dashed::after,
.afro-fig .afro-legend-line.dotted::after {
  content: '';
  position: absolute;
  inset: 0;
}
.afro-fig .afro-legend-line.dashed::after {
  background: repeating-linear-gradient(90deg, transparent 0 3px, #fff 3px 6px);
}
.afro-fig .afro-legend-line.dotted::after {
  background: repeating-linear-gradient(90deg, transparent 0 2px, #fff 2px 5px);
}

.afro-fig svg.afro-svg {
  width: 100%;
  height: auto;
  overflow: visible;
  display: block;
}
.afro-fig .grid-line { stroke: var(--rule); stroke-width: 0.5; }
.afro-fig .axis-label,
.afro-fig .tick-year {
  font-family: var(--sans);
  font-size: 11px;
  fill: var(--soft);
}
.afro-fig .tick-year { text-anchor: middle; }

.afro-fig .data-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}
.afro-fig .data-line.faded { opacity: 0.12; }

.afro-fig .dot { opacity: 0; transition: opacity 0.2s, r 0.15s; }
.afro-fig .dot.visible { opacity: 1; }
.afro-fig .dot:hover { r: 6; }
.afro-fig .dot.faded { opacity: 0.12; }

.afro-fig .end-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s;
}
.afro-fig .end-label.visible { opacity: 1; }
.afro-fig .end-label.faded { opacity: 0.18; }

.afro-fig .crossing-zone { fill: rgba(100,100,100,0.055); }
.afro-fig .zone-label {
  font-family: var(--sans);
  font-size: 10px;
  fill: #999;
  font-style: italic;
}
.afro-fig .highlight-band { opacity: 0; transition: opacity 0.5s; }
.afro-fig .highlight-band.show { opacity: 1; }

.afro-fig .afro-plot { position: relative; }
.afro-fig .afro-tooltip {
  position: absolute;
  background: var(--bg-dark);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  line-height: 1.6;
  white-space: nowrap;
  z-index: 5;
}
.afro-fig .afro-tooltip.visible { opacity: 1; }

.afro-fig .afro-foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}
.afro-fig .afro-source {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--soft);
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.afro-fig .afro-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.afro-fig .afro-badge {
  font-family: var(--sans);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 680px) {
  html { font-size: 16px; }
  .masthead-inner { padding: 0 20px; }
  .masthead-nav { display: none; }
  .hero { padding: 60px 20px 48px; }
  .article-wrap { padding: 48px 20px 80px; }
  .pull-quote { margin: 36px 0; padding: 32px 24px; }
  .infografik { margin: 36px 0; }
  .afro-fig { margin: 36px 0; padding: 28px 20px 20px; }
  .closing { margin: 48px 0; }
  .closing-main { padding: 40px 24px 32px; }
  .closing-signatures { grid-template-columns: 1fr; }
  .closing-sig { padding: 20px 0; border-right: none; border-bottom: 1px solid var(--rule); }
  .closing-sig:last-child { padding: 20px 0 4px; border-bottom: none; }
  .closing-noemic { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; text-align: left; }
  .closing-noemic-desc { padding-left: 0; border-left: none; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12); }
  .closing-noemic-cta { justify-self: start; }
  .authors { grid-template-columns: 1fr; }
}
