:root {
  --sky: #28bdf5;
  --sky-soft: #8be0ff;
  --sea: #0789c8;
  --sea-deep: #03618f;
  --sand: #ffd977;
  --sand-soft: #fff1bd;
  --cream: #fff9e8;
  --ink: #111111;
  --white: #ffffff;
  --coral: #ff5b4f;
  --coral-dark: #c9322c;
  --gold: #ffc247;
  --mint: #4edbb2;
  --navy: #06344f;
  --shadow: 0 14px 0 rgba(17, 17, 17, 0.18);
  --hard-shadow: 7px 7px 0 var(--ink);
  --radius: 8px;
  --font-display: "Bungee", Impact, system-ui, sans-serif;
  --font-heading: "Baloo 2", system-ui, sans-serif;
  --font-accent: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --container: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --header: 74px;
  --ease-pop: cubic-bezier(.22, 1.46, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(57, 189, 250, .38), rgba(255, 217, 119, .2) 58%, rgba(255, 249, 232, .92)),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, .025) 0 1px, transparent 1px 26px);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--coral);
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-accent);
  transition: transform .2s ease;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: grid;
  place-items: center;
  transition: transform .35s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 4px 0 rgba(17, 17, 17, .12);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(calc(100% - 28px), 1180px);
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 6px 6px 12px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 5px 0 rgba(17, 17, 17, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 16%;
  background: var(--sky);
  animation: brand-bop 4.8s ease-in-out infinite;
}

.brand__text {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.4vw, 1.18rem);
  line-height: 1;
  letter-spacing: 0;
}

@keyframes brand-bop {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-3px) rotate(3deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: .94rem;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 4px;
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 0 var(--ink);
  transform: translateY(0);
  transition: transform .18s var(--ease-pop), box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 10px 0 var(--ink);
}

.button:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--ink);
}

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

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

.button--with-icon {
  gap: 10px;
}

.button--with-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.button--small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: .9rem;
  box-shadow: 0 4px 0 var(--ink);
}

.button--pump {
  margin-top: 26px;
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 7px 0 var(--ink);
  animation: pump-cta 2.8s ease-in-out infinite;
}

.button--pump:hover {
  animation-play-state: paused;
}

@keyframes pump-cta {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
}

.menu-toggle span {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 100px var(--pad) 40px;
  background:
    linear-gradient(180deg, rgba(57, 189, 250, .96), rgba(255, 217, 119, .96)),
    var(--sky);
  transform: translateY(-110%);
  transition: transform .48s var(--ease-pop);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a:not(.button) {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 3rem);
  color: var(--white);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 rgba(17, 17, 17, .16);
}

.hero {
  position: relative;
  min-height: clamp(680px, 100svh, 920px);
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  background: linear-gradient(180deg, #28bdf5 0%, #27b9ef 58%, #126c8e 100%);
}

.hero__mascot-card {
  position: absolute;
  z-index: 2;
  right: clamp(-70px, -1.2vw, -20px);
  top: clamp(70px, 10vh, 104px);
  width: clamp(560px, 55vw, 900px);
  aspect-ratio: 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.hero__mascot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  mask-composite: intersect;
  animation: hero-mascot-float 4.8s ease-in-out infinite;
}

@keyframes hero-mascot-float {
  0%, 100% { transform: translateY(0) rotate(.8deg); }
  50% { transform: translateY(-16px) rotate(-.8deg); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(3, 52, 79, .58) 42%, rgba(3, 52, 79, .82));
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(640px, 100%);
  padding: 0 var(--pad) 104px;
  color: var(--white);
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 13px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-accent);
  font-weight: 800;
  line-height: 1;
  box-shadow: 4px 4px 0 var(--ink);
}

.kicker--pump {
  gap: 9px;
}

.kicker--pump img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  transform: rotate(-12deg);
  animation: pump-icon-pop 2.6s ease-in-out infinite;
}

