:root {
  /* =========================
     COLORS
  ========================= */

  --color-bg: #0b0b0c;
  --color-bg-soft: #111113;
  --color-surface: #17171a;
  --color-surface-hover: #1d1d21;

  --color-text: #f5f5f5;
  --color-text-muted: #a1a1aa;
  --color-text-soft: #d4d4d8;

  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-strong: rgba(255, 255, 255, 0.18);

  --color-accent: #d8ff3e;
  --color-accent-hover: #c4eb32;

  --color-white: #ffffff;
  --color-black: #000000;

  /* =========================
     TYPOGRAPHY
  ========================= */

  --font-sans:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 3rem;

  --text-hero: clamp(3.25rem, 8vw, 7rem);
  --text-page-title: clamp(3rem, 7vw, 6.5rem);

  /* =========================
     LAYOUT
  ========================= */

  --container: 1200px;
  --container-wide: 1400px;

  --header-height: 76px;

  /* =========================
     SPACING
  ========================= */

  --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: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;
  --space-11: 10rem;

  /* =========================
     RADIUS
  ========================= */

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 999px;

  /* =========================
     EFFECTS
  ========================= */

  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.15);

  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.2);

  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);

  --transition: 180ms ease;
  --transition-slow: 300ms ease;
}
