:root {
    --jde-blue: #1f326d;
    --jde-blue-deep: #111f50;
    --jde-yellow: #ffd530;
    --jde-red: #e31324;
    --jde-white: #ffffff;
}

html.jde-intro-lock,
body.jde-intro-lock {
    overflow: hidden !important;
    overscroll-behavior: none;
}

.jde-intro-70,
.jde-intro-70 * {
    box-sizing: border-box;
}

.jde-intro-70 {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #fff;
    color: var(--jde-blue-deep);
    font-family: Inter, Montserrat, "Segoe UI", Arial, sans-serif;
    opacity: 0;
    visibility: hidden;
    isolation: isolate;
    transition: opacity .18s ease, visibility .18s ease;
}


.jde-intro-70.is-mounted {
    opacity: 1;
    visibility: visible;
}

.jde-intro-70.is-exiting {
    visibility: visible;
    animation: jdeIntroFadeOut .7s ease forwards;
    pointer-events: none;
}

.jde-intro__skip {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    right: max(18px, env(safe-area-inset-right));
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 15px;
    border: 1px solid rgba(31, 50, 109, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    color: var(--jde-blue-deep);
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .03em;
    box-shadow: 0 12px 34px rgba(17, 31, 80, .12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.jde-intro__skip:hover,
.jde-intro__skip:focus-visible {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 31, 80, .18);
    outline: none;
}

.jde-intro__skip svg,
.jde-intro__button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.jde-intro__landing,
.jde-intro__main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.jde-intro__landing {
    z-index: 20;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity .45s ease, visibility .45s ease;
}

.jde-intro__start-area {
    appearance: none;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: clamp(24px, 4vh, 48px);
    padding: 7vh 7vw;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.jde-intro__start-area:focus-visible {
    outline: 3px solid var(--jde-yellow);
    outline-offset: -8px;
}

.jde-intro__logo-70-drop {
    display: block;
    width: min(74vw, 720px);
    max-height: min(62vh, 610px);
    transform: translate3d(0, -130vh, 0) rotate(-11deg) scale(.84);
    transform-origin: center center;
    will-change: transform;
}

.jde-intro__logo-70 {
    display: block;
    width: 100%;
    max-height: min(62vh, 610px);
    height: auto;
    object-fit: contain;
    transform: rotate(0deg) scale(1);
    transform-origin: 50% 50%;
    filter: drop-shadow(0 26px 30px rgba(17, 31, 80, .2));
    transition:
        transform .42s cubic-bezier(.2, .8, .25, 1.12),
        filter .42s ease;
    will-change: transform;
}

.jde-intro-70.is-ready .jde-intro__logo-70-drop {
    animation: jdeLogoDrop 1.35s cubic-bezier(.18, .84, .24, 1.06) .08s forwards;
}

/*
 * Versión 2.0:
 * movimiento suave al colocar el cursor sobre el logo.
 */
@media (hover: hover) and (pointer: fine) {
    .jde-intro__logo-70:hover {
        transform: rotate(var(--jde-hover-rotate, 4deg)) scale(var(--jde-hover-scale, 1.035));
        filter: drop-shadow(0 32px 36px rgba(17, 31, 80, .26));
    }
}

.jde-intro__start-area:active .jde-intro__logo-70 {
    transform: rotate(-2deg) scale(.99);
}

.jde-intro__start-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--jde-blue-deep);
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(14px);
}

.jde-intro-70.is-prompt .jde-intro__start-text {
    animation: jdePromptIn .5s ease forwards, jdePromptFloat 1.9s ease-in-out .5s infinite;
}

.jde-intro__pulse-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--jde-red);
    box-shadow: 0 0 0 0 rgba(227, 19, 36, .4);
    animation: jdePulse 1.55s ease-out infinite;
}

