:root {
  --color-bg: #ffffff;
  --color-bg-soft: #fff5fb;
  --color-bg-gradient-start: #fde4f2;
  --color-bg-gradient-mid: #f6d4ea;
  --color-bg-gradient-end: #e9c8ff;

  --color-primary: #e5189c;
  --color-primary-dark: #b8007a;
  --color-secondary: #7b2cbf;
  --color-accent: #ff3ea5;

  --color-text: #1a1a2e;
  --color-text-muted: #5a5a6e;
  --color-text-inverse: #ffffff;

  --color-cta: #22c55e;
  --color-cta-hover: #16a34a;
  --color-cta-shadow: rgba(34, 197, 94, 0.35);

  --color-border: rgba(26, 26, 46, 0.08);
  --color-input-bg: #ffffff;

  --gradient-brand: linear-gradient(135deg, #e5189c 0%, #7b2cbf 100%);
  --gradient-hero-bg: radial-gradient(ellipse at 70% 40%, #f6d4ea 0%, #fde4f2 35%, #ffffff 75%);
  --gradient-text: linear-gradient(90deg, #e5189c 0%, #7b2cbf 100%);

  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(2rem, 4.2vw, 3.5rem);
  --fs-subhero: clamp(1rem, 1.4vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-cta: 1.0625rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;

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

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 10px 30px rgba(229, 24, 156, 0.12);
  --shadow-lg: 0 20px 60px rgba(123, 44, 191, 0.18);
  --shadow-cta: 0 12px 32px rgba(34, 197, 94, 0.32);

  --container-max: 1200px;
  --container-padding: clamp(1.5rem, 5vw, 2.5rem);

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 560ms;

  --z-base: 1;
  --z-raised: 10;
  --z-sticky: 100;
  --z-modal: 1000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
