/* ════════════════════════════════════════════════════════
   CRYSTAL CLEAR ERP — Global resets & canvas utilities
   ════════════════════════════════════════════════════════ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #020408;
}

/* The full-screen canvas drawn by w1.js */
.threads-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
