@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Sora:wght@300;400;600;800&family=Space+Grotesk:wght@700&display=swap');

.glass-panel {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(46, 91, 255, 0.3);
    transition: all 0.3s ease;
}

.text-gradient {
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(45deg, #2E5BFF, #00F2FF);
}

.btn-solid-glow {
    background-color: #2E5BFF;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(46, 91, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-solid-glow:hover {
    background-color: #00F2FF;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.6);
}

.btn-glass-outline {
    background-color: transparent;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    transition: all 0.3s ease;
}

.btn-glass-outline:hover {
    border-color: #2E5BFF;
    color: #00F2FF;
    box-shadow: 0 0 15px rgba(46, 91, 255, 0.3);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scanner Effect */
.scanner-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.scanner-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.4), transparent);
    animation: scan 5s linear infinite;
}

@keyframes scan {
    0% {
        left: -50%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Honeycomb Grid */
.honeycomb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.hex-wrapper {
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.1));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.hex-wrapper:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 0 25px rgba(0, 242, 255, 0.5));
}

.hex-card {
    width: 250px;
    height: 280px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-color: #111111;
    position: relative;
    box-sizing: border-box;
}

.hex-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 100%);
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}