/* Remove square mesh overlay if present */
.hero-mesh, .hero-bg {
    display: none !important;
}

/* Ensure Hexagon Canvas is visible */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0; /* Explicitly set behind content */
    pointer-events: none;
    overflow: hidden;
    background-color: #030304; /* Fallback if HTML bg fails */
}

canvas {
    display: block;
    opacity: 1 !important;
}

/* Make sections transparent to show hexagons */
.section, .hero {
    background: transparent !important;
}

/* Ensure content is legible */
.feature-card, .stat-item, .footer {
    backdrop-filter: blur(10px);
    background: rgba(2, 6, 23, 0.7) !important; /* Semi-transparent dark bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Improve contrast for text over the hexagons */
.feature-card {
    background: rgba(15, 23, 42, 0.75) !important; /* Slightly darker for text contrast */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 189, 248, 0.2); /* Subtle cyan border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    background: rgba(15, 23, 42, 0.85) !important;
    border-color: rgba(56, 189, 248, 0.5);
}

.hero h1, .hero-subtitle {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); /* Make text pop */
    position: relative;
    z-index: 2;
}
