:root {
  /* Official palette */
  --color-primary: #4A2970;
  --color-secondary: #C64891;
  --color-accent: #8DC6ED;
  --color-surface: #FFFFFF;

  /* Derived transparencies */
  --color-primary-soft: rgba(74, 41, 112, 0.2);
  --color-primary-mid: rgba(74, 41, 112, 0.65);
  --color-secondary-soft: rgba(198, 72, 145, 0.25);
  --color-accent-soft: rgba(141, 198, 237, 0.35);

  /* Typography */
  --font-family-base: 'Poppins', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  --font-family-accent: 'Montserrat', 'Poppins', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.375rem;
  --line-height-base: 1.5;

  /* Radius */
  --radius-xs: 0;
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-pill: 0;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(74, 41, 112, 0.2);
  --shadow-sm: 0 4px 12px rgba(74, 41, 112, 0.25);
  --shadow-md: 0 12px 24px rgba(74, 41, 112, 0.35);

  /* Spacing scale */
  --space-0: 0;
  --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;

  /* Container widths */
  --container-sm: 640px;
  --container-md: 960px;
  --container-lg: 1200px;
}
