/* ── Header ────────────────────────────────────────────── */

.header {
    text-align: center;
    padding: 30px 0 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: justify-content 0.4s ease, gap 0.4s ease;
}

.header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: font-size 0.4s ease, letter-spacing 0.4s ease;
    text-shadow: 0 1px 10px rgba(0,0,0,0.10);
}

.header .subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--fg-2);
    margin-top: 8px;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease;
    max-height: 3em;
    overflow: hidden;
    display: none;
}

.header .subtitle-detail {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--fg-2);
    margin-top: 6px;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease;
    max-height: 3em;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.18);
    padding: 3px 10px 3px 7px;
    gap: 5px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgba(254, 252, 243,0.35);
}

.trusted{
    width:15px;
    margin-right:5px
}

.shadowy{
    box-shadow: 1px 1px 2px rgba(0,0,0,0.10);
}

.header .feature-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 23px;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease;
    max-height: 6em;
    overflow: hidden;
    max-width:75%;
}

.feature-badge {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--fg-2);
    background: rgba(254,252,243,0.35);
    border: 1px solid rgba(0,0,0,0.18);
    border-radius: 20px;
    padding: 2px 9px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
