/* ============================================================
   Maaß IT — Effects: radii, borders, shadows, motion
   Crisp, technical, geometric — echoing the angular M-mark.
   ============================================================ */
:root {
  /* ---- Radii ---- */
  --radius-none: 0;
  --radius-xs:  4px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;

  /* ---- Border widths ---- */
  --border-hairline: 1px;
  --border-thin: 1.5px;
  --border-thick: 2px;

  /* ---- Shadows (cool neutral, low spread) ---- */
  --shadow-xs: 0 1px 2px rgba(27, 27, 27, 0.06);
  --shadow-sm: 0 2px 6px rgba(27, 27, 27, 0.08);
  --shadow-md: 0 8px 20px rgba(27, 27, 27, 0.10);
  --shadow-lg: 0 16px 40px rgba(27, 27, 27, 0.14);
  --shadow-xl: 0 28px 64px rgba(27, 27, 27, 0.18);
  --shadow-orange: 0 10px 28px rgba(255, 124, 0, 0.30);
  --shadow-focus: 0 0 0 3px var(--ring);

  /* ---- 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 */
}
