/* ABOUTME: Reset, body defaults, and utility classes.
   ABOUTME: Global box-sizing, font smoothing, and the .hidden helper. */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--sans);
  font-size: 14px;
  height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════ */
.hidden {
  display: none !important;
}
