:root {
  /* Brand palette — pulled from the LuvCause heart logo */
  --color-pink-light: #f5b8e8;
  --color-pink: #ec4cd2;
  --color-magenta: #c026d3;
  --color-purple: #a855f7;
  --color-purple-deep: #7e22ce;
  --color-violet: #5b21b6;
  --color-indigo-deep: #2e1065;

  --color-primary: var(--color-purple);
  --color-primary-light: #c084fc;
  --color-primary-dark: var(--color-purple-deep);
  --color-accent: var(--color-pink);
  --color-accent-light: var(--color-pink-light);

  --gradient-brand: linear-gradient(135deg, var(--color-pink-light) 0%, var(--color-magenta) 50%, var(--color-purple-deep) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(245, 184, 232, 0.15), rgba(168, 85, 247, 0.15));
  --gradient-text: linear-gradient(135deg, #f5b8e8 0%, #c084fc 60%, #a855f7 100%);

  /* Surfaces */
  --color-bg: #07040d;
  --color-bg-elevated: #0f0818;
  --color-bg-card: rgba(255, 255, 255, 0.025);
  --color-bg-card-hover: rgba(255, 255, 255, 0.05);
  --color-bg-glass: rgba(15, 8, 24, 0.6);

  --color-text: #f5eaff;
  --color-text-muted: #b8a5c9;
  --color-text-subtle: #7a6b8a;

  --color-border: rgba(192, 132, 252, 0.12);
  --color-border-hover: rgba(192, 132, 252, 0.28);
  --color-border-strong: rgba(192, 132, 252, 0.4);

  --color-success: #4ade80;
  --color-error: #f87171;

  /* Typography */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --font-body: var(--font-sans);

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

  /* Layout */
  --max-width: 76rem;
  --nav-height: 4.5rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 48px rgba(192, 132, 252, 0.3);
  --shadow-glow-pink: 0 0 60px rgba(236, 76, 210, 0.35);

  /* Easings & transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --transition-fast: 180ms var(--ease-out-expo);
  --transition-base: 320ms var(--ease-out-expo);
  --transition-slow: 600ms var(--ease-out-expo);
}
