:root {
  --navy: #071d4c;
  --blue: #168ff4;
  --blue-deep: #086ac6;
  --ice: #eff9ff;
  --snow: #ffffff;
  --soft: #dff3ff;
  --muted: #60789f;
  --lime: #a8ff17;
  --glass: rgba(255, 255, 255, .18);
  --glass-border: rgba(255, 255, 255, .42);
  --shadow: 0 28px 70px rgba(18, 105, 184, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--ice);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
}

body {
  cursor: default;
}

a,
button {
  cursor: pointer;
}

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

button {
  border: 0;
  font: inherit;
}

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

.site-nav {
  position: fixed;
  z-index: 20;
  top: 22px;
  right: 28px;
  width: auto;
  min-height: 0;
  display: block;
  padding: 0;
}

.site-nav::after {
  content: none;
}

.nav-actions,
.movement-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 9px;
}

.pill {
  min-width: 104px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: white;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .36), 0 8px 20px rgba(5, 92, 172, .12);
  text-shadow: 0 2px 12px rgba(4, 51, 99, .28);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.pill:hover,
.pill:focus-visible,
.menu-button:hover,
.menu-button:focus-visible,
.join-button:hover,
.join-button:focus-visible {
  transform: translateY(-2px);
}

.pill-buy {
  min-width: 90px;
  border-color: rgba(168, 255, 23, .92);
  background: linear-gradient(180deg, #b8ff2f 0%, #9eff0f 100%);
  color: #08223f;
  text-shadow: none;
  box-shadow: 0 10px 28px rgba(155, 247, 30, .34), inset 0 1px 0 rgba(255, 255, 255, .55);
}

.pill-icon {
  min-width: 64px;
}

.menu-button {
  width: 56px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 12px 28px rgba(16, 93, 168, .24), inset 0 1px 0 rgba(255, 255, 255, .36);
  backdrop-filter: blur(14px);
  transition: transform .18s ease, background .18s ease;
}

.menu-button span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 2px 10px rgba(4, 51, 99, .28);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(240px, calc(100vw - 42px));
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 22px;
  background: rgba(41, 151, 236, .84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a,
.mobile-menu button {
  min-height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: white;
  font-weight: 900;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 620px;
  height: clamp(620px, 61vw, 680px);
  overflow: hidden;
  display: grid;
  place-items: start center;
  padding: 78px 24px 0;
  isolation: isolate;
}

.hero-bg,
.community-bg,
.movement-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  object-position: center center;
  z-index: -3;
}

.hero-frost {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 121, 222, .02) 0%, rgba(11, 121, 222, .02) 58%, rgba(9, 95, 181, .16) 100%),
    radial-gradient(circle at 89% 7%, rgba(255, 255, 255, .36), transparent 16%);
}

.hero-copy {
  width: min(920px, 92vw);
  margin-top: 24px;
  text-align: center;
  color: white;
}

.hero-buy {
  margin: 0 auto 16px;
}

.hero h1,
.journey h2,
.community h2,
.movement h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: .95;
}

.hero h1 {
  font-size: clamp(76px, 11.2vw, 156px);
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
  text-shadow:
    0 2px 0 rgba(255, 255, 255, .42),
    0 8px 20px rgba(7, 91, 176, .34),
    0 0 28px rgba(255, 255, 255, .42);
  filter: drop-shadow(0 5px 0 rgba(25, 131, 226, .2));
}

.hero-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(19px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 3px 16px rgba(2, 63, 123, .3);
}

.scribble-note {
  position: absolute;
  z-index: 4;
  right: max(12vw, 110px);
  top: 34%;
  display: grid;
  color: white;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.12;
  text-shadow: 0 3px 14px rgba(6, 72, 134, .26);
  transform: rotate(-12deg);
}

.scribble-note::after {
  content: "";
  width: 112px;
  height: 44px;
  margin: 2px 0 0 28px;
  border-bottom: 3px solid rgba(255, 255, 255, .86);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.wave {
  position: absolute;
  left: -5vw;
  width: 110vw;
  height: 104px;
  pointer-events: none;
  background: var(--ice);
}

.wave-top {
  top: -78px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: rotate(-1deg);
}

.wave-bottom {
  bottom: -62px;
  z-index: 3;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: rotate(-2deg);
}

.journey {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: var(--ice);
  padding: 42px 24px 46px;
  box-shadow: inset 0 38px 75px rgba(255, 255, 255, .86);
}

.journey-inner {
  width: min(1090px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(38px, 5vw, 70px);
}

.journey-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(48, 137, 211, .23);
}

.journey-photo img {
  width: 100%;
  aspect-ratio: 1.82 / 1;
  object-fit: cover;
  object-position: 50% 54%;
}

.eyebrow {
  margin: 0 0 16px;
  color: #5b7aa5;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, .88);
}

.journey h2 {
  color: #061d50;
  font-size: clamp(38px, 5.1vw, 76px);
  font-weight: 900;
}

.journey-copy > p:last-child {
  max-width: 560px;
  margin: 24px 0 0;
  color: #61759a;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.25;
}

.community {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 58px 7vw 80px;
  color: white;
  isolation: isolate;
}

.community::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -5vw;
  right: -5vw;
  bottom: -72px;
  height: 118px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--ice);
  transform: rotate(1deg);
}

