@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-extrabold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("assets/fonts/dm-serif-italic.ttf") format("truetype");
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #f5f4ed;
  --dark: #061421;
  --paper: #f3f0e8;
  --line: rgba(255, 255, 255, 0.18);
  --accent: #c7f500;
  --accent-2: #b6d900;
  --world: #087d64;
  --world-deep: #063b34;
  --world-image: url("assets/world-sudachi-lime.webp");
  --display: "Manrope", Arial, sans-serif;
  --serif: "DM Serif Display", Georgia, serif;
  --ease: cubic-bezier(.2, .78, .2, 1);
  --header-h: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--dark);
  font-family: var(--display);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: .8rem 1rem;
  color: #071624;
  background: #fff;
}

.loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  color: #071624;
  background: var(--accent);
  transition: clip-path .78s var(--ease), visibility .78s;
  clip-path: inset(0 0 0 0);
}

.loader.is-hidden {
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}

.loader__mark {
  display: flex;
  align-items: center;
  gap: 18px;
}

.loader__mark i {
  width: clamp(50px, 8vw, 130px);
  height: 1px;
  background: currentColor;
  transform-origin: center;
  animation: loaderLine 1.2s ease-in-out infinite;
}

.loader__mark span {
  display: grid;
  width: 68px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.loader p {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
}

@keyframes loaderLine {
  50% { transform: scaleX(.45); }
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-h);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 4.8vw, 92px);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand__disc {
  display: grid;
  width: 37px;
  aspect-ratio: 1;
  place-items: center;
  color: #071624;
  background: var(--accent);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  transition: transform .35s var(--ease);
}

.brand:hover .brand__disc {
  transform: rotate(-12deg) scale(1.06);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 12px;
  letter-spacing: .02em;
}

.brand small {
  margin-top: 3px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .16em;
  opacity: .72;
}

.desktop-nav {
  display: flex;
  gap: clamp(22px, 3vw, 54px);
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .3s, background .3s, border-color .3s;
}

.header-cta span,
.primary-action span,
.final-cta a span {
  transition: transform .3s var(--ease);
}

.header-cta:hover {
  color: #071624;
  background: var(--accent);
  border-color: var(--accent);
}

.header-cta:hover span,
.primary-action:hover span,
.final-cta a:hover span {
  transform: translate(4px, -4px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-content: center;
  justify-self: end;
  padding: 0 13px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: calc(var(--header-h) + 45px) 24px 30px;
  color: #071624;
  background: var(--accent);
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(7, 22, 36, .22);
  font-size: 26px;
  font-weight: 800;
}

.mobile-menu nav span {
  font-size: 9px;
}

.mobile-menu__cta {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding: 20px;
  color: #fff;
  background: #071624;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.selector {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--world);
  transition: background .8s var(--ease);
}

.selector__world,
.selector__shade,
.selector__grid,
.selector__world::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.selector__world {
  z-index: -5;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .8s var(--ease), transform 1.5s var(--ease);
}

.selector__world::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 12, 23, .84) 0%, rgba(2, 12, 23, .46) 34%, rgba(2, 12, 23, .1) 62%, rgba(2, 12, 23, .46) 100%),
    linear-gradient(0deg, rgba(2, 12, 23, .5), transparent 45%);
}

.selector__world--lime { background-image: url("assets/world-sudachi-lime.webp"); }
.selector__world--blue { background-image: url("assets/world-juneberry.webp"); }
.selector__world--red { background-image: url("assets/world-watermelon.webp"); }

body[data-edition="lime"] .selector__world--lime,
body[data-edition="blue"] .selector__world--blue,
body[data-edition="red"] .selector__world--red {
  opacity: 1;
  transform: scale(1);
}

.selector__shade {
  z-index: -4;
  background: radial-gradient(circle at 54% 47%, transparent 0 22%, rgba(3, 14, 25, .3) 54%, rgba(3, 14, 25, .65) 100%);
}

.selector__grid,
.journey__grid {
  z-index: -3;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 6vw 6vw;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 82%, transparent);
}

.selector__copy {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: clamp(24px, 5vw, 96px);
  width: min(43vw, 680px);
  transform: translateY(-45%);
}

.kicker,
.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.selector h1,
.journey__chapter h2,
.section-heading h2,
.formula h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(66px, 7.1vw, 144px);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .84;
}

