.mhb-site-header {
    background: rgb(0 0 0 / 96%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
}

.mhb-site-header__inner {
    align-items: center;
    display: flex;
    height: 80px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1280px;
    /* padding: 0 40px; */
}

.mhb-site-header__brand,
.mhb-site-header__nav,
.mhb-site-header__actions {
    align-items: center;
    display: flex;
}

.mhb-site-header__brand {
    color: rgba(255, 255, 255, 0.9);
    gap: 12px;
    text-decoration: none;
}

.mhb-site-header__mark {
    align-items: center;
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.7rem;
    font-weight: 700;
    height: 36px;
    justify-content: center;
    letter-spacing: 0.05em;
    width: 36px;
}

.mhb-site-header__name {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.mhb-site-header__nav {
    gap: 40px;
}

.mhb-site-header__nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mhb-site-header__nav a:hover {
    color: #fff;
}

.mhb-site-header__actions {
    gap: 16px;
}

.mhb-site-header__cta,
.mhb-site-header__mobile-cta {
    background: #fff;
    border-radius: 999px;
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding: 10px 20px;
    text-decoration: none;
}

.mhb-site-header__mobile {
    display: none;
    position: relative;
}

.mhb-site-header__mobile summary {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    padding: 10px;
}

.mhb-site-header__mobile summary::-webkit-details-marker {
    display: none;
}

.mhb-site-header__mobile summary span {
    background: rgba(255, 255, 255, 0.72);
    display: block;
    height: 2px;
    width: 20px;
}

.mhb-site-header__mobile-panel {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 96px 32px 32px;
    position: fixed;
    right: 0;
    top: 80px;
}

.mhb-site-header__mobile-panel a:not(.mhb-site-header__mobile-cta) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    padding: 16px 0;
    text-decoration: none;
}

.mhb-site-header__mobile-cta {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 32px;
    padding: 16px;
}

@media (max-width: 782px) {
    .mhb-site-header__inner {
        padding: 0 24px;
    }

    .mhb-site-header__nav,
    .mhb-site-header__cta {
        display: none;
    }

    .mhb-site-header__mobile {
        display: block;
    }
}

