/* 831 Pool & Spa — Radii, borders, shadows, motion */
:root {
  /* Corner radii — soft & friendly, not pill-everything */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Borders */
  --border-hair: 1px;
  --border-thick: 2px;

  /* Shadows — soft, cool-tinted (navy-based), for a clean floating feel */
  --shadow-xs: 0 1px 2px rgba(20, 39, 68, 0.06);
  --shadow-sm: 0 2px 6px rgba(20, 39, 68, 0.08);
  --shadow-md: 0 6px 18px rgba(20, 39, 68, 0.10);
  --shadow-lg: 0 16px 40px rgba(20, 39, 68, 0.14);
  --shadow-focus: 0 0 0 3px rgba(53, 182, 230, 0.45);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 320ms; /* @kind other */
}
