:root {
  color-scheme: dark;
  --ink: #eef3f8;
  --muted: #b2bdca;
  --line: rgba(255,255,255,.13);
  --panel: #101a27;
  --accent: #69e7b0;
  --background: #07101a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  width: min(calc(100% - 38px), 920px);
  margin: 0 auto;
  padding-bottom: 64px;
  background: var(--background);
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
}
a { color: var(--accent); }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.report-header { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.report-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: .84rem; font-weight: 800; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.report-brand span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(105,231,176,.4); border-radius: 9px; color: var(--accent); }
.sample-label { padding: 6px 10px; border: 1px solid rgba(105,231,176,.36); border-radius: 999px; color: var(--accent); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.sample-notice { margin: 38px 0; padding: 20px 22px; border: 1px solid rgba(105,231,176,.28); border-radius: 14px; background: rgba(105,231,176,.08); }
.sample-notice strong { color: var(--ink); }
h1, h2, h3, h4, strong { color: var(--ink); }
h1 { margin: 44px 0 12px; font-size: clamp(2.4rem, 7vw, 4.5rem); letter-spacing: -.05em; line-height: 1; }
h2 { margin: 56px 0 16px; padding-top: 12px; border-top: 1px solid var(--line); font-size: clamp(1.55rem, 4vw, 2.1rem); letter-spacing: -.025em; line-height: 1.2; }
h3 { margin: 34px 0 10px; font-size: 1.2rem; line-height: 1.35; }
p, li { max-width: 78ch; }
li + li { margin-top: 7px; }
hr { height: 1px; margin: 46px 0; border: 0; background: var(--line); }
.report-footer { margin-top: 70px; padding-top: 28px; border-top: 1px solid var(--line); color: #7d8999; font-size: .82rem; }
.report-footer nav { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 18px; }
.report-footer a { color: var(--muted); }
@media (max-width: 560px) { body { width: min(calc(100% - 26px), 920px); } .report-header { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 14px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
