:root {
  --bg: #09090b;
  --panel: #111113;
  --line: #2a2a2e;
  --muted: #a1a1aa;
  --soft: #d4d4d8;
  --white: #fafafa;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
}

* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 8%, rgba(245, 158, 11, .09), transparent 25rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--amber-light); }
a:hover { color: #fde68a; }
:focus-visible { outline: 3px solid rgba(251, 191, 36, .55); outline-offset: 3px; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #111;
  background: var(--amber);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: rgba(9, 9, 11, .9);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .05em;
}
.brand img { width: 58px; height: 52px; object-fit: contain; object-position: left center; }
.brand-text { display: grid; line-height: 1.05; }
.brand-name { color: var(--white); font-size: 15px; letter-spacing: .1em; }
.brand-badge { color: var(--amber-light); font-size: 10px; letter-spacing: .17em; text-transform: uppercase; margin-top: 5px; }
.nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
.nav-links a { color: var(--soft); text-decoration: none; font-weight: 700; }
.nav-links a:hover { color: var(--white); }
main { padding: 64px 0 88px; }
main .shell { width: min(940px, calc(100% - 40px)); }
article {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), transparent), var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}
.kicker {
  display: inline-block;
  color: var(--amber-light);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
}
h1 {
  max-width: 18ch;
  margin: 10px 0 8px;
  font-size: clamp(2.1rem, 7vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.045em;
}
h2 { margin: 38px 0 10px; font-size: clamp(1.25rem, 3vw, 1.7rem); }
p, li { color: var(--soft); }
.updated { margin-top: 0; color: var(--muted); }
.notice {
  padding: 16px 18px;
  border-left: 3px solid var(--amber);
  background: rgba(245, 158, 11, .08);
  border-radius: 0 12px 12px 0;
}
.table-wrap { overflow-x: auto; margin: 18px 0; }
table { width: 100%; min-width: 680px; border-collapse: collapse; }
th, td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--white); background: rgba(255, 255, 255, .035); }
td { color: var(--soft); }
footer { border-top: 1px solid var(--line); padding: 30px 0 48px; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-grid p { margin: 4px 0; color: var(--muted); font-size: .92rem; }
.footer-links { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--soft); text-decoration: none; font-weight: 700; }
.footer-links a:hover { color: var(--white); }
@media (max-width: 700px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .brand img { width: 48px; height: 42px; }
  main { padding-top: 34px; }
}
