/* Hero Canvas - WebGL Background */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content but above background color */
    pointer-events: none;
    /* Let clicks pass through */
}

/* Ensure Hero Content is above Canvas */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Fallback for GSAP: Ensure visibility if JS fails */
.hero-content h1,
.hero-content p,
.hero-buttons,
.hero-image {
    visibility: visible;
}