/* GT AFRIK — Home: boot screen, full-bleed hero, horizontal journey,
   stat band, marquees, cost counter, closing. */

.home {
  background: var(--color-bg);
  overflow: clip;
}

/* ── boot screen ──
   Only shown when scripting is on (the .js gate), and force-retired at 4s by the
   keyframe backstop so a script failure can never leave the page covered. */
.boot {
  display: none;
}

.js .boot {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  animation: bootFailsafe 0s linear 2s forwards;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.boot[hidden] {
  display: none;
}

.boot--done {
  transform: translateY(-100%);
}

@keyframes bootFailsafe {
  to {
    transform: translateY(-100%);
    visibility: hidden;
  }
}

.boot img {
  height: 52px;
  width: auto;
  opacity: 0.9;
}

.boot__track {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.boot__bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-running));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.25s linear;
}

.boot__label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.boot__pct {
  color: var(--color-running);
  font-variant-numeric: tabular-nums;
}

/* ── cursor ring ── */
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid rgba(56, 102, 255, 0.65);
  border-radius: 50%;
  pointer-events: none;
  z-index: 5500;
  opacity: 0;
  will-change: transform;
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo),
    margin 0.3s var(--ease-out-expo), border-color 0.3s, opacity 0.3s;
}

.cursor--hot {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-color: rgba(50, 201, 111, 0.8);
}

/* ── hero ── */
.hero-full {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
}

.hero-full__glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 102, 255, 0.09) 0%,
    transparent 65%
  );
  pointer-events: none;
  left: 0;
  top: 0;
  margin: -320px 0 0 -320px;
  will-change: transform;
}

.hero-full__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(
    ellipse 75% 65% at 50% 45%,
    black 25%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 75% 65% at 50% 45%,
    black 25%,
    transparent 78%
  );
}

/* The telemetry words are atmosphere, and atmosphere must never compete with
   the copy. gt-motion scatters them on a golden angle across the whole box,
   which put GPS and DIESEL directly behind the lead paragraph — measured, the
   content block occupies x 4–95%, y 19–87%, so there is no clearing an ellipse
   can carve without killing the effect outright.

   So the words become a right-hand margin instead: a HUD gutter running beside
   a clear stage. Left of 60% they survive at 10% as a whisper of depth behind
   the display type; past 86% they read at full strength. The result is a
   composition rather than a scatter, and the lead is never crossed. */
.hero-full__words {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  --hero-gutter: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 1) 86%
  );
  mask-image: var(--hero-gutter);
  -webkit-mask-image: var(--hero-gutter);
}

@media (max-width: 900px) {
  .hero-full__words {
    --hero-gutter: var(--hero-gutter-flat);
  }
}

.fw-item {
  position: absolute;
  left: var(--x);
  top: var(--y);
  will-change: transform;
  transition: transform 0.7s var(--ease-out-expo);
}

.fw-item > span {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--size, 14px);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--fw-color);
  text-shadow: 0 0 22px var(--fw-glow);
  opacity: var(--fo);
  user-select: none;
  animation: gtFloat var(--dur) ease-in-out var(--delay) infinite,
    gtBlink var(--blink) steps(1) infinite;
}

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

@keyframes gtBlink {
  0%,
  72%,
  100% {
    opacity: var(--fo);
  }
  80% {
    opacity: 0.03;
  }
  88% {
    opacity: var(--fo);
  }
}

.hero-full__bar {
  position: relative;
  max-width: var(--shell-max);
  width: 100%;
  margin: 0 auto;
  padding: 104px var(--gutter) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.35);
}

.hero-full__bar span {
  margin: 0;
}

.hero-full__live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-running);
}

.hero-full__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--shell-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero-full__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 11.5vw, 182px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
}

.hero-full__title .gt-mask:nth-child(1) > span {
  animation-delay: 1.15s;
}

.hero-full__title .gt-mask:nth-child(2) > span {
  animation-delay: 1.3s;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.55);
}

