/* Meidar — Radius, elevation (shadow) and motion tokens.
   The monogram is sharp and angular; cards use a restrained, architectural radius
   and soft, low-spread shadows (no heavy drop shadows). */

:root {
  /* Corner radius */
  --radius-none: 0;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-pill: 999px;

  /* Elevation — soft, warm-tinted, low spread */
  --shadow-xs: 0 1px 2px rgba(21, 22, 26, 0.06);
  --shadow-sm: 0 2px 6px rgba(21, 22, 26, 0.07);
  --shadow-md: 0 8px 24px rgba(21, 22, 26, 0.09);
  --shadow-lg: 0 18px 48px rgba(21, 22, 26, 0.12);
  --shadow-brand: 0 12px 30px rgba(226, 85, 26, 0.28);
  --ring-focus: 0 0 0 3px rgba(245, 141, 70, 0.45);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-in: cubic-bezier(0.4, 0, 1, 1); /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 220ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */
}
