/* ============================================================
   Cyberfy — Elevation tokens
   Shadow-light by design. Color blocks substitute for elevation.
   ============================================================ */

:root {
  /* Level 0 (flat): no shadow, no border — color blocks, footer, hero */
  --elevation-0: none;

  /* Level 1 (hairline): 1px border on canvas — pricing cards, inputs */
  --elevation-1-border: 1px solid var(--color-hairline);

  /* Level 2 (soft): subtle drop shadow — floating template tiles, menus */
  --elevation-2: 0 4px 16px rgba(0, 0, 0, 0.06);

  /* Level 3 (modal): stronger shadow + scrim — lightbox overlays */
  --elevation-3: 0 24px 64px rgba(0, 0, 0, 0.24);
  --scrim: rgba(0, 0, 0, 0.6);
}
