.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid #f6f1fc;
    box-shadow: 0 10px 40px -10px rgba(100, 76, 181, 0.05);
}

.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}

.shimmer-bg {
    background: linear-gradient(
        90deg,
        rgba(231, 222, 255, 0) 0%,
        rgba(231, 222, 255, 0.3) 50%,
        rgba(231, 222, 255, 0) 100%
    );
    background-size: 200% 100%;
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.animate-float-slow {
    animation: float 11s ease-in-out infinite;
}

.animate-fade-up {
    animation: fadeUp 0.8s ease both;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-nav {
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow:
        0 18px 54px rgba(67, 56, 132, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.nav-solid .glass-nav {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 42px rgba(53, 45, 112, 0.18);
}

.glass-mega-menu {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(26px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 24px 70px rgba(80, 71, 151, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.4);
}

.nav-backdrop {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(10px);
}

.hero-grid {
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.abstract-block {
    transform: rotateX(58deg) rotateZ(-36deg);
    transform-style: preserve-3d;
}

.abstract-block > div {
    box-shadow: 20px 26px 42px rgba(67, 56, 132, 0.18);
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.62);
    padding: 0.5rem 1rem;
    color: #334155;
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(18px);
}

.gradient-text {
    background: linear-gradient(90deg, #6d28d9, #4f46e5, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.soft-gradient-section {
    background: linear-gradient(135deg, #f7f3ff 0%, #eef6ff 48%, #ffffff 100%);
}

.industry-scroll {
    overflow: hidden;
}

.industry-track {
    display: flex;
    gap: 1rem;
    animation: scroll-cards 32s linear infinite;
    will-change: transform;
}

.industry-card {
    min-width: 280px;
    flex: 0 0 auto;
}

.industry-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

@keyframes scroll-cards {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
.roles-scroll {
            overflow: hidden;
            position: relative;
        }

        .roles-track {
            display: flex;
            gap: 1.5rem;
            animation: scroll-roles 40s linear infinite;
            will-change: transform;
        }

        .roles-track:hover {
            animation-play-state: paused;
        }

        .role-card {
            min-width: 450px;
        }

        .role-card>div {
            overflow: hidden;
            word-break: break-word;
        }

        .role-card p,
        .role-card ul,
        .role-card li {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        @keyframes scroll-roles {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }
.wire-line {
    position: absolute;
    left: 2rem;
    top: 2.5rem;
    bottom: 2.5rem;
    width: 3px;
    background: linear-gradient(
        to bottom,
        rgba(99, 102, 241, 0.1),
        rgba(99, 102, 241, 0.8),
        rgba(99, 102, 241, 0.1)
    );
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.08);
}

.wire-point {
    position: relative;
    z-index: 10;
}

.wire-point::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 9999px;
    border: 3px solid #7c3aed;
    background: #ffffff;
    box-shadow: 0 0 0 8px rgba(124, 58, 237, 0.08);
    animation: pulse-wire 2.4s ease-in-out infinite;
}

@keyframes pulse-wire {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.18);
        opacity: 0.7;
    }
}
