:root {
  color-scheme: light;
  --navy: #071a2e;
  --navy-soft: #10253c;
  --ivory: #f6f1e7;
  --paper: #fffdf8;
  --ink: #10253c;
  --muted: #63758a;
  --line: rgba(16, 37, 60, 0.18);
  --teal: #23c7bd;
  --teal-dark: #087f79;
  --coral: #ff6b61;
  --blue: #56a4ff;
  --saffron: #ffc34d;
  --header-height: 66px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  letter-spacing: 0;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--ivory);
  font-weight: 750;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 8px 28px;
  border-bottom: 1px solid rgba(246, 241, 231, 0.14);
  background: rgba(7, 26, 46, 0.82);
  color: var(--ivory);
  backdrop-filter: blur(16px) saturate(120%);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 26, 46, 0.96);
  box-shadow: 0 8px 28px rgba(7, 26, 46, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 15px;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(246, 241, 231, 0.68);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.stage-readout {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  color: rgba(246, 241, 231, 0.72);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.stage-readout [data-stage-number] {
  color: var(--teal);
  font-size: 15px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}

.primary-nav a:not(.nav-action) {
  color: rgba(246, 241, 231, 0.76);
}

.primary-nav a:hover {
  color: var(--ivory);
}

.nav-action {
  padding: 10px 13px;
  border: 1px solid rgba(35, 199, 189, 0.72);
  border-radius: 4px;
  color: var(--ivory);
}

.nav-action:hover {
  background: var(--teal);
  color: var(--navy);
}

.music-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 0;
  border: 1px solid rgba(246, 241, 231, 0.28);
  border-radius: 4px;
  background: rgba(246, 241, 231, 0.06);
  color: var(--ivory);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.music-toggle:hover {
  border-color: var(--teal);
  background: rgba(35, 199, 189, 0.12);
}

.music-toggle.is-playing {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--navy);
  animation: music-breath 1.8s ease-in-out infinite alternate;
}

@keyframes music-breath {
  from { box-shadow: 0 0 0 0 rgba(35, 199, 189, 0); }
  to { box-shadow: 0 0 0 5px rgba(35, 199, 189, 0.14); }
}

.header-progress {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: rgba(246, 241, 231, 0.08);
}

.header-progress span {
  display: block;
  width: 11.111%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--saffron), var(--coral));
  transform-origin: left;
  transition: width 320ms ease;
}

.movement {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 82svh;
  overflow: hidden;
  background: #e7e0d5;
}

.hero {
  min-height: 88svh;
  padding-top: var(--header-height);
}

.movement-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1), filter 600ms ease;
}

.movement.is-visible .movement-image {
  transform: scale(1);
}

.movement::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}

.movement.copy-left::before {
  background: linear-gradient(90deg, rgba(246, 241, 231, 0.98) 0%, rgba(246, 241, 231, 0.9) 25%, rgba(246, 241, 231, 0.22) 57%, rgba(246, 241, 231, 0) 76%);
}

.movement.copy-right::before {
  background: linear-gradient(270deg, rgba(246, 241, 231, 0.98) 0%, rgba(246, 241, 231, 0.9) 25%, rgba(246, 241, 231, 0.22) 57%, rgba(246, 241, 231, 0) 76%);
}

.movement::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(7, 26, 46, 0.18), transparent);
  pointer-events: none;
}

.movement-copy {
  width: min(560px, calc(100% - 80px));
  margin: 0;
  padding: 78px 0 56px;
}

.copy-left .movement-copy {
  justify-self: start;
  margin-left: max(44px, calc((100vw - 1320px) / 2));
}

.copy-right .movement-copy {
  justify-self: end;
  width: min(420px, calc(100% - 80px));
  margin-right: max(44px, calc((100vw - 1320px) / 2));
}

.hero-copy {
  width: min(720px, calc(100% - 80px));
  padding-top: 76px;
}

