:root {
  --deep: #063f50;
  --deep-2: #052f3d;
  --abyss: #031f2a;
  --water: #13b8bd;
  --water-bright: #6ee1df;
  --foam: #effff8;
  --sand: #fff0c6;
  --sand-deep: #f5d88d;
  --coral: #ff765b;
  --coral-dark: #c94b3c;
  --gold: #ffc94d;
  --pink: #ff8fa5;
  --kelp: #77c97e;
  --ink: #103e4b;
  --muted: #4c7079;
  --white: #fffdf5;
  --shadow: 0 24px 80px rgba(2, 30, 41, .23);
  --heading: 'Fredoka', ui-rounded, 'Arial Rounded MT Bold', sans-serif;
  --body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--deep);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  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 {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 11px 16px;
  color: var(--deep);
  background: var(--white);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.dive-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, .1);
}

.dive-progress span {
  display: block;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 100%;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--pink));
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  width: 100%;
  padding: 18px 24px;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(3, 38, 49, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 10px 40px rgba(0, 20, 30, .18);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.nav-shell {
  width: min(1180px, 100%);
  min-height: 54px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 8px 24px rgba(0, 28, 40, .34);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 253, 245, .82);
  font-size: .91rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.nav-links > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 99px;
  background: var(--gold);
  transition: transform .2s ease;
}

.nav-links > a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-links > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 19px;
  color: var(--deep) !important;
  background: var(--gold);
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 25, 34, .2);
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 940px;
  padding: 148px 24px 134px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 17%, rgba(78, 229, 224, .24), transparent 31%),
    radial-gradient(circle at 11% 82%, rgba(22, 164, 171, .28), transparent 33%),
    linear-gradient(148deg, #0a6574 0%, var(--deep) 42%, var(--deep-2) 100%);
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 70%, transparent);
}

.hero-glow {
  position: absolute;
  top: -26%;
  left: 37%;
  z-index: -1;
  width: 58vw;
  height: 72vw;
  transform: rotate(15deg);
  background: linear-gradient(100deg, transparent 15%, rgba(224, 255, 244, .17) 49%, transparent 75%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(470px, 1.06fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-bottom: 32px;
}

.eyebrow,
.section-kicker,
.stop-kicker,
.safety-kicker {
  margin: 0;
  color: var(--coral-dark);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--water-bright);
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 201, 77, .15), 0 0 18px rgba(255, 201, 77, .7);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--heading);
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 9.5ch;
  margin: 24px 0 22px;
  font-size: clamp(3.7rem, 6.2vw, 6.3rem);
  font-weight: 700;
  line-height: .91;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lede {
  max-width: 560px;
  margin: 0;
  color: rgba(239, 255, 248, .82);
  font-size: clamp(1.05rem, 1.5vw, 1.23rem);
  font-weight: 600;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 18px;
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 34px rgba(2, 28, 38, .24);
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-3px) rotate(-.4deg);
  box-shadow: 0 20px 40px rgba(2, 28, 38, .3);
}

.button-coral {
  color: var(--white);
  background: linear-gradient(145deg, #cf4e41, #a93630);
}

.button-deep {
  color: var(--white);
  background: var(--deep);
}

.store-badge {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 17px;
  color: #fff;
  background: #071217;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0, 16, 23, .26);
}

.store-badge .apple {
  font-size: 2rem;
  line-height: 1;
}

.store-badge > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.store-badge small {
  color: rgba(255, 255, 255, .68);
  font-size: .64rem;
}

.store-badge strong {
  margin-top: 3px;
  font-size: 1.05rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 31px 0 0;
  padding: 0;
  color: rgba(255, 253, 245, .73);
  font-size: .84rem;
  font-weight: 800;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row li span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--deep);
  background: var(--water-bright);
  border-radius: 50%;
  font-size: .68rem;
}

.reef-stage {
  position: relative;
  width: min(100%, 590px);
  justify-self: end;
  padding: 22px;
  transform: translate3d(var(--stage-x, 0), var(--stage-y, 0), 0);
  transition: transform .25s ease-out;
}

