/* KLIT — Radii, shadows, motion
   Soft rounded corners, subtle shadows, calm Apple/Aesop-style motion. */

:root {
  /* Corner radii */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;   /* default card radius */
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows — subtle, low-spread; the brand leans on hairline borders + light shadow */
  --shadow-xs: 0 1px 2px rgba(12,18,29,0.06);
  --shadow-sm: 0 1px 3px rgba(12,18,29,0.08);
  --shadow-md: 0 4px 16px rgba(12,18,29,0.08);
  --shadow-lg: 0 12px 32px rgba(12,18,29,0.12);
  --shadow-focus: 0 0 0 3px var(--focus-ring);

  /* Motion — calm, confident easing inspired by Apple / Aesop / Cubitts */
  /* decelerate, premium settle */
  --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-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */

  --dur-fast: 140ms; /* @kind other */
  --dur-base: 240ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */
  --dur-reveal: 640ms; /* @kind other */
}