.hero-full__title .gt-mask:nth-child(3) > span {
  animation-delay: 1.45s;
  background: linear-gradient(90deg, #3866ff 30%, #32c96f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-full__meta {
  margin-top: 44px;
}

.gt-mask.hero-full__meta > div {
  animation-delay: 1.62s;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-full__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-pill {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--color-text);
  background: var(--grad-accent);
  padding: 19px 46px;
  border-radius: var(--radius-pill);
  box-shadow: var(--edge-top-strong), var(--shadow-btn);
  will-change: transform;
  transition: transform 0.35s var(--ease-out-expo), background 0.3s,
    box-shadow 0.3s;
}

/* Specular sweep, parked outside the pill until hover. */
.btn-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.24) 50%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 750ms var(--ease-out-expo);
}

.btn-pill:hover::before,
.btn-pill:focus-visible::before {
  transform: translateX(120%);
}

.btn-pill:hover {
  color: var(--color-text);
  background: var(--grad-accent-hover);
  box-shadow: var(--edge-top-strong), var(--shadow-btn-hover);
}

@media (prefers-reduced-motion: reduce) {
  .btn-pill::before {
    display: none;
  }
}

.btn-pill--lg {
  font-size: 16px;
  padding: 22px 56px;
}

.btn-quiet {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
  padding: 19px 8px;
}

.btn-quiet:hover {
  color: var(--color-text);
}

.hero-full__foot {
  position: relative;
  max-width: var(--shell-max);
  width: 100%;
  margin: 0 auto;
  padding: 22px var(--gutter) 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 9.5px;
}

.hero-full__scroll {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin: 0;
}

.hero-full__scroll i {
  display: inline-block;
  font-style: normal;
  animation: gtHint 1.8s infinite;
}

@keyframes gtHint {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.35;
  }
}

.hero-full__ticker {
  letter-spacing: 0.14em;
  color: var(--color-stopped);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
  margin: 0;
}

.hero-full__ticker b {
  opacity: 0.5;
  font-weight: 400;
}

.hero-full__ticker i {
  font-style: normal;
  opacity: 0.6;
  animation: gtPulse 1s infinite;
}

/* ── horizontal journey ── */
.journey {
  height: 440vh;
  position: relative;
}

.journey__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.journey__track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.panel {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 6vw, 110px);
  background: var(--color-bg);
}

.panel--alt {
  background: var(--color-bg-panel);
}

.panel__ghost {
  position: absolute;
  bottom: -4vh;
  right: -1vw;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(200px, 36vw, 520px);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  user-select: none;
  pointer-events: none;
  margin: 0;
}

.panel__rule {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(24px, 6vw, 110px);
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.panel__inner {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
  padding-left: clamp(20px, 2.5vw, 44px);
}

.panel__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 5.8vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--color-text);
}

.panel__title span {
  color: transparent;
  -webkit-text-stroke: 1.2px var(--accent, rgba(56, 102, 255, 0.75));
}

.panel__text {
  font-size: clamp(14.5px, 1.15vw, 17px);
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 460px;
  margin: 0 0 36px;
}

.panel__links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.panel__explore {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 6px;
  transition: color var(--duration-fast);
}

.panel__explore:hover {
  color: var(--accent);
}

.panel__meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-running);
}

.panel__card {
  display: flex;
  flex-direction: column;
}

.panel__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.62);
}

.panel__card-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--dot, var(--color-running));
}

.panel__card-state .pulse-dot {
  animation-duration: 1.6s;
}

.panel__stats {
  margin: 0;
  padding: 0;
}

.panel__stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.panel__stat dt {
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.panel__stat dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--stat-color, var(--color-text));
}

.panel__line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  letter-spacing: 0.05em;
  color: var(--line-fg, rgba(255, 255, 255, 0.55));
}

.panel__line .pulse-dot {
  background: var(--dot, var(--color-accent));
  animation-duration: 1.4s;
}

.journey__progress {
  position: absolute;
  bottom: 32px;
  left: clamp(24px, 6vw, 110px);
  right: clamp(24px, 6vw, 110px);
  display: flex;
  align-items: center;
  gap: 22px;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.journey__index {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
}

.journey__total {
  color: rgba(255, 255, 255, 0.55);
}

.journey__track-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.journey__bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-running));
  transform-origin: left;
  transform: scaleX(0);
}

/* ── stat band ── */
.band-stats {
  border-top: 1px solid var(--line-soft);
}

.band-stats__grid {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.band-stat {
  padding: 74px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid var(--line-soft);
}

.band-stat:first-child {
  border-left: none;
}

.band-stat__value {
  order: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--color-accent);
  margin: 0;
}

