/* Leo Fund — Radii, borders, shadows, motion */
:root{
  /* Corner radii — soft, friendly, never fully rounded on containers */
  --radius-xs:4px;
  --radius-sm:8px;
  --radius-md:12px;
  --radius-lg:18px;
  --radius-xl:28px;
  --radius-pill:999px;

  /* Borders */
  --border-width:1px;
  --border-width-strong:2px;

  /* Shadows — soft, warm-tinted (plum shadow instead of neutral grey) */
  --shadow-xs:0 1px 2px rgba(42,15,56,0.06);
  --shadow-sm:0 2px 6px rgba(42,15,56,0.08);
  --shadow-md:0 8px 24px rgba(42,15,56,0.10);
  --shadow-lg:0 18px 48px rgba(42,15,56,0.14);
  --shadow-focus:0 0 0 3px rgba(230,177,68,0.55);

  /* Motion */
  --ease-standard:cubic-bezier(0.4,0.1,0.2,1); /* @kind other */
  --ease-out:cubic-bezier(0.16,1,0.3,1); /* @kind other */
  --dur-fast:120ms; /* @kind other */
  --dur-base:200ms; /* @kind other */
  --dur-slow:340ms; /* @kind other */
}
