/* ============================================================
   KATALYST · BASE
   Element defaults applied on top of the tokens. Dark canvas,
   DM Sans body, Space Grotesk headings, brand text selection.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--k-selection); color: #fff; }

input, textarea, select, button { font-family: inherit; }
::placeholder { color: var(--k-placeholder); }

:focus-visible { outline: 2px solid var(--k-teal-border); outline-offset: 2px; }
