/* Join page — navy hero band, light subteam cards, big apply CTA */

.join-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 0 80px;
    text-align: center;
}

.join-hero-content {
    max-width: 820px;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.join-hero-eyebrow {
    margin-bottom: 1rem;
    justify-content: center;
}

.join-hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    color: #ffffff;
    margin-bottom: 1.4rem;
}

.join-hero-description {
    font-size: 1.05rem;
    color: var(--mist);
    line-height: 1.7;
    max-width: 58ch;
    margin: 0 auto;
}

/* Subteams */
.join-programs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem 4rem;
}

.section-eyebrow {
    margin-bottom: 0.75rem;
}

.programs-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--heading);
    margin-bottom: 2.5rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.program-card {
    background: var(--wash);
    border: 1px solid var(--line);
    border-top: 3px solid var(--blue);
    padding: 2rem;
    transition: border-color 0.2s, background 0.2s;
}

.program-card:hover {
    border-color: var(--blue);
    background: var(--paper);
}

.program-card h3 {
    font-size: 1.6rem;
    color: var(--heading);
    margin-bottom: 0.8rem;
}

.program-card p {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

/* Legacy requirements block (kept for compatibility) */
.join-requirements {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.join-requirements-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--heading);
    margin-bottom: 3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.requirement-card {
    background: var(--wash);
    border: 1px solid var(--line);
    padding: 2rem;
    transition: border-color 0.2s;
}

.requirement-card:hover {
    border-color: var(--blue);
}

.requirement-card h3 {
    font-size: 1.3rem;
    color: var(--heading);
    margin-bottom: 0.8rem;
}

.requirement-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Apply CTA */
.join-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 6rem;
    text-align: center;
}

.join-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.join-cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--heading);
    margin-bottom: 1.5rem;
}

.join-cta-description {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.join-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.join-btn {
    font-size: 1.35rem;
    padding: 1rem 3rem;
}
