/*
 * tokens.css — design tokens (CSS custom properties) du Project Command Center.
 * Palette dark + 8 couleurs d'états. Réf : Annexe-C §C.0 et §C.5.
 */
:root {
  /* Fond & surfaces (dark) */
  --bg: #0d1117;
  --surface: #161b22;
  --surface-2: #21262d;
  --border: #30363d;

  /* Texte */
  --text: #e6edf3;
  --text-muted: #8b949e;

  /* Accent */
  --accent: #2f81f7;

  /* Couleurs des 8 états (§C.5) */
  --state-todo: #6e7681;
  --state-in_progress: #2f81f7;
  --state-to_verify: #d29922;
  --state-validated: #3fb950;
  --state-rejected: #f85149;
  --state-to_redo: #db6d28;
  --state-blocked: #a371f7;
  --state-archived: #484f58;

  /* Espacement (échelle 4px) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;

  /* Typographie */
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  --text-size: 16px;
  --line-height: 1.5;

  /* Rayons & ombres */
  --radius: 6px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);

  /* Dimensions de layout */
  --nav-width: 240px;
  --header-height: 56px;
  --status-height: 36px;
}