.selector h1 em,
.journey__chapter h2 em,
.section-heading h2 em,
.formula h2 em,
.final-cta h2 em {
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
}

.selector__lede {
  width: min(420px, 86%);
  margin: 34px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.65;
}

.primary-action {
  display: inline-flex;
  min-width: 250px;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 0 24px;
  color: #061421;
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.primary-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,.3);
}

.selector__stage {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 63%;
  width: min(56vw, 1040px);
  height: min(68vh, 760px);
  transform: translate(-50%, -43%);
}

.selector__ghost {
  position: absolute;
  top: 48%;
  left: 50%;
  margin: 0;
  color: rgba(255,255,255,.08);
  font-size: clamp(110px, 15vw, 300px);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .7;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.selector__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.21);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.selector__orbit--one {
  width: min(50vw, 680px);
  animation: orbit 18s linear infinite;
}

.selector__orbit--two {
  width: min(37vw, 500px);
  border-style: dashed;
  animation: orbitReverse 25s linear infinite;
}

.selector__orbit::after {
  position: absolute;
  top: 12%;
  left: 11%;
  width: 10px;
  aspect-ratio: 1;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--accent);
}

@keyframes orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.can-choice {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  height: 72%;
  place-items: center;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .85s var(--ease), opacity .6s, filter .6s;
}

.can-choice img {
  width: auto;
  height: 82%;
  filter: drop-shadow(0 36px 30px rgba(0,0,0,.38));
  transition: transform .55s var(--ease), filter .55s;
  pointer-events: none;
}

.can-choice span {
  position: absolute;
  bottom: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.28);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
}

.can-choice.is-selected {
  z-index: 3;
  transform: translate(-50%, -50%) scale(1.18);
}

.can-choice:not(.is-selected) {
  z-index: 1;
  opacity: .56;
  filter: saturate(.6) brightness(.8);
}

.can-choice[data-slot="-1"] {
  transform: translate(calc(-50% - 16vw), -45%) scale(.67) rotate(-9deg);
}

.can-choice[data-slot="1"] {
  transform: translate(calc(-50% + 16vw), -45%) scale(.67) rotate(9deg);
}

.can-choice:hover img {
  transform: translateY(-10px);
  filter: drop-shadow(0 48px 38px rgba(0,0,0,.45));
}

.can-choice:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 8px;
}

.can-choice:focus-visible span,
.can-choice:hover span,
.can-choice.is-selected span {
  opacity: 1;
  transform: translateY(0);
}

.selector__fruit-field,
.journey__fruit-field,
.final-cta__fruit-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.fruit-piece {
  position: absolute;
  top: var(--piece-y);
  left: var(--piece-x);
  width: min(var(--piece-size), 270px);
  height: auto;
  filter: drop-shadow(0 26px 28px rgba(0,0,0,.38));
  transform: translate(-50%, -50%) rotate(var(--piece-rotate));
  transform-origin: 50% 50%;
  will-change: transform;
}

.selector__fruit-field .fruit-piece {
  z-index: 1;
  opacity: .72;
  animation: selectorFruitDrift 7.6s ease-in-out var(--piece-delay) infinite alternate;
}

.selector__fruit-field .fruit-piece:nth-child(3n) { opacity: .4; }
.selector__fruit-field .fruit-piece:nth-child(4n) { filter: blur(.45px) drop-shadow(0 26px 28px rgba(0,0,0,.38)); }

@keyframes selectorFruitDrift {
  from {
    transform: translate3d(-50%, -50%, 0) rotate(var(--piece-rotate)) scale(.96);
  }
  to {
    transform: translate3d(calc(-50% + 19px), calc(-50% - 24px), 0) rotate(calc(var(--piece-rotate) + 9deg)) scale(1.045);
  }
}

.can-choice.is-selected img {
  animation: canFloat 4.8s ease-in-out infinite alternate;
}

@keyframes canFloat {
  to { transform: translateY(-8px) rotate(1.5deg); }
}

.selector__spec {
  position: absolute;
  z-index: 6;
  right: clamp(24px, 4.6vw, 86px);
  bottom: 112px;
  width: min(250px, 22vw);
  padding-left: 18px;
  border-left: 1px solid var(--accent);
}

.selector__spec p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.55;
  text-transform: uppercase;
}

