:root {
  color-scheme: dark;
  --bg: #0a0b0e;
  --text: #edeef2;
  --muted: #afb4c2;
  --accent: #e8a030;
  --border: #252838;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); font: 17px/1.75 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: var(--accent); text-underline-offset: .2em; overflow-wrap: anywhere; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.skip-link { position: absolute; left: 20px; top: -100px; padding: 8px 16px; background: var(--bg); }
.skip-link:focus { top: 12px; }
header, main, footer { max-width: 860px; margin: 0 auto; padding: 24px; }
header { padding-top: 32px; border-bottom: 1px solid var(--border); }
.brand { font-size: 14px; font-weight: 650; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; color: var(--text); }
.brand span { color: var(--accent); }
main { padding-top: 44px; padding-bottom: 56px; }
h1 { font-size: clamp(30px, 6vw, 44px); line-height: 1.2; letter-spacing: -.025em; margin: 0 0 24px; }
h2 { font-size: 23px; line-height: 1.35; margin: 38px 0 12px; }
p { margin: 0 0 20px; }
ul, ol { padding-left: 24px; }
li { margin-bottom: 12px; }
.meta { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.notice { padding: 20px; border: 1px solid var(--border); border-radius: 8px; }
.request-link { display: inline-block; border: 1px solid var(--accent); border-radius: 8px; padding: 12px 18px; margin: 0 0 24px; }
footer { border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; }
footer nav { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-bottom: 16px; }
@media (max-width: 480px) { body { font-size: 16px; } header, main, footer { padding-left: 20px; padding-right: 20px; } main { padding-top: 32px; } }
@media print { :root { color-scheme: light; } body { color: #111; background: #fff; } a, .brand, .brand span, .meta { color: #111; } header, footer, .skip-link { display: none; } main { max-width: none; padding: 0; } h2 { break-after: avoid; } }