.eyebrow,
.stage-kicker {
  margin: 0 0 17px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.stage-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stage-kicker span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(8, 127, 121, 0.48);
  border-radius: 50%;
  color: var(--teal-dark);
  font-size: 12px;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: 124px;
  font-weight: 850;
  line-height: 0.9;
}

.hero-line {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 38px;
  font-weight: 720;
  line-height: 1.08;
}

.hero-body {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(16, 37, 60, 0.8);
  font-size: 19px;
}

.hero-actions,
.connection-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(35, 199, 189, 0.2);
}

.button-primary:hover {
  background: #37d8ce;
}

.button-quiet {
  border-color: rgba(16, 37, 60, 0.28);
  background: rgba(246, 241, 231, 0.44);
  color: var(--navy);
}

.button-quiet:hover {
  border-color: var(--navy);
  background: var(--paper);
}

.button-light {
  background: var(--ivory);
  color: var(--navy);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 2px 10px;
  transform: translateX(-50%);
  color: var(--navy);
  font-size: 11px;
  text-transform: uppercase;
}

.scroll-cue span {
  color: var(--teal-dark);
  font-weight: 850;
}

.scroll-cue strong {
  font-size: 11px;
}

.scroll-cue i {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 7px;
  overflow: hidden;
  background: rgba(16, 37, 60, 0.2);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 44%;
  height: 100%;
  background: var(--coral);
  animation: travel 1.8s ease-in-out infinite;
}

@keyframes travel {
  from { transform: translateX(-110%); }
  to { transform: translateX(340%); }
}

.journey-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 40px 80px;
  align-items: end;
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 44px;
  border-top: 4px solid var(--teal);
  background: var(--ivory);
}

.journey-intro .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.journey-intro h2,
.movement-copy h2,
.connection-copy h2,
.closing h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.02;
}

.journey-intro > p:last-child,
.movement-copy > p:last-child,
.movement-copy > p:nth-last-child(2) {
  margin: 0;
  color: rgba(16, 37, 60, 0.74);
  font-size: 18px;
  line-height: 1.65;
}

.movement-copy h2 {
  margin-bottom: 22px;
}

.movement-copy .button {
  margin-top: 28px;
}

.movement.movement-finale::before {
  background: linear-gradient(90deg, rgba(7, 26, 46, 0.96) 0%, rgba(7, 26, 46, 0.82) 30%, rgba(7, 26, 46, 0.12) 65%, rgba(7, 26, 46, 0) 78%);
}

.movement-finale .movement-copy,
.movement-finale .stage-kicker,
.movement-finale .stage-kicker span,
.movement-finale .movement-copy > p:nth-last-child(2) {
  color: var(--ivory);
}

.movement-finale .stage-kicker span {
  border-color: rgba(246, 241, 231, 0.46);
}

.movement-finale .movement-copy > p:nth-last-child(2) {
  color: rgba(246, 241, 231, 0.78);
}

.connection {
  background: var(--navy);
  color: var(--ivory);
}

.connection-visual {
  position: relative;
  min-height: 64svh;
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 241, 231, 0.12);
  background: var(--ivory);
}

.connection-visual img {
  width: 100%;
  height: 100%;
  min-height: 64svh;
  object-fit: cover;
}

.connection-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 32px 90px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 44px 110px;
}

.connection-copy .eyebrow {
  grid-column: 1 / -1;
  color: var(--teal);
  margin: 0;
}

