/* Paper & Pixel — design tokens & base
   Loaded on every page that uses the shared design system.
   Page-specific styles stay inline in each .html file. */

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

:root {
  --bg: #F5F5FA;
  --bg-warm: #E8EAF6;
  --bg-deep: #252D82;
  --bg-darker: #1B2160;
  --fg: #111133;
  --fg-mid: rgba(17, 17, 51, 0.65);
  --fg-light: rgba(17, 17, 51, 0.25);
  --cream: #FFFFFF;
  --gold: #FF7F00;
  --gold-light: #FF9933;
  --gold-wash: rgba(255, 127, 0, 0.06);
  --reso: #2FAD8A;
  --reso-glow: rgba(47, 173, 138, 0.15);
  --ink: #D14B3D;
  --ink-glow: rgba(209, 75, 61, 0.15);
  --chroma: #7C3AED;
  --chroma-glow: rgba(124, 58, 237, 0.15);
  --zesca: #D97706;
  --zesca-glow: rgba(217, 119, 6, 0.15);
  --status-live: #10B981;
  --status-beta: #E4B96A;
  --status-dev: rgba(17, 17, 51, 0.25);
  --blue: #252D82;
  --blue-dark: #252D82;
  --blue-light: #3D4BA8;
  --blue-pale: #E8EAF6;
  --grey: #808080;
  --grey-light: #B0B0B0;
  --grey-dark: #4A4A4A;
  --orange: #FF7F00;
  --orange-light: #FF9933;
  --orange-dark: #CC6600;
  --check: #1BB890;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