.jde-intro__main {
    z-index: 1;
    display: grid;
    place-items: center;
    padding: clamp(68px, 8vh, 100px) 5vw clamp(24px, 4vh, 50px);
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 213, 48, .18), transparent 27%),
        radial-gradient(circle at 10% 90%, rgba(31, 50, 109, .12), transparent 30%),
        linear-gradient(145deg, #fff 0%, #fbfcff 48%, #f4f7ff 100%);
}

.jde-intro__main::before,
.jde-intro__main::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.jde-intro__main::before {
    width: min(78vw, 980px);
    aspect-ratio: 1;
    border: clamp(24px, 4vw, 58px) solid rgba(31, 50, 109, .045);
    animation: jdeSlowSpin 24s linear infinite;
}

.jde-intro__main::after {
    width: min(55vw, 700px);
    aspect-ratio: 1;
    border: 2px solid rgba(227, 19, 36, .12);
    box-shadow: 0 0 0 24px rgba(255, 213, 48, .055), 0 0 0 58px rgba(31, 50, 109, .035);
}

.jde-intro__decor {
    position: absolute;
    width: min(34vw, 420px);
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--jde-red), var(--jde-yellow), var(--jde-blue), transparent);
    opacity: .32;
}

.jde-intro__decor--one {
    top: 17%;
    left: -8%;
    transform: rotate(-17deg);
}

.jde-intro__decor--two {
    right: -9%;
    bottom: 18%;
    transform: rotate(-17deg);
}

.jde-intro__content {
    position: relative;
    z-index: 2;
    width: min(100%, 1100px);
    display: grid;
    justify-items: center;
    text-align: center;
}

.jde-intro__eyebrow {
    margin: 0 0 8px;
    color: var(--jde-red);
    font-size: clamp(11px, 1vw, 15px);
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
}

.jde-intro__title {
    margin: 0;
    color: var(--jde-blue-deep);
    line-height: .94;
    text-transform: uppercase;
    opacity: 0;
    transform: scale(2.1) translateZ(0);
    filter: blur(10px);
}

.jde-intro__title > span {
    display: block;
    font-size: clamp(32px, 6.2vw, 86px);
    font-weight: 950;
    letter-spacing: -.055em;
}

.jde-intro__title > small {
    display: block;
    margin-top: 12px;
    color: var(--jde-blue);
    font-size: clamp(17px, 2.35vw, 34px);
    font-weight: 850;
    letter-spacing: .13em;
}

.jde-intro-70.is-main .jde-intro__eyebrow {
    animation: jdeFadeUp .55s ease .38s forwards;
}

.jde-intro-70.is-main .jde-intro__title {
    animation: jdeTitleSlam .7s cubic-bezier(.12, .86, .22, 1.08) .12s forwards;
}

/* ==========================================================
   ESCENA DE PREPARACIÓN v1.4
   CORTINA CERRADA + SILUETAS DE TRABAJO
   ========================================================== */

.jde-intro__preparation-stage--image {
    width: min(72vw, var(--jde-scene-max, 620px));
    height: auto;
    min-height: 0;
    margin-top: clamp(10px, 1.8vh, 18px);
}

.jde-intro__preparation-stage--image .jde-intro__preparation-image-wrap {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.jde-intro__preparation-stage--image .jde-intro__preparation-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1672 / 941;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(17, 31, 80, .10));
}

.jde-intro-70.is-logo-stage .jde-intro__preparation-stage--image {
    animation: jdeCoveredObjectIn .82s cubic-bezier(.16, .84, .28, 1.08) forwards;
}

.jde-intro-70.is-logo-stage .jde-intro__preparation-stage--image .jde-intro__preparation-image-wrap {
    animation: jdeImageFloat 3.4s ease-in-out .7s infinite;
}

@keyframes jdeImageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}


.jde-intro__preparation-stage {
    position: relative;
    width: clamp(310px, 44vw, 650px);
    height: clamp(210px, 25vw, 340px);
    margin-top: clamp(16px, 2.7vh, 28px);
    opacity: 0;
    transform: translateY(34px) scale(.95);
    pointer-events: none;
}

