:root {
    --brand-blue: #0066FF;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #09090b;
    color: #f4f4f5;
    scroll-behavior: smooth;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.shimmer-text {
    background: linear-gradient(90deg, #3f3f46 0%, #ffffff 50%, #3f3f46 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shimmer 6s linear infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.3);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 2rem;
}

.page-content {
    display: none;
}

.page-content.active {
    display: block;
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding-top: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.testi-slide {
    display: none;
}

.testi-slide.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ambient-glow {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% -20%, rgba(0, 102, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

#hero {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    height: 100vh;
    max-height: 700px;
    position: relative;
    overflow: hidden;
    display: none;
    margin-top: 80px;
    border-radius: 24px;
}

#hero.active {
    display: block;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

@media (max-width: 1024px) {
    #hero {
        height: 70vh;
        max-height: 500px;
        margin-top: 70px;
        border-radius: 16px;
    }

    .hero-video {
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 50vh;
        max-height: 350px;
        margin-top: 65px;
        border-radius: 12px;
    }

    .hero-video {
        border-radius: 12px;
    }
    
    .marquee-content {
        animation: scroll 20s linear infinite;
    }
}

@media (max-width: 480px) {
    #hero {
        height: 40vh;
        max-height: 250px;
        margin-top: 60px;
        border-radius: 8px;
    }

    .hero-video {
        border-radius: 8px;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: right 0.3s ease;
    z-index: 60;
    padding: 2rem;
}

.mobile-menu.active {
    right: 0;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 70;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
