.ljgs,
.ljgs * {
    box-sizing: border-box;
}

.ljgs {
    --ljgs-height: 720px;
    --ljgs-accent: #36d59d;
    --ljgs-transition-speed: 900ms;
    --ljgs-autoplay-duration: 6500ms;
    --ljgs-glow-color: #ff5a2f;
    --ljgs-glow-color-2: rgba(255,122,65,.72);
    --ljgs-glow-height: 150px;
    --ljgs-glow-blur: 18px;
    --ljgs-glow-opacity: .9;
    --ljgs-glow-speed: 8s;
    position: relative;
    width: 100%;
    min-height: var(--ljgs-height);
    overflow: hidden;
    background: #101010;
    isolation: isolate;
}

.ljgs-track {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ljgs-slide {
    position: absolute;
    inset: 0;
    min-height: var(--ljgs-height);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    pointer-events: none;
    transition: opacity var(--ljgs-transition-speed) ease, visibility var(--ljgs-transition-speed) ease;
}

.ljgs-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
}

.ljgs-bg,
.ljgs-overlay {
    position: absolute;
    inset: 0;
}

.ljgs-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1.005);
    transition: transform calc(var(--ljgs-transition-speed) * 1.35) ease, filter var(--ljgs-transition-speed) ease;
    z-index: 1;
}

.ljgs-image-zoom .ljgs-slide.is-active .ljgs-bg {
    animation: ljgsSlowZoom var(--ljgs-autoplay-duration) linear both;
}

.ljgs-overlay {
    z-index: 2;
    pointer-events: none;
}

.ljgs-content-wrap {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    width: 100%;
    min-height: var(--ljgs-height);
    padding: 0 13%;
    pointer-events: none;
}

.ljgs-content {
    --ljgs-content-y: 0px;
    max-width: 720px;
    color: #fff;
    transform: translate3d(0, var(--ljgs-content-y), 0);
    pointer-events: auto;
}

.ljgs-align-left .ljgs-content-wrap,
.ljgs-align-left-tablet .ljgs-content-wrap,
.ljgs-align-left-mobile .ljgs-content-wrap {
    justify-content: flex-start;
}

.ljgs-align-center .ljgs-content-wrap,
.ljgs-align-center-tablet .ljgs-content-wrap,
.ljgs-align-center-mobile .ljgs-content-wrap {
    justify-content: center;
}

.ljgs-align-right .ljgs-content-wrap,
.ljgs-align-right-tablet .ljgs-content-wrap,
.ljgs-align-right-mobile .ljgs-content-wrap {
    justify-content: flex-end;
}

.ljgs-v-top .ljgs-content-wrap,
.ljgs-v-top-tablet .ljgs-content-wrap,
.ljgs-v-top-mobile .ljgs-content-wrap {
    align-items: flex-start;
    padding-top: max(64px, env(safe-area-inset-top));
}

.ljgs-v-center .ljgs-content-wrap,
.ljgs-v-center-tablet .ljgs-content-wrap,
.ljgs-v-center-mobile .ljgs-content-wrap {
    align-items: center;
}

.ljgs-v-bottom .ljgs-content-wrap,
.ljgs-v-bottom-tablet .ljgs-content-wrap,
.ljgs-v-bottom-mobile .ljgs-content-wrap {
    align-items: flex-end;
    padding-bottom: max(80px, env(safe-area-inset-bottom));
}

.ljgs-eyebrow {
    display: inline-flex;
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    opacity: .9;
}

.ljgs-title {
    margin: 0 0 28px;
    font-size: clamp(44px, 5.25vw, 96px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -0.045em;
    color: #fff;
}

.ljgs-description {
    max-width: 660px;
    margin: 0 0 40px;
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.55;
    font-weight: 400;
    color: #fff;
}

.ljgs-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 19px 34px;
    min-width: 178px;
    border-radius: 999px;
    background: var(--ljgs-accent);
    color: #fff;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 280ms ease, background 280ms ease, color 280ms ease, box-shadow 280ms ease;
}

.ljgs-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.16);
    transform: translateX(-110%) skewX(-22deg);
    transition: transform 500ms ease;
    pointer-events: none;
}

.ljgs-button:hover {
    transform: translateY(-3px);
    color: #fff;
}

.ljgs-button:hover::before {
    transform: translateX(110%) skewX(-22deg);
}

.ljgs-button-icon {
    display: inline-flex;
    transition: transform 260ms ease;
}

.ljgs-button:hover .ljgs-button-icon {
    transform: translate(4px, -4px);
}

