.sale-hero {
    --sale-accent: #ff5147;
    --sale-accent-soft: #ff8d78;
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 28%);
    align-items: center;
    width: min(100%, 1040px);
    min-height: 220px;
    box-sizing: border-box;
    margin: 0 auto 2rem;
    padding: clamp(1.75rem, 3.8vw, 3rem) clamp(1.5rem, 5vw, 4.5rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 22px;
    color: #f7f5f2;
    background:
        radial-gradient(circle at 77% 20%, rgba(255, 81, 71, .28), transparent 28%),
        radial-gradient(circle at 92% 90%, rgba(255, 141, 120, .16), transparent 31%),
        linear-gradient(128deg, #17191f 0%, #1d1f26 58%, #281b1c 100%);
    box-shadow: 0 24px 65px rgba(30, 24, 25, .16);
}

.sale-hero::before,
.sale-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.sale-hero::before {
    top: -65%;
    right: 3%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(255, 81, 71, .42) 0%, rgba(255, 81, 71, .08) 46%, transparent 70%);
    filter: blur(24px);
    opacity: .72;
}

.sale-hero::after {
    bottom: -72%;
    left: 24%;
    width: 370px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 145, 116, .24), transparent 68%);
    filter: blur(36px);
    opacity: .7;
}

.sale-hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.sale-hero__title {
    max-width: 19ch;
    margin: 0;
    color: inherit;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.025em;
    text-transform: none !important;
}

.sale-hero__title span {
    color: var(--sale-accent);
}

.sale-hero__text {
    max-width: 42ch;
    margin: 1rem 0 0;
    color: rgba(247, 245, 242, .69);
    font-size: .93rem;
    font-weight: 400;
    line-height: 1.5;
}

.sale-hero__visual {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    justify-self: end;
    width: clamp(150px, 16vw, 205px);
    aspect-ratio: 1;
}

.sale-hero__orbit,
.sale-hero__orbit::before,
.sale-hero__orbit::after {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.sale-hero__orbit {
    border: 1px solid rgba(255, 255, 255, .13);
}

.sale-hero__orbit::before,
.sale-hero__orbit::after {
    content: "";
    pointer-events: none;
}

.sale-hero__orbit::before {
    inset: -7px;
    background: conic-gradient(from 40deg, transparent 0 18%, var(--sale-accent) 18% 31%, transparent 31% 69%, rgba(255, 255, 255, .72) 69% 75%, transparent 75% 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
}

.sale-hero__orbit::after {
    inset: 19px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.sale-hero__mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 64%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .035));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .2),
        0 22px 45px rgba(9, 9, 12, .22);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.sale-hero__mark span {
    color: #fff4f1;
    font-size: clamp(3.4rem, 6.7vw, 5.2rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.08em;
    transform: rotate(-8deg);
}

@media (prefers-reduced-motion: no-preference) {
    .sale-hero::before {
        animation: sale-aurora-primary 9s cubic-bezier(.45, 0, .55, 1) infinite alternate;
        will-change: transform, opacity;
    }

    .sale-hero::after {
        animation: sale-aurora-secondary 11s cubic-bezier(.45, 0, .55, 1) infinite alternate;
        will-change: transform, opacity;
    }

    .sale-hero__content {
        animation: sale-content-in .7s cubic-bezier(.16, 1, .3, 1) both;
    }

    .sale-hero__visual {
        animation: sale-visual-in .85s .08s cubic-bezier(.16, 1, .3, 1) both;
    }

    .sale-hero__orbit::before {
        animation: sale-orbit 10s linear infinite;
        will-change: transform;
    }

    .sale-hero__mark {
        animation: sale-mark-float 5s cubic-bezier(.45, 0, .55, 1) infinite alternate;
        will-change: transform;
    }

    .sale-hero__mark span {
        animation: sale-percent-shift 5s cubic-bezier(.16, 1, .3, 1) infinite;
        will-change: transform;
    }
}

@keyframes sale-content-in {
    from { opacity: 0; transform: translate3d(0, 18px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes sale-visual-in {
    from { opacity: 0; transform: translate3d(20px, 0, 0) scale(.9); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes sale-aurora-primary {
    from { opacity: .55; transform: translate3d(18px, -8px, 0) scale(.94); }
    to { opacity: .84; transform: translate3d(-42px, 36px, 0) scale(1.12); }
}

@keyframes sale-aurora-secondary {
    from { opacity: .52; transform: translate3d(-18px, 10px, 0) scale(.92); }
    to { opacity: .78; transform: translate3d(58px, -22px, 0) scale(1.1); }
}

@keyframes sale-orbit {
    to { transform: rotate(360deg); }
}

@keyframes sale-mark-float {
    from { transform: translate3d(0, -3px, 0); }
    to { transform: translate3d(0, 7px, 0); }
}

@keyframes sale-percent-shift {
    0%, 72%, 100% { transform: rotate(-8deg) scale(1); }
    84% { transform: rotate(0deg) scale(1.06); }
}

@media (max-width: 767px) {
    .sale-hero {
        grid-template-columns: minmax(0, 1fr) 118px;
        min-height: 178px;
        margin-bottom: 1.5rem;
        padding: 1.55rem 1.35rem;
        border-radius: 18px;
    }

    .sale-hero__title {
        max-width: 16ch;
        font-size: clamp(1.6rem, 6.5vw, 2.1rem);
    }

    .sale-hero__text {
        margin-top: .75rem;
        font-size: .82rem;
    }

    .sale-hero__visual {
        width: 112px;
    }

    .sale-hero__mark span {
        font-size: 3.3rem;
    }
}

@media (max-width: 480px) {
    .sale-hero {
        display: block;
        min-height: 190px;
        padding: 1.45rem 1.2rem;
    }

    .sale-hero__content {
        width: 76%;
    }

    .sale-hero__title {
        max-width: 15ch;
        font-size: clamp(1.5rem, 7.4vw, 1.9rem);
    }

    .sale-hero__visual {
        position: absolute;
        top: 50%;
        right: -17px;
        width: 112px;
        opacity: .72;
        transform: translateY(-50%);
    }

    .sale-hero__text {
        max-width: 29ch;
    }
}

@media (max-width: 480px) and (prefers-reduced-motion: no-preference) {
    .sale-hero__visual {
        animation-name: sale-visual-in-mobile;
    }
}

@keyframes sale-visual-in-mobile {
    from { opacity: 0; transform: translate3d(20px, -50%, 0) scale(.9); }
    to { opacity: .72; transform: translate3d(0, -50%, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .sale-hero,
    .sale-hero::before,
    .sale-hero::after,
    .sale-hero__content,
    .sale-hero__visual,
    .sale-hero__orbit::before,
    .sale-hero__mark,
    .sale-hero__mark span {
        animation: none !important;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .sale-hero__mark {
        background: #2c2528;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
}
