.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--card-border);
    background: color-mix(in srgb, var(--background-color) 80%, transparent);
    backdrop-filter: blur(8px);
}

.nav-inner {
    width: min(980px, calc(100% - 2.5rem));
    margin: 0 auto;
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 650;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-logo {
    width: 1.1rem;
    height: 1.1rem;
    image-rendering: pixelated;
}

.site-links {
    display: block;
    flex-shrink: 0;
}

.site-links .token-links-wrap a {
    font-size: 0.92rem;
}

@media (max-width: 760px) {
    .nav-inner {
        width: min(980px, calc(100% - 1.4rem));
        min-height: 3rem;
    }

    .site-links .token-links-wrap a {
        font-size: 0.86rem;
    }
}