@keyframes pump-icon-pop {
  0%, 100% { transform: translateY(0) rotate(-12deg) scale(1); }
  50% { transform: translateY(-3px) rotate(9deg) scale(1.12); }
}

.eyebrow--light {
  background: var(--white);
}

.hero__title,
.section-head h2,
.video-copy h2,
.copy-block h2,
.community__copy h2 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  line-height: .98;
  letter-spacing: 0;
}

.hero__title {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  max-width: 100%;
  font-size: clamp(2.7rem, 6.2vw, 5.8rem);
  color: var(--white);
  -webkit-text-stroke: clamp(2px, .38vw, 5px) var(--ink);
  paint-order: stroke fill;
  text-shadow: 4px 5px 0 rgba(4, 82, 122, .32);
}

.hero__title span {
  display: inline-block;
  transform-origin: 50% 78%;
  animation: title-letter-wave 2.15s ease-in-out infinite;
  will-change: transform;
}

.hero__title span:nth-child(2) { animation-delay: .11s; }
.hero__title span:nth-child(3) { animation-delay: .22s; }
.hero__title span:nth-child(4) { animation-delay: .33s; }
.hero__title span:nth-child(5) { animation-delay: .44s; }
.hero__title span:nth-child(6) { animation-delay: .55s; }
.hero__title span:nth-child(7) { animation-delay: .66s; }
.hero__title span:nth-child(8) { animation-delay: .77s; }

@keyframes title-letter-wave {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  18% { transform: translateY(-11px) rotate(-1.4deg) scaleY(1.04); }
  38% { transform: translateY(4px) rotate(.9deg) scaleY(.97); }
  58% { transform: translateY(-7px) rotate(-.8deg) scaleY(1.025); }
  78% { transform: translateY(2px) rotate(.45deg) scaleY(.99); }
}

.hero__subtitle {
  max-width: 520px;
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 3px 3px 0 rgba(17, 17, 17, .28);
}

.hero__subtitle p {
  margin: 0;
}

.hero__subtitle p + p {
  margin-top: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-launch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: min(100%, 330px);
  min-height: 54px;
  padding: 8px 22px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.8vw, 1.18rem);
  line-height: 1;
  transition: transform .18s var(--ease-pop), box-shadow .18s ease, background .18s ease;
}

.status-pill:hover {
  transform: translateY(-4px) rotate(-1deg);
  background: var(--sand-soft);
}

.status-pill:active {
  transform: translateY(2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.hero-socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-socials a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .18s var(--ease-pop), box-shadow .18s ease, background .18s ease;
}

.hero-socials a:hover {
  transform: translateY(-5px) rotate(5deg);
  background: var(--mint);
  box-shadow: 7px 8px 0 var(--ink);
}

.hero-socials a:nth-child(even):hover {
  transform: translateY(-5px) rotate(-5deg);
}

.hero-socials img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.sky-layer,
.motion-field,
.water-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--gold);
  clip-path: polygon(50% 0, 63% 36%, 100% 50%, 63% 64%, 50% 100%, 37% 64%, 0 50%, 37% 36%);
  animation: spark-pop 2.8s ease-in-out infinite;
}

.spark--one {
  left: 26%;
  top: 23%;
}

.spark--two {
  right: 22%;
  top: 16%;
  animation-delay: -.8s;
}

.spark--three {
  right: 11%;
  bottom: 31%;
  animation-delay: -1.4s;
}

@keyframes spark-pop {
  0%, 100% { transform: scale(.58) rotate(0deg); opacity: .25; }
  50% { transform: scale(1.24) rotate(24deg); opacity: 1; }
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  border-block: 4px solid var(--ink);
  background: var(--gold);
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: ticker-run 18s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding-inline: 28px;
  font-family: var(--font-display);
  font-size: clamp(.92rem, 1.8vw, 1.25rem);
  white-space: nowrap;
}

.ticker span::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 28px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
}

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

