.t4m-campaign-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 24px 34px;
    background:
        radial-gradient(
            ellipse at 10% 100%,
            rgba(125, 92, 255, .09),
            transparent 42%
        ),
        radial-gradient(
            ellipse at 90% 100%,
            rgba(220, 80, 255, .10),
            transparent 42%
        );
}

.t4m-campaign-hero::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -80px;
    height: 190px;
    pointer-events: none;
    opacity: .55;
    background:
        repeating-radial-gradient(
            ellipse at 50% 100%,
            transparent 0,
            transparent 22px,
            rgba(156, 107, 255, .12) 23px,
            transparent 24px,
            transparent 36px
        );
}

.t4m-campaign-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.t4m-campaign-hero__title {
    max-width: 900px;
    margin: 0 auto;
    color: #080808;
    font-size: clamp(52px, 6.2vw, 88px);
    font-weight: 800;
    line-height: .94;
    letter-spacing: -.055em;
}

.t4m-campaign-hero__lead {
    max-width: 760px;
    margin: 26px auto 0;
    color: #50546d;
    font-size: 18px;
    line-height: 1.55;
}

.t4m-campaign-hero__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 38px;
    margin-top: 32px;
    color: #555a73;
    font-size: 14px;
    font-weight: 600;
}

.t4m-campaign-hero__features span {
    white-space: nowrap;
}

html[data-theme="dark"] .t4m-campaign-hero__title {
    color: #fff;
}

html[data-theme="dark"] .t4m-campaign-hero__lead,
html[data-theme="dark"] .t4m-campaign-hero__features {
    color: rgba(255,255,255,.72);
}

@media (max-width: 700px) {
    .t4m-campaign-hero {
        padding: 42px 18px 25px;
    }

    .t4m-campaign-hero__title {
        font-size: clamp(43px, 13vw, 62px);
    }

    .t4m-campaign-hero__lead {
        margin-top: 20px;
        font-size: 16px;
    }

    .t4m-campaign-hero__features {
        gap: 12px 20px;
        margin-top: 25px;
        font-size: 12px;
    }
}