.reef-window {
  position: relative;
  aspect-ratio: .78;
  overflow: hidden;
  border: 8px solid rgba(228, 255, 247, .92);
  border-radius: 48% 48% 42% 42% / 36% 36% 19% 19%;
  background: #21c3c9;
  box-shadow:
    inset 0 0 0 2px rgba(7, 86, 98, .22),
    inset 0 -30px 70px rgba(6, 51, 66, .16),
    0 44px 100px rgba(0, 22, 32, .42),
    0 0 0 16px rgba(89, 224, 218, .09);
  isolation: isolate;
}

.reef-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(1.04) contrast(1.02);
}

.reef-window::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, .2), transparent 20% 74%, rgba(0, 81, 95, .1)),
    linear-gradient(to bottom, transparent 60%, rgba(4, 60, 71, .12));
}

.sun-rays {
  position: absolute;
  top: -10%;
  left: 11%;
  z-index: -1;
  width: 78%;
  height: 56%;
  background: conic-gradient(from 176deg at 50% 0, transparent 0 8deg, rgba(255, 255, 235, .25) 8deg 14deg, transparent 14deg 24deg, rgba(255, 255, 235, .2) 24deg 29deg, transparent 29deg 40deg, rgba(255, 255, 235, .19) 40deg 46deg, transparent 46deg);
  filter: blur(7px);
  mix-blend-mode: screen;
}

.stage-ring {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(115, 232, 226, .22);
  border-radius: 50%;
  pointer-events: none;
}

.stage-ring::before,
.stage-ring::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 201, 77, .8);
}

.stage-ring-one {
  inset: -1% -8% 9% -8%;
  transform: rotate(-12deg);
}

.stage-ring-one::before { top: 18%; right: 2%; }
.stage-ring-one::after { bottom: 9%; left: 7%; }

.stage-ring-two {
  inset: 13% -15% -5% 5%;
  transform: rotate(18deg);
}

.stage-ring-two::before { top: 3%; left: 19%; }
.stage-ring-two::after { bottom: 18%; right: 0; }

.tako-character {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 11%;
  width: 62%;
  aspect-ratio: .92;
  transform: translateX(-50%);
  animation: tako-float 4.8s ease-in-out infinite;
  filter: drop-shadow(0 25px 22px rgba(4, 52, 62, .28));
}

.tako-mantle,
.tako-tentacles {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.tako-mantle {
  top: 0;
  z-index: 2;
  width: 88%;
}

.tako-tentacles {
  bottom: 1%;
  z-index: 1;
  width: 98%;
}

.reef-friend {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 13px 12px rgba(5, 61, 72, .18));
}

.friend-puffer {
  top: 18%;
  right: 6%;
  width: 22%;
  animation: friend-swim 6s ease-in-out infinite;
}

.friend-seal {
  top: 42%;
  left: 3%;
  width: 23%;
  transform: rotate(5deg);
  animation: friend-swim 6.8s .8s ease-in-out infinite reverse;
}

.signal-card {
  position: absolute;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  color: var(--deep);
  background: rgba(255, 253, 245, .9);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(5, 63, 73, .18);
  backdrop-filter: blur(10px);
}

.signal-card strong,
.signal-card small {
  display: block;
  line-height: 1.15;
}

.signal-card strong {
  font-family: var(--heading);
  font-size: .79rem;
}

.signal-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .59rem;
  font-weight: 800;
}

.signal-icon {
  color: var(--coral);
  font-size: 1rem;
  text-shadow: 0 0 0 rgba(255, 118, 91, .3);
  animation: signal-pulse 1.3s ease-in-out infinite;
}

.signal-wave {
  color: var(--water);
  font-family: var(--heading);
  font-size: 1.55rem;
  line-height: 1;
}

.signal-one { top: 15%; left: 2%; transform: rotate(-4deg); }
.signal-two { right: 2%; bottom: 14%; transform: rotate(3deg); }

