/* ============================================
   LEODI Landing Motion — Intro / Hero / WHY LEODI / Gold
   Figma: 01___Website + 03 — Website
   ============================================ */

.leodi-en {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  letter-spacing: 0.02em;
}

/* ---- No CSS scroll-snap (JS handles Intro → Hero once) ---- */
html:has(body.landing--leodi) {
  scroll-snap-type: none;
  scroll-padding-top: 0;
}

body.landing--leodi {
  scroll-snap-type: none;
}

/* Keep in-page nav anchors clear of the fixed header */
body.landing--leodi main > section:not(.leodi-intro):not(.leodi-hero)[id] {
  scroll-margin-top: calc(var(--header-height, 68px) + 16px);
}

/* ---- Gold Intro (first section, normal flow) ---- */
.leodi-intro {
  position: relative;
  z-index: 1001; /* above fixed header while overlapping */
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F0C24B;
  color: #000;
  box-sizing: border-box;
}

.leodi-intro__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  text-align: center;
  padding-inline: 1.25rem;
}

.leodi-intro__wordmark {
  margin: 0;
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 14vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #000;
  animation: leodi-wordmark-breathe 2s ease-in-out infinite;
  will-change: transform;
}

.leodi-intro__title {
  margin: 0;
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(0.7rem, 1.6vw, 0.95rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}

.leodi-intro__scroll {
  position: absolute;
  bottom: 7vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.leodi-intro__scroll:focus-visible {
  outline: 2px solid #000;
  outline-offset: 6px;
}

.leodi-intro__scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.55);
  animation: leodi-scroll-bob 1.8s ease-in-out infinite;
  will-change: transform;
}

.leodi-intro__scroll-text {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

@keyframes leodi-wordmark-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes leodi-scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---- EN Header (Figma chrome) ---- */
body.landing--en {
  direction: ltr;
  text-align: left;
  font-family: 'Manrope', 'Inter', 'Vazirmatn', system-ui, sans-serif;
}

body.landing--en .header--leodi-en {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

body.landing--en .header--leodi-en.scrolled {
  background: rgba(6, 11, 22, 0.72);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

body.landing--en .logo--wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  line-height: 1;
  text-decoration: none;
}

body.landing--en .logo__wordmark {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #fff;
}

body.landing--en .logo__subtitle {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leodi-gold-400, #f0c24b);
  white-space: nowrap;
}

body.landing--en .nav {
  gap: 1.75rem;
}

body.landing--en .nav__link {
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
}

body.landing--en .nav__link:hover,
body.landing--en .nav__link.active {
  color: #fff;
}

body.landing--en .nav__link.active::after {
  background: var(--leodi-gold-400, #f0c24b);
}

body.landing--en .header__actions {
  gap: 1rem;
}

body.landing--en .header__text-link,
body.landing--en .header__lang {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 0;
  padding: 0.35rem 0.15rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

body.landing--en .header__text-link:hover,
body.landing--en .header__lang:hover {
  color: #fff;
}

body.landing--en .header__lang-caret {
  display: inline-block;
  margin-inline-start: 0.15rem;
  font-size: 0.75em;
  opacity: 0.85;
}

body.landing--en .header__cta {
  border-radius: 999px;
  padding-inline: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: none;
}

@media (max-width: 1023px) {
  body.landing--en .header__text-link,
  body.landing--en .header__lang {
    display: none;
  }
}

/* Ghost CTA (hero secondary) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

/* ---- Hero Stage (full-bleed video + letter circle) ---- */
.leodi-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height, 68px) + 1.25rem) 0 5.5rem;
  background: var(--leodi-hero-navy, #061321);
  overflow: hidden;
  isolation: isolate;
}

.leodi-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.leodi-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #061321;
  opacity: 1;
  transition: opacity 0.28s ease;
}

.leodi-hero__video.is-soft-fade {
  opacity: 0.22;
}

.leodi-hero__cover {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 20, 0.58);
  pointer-events: none;
}

