/* ═══════════════════════════════════════════════════════════════════════════
   T13E LABS — BASE RESET & STYLES
   ═════════════════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* Note: the custom-cursor `cursor: none` lives in shared/chrome.css
   (pointer:fine only) so pages without the custom cursor keep a
   normal mouse pointer. */
body {
  background: var(--black);
  color: var(--white);
  font-family: "Neue Kabel", "Kabel", system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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