/* ===== Design Tokens — Achieve Exponential Growth brand ===== */
/* Primary: #51778C (teal-blue), Accent: #C72B77 (magenta), Surface: #FDF5F0 (warm cream) */

:root {
  /* Fonts */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;

  /* 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;

  /* Radius — sharp corners per Julie's request */
  --radius-sm: 2px;
  --radius-md: 3px;
  --radius-lg: 4px;
  --radius-xl: 4px;
  --radius-full: 9999px; /* only for chips/pills */

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
  --color-bg: #F9F1EB;
  --color-surface: #FFFFFF;
  --color-surface-2: #F5EDE7;
  --color-text: #1a2a33;
  --color-text-muted: #5a6b75;
  --color-text-faint: #8a9aa4;
  --color-text-inverse: #FFFFFF;
  --color-primary: #51778C;
  --color-primary-hover: #426272;
  --color-primary-active: #375460;
  --color-accent: #C72B77;
  --color-accent-hover: #a82365;
  --color-accent-active: #8e1d55;
  --color-border: #d8cfc9;
  --color-divider: #e8dfd9;
  --color-error: #C72B77;
}

/* ===== DARK THEME ===== */
[data-theme="dark"] {
  --color-bg: #0f1a20;
  --color-surface: #1a2a33;
  --color-surface-2: #233540;
  --color-text: #e8e0da;
  --color-text-muted: #9aabb5;
  --color-text-faint: #6a7b85;
  --color-text-inverse: #0f1a20;
  --color-primary: #6a9ab0;
  --color-primary-hover: #7db0c8;
  --color-primary-active: #8fc0d8;
  --color-accent: #e04090;
  --color-accent-hover: #ea60a5;
  --color-accent-active: #f080b8;
  --color-border: #2a3a45;
  --color-divider: #233540;
  --color-error: #e04090;
}
