/* ═══════════════════════════════════════════════════════════
   BizGrip Design Tokens
   Single source of truth for the entire design system.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Primary Palette ──────────────────────────────────── */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-tertiary: #64748B;
  --text-muted: #94A3B8;

  /* ── Accent Palette ───────────────────────────────────── */
  --accent: #0F62FE;
  --accent-hover: #0043CE;
  --accent-light: #EBF0FF;
  --accent-text: #0F62FE;

  /* ── Functional Palette ───────────────────────────────── */
  --success: #16A34A;
  --success-light: #F0FDF4;
  --warning: #D97706;
  --warning-light: #FFFBEB;
  --error: #DC2626;
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  /* ── Dark Elements ────────────────────────────────────── */
  --dark-bg: #0F172A;
  --dark-surface: #1E293B;
  --dark-text: #F8FAFC;
  --dark-muted: #94A3B8;

  /* ── Typography ───────────────────────────────────────── */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* ── Spacing (8px base grid) ──────────────────────────── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* ── Shadows ──────────────────────────────────────────── */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.10);

  /* ── Border Radius ────────────────────────────────────── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* ── Layout ───────────────────────────────────────────── */
  --max-width: 1200px;
  --nav-height: 72px;
}
