/* Emusys — shadow, motion, focus tokens. Shadows are subtle, navy-tinted. */

:root {
  --shadow-xs: 0 1px 2px rgba(4, 2, 58, 0.06);
  --shadow-sm: 0 2px 8px rgba(4, 2, 58, 0.07);
  --shadow-md: 0 6px 20px rgba(4, 2, 58, 0.09);
  --shadow-lg: 0 16px 40px rgba(4, 2, 58, 0.13);
  --shadow-cta: 0 6px 16px rgba(81, 66, 228, 0.28); /* purple glow under primary CTA */

  --focus-ring: 0 0 0 3px rgba(81, 66, 228, 0.30);

  /* Motion — calm, professional. Fades + small translates; no bounces. */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 320ms; /* @kind other */
}
