/* CARE / Anima International – Radius, shadow & motion tokens.
   The brand leans organic and friendly: generous corner radii, pill buttons,
   soft low-contrast shadows (never harsh), and gentle ease-out motion. */
:root {
  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows – soft, cool-tinted */
  --shadow-sm: 0 1px 2px rgba(20,20,20,0.06), 0 1px 3px rgba(20,20,20,0.05);
  --shadow-md: 0 4px 14px rgba(20,20,20,0.08);
  --shadow-lg: 0 12px 34px rgba(20,20,20,0.12);
  --shadow-brand: 0 10px 26px rgba(46,138,135,0.28);

  /* Motion */
  --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: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */
}
