/* Digital Creation — motion, shadow & lighting tokens */
:root {
  /* Motion — cinematic, never bouncy */
  --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --duration-hover: 0.45s; /* @kind other */
  --duration-button: 0.35s; /* @kind other */
  --duration-base: 0.8s; /* @kind other */
  --duration-reveal: 1.2s; /* @kind other */
  --duration-card-hover: 0.6s; /* @kind other */

  /* Shadows — very soft, no glow */
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, .45);
  --shadow-lift: 0 32px 96px rgba(0, 0, 0, .55);
  --shadow-light-card: 0 8px 40px rgba(0, 0, 0, .06);
  --shadow-light-lift: 0 20px 60px rgba(0, 0, 0, .1);

  /* Lighting — luxury movie-poster radial */
  --glow-hero: radial-gradient(closest-side, rgba(199, 163, 90, .22), transparent 70%); /* @kind color */
}
