/* ── Base / Reset ──────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  overscroll-behavior: none;
}
svg { max-width: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
}
button, input, select { font: inherit; }
.hidden { display: none !important; }
