/* ── NovoMatch Effects: radii, borders, shadows ──────────────────────
 * Corners are soft and generous; the primary button is a full pill.
 * Shadows are light and diffuse (minimalist, "let imagery breathe").
 */
:root {
  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-pill: 999px;

  /* Borders */
  --border-width: 1px;
  --border-width-strong: 1.5px;

  /* Shadows — soft, cool-neutral */
  --shadow-xs: 0 1px 2px rgba(33, 21, 21, 0.05);
  --shadow-sm: 0 2px 6px rgba(33, 21, 21, 0.06);
  --shadow-md: 0 8px 24px rgba(33, 21, 21, 0.08);
  --shadow-lg: 0 18px 48px rgba(33, 21, 21, 0.10);
  --shadow-blue: 0 10px 30px rgba(28, 98, 227, 0.28);

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(28, 98, 227, 0.35);

  /* 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 */
  --duration-fast: 120ms; /* @kind other */
  --duration: 200ms; /* @kind other */
  --duration-slow: 320ms; /* @kind other */
}
