/* ═══════════════════════════════════════════════════════
   Onyx Base — Global resets & typography
   ═══════════════════════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--console-font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--console-text);
  background: var(--console-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  margin: 0 0 var(--console-space-2) 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

p {
  margin: 0 0 var(--console-space-2) 0;
  color: var(--console-muted);
}

button {
  font-family: inherit;
}

code, pre, .console-code {
  font-family: var(--console-font-mono);
}

#app {
  min-height: 100vh;
}

/* Utility: visually hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
