/* Design tokens. Light is the default; [data-theme="dark"] overrides. */
:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --ink: #1c1a17;
  --muted: #78716c;
  --accent: #10b981;
  --accent-ink: #ffffff;
  --danger: #dc2626;
  --danger-border: #f3c9c9;
  --border: #e7e2da;
  --hairline: #f0ede8;

  --pill-ok-bg: #dcfce7;   --pill-ok-fg: #15803d;
  --pill-run-bg: #fef3c7;  --pill-run-fg: #a16207;
  --pill-warn-bg: #fee2e2; --pill-warn-fg: #b91c1c;
  --accent-soft: #ecfdf5;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --fs-display: 26px; --fw-display: 750;
  --fs-heading: 19px; --fw-heading: 700;
  --fs-body: 15px;
  --fs-caption: 12px;
  --fs-mono: 13px;

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px;
  --sp-4: 16px; --sp-6: 24px; --sp-8: 32px;

  --r-control: 8px;
  --r-md: 12px;
  --r-card: 16px;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.07);
}

[data-theme="dark"] {
  --bg: #1a1613;
  --surface: #241f1a;
  --ink: #ede9e3;
  --muted: #a79e92;
  --accent: #34d399;
  --accent-ink: #10241c;
  --danger: #f87171;
  --danger-border: #5b2b2b;
  --border: #322b24;
  --hairline: #2b251f;

  --pill-ok-bg: #14331f;   --pill-ok-fg: #4ade80;
  --pill-run-bg: #3a2f10;  --pill-run-fg: #fbbf24;
  --pill-warn-bg: #3a1b1b; --pill-warn-fg: #fca5a5;
  --accent-soft: #15291f;

  --shadow-card: none;
}
