:root {
  --night: #050710;
  --panel: #0c1120;
  --panel-soft: #131421;
  --line: #3f4960;
  --gold: #deb85d;
  --gold-bright: #ffe29a;
  --blue: #8eb3fa;
  --text: #cbd1dc;
  --muted: #9ca8bd;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--night);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: radial-gradient(circle at 50% 0, #172342 0, #080b16 42rem, var(--night) 80rem);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-text-size-adjust: 100%;
}

a { color: #9dc2ff; }
a:hover { color: #d1e2ff; }
a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.report {
  width: min(980px, calc(100% - 32px));
  margin: auto;
  padding: 46px 0 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 54px;
  font: 13px/1.4 "Courier New", monospace;
  letter-spacing: .08em;
}

.eyebrow {
  color: #84a9ef;
  font: 700 13px/1.4 "Courier New", monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.play {
  display: inline-block;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
  padding: 10px 14px;
  box-shadow: 3px 3px 0 #60461d;
  color: #ffe4a0;
  font-weight: 700;
  text-decoration: none;
}

.play:hover {
  background: #211b10;
  color: #fff0bd;
}

.hero {
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid #725a2d;
  padding: 30px 0 28px;
}

.hero h1 {
  max-width: 780px;
  margin: 8px 0 16px;
  color: #fff1c6;
  font: 700 clamp(38px, 7vw, 72px)/.95 Georgia, serif;
  text-shadow: 3px 3px 0 #563e20;
}

.lede {
  max-width: 780px;
  margin: 0;
  color: #c8d0df;
  font-size: 18px;
  line-height: 1.65;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 28px 0 52px;
  border: 1px solid #38445e;
  background: #38445e;
}

.fact {
  min-width: 0;
  min-height: 118px;
  padding: 20px 16px;
  background: var(--panel);
}

.fact b {
  display: block;
  margin: 7px 0;
  color: var(--gold-bright);
  font: 700 24px/1.1 "Courier New", monospace;
}

.fact span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.report-grid {
  max-width: 780px;
  margin: 0 auto;
}

.report-body { min-width: 0; }

.report-body h2 {
  scroll-margin-top: 20px;
  margin: 48px 0 14px;
  color: #f0c766;
  font: 700 27px/1.2 Georgia, serif;
}

.report-body h2:first-child { margin-top: 0; }

.report-body h3 {
  margin: 30px 0 10px;
  color: #b9cff8;
  font: 700 17px/1.35 "Courier New", monospace;
}

.report-body p,
.report-body li {
  color: var(--text);
  font-size: 16px;
  line-height: 1.72;
}

.report-body li + li { margin-top: 7px; }
.report-body strong { color: #fff; }
.report-body code {
  padding: .1em .3em;
  background: #161d2e;
  color: #f4d994;
  font: .9em/1.4 "Courier New", monospace;
}

.report-body pre {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  padding: 16px;
  background: #080c17;
}

.report-body pre code { padding: 0; background: none; }

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.report-body table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(12, 17, 32, .8);
  font-size: 14px;
}

.report-body th,
.report-body td {
  padding: 10px 12px;
  border-bottom: 1px solid #30394d;
  text-align: left;
  vertical-align: top;
}

.report-body th {
  color: var(--gold-bright);
  font-family: "Courier New", monospace;
}

.report-body tr:last-child td { border-bottom: 0; }

.contents {
  margin-bottom: 48px;
  border: 1px solid #49536b;
  padding: 22px 24px 24px;
  background: rgba(12, 17, 32, .72);
}

.contents h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font: 700 13px/1.4 "Courier New", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contents ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 32px;
  margin: 0;
  padding: 0;
  counter-reset: report-section;
  list-style: none;
}

.contents li {
  display: flex;
  gap: 9px;
  min-width: 0;
  counter-increment: report-section;
}

.contents li::before {
  content: counter(report-section, decimal-leading-zero);
  flex: 0 0 auto;
  color: var(--gold);
  font: 700 12px/1.5 "Courier New", monospace;
}

.contents a {
  color: #bfc9d9;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}
.contents a:hover { color: #fff; text-decoration: underline; }

.note {
  margin-top: 30px;
  border: 1px solid #8d7137;
  padding: 18px;
  background: var(--panel-soft);
  color: #e7d39d;
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  margin-top: 60px;
  border-top: 1px solid #49536b;
  padding-top: 20px;
  color: #7f8ba0;
  font: 12px/1.6 "Courier New", monospace;
}

@media (max-width: 760px) {
  .report { width: min(100% - 24px, 980px); padding-top: 20px; }
  .topbar { align-items: flex-start; margin-bottom: 34px; }
  .eyebrow { font-size: 10px; }
  .play { padding: 8px 10px; font-size: 11px; }
  .hero { padding: 23px 0; }
  .hero h1 { font-size: clamp(36px, 11vw, 46px); }
  .lede { font-size: 16px; }
  .facts { grid-template-columns: 1fr 1fr; margin-bottom: 38px; }
  .fact { min-height: 105px; }
  .contents { padding: 18px; margin-bottom: 34px; }
  .contents ol { grid-template-columns: 1fr; gap: 9px; }
  .report-body h2 { font-size: 24px; }
  .report-body p, .report-body li { font-size: 15px; }
  .table-wrap { margin-right: -12px; }
}

@media (max-width: 390px) {
  .topbar { gap: 10px; }
  .topbar > span { max-width: 150px; }
  .fact { padding: 16px 12px; }
  .fact b { font-size: 21px; }
}
