@layer reset, base, components, pages;

:root {
  color-scheme: light;

  --bg: #f7f6f3;
  --surface: #ffffff;
  --surface-2: #f1efe9;
  --ink: #1b1f24;
  --muted: #5f636a;
  --border: #e3e0d8;
  --accent: #117a62;
  --accent-ink: #ffffff;
  --positive: #157f3c;
  --negative: #c0392b;

  --pitch-bg: var(--accent);
  --pitch-ink: var(--accent-ink);

  --s-1: 0.25rem;
  --s-2: 0.50rem;
  --s-3: 0.75rem;
  --s-4: 1.00rem;
  --s-5: 1.50rem;
  --s-6: 2.00rem;
  --s-7: 3.00rem;

  --radius: 12px;
  --radius-sm: 8px;

  --shadow: 0 1px 2px rgba(20, 20, 20, 0.04), 0 6px 24px rgba(20, 20, 20, 0.06);

  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;

    --bg: #14161a;
    --surface: #1d2026;
    --surface-2: #23272e;
    --ink: #e9eaec;
    --muted: #a1a6ad;
    --border: #2d323a;
    --accent: #3fae93;
    --accent-ink: #06140f;
    --positive: #5fd08a;
    --negative: #ef7a70;

    --pitch-bg: #15463a;
    --pitch-ink: #eaf3ef;
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;

  --bg: #14161a;
  --surface: #1d2026;
  --surface-2: #23272e;
  --ink: #e9eaec;
  --muted: #a1a6ad;
  --border: #2d323a;
  --accent: #3fae93;
  --accent-ink: #06140f;
  --positive: #5fd08a;
  --negative: #ef7a70;

  --pitch-bg: #15463a;
  --pitch-ink: #eaf3ef;
}