.ljgs-anim-none,
.ljgs-anim-fade-up,
.ljgs-anim-slide-left,
.ljgs-anim-slide-right,
.ljgs-anim-zoom {
    opacity: 0;
}

.ljgs-slide.is-active .ljgs-anim-none {
    opacity: 1;
}

.ljgs-slide.is-active .ljgs-anim-fade-up {
    animation: ljgsFadeUp 820ms ease 160ms both;
}

.ljgs-slide.is-active .ljgs-anim-slide-left {
    animation: ljgsSlideLeft 820ms ease 160ms both;
}

.ljgs-slide.is-active .ljgs-anim-slide-right {
    animation: ljgsSlideRight 820ms ease 160ms both;
}

.ljgs-slide.is-active .ljgs-anim-zoom {
    animation: ljgsZoomIn 820ms ease 160ms both;
}

.ljgs-hover-lift .ljgs-content {
    transition: transform 350ms ease, filter 350ms ease;
}

.ljgs-hover-lift:hover .ljgs-content {
    transform: translate3d(0, calc(var(--ljgs-content-y) - 10px), 0);
}

.ljgs-hover-reveal .ljgs-description,
.ljgs-hover-reveal .ljgs-button {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 360ms ease, transform 360ms ease;
}

.ljgs-hover-reveal:hover .ljgs-description,
.ljgs-hover-reveal:hover .ljgs-button {
    opacity: 1;
    transform: translateY(0);
}

.ljgs-hover-magnetic .ljgs-content {
    transition: transform 420ms cubic-bezier(.22,.61,.36,1);
}

.ljgs-hover-magnetic:hover .ljgs-content {
    transform: translate3d(18px, calc(var(--ljgs-content-y) - 12px), 0);
}

.ljgs-glow {
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -4px;
    height: var(--ljgs-glow-height);
    z-index: 4;
    pointer-events: none;
    opacity: var(--ljgs-glow-opacity);
    filter: blur(var(--ljgs-glow-blur));
    overflow: hidden;
}

.ljgs-glow::before,
.ljgs-glow::after,
.ljgs-glow span {
    content: '';
    position: absolute;
    inset: auto -12% -35% -12%;
    height: 120%;
    background:
        radial-gradient(55% 95% at 36% 100%, var(--ljgs-glow-color) 0%, rgba(255,90,47,.52) 42%, transparent 72%),
        radial-gradient(46% 92% at 70% 100%, var(--ljgs-glow-color-2) 0%, rgba(255,122,65,.35) 38%, transparent 73%),
        linear-gradient(0deg, var(--ljgs-glow-color), transparent 72%);
    transform-origin: center bottom;
}

.ljgs-glow::before {
    animation: ljgsGlowMove var(--ljgs-glow-speed) ease-in-out infinite;
}

.ljgs-glow::after {
    opacity: .58;
    animation: ljgsGlowMoveAlt calc(var(--ljgs-glow-speed) * 1.35) ease-in-out infinite;
}

.ljgs-glow span {
    opacity: .44;
    animation: ljgsGlowPulse calc(var(--ljgs-glow-speed) * .82) ease-in-out infinite;
}

.ljgs-no-glow .ljgs-glow {
    display: none;
}

.ljgs-pagination {
    --ljgs-page-active: #ff5a2f;
    --ljgs-page-inactive: rgba(255,255,255,.45);
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    width: 300px;
    min-height: 86px;
    padding: 30px 42px;
    border-radius: 999px;
    background: #1e1e1e;
    box-shadow: 0 18px 70px rgba(0,0,0,.2);
}

.ljgs-pagination-bottom-right .ljgs-pagination {
    right: clamp(18px, 4vw, 70px);
    bottom: clamp(18px, 3vw, 36px);
}

.ljgs-pagination-bottom-center .ljgs-pagination {
    left: 50%;
    bottom: clamp(18px, 3vw, 36px);
    transform: translateX(-50%);
}

.ljgs-pagination-bottom-left .ljgs-pagination {
    left: clamp(18px, 4vw, 70px);
    bottom: clamp(18px, 3vw, 36px);
}

.ljgs-pagination-center-right .ljgs-pagination {
    right: clamp(18px, 4vw, 70px);
    top: 50%;
    transform: translateY(-50%);
}

.ljgs-pagination-center-left .ljgs-pagination {
    left: clamp(18px, 4vw, 70px);
    top: 50%;
    transform: translateY(-50%);
}

.ljgs-bullet {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    padding: 0;
    border: 1px solid var(--ljgs-page-inactive);
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: width 300ms ease, border-color 300ms ease, background 300ms ease, opacity 300ms ease;
    opacity: .9;
}

