/* ==========================================================================
   Lockace — Design tokens (cf. plan §12)
   ========================================================================== */

:root {
  /* Palette principale */
  --color-primary: #dd777d;
  --color-primary-strong: #e68e93;
  --color-primary-contrast: #1c0b0d;
  /* Nuances assombries du rose Markind, réservées aux surfaces qui portent du
     texte blanc (boutons, badges). `--color-primary` reste la couleur d'identité
     partout ailleurs : le blanc n'y atteint que 3,0:1, sous le seuil WCAG AA.
     Le survol assombrit au lieu d'éclaircir — `--color-primary-strong` est plus
     clair que la base et ferait retomber le contraste sous 4,5:1. */
  --color-primary-on-text: #bd5058;
  --color-primary-on-text-strong: #a63f46;
  --color-secondary: #4786ec;
  /* Même logique que --color-primary-on-text, côté bleu. */
  --color-secondary-on-text: #2f6ed0;
  --color-secondary-soft: #9db9f5;
  --color-tertiary: #bc7c17;
  --color-tertiary-soft: #e0a63c;
  /* Même logique que --color-primary-on-text, côté doré. */
  --color-tertiary-on-text: #9a660f;

  --color-background: #000000;
  --color-surface: #111318;
  --color-surface-alt: #191c23;

  --color-text: #f7f7f8;
  --color-text-muted: #b9bdc8;
  --color-border: #343946;

  --color-success: #4caf75;
  --color-warning: #e0a63c;
  --color-error: #e05b65;

  /* Typographie */
  --font-heading: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem);
  --text-h3: clamp(1.25rem, 1.1rem + 1vw, 1.6rem);
  --text-h2: clamp(1.6rem, 1.3rem + 1.6vw, 2.2rem);
  --text-h1: clamp(2rem, 1.5rem + 2.8vw, 3.2rem);

  /* Espacements */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;

  /* Divers */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-card: 0 10px 30px rgb(0 0 0 / 0.55);
  --container-max: 72rem;
  --container-narrow: 46rem;
  --tap-target: 44px;
  --transition-fast: 160ms ease;
}