.section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 10vw, 128px);
  scroll-margin-top: 88px;
}

.section--sand {
  background:
    linear-gradient(180deg, var(--sand-soft), var(--sand)),
    var(--sand);
}

.section--blue {
  color: var(--white);
  background:
    linear-gradient(180deg, var(--sea), var(--sea-deep)),
    var(--sea);
}

.section--video {
  padding-block: clamp(82px, 9vw, 116px);
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 194, 71, .34), transparent 24%),
    linear-gradient(180deg, #24b8ee, #0575ad 58%, #044c75),
    var(--sea);
}

.section--cream {
  background: var(--cream);
}

.section--community {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--navy), var(--sea-deep) 48%, #0f8c8d),
    var(--navy);
}

.section-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head .eyebrow {
  margin-inline: auto;
}

.section-head h2,
.video-copy h2,
.copy-block h2,
.community__copy h2 {
  font-size: clamp(2.3rem, 5.6vw, 5.4rem);
  color: inherit;
  -webkit-text-stroke: clamp(1.5px, .25vw, 3px) var(--ink);
  paint-order: stroke fill;
  text-shadow: 6px 6px 0 rgba(17, 17, 17, .14);
}

.section-head p:not(.eyebrow),
.video-copy p,
.copy-block p,
.community__copy p {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  font-weight: 700;
}

.video-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 450px) minmax(500px, 650px);
  gap: clamp(34px, 4vw, 54px);
  align-items: center;
  justify-content: center;
}

.video-copy {
  max-width: 450px;
}

.video-copy .eyebrow {
  margin-bottom: 22px;
}

.video-copy h2 {
  max-width: 450px;
  margin-top: 0;
  font-size: clamp(2.8rem, 4.05vw, 4.25rem);
  line-height: .96;
  white-space: nowrap;
  text-shadow: 5px 5px 0 rgba(17, 17, 17, .14);
}

.video-copy p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 20px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
  text-shadow: 2px 2px 0 rgba(17, 17, 17, .16);
}

.video-frame {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 650px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--hard-shadow);
  transform-origin: center;
  animation: video-float 5.4s ease-in-out infinite;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 3px solid rgba(255, 255, 255, .42);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, .02), rgba(17, 17, 17, .36)),
    radial-gradient(circle at center, transparent 38%, rgba(17, 17, 17, .28));
  opacity: 1;
  pointer-events: none;
  transition: opacity .28s ease;
}

.video-frame.is-playing::after {
  opacity: .16;
}

.video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

.video-frame.has-started .video-poster {
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
}

@keyframes video-float {
  0%, 100% { transform: translateY(0) rotate(.18deg); }
  50% { transform: translateY(-8px) rotate(-.18deg); }
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink);
}

.video-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(72px, 9vw, 96px);
  height: clamp(72px, 9vw, 96px);
  display: grid;
  place-items: center;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 8px 0 var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .22s var(--ease-pop), box-shadow .22s ease, inset .22s ease, width .22s ease, height .22s ease;
}

.video-toggle:hover {
  transform: translate(-50%, -55%) scale(1.04);
  box-shadow: 0 12px 0 var(--ink);
}

.video-toggle:active {
  transform: translate(-50%, -45%);
  box-shadow: 0 4px 0 var(--ink);
}

.video-toggle__icon {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--white);
  filter: drop-shadow(3px 3px 0 rgba(17, 17, 17, .24));
}

.video-frame.is-playing .video-toggle {
  left: auto;
  top: auto;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-width: 4px;
  opacity: .92;
  transform: none;
  box-shadow: 0 5px 0 var(--ink);
}

.video-frame.is-playing .video-toggle:hover {
  transform: translateY(-4px) scale(1.03);
}

.video-frame.is-playing .video-toggle:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--ink);
}

.video-frame.is-playing .video-toggle__icon {
  width: 20px;
  height: 24px;
  margin-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 6px solid var(--white);
  border-right: 6px solid var(--white);
}

