/* Pumpkin Nights — Radii, borders, shadows, glows, motion.
   On a black canvas, depth comes from GLOW (warm light bleeding outward),
   not from drop shadows. Corners are soft but not bubbly. */

:root {
  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Borders */
  --border-1: 1px;
  --border-2: 2px;

  /* Elevation — used on light surfaces */
  --shadow-sm: 0 1px 2px rgba(10, 10, 11, 0.18);
  --shadow-md: 0 8px 24px rgba(10, 10, 11, 0.28);
  --shadow-lg: 0 24px 60px rgba(10, 10, 11, 0.45);

  /* Glow — the signature: warm pumpkin light on dark */
  --glow-pumpkin-sm: 0 0 16px rgba(249, 102, 0, 0.45);
  --glow-pumpkin-md: 0 0 32px rgba(249, 102, 0, 0.55);
  --glow-pumpkin-lg: 0 0 64px rgba(249, 102, 0, 0.5);
  --glow-ember: 0 0 28px rgba(255, 194, 75, 0.5);
  --glow-cyan-sm: 0 0 16px rgba(45, 212, 232, 0.5);
  --glow-cyan-md: 0 0 34px rgba(45, 212, 232, 0.55);

  /* Motion — gentle, magical, never jittery */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-base: 240ms; /* @kind other */
  --dur-slow: 480ms; /* @kind other */

  /* Subtle film grain noise overlay color */
  --grain-opacity: 0.05; /* @kind other */
}
