:root {
  --ink: #16212b;
  --muted: #60707d;
  --paper: #f4f5f2;
  --surface: #ffffff;
  --navy: #0f293d;
  --navy-2: #173b54;
  --line: #d8dedf;
  --amber: #c88b28;
  --amber-soft: #f3e7cd;
  --red: #b64e43;
  --red-soft: #f2dcda;
  --green: #477565;
  --green-soft: #dce9e3;
  --shadow: 0 16px 50px rgba(15, 41, 61, 0.08);
  --radius: 3px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(15, 41, 61, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 40px;
  font: 16px/1.6 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }
a:hover { color: var(--navy-2); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 20;
  padding: .65rem 1rem;
  background: var(--surface);
  color: var(--ink);
}

.skip-link:focus { left: 1rem; top: 1rem; }

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  color: white;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.masthead {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  text-decoration: none;
}

.brand-mark {
  font: 700 1.12rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
}

.brand-name {
  color: #b8c7d1;
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav { display: flex; gap: 1.4rem; }
.nav a {
  color: #d6e0e6;
  text-decoration: none;
  font-size: .88rem;
}

.nav a[aria-current="page"], .nav a:hover { color: white; }

.report-head {
  color: white;
  background: linear-gradient(120deg, var(--navy) 0%, #123349 70%, #173e56 100%);
  padding: 66px 0 70px;
}

.kicker {
  margin: 0 0 1rem;
  color: #b8c7d1;
  font: 650 .76rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 70px;
  align-items: end;
}

h1, h2, h3 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  text-wrap: balance;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.65rem, 7vw, 5.35rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.045em;
}

.dek {
  max-width: 760px;
  margin: 1.6rem 0 0;
  color: #d7e1e7;
  font-size: 1.08rem;
  line-height: 1.65;
}

.issue-card {
  padding: 1.5rem 0 0 1.5rem;
  border-left: 1px solid rgba(255,255,255,.35);
}

.issue-card dl { margin: 0; }
.issue-card div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1rem;
  padding: .44rem 0;
}
.issue-card dt { color: #9fb1bd; font-size: .78rem; }
.issue-card dd { margin: 0; font-size: .86rem; }

main { padding: 54px 0 90px; }

.status-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: -86px;
  position: relative;
}

.status-ribbon article {
  min-height: 144px;
  padding: 1.65rem 1.8rem;
  border-right: 1px solid var(--line);
}

.status-ribbon article:last-child { border-right: 0; }
.status-ribbon .label {
  color: var(--muted);
  display: block;
  font: 650 .72rem/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status-ribbon strong {
  display: block;
  margin-top: .65rem;
  font: 500 1.32rem/1.25 ui-serif, Georgia, serif;
}

.history-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: .85rem 1rem;
  color: var(--muted);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  font-size: .82rem;
}

.history-stepper a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.history-stepper a:hover { color: var(--navy-2); }

.section { padding-top: 76px; }
.section-head {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 28px;
  align-items: start;
}

.section-index {
  color: var(--muted);
  font: 650 .74rem/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.section-intro {
  max-width: 800px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.table-wrap {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 35px rgba(15,41,61,.045);
}

.dashboard {
  width: 100%;
  border-collapse: collapse;
}

.dashboard th {
  padding: .85rem 1rem;
  color: #d5e1e7;
  background: var(--navy);
  text-align: left;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.dashboard td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.dashboard tbody tr:last-child td { border-bottom: 0; }
.dashboard tbody tr:hover { background: #f9faf8; }
.indicator-name { font-weight: 700; white-space: nowrap; }
.assessment { color: #42525e; font-size: .91rem; line-height: 1.5; }

.score {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 72px;
  white-space: nowrap;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b8c2c7;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}

.dot.amber { background: var(--amber); }
.dot.red { background: var(--red); }
.dot.green { background: var(--green); }
.dot.empty { background: #e5e9e8; }

.trend {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--muted);
  font-size: .82rem;
  white-space: nowrap;
}
.trend-icon { font-size: 1rem; color: var(--navy-2); }
.trend.down .trend-icon { color: var(--green); }
.trend.mixed .trend-icon { color: var(--amber); }

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.4rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: .78rem;
}
.legend span { display: inline-flex; align-items: center; gap: .42rem; }

.change-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.change-card {
  position: relative;
  padding: 1.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
}
.change-card.red { border-top-color: var(--red); }
.change-card.amber { border-top-color: var(--amber); }
.change-card.green { border-top-color: var(--green); }
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--muted);
  font: 650 .7rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.change-card h3 {
  margin: 0 0 .7rem;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.16;
}
.change-card p { margin: 0; color: #42525e; }
.source-weight {
  display: block;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: .76rem;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--surface);
}

.split-panel > article { padding: 2rem; }
.split-panel > article + article { border-left: 1px solid var(--line); }
.split-panel h3 { margin: 0; font-size: 1.55rem; font-weight: 600; }
.split-panel ul { margin: 1.25rem 0 0; padding: 0; list-style: none; }
.split-panel li {
  position: relative;
  padding: .72rem 0 .72rem 1.6rem;
  border-top: 1px solid var(--line);
  color: #41515d;
}
.split-panel li::before {
  content: "";
  position: absolute;
  left: .1rem;
  top: 1.3rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.split-panel .interpretation li::before { background: var(--amber); }

.loop-panel {
  padding: 2.2rem;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.loop-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}
.loop-top h3 { margin: 0; font-size: 2rem; font-weight: 500; }
.loop-top p { max-width: 690px; margin: .75rem 0 0; color: #c6d3da; }
.verdict {
  flex: 0 0 auto;
  padding: .55rem .8rem;
  color: #fee8b9;
  border: 1px solid rgba(243, 190, 82, .55);
  font: 650 .75rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.loop-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 2.2rem;
  border-top: 1px solid rgba(255,255,255,.2);
}

.loop-step {
  position: relative;
  padding: 1.4rem 1.15rem 1.1rem 0;
  min-height: 145px;
}
.loop-step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #728794;
  box-shadow: 0 0 0 5px var(--navy);
}
.loop-step.observed::before { background: #77ae96; }
.loop-step.partial::before { background: #e1a949; }
.loop-step .step-no { color: #8295a1; font: .72rem/1 ui-monospace, monospace; }
.loop-step strong { display: block; margin-top: .65rem; font-size: .86rem; line-height: 1.35; }
.loop-step em { display: block; margin-top: .55rem; color: #9eb1bd; font-size: .73rem; font-style: normal; }
.trigger {
  margin: .8rem 0 0;
  padding: 1.2rem 1.35rem;
  background: rgba(255,255,255,.06);
  border-left: 3px solid var(--amber);
  color: #dbe5e9;
}

.signal {
  display: grid;
  grid-template-columns: 205px 1fr;
  gap: 40px;
  padding: 1.8rem 2rem;
  background: var(--amber-soft);
  border: 1px solid #ddc89f;
}
.signal time {
  color: #7f6331;
  font: 650 .72rem/1.5 ui-monospace, monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.signal h3 { margin: 0; font-size: 1.55rem; font-weight: 600; }
.signal p { margin: .65rem 0 0; color: #554a36; }

.history-explorer {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  padding: 2rem;
  color: white;
  background:
    radial-gradient(circle at 82% 0%, rgba(73, 125, 151, .24), transparent 34%),
    linear-gradient(145deg, #0c2436, #102f44 62%, #0d293c);
  border: 1px solid #25485d;
  box-shadow: var(--shadow);
}

.timeline-heading,
.matrix-heading,
.fingerprint-head,
.archive-subhead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.timeline-heading h3,
.matrix-heading h3,
.archive-subhead h3 {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 550;
  line-height: 1.15;
}

.timeline-heading > p,
.matrix-heading > p {
  max-width: 430px;
  margin: 0;
  color: #aebfc9;
  font-size: .86rem;
  text-align: right;
}

.timeline-scroll {
  overflow-x: auto;
  margin: 2.1rem -2rem 0;
  padding: .3rem 2rem .9rem;
  scrollbar-color: #486478 transparent;
}

.timeline-track {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(var(--timeline-count), minmax(150px, 1fr));
  min-width: max(690px, calc(var(--timeline-count) * 170px));
}

.timeline-track::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 7%;
  right: 7%;
  top: 41px;
  height: 2px;
  background: linear-gradient(90deg, #8b7345 0%, #be8b35 48%, #bd6758 100%);
  opacity: .85;
}

.timeline-point {
  display: grid;
  justify-items: center;
  gap: .52rem;
  padding: 0 .8rem;
  color: #aebec8;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.timeline-point:hover,
.timeline-point:focus-visible,
.timeline-point.selected { color: white; }

.timeline-point:focus-visible { outline: 2px solid #f4c66f; outline-offset: 5px; }

.timeline-date {
  min-height: 24px;
  font: 650 .74rem/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .03em;
}

.timeline-node {
  width: 17px;
  height: 17px;
  border: 3px solid #18394d;
  border-radius: 50%;
  background: #c8953e;
  box-shadow: 0 0 0 2px rgba(219, 173, 91, .55);
  transition: transform .18s ease, box-shadow .18s ease;
}

.timeline-point.selected .timeline-node {
  transform: scale(1.22);
  background: #f0bf63;
  box-shadow: 0 0 0 4px rgba(240, 191, 99, .2), 0 0 24px rgba(240, 191, 99, .45);
}

.timeline-point.current .timeline-node {
  background: #da6658;
  box-shadow: 0 0 0 4px rgba(218, 102, 88, .2), 0 0 25px rgba(218, 102, 88, .38);
}

.timeline-kind {
  max-width: 130px;
  font-size: .76rem;
}

.timeline-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  margin-top: 1.1rem;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
}

.timeline-story,
.timeline-fingerprint { padding: 1.75rem; }
.timeline-fingerprint { border-left: 1px solid rgba(255,255,255,.13); }

.timeline-meta {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #9fb2be;
  font: 650 .7rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.timeline-meta span::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin-left: .65rem;
  vertical-align: middle;
  border-radius: 50%;
  background: #7d94a1;
}

.timeline-story h3,
.timeline-fingerprint h3 {
  margin: .65rem 0 0;
  font-size: 1.55rem;
  font-weight: 550;
  line-height: 1.18;
}

.timeline-story > p {
  margin: .8rem 0 0;
  color: #c7d3d9;
  font-size: .91rem;
}

.change-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1.25rem;
}

.change-tags span {
  padding: .35rem .55rem;
  color: #d8e1e5;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .73rem;
}

.timeline-open {
  display: inline-block;
  margin-top: 1.35rem;
  color: #f3cc82;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.timeline-open[hidden] { display: none; }
.fingerprint-head { align-items: start; }
.fingerprint-head .eyebrow { color: #9fb2be; }
.fingerprint-head > span { color: #879daa; font-size: .72rem; }

.fingerprint-list { margin-top: 1rem; }
.fingerprint-row {
  display: grid;
  grid-template-columns: minmax(128px, 1fr) auto 20px auto;
  gap: .55rem;
  align-items: center;
  min-height: 30px;
  border-top: 1px solid rgba(255,255,255,.085);
  color: #d6e0e5;
  font-size: .72rem;
}

.fingerprint-row > i { color: #69818f; font-style: normal; text-align: center; }
.fingerprint-row .score { min-width: 49px; gap: 3px; }
.fingerprint-row .dot { width: 7px; height: 7px; }
.history-matrix-wrap {
  margin-bottom: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.matrix-heading { padding: 1.5rem 1.7rem; border-bottom: 1px solid var(--line); }
.matrix-heading > p { color: var(--muted); }
.matrix-scroll { overflow-x: auto; }
.history-matrix { width: 100%; min-width: 690px; border-collapse: collapse; }
.history-matrix th,
.history-matrix td { padding: .78rem 1rem; border-bottom: 1px solid var(--line); text-align: left; }
.history-matrix thead th {
  color: var(--muted);
  background: #f0f2f0;
  font: 650 .69rem/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.history-matrix tbody th { min-width: 210px; font-size: .83rem; }
.history-matrix tbody tr:last-child th,
.history-matrix tbody tr:last-child td { border-bottom: 0; }
.history-matrix .score { min-width: 55px; }
.history-matrix .dot { width: 8px; height: 8px; }
.archive-subhead { margin: 3rem 0 1.1rem; }
.archive-subhead .eyebrow { margin: 0; }
.archive-subhead h3 { max-width: 620px; }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.archive-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.archive-card:hover {
  color: inherit;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.archive-card time { color: var(--muted); font: .75rem/1.3 ui-monospace, monospace; }
.archive-card h3 { margin: .85rem 0 .55rem; font-size: 1.45rem; line-height: 1.15; }
.archive-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.archive-card .arrow { margin-top: auto; padding-top: 1.2rem; font-weight: 700; }

.source-list { border-top: 1px solid var(--line); }
.source-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 190px;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.source-row:hover { color: var(--navy-2); }
.source-number { color: var(--muted); font: .73rem/1 ui-monospace, monospace; }
.source-title { font-weight: 650; }
.source-meta { color: var(--muted); font-size: .78rem; text-align: right; }

.method {
  margin-top: 2.2rem;
  padding: 1.3rem 1.5rem;
  border-left: 3px solid var(--navy-2);
  background: #e9edec;
  color: #43535f;
  font-size: .88rem;
}
.method strong { color: var(--ink); }

.site-footer {
  padding: 2rem 0 3rem;
  color: #a8b8c2;
  background: var(--navy);
}
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; }
.site-footer p { margin: 0; font-size: .78rem; }

.snapshot-head { padding: 48px 0 54px; }
.snapshot-head h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.snapshot-summary {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 28px;
}
.snapshot-summary > article {
  padding: 1.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
}
.snapshot-summary h2 { font-size: 1.7rem; }
.snapshot-summary ul { margin: .8rem 0 0; padding-left: 1.2rem; }
.back-link { display: inline-block; margin-bottom: 1rem; color: var(--muted); text-decoration: none; }
.snapshot-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.snapshot-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .55rem .8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 700;
}
.snapshot-nav .disabled { color: #8c989e; font-size: .82rem; }

@media (max-width: 900px) {
  .report-grid { grid-template-columns: 1fr; gap: 36px; }
  .issue-card { padding-top: 0; }
  .status-ribbon { grid-template-columns: 1fr; margin-top: -54px; }
  .status-ribbon article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .status-ribbon article:last-child { border-bottom: 0; }
  .section-head { grid-template-columns: 1fr; gap: 10px; }
  .loop-steps { grid-template-columns: repeat(3, 1fr); row-gap: 1rem; }
  .archive-grid { grid-template-columns: 1fr; }
  .history-stepper { align-items: flex-start; flex-direction: column; }
  .timeline-detail { grid-template-columns: 1fr; }
  .timeline-fingerprint { border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
}

@media (max-width: 700px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .masthead { min-height: 68px; }
  .brand-name { display: none; }
  .nav { gap: .9rem; }
  .nav a { font-size: .8rem; }
  .report-head { padding: 48px 0 70px; }
  .dek { font-size: 1rem; }
  main { padding-top: 34px; }
  .section { padding-top: 58px; }
  .change-grid, .split-panel, .signal, .snapshot-summary { grid-template-columns: 1fr; }
  .split-panel > article + article { border-left: 0; border-top: 1px solid var(--line); }
  .signal { gap: .7rem; }
  .loop-panel { padding: 1.5rem; }
  .loop-top { flex-direction: column; }
  .loop-steps { grid-template-columns: 1fr 1fr; }
  .source-row { grid-template-columns: 32px 1fr; }
  .source-meta { grid-column: 2; text-align: left; }
  .footer-grid { flex-direction: column; }
  .history-explorer { padding: 1.3rem; }
  .timeline-heading, .matrix-heading, .archive-subhead { align-items: flex-start; flex-direction: column; gap: .7rem; }
  .timeline-heading > p, .matrix-heading > p { text-align: left; }
  .timeline-scroll { margin-left: -1.3rem; margin-right: -1.3rem; padding-left: 1.3rem; padding-right: 1.3rem; }
  .timeline-detail { margin-top: .6rem; }
  .timeline-story, .timeline-fingerprint { padding: 1.25rem; }
  .fingerprint-row { grid-template-columns: minmax(110px, 1fr) auto 16px auto; }
  .matrix-heading { padding: 1.25rem; }

  .table-wrap { overflow: visible; background: transparent; border: 0; box-shadow: none; }
  .dashboard, .dashboard tbody { display: block; }
  .dashboard thead { position: absolute; left: -9999px; }
  .dashboard tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: .7rem;
    padding: 1.05rem;
    background: var(--surface);
    border: 1px solid var(--line);
  }
  .dashboard td { display: block; padding: .35rem 0; border: 0; }
  .dashboard td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: .12rem;
    color: var(--muted);
    font: 650 .66rem/1.3 ui-monospace, monospace;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .dashboard td:first-child, .dashboard td:last-child { grid-column: 1 / -1; }
  .dashboard td:last-child { padding-top: .8rem; }
  .indicator-name { white-space: normal; font-size: 1.05rem; }
}

@media print {
  .site-header, .nav, .site-footer { display: none; }
  body { background: white; color: black; }
  .report-head, .loop-panel { color: black; background: white; }
  .report-head { padding: 20px 0; border-bottom: 2px solid black; }
  .dek, .loop-top p { color: #333; }
  .status-ribbon { margin-top: 20px; box-shadow: none; }
  .section { break-inside: avoid; }
  a { text-decoration: none; }
  .history-explorer { color: black; background: white; box-shadow: none; }
  .timeline-heading > p, .timeline-story > p { color: #333; }
}

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