.jde-intro__stage-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 24%, rgba(255, 213, 48, .27), transparent 44%),
        radial-gradient(ellipse at 50% 78%, rgba(17,31,80,.08), transparent 58%);
    filter: blur(3px);
}

.jde-intro__closed-curtain {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 10%;
    bottom: 14%;
    filter: drop-shadow(0 18px 22px rgba(17,31,80,.18));
}

.jde-intro__curtain-top {
    position: absolute;
    left: 2%;
    right: 2%;
    top: 0;
    height: 11%;
    border-radius: 14px 14px 8px 8px;
    background:
        linear-gradient(180deg, #1e2f6c 0%, #16275d 100%);
    box-shadow: inset 0 -3px 0 rgba(255,255,255,.08), 0 6px 16px rgba(17,31,80,.1);
}

.jde-intro__curtain-panel {
    position: absolute;
    top: 8%;
    bottom: 0;
    border-radius: 24px 24px 18px 18px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,0) 12%, rgba(255,255,255,.11) 26%, rgba(9,20,68,.18) 41%, rgba(255,255,255,.08) 58%, rgba(7,16,62,.22) 76%, rgba(255,255,255,.06) 90%),
        linear-gradient(180deg, #4e6fd0 0%, #3153b0 36%, #213b88 69%, #162966 100%);
    box-shadow: inset 10px 0 18px rgba(255,255,255,.08), inset -10px 0 18px rgba(10,20,70,.16);
}

.jde-intro__curtain-panel--left {
    left: 0;
    width: 36%;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0 95%);
}

.jde-intro__curtain-panel--center {
    left: 31%;
    width: 38%;
    z-index: 2;
    clip-path: polygon(5% 0, 95% 0, 100% 96%, 50% 100%, 0 96%);
}

.jde-intro__curtain-panel--right {
    right: 0;
    width: 36%;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 3% 100%);
}

.jde-intro__curtain-hem {
    position: absolute;
    left: 2.5%;
    right: 2.5%;
    bottom: -1%;
    height: 8%;
    border-radius: 0 0 18px 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0)),
        linear-gradient(180deg, #203775 0%, #15265d 100%);
    clip-path: polygon(0 0, 12% 76%, 26% 20%, 38% 74%, 50% 20%, 62% 74%, 74% 20%, 88% 76%, 100% 0, 100% 100%, 0 100%);
}

.jde-intro__stage-base {
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 8%;
    height: 7%;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(17,31,80,.25), transparent 72%);
    filter: blur(7px);
}

.jde-intro__worker-scene {
    position: absolute;
    inset: 0;
}

.jde-intro__ladder {
    position: absolute;
    left: 20%;
    bottom: 12%;
    width: 7%;
    height: 32%;
    transform: skew(-8deg);
    border-left: 4px solid rgba(17,31,80,.68);
    border-right: 4px solid rgba(17,31,80,.68);
    opacity: .82;
}

.jde-intro__ladder::before {
    content: "";
    position: absolute;
    inset: 10% 0 6% 0;
    background: repeating-linear-gradient(180deg, transparent 0 16%, rgba(17,31,80,.68) 16% 22%, transparent 22% 38%);
}

.jde-intro__worker {
    position: absolute;
    display: block;
    width: 34px;
    height: 88px;
    color: rgba(17,31,80,.84);
    filter: drop-shadow(0 2px 2px rgba(17,31,80,.08));
}

.jde-intro__worker--left {
    left: 25%;
    bottom: 18%;
    transform: scale(.95);
}

.jde-intro__worker--right {
    right: 21%;
    bottom: 14%;
    transform: scale(1.02) translateY(1px);
}

.jde-intro__worker-head {
    position: absolute;
    left: 50%;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: currentColor;
    transform: translateX(-50%);
}

.jde-intro__worker-body {
    position: absolute;
    left: 50%;
    top: 16px;
    width: 14px;
    height: 30px;
    border-radius: 7px;
    background: currentColor;
    transform: translateX(-50%);
}