.stage-caption {
  position: absolute;
  right: 5%;
  bottom: -20px;
  z-index: 20;
  margin: 0;
  padding: 10px 16px;
  color: var(--deep);
  background: var(--gold);
  border-radius: 99px 99px 9px 99px;
  font-family: var(--heading);
  font-size: .89rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 25, 34, .25);
}

.hero-bubbles .ambient-bubble {
  position: absolute;
  bottom: -80px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, .8), rgba(255, 255, 255, .08) 45%, transparent 70%);
  animation: bubble-rise var(--bubble-speed) linear infinite;
  animation-delay: var(--bubble-delay);
  opacity: .45;
}

.hero-floor {
  position: absolute;
  left: 0;
  bottom: -18px;
  z-index: 20;
  width: 100%;
  height: 84px;
  background: var(--sand);
  clip-path: polygon(0 48%, 8% 38%, 16% 49%, 25% 30%, 35% 44%, 44% 35%, 55% 52%, 65% 29%, 75% 46%, 87% 33%, 100% 50%, 100% 100%, 0 100%);
}

.hero-floor span {
  position: absolute;
  bottom: 48px;
  width: 20px;
  height: 62px;
  border-radius: 50% 50% 8px 8px;
  background: var(--kelp);
  transform-origin: bottom;
}

.hero-floor span::after {
  content: '';
  position: absolute;
  left: 12px;
  bottom: 5px;
  width: 17px;
  height: 43px;
  border-radius: 50% 50% 8px 8px;
  background: inherit;
  transform: rotate(24deg);
  transform-origin: bottom;
}

.hero-floor span:nth-child(1) { left: 4%; height: 50px; background: #ff947e; transform: rotate(-7deg); }
.hero-floor span:nth-child(2) { left: 14%; height: 78px; background: #8fce72; transform: rotate(7deg); }
.hero-floor span:nth-child(3) { right: 16%; height: 70px; background: #f8be45; transform: rotate(-9deg); }
.hero-floor span:nth-child(4) { right: 6%; height: 49px; background: #ff8fa5; transform: rotate(8deg); }
.hero-floor span:nth-child(5) { left: 48%; height: 42px; background: #75c9ae; transform: rotate(-3deg); }

/* Intro and headings */
.world-intro {
  padding: 102px 0 112px;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 190, 70, .18), transparent 25%),
    var(--sand);
}

.world-intro-grid {
  display: grid;
  grid-template-columns: .75fr 1.6fr;
  gap: 70px;
  align-items: start;
}

.chapter-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 7px 0 0;
  color: var(--coral-dark);
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.chapter-label span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50% 50% 50% 10%;
  font-family: var(--heading);
  letter-spacing: 0;
  box-shadow: 0 10px 20px rgba(201, 75, 60, .18);
}

.chapter-label.light {
  color: var(--water-bright);
}

.chapter-label.light span {
  color: var(--deep);
  background: var(--gold);
}

.world-intro h2,
.section-heading h2,
.games-heading h2,
.parent-copy h2,
.launch h2 {
  margin-bottom: 23px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 700;
  line-height: .98;
}

.world-intro h2 {
  max-width: 800px;
  color: var(--deep);
}

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

.world-intro-grid > div > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 700;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 78px;
  text-align: center;
}

.section-heading h2 {
  margin: 9px 0 18px;
  color: var(--deep);
}

.section-heading > p:last-child {
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

/* Journey */
.journey {
  position: relative;
  padding: 118px 0 142px;
  background: var(--foam);
}

.journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 7%;
  width: 24%;
  height: 100%;
  opacity: .37;
  background: radial-gradient(circle, rgba(20, 184, 189, .23) 0 3px, transparent 4px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, #000, transparent);
}

.journey-path {
  position: relative;
  display: grid;
  gap: 92px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-path::before {
  content: '';
  position: absolute;
  top: 4%;
  bottom: 4%;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to bottom, var(--water) 0 10px, transparent 10px 22px);
  opacity: .35;
}

.journey-stop {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, .83fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.journey-stop-reverse .stop-art { order: 2; }
.journey-stop-reverse .stop-copy { order: 1; }

.stop-copy {
  position: relative;
}

.stop-number {
  display: block;
  margin-bottom: 10px;
  color: rgba(13, 103, 116, .12);
  font-family: var(--heading);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: .8;
}

.stop-copy h3 {
  max-width: 520px;
  margin: 13px 0 15px;
  color: var(--deep);
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.02;
}

.stop-copy > p:last-child {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.stop-art {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 54px 54px 54px 18px;
  box-shadow: var(--shadow);
}

.journey-stop-reverse .stop-art {
  border-radius: 54px 54px 18px 54px;
}

.art-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 8;
  padding: 10px 15px;
  color: var(--deep);
  background: var(--gold);
  border-radius: 99px 99px 8px 99px;
  font-family: var(--heading);
  font-size: .83rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(6, 50, 61, .17);
}

.watch-art {
  background: #0c9fb6;
}

.mirror-art {
  background: #0d9eb5;
}

.step-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s var(--ease);
}

.watch-art::after,
.mirror-art::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 43, 55, .08), transparent 28%),
    linear-gradient(0deg, rgba(3, 43, 55, .18), transparent 30%);
}

