/* =============================================================================
   REQUIREMENTS SECTION
   Full-width dark section. Header left-aligned. Criteria list full-width
   beneath it. Policy callouts below the list.
============================================================================= */

.elig-requirements {
    padding: 120px 0;
    border-bottom: 1px solid rgba(184, 184, 184, 0.08);
    background-color: var(--black-4);
}

.elig-requirements-header {
    max-width: 640px;
    margin-bottom: 56px;
}

.elig-requirements-header h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 20px;
}

.elig-intro {
    font-size: 16px;
    font-weight: 300;
    color: var(--silver-light);
    line-height: 1.7;
    margin: 0;
}


/* Criteria list — mirrors .eligibility-checklist on the join landing page
   so the two pages feel like a family. */
.elig-criteria-list {
    list-style: none;
    padding: 0;
    margin: 0 0 48px;
    max-width: 800px;
}

.elig-crit-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 20px;
    align-items: start;
    padding: 22px 0;
    border-top: 1px solid rgba(184, 184, 184, 0.1);
}

.elig-crit-item:last-child {
    border-bottom: 1px solid rgba(184, 184, 184, 0.1);
}

.elig-crit-mark {
    width: 32px;
    height: 32px;
    border: 1px solid var(--silver);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--silver);
}

.elig-crit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.elig-crit-text strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.elig-crit-text span {
    font-size: 14px;
    font-weight: 300;
    color: var(--silver-light);
    line-height: 1.55;
}


/* Policy callouts */
.elig-policy-statements {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.elig-policy-callout {
    border-left: 2px solid var(--silver);
    padding: 16px 20px;
    background: rgba(184, 184, 184, 0.05);
}

.elig-policy-callout p {
    font-size: 13px;
    color: var(--silver);
    line-height: 1.65;
    font-weight: 300;
    font-style: italic;
    margin: 0;
}

.elig-policy-callout p strong {
    color: var(--silver-light);
    font-weight: 500;
    font-style: normal;
}

/* The discretion clause is a distinct visual signal from the
   non-discrimination statement — slightly muted to read as
   a secondary administrative note rather than a values statement. */
.elig-policy-callout--discretion {
    border-left-color: var(--silver-dark);
    background: transparent;
}

.elig-policy-callout--discretion p {
    color: var(--silver-dark);
    font-size: 12px;
}


/* =============================================================================
   CTA BRIDGE
   Matches .join-final-cta treatment on the join landing page.
   Centered, dark variant background to provide visual rest before footer.
============================================================================= */

.elig-cta-bridge {
    padding: 120px 0;
}

.elig-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.elig-cta-bridge h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 20px;
}

.elig-cta-bridge p {
    font-size: 17px;
    font-weight: 300;
    color: var(--silver-light);
    line-height: 1.65;
    margin-bottom: 40px;
}

.elig-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}


/* =============================================================================
   RESPONSIVE
============================================================================= */

@media (max-width: 900px) {
    .elig-hero {
        padding: 72px 0 56px;
    }

    .elig-requirements {
        padding: 72px 0;
    }

    .elig-cta-bridge {
        padding: 72px 0;
    }
}

@media (max-width: 600px) {
    .elig-hero .hero-headline {
        font-size: clamp(32px, 9vw, 44px);
    }

    .elig-crit-item {
        grid-template-columns: 28px 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .elig-crit-mark {
        width: 28px;
        height: 28px;
    }

    .elig-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .elig-cta-actions .btn-primary,
    .elig-cta-actions .btn-secondary {
        text-align: center;
    }
}
