.animated-star-cta {
    position: relative !important;
    isolation: isolate;
    overflow: hidden !important;
    background: var(--animated-star-bg, #050505) !important;
    background-color: var(--animated-star-bg, #050505) !important;
    background-image: none !important;
    color: #ffffff !important;
}

.animated-star-cta::before,
.animated-star-cta::after {
    content: '';
    position: absolute;
    inset: -35%;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.95) 0 1.2px, transparent 1.6px),
        radial-gradient(circle, rgba(255,255,255,.62) 0 1px, transparent 1.4px),
        radial-gradient(circle, rgba(106,210,255,.72) 0 1px, transparent 1.45px);
    background-size: 118px 118px, 173px 173px, 239px 239px;
    background-position: 17px 23px, 61px 79px, 109px 37px;
    animation: animated-star-drift 24s linear infinite;
    will-change: transform, opacity;
}

.animated-star-cta::after {
    opacity: .58;
    background-size: 191px 191px, 277px 277px, 353px 353px;
    background-position: 83px 41px, 137px 103px, 29px 151px;
    animation: animated-star-drift-reverse 34s linear infinite;
}

.animated-star-cta > .container,
.animated-star-cta > .container-fluid,
.animated-star-cta > .position-relative {
    position: relative;
    z-index: 2 !important;
}

.animated-star-cta > .stars-container,
.animated-star-cta > #stars-container,
.animated-star-cta > .starfield,
.animated-star-cta > .bg-video-container,
.animated-star-cta > .studio-cta-glow {
    display: none !important;
}

.animated-star-cta :is(h1, h2, h3, h4, h5, h6, p) {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

@keyframes animated-star-drift {
    from { transform: translate3d(0, 0, 0); opacity: .72; }
    50% { opacity: 1; }
    to { transform: translate3d(118px, -118px, 0); opacity: .72; }
}

@keyframes animated-star-drift-reverse {
    from { transform: translate3d(0, 0, 0) scale(1); opacity: .42; }
    50% { opacity: .72; }
    to { transform: translate3d(-191px, 191px, 0) scale(1.03); opacity: .42; }
}

@media (prefers-reduced-motion: reduce) {
    .animated-star-cta::before,
    .animated-star-cta::after {
        animation: none;
    }
}

.website-world-cta::before,
.website-world-cta::after {
    display: none;
}

body .sq-final.website-world-cta {
    height: 385px !important;
    min-height: 385px !important;
    padding: 0 !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.website-world-cta .website-world-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    height: 385px;
    min-height: 385px;
    padding: 0;
}

.website-world-visual {
    position: relative;
    height: 385px;
    min-height: 385px;
    overflow: hidden;
}

.website-world-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 68%, #000 100%);
}

.website-world-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 42% center;
}

.website-world-copy {
    position: absolute !important;
    inset: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 385px;
    min-height: 385px;
    width: 100% !important;
    margin: 0 auto;
    overflow: hidden;
    padding: 70px 7%;
    text-align: center;
    background: radial-gradient(circle at 50% 45%, rgba(31, 91, 142, .18), transparent 62%);
}

.website-world-copy-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    z-index: 3;
    width: min(100%, 540px);
    margin: 0 auto;
    text-align: center;
}

.website-world-copy-content .get-started-today-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.website-world-copy h2 {
    margin-bottom: 34px;
    text-align: center;
}

.website-world-stars {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.website-moving-star {
    position: absolute;
    top: var(--star-top);
    left: var(--star-left);
    width: var(--star-size);
    height: var(--star-size);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 7px rgba(255, 255, 255, .9), 0 0 15px rgba(83, 176, 255, .55);
    animation: website-star-twinkle var(--twinkle-time) ease-in-out var(--star-delay) infinite,
               website-star-float var(--drift-time) linear var(--star-delay) infinite;
}

@keyframes website-star-twinkle {
    0%, 100% { opacity: .12; }
    50% { opacity: 1; }
}

@keyframes website-star-float {
    from { translate: 0 38px; }
    to { translate: 42px -120px; }
}

@media (max-width: 991px) {
    body .sq-final.website-world-cta {
        height: 385px !important;
        min-height: 385px !important;
        padding: 0 !important;
    }

    .website-world-cta .website-world-cta-inner {
        display: flex;
        height: 385px;
    }

    .website-world-visual,
    .website-world-copy {
        height: 385px;
        min-height: 385px;
    }

    .website-world-visual::after {
        background: linear-gradient(90deg, transparent 60%, #000 100%);
    }

    .website-world-copy {
        width: 100%;
        padding: 45px 20px;
        text-align: center;
    }

    .website-world-copy h2 {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .website-world-copy {
        width: 100%;
        padding: 36px 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .website-moving-star {
        animation: none;
        opacity: .65;
    }
}
