:root {
  color-scheme: dark;
  --bg: #05070f;
  --panel: #0b1020;
  --line: rgba(255, 255, 255, .12);
  --ink: #eef2ff;
  --muted: #a6afca;
  --mint: #38e1c4;
  --amber: #ffb454;
  --max: 820px;
}
* { box-sizing: border-box; }
html { font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; }
body { margin: 0; background: var(--bg); color: var(--ink); }
a { color: var(--mint); text-underline-offset: 3px; }
a:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; border-radius: 3px; }
header, main, footer { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
header { padding: 34px 0 20px; border-bottom: 1px solid var(--line); }
header nav { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; }
main { padding: 42px 0 60px; }
footer { padding: 26px 0 44px; border-top: 1px solid var(--line); color: var(--muted); }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.08; margin: 0 0 12px; }
h2 { margin-top: 38px; font-size: 1.35rem; }
h3 { margin-top: 24px; font-size: 1.05rem; }
p, li { color: var(--muted); }
strong { color: var(--ink); }
ul { padding-left: 1.25rem; }
.eyebrow { color: var(--mint); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
.notice { border: 1px solid rgba(255, 180, 84, .35); background: rgba(255, 180, 84, .08); padding: 18px 20px; border-radius: 12px; }
.notice, .notice p { color: #e5d0af; }
.meta { color: var(--muted); font-size: .9rem; }
table { width: 100%; border-collapse: collapse; margin: 18px 0; }
th, td { text-align: left; vertical-align: top; padding: 10px; border: 1px solid var(--line); }
th { color: var(--ink); }
@media (max-width: 620px) {
  table, thead, tbody, tr, th, td { display: block; }
  th { border-bottom: 0; }
}
