/* Emusys Academy — shadow, motion, focus tokens.
   Dark theme: shadows lean on pure black (surfaces are already dark), CTA gets a gold glow. */

:root {
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.30);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.36);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-cta: 0 6px 16px rgba(207, 152, 55, 0.35); /* gold glow under primary CTA */

  --focus-ring: 0 0 0 3px rgba(207, 152, 55, 0.35);

  /* 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 */
}
