/* ============================================================
   VISPORA — RADII, BORDERS, SHADOWS, MOTION
   Rounded corners 12–18px. Hairline borders. Soft, low shadows.
   ============================================================ */
:root {
  /* ---- Corner radii ---- */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   14px;   /* default card / input */
  --radius-lg:   18px;   /* large card / panel */
  --radius-xl:   24px;   /* hero / feature panel */
  --radius-pill: 999px;  /* chips, switches, avatars */

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

  /* ---- Shadows — soft, warm-tinted, low opacity ---- */
  --shadow-xs:  0 1px 2px rgba(34, 61, 56, 0.06);
  --shadow-sm:  0 1px 3px rgba(34, 61, 56, 0.07), 0 1px 2px rgba(34, 61, 56, 0.05);
  --shadow-md:  0 4px 12px rgba(34, 61, 56, 0.08), 0 1px 3px rgba(34, 61, 56, 0.05);
  --shadow-lg:  0 12px 28px rgba(34, 61, 56, 0.10), 0 4px 8px rgba(34, 61, 56, 0.05);
  --shadow-xl:  0 24px 56px rgba(34, 61, 56, 0.14), 0 8px 16px rgba(34, 61, 56, 0.06);

  /* lift for the apricot CTA */
  --shadow-accent: 0 6px 16px rgba(212, 117, 77, 0.28);

  /* inner sink for inputs / sunken wells */
  --shadow-inset: inset 0 1px 2px rgba(34, 61, 56, 0.06);

  /* focus ring */
  --ring: 0 0 0 3px var(--focus-ring);

  /* ---- Motion — calm, no bounce ---- */
  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1);   /* @kind other */
  --ease-in-out:cubic-bezier(0.45, 0, 0.25, 1);      /* @kind other */
  --dur-fast:   140ms;   /* @kind other */
  --dur-base:   220ms;   /* @kind other */
  --dur-slow:   360ms;   /* @kind other */
  --dur-loop:   1400ms;  /* @kind other */ /* signature loop animation */
}
