/* Design tokens (spec §2) + base reset. One accent, semantic exceptions only
   for AC (blue) and success (green) — see cards.css / layout.css for usage. */

:root {
  --bg: #101215;
  --surface: #1b1e22;
  --surface-2: #23262b;
  --border: #2c3037;
  --text: #f1eee6;
  --text-dim: #9a9d9f;
  --text-faint: #63666a;

  --accent: #c4463b;
  --accent-bg: #38201c;
  --accent-border: #5a2c24;
  --accent-dark: #26100c;

  --blue: #7fa3c4;
  --green: #7ea089;
  --green-bg: #1e2a20;

  --font-display: "Cinzel", serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}

.mono {
  font-family: var(--font-mono);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-faint);
  text-transform: uppercase;
}