.leodi-hero__layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max, 1200px);
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.leodi-hero__content {
  position: relative;
  z-index: 3;
  max-width: 34rem;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--leodi-ease-intro),
    transform 0.7s var(--leodi-ease-intro);
}

.leodi-hero.is-content .leodi-hero__content {
  opacity: 1;
  transform: translateY(0);
}

.leodi-hero__eyebrow {
  margin: 0 0 1rem;
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.leodi-hero__headline {
  margin: 0 0 1.15rem;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4.6vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.leodi-hero__body {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.65;
  color: rgba(243, 246, 255, 0.82);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.leodi-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.leodi-hero__actions .btn-lg {
  border-radius: 999px;
  padding-inline: 1.45rem;
  min-height: 3rem;
}

/* Right letter frame (UI only — no video inside) */
.leodi-hero__frame {
  position: relative;
  width: min(72vw, 340px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.65s var(--leodi-ease-intro),
    transform 0.65s var(--leodi-ease-intro);
}

.leodi-hero.is-playing .leodi-hero__frame {
  opacity: 1;
  transform: scale(1);
}

.leodi-hero__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.leodi-hero__ring-track {
  fill: none;
  stroke: rgba(240, 194, 75, 0.28);
  stroke-width: 2.25;
}

.leodi-hero__ring-progress {
  fill: none;
  stroke: var(--leodi-gold-400, #f0c24b);
  stroke-width: 2.75;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  /* no CSS transition — rAF drives stroke-dashoffset for smooth progress */
}

.leodi-hero__letter {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: rgba(6, 14, 28, 0.22);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(4.5rem, 14vw, 8.5rem);
  line-height: 1;
  color: var(--leodi-gold-400, #f0c24b);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  user-select: none;
  transition: opacity 0.28s ease;
}

.leodi-hero__letter.is-soft-fade {
  opacity: 0.15;
}

.leodi-hero__bottom {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 1.75rem;
  width: 100%;
  max-width: var(--container-max, 1200px);
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.7s var(--leodi-ease-intro) 0.15s;
}

.leodi-hero.is-content .leodi-hero__bottom {
  opacity: 1;
}

.leodi-hero__scroll-explore {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.leodi-hero__scroll-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 3.25rem;
}

.leodi-hero__scroll-bar {
  display: block;
  height: 2px;
  border-radius: 2px;
}

.leodi-hero__scroll-bar--gold {
  width: 1.35rem;
  background: var(--leodi-gold-400, #f0c24b);
}

.leodi-hero__scroll-bar--dim {
  width: 100%;
  background: rgba(255, 255, 255, 0.28);
}

.leodi-hero__next {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  white-space: nowrap;
}

.leodi-hero__next:hover {
  color: #fff;
}

@media (min-width: 900px) {
  .leodi-hero {
    padding-bottom: 4.5rem;
  }

  .leodi-hero__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
    gap: 3rem;
    align-items: center;
  }

  .leodi-hero__frame {
    width: min(42vh, 420px);
    justify-self: end;
    margin-inline: 0;
  }

  .leodi-hero__letter {
    font-size: clamp(6rem, 12vh, 9rem);
  }
}

@media (max-width: 899px) {
  .leodi-hero__layout {
    padding-top: 0.5rem;
  }

  .leodi-hero__frame {
    width: min(58vw, 260px);
    order: -1;
    justify-self: center;
  }

  .leodi-hero__letter {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .leodi-hero__bottom {
    bottom: 1.25rem;
  }
}

/* ---- WHY LEODI → Gold → Journey entrance (pinned scrub) ---- */
.why-gold {
  position: relative;
  /* sticky 100vh + ~190vh scrub; extra length reserved for softer Journey entrance */
  height: 290vh;
  height: 290dvh;
  background: #F8F5EE;
  /* no scroll-snap — pin scrub must not fight Intro→Hero snap */
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.why-gold__anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.why-gold__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #F8F5EE;
}

/* Cream WHY block */
.why-leodi {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  background: #F8F5EE;
  color: #0a0a0a;
}

.why-leodi__inner {
  width: 100%;
  max-width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: calc(var(--header-height, 68px) + clamp(1.75rem, 4vh, 2.75rem)) 0 clamp(2.5rem, 6vh, 4rem);
  box-sizing: border-box;
}

.why-leodi__label {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leodi-gold-400, #f0c24b);
  margin: 0 0 clamp(1.25rem, 2.5vh, 1.75rem);
}

.why-leodi__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .why-leodi__top {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem 4rem;
  }
}

.why-leodi__headline {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 3.6vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin: 0;
  max-width: 16ch;
}

.why-leodi__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.15rem;
}

.why-leodi__body {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.65;
  color: #6b6b72;
  margin: 0;
  max-width: 36ch;
}

.why-leodi__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  border-bottom: 1px solid var(--leodi-gold-400, #f0c24b);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.why-leodi__link:hover {
  color: #333;
  border-bottom-color: #c9a03a;
}

.why-leodi__link-arrow {
  font-size: 0.95em;
  line-height: 1;
}

.why-leodi__rule {
  height: 1px;
  width: 100%;
  background: rgba(10, 10, 10, 0.12);
  margin: clamp(1.75rem, 4vh, 2.75rem) 0;
  border: 0;
}

.why-leodi__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.75rem);
  will-change: transform, opacity;
}

@media (min-width: 768px) {
  .why-leodi__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.why-leodi__col {
  min-width: 0;
  opacity: 0;
  transform: translateY(-40px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0ms;
  will-change: opacity, transform;
}

.why-leodi__grid.is-cascade .why-leodi__col {
  opacity: 1;
  transform: translateY(0);
}

.why-leodi__grid.is-cascade .why-leodi__col:nth-child(1) { transition-delay: 0ms; }
.why-leodi__grid.is-cascade .why-leodi__col:nth-child(2) { transition-delay: 600ms; }
.why-leodi__grid.is-cascade .why-leodi__col:nth-child(3) { transition-delay: 1200ms; }
.why-leodi__grid.is-cascade .why-leodi__col:nth-child(4) { transition-delay: 1800ms; }
.why-leodi__grid.is-cascade .why-leodi__col:nth-child(5) { transition-delay: 2400ms; }

.why-leodi__letter {
  display: block;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--leodi-gold-400, #f0c24b);
  margin-bottom: 0.65rem;
}

.why-leodi__word {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0 0 0.45rem;
}

.why-leodi__line {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #6b6b72;
  margin: 0;
  max-width: 18ch;
}

/* Gold fill — bottom-anchored; height scrubbed 0 → 8px → 100vh; then lifts for Journey */
.why-gold__fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #F0C24B;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  will-change: height, transform;
  transform: translate3d(0, 0, 0);
}

/* Method copy fills the growing gold bar (visible as soon as bar is tall enough) */
.why-gold__method {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(var(--header-height, 68px) + clamp(1.25rem, 3vh, 2rem)) clamp(1.5rem, 6vw, 5rem) clamp(2rem, 6vh, 3rem);
  box-sizing: border-box;
  pointer-events: none;
  color: #0a0a0a;
}

.why-gold__method-label {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0 0 clamp(1.25rem, 3vh, 2rem);
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  will-change: opacity, transform;
}

.why-gold__method-headline {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 7.2vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0;
  max-width: min(92vw, 920px);
}

.why-gold__method-mask {
  display: block;
  overflow: hidden;
}

.why-gold__method-line {
  display: block;
  transform: translate3d(0, 100%, 0);
  will-change: transform;
}

@media (max-width: 767px) {
  .why-leodi__inner {
    max-width: calc(100% - 2rem);
    padding-top: 5rem;
  }
  .why-leodi__headline {
    max-width: none;
  }
  .why-leodi__body {
    max-width: none;
  }
  .why-gold__method {
    padding-inline: 1.25rem;
  }
}


/* ---- Journey (navy) — entrance scrub + 5-stage pin ---- */
.journey-section {
  position: relative;
  z-index: 4;
  /* Overlap last 100vh of WHY pin track so Journey can scrub-cover gold at 80–100% */
  margin-top: -100vh;
  margin-top: -100dvh;
  /* Tall track: sticky 100vh + ~90vh per stage (5) */
  height: 560vh;
  height: 560dvh;
  background: transparent;
  color: var(--leodi-text, #f3f6ff);
  overflow: visible;
  scroll-snap-align: none;
  /* Start fully below; JS scrubs translateY(100% → 0) during gold 80–100% */
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  pointer-events: none;
}

.journey-section__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  background: #0A1121;
  color: #f3f6ff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.journey-section__inner {
  width: 100%;
  max-width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: calc(var(--header-height, 68px) + clamp(1.1rem, 2.4vh, 1.85rem)) 0 clamp(1.1rem, 2.2vh, 1.6rem);
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Fixed header during stage scrub */
.journey-section__header {
  flex: 0 0 auto;
}

.journey-section__eyebrow {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 246, 255, 0.48);
  margin: 0 0 clamp(1rem, 2vh, 1.45rem);
}

.journey-section__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem 3.5rem;
  align-items: start;
  margin-bottom: clamp(1.5rem, 3.2vh, 2.35rem);
}

@media (min-width: 900px) {
  .journey-section__top {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem 4.5rem;
  }
}

.journey-section__headline {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.journey-section__headline-line {
  display: block;
}

.journey-section__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  padding-top: 0.2rem;
  max-width: 34rem;
}

.journey-section__intro-text {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.65;
  color: rgba(243, 246, 255, 0.88);
  margin: 0;
}

.journey-section__intro-rule {
  display: block;
  width: 3.5rem;
  height: 1px;
  background: rgba(243, 246, 255, 0.35);
}

/* Full-width thin divider + gold accent (progress-linked) */
.journey-section__divider {
  position: relative;
  flex: 0 0 auto;
  height: 1px;
  margin: 0 0 clamp(1.35rem, 2.8vh, 2rem);
}

.journey-section__divider-track {
  position: absolute;
  inset: 0;
  background: rgba(243, 246, 255, 0.14);
}

/* Full-width divider gold — driven to same % as column progress-fill */
.journey-section__divider-gold {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20%;
  background: var(--leodi-gold-400, #f0c24b);
  transform-origin: left center;
  will-change: width;
}

.journey-section__bottom {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2.75rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .journey-section__bottom {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 2rem 3.25rem;
  }
}

.journey-section__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-bottom: 0.25rem;
}

/* Column progress: faint gray track + gold fill (5 steps) */
.journey-section__progress {
  position: relative;
  height: 1px;
  width: 100%;
  /* Sit on the full-width divider so gold reads as left accent */
  margin-top: calc(-1 * (clamp(1.35rem, 2.8vh, 2rem) + 1px));
  margin-bottom: calc(clamp(1.35rem, 2.8vh, 2rem) + 1.05rem);
}

.journey-section__progress-track {
  position: absolute;
  inset: 0;
  background: rgba(243, 246, 255, 0.16);
}

.journey-section__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20%;
  background: var(--leodi-gold-400, #f0c24b);
  transform-origin: left center;
  will-change: width;
}

.journey-section__stages {
  position: relative;
  flex: 1 1 auto;
  min-height: 14rem;
}

.journey-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  pointer-events: none;
  will-change: opacity, transform;
}

.journey-stage.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.journey-stage.is-exit {
  opacity: 0;
  transform: translate3d(0, -14px, 0);
}

.journey-stage__label {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leodi-gold-400, #f0c24b);
  margin: 0 0 1rem;
}

.journey-stage__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 1rem;
  max-width: 12ch;
}

.journey-stage__body {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.65;
  color: rgba(243, 246, 255, 0.72);
  margin: 0 0 auto;
  max-width: 34ch;
  padding-bottom: 1.5rem;
}

.journey-stage__meta {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leodi-gold-400, #f0c24b);
  margin: 0;
  padding-top: 0.5rem;
}

.journey-section__media {
  min-height: 0;
  display: flex;
  align-items: stretch;
}

.journey-section__media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(12rem, 28vh, 18rem);
  overflow: hidden;
  background: #060b16;
}