.jde-intro__worker-arm,
.jde-intro__worker-leg {
    position: absolute;
    height: 5px;
    background: currentColor;
    border-radius: 999px;
    transform-origin: left center;
}

.jde-intro__worker-arm--up {
    left: 50%;
    top: 23px;
    width: 24px;
    transform: translateX(-2px) rotate(-46deg);
}

.jde-intro__worker--right .jde-intro__worker-arm--up {
    width: 22px;
    transform: translateX(-20px) rotate(210deg);
}

.jde-intro__worker-arm--down {
    left: 50%;
    top: 30px;
    width: 20px;
    transform: translateX(-4px) rotate(38deg);
}

.jde-intro__worker--right .jde-intro__worker-arm--down {
    width: 20px;
    transform: translateX(-15px) rotate(142deg);
}

.jde-intro__worker-leg--left {
    left: 50%;
    top: 44px;
    width: 25px;
    transform: translateX(-6px) rotate(72deg);
}

.jde-intro__worker-leg--right {
    left: 50%;
    top: 44px;
    width: 25px;
    transform: translateX(-18px) rotate(112deg);
}

.jde-intro__worker--right .jde-intro__worker-leg--left {
    transform: translateX(-10px) rotate(62deg);
}

.jde-intro__worker--right .jde-intro__worker-leg--right {
    transform: translateX(-18px) rotate(120deg);
}

.jde-intro__toolbox {
    position: absolute;
    left: 48%;
    bottom: 10%;
    width: 34px;
    height: 20px;
    border-radius: 6px 6px 4px 4px;
    background: rgba(17,31,80,.78);
    box-shadow: inset 0 3px 0 rgba(255,255,255,.1);
}

.jde-intro__toolbox::before {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    top: -7px;
    height: 9px;
    border: 3px solid rgba(17,31,80,.78);
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.jde-intro__spotlight {
    position: absolute;
    top: 2%;
    width: 24%;
    height: 60%;
    background: linear-gradient(180deg, rgba(255,213,48,.18), rgba(255,213,48,0));
    filter: blur(2px);
    opacity: .6;
    clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
}

.jde-intro__spotlight--left {
    left: 18%;
    transform: rotate(4deg);
}

.jde-intro__spotlight--right {
    right: 18%;
    transform: rotate(-4deg);
}

.jde-intro-70.is-logo-stage .jde-intro__preparation-stage {
    animation: jdeCoveredObjectIn .82s cubic-bezier(.16, .84, .28, 1.08) forwards;
}

.jde-intro-70.is-logo-stage .jde-intro__closed-curtain {
    animation: jdeCurtainSway 3.6s ease-in-out .6s infinite;
}

.jde-intro-70.is-logo-stage .jde-intro__worker--left {
    animation: jdeWorkerReach 2.8s ease-in-out .7s infinite;
}

.jde-intro-70.is-logo-stage .jde-intro__worker--right {
    animation: jdeWorkerShift 3.2s ease-in-out 1s infinite;
}

.jde-intro-70.is-logo-stage .jde-intro__spotlight {
    animation: jdeLightPulse 2.9s ease-in-out .8s infinite;
}

.jde-intro__coming-soon {
    margin: clamp(12px, 2vh, 22px) 0 0;
    color: var(--jde-blue-deep);
    font-size: clamp(36px, 8vw, 118px);
    font-weight: 1000;
    line-height: .82;
    letter-spacing: -.06em;
    text-shadow: 0 8px 0 rgba(255, 213, 48, .5);
    opacity: 0;
    transform: translateY(34px) scale(.9);
}

.jde-intro-70.is-coming .jde-intro__coming-soon {
    animation: jdeComingSoon .65s cubic-bezier(.17, .84, .34, 1.18) .18s forwards;
}

.jde-intro__final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: clamp(24px, 3vh, 36px);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
}

