.partner-logo {
    filter: invert(1);
    opacity: 0.85;
    transition: all 0.3s ease;
}
.glass-card:hover .partner-logo {
    opacity: 1;
    transform: scale(1.05);
}

.side-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #fff, transparent);
    background-size: 100% 200%;
    animation: scrollLineAnim 2s infinite;
}

@keyframes scrollLineAnim {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}

.cyber-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, transparent);
    background-size: 200% 100%;
    animation: cyberFlow 3s linear infinite;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

@keyframes cyberFlow {
    0% { background-position: 200% 0%; }
    100% { background-position: -200% 0%; }
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0) 70%);
    filter: blur(40px);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

#zoom-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    transition: transform 0.1s ease-out, color 0.1s ease-out;
    will-change: transform, color;
    transform: scale(0.5);
    color: rgb(200, 200, 200);
}

.light-path {
    stroke-dasharray: 100 1000;
    stroke-dashoffset: 400;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 1));
    transition: stroke-dashoffset 0.1s ease-out;
}

.innovation-glow-wrap {
    position: relative;
    padding: 2px;
    border-radius: 2.6rem;
    background: transparent;
    transition: background 0.5s ease;
}

.innovation-glow-inner {
    background: #000;
    border-radius: 2.5rem;
}

.glow-border {
    position: absolute;
    inset: 0;
    border-radius: 2.6rem;
    padding: 2px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6, #22d3ee);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}
