/* ==========================================================================
   Linax / Simac — Effects: radius, borders, shadows, motion
   --------------------------------------------------------------------------
   The brand reads precise and instrument-grade: modest radii, hairline
   cool-tinted borders, and soft navy-tinted shadows rather than pure black.
   ========================================================================== */

:root {
  /* ---- Radius --------------------------------------------------------- */
  --radius-xs:   4px;
  --radius-sm:   6px;
  --radius-md:   10px;   /* default for cards, inputs, buttons */
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-pill: 999px;

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

  /* ---- Shadows — navy-tinted, low & wide (never harsh black) ---------- */
  --shadow-xs:  0 1px 2px rgba(1, 32, 48, 0.06);
  --shadow-sm:  0 1px 3px rgba(1, 32, 48, 0.08), 0 1px 2px rgba(1, 32, 48, 0.05);
  --shadow-md:  0 4px 12px rgba(1, 32, 48, 0.09), 0 2px 4px rgba(1, 32, 48, 0.05);
  --shadow-lg:  0 12px 28px rgba(1, 32, 48, 0.12), 0 4px 10px rgba(1, 32, 48, 0.06);
  --shadow-xl:  0 24px 60px rgba(1, 32, 48, 0.18);
  --shadow-focus: 0 0 0 3px var(--ring);

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