@media (min-width: 900px) {
  .journey-section__media-frame {
    min-height: 0;
  }
}

.journey-section__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  z-index: 1;
  will-change: clip-path, opacity;
}

.journey-section__img.is-current {
  opacity: 1;
  z-index: 2;
  clip-path: inset(0 0 0 0);
}

.journey-section__img.is-next {
  opacity: 1;
  z-index: 1;
  clip-path: inset(100% 0 0 0);
}

.journey-section__veil {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  background: #0A1121;
  z-index: 3;
  pointer-events: none;
  will-change: height;
}

.journey-section__footer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.1rem, 2.4vh, 1.75rem);
  padding-top: 0.85rem;
}

.journey-section__status,
.journey-section__next {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 246, 255, 0.48);
  text-decoration: none;
  white-space: nowrap;
}

.journey-section__next:hover {
  color: rgba(243, 246, 255, 0.85);
}



/* ---- INSIDE LEODI (cream) ---- */
.inside-leodi {
  position: relative;
  z-index: 5;
  background: #F8F5EE;
  color: #0a0a0a;
  padding: clamp(4.5rem, 10vh, 7rem) 0 clamp(4rem, 8vh, 6rem);
}

.inside-leodi__inner {
  width: 100%;
  max-width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  box-sizing: border-box;
}

