:root {
  --color-primary: #ff007c;
  --color-primary-dark: #d4006a;
  --color-secondary: #ff8017;
  --color-accent: #e17a2a;

  --color-bg: #ffffff;
  --color-bg-light: #f2f2f2;
  --color-bg-soft: #f9f9f9;

  --color-text: #333333;
  --color-text-muted: #808080;
  --color-heading: #222222;
  --color-white: #ffffff;
  --color-danger: #ff0000;

  --gradient-brand: linear-gradient(135deg, #ff007c 0%, #ff8017 100%);
  --gradient-brand-vertical: linear-gradient(180deg, #ff007c 0%, #e17a2a 100%);

  --font-primary: "Poppins", sans-serif;
  --font-accent: "Covered By Your Grace", cursive;

  --fs-hero: clamp(2rem, 5vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3.5vw, 2.5rem);
  --fs-h3: 1.125rem;
  --fs-body: 1rem;
  --fs-sm: 0.875rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6.25rem;

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 25px;
  --radius-xl: 50px;
  --radius-pill: 999px;

  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-brand: 0 12px 34px rgba(255, 0, 124, 0.22);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.3s;
  --dur-base: 0.6s;
  --dur-slow: 0.9s;

  --container-max: 1200px;
  --header-h: 80px;
}