.selector__spec div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 10px 0;
}

.selector__spec strong {
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
}

.selector__spec span {
  font-size: 14px;
  font-weight: 800;
}

.selector__tabs {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 76px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
}

.selector__tabs button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,.55);
  background: rgba(3,12,22,.24);
  border-right: 1px solid rgba(255,255,255,.14);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .3s, background .3s;
}

.selector__tabs button::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .45s var(--ease);
}

.selector__tabs button.is-selected,
.selector__tabs button:hover {
  color: #fff;
  background: rgba(3,12,22,.5);
}

.selector__tabs button.is-selected::before {
  transform: scaleX(1);
}

.selector__tabs span {
  color: var(--accent);
}

.journey {
  position: relative;
  height: 520vh;
  background: var(--world-deep);
}

.journey__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  --jp: 0;
  --can-x: 18vw;
  --can-y: 3vh;
  --can-s: 1;
  --can-r: -3deg;
  --vapor-opacity: 0;
  --bubble-opacity: 0;
  --liquid-opacity: 0;
  --liquid-dash: 1;
  --tab-burst: 0;
}

.journey__world,
.journey__wash,
.journey__grid {
  position: absolute;
  inset: 0;
}

.journey__world {
  z-index: -5;
  background-image: var(--world-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
}

.journey__wash {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(2,10,20,.78), rgba(2,10,20,.1) 52%, rgba(2,10,20,.62)),
    linear-gradient(0deg, rgba(2,10,20,.82), transparent 48%, rgba(2,10,20,.18));
}