.community-bg {
  z-index: -3;
  object-position: center center;
}

.community-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 119, 221, .74) 0%, rgba(25, 145, 239, .42) 34%, rgba(25, 145, 239, .08) 67%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(13, 107, 201, .16));
}

.community-copy {
  max-width: 470px;
  text-shadow: 0 4px 22px rgba(3, 56, 112, .32);
}

.community h2 {
  font-size: clamp(54px, 7vw, 98px);
  font-weight: 900;
}

.community-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.28;
}

.join-button {
  width: min(252px, 100%);
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #bbff37 0%, #9dff12 100%);
  color: #06223f;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(79, 164, 47, .28), inset 0 1px 0 rgba(255, 255, 255, .58);
  transition: transform .18s ease, box-shadow .18s ease;
  text-shadow: none;
}

.movement {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 62px 24px 74px;
  text-align: center;
  isolation: isolate;
}

.movement-bg {
  z-index: -3;
  object-position: center center;
}

.movement-glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(235, 248, 255, .12) 0%, rgba(238, 249, 255, .62) 38%, rgba(16, 113, 202, .02) 100%);
}

.movement-copy {
  width: min(850px, 100%);
  margin-top: -14px;
}

.movement h2 {
  color: #061d50;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 900;
  text-shadow: 0 4px 18px rgba(255, 255, 255, .6);
}

.movement-copy > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: #5d7ca6;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.movement-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.movement-actions .pill {
  min-width: 160px;
  color: #08223f;
  border-color: rgba(35, 122, 210, .5);
  background: rgba(255, 255, 255, .52);
  text-shadow: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), 0 10px 28px rgba(19, 91, 164, .13);
}

.movement-actions .pill-buy {
  background: linear-gradient(180deg, #bbff37 0%, #9dff12 100%);
  border-color: rgba(159, 248, 20, .92);
}

.movement footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(1, 41, 84, .56);
}

.movement footer span {
  font-size: 10px;
  letter-spacing: 0;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1);
}

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

@media (max-width: 980px) {
  .site-nav {
    top: 16px;
    right: 16px;
    width: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: 630px;
    height: 78svh;
    padding-top: 92px;
  }

  .hero-copy {
    margin-top: 22px;
  }

  .hero-buy {
    margin-bottom: 14px;
  }

  .scribble-note {
    right: 7vw;
    top: 39%;
  }

  .journey-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .journey-photo img {
    aspect-ratio: 1.5 / 1;
  }

  .community {
    min-height: 540px;
    align-items: flex-start;
    padding-top: 94px;
  }

  .community-bg {
    object-position: 61% 50%;
  }

  .community-copy {
    max-width: 390px;
  }
}

@media (max-width: 620px) {
  .menu-button {
    width: 48px;
    height: 42px;
  }

  .hero {
    min-height: 610px;
    height: 92svh;
    padding: 86px 14px 0;
  }

  .hero-bg {
    object-position: 50% center;
  }

  .hero-copy {
    width: 100%;
    margin-top: 36px;
  }

  .hero-buy {
    height: 40px;
    min-width: 86px;
    margin-bottom: 12px;
    padding: 0 20px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(40px, 10.6vw, 46px);
  }

  .hero-copy p {
    font-size: 18px;
  }

  .scribble-note {
    display: none;
  }

  .journey {
    padding: 46px 14px 62px;
  }

  .wave {
    height: 74px;
  }

  .wave-top {
    top: -52px;
  }

  .wave-bottom {
    bottom: -44px;
  }

  .journey-photo {
    border-radius: 18px;
  }

  .journey-photo img {
    aspect-ratio: 1.06 / 1;
  }

  .journey h2 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .journey-copy > p:last-child {
    font-size: 19px;
  }

  .community {
    min-height: 570px;
    padding: 70px 18px 72px;
  }

  .community-bg {
    object-position: 58% 50%;
    transform: scale(1.06);
  }

  .community-scrim {
    background: linear-gradient(90deg, rgba(12, 119, 221, .8) 0%, rgba(20, 131, 229, .42) 55%, rgba(20, 131, 229, .08) 100%);
  }

  .community h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .community-copy p:not(.eyebrow) {
    font-size: 19px;
  }

  .join-button {
    min-height: 56px;
    font-size: 16px;
  }

  .movement {
    min-height: 560px;
    padding: 80px 14px 84px;
  }

  .movement-bg {
    object-position: center bottom;
  }

  .movement-copy {
    margin-top: -18px;
  }

  .movement h2 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .movement-copy > p:not(.eyebrow) {
    font-size: 12px;
    letter-spacing: 0;
  }

  .movement-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .movement-actions .pill {
    min-width: 0;
    width: 100%;
    padding: 0 10px;
  }

  .movement footer {
    font-size: 10px;
    letter-spacing: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
