.lang-select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 24px
}

select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
}

main {
    margin-top: 22px
}

h2 {
    margin: 0 0 8px 0;
    font-size: 28px
}

p.lead {
    color: var(--muted);
    margin: 0 0 18px 0
}

.actions {
    display: flex;
    gap: 10px
}

button.primary {
    background: var(--accent);
    border: none;
    color: #042022;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer
}

button.ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 10px
}

/* small responsive tweak */
@media (max-width:420px) {
    h2 {
        font-size: 20px
    }

    .brand h1 {
        font-size: 16px
    }
}