.connection-copy > p:not(.eyebrow) {
  margin: 0;
  color: rgba(246, 241, 231, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.connection-actions {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  padding: 12px 2px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.text-link:hover {
  color: var(--ivory);
}

.closing {
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 130px 32px 140px;
  overflow: hidden;
  background: var(--paper);
  text-align: center;
}

.closing img {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  filter: drop-shadow(0 18px 24px rgba(7, 26, 46, 0.12));
}

.closing h2 {
  width: 100%;
  max-width: 900px;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.closing .button {
  margin-top: 34px;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 110px;
  padding: 24px 44px;
  border-top: 1px solid rgba(246, 241, 231, 0.12);
  background: var(--navy);
  color: var(--ivory);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

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

footer p {
  margin: 0;
  color: rgba(246, 241, 231, 0.56);
  font-size: 13px;
}

footer nav {
  display: flex;
  gap: 20px;
  color: rgba(246, 241, 231, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.coming-soon-page {
  min-height: 100svh;
  background: var(--navy);
}

.coming-soon-scene {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ivory);
}

.coming-soon-image,
.coming-soon-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.coming-soon-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.coming-soon-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 26, 46, 0.96) 0%, rgba(7, 26, 46, 0.82) 34%, rgba(7, 26, 46, 0.18) 74%),
    linear-gradient(0deg, rgba(7, 26, 46, 0.82), transparent 54%);
}

.coming-soon-brand {
  position: absolute;
  top: 26px;
  left: clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.coming-soon-brand span {
  display: grid;
  line-height: 1.05;
}

.coming-soon-brand strong {
  font-size: 16px;
}

.coming-soon-brand small {
  margin-top: 5px;
  color: rgba(246, 241, 231, 0.68);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.coming-soon-copy {
  width: min(940px, calc(100% - 44px));
  margin: 0 0 clamp(54px, 9vh, 110px) clamp(22px, 8vw, 130px);
}

.coming-soon-copy .eyebrow {
  color: var(--teal);
}

.coming-soon-copy h1 {
  display: grid;
  max-width: 100%;
  margin: 15px 0 18px;
  color: var(--ivory);
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 840;
  line-height: 0.86;
}

.coming-soon-copy h1 span {
  white-space: nowrap;
}

.coming-soon-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 0 30px;
  color: rgba(246, 241, 231, 0.78);
  font-size: clamp(16px, 1.5vw, 20px);
}

.coming-soon-copy .button {
  width: auto;
}

@media (max-width: 680px) {
  .coming-soon-scene {
    align-items: end;
  }

  .coming-soon-image {
    object-position: 58% center;
  }

  .coming-soon-shade {
    background:
      linear-gradient(0deg, rgba(7, 26, 46, 0.98) 0%, rgba(7, 26, 46, 0.82) 48%, rgba(7, 26, 46, 0.12) 100%);
  }

  .coming-soon-brand {
    top: 18px;
  }

  .coming-soon-copy {
    margin: 0 22px 36px;
  }

  .coming-soon-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 0.9;
  }

  .coming-soon-copy .button {
    width: 100%;
  }
}

footer a:hover {
  color: var(--teal);
}

.js .movement-copy,
.js .journey-intro > *,
.js .connection-copy > *,
.js .closing > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.js .is-visible .movement-copy,
.js .journey-intro.is-visible > *,
.js .connection-copy.is-visible > *,
.js .closing.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.js .journey-intro.is-visible > *:nth-child(2),
.js .connection-copy.is-visible > *:nth-child(2),
.js .closing.is-visible > *:nth-child(2) {
  transition-delay: 80ms;
}

.js .journey-intro.is-visible > *:nth-child(3),
.js .connection-copy.is-visible > *:nth-child(3),
.js .closing.is-visible > *:nth-child(3) {
  transition-delay: 160ms;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .stage-readout {
    display: none;
  }

  .primary-nav a:not(.nav-action) {
    display: none;
  }

  .hero h1 {
    font-size: 92px;
  }

  .hero-line {
    font-size: 32px;
  }

  .journey-intro h2,
  .movement-copy h2,
  .connection-copy h2,
  .closing h2 {
    font-size: 46px;
  }

  .movement-copy {
    width: min(500px, calc(100% - 56px));
  }

  .copy-left .movement-copy {
    margin-left: 28px;
  }

  .copy-right .movement-copy {
    margin-right: 28px;
  }

  .journey-intro,
  .connection-copy {
    padding-inline: 28px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 58px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 6px 14px;
  }

  .brand {
    gap: 6px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-action {
    padding: 8px 10px;
    font-size: 12px;
  }

  .primary-nav {
    gap: 8px;
  }

  .music-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .movement,
  .hero {
    display: grid;
    grid-template-rows: minmax(390px, 56svh) auto;
    align-items: stretch;
    min-height: 0;
    padding-top: 0;
    overflow: visible;
    background: var(--ivory);
  }

  .hero {
    padding-top: var(--header-height);
  }

  .movement-image {
    position: relative;
    z-index: 0;
    grid-row: 1;
    height: 100%;
    min-height: 390px;
    object-position: center center;
    transform: none;
  }

  .hero .movement-image {
    min-height: calc(56svh - var(--header-height));
  }

  .movement::before,
  .movement::after {
    display: none;
  }

  .movement-copy,
  .hero-copy,
  .copy-left .movement-copy,
  .copy-right .movement-copy {
    position: relative;
    z-index: 2;
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    margin: 0;
    padding: 34px 22px 46px;
    background: var(--ivory);
  }

  .hero-copy {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-line {
    margin-top: 18px;
    font-size: 27px;
  }

  .hero-body {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .journey-intro {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 76px 22px 82px;
  }

  .journey-intro .eyebrow {
    grid-column: 1;
  }

  .journey-intro h2,
  .movement-copy h2,
  .connection-copy h2,
  .closing h2 {
    font-size: 36px;
  }

  .journey-intro > p:last-child,
  .movement-copy > p:last-child,
  .movement-copy > p:nth-last-child(2),
  .connection-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .movement-finale .movement-copy,
  .movement-finale .stage-kicker,
  .movement-finale .stage-kicker span,
  .movement-finale .movement-copy > p:nth-last-child(2) {
    color: var(--ink);
  }

  .js .movement-copy,
  .js .journey-intro > *,
  .js .connection-copy > *,
  .js .closing > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .movement-finale .stage-kicker span {
    border-color: rgba(8, 127, 121, 0.48);
    color: var(--teal-dark);
  }

  .connection-visual,
  .connection-visual img {
    min-height: 0;
  }

  .connection-visual img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }

  .connection-copy {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 68px 22px 78px;
  }

  .connection-copy .eyebrow,
  .connection-actions {
    grid-column: 1;
  }

  .connection-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    justify-content: center;
  }

  .closing {
    padding: 90px 22px 100px;
  }

  .closing h2 {
    max-width: 100%;
    line-height: 1.08;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 32px 22px;
  }

  footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .closing h2 {
    font-size: 31px;
  }
}

@media (max-width: 420px) {
  .movement {
    grid-template-rows: minmax(330px, 50svh) auto;
  }

  .hero {
    grid-template-rows: minmax(270px, 34svh) auto;
  }

  .movement-image {
    min-height: 330px;
  }

  .hero .movement-image {
    min-height: 270px;
    object-position: 58% center;
  }

  #move-2 .movement-image { object-position: 42% center; }
  #move-3 .movement-image { object-position: 70% center; }
  #move-4 .movement-image { object-position: 48% center; }
  #move-5 .movement-image { object-position: 65% center; }
  #move-6 .movement-image { object-position: 42% center; }
  #move-7 .movement-image { object-position: 72% center; }
  #move-8 .movement-image { object-position: 30% center; }
  #move-9 .movement-image { object-position: 56% center; }

  .hero-copy {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .hero-copy .hero-actions {
    gap: 8px;
  }

  .hero-copy .button {
    min-height: 44px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-line {
    font-size: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .movement-copy,
  .js .journey-intro > *,
  .js .connection-copy > *,
  .js .closing > * {
    opacity: 1;
    transform: none;
  }

  .music-toggle.is-playing {
    animation: none;
  }
}
