/* =========================================================
   CCC — Design Tokens (V2)
   Source d’autorité — AUCUN STYLE DIRECT
   ========================================================= */

:root {
  /* ---------- Surfaces ---------- */
  --bg-global: #0b0d0f;
  --surface: #15181c;
  --surface-alt: #1b1f24;
  --border-subtle: #262a30;

  /* ---------- Texte ---------- */
  --text-main: #e8e8e8;
  --text-muted: #a0a4a8;

  /* ---------- Actions ---------- */
  --accent: #e28a1d;
  --accent-hover: #c87616;
  --accent-soft: rgba(226, 138, 29, 0.25);

  /* ---------- Feedback ---------- */
  --success: #2f8f6a;
  --danger: #b85c5c;
  --danger-muted: rgba(184, 92, 92, 0.85);

  /* ---------- Typographie ---------- */
  --font-text: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-title: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;

  /* ---------- Espacements (base 8px) ---------- */
  --space-0: 0;
  --space-1: 0.5rem;   /* 8 */
  --space-2: 1rem;     /* 16 */
  --space-3: 1.5rem;   /* 24 */
  --space-4: 2rem;     /* 32 */
  --space-5: 3rem;     /* 48 */

  /* ---------- Layout ---------- */
  --container-width: 1100px;

  /* ---------- Radius ---------- */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  /* ---------- Accessibilité ---------- */
  --focus-ring: 2px solid var(--accent);
}
