:root {
  --paper: #f7f4ed;
  --paper-2: #efe9dc;
  --ink: #171714;
  --muted: #625f58;
  --line: #cbc4b7;
  --line-strong: #aaa294;
  --red: #a12020;
  --red-soft: #f0d8d3;
  --blue: #235a70;
  --blue-soft: #d8e7ea;
  --green: #4c6752;
  --green-soft: #dfe8df;
  --amber: #86601b;
  --amber-soft: #efe4c7;
  --white: #fffdfa;
  --max: 1180px;
  --radius: 16px;
  --shadow: 0 10px 28px rgba(34, 31, 26, .07);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: inherit; text-underline-offset: .18em; text-decoration-thickness: .08em; }
a:hover { text-decoration-thickness: .14em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 65%, transparent);
}
.header-inner {
  max-width: var(--max);
  margin: auto;
  min-height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 780;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 12px;
  background: var(--white);
}
.top-nav { display: flex; gap: 8px; align-items: center; }
.lang-link, .nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .35rem .65rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: .86rem;
  color: var(--muted);
}
.lang-link[aria-current="page"], .lang-link:hover, .nav-link:hover {
  background: var(--paper-2);
  color: var(--ink);
}

main { overflow: clip; }
.wrap { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.hero { padding: clamp(58px, 8vw, 112px) 0 66px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
h1 {
  max-width: 960px;
  margin: 18px 0 22px;
  font-size: clamp(2.85rem, 7vw, 6.4rem);
  line-height: .94;
  letter-spacing: -.067em;
  font-weight: 820;
}
.hero-deck {
  max-width: 850px;
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.45;
  color: #3d3a34;
}
.hero-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  align-items: center;
  color: var(--muted);
  font-size: .83rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.42);
  border-radius: 999px;
  padding: .2rem .62rem;
}
.pill strong { color: var(--ink); }

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-stat {
  background: var(--white);
  padding: 24px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-stat.primary { background: var(--ink); color: white; }
.stat-number {
  display: block;
  font-size: clamp(2.15rem, 4.8vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 820;
}
.hero-stat:not(.primary) .stat-number { font-size: clamp(1.8rem, 3vw, 3.15rem); }
.stat-label { margin-top: 18px; font-size: .88rem; line-height: 1.35; color: var(--muted); }
.primary .stat-label { color: #d8d5cf; }
.stat-source { display: block; margin-top: 8px; font-size: .72rem; opacity: .78; }

.section { padding: 78px 0; border-top: 1px solid var(--line); }
.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 36px;
}
.section-kicker {
  margin: 0 0 9px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}
h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.7vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.052em;
}
.section-intro { margin: 0; color: var(--muted); font-size: 1.04rem; }
.section-intro strong { color: var(--ink); }

.thesis-card {
  border: 1px solid var(--line-strong);
  background: var(--white);
  border-radius: 22px;
  padding: clamp(25px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.thesis-quote {
  margin: 0;
  max-width: 970px;
  font-size: clamp(1.65rem, 3.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 730;
}
.thesis-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}
.source-link { font-weight: 700; color: var(--ink); }

.route-shell {
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.route-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.route-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.route-tab {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: .55rem .9rem;
  font-weight: 760;
  cursor: pointer;
}
.route-tab[aria-selected="true"] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.route-legend { color: var(--muted); font-size: .8rem; }
.route-panel { padding: clamp(22px, 4vw, 42px); }
.js .route-panel[hidden] { display: none; }
.route-title-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 25px;
  margin-bottom: 28px;
}
.route-title-row h3 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.45rem); letter-spacing: -.035em; }
.route-title-row p { margin: 5px 0 0; color: var(--muted); max-width: 670px; }
.route-badge {
  flex: none;
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 1px solid currentColor;
}
.route-badge.bank { color: var(--blue); background: var(--blue-soft); }
.route-badge.crypto { color: var(--red); background: var(--red-soft); }
.route-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 12px 0 10px;
}
.route-track::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 43px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 14px, transparent 14px 24px);
}
.route-node {
  position: relative;
  z-index: 1;
  min-height: 156px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.route-node::before {
  content: attr(data-step);
  position: absolute;
  top: -8px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: .72rem;
  font-weight: 800;
}
.route-node h4 { margin: 19px 0 7px; font-size: .98rem; line-height: 1.25; }
.route-node p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.45; }
.route-node.pressured { background: var(--amber-soft); border-color: var(--amber); }
.route-node.blocked { opacity: .58; border-style: dashed; }
.route-node.blocked::after {
  content: "×";
  position: absolute;
  right: 10px;
  top: 7px;
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 500;
}
.route-footer {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  font-size: .87rem;
  color: var(--muted);
}
.route-footer strong { color: var(--ink); }

