/* Wildstream — base page scaffolding (resets + body bootstrap).
   Universal across every page; pulls all values from DS tokens. */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--ws-red); color: var(--fg-on-red); }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
