/* VUED — tokens de design partagés (thème sombre).
   Change une couleur ou la police ICI, et tout le site suit.
   (Le CSS propre à chaque page reste dans la page.) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Police — une seule ligne à changer pour toute la typo du site */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Fonds */
  --sand: #0E0E0E; --bg: #0E0E0E;
  --white: #161616; --surface: #161616;

  /* Accent monochrome (blanc) */
  --amber: #FFFFFF; --amber-dark: #DADADA; --amber-light: #1C1C1C;
  --accent: #FFFFFF; --accent-bg: #1C1C1C;

  /* Couleurs sémantiques (verdicts, CA) */
  --green: #7DD3A8; --green-bg: #15241B;
  --red: #F0938A; --red-bg: #2A1614;
  --orange: #D9A05B; --orange-bg: #2A2114;

  /* Texte & lignes */
  --text: #F2F2F2; --muted: #9A9A9A; --border: #2A2A2A;
  --warm-muted: #8A8A8A; --warm-light: #C8C8C8;

  --black: #FFFFFF; --black-2: #EDEDED;
  --r: 0px; --r-sm: 0px;
}
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
