/* Base tokens
 * Rôle: variables globales (couleurs, rayons, ombres, largeur max).
 * Chargement: premier fichier CSS de la stack.
 * Note: toute évolution visuelle globale doit passer par ces variables.
 */
:root{
  --bg:#1F2C47;
  --bg2:#172338;
  --panel:rgba(255,255,255,0.04);
  --border:rgba(255,255,255,0.08);
  --text:#EAEAEA;
  --muted:#AFC3D6;
  --accent:#7FD0D2;
  --accent2:#55C3A5;
  --max:1180px;
  --radius:24px;
  --radius-lg:22px;
  --shadow:0 20px 60px rgba(0,0,0,0.35);
}