.journey__word {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  margin: 0;
  color: rgba(255,255,255,.105);
  font-size: clamp(130px, 22vw, 440px);
  font-weight: 800;
  letter-spacing: -.1em;
  line-height: .7;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.journey__fruit-field .fruit-piece {
  z-index: 1;
  opacity: .72;
}

.journey__fruit-field .fruit-piece:nth-child(4n) { opacity: .42; }

.journey__fruit-field .fruit-piece:nth-child(3n) {
  filter: blur(.65px) drop-shadow(0 34px 38px rgba(0,0,0,.44));
}

.journey__liquid {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: var(--liquid-opacity);
  pointer-events: none;
  filter: drop-shadow(0 5px 14px rgba(0,0,0,.26)) drop-shadow(0 0 10px color-mix(in srgb, var(--liquid) 32%, transparent));
}

.journey__liquid svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.journey__liquid path {
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: var(--liquid-dash);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.journey__liquid-body {
  stroke: color-mix(in srgb, var(--liquid) 68%, rgba(255,255,255,.12));
  stroke-width: 18px;
  filter: url("#liquid-wobble");
}

.journey__liquid-shine {
  stroke: rgba(255,255,255,.64);
  stroke-width: 2px;
  transform: translateX(-3px);
}

.journey__liquid-drop {
  fill: color-mix(in srgb, var(--liquid) 76%, rgba(255,255,255,.15));
  opacity: var(--liquid-opacity);
  filter: drop-shadow(0 3px 5px rgba(0,0,0,.28));
}

.journey__liquid-drop--two { animation: liquidDropPulse 1.5s ease-in-out infinite alternate; }
.journey__liquid-drop--three { animation: liquidDropPulse 2.1s ease-in-out -.8s infinite alternate; }

@keyframes liquidDropPulse {
  to { opacity: .25; transform: translateY(16px) scale(.68); }
}

.journey__can {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: clamp(140px, 14vw, 270px);
  height: 66vh;
  transform: translate(calc(-50% + var(--can-x)), calc(-50% + var(--can-y))) scale(var(--can-s)) rotate(var(--can-r));
  transform-origin: 50% 60%;
  will-change: transform;
}

.journey__can img {
  position: relative;
  z-index: 2;
  width: auto;
  height: 100%;
  margin: auto;
  filter: drop-shadow(0 40px 36px rgba(0,0,0,.5));
}

.journey__condensation {
  position: absolute;
  z-index: 3;
  top: 7%;
  left: 50%;
  width: 51%;
  height: 86%;
  opacity: .62;
  background:
    radial-gradient(circle at 22% 13%, rgba(255,255,255,.9) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 71% 22%, rgba(255,255,255,.76) 0 1.6px, transparent 2.2px),
    radial-gradient(circle at 33% 43%, rgba(255,255,255,.72) 0 2px, transparent 2.7px),
    radial-gradient(circle at 68% 58%, rgba(255,255,255,.82) 0 1.2px, transparent 2px),
    radial-gradient(circle at 28% 79%, rgba(255,255,255,.7) 0 1.7px, transparent 2.5px);
  background-size: 38px 46px, 51px 62px, 67px 73px, 47px 58px, 59px 81px;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-50%);
}

.journey__tab-ring {
  position: absolute;
  z-index: 5;
  top: 1.5%;
  left: 50%;
  width: 21%;
  aspect-ratio: 1;
  opacity: var(--tab-burst);
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50%;
  box-shadow: 0 0 34px var(--liquid), inset 0 0 22px rgba(255,255,255,.7);
  transform: translate(-50%, -50%) scale(1.05);
}

.journey__vapor {
  position: absolute;
  z-index: 5;
  top: -9%;
  left: 50%;
  width: 28px;
  height: 112px;
  opacity: var(--vapor-opacity);
  border-left: 4px solid rgba(255,255,255,.78);
  border-radius: 50%;
  filter: blur(5px);
  transform-origin: bottom;
  animation: vaporLift 2.5s ease-in-out infinite;
}

.journey__vapor--two {
  margin-left: 12px;
  height: 88px;
  animation-delay: -.8s;
}

.journey__vapor--three {
  margin-left: -15px;
  height: 72px;
  animation-delay: -1.55s;
}

@keyframes vaporLift {
  0% { transform: translate(-50%, 24px) scaleX(.7) rotate(-7deg); }
  50% { transform: translate(-20%, -12px) scaleX(1.3) rotate(8deg); }
  100% { transform: translate(-75%, -38px) scaleX(.55) rotate(-12deg); }
}

.journey__bubble {
  position: absolute;
  z-index: 5;
  bottom: 16%;
  left: 50%;
  width: 13px;
  aspect-ratio: 1;
  opacity: var(--bubble-opacity);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 50%;
  box-shadow: inset -2px -2px 4px rgba(255,255,255,.3), 0 0 12px color-mix(in srgb, var(--liquid) 45%, transparent);
  animation: bubbleRise 3.2s ease-in infinite;
}

.journey__bubble--one { margin-left: -82px; animation-delay: -.3s; }
.journey__bubble--two { margin-left: 67px; width: 8px; animation-delay: -1.1s; }
.journey__bubble--three { margin-left: -49px; width: 7px; animation-delay: -2s; }
.journey__bubble--four { margin-left: 92px; width: 17px; animation-delay: -2.55s; }

@keyframes bubbleRise {
  0% { transform: translate3d(0, 16px, 0) scale(.45); }
  70% { opacity: var(--bubble-opacity); }
  100% { opacity: 0; transform: translate3d(13px, -49vh, 0) scale(1.15); }
}

.journey__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 145%;
  aspect-ratio: 1;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 38%, transparent), transparent 68%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.journey__shadow {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: 150%;
  height: 9%;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
  filter: blur(16px);
  transform: translateX(-50%);
}

.journey__chapter {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: min(40vw, 650px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 30px));
  transition: opacity .25s linear;
}

.journey__chapter.is-active {
  pointer-events: auto;
}

.journey__chapter--taste,
.journey__chapter--cold {
  left: clamp(24px, 5vw, 96px);
}

.journey__chapter--formula {
  right: clamp(24px, 5vw, 96px);
}

.journey__chapter--world {
  top: 48%;
  left: 50%;
  width: min(760px, 72vw);
  text-align: center;
  transform: translate(-50%, calc(-50% + 30px));
}

