/* ============================================================
   Hypermonkey — Effects: radius, borders, shadow, motion
   The brand is FACETED & sharp — radii stay small/architectural.
   ============================================================ */
:root {
  /* Corner radii — intentionally restrained (geometric, not pill-soft) */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-pill: 999px;

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

  /* Shadows — cool-tinted, crisp (cast off the cool gray ink, not warm) */
  --shadow-xs: 0 1px 2px rgba(20, 22, 26, 0.06);
  --shadow-sm: 0 2px 6px rgba(20, 22, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(20, 22, 26, 0.10);
  --shadow-lg: 0 18px 48px rgba(20, 22, 26, 0.14);
  --shadow-xl: 0 30px 80px rgba(20, 22, 26, 0.18);
  --shadow-brand: 0 16px 40px rgba(217, 41, 66, 0.28);
  --shadow-blue: 0 16px 40px rgba(48, 137, 190, 0.28);
  --ring-focus: 0 0 0 3px rgba(63, 155, 207, 0.45);

  /* Motion — energetic but controlled ("hyper", with a slight overshoot) */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */
}
