:root {
  /* ─── Colors ─── */
  --bg-main: #070707;
  --bg-elevated: #101010;
  --bg-surface: #171717;
  --bg-card: #1a1a1a;
  --bg-overlay: rgba(7, 7, 7, 0.85);

  --text-primary: #F5F5F2;
  --text-secondary: #A7A7A2;
  --text-muted: #6b6b66;

  --accent: #D71920;
  --accent-bright: #FF3038;
  --accent-dark: #a11319;
  --accent-glow: rgba(215, 25, 32, 0.15);

  --border: rgba(255, 255, 255, 0.10);
  --border-hover: rgba(255, 255, 255, 0.20);

  --white: #FFFFFF;
  --black: #000000;

  --success: #22c55e;

  /* ─── Typography ─── */
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-heading: 'Oswald', 'Bebas Neue', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --fs-hero: clamp(3.2rem, 8vw, 8.5rem);
  --fs-h1: clamp(2.4rem, 5vw, 4.5rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 3rem);
  --fs-h3: clamp(1.3rem, 2.5vw, 1.8rem);
  --fs-h4: clamp(1.1rem, 1.8vw, 1.35rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.05rem);
  --fs-small: clamp(0.8rem, 0.9vw, 0.875rem);
  --fs-xs: 0.75rem;

  --lh-tight: 0.95;
  --lh-heading: 1.1;
  --lh-body: 1.65;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
  --ls-wider: 0.12em;

  /* ─── Spacing ─── */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-section: clamp(4rem, 8vw, 8rem);

  /* ─── Layout ─── */
  --container-max: 1280px;
  --container-wide: 1440px;
  --container-narrow: 900px;
  --container-padding: clamp(1.25rem, 4vw, 3rem);

  --header-height: 72px;

  /* ─── Borders ─── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* ─── Transitions ─── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --duration-slow: 0.6s;

  /* ─── Shadows ─── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 4px 20px rgba(215, 25, 32, 0.3);

  /* ─── Z-index ─── */
  --z-base: 1;
  --z-above: 10;
  --z-header: 100;
  --z-overlay: 200;
  --z-lightbox: 300;
  --z-modal: 400;
  --z-loader: 500;
}