@media (hover: hover) {
  .journey-stop:hover .step-image { transform: scale(1.025); }
}

.play-dot {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  padding-left: 4px;
  color: var(--deep);
  background: var(--gold);
  border: 5px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(4, 61, 70, .25);
  font-size: 1.15rem;
}

.play-art {
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, .4), transparent 23%),
    linear-gradient(160deg, #6ee1df, #13a8b3 60%, #087181);
}

.play-art::before {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -7%;
  height: 35%;
  background: var(--sand-deep);
  border-radius: 50% 50% 0 0;
}

.play-art img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 52%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 22px 18px rgba(0, 75, 86, .23));
  animation: puffer-puff 2.4s ease-in-out infinite;
}

.bubble-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 67%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(224, 255, 252, .66);
  border-radius: 50%;
  box-shadow: inset 0 0 38px rgba(238, 255, 250, .23), 0 0 24px rgba(196, 255, 245, .3);
  animation: shield-pulse 2.4s ease-in-out infinite;
}

.score-pearl {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--deep);
  background: var(--white);
  border-radius: 50%;
  font-family: var(--heading);
  font-size: .78rem;
  box-shadow: 0 10px 20px rgba(4, 68, 79, .2);
}

.pearl-one { top: 18%; right: 13%; }
.pearl-two { top: 32%; left: 12%; width: 34px; height: 34px; }

/* Games */
.games {
  position: relative;
  overflow: hidden;
  padding: 128px 0 145px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(49, 209, 206, .23), transparent 25%),
    linear-gradient(180deg, #0a6372, var(--deep) 45%, #073747);
}

.games::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .11;
  background: radial-gradient(circle, rgba(255, 255, 255, .8) 0 1px, transparent 2px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 80%, transparent);
}

.games-water {
  position: absolute;
  top: -90px;
  left: -10%;
  width: 120%;
  height: 230px;
  border-radius: 50%;
  border-top: 2px solid rgba(150, 239, 230, .16);
  border-bottom: 1px solid rgba(150, 239, 230, .09);
  transform: rotate(-2deg);
}

.games-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 62px;
}

.games-heading h2 {
  margin: 25px 0 0;
  max-width: 760px;
}

.games-heading > p {
  margin: 0 0 8px;
  color: rgba(239, 255, 248, .73);
  font-size: 1.08rem;
  font-weight: 700;
}

.game-deck {
  position: relative;
  display: grid;
  grid-auto-columns: minmax(285px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 2px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, .32) transparent;
}

.game-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 3px solid rgba(255, 255, 255, .5);
  border-radius: 36px 36px 36px 12px;
  box-shadow: 0 25px 60px rgba(1, 29, 40, .27);
  transition: transform .25s ease, box-shadow .25s ease;
}

.game-card:nth-child(even) {
  border-radius: 36px 36px 12px 36px;
}

