/* KYDT radius, shadow, motion — soft, calm, grounded */
:root {
  /* Corner radii — gentle, never sharp; nothing pill-heavy except chips */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadows — soft, cool-tinted, low & wide like light through water */
  --shadow-xs: 0 1px 2px rgba(0,20,40,0.06);
  --shadow-sm: 0 2px 8px rgba(0,20,40,0.07);
  --shadow-md: 0 8px 24px rgba(0,20,40,0.09);
  --shadow-lg: 0 18px 48px rgba(0,20,40,0.12);
  --shadow-focus: 0 0 0 3px rgba(26,166,201,0.4);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.5);

  /* Motion — calm, steady; gentle ease, no bounce */
  --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-normal: 240ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */
}
