.hero-tabs {
    margin-top: 0.5rem;
}

.hero-tabs-shell {
    margin: 0 auto;
    max-width: var(--landing-max-width);
    border-radius: 1.25rem;
    background: transparent;
    box-shadow: none;
}

.hero-tabs-switch {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.24rem;
    width: min(100%, 26rem);
    border-radius: 999px;
    background: var(--base-color--cloud);
    border: 1px solid var(--base-color--luna);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);

    @media (max-width: 55ch) {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
}

.hero-tab {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: var(--lk-size-md);
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-body);
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.hero-tab:focus-visible {
    outline: 2px solid var(--base-color--fathom);
    outline-offset: 2px;
}

.hero-tab--active {
    background: var(--base-color--lumen);
    color: var(--base-color--vast);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 6px 16px rgba(0, 0, 0, 0.06);
    text-decoration: none;
}

.hero-tab--inactive {
    color: var(--base-color--smoke);
}

.hero-tab--inactive:hover {
    background: rgba(255, 255, 255, 0.5);
    color: var(--base-color--vast);
}

.hero-tabs-panels {
    margin-top: 0;
}

.hero-tab-panel {
    margin: 0;
    max-width: none;
    padding: 1.6rem 1.8rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
}

.hero-tab-panel h3 {
    text-wrap: balance;
    font-family: var(--font-body);
    font-size: var(--lk-size-xl);
    line-height: 1.2;
}

.hero-tab-copy {
    font-size: var(--lk-size-lg);
    font-weight: 500;
    line-height: 1.4;
    font-family: var(--font-body);
    color: var(--base-color--shroud);
}

.hero-tab-list {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
    max-width: 42rem;
}

.hero-tab-copy + .hero-tab-list {
    margin-top: 1.15rem;
}

.hero-tab-banner {
    margin: 0 auto;
    max-width: 64rem;
}

.hero-tab-banner .image-overlay-banner-shell {
    width: 100%;
}

.hero-tab-banner .image-overlay-banner-shell img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-tab-banner-copy {
    font-size: var(--lk-size-lg);
    font-weight: 500;
    line-height: 1.4;
    font-family: var(--font-body);
    color: var(--base-color--shroud);
}

.hero-tab-banner-title {
    margin: 0;
    text-wrap: balance;
    font-family: var(--font-body);
    font-size: var(--lk-size-xl);
    line-height: 1.2;
}

.hero-tab-banner-title + .hero-tab-banner-copy {
    margin-top: 0.75rem;
}

.hero-tab-banner-copy p {
    margin: 0;
}

.hero-tab-banner-copy p + p {
    margin-top: 0.25rem;
}

.hero-tab-banner + .hero-tab-list {
    margin-top: 1.15rem;
}

.hero-tab-list li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.65rem;
    text-align: left;
    font-family: var(--font-body);
}

.hero-tab-dot {
    margin-top: 0.35rem;
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 999px;
    background: var(--base-color--glow);
    flex: 0 0 auto;
}

.hero-tab-note {
    margin: 0;
    margin-block-start: 0.9rem;
    color: var(--base-color--smoke);
}

@media (max-width: 100ch) {
    .hero-tab-banner-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .hero-tab-banner-copy {
        font-size: var(--lk-size-md);
        line-height: 1.35;
    }
}
