/* ============================================
   Mac Sécurité — Variables & Design System
   Palette : noir profond + orange signature
   ============================================ */
:root {
  /* Fonds */
  --bg-primary:   #0a0a0c;   /* Noir profond */
  --bg-secondary: #121317;   /* Anthracite */
  --bg-card:      #18191f;   /* Carte sombre */
  --bg-elevated:  #1f2128;   /* Élément surélevé */
  --bg-light:     #f5f5f7;   /* Section claire */

  /* Orange signature (logo) */
  --orange:       #ff6a00;
  --orange-light: #ff8533;
  --orange-dark:  #e85d00;
  --orange-glow:  rgba(255, 106, 0, 0.35);

  /* Accents secondaires */
  --accent-green: #2ecc71;
  --accent-blue:  #3a9bd6;
  --accent-red:   #e8211a;

  /* Textes */
  --text-primary:   #f0f1f4;
  --text-secondary: #b8bcc8;
  --text-muted:     #7a7f8c;
  --text-dark:      #0a0a0c;

  /* Bordures */
  --border:       rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 106, 0, 0.4);

  /* Typographie */
  --font-display: 'Rajdhani', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --container:  1240px;
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  22px;
  --nav-h:      72px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
