body {
    font-family: 'Inter', sans-serif;
    background: #09090b;
    color: #f4f4f5;
}
.mono {
    font-family: 'JetBrains Mono', monospace;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.85)), url('#');
    background-size: cover;
    background-position: center;

    & > video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(12px);
    border-b: 1px solid rgba(255, 255, 255, 0.05);
}

#dots-container {
    position: relative;
    height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 20px 0;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #27272a;
    border-radius: 50%;
    transition: all 4.2s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.4;
}

.dot.active {
    background: #75D1C1;
    opacity: 1;
    box-shadow: 0 0 12px rgba(117, 209, 193, 0.4);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
    100% { transform: translateY(0px); }
}

.floating-photo {
    animation: float 6s ease-in-out infinite;
}

#modal {
    backdrop-filter: blur(12px);
}

.partner-logo {
    max-height: 38px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) invert(100%);
}

.partner-logo:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .partner-logo {
        max-height: 28px;
    }
}


/* header animation */
#site-nav {
    transition: transform 220ms ease;
    will-change: transform;
}

#site-nav.nav-hidden {
    transform: translateY(-110%);
}