.inside-leodi__label {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D7A52A;
  margin: 0 0 clamp(1.25rem, 2.5vh, 1.75rem);
}

.inside-leodi__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 3.5rem;
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vh, 3.5rem);
}

@media (min-width: 900px) {
  .inside-leodi__top {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem 4rem;
  }
}

.inside-leodi__headline {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0;
}

.inside-leodi__headline-line {
  display: block;
}

.inside-leodi__aside {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding-top: 0.35rem;
}

.inside-leodi__body {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.72);
  margin: 0;
  max-width: 38ch;
}

.inside-leodi__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a0a0a;
  width: fit-content;
  transition: color 0.22s ease;
}

.inside-leodi__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.28rem;
  background: #2F5BFF;
  flex-shrink: 0;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.inside-leodi__cta:hover,
.inside-leodi__cta:focus-visible {
  color: #4a5568;
}

.inside-leodi__cta:hover .inside-leodi__cta-icon,
.inside-leodi__cta:focus-visible .inside-leodi__cta-icon {
  transform: translateX(4px);
  background: #4B73FF;
}

.inside-leodi__card {
  background: #EDE8DC;
  border-radius: 1.35rem;
  padding: clamp(1.1rem, 2vw, 1.45rem) clamp(1.1rem, 2.2vw, 1.6rem) clamp(1.2rem, 2.4vw, 1.75rem);
  box-sizing: border-box;
}