.split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(0, 1.05fr);
  gap: clamp(38px, 8vw, 96px);
  align-items: center;
}

.sticker-stack {
  position: relative;
  min-height: clamp(360px, 44vw, 540px);
  display: grid;
  place-items: center;
}

.mascot {
  user-select: none;
  will-change: transform;
}

.mascot--large {
  width: min(470px, 88vw);
  border: 4px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--sky);
  box-shadow: var(--hard-shadow);
  animation: mascot-float 4.4s ease-in-out infinite;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

.sticker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  animation: sticker-wiggle 3.8s ease-in-out infinite;
}

.sticker--top {
  top: 13%;
  right: 2%;
  color: var(--coral);
}

.sticker--bottom {
  left: 0;
  bottom: 13%;
  background: var(--mint);
  animation-delay: -1.4s;
}

@keyframes sticker-wiggle {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-10px); }
}

.copy-block {
  position: relative;
}

.copy-block h2 {
  font-size: clamp(2.65rem, 4.6vw, 4.55rem);
  line-height: .98;
}

.copy-block p {
  color: rgba(17, 17, 17, .82);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-stats div {
  min-width: 0;
  padding: 18px 12px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  text-align: center;
  animation: card-bob 5s ease-in-out infinite;
}

.mini-stats div:nth-child(2) {
  animation-delay: -.7s;
}

.mini-stats div:nth-child(3) {
  animation-delay: -1.4s;
}

.mini-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1;
  color: var(--coral);
}

.mini-stats span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-accent);
  font-weight: 800;
  line-height: 1.12;
}

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

.water-lines span {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 34px;
  border-top: 4px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  animation: water-slide 8s ease-in-out infinite;
}

.water-lines span:nth-child(1) {
  top: 17%;
}

.water-lines span:nth-child(2) {
  top: 51%;
  animation-delay: -2.2s;
}

.water-lines span:nth-child(3) {
  bottom: 11%;
  animation-delay: -4.4s;
}

@keyframes water-slide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(80px); }
}

.steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card,
.gallery-card,
.faq-item {
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--hard-shadow);
}

.step-card {
  position: relative;
  min-height: 340px;
  padding: 26px;
  overflow: hidden;
  animation: card-bob 5.6s ease-in-out infinite;
}

.step-card:nth-child(2) {
  animation-delay: -.8s;
}

.step-card:nth-child(3) {
  animation-delay: -1.6s;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 126px;
  aspect-ratio: 1;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--sand);
  animation: coin-roll 7s linear infinite;
}

.step-card > * {
  position: relative;
  z-index: 1;
}

@keyframes coin-roll {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.06rem;
  box-shadow: 4px 4px 0 var(--ink);
}

.step-card h3,
.gallery-card h3 {
  margin: 24px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: .95;
}

.step-card p,
.gallery-card p,
.faq-panel p {
  margin: 14px 0 0;
  font-weight: 700;
  line-height: 1.55;
  color: rgba(17, 17, 17, .72);
}

.step-card p {
  font-size: .98rem;
  line-height: 1.48;
}

.step-card p + p {
  margin-top: 10px;
}

.gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-card {
  padding: 14px 14px 22px;
  transition: transform .24s var(--ease-pop), box-shadow .24s ease;
}

.gallery-card:hover {
  transform: translateY(-10px) rotate(-1.2deg);
  box-shadow: 10px 13px 0 var(--ink);
}

.gallery-card:nth-child(even):hover {
  transform: translateY(-10px) rotate(1.2deg);
}

.gallery-card__art {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: end center;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-card__art::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -18%;
  height: 42%;
  border: 3px solid rgba(17, 17, 17, .2);
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, .32);
  animation: gallery-wave 4.8s ease-in-out infinite;
}

@keyframes gallery-wave {
  0%, 100% { transform: translateX(-16px); }
  50% { transform: translateX(16px); }
}

