﻿/* Founding Members band */
.founding-band {
    margin-top: 2.25rem;
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 720px) {
    .founding-band {
        padding: 2.5rem 2.5rem;
    }
}

.founding-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--green);
}

.founding-flag {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .875rem;
}

    .founding-flag::before {
        content: "";
        width: 24px;
        height: 2px;
        background: var(--green);
    }

.founding-h {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.375rem, 2.25vw, 1.75rem);
    line-height: 1.2;
    margin: 0 0 1.25rem;
    letter-spacing: -.01em;
    max-width: 40rem;
}

.founding-perks {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .875rem;
}

    .founding-perks li {
        font-size: .9375rem;
        color: rgba(255,255,255,.85);
        line-height: 1.6;
        padding-left: 1.75rem;
        position: relative;
        max-width: 48rem;
    }

        .founding-perks li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .3em;
            width: 16px;
            height: 16px;
            background: var(--green);
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><path d="M20 6L9 17l-5-5"/></svg>') center/contain no-repeat;
            -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><path d="M20 6L9 17l-5-5"/></svg>') center/contain no-repeat;
        }

    .founding-perks strong {
        color: #fff;
        font-weight: 600;
    }

.founding-invite {
    font-size: .875rem;
    color: rgba(255,255,255,.65);
    margin: 0 0 1.25rem;
    font-style: italic;
    line-height: 1.55;
    max-width: 42rem;
}

.founding-counter {
    display: inline-flex;
    align-items: baseline;
    gap: .5rem;
    padding: .5rem 1.125rem;
    background: rgba(243,156,18,.15);
    border: 1px solid rgba(243,156,18,.4);
    border-radius: 999px;
}

    .founding-counter .counter-num {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        color: var(--orange);
        font-size: 1.375rem;
        line-height: 1;
    }

    .founding-counter .counter-of {
        font-size: .75rem;
        color: rgba(255,255,255,.85);
        font-weight: 500;
        letter-spacing: .01em;
    }