.inside-leodi__card-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-bottom: clamp(1rem, 2vh, 1.35rem);
}

@media (min-width: 800px) {
  .inside-leodi__card-header {
    grid-template-columns: auto minmax(120px, 1fr) auto;
    gap: 1rem 1.75rem;
  }
}

.inside-leodi__card-title,
.inside-leodi__card-meta {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
}

.inside-leodi__card-progress {
  display: block;
  height: 2px;
  background: rgba(10, 10, 10, 0.12);
  border-radius: 999px;
  overflow: hidden;
  min-width: 0;
}

.inside-leodi__card-progress-fill {
  display: block;
  height: 100%;
  width: 70%;
  background: #F0C24B;
  border-radius: inherit;
}

.inside-leodi__previews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .inside-leodi__previews {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.inside-leodi__preview {
  margin: 0;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #d9d2c4;
  aspect-ratio: 16 / 10;
}

.inside-leodi__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0.6px);
  transform: scale(1.02);
}

/* ---- Choose Your Access (final Figma) ---- */
.choose-access {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  min-height: 100dvh;
  color: #091320;
}

.choose-access__left {
  background: #F0C24B;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: clamp(4.5rem, 10vh, 6.5rem) clamp(1.5rem, 4vw, 4.5rem) clamp(2.5rem, 6vh, 4rem);
  box-sizing: border-box;
}

