/* Hero: logo, then a 3D forklift drops a T-Blue Star through the frame into the hero */
.lift { position: relative; height: 520vh; padding-block: 0; background: var(--bg-soft); }
.lift-stage { position: sticky; top: 80px; height: calc(100vh - 80px); height: calc(100svh - 80px); overflow: hidden; }
.lift-logo, .lift-scene, .lift-frame { position: absolute; inset: 0; }

.lift-logo { z-index: 4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; padding-inline: 20px; }
.lift-logo img { height: clamp(170px, 40vh, 340px); width: auto; }
.lift-cue { display: inline-flex; flex-direction: column; align-items: center; gap: 10px; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.lift-cue i { position: relative; width: 22px; height: 34px; border: 2px solid var(--navy); border-radius: 12px; }
.lift-cue i::after { content: ""; position: absolute; left: 50%; top: 6px; width: 4px; height: 7px; margin-left: -2px; border-radius: 2px; background: var(--orange); animation: liftCue 1.6s ease-in-out infinite; }
/* Greek: no word under the mouse, just an arrow pointing down (the word stays for screen readers) */
.lang-el .lift-cue { position: relative; font-size: 0; letter-spacing: 0; padding-bottom: 16px; }
.lang-el .lift-cue::after { content: ""; position: absolute; left: 50%; bottom: 2px; width: 9px; height: 9px; margin-left: -5px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); animation: liftArrow 1.6s ease-in-out infinite; }
@keyframes liftArrow { 0%, 100% { transform: translateY(-3px) rotate(45deg); opacity: .5; } 50% { transform: translateY(2px) rotate(45deg); opacity: 1; } }
@keyframes liftCue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* The scene sits above the hero frame so the falling unit can travel into it */
.lift-scene { z-index: 3; opacity: 0; pointer-events: none; }
.lift-canvas { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.lift-flyer { position: absolute; top: 0; left: 0; max-width: none; transform-origin: 50% 100%; filter: drop-shadow(0 26px 24px rgba(21, 26, 46, .16)); will-change: transform; }
.lift-flyer img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; }
.lift.is-animated .lift-unit { opacity: 0; }
.lift-caption { position: absolute; z-index: 1; top: clamp(20px, 4vh, 40px); left: 0; right: 0; }
.lift-caption .eyebrow { margin-bottom: 6px; }
.lift-caption p { margin: 0; max-width: 30ch; font-weight: 700; font-size: clamp(1rem, 1.8vw, 1.35rem); line-height: 1.35; color: var(--navy); }

/* Shown beside the unit as it drops; it rides up and out with the scene */
.lift-drop { position: absolute; z-index: 1; top: 34%; left: 0; right: 0; opacity: 0; }
.lift-drop .wrap { position: relative; display: flex; justify-content: flex-end; }

.lift-drop .wrap > div { max-width: 360px; }
.lift-drop-title { margin: 0; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.02; letter-spacing: -.04em; color: var(--ink); text-wrap: balance; }
.lift-drop-title em, .lift-title h1 em { font-style: normal; color: var(--orange); }

/* Hero frame: product-launch layout. Same ground as the scene, so the camera pans without a seam. */
.lift-frame {
  z-index: 2;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(8px, 2vh, 20px);
  padding-block: clamp(26px, 5vh, 52px) clamp(18px, 3.5vh, 34px);
  padding-inline: max(20px, calc((100% - 1200px) / 2));
  background: var(--bg-soft);
  transform: translateY(100%);
}
.lift-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px 40px; flex-wrap: wrap; }
.lift-title h1 { font-size: clamp(2.7rem, 5.4vw, 4.75rem); font-weight: 700; line-height: 1; letter-spacing: -.045em; color: var(--ink); }
.lift-sub { margin: 12px 0 0; max-width: 34ch; font-size: clamp(1.1rem, 1.9vw, 1.6rem); font-weight: 500; line-height: 1.25; letter-spacing: -.02em; color: var(--ink); text-wrap: balance; }
.lift-cta { display: flex; align-items: center; gap: 12px 28px; flex-wrap: wrap; padding-top: clamp(4px, 1.2vw, 16px); }
.lift-pill { display: inline-flex; align-items: center; min-height: 52px; padding: 0 28px; border-radius: 999px; background: var(--navy); color: #fff; font-size: 1.05rem; font-weight: 600; letter-spacing: -.01em; transition: background-color .25s; }
.lift-pill:hover { background: var(--navy-dark); color: #fff; }
.lift-link { display: inline-flex; align-items: center; gap: 6px; font-size: 1.05rem; font-weight: 500; letter-spacing: -.01em; color: var(--navy); }
.lift-link span { font-size: 1.35em; line-height: 1; transition: transform .25s; }
.lift-link:hover span { transform: translateX(3px); }
.lift-pill:focus-visible, .lift-link:focus-visible, .lift-chip:focus-visible, .lift-round:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.lift-unit-wrap { position: relative; min-height: 0; }
.lift-unit { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: contain; filter: drop-shadow(0 26px 24px rgba(21, 26, 46, .16)); }

.lift-foot { display: flex; align-items: center; justify-content: center; gap: 12px; }
.lift-chip { display: inline-flex; align-items: center; gap: 14px; min-height: 56px; padding: 0 26px; border-radius: 999px; background: rgba(21, 26, 46, .06); color: var(--ink); font-size: .95rem; transition: background-color .25s; }
.lift-chip strong { font-weight: 600; letter-spacing: -.01em; }
.lift-chip span { color: var(--muted); font-weight: 500; font-variant-numeric: tabular-nums; }
.lift-round { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(21, 26, 46, .06); color: var(--ink); transition: background-color .25s; }
.lift-round svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.lift-chip:hover, .lift-round:hover { background: rgba(21, 26, 46, .11); color: var(--ink); }

/* No motion or no GSAP: show the hero frame on its own */
.lift.is-static { height: auto; }
.lift.is-static .lift-stage { position: relative; top: 0; height: clamp(600px, 82vh, 820px); }
.lift.is-static .lift-logo, .lift.is-static .lift-scene { display: none; }
.lift.is-static .lift-frame { transform: none; }

.foot-credit { flex-basis: 100%; }
.foot-credit a { text-decoration: underline; }
.foot-credit a:hover { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .lift-cue i::after, .lang-el .lift-cue::after { animation: none; }
}
@media (max-width: 720px) {
  .lift { height: 440vh; }
  .lift-stage { top: 68px; height: calc(100vh - 68px); height: calc(100svh - 68px); }
  .lift-drop { top: 48px; }
  .lift-drop .wrap { justify-content: flex-start; }
  .lift-drop-title { font-size: 2.1rem; }
  .lift-frame { padding-block: 22px 86px; padding-inline: 20px; }
  .lift-head { gap: 14px; }
  .lift-title h1 { font-size: 2.6rem; }
  .lift-sub { font-size: 1.05rem; }
  .lift-cta { gap: 10px 20px; padding-top: 0; }
  .lift-pill { min-height: 44px; padding: 0 20px; font-size: .95rem; }
  .lift-link { font-size: .95rem; }
  .lift-chip { min-height: 46px; padding: 0 18px; gap: 10px; font-size: .82rem; }
  .lift-chip span { display: none; }
  .lift-round { width: 46px; height: 46px; }
  .lift.is-static .lift-stage { height: auto; }
  .lift.is-static .lift-frame { position: relative; gap: 18px; padding-block: 28px 32px; }
  .lift.is-static .lift-unit-wrap { height: min(52vh, 420px); }
  .lift.is-static .lift-chip span { display: inline; }
  .lift.is-static .lift-foot { flex-wrap: wrap; }
}