.gallery-card__art img {
  position: relative;
  z-index: 1;
  width: min(250px, 92%);
  margin-bottom: -42px;
  filter: drop-shadow(7px 9px 0 rgba(17, 17, 17, .18));
  animation: mascot-float 4.5s ease-in-out infinite;
}

.gallery-card:nth-child(2) img {
  animation-delay: -.9s;
}

.gallery-card:nth-child(3) img {
  animation-delay: -1.8s;
}

.gallery-card:nth-child(4) img {
  animation-delay: -2.7s;
}

.gallery-card__art--sky {
  background: linear-gradient(180deg, var(--sky-soft), var(--sky));
}

.gallery-card__art--sunset {
  background: linear-gradient(180deg, #ffb86b, #ff6f61);
}

.gallery-card__art--mint {
  background: linear-gradient(180deg, #92ffe2, var(--mint));
}

.gallery-card__art--night {
  background: linear-gradient(180deg, #29456b, #111827);
}

.gallery-card h3,
.gallery-card p {
  padding-inline: 8px;
}

.community__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .85fr);
  gap: clamp(40px, 8vw, 96px);
  align-items: center;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.social-grid a {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  min-height: 70px;
  padding: 14px;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-accent);
  font-weight: 800;
  transition: transform .18s var(--ease-pop), background .18s ease;
}

.social-grid img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.social-grid a:hover {
  transform: translateY(-6px) rotate(-1deg);
  background: var(--gold);
}

.community__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
}

.mascot--community {
  position: relative;
  z-index: 2;
  width: min(430px, 88vw);
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--sky);
  box-shadow: var(--hard-shadow);
  animation: mascot-float 4.2s ease-in-out infinite;
}

.community__image {
  position: relative;
  z-index: 2;
  width: min(540px, 92vw);
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--hard-shadow);
  animation: mascot-float 4.2s ease-in-out infinite;
}

.ring {
  position: absolute;
  border: 4px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  animation: ring-pulse 3s ease-out infinite;
}

.ring--one {
  width: 80%;
  aspect-ratio: 1;
}

.ring--two {
  width: 58%;
  aspect-ratio: 1;
  animation-delay: -1.4s;
}

@keyframes ring-pulse {
  0% { transform: scale(.7); opacity: .86; }
  100% { transform: scale(1.18); opacity: 0; }
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
}

.faq-trigger {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
}

.faq-trigger span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  transition: transform .2s var(--ease-pop);
}

.faq-item.is-open .faq-trigger span {
  transform: rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}

.faq-panel__inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: padding .32s ease;
}

.faq-panel p {
  margin: 0;
}

.faq-panel p + p {
  margin-top: 12px;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel__inner {
  padding: 0 22px 22px;
}

.footer {
  padding-block: 34px;
  border-top: 4px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer .brand__mark {
  border-color: var(--white);
  box-shadow: none;
}

.footer .brand__text {
  color: var(--white);
}

.footer p,
.footer span {
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .72);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.98);
  transition: opacity .72s ease, transform .72s var(--ease-pop);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.bubble-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.real-bubble {
  position: fixed;
  left: var(--x, 50vw);
  bottom: calc((var(--size, 18px) * -1) - 24px);
  pointer-events: auto;
  cursor: pointer;
  touch-action: manipulation;
  width: var(--size, 18px);
  height: var(--size, 18px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 27%, rgba(255, 255, 255, .98) 0 7%, rgba(255, 255, 255, .58) 8%, transparent 13%),
    radial-gradient(circle at 70% 73%, rgba(255, 255, 255, .34) 0 12%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .22), rgba(134, 229, 255, .2) 42%, rgba(255, 255, 255, .08) 61%, rgba(255, 255, 255, .34));
  box-shadow:
    inset 3px 3px 10px rgba(255, 255, 255, .66),
    inset -7px -9px 16px rgba(4, 88, 133, .24),
    0 0 22px rgba(255, 255, 255, .3);
  filter: blur(var(--blur, 0px));
  animation: realistic-bubble-rise var(--duration, 8s) cubic-bezier(.28, .62, .22, 1) forwards;
  will-change: transform, opacity;
}

