/* ============================================================
   Localist EG — Radius, shadow & motion tokens
   Soft, friendly rounding; light diffuse shadows on white cards.
   ============================================================ */
:root {
  /* Corner radius */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;   /* cards, inputs */
  --radius-lg:   16px;   /* larger panels */
  --radius-xl:   24px;
  --radius-pill: 999px;  /* buttons, chips, badges */

  /* Shadows — subtle, warm-neutral, no color tint */
  --shadow-xs:  0 1px 2px rgba(43,43,43,0.06);
  --shadow-sm:  0 2px 8px rgba(43,43,43,0.08);
  --shadow-md:  0 6px 20px rgba(43,43,43,0.10);
  --shadow-lg:  0 12px 32px rgba(43,43,43,0.14);
  --shadow-focus: 0 0 0 3px rgba(230,31,34,0.20);

  /* Motion */
  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-std:   cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --dur-fast:   120ms; /* @kind other */
  --dur-base:   200ms; /* @kind other */
  --dur-slow:   320ms; /* @kind other */
}
