/* ── Variables ── */
:root {
  --bg: #0e0e0c;
  --surface: #121210;
  --surface-raised: #1a1a18;
  --surface-focus: #1e1e1a;
  --border: #2a2a26;
  --border-focus: #3a3a30;
  --text: #e8e8d8;
  --text-muted: #8a8a7a;
  --text-dim: #706e60;
  --text-faint: #6a6a5a;
  --text-dead: #4a4a3a;
  --text-micro: #787868;
  --green: #b8e060;
  --green-dark: #80a040;
  --green-subtle: #2a4020;
  --amber: #e8b060;
  --amber-dark: #a08040;
  --amber-subtle: #3a3020;
  --red: #e06060;
  --red-subtle: #402020;
  --cost: #d4a050;
  --cyan: #60c8e0;
  --mint: #60e0a0;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --font-display: 'Permanent Marker', cursive;
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  padding: 32px 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography tokens ── */
.label {
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.sub {
  font-size: 10px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.micro {
  font-size: 9px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-micro);
}

/* ── Animations ── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