.choose-access__left-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 38rem;
  height: 100%;
}

.choose-access__eyebrow {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #091320;
  margin: 0 0 clamp(1.25rem, 2.5vh, 1.85rem);
}

.choose-access__headline {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.15rem, 5.2vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #091320;
  margin: 0 0 clamp(1.35rem, 2.8vh, 2rem);
}

.choose-access__headline-line {
  display: block;
}

.choose-access__body {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  color: #3a3a40;
  margin: 0;
  max-width: 34ch;
}

.choose-access__explore {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: clamp(2.5rem, 8vh, 5rem);
  align-self: flex-start;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #091320;
  text-decoration: none;
  border-bottom: 1.5px solid #091320;
  padding-bottom: 0.35rem;
  transition: opacity 0.2s ease;
}

.choose-access__explore:hover,
.choose-access__explore:focus-visible {
  opacity: 0.72;
}

.choose-access__ext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.choose-access__right {
  background: #091320;
  color: #f3f6ff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1.25rem, 2.5vh, 1.75rem);
  padding: clamp(4.5rem, 10vh, 6.5rem) clamp(1.35rem, 2.8vw, 2.75rem) clamp(2.5rem, 6vh, 3.5rem);
  box-sizing: border-box;
}

.choose-access__right-label {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F0C24B;
  margin: 0 0 0.5rem;
}

.choose-access__block {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.choose-access__block-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
}

.choose-access__num {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #F0C24B;
  line-height: 1;
  padding-top: 0.15rem;
}

.choose-access__block-copy {
  min-width: 0;
}

.choose-access__block-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.55rem;
}

.choose-access__block-desc {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(243, 246, 255, 0.62);
  margin: 0;
  max-width: 28ch;
}

.choose-access__block-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  padding-top: 0.15rem;
}

.choose-access__block-foot--end {
  justify-content: flex-end;
}

.choose-access__meta {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 246, 255, 0.78);
}

.choose-access__plan-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.choose-access__plan-link:hover,
.choose-access__plan-link:focus-visible {
  color: #F0C24B;
}

.choose-access__divider {
  border: 0;
  border-top: 1px solid rgba(243, 246, 255, 0.16);
  margin: 0.15rem 0;
}

.choose-access__daram {
  padding-top: 0.15rem;
}

.choose-access__daram-label {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F0C24B;
  margin: 0 0 0.85rem;
}

.choose-access__daram-name {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.55rem;
  line-height: 1;
}

.choose-access__daram-tag {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.85rem;
}

.choose-access__daram-desc {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(243, 246, 255, 0.58);
  margin: 0;
  max-width: 34ch;
}

@media (min-width: 960px) {
  .choose-access {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}

@media (max-width: 959px) {
  .choose-access {
    min-height: 0;
  }
  .choose-access__left {
    min-height: min(92vh, 720px);
  }
  .choose-access__right {
    min-height: auto;
  }
}

/* ---- EN cream footer (Figma) ---- */
body.landing--en .footer.footer--leodi-en,
body.landing--en .footer.footer--cream {
  background: #F7F3E9;
  color: #091320;
  padding: 0;
  border-top: 0;
}

body.landing--en .footer--cream .footer__inner,
body.landing--en .footer--leodi-en .footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  max-width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

body.landing--en .footer--cream .footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2.75rem, 5vh, 3.75rem) 0 clamp(2.5rem, 4.5vh, 3.25rem);
  border-top: 1px solid rgba(9, 19, 32, 0.14);
}

body.landing--en .footer--cream .footer__brand .logo--wordmark,
body.landing--en .footer--cream .logo--footer {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  gap: 0.35rem;
}

body.landing--en .footer--cream .logo__wordmark {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #091320;
}

body.landing--en .footer--cream .logo__subtitle {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #CFA745;
}

body.landing--en .footer--cream .footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

body.landing--en .footer--cream .footer__heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #CFA745;
  margin: 0 0 1.1rem;
}

body.landing--en .footer--cream .footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

