/* Adonify — Shadows, transitions, z-index */
:root {
  --shadow-card:  0 24px 60px rgba(0,0,0,.5);
  --shadow-nav:   0 4px 32px rgba(0,0,0,.45);
  --shadow-hover: 0 10px 32px rgba(0,0,0,.22);
  --shadow-amber: 0 6px 20px rgba(245,166,35,.3);
  --shadow-glow:  0 0 0 3px rgba(245,166,35,.12); /* focus ring */

  --transition-fast:   .15s ease; /* @kind other */
  --transition-base:   .2s ease; /* @kind other */
  --transition-medium: .35s ease; /* @kind other */
  --transition-reveal: .6s cubic-bezier(.22,1,.36,1); /* @kind other */

  --z-base:    0; /* @kind other */
  --z-raised:  1; /* @kind other */
  --z-sticky:  100; /* @kind other */
  --z-overlay: 200; /* @kind other */
  --z-modal:   1000; /* @kind other */
}
