:root {
  /* === BACKGROUNDS === */
  --bg-primary: #070B0A;
  --bg-secondary: #0E1A16;
  --bg-surface: rgba(255, 255, 255, 0.04);
  --bg-elevated: rgba(15, 25, 22, 0.75);
  --bg-panel: rgba(14, 26, 22, 0.85);

  /* === ACCENTS === */
  --accent-jade: #00C27A;
  --accent-gold: #F5C451;
  --accent-red: #E24A3B;
  --accent-jade-dim: rgba(0, 194, 122, 0.15);
  --accent-gold-dim: rgba(245, 196, 81, 0.12);
  --accent-red-dim: rgba(226, 74, 59, 0.12);
  --accent-jade-glow: rgba(0, 194, 122, 0.35);
  --accent-gold-glow: rgba(245, 196, 81, 0.30);

  /* === TEXT === */
  --text-primary: #F3FFF8;
  --text-secondary: #B7D9C8;
  --text-muted: #6E8F84;
  --text-inverse: #070B0A;

  /* === BORDERS === */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.10);
  --border-jade: rgba(0, 194, 122, 0.25);
  --border-gold: rgba(245, 196, 81, 0.20);

  /* === TYPOGRAPHY === */
  --font-primary: 'Poppins', sans-serif;
  --font-body: 'Inter', 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: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* === SPACING === */
  --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;

  /* === LAYOUT === */
  --container-max: 1320px;
  --section-gap-desktop: 110px;
  --section-gap-tablet: 80px;
  --section-gap-mobile: 60px;
  --header-height: 80px;

  /* === BORDERS RADIUS === */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* === 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-jade: 0 0 30px rgba(0, 194, 122, 0.20);
  --shadow-gold: 0 0 30px rgba(245, 196, 81, 0.15);
  --shadow-panel: 0 20px 60px rgba(0, 0, 0, 0.5);

  /* === TRANSITIONS === */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-xslow: 800ms ease;

  /* === Z-INDEX === */
  --z-base: 1;
  --z-raised: 10;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-drawer: 400;
  --z-modal: 500;
  --z-canvas: -1;
}