.game-card:hover {
  transform: translateY(-8px) rotate(-.5deg);
  box-shadow: 0 34px 70px rgba(1, 25, 35, .35);
}

.game-card-yellow { color: #573d0c; background: linear-gradient(165deg, #ffe47d, #ffc347); }
.game-card-blue { color: #073f58; background: linear-gradient(165deg, #82def8, #4bb6e1); }
.game-card-pink { color: #5f2440; background: linear-gradient(165deg, #ffb8c7, #ff7893); }
.game-card-orange { color: #5a3212; background: linear-gradient(165deg, #ffcb69, #f89a2c); }

.game-card::before {
  content: '';
  position: absolute;
  inset: -10% -30% 47% -30%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.game-card-top {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 22px 0;
}

.game-index {
  font-family: var(--heading);
  font-size: .84rem;
  font-weight: 700;
  opacity: .55;
}

.skill-pill {
  padding: 7px 10px;
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.game-character {
  position: relative;
  z-index: 2;
  height: 288px;
  display: grid;
  place-items: center;
}

.game-character > img:not(.snappy-claw):not(.sub-propeller) {
  position: relative;
  z-index: 3;
  width: 84%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 22px 17px rgba(45, 43, 22, .2));
  transition: transform .3s ease;
}

.game-card:hover .game-character > img:not(.snappy-claw):not(.sub-propeller) {
  transform: scale(1.04) rotate(1deg);
}

.puffer-wrap > img { max-width: 235px; }
.seal-wrap > img { max-width: 255px; }
.snappy-wrap .snappy-body { max-width: 255px; transform: translateX(-8px); }
.submarine-wrap .sub-hull { max-width: 260px; transform: translateX(4px); }

.shield-orbit {
  position: absolute;
  width: 225px;
  height: 225px;
  border: 4px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, .24), 0 0 25px rgba(255, 255, 255, .2);
  animation: shield-pulse 2.4s ease-in-out infinite;
}

.speed-lines {
  position: absolute;
  left: 14px;
  width: 90px;
  height: 80px;
  border-top: 4px solid rgba(255, 255, 255, .6);
  border-bottom: 4px solid rgba(255, 255, 255, .42);
  transform: skewX(-24deg);
  box-shadow: 0 35px 0 -1px rgba(255, 255, 255, .26);
}

.snappy-claw {
  position: absolute;
  z-index: 4;
  top: 65px;
  right: 22px;
  width: 34%;
  transform: rotate(-13deg);
  filter: drop-shadow(0 10px 10px rgba(72, 27, 39, .16));
}

.beat {
  position: absolute;
  z-index: 5;
  color: rgba(255, 255, 255, .76);
  font-family: var(--heading);
  font-size: 2.2rem;
  animation: beat-pop 1.6s ease-in-out infinite;
}

.beat-one { top: 35px; left: 35px; }
.beat-two { top: 20px; right: 28px; animation-delay: .5s; }

.sub-propeller {
  position: absolute;
  z-index: 2;
  left: 10px;
  width: 31%;
  animation: propeller 1.8s linear infinite;
}

.sub-bubbles {
  position: absolute;
  z-index: 5;
  top: 30px;
  right: 20px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--heading);
  font-size: 1.7rem;
}

.game-copy {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .32) 22%);
}

.game-copy h3 {
  margin: 0 0 6px;
  font-size: 1.65rem;
  line-height: 1;
}

.game-copy p {
  margin: 0;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.45;
  opacity: .8;
}

.swipe-note {
  display: none;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .65);
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
}

/* Parent cove */
.parents {
  padding: 122px 0;
  background: var(--sand);
}

.parent-cove {
  position: relative;
  min-height: 750px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .78fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: clamp(50px, 7vw, 92px);
  color: var(--white);
  border: 8px solid rgba(255, 255, 255, .72);
  border-radius: 66px 66px 20px 66px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.cove-background,
.cove-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cove-background {
  z-index: -3;
  object-fit: cover;
  object-position: center 50%;
}

.cove-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 42, 53, .91), rgba(5, 65, 77, .56) 55%, rgba(6, 60, 70, .28)),
    linear-gradient(to top, rgba(3, 39, 49, .45), transparent 60%);
}