body.landing--en .footer--cream .footer__link {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #091320;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

body.landing--en .footer--cream .footer__link:hover {
  opacity: 0.65;
}

body.landing--en .footer--cream .footer__link--ext {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

body.landing--en .footer--cream .footer__ext-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: #3B82F6;
  flex-shrink: 0;
}

body.landing--en .footer--cream .footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.15rem 0 1.5rem;
  border-top: 1px solid rgba(9, 19, 32, 0.14);
}

body.landing--en .footer--cream .footer__copyright {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #091320;
  margin: 0;
}

body.landing--en .footer--cream .footer__legal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

body.landing--en .footer--cream .footer__legal-link {
  color: #091320;
  text-decoration: none;
}

body.landing--en .footer--cream .footer__legal-link:hover {
  opacity: 0.65;
}

body.landing--en .footer--cream .footer__legal-lang {
  color: #091320;
}

@media (min-width: 900px) {
  body.landing--en .footer--cream .footer__top {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr);
    align-items: start;
  }
}

@media (max-width: 700px) {
  body.landing--en .footer--cream .footer__cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html:has(body.landing--leodi),
  body.landing--leodi {
    scroll-snap-type: none;
  }
  .leodi-intro,
  .leodi-hero {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
  .leodi-intro__wordmark,
  .leodi-intro__scroll-line { animation: none; }
  .leodi-hero__content,
  .leodi-hero__frame,
  .leodi-hero__bottom {
    transition: opacity 0.35s ease !important;
    animation: none !important;
    filter: none !important;
    transform: none !important;
  }
  .leodi-hero.is-content .leodi-hero__content,
  .leodi-hero.is-playing .leodi-hero__frame,
  .leodi-hero.is-content .leodi-hero__bottom {
    opacity: 1;
  }
  .why-gold {
    height: auto;
  }
  .why-gold__pin {
    position: relative;
    height: auto;
    min-height: auto;
    overflow: visible;
  }
  .why-leodi {
    position: relative;
    inset: auto;
  }
  .why-gold__fill {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    min-height: 70vh;
    overflow: visible;
    transform: none !important;
  }
  .why-gold__method {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    min-height: 70vh;
    pointer-events: auto;
    padding: 4rem 1.25rem;
  }
  .why-gold__method-label {
    opacity: 1;
    transform: none;
  }
  .why-gold__method-line {
    transform: none !important;
  }
  .why-leodi__col {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .why-leodi__grid {
    opacity: 1 !important;
    transform: none !important;
  }
  .journey-section {
    margin-top: 0;
    height: auto;
    transform: none !important;
    will-change: auto;
    pointer-events: auto;
  }
  .journey-section__pin {
    position: relative;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: visible;
  }
  .journey-stage:not(.is-active) {
    display: none;
  }
  .journey-stage.is-active {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
  }
  .journey-section__stages {
    min-height: 0;
  }
  .journey-section__img,
  .journey-section__veil {
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* Hide legacy carousel when LEODI hero is active */
.landing--leodi .hero-carousel { display: none; }

/* Neutralize legacy .hero chrome on LEODI hero */
body.landing--leodi .leodi-hero.hero {
  padding-top: calc(var(--header-height, 68px) + 1.25rem);
  background: var(--leodi-hero-navy, #061321);
}
body.landing--leodi .leodi-hero.hero::before {
  display: none;
}

/* EN CTA polish */
body.landing--en .header__cta.btn-primary,
body.landing--en .leodi-hero__actions .btn-primary {
  border-radius: 999px;
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  box-shadow: none;
  border: 0;
  background: #f0c24b;
  color: #0a1224;
}
body.landing--en .leodi-hero__actions .btn-ghost {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 600;
}
body.landing--en .header__inner {
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  body.landing--en .nav {
    flex: 1;
    justify-content: center;
    padding-inline: 1rem;
  }
  body.landing--en .header__actions {
    flex-shrink: 0;
  }
  body.landing--en .logo--wordmark {
    flex-shrink: 0;
    min-width: 11rem;
  }
}
