/* Modern Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

/* 3D Transform for Hero Image */
.hero-perspective {
    perspective: 1000px;
}
.hero-rotate {
    transform: rotateX(5deg) rotateY(-5deg) rotateZ(1deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out;
}
.hero-rotate:hover {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

/* Scroll Animations - Fail Safe CSS */
/* Items are visible by default. JS adds 'will-reveal' class to hide them initially. */
.will-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.will-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing Toggle */
.toggle-checkbox:checked {
    right: 0;
    border-color: #3b82f6;
}
.toggle-checkbox:checked + .toggle-label {
    background-color: #3b82f6;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Notification Toast */
.fomo-toast {
    z-index: 100;
}

.rounded-tr-lg {
    border-top-right-radius: 1.5rem !important;
}