.vp-creative-cta {
    position: relative;
    background: #050505;
    color: #ffffff;
    padding: 210px 0 230px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vp-creative-cta__inner {
    width: min(100% - 64px, 1480px);
    margin: 0 auto;
    text-align: center;
}

.vp-creative-cta__eyebrow {
    display: inline-block;
    margin-bottom: 34px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.vp-creative-cta__title {
    max-width: 1260px;
    margin: 0 auto;
    font-size: clamp(64px, 8vw, 160px);
    line-height: 0.86;
    letter-spacing: -0.09em;
    font-weight: 800;
    text-transform: uppercase;
}

.vp-creative-cta__text {
    max-width: 720px;
    margin: 46px auto 0;
    font-size: clamp(18px, 1.2vw, 23px);
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
}

.vp-creative-cta__actions {
    margin-top: 64px;
}

.vp-creative-cta__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 72px 0 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #ffffff;
    color: #050505;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
    overflow: hidden;
    transition:
        transform 0.45s ease,
        background 0.45s ease,
        color 0.45s ease,
        border-color 0.45s ease;
}

.vp-creative-cta__button::after {
    content: "→";
    position: absolute;
    right: 30px;
    font-size: 18px;
    transition: transform 0.45s ease;
}

.vp-creative-cta__button:hover {
    transform: translateY(-3px);
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.38);
}

.vp-creative-cta__button:hover::after {
    transform: translateX(6px);
}

.vp-creative-cta__note {
    display: block;
    margin-top: 54px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 768px) {
    .vp-creative-cta {
        padding: 130px 0 150px;
    }

    .vp-creative-cta__inner {
        width: min(100% - 32px, 1480px);
    }

    .vp-creative-cta__title {
        font-size: clamp(46px, 13vw, 82px);
        line-height: 0.92;
    }

    .vp-creative-cta__text {
        margin-top: 34px;
        font-size: 16px;
        line-height: 1.75;
    }

    .vp-creative-cta__actions {
        margin-top: 46px;
    }

    .vp-creative-cta__note {
        margin-top: 38px;
        font-size: 11px;
    }
}

/* =========================================================
   CREATIVE CTA JS STATES
========================================================= */
.vp-creative-cta::before {
    content: "";
    position: absolute;
    inset: 10%;
    pointer-events: none;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .14),
            transparent 64%);

    opacity: 0;
    filter: blur(80px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.16, 1, .3, 1);
}

.vp-creative-cta.is-focused::before {
    opacity: 1;
    transform: scale(1.12);
}

.vp-creative-cta__inner,
.vp-creative-cta__title,
.vp-creative-cta__text,
.vp-creative-cta__note {
    transition:
        transform .95s cubic-bezier(.16, 1, .3, 1),
        opacity .85s ease,
        filter .85s ease,
        letter-spacing .95s cubic-bezier(.16, 1, .3, 1);
}

.vp-creative-cta.is-focused .vp-creative-cta__inner {
    transform: translateY(-8px);
}

.vp-creative-cta.is-focused .vp-creative-cta__title {
    letter-spacing: -0.075em;
    filter: contrast(1.12);
}

.vp-creative-cta.is-focused .vp-creative-cta__text {
    opacity: .86;
}

.vp-creative-cta__button {
    will-change: transform;
}

.vp-creative-cta.is-note-focused .vp-creative-cta__note {
    letter-spacing: .16em;
    opacity: 1;
}

/* =========================================================
   CREATIVE CTA
   Tablet + Mobile final responsive polish
========================================================= */

@media (max-width: 1024px) {

    .vp-creative-cta {
        padding: 150px 0 170px;
    }

    .vp-creative-cta__inner {
        width: min(100% - 48px, 1480px);
    }

    .vp-creative-cta__title {
        font-size: clamp(54px, 10vw, 110px);
        line-height: .9;
    }

    .vp-creative-cta__text {
        margin-top: 38px;
    }

    .vp-creative-cta__actions {
        margin-top: 52px;
    }
}

@media (max-width: 640px) {

    .vp-creative-cta {
        padding: 96px 0 110px;
    }

    .vp-creative-cta::before {
        inset: 2%;
        filter: blur(58px);
    }

    .vp-creative-cta__inner {
        width: min(100% - 32px, 1480px);
    }

    .vp-creative-cta__eyebrow {
        margin-bottom: 22px;
    }

    .vp-creative-cta__title {
        font-size: clamp(38px, 13vw, 62px);
        line-height: .96;
        letter-spacing: -.065em;
    }

    .vp-creative-cta__text {
        margin-top: 28px;
        font-size: 15px;
        line-height: 1.68;
    }

    .vp-creative-cta__actions {
        width: 100%;
        margin-top: 36px;
    }

    .vp-creative-cta__button {
        width: 100%;
        min-height: 54px;
        padding: 0 58px 0 24px;
    }

    .vp-creative-cta__button::after {
        right: 22px;
    }

    .vp-creative-cta__note {
        margin-top: 28px;
        font-size: 10px;
        line-height: 1.7;
        letter-spacing: .12em;
    }

    .vp-creative-cta.is-focused .vp-creative-cta__inner {
        transform: none;
    }

    .vp-creative-cta.is-focused .vp-creative-cta__title {
        letter-spacing: -.065em;
        filter: none;
    }
}

@media (max-width: 420px) {

    .vp-creative-cta {
        padding: 84px 0 96px;
    }

    .vp-creative-cta__inner {
        width: min(100% - 28px, 1480px);
    }

    .vp-creative-cta__title {
        font-size: clamp(34px, 14vw, 52px);
    }

    .vp-creative-cta__note {
        font-size: 9.5px;
    }
}