/* ============================================================================
 * css/tokens/z-index.css  —  Stapel-Reihenfolge (v2 §14.5)
 * Benannte Skala statt willkuerlicher Werte. Bestand streut:
 *   1,10,20,1000,2100,2500,3000,3100,5000,5100,9999,10000,10001,10002
 * Mapping (Schritt 8): klein->base/raised; 1000->dropdown; 2100/2500->sticky/
 * overlay; 3000/3100->modal; 5000/5100->toast; 9999+ -> max/focus-guard.
 * ==========================================================================*/

:root {
  --z-base:      0;
  --z-raised:    10;
  --z-dropdown:  1000;
  --z-sticky:    1100;
  --z-overlay:   2000;
  --z-modal:     3000;
  --z-toast:     4000;
  --z-max:       9000;
  --z-focus-guard: 9999; /* oberste Sicherungs-Ebene (Fokus-Falle o. Ae.) */
}
