:root {
  color-scheme: dark;
  --bg: #06111f;
  --panel: #0b1d31;
  --line: rgba(148, 205, 255, 0.14);
  --text: #f5f9ff;
  --muted: #a9b8c9;
  --cyan: #75d4ff;
}
* { box-sizing: border-box; }
html { background: #030a13; }
body {
  margin: 0;
  background: radial-gradient(circle at 80% 0%, rgba(61,146,255,.11), transparent 30%), linear-gradient(180deg, #06111f, #030a13);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.75;
}
a { color: var(--cyan); }
header, main, footer { width: min(880px, calc(100% - 36px)); margin-inline: auto; }
header { display: flex; min-height: 88px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
header a:first-child { display: inline-flex; align-items: center; gap: 10px; color: white; text-decoration: none; font-family: Sora, sans-serif; font-size: 1.25rem; font-weight: 600; letter-spacing: -.04em; }
header img { width: 32px; height: 32px; }
header a:last-child { color: var(--muted); font-size: .76rem; text-decoration: none; }
main { padding-block: 76px 100px; }
.eyebrow { color: var(--cyan); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1, h2 { font-family: Sora, sans-serif; letter-spacing: -.05em; line-height: 1.08; }
h1 { max-width: 720px; margin: 14px 0 22px; font-size: clamp(2.6rem, 8vw, 5.2rem); font-weight: 500; }
h2 { margin-top: 52px; font-size: clamp(1.35rem, 4vw, 2rem); font-weight: 500; }
p, li { color: var(--muted); }
.updated { margin-bottom: 50px; color: #71879b; font-size: .74rem; }
.notice { margin: 38px 0; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(12,34,57,.65); }
ul { padding-left: 20px; }
li + li { margin-top: 7px; }
footer { padding-block: 28px 46px; border-top: 1px solid var(--line); color: #60768a; font-size: .68rem; }
