.site-navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: 82px;
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    white-space: nowrap;
}

.brand-white {
    color: #ffffff;
}

.brand-accent {
    color: #00f5c4;
}

.navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 82px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.46);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #00f5c4;
}

.navbar-burger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.navbar-burger span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto 6px;
    background: #fff;
}

.navbar-burger span:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .navbar-links {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .site-navbar {
        height: 72px;
    }

    .navbar-inner {
        gap: 16px;
    }

    .brand {
        font-size: 24px;
    }

    .navbar-burger {
        display: block;
    }

    .navbar-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-left: 0;
        padding: 20px 24px 24px;
        background: rgba(5, 5, 5, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-links.is-open {
        display: flex;
    }

    .nav-link {
        height: auto;
        font-size: 15px;
    }
}