.simulator {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.sim-controls { padding: clamp(22px, 3.5vw, 38px); border-right: 1px solid var(--line); }
.sim-controls h3, .sim-output h3 { margin: 0 0 9px; font-size: 1.4rem; letter-spacing: -.025em; }
.sim-controls > p, .sim-output > p { margin: 0 0 22px; color: var(--muted); font-size: .9rem; }
.interventions { display: grid; gap: 10px; }
.intervention {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 13px;
  padding: 14px 15px;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
}
.intervention:hover { border-color: var(--line-strong); }
.intervention[aria-pressed="true"] { border-color: var(--red); background: #fbf2ef; }
.check {
  width: 20px;
  height: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  font-size: 13px;
}
.intervention[aria-pressed="true"] .check { background: var(--red); color: white; border-color: var(--red); }
.intervention-title { display: block; font-weight: 780; line-height: 1.28; }
.intervention-kind { display: block; color: var(--muted); font-size: .75rem; margin-top: 3px; }
.reset-btn {
  margin-top: 15px;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: .2em;
  cursor: pointer;
  padding: 4px 0;
}
.sim-output { padding: clamp(22px, 3.5vw, 38px); background: #faf8f3; }
.pressure-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  margin-bottom: 18px;
}
.meter-bars { display: flex; gap: 4px; }
.meter-bars i { width: 20px; height: 9px; background: var(--line); border-radius: 99px; }
.meter-bars i.on { background: var(--red); }
.meter-label { font-size: .83rem; font-weight: 780; }
.effect-list { display: grid; gap: 10px; }
.effect {
  border-left: 3px solid var(--line-strong);
  padding: 11px 0 11px 14px;
}
.effect strong { display: block; font-size: .9rem; }
.effect span { color: var(--muted); font-size: .84rem; }
.effect.observed { border-left-color: var(--blue); }
.effect.analysis { border-left-color: var(--amber); }
.sim-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}

.volume-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.volume-card, .caveat-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: clamp(22px, 3.5vw, 34px);
}
.volume-card h3, .caveat-card h3 { margin: 0 0 20px; font-size: 1.35rem; }
.volume-step { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 15px 0; border-top: 1px solid var(--line); }
.volume-step:first-of-type { border-top: 0; padding-top: 0; }
.volume-value { font-weight: 820; font-size: 1.25rem; letter-spacing: -.03em; }
.volume-text { font-size: .9rem; color: var(--muted); }
.volume-text strong { color: var(--ink); }
.caveat-big {
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -.035em;
  font-weight: 740;
  margin: 0 0 18px;
}
.caveat-card p { color: var(--muted); }

.timeline { border-top: 1px solid var(--line-strong); }
.timeline-row {
  display: grid;
  grid-template-columns: 130px 1fr 160px;
  gap: 26px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.timeline-date { font-weight: 790; font-variant-numeric: tabular-nums; }
.timeline-text { color: var(--muted); }
.timeline-text strong { color: var(--ink); }
.timeline-type { justify-self: end; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 800; color: var(--muted); }
.timeline-type.enforcement { color: var(--red); }
.timeline-type.measurement { color: var(--blue); }
.timeline-type.investigation { color: var(--amber); }

.moldova-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
}
.moldova-glyph {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.moldova-glyph span { font-size: 3.6rem; font-weight: 820; letter-spacing: -.08em; }
.moldova-glyph::after { content: ""; position: absolute; width: 75%; height: 3px; background: var(--red); transform: rotate(-22deg); }
.moldova-card h3 { margin: 0 0 10px; font-size: 1.65rem; letter-spacing: -.035em; }
.moldova-card p { margin: 0 0 13px; color: var(--muted); }

.claim-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.claim-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 20px;
}
.claim-tag { display: inline-flex; border-radius: 999px; padding: .2rem .55rem; font-size: .69rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 13px; }
.claim-tag.official { color: var(--green); background: var(--green-soft); }
.claim-tag.analysis { color: var(--blue); background: var(--blue-soft); }
.claim-tag.company { color: var(--red); background: var(--red-soft); }
.claim-tag.inference { color: var(--amber); background: var(--amber-soft); }
.claim-card h3 { margin: 0 0 8px; font-size: 1rem; line-height: 1.3; }
.claim-card p { margin: 0; color: var(--muted); font-size: .84rem; }

