/* Kingdom Come — design tokens (mirrors DESIGN.md). */

:root {
  /* Foundation — light */
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-2: #f4efe6;
  --ink: #1b1a18;
  --ink-muted: #5c564e;
  --ink-faint: #736c60;
  --hairline: #e8e1d6;
  --accent: #7c2d3a;
  --accent-soft: #f2dddf;
  --accent-ink: #faf7f2;

  /* Status pairs */
  --status-thriving: #2f6b43;
  --status-thriving-soft: #e1eee6;
  --status-steady: #5c564e;
  --status-steady-soft: #f4efe6;
  --status-checkin: #7f5f0d;
  --status-checkin-soft: #f6ecd2;
  --status-risk: #7c2d3a;
  --status-risk-soft: #f2dddf;

  /* Type families */
  --serif-display: "Fraunces", "Source Serif 4", Georgia, serif;
  --serif-body: "Source Serif 4", Georgia, serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.375rem;
  --text-4xl: 3.25rem;

  /* Spacing */
  --space-2: 0.125rem;
  --space-4: 0.25rem;
  --space-8: 0.5rem;
  --space-12: 0.75rem;
  --space-16: 1rem;
  --space-24: 1.5rem;
  --space-32: 2rem;
  --space-48: 3rem;
  --space-64: 4rem;
  --space-96: 6rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;

  /* Motion */
  --motion-micro: 100ms;
  --motion-short: 150ms;
  --motion-medium: 250ms;
  --motion-long: 400ms;

  /* Layout */
  --reading-width: 720px;
  --dashboard-width: 1280px;
}

[data-theme="dark"] {
  --bg: #181614;
  --surface: #221f1b;
  --surface-2: #2c2823;
  --ink: #f0eae0;
  --ink-muted: #a09686;
  --ink-faint: #9a9184;
  --hairline: #3a3530;
  --accent: #d08fa0;
  --accent-soft: #3a2329;
  --accent-ink: #181614;

  --status-thriving: #5fa378;
  --status-thriving-soft: #2a3f31;
  --status-steady: #a09686;
  --status-steady-soft: #2c2823;
  --status-checkin: #d4a64a;
  --status-checkin-soft: #3d2f1a;
  --status-risk: #d08fa0;
  --status-risk-soft: #3a2329;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #181614;
    --surface: #221f1b;
    --surface-2: #2c2823;
    --ink: #f0eae0;
    --ink-muted: #a09686;
    --ink-faint: #9a9184;
    --hairline: #3a3530;
    --accent: #d08fa0;
    --accent-soft: #3a2329;
    --accent-ink: #181614;
    --status-thriving: #5fa378;
    --status-thriving-soft: #2a3f31;
    --status-steady: #a09686;
    --status-steady-soft: #2c2823;
    --status-checkin: #d4a64a;
    --status-checkin-soft: #3d2f1a;
    --status-risk: #d08fa0;
    --status-risk-soft: #3a2329;
  }
}
