/* SoukPilot — design tokens audités, v2 */
:root {
  color-scheme: light;
  --brand-primary: #1B2A4A;
  --brand-primary-light: #2F4570;
  --brand-primary-dark: #101B30;
  --brand-primary-hover: #24365C;
  --brand-on-primary: #FFFFFF;

  --brand-secondary: #2ECC9B;
  --brand-secondary-hover: #29B78B;
  --brand-on-secondary: #1B2A4A;
  --brand-secondary-text: #1D8464;

  --brand-accent: #E8833A;
  --brand-accent-hover: #D07534;
  --brand-on-accent: #1B2A4A;
  --brand-accent-text: #965525;

  --brand-background: #F7F7F5;
  --brand-surface: #FFFFFF;
  --brand-surface-elevated: #FFFFFF;
  --brand-surface-dark: #101B30;
  --brand-text: #111827;
  --brand-text-muted: #5B6472;
  --brand-text-on-dark: #FFFFFF;
  --brand-text-on-dark-muted: #B9C0CC;
  --brand-border: #E2E5EA;
  --brand-border-strong: #CBD1D9;

  /* Ces teintes sont assez foncées pour du petit texte sur fond blanc (WCAG AA). */
  --brand-success: #167A50;
  --brand-success-bg: #E7F6EF;
  --brand-warning: #8A4D20;
  --brand-warning-bg: #FFF1E6;
  --brand-error: #C73838;
  --brand-error-bg: #FDECEC;
  --brand-info: #1F6FAE;
  --brand-info-bg: #EAF3FA;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(17,24,39,.06);
  --shadow-md: 0 4px 12px rgba(17,24,39,.08);
  --shadow-lg: 0 12px 28px rgba(17,24,39,.12);

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --container-max: 1180px;

  --font-latin: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-arabic: 'Cairo', 'Tajawal', system-ui, sans-serif;
  --fs-h1: clamp(2rem, 5vw, 2.75rem);
  --fs-h2: clamp(1.75rem, 4vw, 2.25rem);
  --fs-h3: clamp(1.25rem, 3vw, 1.5rem);
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-xs: 12px;
  --fs-kpi: clamp(1.75rem, 5vw, 2.25rem);
  --lh-tight: 1.2; --lh-normal: 1.5; --lh-relaxed: 1.7;

  --transition-fast: 120ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 320ms ease;
  --focus-ring: 0 0 0 3px rgba(46,204,155,.45);
  --focus-ring-error: 0 0 0 3px rgba(199,56,56,.30);
}

[data-theme="dark"] {
  color-scheme: dark;
  --brand-background: #0B1424;
  --brand-surface: #101B30;
  --brand-surface-elevated: #16233D;
  --brand-text: #F3F5F8;
  --brand-text-muted: #AEB7C5;
  --brand-border: #2A3752;
  --brand-border-strong: #3A4967;
  --brand-secondary-text: #64DCB3;
  --brand-accent-text: #F3A96F;
  --brand-success: #56D49B;
  --brand-success-bg: #153A2D;
  --brand-warning: #F1A56A;
  --brand-warning-bg: #452B18;
  --brand-error: #FF8585;
  --brand-error-bg: #4A2020;
  --brand-info: #7FC0F0;
  --brand-info-bg: #17334A;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-family: var(--font-latin); }
html[lang="ar"] { font-family: var(--font-arabic); }
body { margin: 0; background: var(--brand-background); color: var(--brand-text); line-height: var(--lh-normal); }
:focus-visible { outline: 2px solid transparent; box-shadow: var(--focus-ring); }
img, svg { max-width: 100%; }
[dir="rtl"] { text-align: right; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior:auto!important; transition:none!important; animation:none!important; } }