.journey__chapter p {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.journey__chapter h2 {
  font-size: clamp(58px, 6.4vw, 128px);
}

.journey__chapter > span {
  display: block;
  width: min(420px, 90%);
  margin-top: 28px;
  color: rgba(255,255,255,.74);
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.65;
}

.journey__chapter a {
  display: inline-flex;
  gap: 24px;
  margin-top: 30px;
  padding: 17px 22px;
  color: #071624;
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.journey__telemetry {
  position: absolute;
  z-index: 7;
  top: 28px;
  right: 5vw;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.65);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.journey__telemetry i {
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.2);
}

.journey__telemetry b {
  color: var(--accent);
}

.journey__progress {
  position: absolute;
  z-index: 7;
  right: 4.2vw;
  bottom: 36px;
  left: 4.2vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.journey__progress button {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 11px;
  padding: 0 18px;
  color: rgba(255,255,255,.5);
  background: rgba(2,10,20,.3);
  border-top: 1px solid rgba(255,255,255,.22);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .3s, background .3s;
}

.journey__progress button::before {
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.journey__progress button.is-active {
  color: #fff;
  background: rgba(2,10,20,.62);
}

.journey__progress button.is-active::before {
  transform: scaleX(1);
}

.journey__progress span {
  color: var(--accent);
}

.editions {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 190px) clamp(24px, 5vw, 96px);
  color: #071624;
  background: var(--paper);
}

.editions__liquid-seam {
  position: absolute;
  z-index: 0;
  top: -16px;
  right: 0;
  left: 0;
  height: 92px;
  color: var(--liquid);
  pointer-events: none;
}

.editions__liquid-seam::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .86;
  background:
    linear-gradient(90deg, transparent 5%, currentColor 23%, color-mix(in srgb, currentColor 65%, #fff) 51%, currentColor 76%, transparent 96%);
  clip-path: polygon(0 9%, 14% 14%, 27% 7%, 41% 18%, 56% 5%, 73% 16%, 87% 8%, 100% 13%, 100% 25%, 86% 21%, 70% 29%, 54% 18%, 39% 31%, 25% 19%, 11% 27%, 0 20%);
  filter: drop-shadow(0 9px 12px color-mix(in srgb, currentColor 32%, transparent));
}

.editions__liquid-seam span {
  position: absolute;
  top: 18px;
  width: 8px;
  aspect-ratio: 1;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 15px color-mix(in srgb, currentColor 55%, transparent);
  animation: seamDrop 3.8s ease-in-out infinite;
}

.editions__liquid-seam span:nth-child(1) { left: 28%; animation-delay: -.6s; }
.editions__liquid-seam span:nth-child(2) { left: 57%; width: 12px; animation-delay: -1.8s; }
.editions__liquid-seam span:nth-child(3) { left: 81%; width: 6px; animation-delay: -2.7s; }

@keyframes seamDrop {
  0%, 38% { opacity: 0; transform: translateY(-8px) scale(.5); }
  50% { opacity: .8; }
  100% { opacity: 0; transform: translateY(54px) scale(1.1); }
}

.editions > :not(.editions__liquid-seam) {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: clamp(60px, 7vw, 120px);
}

.section-heading .eyebrow,
.formula .eyebrow {
  color: var(--world);
}

.section-heading h2,
.formula h2 {
  font-size: clamp(64px, 7vw, 135px);
  color: #071624;
}

.section-heading h2 em,
.formula h2 em {
  color: var(--world);
}

.section-heading > p {
  margin: 0 0 12px;
  color: #56616b;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.7;
}

.edition-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.edition-panel {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  padding: 28px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}

.edition-panel::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.22), transparent 42%);
  transition: transform .65s var(--ease);
}

