/* ==========================================================================
   HOMME FORCE — URBAN PERFORMANCE DESIGN SYSTEM
   Design Tokens & CSS Variables
   ========================================================================== */

:root {
  /* Core Palette: Deep Charcoal, Graphite, Warm Off-White, Amber Accent */
  --bg-black: #090a0c;
  --bg-primary: #0e1013;
  --bg-secondary: #14171d;
  --bg-surface: #1a1e26;
  --bg-elevated: #222732;
  --bg-subtle: #121419;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.25);
  --border-accent: rgba(200, 146, 71, 0.4);

  /* Typography Colors */
  --text-pure: #ffffff;
  --text-primary: #f2efe9;
  --text-secondary: #a7abb4;
  --text-muted: #6a717e;
  --text-faint: #414754;

  /* Meaningful Rare Accent: Muted Amber / Burnt Gold */
  --accent-amber: #c89247;
  --accent-amber-hover: #db9f4e;
  --accent-amber-glow: rgba(200, 146, 71, 0.18);
  --accent-amber-subtle: rgba(200, 146, 71, 0.08);

  /* Secondary Accent: Steel Blue-Grey */
  --steel-light: #7c8899;
  --steel-mid: #485261;
  --steel-dark: #272d36;
  --steel-subtle: rgba(72, 82, 97, 0.25);

  /* Semantic State Colors (Subdued) */
  --state-success: #558764;
  --state-warning: #c89247;
  --state-info: #50718d;

  /* Typography Families */
  --font-display: 'Barlow Condensed', 'Syne', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Space Mono', monospace;

  /* Typography Scale */
  --text-2xs: 0.6875rem; /* 11px */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-md: 1.125rem;   /* 18px */
  --text-lg: 1.25rem;    /* 20px */
  --text-xl: 1.5rem;     /* 24px */
  --text-2xl: 2rem;      /* 32px */
  --text-3xl: 2.75rem;   /* 44px */
  --text-4xl: 4rem;      /* 64px */
  --text-5xl: 5.5rem;    /* 88px */
  --text-hero: clamp(3.2rem, 8.5vw, 8.5rem);
  --text-display-giant: clamp(4.5rem, 14vw, 15rem);

  /* Layout & Spacing */
  --container-max: 1380px;
  --container-wide: 1600px;
  --container-article: 820px;
  --header-height: 80px;
  --header-height-mobile: 68px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Transitions & Shadows */
  --transition-fast: 160ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 320ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 650ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-elevated: 0 20px 50px rgba(0, 0, 0, 0.7);

  /* Radii */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
}
