/* ============================================================
   automatIQ process — Radii, shadows, borders, motion
   ============================================================ */
:root {
  /* Corner radii — soft, modern, not pill-happy */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-pill: 999px;

  /* Elevation — cool navy-tinted shadows */
  --shadow-xs: 0 1px 2px rgba(7, 48, 93, 0.06);
  --shadow-sm: 0 2px 8px rgba(7, 48, 93, 0.08);
  --shadow-md: 0 8px 24px rgba(7, 48, 93, 0.10);
  --shadow-lg: 0 18px 48px rgba(7, 48, 93, 0.14);
  --shadow-xl: 0 32px 72px rgba(7, 48, 93, 0.18);
  /* Accent glow — for CTAs / highlighted cards on dark */
  --glow-accent: 0 8px 32px rgba(234, 161, 89, 0.35);
  --glow-navy:   0 8px 32px rgba(13, 67, 111, 0.45);

  /* Border widths */
  --border-1: 1px; /* @kind other */
  --border-2: 2px; /* @kind other */

  /* 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:   140ms; /* @kind other */
  --dur-base:   220ms; /* @kind other */
  --dur-slow:   420ms; /* @kind other */

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(234, 161, 89, 0.45);

  /* Signature dotted-grid motif (from the logo symbol) */
  --dot-grid: radial-gradient(rgba(234, 161, 89, 0.18) 1.5px, transparent 1.5px); /* @kind other */
  --dot-grid-size: 22px 22px; /* @kind other */
}
