:root {
  color-scheme: dark;
  --background: #0c1017;
  --surface: #151c27;
  --line: #2a3546;
  --text: #f1f5fc;
  --muted: #afbdd0;
  --accent: #8ab8ff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(ellipse at 85% 0%, #172d4c 0%, transparent 48%), var(--background);
  color: var(--text);
  font: 17px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-underline-offset: 5px; }
a:hover { color: #fff; }
a:focus-visible, button:focus-visible { outline: 3px solid #ffd080; outline-offset: 5px; }
.wrap { width: 100%; max-width: 1120px; margin: auto; padding-inline: 32px; }
header { border-bottom: 1px solid var(--line); background: #0c1017b3; }
header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; font-size: 22px; font-weight: 750; letter-spacing: -.04em; }
.brand img { border-radius: 11px; box-shadow: 0 3px 14px #0004; }
nav { display: flex; flex-wrap: wrap; gap: 24px; }
nav a { color: var(--muted); text-decoration: none; font-size: 15px; }
nav a:hover { text-decoration: underline; }
main { min-height: 68vh; padding-block: 88px 96px; }
.eyebrow { color: var(--accent); font-size: 14px; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
h1 { max-width: 900px; margin: 22px 0 28px; font-size: clamp(42px, 7.2vw, 82px); font-weight: 750; line-height: 1.06; letter-spacing: -.055em; text-wrap: balance; }
h2 { margin-top: 40px; font-size: 25px; line-height: 1.3; letter-spacing: -.025em; }
p, li { max-width: 740px; overflow-wrap: anywhere; }
.lead { max-width: 650px; margin-bottom: 32px; color: var(--muted); font-size: 22px; line-height: 1.6; }
.button { display: inline-block; padding: 14px 24px; border: 1px solid #a9c9ff; border-radius: 13px; background: #c3daff; color: #101c30; font: inherit; font-weight: 650; text-decoration: none; box-shadow: 0 5px 24px #0003; }
.button:disabled { cursor: default; background: #27384f; border-color: #425979; color: #d8e5fa; box-shadow: none; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 76px; scroll-margin-top: 28px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, #1a2534, var(--surface)); }
.card h2 { margin: 18px 0 12px; font-size: 23px; }
.card p { margin-bottom: 0; color: var(--muted); font-size: 16px; }
.number { color: var(--accent); font-size: 14px; font-weight: 600; }
.document { max-width: 840px; }
.document h1 { font-size: clamp(36px, 5.5vw, 58px); overflow-wrap: anywhere; }
.document h2 { padding-top: 20px; border-top: 1px solid var(--line); }
.document p, .document li { color: #c7d2e2; }
.notice { margin: 30px 0; padding: 20px 24px; border: 1px solid #695435; border-left: 3px solid #e5b96d; border-radius: 0 12px 12px 0; background: #30281c; color: #ffe0a8; }
.document .placeholder, .placeholder { color: #f0cc8e; }
footer { padding-block: 30px 40px; border-top: 1px solid var(--line); color: var(--muted); }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
footer nav { gap: 20px; }
small { color: var(--muted); font-size: 14px; }
li { margin-block: 8px; }
code { overflow-wrap: anywhere; }
.skip { position: absolute; top: -100px; left: 16px; z-index: 10; padding: 12px; background: var(--background); }
.skip:focus { top: 10px; }
@media (max-width: 760px) {
  .wrap { padding-inline: 22px; }
  main { padding-block: 52px 64px; }
  header .wrap { gap: 18px; flex-wrap: wrap; padding-block: 20px; }
  nav { gap: 18px; }
  .lead { font-size: 20px; }
  .cards { grid-template-columns: 1fr; margin-top: 48px; gap: 16px; }
  .card { padding: 24px; }
  footer .wrap { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
