/* Mi Lucha es Rosa — Spacing, radii, shadows, motion */
:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radii — soft and rounded, echoing the ribbon's curves */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Shadows — soft pink-tinted, never harsh black */
  --shadow-card: 0 2px 12px rgba(122, 16, 80, 0.08);
  --shadow-raised: 0 8px 28px rgba(122, 16, 80, 0.14);
  --shadow-focus: 0 0 0 3px rgba(234, 79, 164, 0.35);

  /* Motion — gentle, hopeful; fades and soft rises */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --duration-fast: 150ms; /* @kind other */
  --duration-base: 250ms; /* @kind other */
  --duration-slow: 450ms; /* @kind other */
}
