.vp-creative-hero {
    min-height: 100vh;
}

.vp-creative-hero__media,
.vp-creative-hero__overlay {
    position: absolute;
    inset: 0;
}

.vp-creative-hero__media {
    z-index: 1;
}

.vp-creative-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    filter:
        brightness(0.62) contrast(1.08) saturate(1.08);
}

.vp-creative-hero__overlay {
    z-index: 2;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.58) 36%,
            rgba(0, 0, 0, 0.12) 72%,
            rgba(0, 0, 0, 0.04) 100%);
}

.vp-creative-hero__inner {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    /*     width: min(100% - 64px, 1600px);
    margin: 0 auto; */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 90px;
}

.vp-creative-hero__content {
    max-width: 820px;
}


.vp-creative-hero__eyebrow {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
}

.vp-creative-hero__title {
    margin: 0;
    font-size: clamp(72px, 9vw, 170px);
    line-height: 0.88;
    letter-spacing: -0.08em;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 920px;
}

.vp-creative-hero__text {
    max-width: 620px;
    margin-top: 34px;
    font-size: clamp(17px, 1.2vw, 22px);
    line-height: 1.7;
    font-weight: 300;
    /*  color: rgba(255, 255, 255, 0.78); */
}

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


.vp-creative-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 68px 0 32px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    overflow: hidden;
}

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

.vp-creative-hero__button:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
}

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

.vp-creative-hero__badge {
    flex-shrink: 0;
    width: 190px;
    height: 190px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    text-align: center;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.03);
}

.vp-creative-hero__badge span {
    display: block;
    max-width: 118px;
    font-size: 13px;
    line-height: 1.15;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

/* =========================================================
   CREATIVE HERO JS STATES
========================================================= */

.vp-creative-hero__image,
.vp-creative-hero__content,
.vp-creative-hero__overlay,
.vp-creative-hero__badge {
    will-change: transform, opacity;
}

.vp-creative-hero__image,
.vp-creative-hero__content,
.vp-creative-hero__overlay,
.vp-creative-hero__badge {
    transition:
        transform .16s linear,
        opacity .16s linear;
}

.vp-creative-hero.is-hero-ready .vp-creative-hero__title {
    animation:
        creativeHeroTitleIn 1s cubic-bezier(.16, 1, .3, 1) both;
}

.vp-creative-hero.is-hero-ready .vp-creative-hero__eyebrow,
.vp-creative-hero.is-hero-ready .vp-creative-hero__text,
.vp-creative-hero.is-hero-ready .vp-creative-hero__actions {
    animation:
        creativeHeroSoftIn .9s cubic-bezier(.16, 1, .3, 1) both;
}

.vp-creative-hero.is-hero-ready .vp-creative-hero__eyebrow {
    animation-delay: .08s;
}

.vp-creative-hero.is-hero-ready .vp-creative-hero__text {
    animation-delay: .18s;
}

.vp-creative-hero.is-hero-ready .vp-creative-hero__actions {
    animation-delay: .28s;
}

.vp-creative-hero.is-hero-ready .vp-creative-hero__badge {
    animation:
        creativeHeroBadgePulse 4.8s ease-in-out infinite;
}

@keyframes creativeHeroTitleIn {
    from {
        opacity: 0;
        transform: translateY(38px) scale(.96);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes creativeHeroSoftIn {
    from {
        opacity: 0;
        transform: translateY(22px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes creativeHeroBadgePulse {

    0%,
    100% {
        box-shadow:
            0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow:
            0 0 80px rgba(255, 255, 255, 0.14);
    }
}

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

/* Tablet */
@media (max-width: 1024px) {

    .vp-creative-hero__inner {
        min-height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 54px;
        padding-bottom: 72px;
    }

    .vp-creative-hero__content {
        max-width: 760px;
    }

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

    .vp-creative-hero__text {
        max-width: 620px;
    }

    .vp-creative-hero__badge {
        width: 150px;
        height: 150px;
        padding: 24px;
    }
}


/* Mobile */
@media (max-width: 640px) {

    .vp-creative-hero {
        min-height: 100svh;
    }

    .vp-creative-hero__overlay {
        background:
            linear-gradient(180deg,
                rgba(0, 0, 0, .72) 0%,
                rgba(0, 0, 0, .46) 45%,
                rgba(0, 0, 0, .82) 100%);
    }

    .vp-creative-hero__inner {
        min-height: 100svh;
        gap: 36px;
        padding-bottom: 44px;
    }

    .vp-creative-hero__eyebrow {
        margin-bottom: 18px;
    }

    .vp-creative-hero__title {
        font-size: clamp(42px, 14vw, 72px);
        line-height: .94;
        letter-spacing: -.065em;
    }

    .vp-creative-hero__text {
        margin-top: 22px;
        max-width: 100%;
        font-size: 15px;
        line-height: 1.68;
    }

    .vp-creative-hero__actions {
        margin-top: 30px;
        width: 100%;
    }

    .vp-creative-hero__button {
        width: 100%;
        justify-content: center;
        min-height: 54px;
        padding: 0 58px 0 24px;
    }

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

    .vp-creative-hero__badge {
        width: 118px;
        height: 118px;
        padding: 18px;
    }

    .vp-creative-hero__badge span {
        max-width: 78px;
        font-size: 9px;
        letter-spacing: .12em;
    }

    .vp-creative-hero__image,
    .vp-creative-hero__content,
    .vp-creative-hero__overlay,
    .vp-creative-hero__badge {
        transition: none;
    }
}


/* Small Mobile */
@media (max-width: 420px) {

    .vp-creative-hero__inner {
        padding-bottom: 34px;
    }

    .vp-creative-hero__title {
        font-size: clamp(36px, 15vw, 60px);
    }

    .vp-creative-hero__badge {
        width: 104px;
        height: 104px;
        padding: 14px;
    }

    .vp-creative-hero__badge span {
        max-width: 68px;
        font-size: 8px;
    }
}