:root {
  /* Colors (HSL tokens) */
  --background: 30 40% 98%;
  --foreground: 340 20% 20%;

  --card: 0 0% 100%;
  --card-foreground: 340 20% 20%;

  --popover: 0 0% 100%;
  --popover-foreground: 340 20% 20%;

  --primary: 345 75% 55%;
  --primary-foreground: 0 0% 100%;

  --secondary: 30 30% 94%;
  --secondary-foreground: 340 20% 20%;

  --muted: 30 30% 96%;
  --muted-foreground: 340 10% 50%;

  --accent: 345 60% 92%;
  --accent-foreground: 345 75% 40%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;

  --border: 30 30% 90%;
  --input: 30 30% 90%;
  --ring: 345 75% 55%;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-9: 2.5rem;
  --space-10: 3rem;

  /* Typography */
  --font-sans:
    'Atkinson Hyperlegible', system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  --font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 4rem;
  --leading-tight: 1.25;
  --leading-normal: 1.5;

  /* Shadows */
  --shadow-soft: 0 4px 20px hsl(345 40% 70% / 0.15);
  --shadow-hover: 0 8px 30px hsl(345 40% 60% / 0.2);

  /* Gradients */
  --gradient-hero: linear-gradient(
    135deg,
    hsl(345 75% 55% / 0.1),
    hsl(30 40% 98%)
  );
  --gradient-card: linear-gradient(180deg, hsl(0 0% 100%), hsl(30 30% 98%));

  /* Layout */
  --container-max: 72rem; /* 1152px */
}

[data-theme='dark'] {
  --background: 340 25% 12%;
  --foreground: 30 30% 95%;

  --card: 340 20% 15%;
  --card-foreground: 30 30% 95%;

  --popover: 340 20% 15%;
  --popover-foreground: 30 30% 95%;

  --primary: 345 75% 60%;
  --primary-foreground: 0 0% 100%;

  --secondary: 340 20% 20%;
  --secondary-foreground: 30 30% 95%;

  --muted: 340 20% 20%;
  --muted-foreground: 30 20% 70%;

  --accent: 345 60% 25%;
  --accent-foreground: 345 75% 70%;

  --destructive: 0 62.8% 50.6%;
  --destructive-foreground: 0 0% 100%;

  --border: 340 20% 25%;
  --input: 340 20% 25%;
  --ring: 345 75% 60%;

  --gradient-hero: linear-gradient(
    135deg,
    hsl(345 75% 25% / 0.3),
    hsl(340 25% 12%)
  );
  --gradient-card: linear-gradient(180deg, hsl(340 20% 15%), hsl(340 25% 12%));
  --shadow-soft: 0 4px 20px hsl(0 0% 0% / 0.3);
  --shadow-hover: 0 8px 30px hsl(0 0% 0% / 0.4);
}
