/* ============================================================
   WHALE DIGITAL — Effects: shadows, blur, motion
   Soft, low, neutral shadows. Motion that whispers.
   ============================================================ */

:root {
  /* Elevation — soft & neutral (never harsh) */
  --shadow-xs:  0 1px 2px rgba(15, 23, 30, 0.05);
  --shadow-sm:  0 1px 3px rgba(15, 23, 30, 0.08), 0 1px 2px rgba(15, 23, 30, 0.05);
  --shadow-md:  0 6px 16px -4px rgba(15, 23, 30, 0.10), 0 2px 6px -2px rgba(15, 23, 30, 0.06);
  --shadow-lg:  0 18px 40px -12px rgba(15, 23, 30, 0.16), 0 6px 14px -8px rgba(15, 23, 30, 0.10);
  --shadow-xl:  0 36px 72px -24px rgba(15, 23, 30, 0.22);

  /* Accent glow (used very sparingly on primary CTA hover) */
  --glow-accent: 0 8px 28px -6px rgba(240, 97, 28, 0.45);
  --glow-brand:  0 8px 28px -6px rgba(16, 114, 168, 0.42);

  /* Ring for focus-visible */
  --focus-ring: 0 0 0 3px rgba(16, 114, 168, 0.38);

  /* Glass */
  --glass-blur: 14px; /* @kind other */
  --glass-light: rgba(255, 255, 255, 0.65);
  --glass-dark:  rgba(11, 15, 20, 0.55);
  --glass-border-light: rgba(255, 255, 255, 0.55);
  --glass-border-dark:  rgba(255, 255, 255, 0.10);

  /* Motion — restrained, confident easing */
  --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 */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-base:   240ms; /* @kind other */
  --dur-slow:   420ms; /* @kind other */
}