.parent-copy h2 {
  margin: 28px 0 21px;
  max-width: 650px;
}

.parent-copy > p:not(.chapter-label) {
  max-width: 580px;
  margin: 0;
  color: rgba(239, 255, 248, .8);
  font-size: 1.1rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--gold);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.safety-shell {
  position: relative;
  padding: 34px 30px 28px;
  color: var(--deep);
  background: rgba(255, 253, 245, .94);
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 34px 34px 34px 11px;
  box-shadow: 0 24px 60px rgba(2, 33, 42, .32);
  backdrop-filter: blur(15px);
}

.shell-lock {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border: 5px solid var(--white);
  border-radius: 50% 50% 12px 50%;
  box-shadow: 0 12px 28px rgba(4, 45, 55, .24);
}

.shell-lock::before {
  content: '';
  position: absolute;
  top: 13px;
  width: 19px;
  height: 18px;
  border: 4px solid var(--deep);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.shell-lock span {
  width: 27px;
  height: 22px;
  margin-top: 12px;
  background: var(--deep);
  border-radius: 5px;
}

.safety-kicker {
  color: var(--coral-dark);
}

.safety-shell ul {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.safety-shell li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(9, 78, 91, .12);
}

.safety-shell li > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--deep);
  background: #a9e4bd;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}

.safety-shell strong,
.safety-shell small {
  display: block;
  line-height: 1.3;
}

.safety-shell strong {
  font-family: var(--heading);
  font-size: 1rem;
}

.safety-shell small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

/* Launch */
.launch {
  position: relative;
  overflow: hidden;
  padding: 118px 0 128px;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, .35), transparent 24%),
    linear-gradient(145deg, #79e0da, #3ac8c7 50%, #18a9b0);
}

.launch::before {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -115px;
  height: 210px;
  border-radius: 50% 50% 0 0;
  background: var(--sand);
}

.launch-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, .7fr);
  align-items: center;
  gap: 70px;
}

.launch-copy {
  position: relative;
  z-index: 3;
}

.launch h2 {
  max-width: 760px;
  margin: 12px 0 20px;
  color: var(--deep);
}

.launch-copy > p:not(.section-kicker) {
  max-width: 570px;
  margin: 0;
  color: #275d69;
  font-size: 1.12rem;
  font-weight: 800;
}

.launch-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 31px;
}

.launch-actions > span {
  color: #2c6670;
  font-size: .79rem;
  font-weight: 900;
}

.launch-mascot {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.launch-icon {
  position: relative;
  z-index: 3;
  width: min(340px, 80%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .75);
  border-radius: 30%;
  box-shadow: 0 38px 70px rgba(5, 74, 85, .28), 0 0 0 18px rgba(255, 255, 255, .1);
  transform: rotate(4deg);
  animation: icon-bob 5s ease-in-out infinite;
}

.launch-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-copy {
  position: absolute;
  z-index: 4;
  padding: 8px 13px;
  color: var(--deep);
  background: var(--white);
  border-radius: 99px;
  font-family: var(--heading);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  box-shadow: 0 12px 24px rgba(5, 76, 85, .18);
}

.orbit-copy-one { top: 10%; left: 4%; transform: rotate(-8deg); }
.orbit-copy-two { top: 28%; right: -2%; transform: rotate(7deg); }
.orbit-copy-three { bottom: 12%; left: 8%; transform: rotate(5deg); }

.launch-bubbles span {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}

.launch-bubbles span:nth-child(1) { top: 18%; left: 5%; width: 26px; height: 26px; }
.launch-bubbles span:nth-child(2) { top: 34%; left: 10%; width: 12px; height: 12px; }
.launch-bubbles span:nth-child(3) { top: 12%; right: 8%; width: 38px; height: 38px; }
.launch-bubbles span:nth-child(4) { bottom: 25%; right: 4%; width: 18px; height: 18px; }

/* Footer */
footer {
  position: relative;
  padding: 75px 0 38px;
  color: var(--white);
  background: var(--abyss);
}

.footer-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: .7fr 1fr .7fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 43px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-family: var(--heading);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.35;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 21px;
}

