.home-hero {
    padding-top: clamp(1.75rem, 1rem + 1.5vw, 2.75rem);
    padding-bottom: clamp(3.5rem, 2.5rem + 2vw, 5rem);
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.cta-form-shell {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 64rem) {
    .cta-form-shell {
        grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
        align-items: stretch;
    }
}

.home-module {
    padding: 40px 0;
}

.home-header__wrapper {
    width: calc(var(--content-max-width) - 2 * var(--home-core-inset));
    max-width: none;
    margin-inline: auto;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto 40px;
    animation: m-fade-up var(--m-dur) var(--m-ease) 0.88s both;
}

.home-header__title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: clamp(24px, 2.5vw, 36px);
    color: #000000;
    line-height: 50px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 0 0 9px;
    letter-spacing: 0;
    position: relative;
    z-index: 0;
}

.home-header__subtitle {
    font-family: var(--font-sans);
    font-weight: normal;
    font-size: clamp(15px, 1.4vw, 20px);
    color: #393e4f;
    line-height: 28px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    width: 100%;
}

.is-mobile .home-header__wrapper {
    margin-bottom: 24px;
}

.is-mobile .home-header__title {
    font-size: 22px;
    line-height: 36px;
}

.is-mobile .home-header__subtitle {
    line-height: 1.5;
    padding: 0 16px;
}
