/* =====================================================
   AFTER THE BET — Design Tokens
   Palette: warm cream surfaces, deep slate blue primary,
   soft sage green accent. Calm, grounded, non-clinical.
   ===================================================== */

:root,
[data-theme='light'] {
  /* Surfaces — warm cream */
  --color-bg: #f5f4ef;
  --color-surface: #f8f7f3;
  --color-surface-2: #faf9f7;
  --color-surface-offset: #edeae3;
  --color-surface-offset-2: #e7e4dc;
  --color-surface-dynamic: #dedad1;
  --color-divider: #d8d5cc;
  --color-border: #ccc9bf;

  /* Text — deep warm charcoal */
  --color-text: #252219;
  --color-text-muted: #736f64;
  --color-text-faint: #b4b0a7;
  --color-text-inverse: #f8f7f3;

  /* Primary — deep slate blue (calm, trustworthy) */
  --color-primary: #3d5a80;
  --color-primary-hover: #2d4461;
  --color-primary-active: #1e2f45;
  --color-primary-highlight: #d2dce8;

  /* Accent — muted sage green (growth, stability) */
  --color-accent: #5a7a5e;
  --color-accent-hover: #43603a;
  --color-accent-highlight: #d4e2d5;

  /* Crisis/warning — terracotta (warm, not alarming red) */
  --color-warning: #a05a3a;
  --color-warning-hover: #7d3d20;
  --color-warning-highlight: #e5d4ca;

  /* Success */
  --color-success: #4a7a40;
  --color-success-highlight: #d2e3cd;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(30, 25, 15, 0.06);
  --shadow-md: 0 4px 16px rgba(30, 25, 15, 0.08);
  --shadow-lg: 0 12px 40px rgba(30, 25, 15, 0.12);

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.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;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'General Sans', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #161512;
  --color-surface: #1b1a17;
  --color-surface-2: #1f1e1b;
  --color-surface-offset: #1c1b18;
  --color-surface-offset-2: #212019;
  --color-surface-dynamic: #2c2b27;
  --color-divider: #282722;
  --color-border: #353430;
  --color-text: #cac8c2;
  --color-text-muted: #767469;
  --color-text-faint: #575550;
  --color-text-inverse: #1b1a17;
  --color-primary: #7aa0c4;
  --color-primary-hover: #5684ab;
  --color-primary-active: #3d6a91;
  --color-primary-highlight: #2a3a4a;
  --color-accent: #7a9e7e;
  --color-accent-hover: #5d845f;
  --color-accent-highlight: #2a3a2c;
  --color-warning: #c47558;
  --color-warning-hover: #a85c3e;
  --color-warning-highlight: #4a3028;
  --color-success: #6da062;
  --color-success-highlight: #2a3d28;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.28);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.36);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #161512;
    --color-surface: #1b1a17;
    --color-surface-2: #1f1e1b;
    --color-surface-offset: #1c1b18;
    --color-surface-offset-2: #212019;
    --color-surface-dynamic: #2c2b27;
    --color-divider: #282722;
    --color-border: #353430;
    --color-text: #cac8c2;
    --color-text-muted: #767469;
    --color-text-faint: #575550;
    --color-text-inverse: #1b1a17;
    --color-primary: #7aa0c4;
    --color-primary-hover: #5684ab;
    --color-primary-active: #3d6a91;
    --color-primary-highlight: #2a3a4a;
    --color-accent: #7a9e7e;
    --color-accent-hover: #5d845f;
    --color-accent-highlight: #2a3a2c;
    --color-warning: #c47558;
    --color-warning-hover: #a85c3e;
    --color-warning-highlight: #4a3028;
    --color-success: #6da062;
    --color-success-highlight: #2a3d28;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.28);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.36);
  }
}