.sources-list { display: grid; gap: 0; border-top: 1px solid var(--line-strong); }
.source-row {
  display: grid;
  grid-template-columns: 120px 170px 1fr;
  gap: 22px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.source-date { color: var(--muted); font-variant-numeric: tabular-nums; font-size: .85rem; }
.source-publisher { font-weight: 790; font-size: .9rem; }
.source-title { font-size: .9rem; color: var(--muted); }
.source-title a { color: var(--ink); font-weight: 650; }
.source-use { display: block; margin-top: 4px; font-size: .78rem; color: var(--muted); }

.method-note {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 16px;
  color: var(--muted);
  font-size: .87rem;
}
.method-note strong { color: var(--ink); }

.site-footer { border-top: 1px solid var(--line); padding: 34px 0 52px; color: var(--muted); font-size: .82rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.back-to-top { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 44px; }
.js .back-to-top {
  position: fixed;
  z-index: 60;
  right: max(16px, env(safe-area-inset-right, 0px) + 16px);
  bottom: calc(var(--back-to-top-bottom, 18px) + env(safe-area-inset-bottom, 0px));
  min-width: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px rgba(34, 31, 26, .18);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.js .back-to-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.js .back-to-top:hover { background: var(--blue); color: white; text-decoration: none; }

.no-js-note { display: block; margin: 15px 0; padding: 12px 14px; background: var(--amber-soft); border-radius: 10px; font-size: .84rem; }
.js .no-js-note { display: none; }
.js .static-intervention-notes { display: none; }
.static-intervention-notes { margin-top: 20px; }
.static-intervention-notes details { border-top: 1px solid var(--line); padding: 10px 0; }

@media (max-width: 980px) {
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat.primary { grid-column: 1 / -1; }
  .section-header { grid-template-columns: 1fr; gap: 18px; }
  .route-track { grid-template-columns: 1fr; gap: 12px; padding-left: 22px; }
  .route-track::before { top: 14px; bottom: 14px; left: 35px; right: auto; height: auto; width: 3px; background: repeating-linear-gradient(180deg, var(--line-strong) 0 14px, transparent 14px 24px); }
  .route-node { min-height: 0; padding-left: 24px; }
  .route-node::before { top: 18px; left: -1px; transform: translateX(-50%); }
  .route-node h4 { margin-top: 0; }
  .simulator { grid-template-columns: 1fr; }
  .sim-controls { border-right: 0; border-bottom: 1px solid var(--line); }
  .volume-grid { grid-template-columns: 1fr; }
  .claim-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 28px, var(--max)); }
  .header-inner { padding: 0 14px; min-height: 54px; }
  .nav-link { display: none; }
  .hero { padding-top: 54px; }
  h1 { font-size: clamp(2.8rem, 16vw, 4.55rem); }
  .hero-deck { font-size: 1.08rem; }
  .hero-stat-grid { grid-template-columns: 1fr; }
  .hero-stat.primary { grid-column: auto; }
  .hero-stat { min-height: 125px; padding: 20px; }
  .section { padding: 58px 0; }
  h2 { font-size: clamp(2.15rem, 12vw, 3.5rem); }
  .thesis-note { grid-template-columns: 1fr; gap: 12px; }
  .route-toolbar { align-items: flex-start; }
  .route-legend { width: 100%; }
  .route-title-row { flex-direction: column-reverse; gap: 12px; }
  .route-footer { grid-template-columns: 1fr; gap: 12px; }
  .timeline-row { grid-template-columns: 1fr; gap: 5px; padding: 18px 0; }
  .timeline-type { justify-self: start; order: -1; }
  .moldova-card { grid-template-columns: 1fr; }
  .moldova-glyph { width: 120px; }
  .claim-grid { grid-template-columns: 1fr; }
  .source-row { grid-template-columns: 1fr; gap: 3px; padding: 16px 0; }
  .source-date { font-size: .76rem; }
  .volume-step { grid-template-columns: 80px 1fr; gap: 12px; }
  .js .back-to-top { right: max(14px, env(safe-area-inset-right, 0px) + 14px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

@media print {
  .site-header, .route-toolbar, .sim-controls, .reset-btn { display: none !important; }
  body { background: white; color: black; font-size: 11pt; }
  .section { padding: 26pt 0; break-inside: avoid; }
  .wrap { width: 100%; max-width: none; }
  .route-panel[hidden] { display: block !important; }
  a { text-decoration: none; }
  .hero-stat-grid, .route-shell, .thesis-card, .simulator, .volume-card, .caveat-card, .moldova-card, .claim-card { box-shadow: none; }
}
.sr-only { position:absolute !important; width:1px !important; height:1px !important; padding:0 !important; margin:-1px !important; overflow:hidden !important; clip:rect(0,0,0,0) !important; white-space:nowrap !important; border:0 !important; }
html:not(.js) .route-panel[hidden] { display: block !important; }
html:not(.js) .intervention { cursor: default; }
html:not(.js) .reset-btn { display: none; }
