/* INTUENS — Radii, shadows, borders, motion
   The brand mark mixes hard rectangles (wordmark box) with a soft circle badge.
   UI leans clean with gentle rounding; shadows are soft and cool (tinted ink). */
:root {
  --radius-none: 0;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  --border-width: 1px;   /* @kind other */

  /* Soft, cool-tinted elevation (ink-based, low opacity) */
  --shadow-xs: 0 1px 2px rgba(44, 38, 62, 0.06);
  --shadow-sm: 0 2px 6px rgba(44, 38, 62, 0.08);
  --shadow-md: 0 6px 18px rgba(44, 38, 62, 0.10);
  --shadow-lg: 0 16px 40px rgba(44, 38, 62, 0.14);
  --shadow-brand: 0 12px 30px rgba(115, 95, 157, 0.28);
  --ring-focus: 0 0 0 3px rgba(115, 95, 157, 0.35);

  /* Motion — quiet, precise; short ease-outs, no bounce */
  --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-base: 200ms;   /* @kind other */
  --dur-slow: 320ms;   /* @kind other */
}