.ljgs-bullet span {
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--ljgs-page-active);
    transform: translateY(-50%);
    opacity: 0;
}

.ljgs-bullet:hover {
    opacity: 1;
    border-color: var(--ljgs-page-active);
}

.ljgs-bullet.is-active {
    width: 86px;
    height: 2px;
    border: none;
    background: rgba(255,255,255,.18);
}

.ljgs-bullet.is-active span {
    opacity: 1;
    animation: ljgsProgress var(--ljgs-autoplay-duration) linear both;
}

.ljgs.is-paused .ljgs-bullet.is-active span {
    animation-play-state: paused;
}

.ljgs-arrow {
    position: absolute;
    top: 50%;
    z-index: 9;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    line-height: 1;
    color: #fff;
    background: rgba(0,0,0,.35);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 260ms ease, background 260ms ease, opacity 260ms ease;
}

.ljgs-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    opacity: .92;
}

.ljgs-arrow-prev {
    left: clamp(14px, 3vw, 42px);
}

.ljgs-arrow-next {
    right: clamp(14px, 3vw, 42px);
}

.ljgs.is-dragging,
.ljgs.is-dragging * {
    cursor: grabbing;
    user-select: none;
}

@keyframes ljgsProgress {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes ljgsGlowMove {
    0%, 100% { transform: translateX(-10%) scaleX(1.04) scaleY(1); }
    45% { transform: translateX(10%) scaleX(1.16) scaleY(1.04); }
    70% { transform: translateX(3%) scaleX(.96) scaleY(.94); }
}

@keyframes ljgsGlowMoveAlt {
    0%, 100% { transform: translateX(8%) scaleX(1); }
    50% { transform: translateX(-12%) scaleX(1.18); }
}

@keyframes ljgsGlowPulse {
    0%, 100% { opacity: .34; transform: scaleX(.95); }
    50% { opacity: .62; transform: scaleX(1.16); }
}

@keyframes ljgsSlowZoom {
    from { transform: scale(1.005); }
    to { transform: scale(1.075); }
}

@keyframes ljgsFadeUp {
    from { opacity: 0; transform: translate3d(0, calc(var(--ljgs-content-y) + 44px), 0); }
    to { opacity: 1; transform: translate3d(0, var(--ljgs-content-y), 0); }
}

@keyframes ljgsSlideLeft {
    from { opacity: 0; transform: translate3d(-54px, var(--ljgs-content-y), 0); }
    to { opacity: 1; transform: translate3d(0, var(--ljgs-content-y), 0); }
}

@keyframes ljgsSlideRight {
    from { opacity: 0; transform: translate3d(54px, var(--ljgs-content-y), 0); }
    to { opacity: 1; transform: translate3d(0, var(--ljgs-content-y), 0); }
}

@keyframes ljgsZoomIn {
    from { opacity: 0; transform: translate3d(0, var(--ljgs-content-y), 0) scale(.94); }
    to { opacity: 1; transform: translate3d(0, var(--ljgs-content-y), 0) scale(1); }
}

@media (max-width: 1024px) {
    .ljgs {
        --ljgs-height: 620px;
    }

    .ljgs-content-wrap {
        padding-left: 8%;
        padding-right: 8%;
    }

    .ljgs-title {
        font-size: clamp(38px, 7vw, 68px);
    }

    .ljgs-pagination {
        min-height: 70px;
        width: min(280px, calc(100% - 40px));
        padding: 24px 32px;
    }
}

@media (max-width: 767px) {
    .ljgs {
        --ljgs-height: 560px;
    }

    .ljgs-content-wrap {
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 110px;
    }

    .ljgs-title {
        font-size: clamp(34px, 11vw, 52px);
        letter-spacing: -0.035em;
        margin-bottom: 22px;
    }

    .ljgs-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .ljgs-button {
        padding: 16px 26px;
        min-width: 150px;
    }

    .ljgs-pagination,
    .ljgs-pagination-bottom-right .ljgs-pagination,
    .ljgs-pagination-bottom-left .ljgs-pagination,
    .ljgs-pagination-bottom-center .ljgs-pagination,
    .ljgs-pagination-center-right .ljgs-pagination,
    .ljgs-pagination-center-left .ljgs-pagination {
        left: 50%;
        right: auto;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        min-height: 58px;
        padding: 18px 24px;
        width: min(260px, calc(100% - 36px));
        gap: 16px;
    }

    .ljgs-bullet.is-active {
        width: 64px;
    }

    .ljgs-arrow {
        width: 44px;
        height: 44px;
        font-size: 34px;
    }
}
