/* ============================================================
   EFFECTS — radii, borders, shadows, motion
   Soft, generous rounding; quiet elevation; a signature gold glow.
   ============================================================ */
:root {
  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* Borders */
  --border-hairline: 1px;
  --border-regular: 1.5px;
  --border-heavy: 2px;

  /* Shadows — cool, low-spread, editorial */
  --shadow-xs: 0 1px 2px rgba(11,20,32,0.06);
  --shadow-sm: 0 2px 8px rgba(11,20,32,0.07);
  --shadow-md: 0 10px 30px rgba(11,20,32,0.09);
  --shadow-lg: 0 24px 60px rgba(11,20,32,0.14);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.6);
  --shadow-gold: 0 10px 30px rgba(194,154,75,0.28);
  --shadow-blue: 0 10px 30px rgba(79,173,235,0.30);

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(79,173,235,0.45); /* @kind shadow */

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-med: 240ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */
}