.band-stat--green .band-stat__value {
  color: var(--color-running);
}

.band-stat__label {
  order: 2;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.band-stat__sub {
  order: 3;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

/* ── marquee ── */
.marquee {
  padding: 34px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.marquee__row {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: gtMarquee 38s linear infinite;
}

.marquee__row--reverse {
  animation: gtMarqueeR 44s linear infinite;
}

@keyframes gtMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes gtMarqueeR {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.marquee__row li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 34px;
}

.marquee__row li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(56, 102, 255, 0.5);
  flex-shrink: 0;
}

.marquee__row--reverse li::before {
  background: rgba(50, 201, 111, 0.5);
}

.marquee__row span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.marquee__row--reverse span {
  color: rgba(255, 255, 255, 0.42);
  -webkit-text-stroke: 0;
}

/* ── cost of waiting ── */
.cost {
  position: relative;
  padding: 140px var(--gutter);
  background: var(--color-bg-panel);
}

.cost__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(36px, 6vw, 110px);
  align-items: center;
}

.cost__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 0 0 26px;
  color: var(--color-text);
}

.cost__title span {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(239, 68, 68, 0.7);
}

.cost__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 440px;
  margin: 0 0 34px;
}

.cost__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cost__points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.cost__points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-stopped);
  margin-top: 8px;
  flex-shrink: 0;
}

.counter {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.counter__label {
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-stopped);
  margin: 0 0 16px;
}

.counter--km .counter__label {
  color: var(--color-running);
}

.counter__value {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.6vw, 88px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  color: var(--color-stopped);
  margin: 0;
}

.counter--km .counter__value {
  font-size: clamp(38px, 3.8vw, 60px);
  letter-spacing: -0.045em;
  color: var(--color-accent);
}

.counter--km .counter__value small {
  font-size: 20px;
}

.with-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 34px;
  margin: 0;
}

.with-stats dd {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-running);
  margin: 0;
}

.with-stats dt {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-top: 5px;
}

.with-stats > div {
  display: flex;
  flex-direction: column-reverse;
}

/* ── closing ── */
.home-closing {
  position: relative;
  padding: 190px var(--gutter) 170px;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}

.home-closing__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 65% at 50% 110%,
    rgba(56, 102, 255, 0.17) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.home-closing__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 44px;
}

.home-closing__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 9vw, 150px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  margin: 0;
}

.home-closing__title span {
  display: block;
}

.home-closing__title span:last-child {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.5);
}

.home-closing__text {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0;
}

.home-closing__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn-wa {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-running);
  border: 1px solid rgba(50, 201, 111, 0.35);
  padding: 21px 42px;
  border-radius: var(--radius-pill);
  transition: background var(--duration-fast);
}

.btn-wa:hover {
  color: var(--color-running);
  background: rgba(50, 201, 111, 0.08);
}

.home-closing__micro {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.28);
  margin: 0;
}

/* ── Journey falls back to a plain vertical stack under reduced motion and on
   narrow screens, where a 100vh sticky track would clip panel content and
   fight touch scrolling. Keep the JS breakpoint in home.js in sync. ── */
.journey--static {
  height: auto;
}

.journey--static .journey__stage {
  position: static;
  height: auto;
  overflow: visible;
}

.journey--static .journey__track {
  flex-direction: column;
  transform: none !important;
}

.journey--static .panel {
  width: 100%;
  height: auto;
  padding: 96px clamp(24px, 6vw, 110px);
}

.journey--static .journey__progress {
  display: none;
}

@media (max-width: 900px) {
  .journey {
    height: auto;
  }

  .journey__stage {
    position: static;
    height: auto;
    overflow: visible;
  }

  .journey__track {
    flex-direction: column;
    transform: none !important;
  }

  .panel {
    width: 100%;
    height: auto;
    padding: 96px clamp(24px, 6vw, 110px);
  }

  .journey__progress {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__row {
    animation: none;
  }

  .fw-item > span {
    animation: none;
  }
}

@media (max-width: 760px) {
  .hero-full {
    min-height: 620px;
  }

  .hero-full__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-full__ticker {
    max-width: 100%;
  }

  .cost {
    padding-block: 90px;
  }

  .home-closing {
    padding: 120px var(--gutter) 110px;
  }
}