.real-bubble::before {
  content: "";
  position: absolute;
  inset: 15% 18% auto auto;
  width: 32%;
  height: 18%;
  border-radius: 50%;
  border-top: 2px solid rgba(255, 255, 255, .86);
  transform: rotate(-24deg);
}

.bubble-pop {
  position: fixed;
  left: var(--pop-x, 50vw);
  top: var(--pop-y, 50vh);
  z-index: 4;
  width: var(--pop-size, 28px);
  height: var(--pop-size, 28px);
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .9) 0 8%, transparent 13%),
    radial-gradient(circle, rgba(255, 255, 255, .3), rgba(134, 229, 255, .12) 58%, transparent 70%);
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, .62),
    0 0 18px rgba(255, 255, 255, .4);
  transform: translate(-50%, -50%) scale(.75);
  animation: bubble-pop-shell .42s ease-out forwards;
}

.bubble-pop::before,
.bubble-pop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.bubble-pop::before {
  inset: -12%;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, .34);
  animation: bubble-pop-ring .42s ease-out forwards;
}

.bubble-pop::after {
  inset: -68%;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 255, 255, .95) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, .82) 0 2px, transparent 3px),
    radial-gradient(circle at 94% 55%, rgba(255, 255, 255, .75) 0 1.5px, transparent 3px),
    radial-gradient(circle at 68% 91%, rgba(255, 255, 255, .88) 0 2px, transparent 3px),
    radial-gradient(circle at 27% 90%, rgba(255, 255, 255, .74) 0 1.5px, transparent 3px),
    radial-gradient(circle at 6% 55%, rgba(255, 255, 255, .86) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .72) 0 1.5px, transparent 3px);
  transform: scale(.45) rotate(-8deg);
  animation: bubble-pop-spray .42s ease-out forwards;
}

@keyframes realistic-bubble-rise {
  0% { transform: translate3d(0, 0, 0) scale(.58); opacity: 0; }
  12% { opacity: var(--bubble-opacity, .74); }
  34% { transform: translate3d(calc(var(--drift, 0px) * .32), -31vh, 0) scale(.9); }
  67% {
    transform: translate3d(calc(var(--drift, 0px) * -.24), -72vh, 0) scale(1.03);
    opacity: calc(var(--bubble-opacity, .74) * .78);
  }
  100% { transform: translate3d(var(--drift, 0px), -116vh, 0) scale(1.16); opacity: 0; }
}

@keyframes bubble-pop-shell {
  0% { transform: translate(-50%, -50%) scale(.75); opacity: .92; }
  54% { transform: translate(-50%, -50%) scale(1.24); opacity: .5; }
  100% { transform: translate(-50%, -50%) scale(1.72); opacity: 0; }
}

@keyframes bubble-pop-ring {
  0% { transform: scale(.78); opacity: .9; }
  100% { transform: scale(1.85); opacity: 0; }
}