.footer-links a {
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  color: rgba(255, 255, 255, .43);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .74rem;
  font-weight: 700;
}

.footer-bottom p {
  max-width: 720px;
  margin: 0;
}

/* Reveal and motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reef-stage[data-reveal] {
  transform: translate3d(var(--stage-x, 0), calc(var(--stage-y, 0) + 24px), 0);
}

.js .reef-stage[data-reveal].is-visible {
  transform: translate3d(var(--stage-x, 0), var(--stage-y, 0), 0);
}

@keyframes tako-float {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-1deg); }
  50% { transform: translateX(-50%) translateY(-13px) rotate(1deg); }
}

@keyframes friend-swim {
  0%, 100% { translate: 0 0; rotate: -2deg; }
  50% { translate: 8px -11px; rotate: 3deg; }
}

@keyframes signal-pulse {
  50% { text-shadow: 0 0 0 9px rgba(255, 118, 91, 0); transform: scale(1.08); }
}

@keyframes bubble-rise {
  to { transform: translate3d(var(--bubble-drift), -115vh, 0); }
}

@keyframes puffer-puff {
  0%, 100% { transform: translate(-50%, -50%) scale(.96); }
  50% { transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes shield-pulse {
  0%, 100% { transform: scale(.96); opacity: .75; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes beat-pop {
  0%, 100% { transform: translateY(5px) rotate(-8deg); opacity: .45; }
  50% { transform: translateY(-7px) rotate(6deg); opacity: 1; }
}

@keyframes propeller {
  to { transform: rotateY(360deg); }
}

@keyframes icon-bob {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-13px) rotate(1deg); }
}

/* Responsive */
@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .94fr) minmax(390px, 1.06fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 6vw, 5.2rem);
  }

  .signal-card {
    transform: scale(.9);
  }

  .game-deck {
    grid-auto-columns: minmax(280px, 42%);
  }

  .parent-cove {
    gap: 40px;
    padding: 60px 48px;
  }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 84px; }

  .section-shell,
  .footer-shell { width: min(100% - 32px, 660px); }

  .site-header { padding: 13px 16px; }
  .site-header.is-scrolled { padding-block: 8px; }
  .brand { font-size: 1.25rem; }
  .brand img { width: 43px; height: 43px; border-radius: 12px; }

  .menu-button {
    display: block;
    position: relative;
    z-index: 4;
  }

  .nav-links {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    z-index: 3;
    display: grid;
    gap: 6px;
    padding: 78px 16px 18px;
    color: var(--white);
    background: rgba(3, 46, 58, .97);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 25px;
    box-shadow: 0 22px 60px rgba(0, 19, 28, .42);
    opacity: 0;
    transform: translateY(-12px) scale(.98);
    transform-origin: top;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 12px;
  }

  .nav-links a:hover { background: rgba(255, 255, 255, .07); }
  .nav-links > a::after { display: none; }
  .nav-cta { margin-top: 6px; justify-content: center; }

  .no-js .menu-button { display: none; }
  .no-js .nav-links {
    position: static;
    display: flex;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }
  .no-js .nav-links a:not(.nav-cta) { display: none; }

  .hero {
    padding: 126px 16px 120px;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy { padding-bottom: 0; }
  .eyebrow { justify-content: center; }
  .hero h1 { max-width: 9ch; margin-inline: auto; font-size: clamp(3.25rem, 13vw, 5.2rem); }
  .hero-lede { max-width: 620px; margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .reef-stage { width: min(100%, 540px); justify-self: center; }
  .reef-window { aspect-ratio: .88; }
  .tako-character { width: 57%; }
  .stage-caption { right: 8%; }

  .world-intro { padding: 88px 0 96px; }
  .world-intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .world-intro h2,
  .section-heading h2,
  .games-heading h2,
  .parent-copy h2,
  .launch h2 { font-size: clamp(2.7rem, 10vw, 4.3rem); }

  .journey { padding: 98px 0 112px; }
  .journey-path { gap: 78px; }
  .journey-path::before { left: 18px; transform: none; }
  .journey-stop { grid-template-columns: 1fr; gap: 35px; padding-left: 42px; }
  .journey-stop-reverse .stop-art,
  .journey-stop-reverse .stop-copy { order: initial; }
  .stop-art { min-height: 420px; }
  .stop-copy { max-width: 620px; }
  .stop-number { font-size: 4.6rem; }

  .games { padding: 105px 0 118px; }
  .games-heading { grid-template-columns: 1fr; gap: 20px; }
  .games-heading > p { max-width: 600px; }
  .game-deck { grid-auto-columns: minmax(280px, 76%); margin-right: -16px; padding-right: 16px; }
  .swipe-note { display: block; }

  .parents { padding: 90px 0; }
  .parent-cove {
    min-height: 920px;
    grid-template-columns: 1fr;
    align-content: center;
    padding: 55px 35px;
    border-radius: 48px 48px 16px 48px;
  }
  .cove-overlay {
    background: linear-gradient(180deg, rgba(3, 42, 53, .86), rgba(5, 65, 77, .63) 52%, rgba(4, 43, 53, .7));
  }
  .safety-shell { max-width: 520px; }

  .launch { padding: 96px 0 125px; }
  .launch-grid { grid-template-columns: 1fr; gap: 35px; text-align: center; }
  .launch-copy > p { margin-inline: auto !important; }
  .launch-actions { justify-content: center; }
  .launch-mascot { min-height: 410px; }

  .footer-top { grid-template-columns: 1fr; gap: 25px; text-align: center; }
  .footer-brand, .footer-links { justify-content: center; }
  .footer-bottom { display: grid; text-align: center; }
}

@media (max-width: 520px) {
  .hero { padding-inline: 12px; }
  .hero h1 { font-size: clamp(3rem, 14.5vw, 4.2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(100%, 330px); margin-inline: auto; }
  .button, .store-badge { width: 100%; }
  .store-badge { justify-content: center; }
  .trust-row { gap: 10px 14px; font-size: .74rem; }

  .reef-stage { padding: 13px; }
  .reef-window { border-width: 6px; border-radius: 47% 47% 38% 38% / 30% 30% 17% 17%; }
  .friend-puffer { width: 24%; right: 2%; }
  .friend-seal { width: 25%; left: 0; }
  .signal-card { display: none; }
  .stage-caption { right: 4%; bottom: -25px; font-size: .75rem; }

  .world-intro-grid > div > p,
  .section-heading > p:last-child,
  .games-heading > p,
  .parent-copy > p:not(.chapter-label),
  .launch-copy > p:not(.section-kicker) { font-size: 1rem; }

  .section-heading { margin-bottom: 52px; }
  .journey-stop { padding-left: 28px; }
  .journey-path::before { left: 5px; }
  .stop-art { min-height: 340px; border-width: 6px; border-radius: 38px 38px 38px 12px; }
  .journey-stop-reverse .stop-art { border-radius: 38px 38px 12px 38px; }
  .play-dot { top: 14px; left: 14px; width: 54px; height: 54px; }
  .stop-copy h3 { font-size: 2.1rem; }

  .game-deck { grid-auto-columns: 88%; }
  .game-card { min-height: 480px; }
  .game-character { height: 265px; }

  .parent-cove { min-height: 950px; padding: 52px 21px 34px; border-width: 6px; }
  .safety-shell { padding: 31px 20px 20px; }
  .shell-lock { right: 20px; }

  .launch-mascot { min-height: 330px; }
  .launch-icon { width: min(270px, 76%); border-width: 7px; }
  .orbit-copy-two { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-bubbles { display: none; }
  .reef-stage { transform: none !important; }
}
