* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--canvas); }
body {
  margin: 0;
  color: var(--text);
  background: var(--canvas);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--console-800); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--stop); }
button, input, select, textarea { font: inherit; }
button, .button { min-height: var(--touch-target); }
:focus-visible { outline: 3px solid var(--stop); outline-offset: 3px; }
h1, h2, h3 {
  color: var(--console-950);
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}
h1 { margin: 0 0 var(--space-3); font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { margin: var(--space-5) 0 var(--space-2); font-size: clamp(1.65rem, 3vw, 2.5rem); }
h3 { margin: var(--space-4) 0 var(--space-1); font-size: 1.3rem; }
p, li, dd { overflow-wrap: anywhere; }
code, kbd, .mono { font-family: var(--mono); }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 100;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--console-950);
  box-shadow: var(--shadow-2);
}
.skip-link:focus { top: 1rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.1rem;
  border: 1px solid var(--console-950);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--console-950);
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--console-950); color: var(--white); }
.button--primary:hover { border-color: var(--console-800); background: var(--console-800); color: var(--white); }
table { width: 100%; border-collapse: collapse; background: var(--surface); }
th, td { padding: .85rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--console-950); color: var(--white); font-size: .86rem; letter-spacing: .02em; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