.jde-intro__button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.jde-intro__button:hover,
.jde-intro__button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.jde-intro__button--primary {
    background: var(--jde-blue-deep);
    color: #fff;
    box-shadow: 0 12px 26px rgba(17, 31, 80, .2);
}

.jde-intro__button--secondary {
    border-color: rgba(31, 50, 109, .24);
    background: rgba(255, 255, 255, .72);
    color: var(--jde-blue-deep);
}

.jde-intro__countdown {
    margin: 10px 0 0;
    color: rgba(17, 31, 80, .64);
    font-size: 12px;
    font-weight: 650;
    opacity: 0;
}

.jde-intro-70.is-final .jde-intro__final-actions,
.jde-intro-70.is-final .jde-intro__countdown {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: opacity .45s ease, transform .45s ease;
}

.jde-intro__curtain {
    position: absolute;
    top: 0;
    z-index: 15;
    width: 51%;
    height: 100%;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(31, 50, 109, .03), transparent 14% 82%, rgba(31, 50, 109, .06)),
        #fff;
    box-shadow: 0 0 46px rgba(17, 31, 80, .14);
    will-change: transform;
    pointer-events: none;
}

.jde-intro__curtain > span {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0 10%, rgba(31, 50, 109, .025) 12%, transparent 17% 24%);
    opacity: .85;
}

.jde-intro__curtain--left {
    left: 0;
    transform: translateX(-102%);
    clip-path: polygon(0 0, 100% 0, 94% 48%, 100% 100%, 0 100%);
}

.jde-intro__curtain--right {
    right: 0;
    transform: translateX(102%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 6% 52%);
}

.jde-intro-70.is-ready .jde-intro__curtain--left,
.jde-intro-70.is-ready .jde-intro__curtain--right {
    transform: translateX(0);
}

.jde-intro-70.is-opening .jde-intro__landing {
    opacity: 0;
    visibility: hidden;
}

.jde-intro-70.is-opening .jde-intro__curtain--left {
    animation: jdeCurtainLeft .95s cubic-bezier(.74, 0, .24, 1) forwards;
}

.jde-intro-70.is-opening .jde-intro__curtain--right {
    animation: jdeCurtainRight .95s cubic-bezier(.74, 0, .24, 1) forwards;
}

@keyframes jdeLogoDrop {
    0% {
        transform: translate3d(0, -130vh, 0) rotate(-11deg) scale(.84);
    }
    68% {
        transform: translate3d(0, 2.8vh, 0) rotate(3deg) scale(1.025);
    }
    82% {
        transform: translate3d(0, -1.2vh, 0) rotate(-1.2deg) scale(.995);
    }
    92% {
        transform: translate3d(0, .5vh, 0) rotate(.5deg) scale(1.004);
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(0) scale(1);
    }
}

@keyframes jdePromptIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes jdePromptFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes jdePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 19, 36, .42);
    }
    75%, 100% {
        box-shadow: 0 0 0 12px rgba(227, 19, 36, 0);
    }
}

@keyframes jdeCurtainLeft {
    0% {
        transform: translateX(0) scaleX(1);
    }
    35% {
        transform: translateX(-4%) scaleX(.99);
    }
    100% {
        transform: translateX(-104%) scaleX(.87);
    }
}

@keyframes jdeCurtainRight {
    0% {
        transform: translateX(0) scaleX(1);
    }
    35% {
        transform: translateX(4%) scaleX(.99);
    }
    100% {
        transform: translateX(104%) scaleX(.87);
    }
}

