/* ============================================================
   CrumpIT — Particle background canvas
   Sits behind ALL content, above the page background.
   Drawing + freeze logic lives in assets/js/particles.js.
   ============================================================ */

@layer particles {
  .bg-canvas {
    position: fixed;
    inset: 0;
    z-index: var(--z-bg);
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: block;
    pointer-events: none;   /* never intercepts clicks/scroll */
  }
}
