.home-page {
    --home-navy: #102a43;
    --home-blue: #1f4a7a;
    --home-teal: #13796c;
    --home-ink: #17263a;
    --home-muted: #5e6f84;
    padding: 0.25rem 0 1.5rem;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 1.25rem;
    background: linear-gradient(135deg, var(--home-navy) 0%, var(--home-blue) 58%, #276d83 100%);
    box-shadow: 0 1.25rem 3rem rgba(16, 42, 67, 0.22);
    color: #ffffff;
}

.home-hero::before,
.home-hero::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.home-hero::before {
    top: -10rem;
    right: -7rem;
    width: 28rem;
    height: 28rem;
    background: rgba(255, 255, 255, 0.04);
}

.home-hero::after {
    right: 18%;
    bottom: -10rem;
    width: 20rem;
    height: 20rem;
}

.home-hero__content,
.home-hero__mark {
    position: relative;
    z-index: 1;
}

.home-hero__eyebrow,
.home-section-heading__eyebrow,
.home-program__eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.home-hero h1 {
    max-width: 42rem;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.home-hero__lead {
    max-width: 43rem;
    margin: 1.25rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.65;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.home-hero__actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.05rem;
    border-radius: 0.6rem;
    font-weight: 700;
}

.home-hero__actions .btn-light {
    color: var(--home-navy);
}

.home-hero__actions .btn-outline-light:hover,
.home-hero__actions .btn-outline-light:focus {
    color: var(--home-navy);
}

.home-hero__mark {
    display: flex;
    justify-content: center;
}

.home-hero__logo-panel {
    width: min(100%, 24rem);
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1rem 2.25rem rgba(4, 18, 32, 0.24);
    transform: rotate(1.5deg);
}

.home-hero__logo-panel img {
    display: block;
    width: 100%;
    height: auto;
}

.home-explore {
    padding-top: clamp(2.25rem, 5vw, 3.75rem);
}

.home-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.25rem;
}

.home-section-heading__eyebrow,
.home-program__eyebrow {
    margin-bottom: 0.35rem;
    color: var(--home-teal);
}

.home-section-heading h2,
.home-program h2 {
    margin: 0;
    color: var(--home-ink);
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.home-section-heading > p {
    max-width: 25rem;
    margin: 0;
    color: var(--home-muted);
    text-align: right;
}

.home-action-card {
    display: flex;
    height: 100%;
    min-height: 17rem;
    flex-direction: column;
    padding: 1.35rem;
    border: 1px solid #d8e1ec;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 0.25rem 0.9rem rgba(15, 39, 66, 0.08);
    color: var(--home-ink);
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-action-card:hover,
.home-action-card:focus {
    border-color: rgba(31, 74, 122, 0.38);
    box-shadow: 0 0.85rem 1.8rem rgba(15, 39, 66, 0.14);
    color: var(--home-ink);
    text-decoration: none;
    transform: translateY(-4px);
}

.home-action-card:focus-visible,
.home-hero__actions .btn:focus-visible,
.home-program__button:focus-visible {
    outline: 3px solid rgba(31, 157, 139, 0.42);
    outline-offset: 3px;
}

.home-action-card__icon {
    display: inline-flex;
    width: 3.1rem;
    height: 3.1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border-radius: 0.8rem;
    background: #e9f1fb;
    color: var(--home-blue);
    font-size: 1.35rem;
}

.home-action-card--shooters .home-action-card__icon {
    background: #e4f5f1;
    color: #13796c;
}

.home-action-card--schools .home-action-card__icon {
    background: #fff3dc;
    color: #9a6510;
}

.home-action-card--league .home-action-card__icon {
    background: #efeafa;
    color: #6750a4;
}

.home-action-card h3 {
    margin: 0 0 0.55rem;
    color: var(--home-ink);
    font-size: 1.3rem;
    font-weight: 800;
}

.home-action-card p {
    flex: 1;
    margin: 0 0 1.25rem;
    color: var(--home-muted);
    line-height: 1.55;
}

.home-action-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--home-blue);
    font-weight: 700;
}

.home-action-card__link .fa {
    transition: transform 160ms ease;
}

.home-action-card:hover .home-action-card__link .fa,
.home-action-card:focus .home-action-card__link .fa {
    transform: translateX(3px);
}

.home-program {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: clamp(2rem, 5vw, 3.5rem);
    padding: clamp(1.4rem, 4vw, 2.25rem);
    border: 1px solid #d8e5ee;
    border-radius: 1rem;
    background: linear-gradient(120deg, #edf6fb 0%, #f7fbf9 100%);
}

.home-program__content {
    max-width: 45rem;
}

.home-program p {
    margin: 0.65rem 0 0;
    color: var(--home-muted);
}

.home-program__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .home-hero__mark {
        justify-content: flex-start;
    }

    .home-hero__logo-panel {
        width: min(100%, 21rem);
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .home-section-heading,
    .home-program {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-section-heading {
        gap: 0.6rem;
    }

    .home-section-heading > p {
        max-width: none;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .home-page {
        padding-top: 0;
    }

    .home-hero {
        padding: 1.5rem;
        border-radius: 0.85rem;
    }

    .home-hero__actions,
    .home-hero__actions .btn,
    .home-program__button {
        width: 100%;
    }

    .home-hero__actions .btn,
    .home-program__button {
        justify-content: center;
    }

    .home-action-card {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-action-card,
    .home-action-card__link .fa {
        transition: none;
    }
}
