/* Shared header for all landing pages */

.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 100;
}

.landing-header .logo {
    color: var(--accent);
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
}

.landing-header .header-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.landing-header .header-link {
    color: var(--text-muted);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
}

.landing-header .header-link:hover {
    color: var(--text);
}

.landing-header .header-link.is-active {
    color: #111;
    font-weight: 600;
}

.landing-header .header-link:focus-visible,
.landing-header .logo:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .landing-header {
        padding: 16px 20px;
    }

    .landing-header .header-right {
        gap: 20px;
    }

    .landing-header .header-link {
        font-size: 14px;
    }
}
