/* =========================================================
   tokens.css — Design tokens (variables, reset, base)
   Une seule source de vérité pour les couleurs, fontes, espacements.
   ========================================================= */

:root {
  /* Couleurs */
  --bg: #0A0A0A;
  --bg-card: #1A1A1A;
  --muted: #999;
  --border: #222;
  --accent: #FF6B00;
  --accent-soft: #FF8C38;
  --grad: linear-gradient(135deg, #FF6B00, #FF8C38);

  /* Typographie */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Layout */
  --radius: 18px;
  --container: 1240px;

  /* Animation */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button, input, textarea {
  font-family: inherit; font-size: inherit; color: inherit;
  border: none; background: none; outline: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
a, button { -webkit-tap-highlight-color: transparent; }
