/* materi.css */
body { 
    background-color: #f1f5f9; 
    background-image: radial-gradient(#cbd5e1 0.5px, transparent 0.5px);
    background-size: 24px 24px;
}
.material-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    border-radius: 24px;
}
.group-hover-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06), 0 0 0 1px rgba(16, 185, 129, 0.1) !important;
    background: white !important;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    pointer-events: none; /* Let clicks pass through to canvas if needed, but usually we want buttons to be clickable */
}
.hero-content * {
    pointer-events: auto;
}