.edition-panel--lime { background: #a9d500; color: #071624; }
.edition-panel--blue { background: #0761c8; }
.edition-panel--red { background: #ed2539; }

.edition-panel > span,
.edition-panel strong,
.edition-panel small {
  position: relative;
  z-index: 2;
  display: block;
}

.edition-panel > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.edition-panel img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: auto;
  height: 64%;
  filter: drop-shadow(0 38px 25px rgba(0,0,0,.28));
  transform: translate(-50%, -50%) rotate(-2deg);
  transition: transform .65s var(--ease);
}

.edition-panel strong {
  position: absolute;
  right: 28px;
  bottom: 48px;
  left: 28px;
  font-size: clamp(30px, 2.5vw, 48px);
  font-weight: 800;
  letter-spacing: -.05em;
}

.edition-panel small {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.edition-panel i {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
  transition: color .3s, background .3s, transform .3s;
}

.edition-panel:hover img {
  transform: translate(-50%, -53%) rotate(4deg) scale(1.07);
}

.edition-panel:hover::after {
  transform: scale(1.18);
}

.edition-panel:hover i {
  color: #fff;
  background: #071624;
  transform: translate(3px, -3px);
}

.edition-panel.is-selected {
  outline: 4px solid #071624;
  outline-offset: -4px;
}

.formula {
  padding: clamp(90px, 10vw, 190px) clamp(24px, 5vw, 96px);
  background: #061421;
}

.formula__intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 7vw;
  margin-bottom: clamp(60px, 7vw, 110px);
}

.formula__intro > p:last-child {
  margin: 0 0 12px;
  color: rgba(255,255,255,.66);
  font-size: 19px;
  line-height: 1.65;
}

.formula__motion-stage {
  position: relative;
  min-height: min(66vh, 700px);
  margin: 0 0 clamp(60px, 8vw, 130px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.15);
  background:
    radial-gradient(circle at var(--motion-x, 22%) var(--motion-y, 25%), color-mix(in srgb, var(--accent) 34%, #061421) 0, #061421 38%, #020a13 82%);
  box-shadow: inset 0 0 120px rgba(0,0,0,.25);
}

.formula__motion-stage::before,
.formula__motion-stage::after {
  position: absolute;
  inset: -20%;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.formula__motion-stage::before {
  background:
    radial-gradient(circle at 72% 44%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(255,255,255,.08), transparent 24%);
  filter: blur(18px);
  opacity: .72;
  animation: formulaGlow 11s ease-in-out infinite alternate;
}

.formula__motion-stage::after {
  background: linear-gradient(118deg, transparent 22%, color-mix(in srgb, var(--accent) 10%, transparent) 48%, transparent 72%);
  transform: translate3d(calc((var(--formula-p, 0) - .5) * 18%), 0, 0) rotate(-7deg);
  transition: transform .18s linear;
}

.formula__motion-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .33;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  transform: perspective(680px) rotateX(56deg) scale(1.38) translateY(16%);
}

.formula__motion-route {
  position: absolute;
  top: 9%;
  bottom: 9%;
  left: 70%;
  width: 1px;
  z-index: 1;
  background: linear-gradient(transparent, color-mix(in srgb, var(--accent) 68%, #fff), transparent);
}

.formula__motion-route::before,
.formula__motion-route::after {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid color-mix(in srgb, var(--accent) 75%, #fff);
  border-radius: 50%;
  transform: translateX(-50%);
}

.formula__motion-route::before { top: 0; }
.formula__motion-route::after { bottom: 0; }

.formula__motion-route span {
  position: absolute;
  top: var(--motion-route-y, 12%);
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 18%, transparent), 0 0 28px var(--accent);
  transform: translate(-50%, -50%);
}

.formula__motion-route i {
  position: absolute;
  top: 0;
  left: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(32deg);
  animation: formulaOrbit 8s linear infinite;
}

.formula__motion-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(24px, 6vw, 96px);
  width: min(460px, 42%);
  transform: translateY(34px);
  will-change: opacity, transform;
}

.formula__motion-copy p {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .19em;
}

.formula__motion-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 88px);
  letter-spacing: -.065em;
  line-height: .9;
}

.formula__motion-copy h3 em {
  color: var(--accent);
}

.formula__motion-copy span {
  display: block;
  max-width: 360px;
  margin-top: 26px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.6;
}

.formula__motion-can {
  position: absolute;
  z-index: 3;
  top: var(--motion-can-y, -18%);
  left: 70%;
  width: auto;
  height: min(65vh, 620px);
  filter: drop-shadow(0 40px 28px rgba(0,0,0,.42));
  transform: translate(-50%, -50%) rotate(var(--motion-can-r, -10deg));
  will-change: top, transform;
}

.formula__motion-stamp {
  position: absolute;
  z-index: 4;
  right: clamp(22px, 4vw, 64px);
  bottom: 24px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.7;
  text-align: right;
}

@keyframes formulaGlow {
  from { transform: translate3d(-3%, -2%, 0) scale(.98); }
  to { transform: translate3d(4%, 3%, 0) scale(1.04); }
}

@keyframes formulaOrbit {
  to { transform: translate(-50%, -50%) rotate(392deg); }
}

@media (prefers-reduced-motion: reduce) {
  .formula__motion-stage::before,
  .formula__motion-route i {
    animation: none;
  }
}

.formula h2 {
  color: #fff;
}

.formula h2 em {
  color: var(--accent);
}

.formula__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.16);
}

.formula-card {
  min-height: 370px;
  padding: 34px;
  border-right: 1px solid rgba(255,255,255,.16);
  transition: color .4s, background .4s, transform .4s var(--ease);
}

.formula-card:last-child {
  border-right: 0;
}

.formula-card > span {
  display: block;
  margin-bottom: 60px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.formula-card strong {
  display: block;
  color: var(--accent);
  font-size: clamp(65px, 6vw, 116px);
  line-height: .8;
}

.formula-card strong small {
  margin-left: 7px;
  font-size: 10px;
  letter-spacing: .12em;
}

.formula-card h3 {
  margin: 45px 0 12px;
  font-size: 22px;
}

.formula-card p {
  max-width: 340px;
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.65;
}

.formula-card:hover {
  color: #061421;
  background: var(--accent);
  transform: translateY(-8px);
}

.formula-card:hover strong,
.formula-card:hover > span,
.formula-card:hover p {
  color: #061421;
}

.final-cta {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-content: center;
  padding: 100px 24px;
  text-align: center;
  isolation: isolate;
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--world) 85%, #fff 15%), var(--world-deep) 74%);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.final-cta::before { width: min(72vw, 1100px); }
.final-cta::after { width: min(49vw, 760px); }

.final-cta__can {
  position: absolute;
  z-index: -1;
  filter: drop-shadow(0 40px 40px rgba(0,0,0,.35));
}

.final-cta__fruit-field {
  z-index: -1;
}

.final-cta__fruit-field .fruit-piece {
  width: min(var(--piece-size), 290px);
  opacity: .72;
  animation: finalFruitDrift 8.8s ease-in-out var(--piece-delay) infinite alternate;
}

.final-cta__fruit-field .fruit-piece:nth-child(3n) {
  opacity: .42;
  filter: blur(.7px) drop-shadow(0 32px 34px rgba(0,0,0,.4));
}

@keyframes finalFruitDrift {
  from {
    transform: translate3d(-50%, -50%, 0) rotate(var(--piece-rotate)) scale(.9);
  }
  to {
    transform: translate3d(calc(-50% - 22px), calc(-50% + 18px), 0) rotate(calc(var(--piece-rotate) - 11deg)) scale(1.08);
  }
}

.final-cta__can {
  top: 50%;
  left: 50%;
  width: auto;
  height: min(66vh, 720px);
  opacity: .28;
  transform: translate(-50%, -48%) rotate(-7deg);
}

.final-cta > p {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(78px, 10vw, 195px);
}

.final-cta a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 270px;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  justify-self: center;
  margin-top: 40px;
  padding: 0 24px;
  color: #071624;
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  align-items: center;
  gap: 30px;
  padding: 42px 5vw;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  background: #030b12;
  font-size: 10px;
  line-height: 1.5;
}

.site-footer .brand {
  color: #fff;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer > a:last-child {
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root { --header-h: 78px; }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 22px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    position: absolute;
    top: 16px;
    right: 22px;
  }

  .selector {
    min-height: 980px;
  }

  .selector__copy {
    top: 135px;
    left: 50%;
    width: calc(100% - 42px);
    text-align: center;
    transform: translateX(-50%);
  }

  .selector h1 {
    font-size: clamp(55px, 13vw, 86px);
  }

  .selector__lede {
    margin-inline: auto;
  }

  .primary-action {
    min-width: min(310px, 100%);
  }

  .selector__stage {
    top: 61%;
    left: 50%;
    width: 100%;
    height: 430px;
    transform: translate(-50%, -50%);
  }

  .can-choice {
    height: 84%;
  }

  .can-choice.is-selected {
    transform: translate(-50%, -50%) scale(.92);
  }

  .can-choice[data-slot="-1"] {
    transform: translate(calc(-50% - 31vw), -45%) scale(.48) rotate(-9deg);
  }

  .can-choice[data-slot="1"] {
    transform: translate(calc(-50% + 31vw), -45%) scale(.48) rotate(9deg);
  }

  .selector__ghost {
    font-size: 26vw;
  }

  .selector__spec {
    display: none;
  }

  .selector__tabs {
    height: 68px;
  }

  .journey {
    height: 450vh;
  }

  .journey__chapter {
    top: 24%;
    left: 50% !important;
    right: auto !important;
    width: calc(100% - 42px);
    text-align: center;
    transform: translate(-50%, 24px);
  }

  .journey__chapter--world {
    top: 25%;
  }

  .journey__chapter h2 {
    font-size: clamp(50px, 12vw, 82px);
  }

  .journey__chapter > span {
    margin-inline: auto;
  }

  .journey__can {
    top: 65%;
    width: 120px;
    height: 46vh;
  }

  .journey__fruit-field .fruit-piece {
    max-width: 170px;
  }

  .journey__progress {
    right: 16px;
    bottom: 18px;
    left: 16px;
  }

  .journey__progress button {
    justify-content: center;
    padding: 0;
  }

  .journey__progress b {
    display: none;
  }

  .section-heading,
  .formula__intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .edition-panels {
    grid-template-columns: 1fr;
  }

  .edition-panel {
    min-height: 560px;
  }

  .formula__grid {
    grid-template-columns: 1fr;
  }

  .formula__motion-stage {
    min-height: 610px;
  }

  .formula__motion-copy {
    top: 16%;
    left: 26px;
    width: 46%;
  }

  .formula__motion-can {
    left: 75%;
    height: 54vh;
  }

  .formula__motion-route {
    left: 75%;
  }

  .formula-card {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .brand,
  .site-footer > a:last-child {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .selector {
    min-height: max(820px, 100svh);
  }

  .selector__copy {
    top: 112px;
  }

  .selector h1 {
    font-size: clamp(44px, 12vw, 58px);
    line-height: .88;
  }

  .selector__lede {
    margin-top: 21px;
    font-size: 14px;
  }

  .primary-action {
    min-height: 54px;
    margin-top: 21px;
  }

  .selector__stage {
    top: 64%;
    height: 330px;
  }

  .can-choice {
    width: 118px;
  }

  .can-choice span {
    display: none;
  }

  .selector__tabs button {
    gap: 7px;
    font-size: 8px;
    letter-spacing: .08em;
    overflow: hidden;
    white-space: nowrap;
  }

  .selector__fruit-field .fruit-piece {
    max-width: 118px;
  }

  .journey__telemetry {
    top: 16px;
    right: 18px;
    left: 18px;
  }

  .journey__chapter {
    top: 17%;
  }

  .journey__chapter p {
    margin-bottom: 13px;
  }

  .journey__chapter h2 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .journey__chapter > span {
    margin-top: 17px;
    font-size: 14px;
  }

  .journey__can {
    top: 64%;
    width: 96px;
    height: 39vh;
  }

  .journey__word {
    top: 62%;
    font-size: 34vw;
  }

  .journey__fruit-field .fruit-piece {
    max-width: 110px;
  }

  .editions,
  .formula {
    padding-inline: 18px;
  }

  .section-heading h2,
  .formula h2 {
    font-size: clamp(52px, 15vw, 74px);
  }

  .edition-panel {
    min-height: 480px;
  }

  .formula-card {
    padding: 26px;
  }

  .formula__motion-stage {
    min-height: 570px;
  }

  .formula__motion-copy {
    top: 12%;
    left: 22px;
    width: calc(100% - 44px);
  }

  .formula__motion-copy h3 {
    font-size: clamp(40px, 13vw, 64px);
  }

  .formula__motion-copy span {
    max-width: 270px;
    font-size: 13px;
  }

  .formula__motion-can {
    left: 72%;
    height: 47vh;
    opacity: .88;
  }

  .formula__motion-route {
    left: 72%;
  }

  .final-cta h2 {
    font-size: 19vw;
  }

  .final-cta__fruit-field .fruit-piece {
    max-width: 130px;
  }

  .final-cta__can {
    height: 48vh;
  }
}

@media (max-height: 720px) and (min-width: 981px) {
  :root { --header-h: 76px; }

  .selector h1 {
    font-size: clamp(58px, 6.3vw, 104px);
  }

  .selector__lede {
    margin-top: 20px;
  }

  .primary-action {
    min-height: 54px;
    margin-top: 18px;
  }

  .selector__stage {
    height: 71vh;
  }

  .selector__tabs {
    height: 58px;
  }

  .selector__spec {
    bottom: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }
  .journey {
    height: auto;
  }
  .journey__sticky {
    position: relative;
    min-height: 100svh;
  }
  .journey__chapter:not(.journey__chapter--world) {
    display: none;
  }
  .journey__chapter--world {
    opacity: 1 !important;
  }
}
