.nld-mhe {
  --nld-mhe-bg: #f1f1f1;
  --nld-mhe-text: #000;
  --nld-mhe-muted: rgba(0, 0, 0, .18);
  --nld-mhe-active: #fff;
  --nld-mhe-shade: .12;
  --nld-mhe-speed-top: 58s;
  --nld-mhe-speed-middle: 64s;
  --nld-mhe-speed-bottom: 60s;
  --nld-mhe-font-size: clamp(64px, 6.35vw, 124px);
  --nld-mhe-font-size-mobile: clamp(46px, 14vw, 82px);
  --nld-mhe-ease: cubic-bezier(.22, 1, .36, 1);
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--nld-mhe-bg);
  color: var(--nld-mhe-text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.nld-mhe,
.nld-mhe * {
  box-sizing: border-box;
}

.nld-mhe--size-small {
  --nld-mhe-font-size: clamp(48px, 5vw, 92px);
  --nld-mhe-font-size-mobile: clamp(36px, 11vw, 64px);
}

.nld-mhe--size-medium {
  --nld-mhe-font-size: clamp(64px, 6.35vw, 124px);
  --nld-mhe-font-size-mobile: clamp(46px, 14vw, 82px);
}

.nld-mhe--size-large {
  --nld-mhe-font-size: clamp(80px, 7.8vw, 152px);
  --nld-mhe-font-size-mobile: clamp(56px, 17vw, 104px);
}

.nld-mhe--size-xlarge {
  --nld-mhe-font-size: clamp(96px, 9.4vw, 184px);
  --nld-mhe-font-size-mobile: clamp(66px, 20vw, 126px);
}

.nld-mhe__image-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 100%;
  min-height: 100svh;
  z-index: 0;
  pointer-events: none;
  background: #111;
  opacity: 0;
  transition: opacity .55s var(--nld-mhe-ease);
}

.nld-mhe.is-hovering .nld-mhe__image-stage {
  opacity: 1;
}

.nld-mhe__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  min-height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .65s var(--nld-mhe-ease), transform 1.2s var(--nld-mhe-ease);
}

.nld-mhe__bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.nld-mhe__image-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--nld-mhe-shade));
}

.nld-mhe__wrap {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  padding: 96px 0;
}

.nld-mhe__row {
  width: 100%;
  overflow: visible;
  white-space: nowrap;
}

.nld-mhe__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  color: var(--nld-mhe-text);
}

.nld-mhe__group {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nld-mhe__link,
.nld-mhe__sep {
  display: inline-block;
  font-size: var(--nld-mhe-font-size);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: .9;
  color: currentColor;
}

.nld-mhe__link {
  margin: 0 28px;
  cursor: pointer;
  text-decoration: none;
  transition: color .35s var(--nld-mhe-ease), opacity .35s var(--nld-mhe-ease), transform .35s var(--nld-mhe-ease);
}

.nld-mhe__link:focus {
  outline: 2px solid currentColor;
  outline-offset: 8px;
}

.nld-mhe__sep {
  margin: 0 9px;
  font-weight: 400;
  letter-spacing: -.08em;
}

.nld-mhe.is-hovering .nld-mhe__track {
  color: var(--nld-mhe-muted);
}

.nld-mhe.is-hovering .nld-mhe__link.is-active {
  color: var(--nld-mhe-active);
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 8px 26px rgba(0, 0, 0, .16);
}

.nld-mhe.is-hovering .nld-mhe__sep {
  color: rgba(0, 0, 0, .28);
}

.nld-mhe .move-left {
  animation: nldMheMoveLeft linear infinite;
}

.nld-mhe .move-right {
  animation: nldMheMoveRight linear infinite;
}

.nld-mhe .speed-top { animation-duration: var(--nld-mhe-speed-top); }
.nld-mhe .speed-middle { animation-duration: var(--nld-mhe-speed-middle); }
.nld-mhe .speed-bottom { animation-duration: var(--nld-mhe-speed-bottom); }

@keyframes nldMheMoveLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes nldMheMoveRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}


@media (hover: none), (pointer: coarse) {
  .nld-mhe__link.is-mobile-cta-link {
    letter-spacing: -0.04em;
    color: var(--nld-mhe-active);
  }
}


@supports (height: 100dvh) {
  .nld-mhe,
  .nld-mhe__image-stage,
  .nld-mhe__wrap {
    min-height: 100dvh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nld-mhe__track {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .nld-mhe__wrap {
    gap: 24px;
    padding: 72px 0;
  }

  .nld-mhe__link,
  .nld-mhe__sep {
    font-size: var(--nld-mhe-font-size-mobile);
  }

  .nld-mhe__link {
    margin: 0 18px;
  }
}
