.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.brutalist-shadow {
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 1);
}

.brutalist-shadow-hover:hover {
    box-shadow: 12px 12px 0px 0px #2E5BFF;
    transform: translate(-4px, -4px);
}

.mesh-gradient {
    background-color: #f9f9f9;
    background-image:
        radial-gradient(at 0% 0%, rgba(46, 91, 255, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 255, 170, 0.05) 0px, transparent 50%);
}

.stardust {
    position: absolute;
    background: #2E5BFF;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.2;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(100px, 100px) rotate(360deg);
    }
}

/* Fluid Celestial Orb Animation */
@keyframes celestialOrbPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(46, 91, 255, 0.2), 8px 8px 0px 0px rgba(0, 0, 0, 1);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 0 70px rgba(46, 91, 255, 0.4), 12px 12px 0px 0px rgba(0, 0, 0, 1);
    }
}

.animate-celestial-fluid {
    animation: celestialOrbPulse 6s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

/* Seamless Orbital Motion */
@keyframes orbitMotion {
    from {
        transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
    }
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -80px;
    /* Offset to center item height */
    margin-left: -112px;
    /* Offset to center item width */
    animation: orbitMotion var(--orbit-speed) linear infinite;
    --orbit-radius: 280px;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
    .orbit-item {
        position: static;
        margin: 0;
        animation: none !important;
        transform: none !important;
        width: 100%;
        max-width: 280px;
    }
}

.metric-reveal {
    opacity: 0;
    pointer-events: none;
}

.metric-reveal.active {
    opacity: 1;
    pointer-events: auto;
}

/* Shine Effect for Premium Feel */
.premium-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 170, 0.3), transparent);
    z-index: -1;
    filter: blur(8px);
    border-radius: 50%;
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}