/* Shared tokens for the index and 404 pages only.
   Each project under public/ is self-contained and ignores this file. */

:root {
  --bg: #FAFAF8;
  --card: #FFFFFF;
  --ink: #1A1A18;
  --muted: #6B6B63;
  --line: #E4E4DE;
  --accent: #C2410C;

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131312;
    --card: #1C1C1A;
    --ink: #ECECE6;
    --muted: #9A9A90;
    --line: #2E2E2A;
    --accent: #FB923C;
  }
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2 { margin: 0; font-weight: 650; letter-spacing: -.01em; }

a { color: inherit; }
