/* src/client/styles/tokens.css */
:root {
  --color-bg: #fafafa;
  --color-surface: #fff;
  --color-surface-sunken: #f4f4f5;
  --color-fg: #18181b;
  --color-fg-muted: #71717a;
  --color-fg-subtle: #a1a1aa;
  --color-border: #e4e4e7;
  --color-border-strong: #d4d4d8;
  --color-divider: #f0f0f2;
  --color-accent: #2563eb;
  --color-accent-soft: #3b82f6;
  --color-accent-fg: #fff;
  --color-sun: #d97706;
  --color-rain: #2563eb;
  --color-snow: #64748b;
  --color-cloud: #71717a;
  --color-storm: #7c3aed;
  --color-aqi-1: #16a34a;
  --color-aqi-2: #65a30d;
  --color-aqi-3: #ca8a04;
  --color-aqi-4: #ea580c;
  --color-aqi-5: #b91c1c;
  --color-warning: #d97706;
  --color-danger: #dc2626;
  --color-success: #16a34a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #0a0a0b;
    --color-surface: #131316;
    --color-surface-sunken: #19191d;
    --color-fg: #f4f4f5;
    --color-fg-muted: #a1a1aa;
    --color-fg-subtle: #71717a;
    --color-border: #27272a;
    --color-border-strong: #3f3f46;
    --color-divider: #1f1f23;
    --color-accent: #60a5fa;
    --color-accent-soft: #3b82f6;
    --color-accent-fg: #0a0a0b;
    --color-sun: #fbbf24;
    --color-rain: #60a5fa;
    --color-snow: #cbd5e1;
    --color-cloud: #a1a1aa;
    --color-storm: #a78bfa;
    --color-aqi-1: #4ade80;
    --color-aqi-2: #a3e635;
    --color-aqi-3: #facc15;
    --color-aqi-4: #fb923c;
    --color-aqi-5: #f87171;
    --color-warning: #fbbf24;
    --color-danger: #f87171;
    --color-success: #4ade80;
  }
}

:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
  --text-xs: .75rem;
  --text-sm: .8125rem;
  --text-base: .9375rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-hero: clamp(5rem, 18vw, 8rem);
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --tracking-tight: -.02em;
  --tracking-normal: 0;
  --tracking-wide: .04em;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow-none: none;
  --shadow-sm: 0 1px 2px #0000000a;
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --duration-fast: .12s;
  --duration-base: .18s;
  --layout-max: 1200px;
  --layout-gutter-mobile: var(--space-4);
  --layout-gutter-tablet: var(--space-6);
  --layout-gutter-desktop: var(--space-8);
  --header-height: 56px;
  --bp-md: 640px;
  --bp-lg: 1024px;
  --z-base: 1;
  --z-sticky: 20;
  --z-overlay: 40;
  --z-modal: 60;
}