@keyframes bubble-pop-spray {
  0% { transform: scale(.45) rotate(-8deg); opacity: .92; }
  100% { transform: scale(1.45) rotate(18deg); opacity: 0; }
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .steps,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__mascot-card {
    right: clamp(-88px, -5vw, -34px);
    top: 104px;
    width: clamp(520px, 66vw, 720px);
  }

  .video-showcase,
  .split,
  .community__inner {
    grid-template-columns: 1fr;
  }

  .video-showcase {
    max-width: 820px;
    gap: 34px;
  }

  .video-copy,
  .copy-block,
  .community__copy {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
  }

  .video-copy .eyebrow,
  .copy-block .eyebrow,
  .community__copy .eyebrow {
    margin-inline: auto;
  }

  .video-copy h2,
  .video-copy p:not(.eyebrow) {
    max-width: 100%;
  }

  .video-frame {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
    --pad: 28px;
  }

  body {
    background: #21baf1;
  }

  body::before {
    background:
      linear-gradient(180deg, #21baf1 0%, #075b82 100%);
  }

  .section--video {
    padding-block: 58px 70px;
  }

  .site-header {
    position: absolute;
    top: 30px;
    left: 50%;
    right: auto;
    width: min(430px, calc(100% - 64px));
    height: auto;
    transform: translateX(-50%);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-shell {
    width: 100%;
    height: 68px;
    padding: 7px 8px 7px 10px;
    background: rgba(234, 250, 255, .86);
    box-shadow: 5px 6px 0 rgba(17, 17, 17, .18);
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__text {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    background: var(--gold);
  }

  .hero {
    width: 100%;
    min-height: 812px;
    margin: 0;
    border: 0;
    border-radius: 0;
    align-items: start;
    background:
      radial-gradient(circle at 42% 26%, rgba(255, 255, 255, .18), transparent 25%),
      linear-gradient(180deg, #21baf1 0%, #18aae0 54%, #075b82 100%);
    box-shadow: none;
  }

  .hero__mascot-card {
    right: -126px;
    top: 278px;
    width: 438px;
    opacity: .96;
  }

  .hero__content {
    width: 100%;
    padding: 132px var(--pad) 54px;
  }

  .kicker {
    min-height: 40px;
    padding: 8px 14px;
    font-size: .86rem;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .kicker--pump img {
    width: 22px;
    height: 22px;
  }

  .hero__title {
    margin-top: 36px;
    font-size: clamp(2.7rem, 13vw, 4rem);
    text-shadow: 3px 4px 0 rgba(4, 82, 122, .34);
  }

  .hero__subtitle {
    max-width: 280px;
    margin-top: 14px;
    font-size: 1.18rem;
    line-height: 1.12;
  }

  .hero__subtitle p + p {
    margin-top: 8px;
  }

  .hero__actions,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
    width: min(100%, 250px);
    margin-top: 92px;
  }

  .hero-launch {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100%, 250px);
    margin-top: 14px;
  }

  .status-pill {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    background: linear-gradient(180deg, var(--sand-soft), #fff5bf);
    font-size: .95rem;
    box-shadow: 4px 5px 0 var(--ink);
  }

  .hero-socials {
    justify-content: center;
    gap: 7px;
  }

  .hero-socials a {
    width: 44px;
    height: 44px;
    box-shadow: 4px 5px 0 var(--ink);
  }

  .hero-socials img {
    width: 22px;
    height: 22px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
  }

  .video-showcase {
    gap: 28px;
  }

  .video-copy h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
    line-height: .98;
    white-space: nowrap;
    text-shadow: 4px 4px 0 rgba(17, 17, 17, .14);
  }

  .video-copy p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .video-frame {
    border-width: 4px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .video-frame::before {
    inset: 8px;
    border-width: 2px;
  }

  .ticker {
    display: none;
  }

  .steps,
  .gallery-grid,
  .mini-stats,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 250px;
  }

  .gallery-card__art {
    min-height: 290px;
  }

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

  .footer .brand {
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .site-header {
    top: 30px;
    width: min(430px, calc(100% - 58px));
  }

  .hero {
    width: 100%;
    min-height: 812px;
    border-radius: 0;
  }

  .hero__mascot-card {
    right: -138px;
    top: 284px;
    width: 430px;
  }

  .hero__content {
    padding: 132px 28px 54px;
  }

  .hero__title {
    margin-top: 34px;
    font-size: clamp(2.55rem, 12.8vw, 3.3rem);
  }

  .hero__subtitle {
    max-width: 252px;
    font-size: 1.08rem;
  }

  .kicker,
  .eyebrow {
    font-size: .9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
