/* Liquid Glass & Effects */
.liquid-glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Organic Background Blobs */
.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    animation: move 25s infinite alternate ease-in-out;
}

@keyframes move {
    from { transform: translate(-5%, -5%) rotate(0deg); }
    to { transform: translate(15%, 15%) rotate(10deg); }
}

/* Micro-Interactions */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Scroll Reveal States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}