*, *::before, *::after { box-sizing: border-box; }
:root {
  color-scheme: dark;
  --bg: #0e1110;
  --ink: #e8ebe4;
  --muted: #b0b8aa;
  --line: #344039;
  --accent: #c4f542;
  --card: #171c19;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}
html { scroll-behavior: smooth; }
body { margin: 0; font: 1.0625rem/1.65 Georgia, serif; color: var(--ink); background: var(--bg); }
.shell { width: 100%; max-width: 64rem; margin-inline: auto; padding-inline: var(--gutter); min-width: 0; }
.top { border-bottom: 1px solid var(--line); background: var(--bg); }
.header-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem 2rem; padding-block: 1rem; }
.mark { color: var(--accent); font: 700 1.05rem/1.5 ui-monospace, monospace; text-decoration: none; overflow-wrap: anywhere; }
nav { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem 1.25rem; min-width: 0; }
nav a { display: inline-flex; align-items: center; min-height: 2.75rem; font: .9rem/1.5 system-ui, sans-serif; color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--accent); text-decoration: underline; }
main { padding-block: clamp(2.5rem, 6vw, 4.5rem) 4rem; }
section { min-width: 0; scroll-margin-top: 1.5rem; }
section + section { margin-top: clamp(2.5rem, 6vw, 4rem); padding-top: 2rem; border-top: 1px solid var(--line); }
h1, h2 { line-height: 1.15; letter-spacing: -.025em; overflow-wrap: anywhere; }
h1 { font-size: clamp(2.15rem, 6vw, 3.5rem); margin: .65rem 0 1.5rem; font-weight: 500; }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin: 0 0 1.25rem; font-weight: 500; }
p { max-width: 72ch; margin: 1rem 0; overflow-wrap: anywhere; }
.eyebrow { color: var(--accent); font: .75rem/1.5 system-ui, sans-serif; text-transform: uppercase; letter-spacing: .12em; }
.lede { max-width: 58ch; color: var(--muted); font-size: clamp(1.1rem, 2.5vw, 1.25rem); }
.notice { border-left: 3px solid var(--accent); padding: .75rem 1rem; background: var(--card); color: var(--muted); font-size: .95rem; }
.notice strong { color: var(--ink); }
.cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 2.75rem; max-width: 100%; padding: .65rem 1rem; border: 1px solid var(--line); border-radius: .4rem; color: var(--ink); text-decoration: none; font: 600 .95rem/1.5 system-ui, sans-serif; }
.btn.primary { color: var(--bg); background: var(--accent); border-color: var(--accent); }
a { color: var(--accent); text-underline-offset: .2em; overflow-wrap: anywhere; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.skip-link { position: absolute; top: .5rem; left: var(--gutter); z-index: 5; padding: .65rem 1rem; background: var(--ink); color: var(--bg); transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }
code { font-family: ui-monospace, Menlo, monospace; font-size: .88em; overflow-wrap: anywhere; }
pre { max-width: 100%; margin: 1.5rem 0; padding: 1rem; border: 1px solid var(--line); border-radius: .4rem; background: var(--card); overflow-x: auto; font: .875rem/1.65 ui-monospace, Menlo, monospace; }
pre code { font-size: inherit; white-space: pre; overflow-wrap: normal; }
.table-wrap { max-width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: .4rem; margin-block: 1.5rem; }
table { border-collapse: collapse; width: 100%; min-width: 32rem; font: .925rem/1.6 system-ui, sans-serif; }
caption { text-align: left; padding: .75rem 1rem; color: var(--muted); background: var(--card); }
th, td { text-align: left; vertical-align: top; padding: .85rem 1rem; border-top: 1px solid var(--line); }
th { font-weight: 600; color: var(--ink); }
td { color: var(--muted); }
.limits { padding-left: 1.25rem; }
.limits li { padding-left: .35rem; margin-block: 1rem; max-width: 72ch; overflow-wrap: anywhere; }
.note { color: var(--muted); font-size: .925rem; }
footer { border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.footer-inner { padding-block: 1.5rem 2.5rem; }
@media (max-width: 40rem) {
  .header-inner { align-items: flex-start; }
  .header-inner nav { width: 100%; gap: .15rem 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