@keyframes jdeTitleSlam {
    0% {
        opacity: 0;
        transform: scale(2.1);
        filter: blur(10px);
    }
    70% {
        opacity: 1;
        transform: scale(.94);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes jdeFadeUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes jdeCoveredObjectIn {
    0% {
        opacity: 0;
        transform: translateY(34px) scale(.94);
        filter: blur(5px);
    }
    72% {
        opacity: 1;
        transform: translateY(-3px) scale(1.015);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes jdeCoveredClothFloat {
    0%, 100% {
        transform: translateY(0) rotate(-.15deg);
        filter: drop-shadow(0 26px 26px rgba(17, 31, 80, .28)) brightness(1);
    }
    50% {
        transform: translateY(-6px) rotate(.15deg);
        filter: drop-shadow(0 32px 30px rgba(17, 31, 80, .34)) brightness(1.05);
    }
}

@keyframes jdeClothShimmer {
    0%, 100% {
        opacity: .55;
        transform: translateX(-8%);
    }
    50% {
        opacity: .95;
        transform: translateX(8%);
    }
}

@keyframes jdeComingSoon {
    0% {
        opacity: 0;
        transform: translateY(34px) scale(.9);
    }
    75% {
        opacity: 1;
        transform: translateY(-3px) scale(1.03);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes jdeSlowSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes jdeIntroFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes jdeCurtainSway {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.004);
    }
}

@keyframes jdeWorkerReach {
    0%, 100% {
        transform: scale(.95) translateY(0);
    }
    50% {
        transform: scale(.95) translateY(-3px);
    }
}

@keyframes jdeWorkerShift {
    0%, 100% {
        transform: scale(1.02) translateY(1px);
    }
    50% {
        transform: scale(1.02) translateY(-2px) translateX(-1px);
    }
}

@keyframes jdeLightPulse {
    0%, 100% {
        opacity: .45;
    }
    50% {
        opacity: .72;
    }
}

@media (max-width: 700px) {
    .jde-intro__skip span {
        display: none;
    }

    .jde-intro__skip {
        padding: 11px;
    }

    .jde-intro__main {
        padding-inline: 18px;
    }

    .jde-intro__content {
        transform: translateY(-1vh);
    }

    .jde-intro__title > span {
        font-size: clamp(31px, 10.5vw, 54px);
    }

    .jde-intro__title > small {
        letter-spacing: .08em;
    }

    .jde-intro__preparation-stage {
        width: min(88vw, 460px);
        height: min(54vw, 280px);
        min-height: 220px;
    }

    .jde-intro__preparation-stage--image {
        width: min(86vw, 520px);
        min-height: 0;
        height: auto;
    }

    .jde-intro__closed-curtain {
        left: 4%;
        right: 4%;
    }

    .jde-intro__worker {
        transform-origin: center bottom;
    }

    .jde-intro__worker--left {
        left: 20%;
    }

    .jde-intro__worker--right {
        right: 16%;
    }

    .jde-intro__coming-soon {
        font-size: clamp(48px, 18vw, 82px);
    }

    .jde-intro__final-actions {
        margin-top: 20px;
    }

    .jde-intro__button {
        width: min(100%, 270px);
    }
}

@media (max-height: 760px) and (min-width: 701px) {
    .jde-intro__main {
        padding-top: 64px;
        padding-bottom: 14px;
    }

    .jde-intro__title > span {
        font-size: clamp(34px, 5.4vw, 68px);
    }

    .jde-intro__preparation-stage {
        width: min(34vw, 420px);
        height: min(22vw, 250px);
        margin-top: 8px;
    }

    .jde-intro__preparation-stage--image {
        width: min(36vw, 560px);
        height: auto;
    }

    .jde-intro__coming-soon {
        margin-top: 4px;
        font-size: clamp(44px, 6.4vw, 76px);
    }

    .jde-intro__final-actions {
        margin-top: 12px;
    }
}

@media (max-height: 650px) {
    .jde-intro__eyebrow {
        display: none;
    }

    .jde-intro__title > small {
        margin-top: 7px;
    }

    .jde-intro__preparation-stage {
        margin-top: 5px;
    }

    .jde-intro__preparation-stage--image {
        margin-top: 4px;
    }

    .jde-intro__countdown {
        margin-top: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jde-intro-70 *,
    .jde-intro-70 *::before,
    .jde-intro-70 *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
