:root {
  /* Core Brand */
  --color-ink:        #0E0E12;
  --color-parchment:  #F5F2EB;
  --color-lime:       #C6F135;
  --color-ember:      #E84C1E;
  --color-slate:      #2A2A38;
  --color-mist:       #E8E6DF;
  --color-fog:        #9A9890;

  /* Semantic */
  --color-bg:         var(--color-parchment);
  --color-surface:    #FFFFFF;
  --color-surface-dark: var(--color-slate);
  --color-text:       var(--color-ink);
  --color-text-muted: var(--color-fog);
  --color-accent:     var(--color-lime);
  --color-cta:        var(--color-ink);
  --color-cta-text:   var(--color-lime);
  --color-danger:     var(--color-ember);

  /* Path Colors */
  --path-data:        #3B82F6;
  --path-dev:         #8B5CF6;
  --path-marketing:   #F59E0B;
  --path-ux:          #EC4899;
  --path-ops:         #10B981;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-arabic:  'IBM Plex Arabic', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;
  --text-hero: clamp(3.5rem, 8vw, 7rem);

  /* 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;
  --section-padding: clamp(5rem, 10vw, 9rem);

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

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(14, 14, 18, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 14, 18, 0.1);
  --shadow-lg: 0 16px 40px rgba(14, 14, 18, 0.12);

  /* Layout */
  --container-max: 1280px;
  --nav-height: 72px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.6s ease;

  /* Breakpoints (reference) */
  /* sm: 640px | md: 768px | lg: 1024px | xl: 1280px */
}
