/* ===================================================================
   BUFFALO PAYROLL — DESIGN TOKENS
   Brand colors sampled from the live site (logo, hero video, buttons):
   Navy primary #1f4192 (Vimeo player accent + hero CTA button)
   Deep navy #0c438f / #24336a (logo wordmark)
   Magenta #ed58ff (hero "Schedule a meeting" pill)
   Teal kept as secondary accent (original phone icon)
   =================================================================== */

:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #faf9fc;
  --color-surface: #ffffff;
  --color-surface-2: #f4f2fa;
  --color-surface-offset: #eeecf7;
  --color-surface-offset-2: #e6e2f2;
  --color-surface-dynamic: #ddd8ec;
  --color-divider: #e3e0ee;
  --color-border: #d7d2e6;

  /* Text */
  --color-text: #191534;
  --color-text-muted: #5c5776;
  --color-text-faint: #9691ac;
  --color-text-inverse: #ffffff;

  /* Primary — Buffalo Navy */
  --color-primary: #1f4192;
  --color-primary-hover: #17316e;
  --color-primary-active: #10254f;
  --color-primary-highlight: #dbe3f5;
  --color-primary-deep: #0c1f4a;

  /* Accent — Buffalo Magenta */
  --color-accent: #d838c9;
  --color-accent-hover: #b52ba6;
  --color-accent-active: #8f2184;
  --color-accent-highlight: #f6dcf3;

  /* Teal — secondary accent (phone / support) */
  --color-teal: #0ea8a6;
  --color-teal-hover: #0b8886;
  --color-teal-highlight: #d3efee;

  /* Semantic (kept minimal, standard mapping) */
  --color-success: #2f8f4e;
  --color-warning: #b8791c;
  --color-error: #b8324a;

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

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

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0.15 0.05 280 / 0.08);
  --shadow-md: 0 8px 24px oklch(0.15 0.05 280 / 0.1);
  --shadow-lg: 0 24px 56px oklch(0.15 0.05 280 / 0.16);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1240px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Clash Display', 'Cabinet Grotesk', system-ui, sans-serif;
  --font-body: 'Satoshi', 'General Sans', -apple-system, sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0f0c22;
  --color-surface: #161230;
  --color-surface-2: #1b1638;
  --color-surface-offset: #201a40;
  --color-surface-offset-2: #251f48;
  --color-surface-dynamic: #2b2450;
  --color-divider: #2a2450;
  --color-border: #362f5c;

  --color-text: #eae7f7;
  --color-text-muted: #a8a2c6;
  --color-text-faint: #6e6894;
  --color-text-inverse: #191534;

  --color-primary: #6f8fd6;
  --color-primary-hover: #90aae0;
  --color-primary-active: #aec2ea;
  --color-primary-highlight: #263159;
  --color-primary-deep: #0c1f4a;

  --color-accent: #ec7de3;
  --color-accent-hover: #f19cea;
  --color-accent-active: #f6bbf0;
  --color-accent-highlight: #402b4a;

  --color-teal: #3ecfcd;
  --color-teal-hover: #66dbd9;
  --color-teal-highlight: #1a3a3a;

  --color-success: #6bc98a;
  --color-warning: #dba24d;
  --color-error: #e07189;

  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.3);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 24px 56px oklch(0 0 0 / 0.5);
}

/* Type scale */
:root {
  --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.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6.5vw, 6.75rem);

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