/* ==========================================================================
   Vorta — Effects: shadows, blur, glows, motion (LIGHT theme)
   Soft, lifted shadows for floating white cards; gentle blue glow accents.
   ========================================================================== */

:root {
  /* ---- Elevation shadows (soft, for floating cards) --------------------- */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.12), 0 8px 24px rgba(15, 23, 42, 0.06);

  /* ---- Electric-blue glow (hover signature, softened for light) --------- */
  --glow-blue-sm: 0 4px 14px rgba(37, 99, 235, 0.25);
  --glow-blue-md: 0 16px 40px rgba(37, 99, 235, 0.28);
  --glow-blue-lg: 0 0 80px rgba(37, 99, 235, 0.18);
  --glow-ring: 0 0 0 4px var(--accent-ring);

  /* ---- Backdrop blur ---------------------------------------------------- */
  --blur-sm: 8px;
  --blur-md: 14px;
  --blur-xl: 22px;

  /* ---- Motion ----------------------------------------------------------- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 150ms; /* @kind other */
  --dur-base: 250ms; /* @kind other */
  --dur-slow: 500ms; /* @kind other */

  /* Gradients — soft blue wash on the light canvas */
  --gradient-blue: radial-gradient(120% 120% at 50% 0%, rgba(37, 99, 235, 0.10) 0%, rgba(238, 242, 248, 0) 60%); /* @kind color */
  --gradient-card: linear-gradient(160deg, rgba(37, 99, 235, 0.06), rgba(255, 255, 255, 0) 55%); /* @kind color */
}
