html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Interactive Mesh Gradient Background */
.mesh-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #9CAF88 0%, #87CEEB 50%, #FF8C42 100%);
    z-index: 0;
    overflow: hidden;
}

#mesh-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}