/* =====================================================
   FLEXIHJELP DESIGN SYSTEM - CSS Variables & Tokens
   ===================================================== */

:root {
  /* ── Brand Colors ── */
  --color-primary: #1a355b;
  --color-primary-light: #2a4a7a;
  --color-primary-dark: #0f2240;
  --color-primary-10: rgba(26, 53, 91, 0.1);
  --color-primary-5: rgba(26, 53, 91, 0.05);
  --color-teal: #5eead4;
  --color-teal-dark: #2dd4bf;

  /* ── Gray Scale ── */
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* ── Semantic Colors ── */
  --color-success: #22c55e;
  --color-success-light: #dcfce7;
  --color-success-dark: #166534;
  --color-warning: #f59e0b;
  --color-warning-light: #fef3c7;
  --color-warning-dark: #92400e;
  --color-danger: #ef4444;
  --color-danger-light: #fee2e2;
  --color-danger-dark: #991b1b;
  --color-info: #3b82f6;
  --color-info-light: #dbeafe;
  --color-info-dark: #1e40af;

  /* ── Status Badge Colors ── */
  --badge-draft-bg: #f3f4f6;
  --badge-draft-text: #1f2937;
  --badge-submitted-bg: #dbeafe;
  --badge-submitted-text: #1e40af;
  --badge-approved-bg: #dcfce7;
  --badge-approved-text: #166534;
  --badge-disputed-bg: #fef3c7;
  --badge-disputed-text: #92400e;
  --badge-payroll-bg: #e0e7ff;
  --badge-payroll-text: #3730a3;
  --badge-paid-bg: #ccfbf1;
  --badge-paid-text: #134e4a;
  --badge-pending-bg: #fff7ed;
  --badge-pending-text: #9a3412;
  --badge-live-bg: #dcfce7;
  --badge-live-text: #166534;
  --badge-accepted-bg: #dcfce7;
  --badge-accepted-text: #166534;
  --badge-interview-bg: #e0e7ff;
  --badge-interview-text: #3730a3;
  --badge-verified-bg: #dbeafe;
  --badge-verified-text: #1e40af;

  /* ── Typography ── */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --font-size-7xl: 4.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;

  /* ── Border Radius ── */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
  --radius-flexi: 8px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* ── Layout ── */
  --sidebar-width: 240px;
  --topbar-height: 64px;
  --max-width: 1280px;
}
