/* Proxant AI — Effects: radii, borders, shadows, motion
   Shadows are soft and cool-tinted (ink-blue) — clinical, never heavy/black.
   Corners are generously rounded (clinical-friendly) but not pill-soft. */

:root {
  /* Radii */
  --radius-xs:   4px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   18px;
  --radius-2xl:  24px;
  --radius-full: 999px;

  /* Border widths */
  --border-width: 1px;
  --border-width-strong: 1.5px;

  /* Shadows — cool ink tint, soft spread */
  --shadow-xs: 0 1px 2px rgba(12, 26, 36, 0.06);
  --shadow-sm: 0 1px 2px rgba(12, 26, 36, 0.06), 0 2px 6px rgba(12, 26, 36, 0.05);
  --shadow-md: 0 2px 4px rgba(12, 26, 36, 0.05), 0 8px 18px rgba(12, 26, 36, 0.08);
  --shadow-lg: 0 4px 8px rgba(12, 26, 36, 0.06), 0 18px 40px rgba(12, 26, 36, 0.12);
  --shadow-xl: 0 8px 16px rgba(12, 26, 36, 0.08), 0 32px 64px rgba(12, 26, 36, 0.16);
  --shadow-focus: 0 0 0 3px var(--ring-focus);

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