:root {
  color-scheme: dark;
  --white: #ffffff;
  --yellow: #ffe100;
  --blue: #0037c8;
  --deep-blue: #00155d;
  --ink-blue: #020839;
  --soft-white: rgba(255, 255, 255, 0.82);
  --home-opacity: 1;
  --home-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink-blue);
  color: var(--white);
}

body.is-loading {
  overflow: hidden;
}

body.button-scene-mode {
  overflow: hidden;
}

body.button-scene-mode .scroll-scene {
  height: 100vh;
}

body.button-scene-mode .scroll-cue {
  display: none;
}

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

a {
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.journey-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #001089;
  color: var(--white);
  transition: opacity 620ms ease, visibility 620ms ease;
}

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

.journey-loader::before {
  content: none;
}

.journey-loader::after {
  content: none;
}

.journey-loader.is-complete {
  opacity: 0;
  visibility: hidden;
}

.loader-main {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100vw - 36px));
  min-height: min(100vh, 980px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(12px, 1.8vh, 22px);
  text-align: center;
  transform: translateY(-2.5vh) scale(0.7);
  transform-origin: center;
}

.loader-scene {
  position: relative;
  width: min(900px, 90vw, 82vh);
  aspect-ratio: 721 / 610;
  pointer-events: none;
  animation: loaderSceneIn 980ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.loader-subjects {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  animation: loaderSubjectsFloat 4.2s ease-in-out 1s infinite;
  pointer-events: none;
  user-select: none;
}

.loader-location,
.loader-plane {
  position: absolute;
  z-index: 3;
  display: block;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 8, 78, 0.24));
  pointer-events: none;
  user-select: none;
}

.loader-location .st0,
.loader-plane .st0 {
  fill: #ffffff;
}

.loader-location {
  left: clamp(14px, 3vw, 42px);
  top: clamp(28px, 7%, 60px);
  width: clamp(104px, 15vw, 148px);
  aspect-ratio: 163.28 / 204.06;
  transform-origin: 42% 18%;
  animation: loaderLocationFloat 3.6s ease-in-out 2.1s infinite;
}

.loader-location #linea,
.loader-plane #linea1,
.loader-plane #linea2 {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: left center;
  animation: loaderLineReveal 2.2s linear infinite;
}

.loader-location #icono,
.loader-plane #avion {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: loaderIconArrive 2.2s linear infinite;
}

.loader-location #linea {
  animation-delay: 0ms;
}

.loader-location #icono {
  animation-delay: 0ms;
}

.loader-plane {
  right: clamp(18px, 4vw, 58px);
  top: clamp(44px, 8%, 78px);
  width: clamp(154px, 21vw, 230px);
  aspect-ratio: 252.22 / 301.47;
  transform-origin: 72% 20%;
  animation: loaderPlaneFloat 4.4s ease-in-out 2.1s infinite;
}

.loader-plane #linea1,
.loader-plane #linea2 {
  transform-origin: left bottom;
  animation-delay: 260ms;
}

.loader-plane #avion {
  animation-delay: 260ms;
}

.loader-controls {
  position: relative;
  z-index: 4;
  width: min(459px, 72vw);
  display: grid;
  justify-items: center;
  gap: clamp(15px, 2vh, 24px);
  margin-top: clamp(-70px, -6vh, -38px);
  animation: loaderControlsIn 880ms cubic-bezier(0.16, 1, 0.3, 1) 520ms both;
}

.loader-title-row {
  display: grid;
  grid-template-columns: 66px auto 66px;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 19px);
}

.loader-title-sparks {
  position: relative;
  width: 66px;
  height: 29px;
}

.loader-title-sparks::before,
.loader-title-sparks::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 6px;
  border-radius: 999px;
  background: #fab415;
  transform-origin: center;
  box-shadow: 0 0 10px rgba(250, 180, 21, 0.26);
  animation: loaderAdornoPop 1.45s ease-in-out infinite;
}

.loader-title-sparks::before {
  transform: translate(-15px, -7px) rotate(36deg);
}

.loader-title-sparks::after {
  transform: translate(-7px, 7px) rotate(-8deg);
}

.loader-title-sparks-right {
  transform: scaleX(-1);
}

.loader-script-title {
  margin: 0;
  color: #ffffff;
  font-family: "Comic Sans MS", "Brush Script MT", Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(1.94rem, 3.94vw, 3.4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 12px 24px rgba(0, 6, 64, 0.32);
  animation: loaderTextPulse 2.1s ease-in-out infinite;
}

.loader-copy {
  margin: 0;
  max-width: min(560px, 88vw);
  padding: 0;
  color: rgba(255, 255, 255, 0.94);
  background: transparent;
  font-size: clamp(0.73rem, 1.21vw, 0.99rem);
  font-weight: 900;
  letter-spacing: 0.36em;
  line-height: 1.35;
  text-transform: uppercase;
  transition: opacity 220ms ease, transform 220ms ease;
}

.loader-copy strong {
  color: #ffd200;
  font-weight: 800;
}

.loader-copy span {
  color: #ffd200;
  letter-spacing: 0.18em;
  animation: loaderDots 1.2s steps(3) infinite;
}

.loader-progress {
  position: relative;
  width: min(434px, 66vw);
  height: clamp(29px, 3.9vw, 37px);
  overflow: visible;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(28, 74, 201, 0.78), rgba(24, 54, 168, 0.86));
  border: 1px solid rgba(78, 120, 255, 0.72);
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.12),
    inset 0 -8px 12px rgba(0, 8, 93, 0.18),
    0 16px 28px rgba(0, 5, 55, 0.26);
}

.loader-progress span {
  position: relative;
  width: 0%;
  height: 100%;
  display: block;
  border-radius: inherit;
  min-width: 29px;
  background:
    linear-gradient(180deg, #ffe24b 0%, #ffc400 42%, #f9a900 100%);
  box-shadow:
    inset 0 4px 8px rgba(255, 255, 255, 0.28),
    inset 0 -6px 10px rgba(178, 96, 0, 0.18),
    0 0 26px rgba(255, 204, 0, 0.28);
  transition: width 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-progress span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: clamp(32px, 4.1vw, 40px);
  height: clamp(32px, 4.1vw, 40px);
  border-radius: 50%;
  background: #ffffff;
  transform: translate(50%, -50%);
  box-shadow:
    inset 0 4px 7px rgba(255, 255, 255, 0.88),
    0 10px 18px rgba(0, 5, 60, 0.2);
  animation: loaderKnobPulse 1.7s ease-in-out infinite;
}

.loader-percent {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.loader-start {
  min-width: 151px;
  min-height: 39px;
  padding: 0 20px;
  border-radius: 999px;
  color: #ffffff;
  background: #f0238a;
  box-shadow: 0 16px 28px rgba(0, 5, 45, 0.26);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transition: opacity 260ms ease, transform 260ms ease, background 180ms ease, color 180ms ease;
}

.loader-start:hover,
.loader-start:focus-visible {
  color: #071e8f;
  background: #ffd200;
  outline: none;
  transform: translateY(6px) scale(1);
}

.journey-loader.is-ready .loader-start {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@keyframes loaderFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes loaderSceneIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.94);
    filter: blur(14px);
  }

  72% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) scale(1.018);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes loaderSubjectsFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -7px, 0) scale(1.006);
  }
}

@keyframes loaderIconPop {
  0% {
    opacity: 0;
    transform: translate3d(-16px, 10px, 0) scale(0.72) rotate(-10deg);
  }

  70% {
    opacity: 1;
    transform: translate3d(0, -3px, 0) scale(1.08) rotate(3deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
  }
}

@keyframes loaderLineReveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  12% {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
  }

  58% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  78% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes loaderIconArrive {
  0%,
  50% {
    opacity: 0;
    transform: translate3d(-8px, 8px, 0) scale(0.72);
  }

  64% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.08);
  }

  78% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes loaderLocationFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(-2deg);
  }
}

@keyframes loaderPlaneIn {
  0% {
    opacity: 0;
    transform: translate3d(-34px, 24px, 0) scale(0.78) rotate(-14deg);
  }

  68% {
    opacity: 1;
    transform: translate3d(6px, -4px, 0) scale(1.08) rotate(5deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
  }
}

@keyframes loaderPlaneFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }

  50% {
    transform: translate3d(12px, -12px, 0) rotate(4deg);
  }
}

@keyframes loaderControlsIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.95);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes loaderTextPulse {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-4px) rotate(1deg);
  }
}

@keyframes loaderAdornoPop {
  0%,
  100% {
    opacity: 0.92;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px) scale(1.12);
  }
}

@keyframes loaderKnobPulse {
  0%,
  100% {
    transform: translate(50%, -50%) scale(1);
  }

  50% {
    transform: translate(50%, -50%) scale(1.06);
  }
}

@keyframes loaderDots {
  0% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
  }
}

@keyframes timelineFluid {
  0% {
    transform: translateX(-75%);
  }

  55%,
  100% {
    transform: translateX(120%);
  }
}

.site-shell {
  min-height: 100vh;
  overflow: visible;
}

.scroll-scene {
  height: 1620vh;
  background: var(--ink-blue);
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 116px clamp(22px, 5vw, 72px) 68px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 112, 255, 0.9) 0 15%, rgba(0, 63, 209, 0.8) 34%, transparent 62%),
    radial-gradient(circle at 50% 92%, rgba(0, 114, 255, 0.7), transparent 31%),
    linear-gradient(135deg, #00134f 0%, var(--blue) 47%, #00175f 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: -3;
  pointer-events: none;
}

.hero::before {
  width: 76vw;
  height: 34vw;
  left: 12vw;
  bottom: -19vw;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 193, 255, 0.5), transparent 68%);
  filter: blur(10px);
}

.hero::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 7, 42, 0.45), transparent 30%, transparent 70%, rgba(0, 7, 42, 0.45)),
    linear-gradient(0deg, rgba(0, 4, 29, 0.28), transparent 34%);
  z-index: -1;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(24px, 6vw, 112px) 24px;
  text-transform: uppercase;
  transition:
    padding 320ms cubic-bezier(0.16, 1, 0.3, 1),
    min-height 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: clamp(94px, 8.3vw, 140px);
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(0, 5, 46, 0.32));
  transition:
    width 320ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 260ms ease;
}

.brand-mark {
  position: relative;
  width: 54px;
  height: 48px;
  display: inline-block;
  border: 4px solid var(--yellow);
  border-radius: 8px;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--yellow);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: -12px;
  height: 10px;
  background:
    linear-gradient(135deg, transparent 0 42%, var(--yellow) 43% 58%, transparent 59%) 0 0 / 18px 10px repeat-x;
}

.brand-text {
  display: grid;
  gap: 2px;
  color: var(--white);
  font-size: clamp(0.95rem, 1.35vw, 1.42rem);
  line-height: 1.05;
}

.brand-text span:last-child {
  color: var(--yellow);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.5vw, 58px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 900;
}

.nav-links a,
.nav-actions button {
  position: relative;
  transition: transform 160ms ease, color 160ms ease, opacity 160ms ease;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 74px;
  height: 3px;
  background: var(--yellow);
  transform: translateX(-50%);
}

.nav-links a {
  position: relative;
}

.nav-links a:hover,
.nav-actions button:hover {
  color: var(--yellow);
  transform: translateY(-1px);
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.9vw, 12px);
}

.nav-round-button {
  width: clamp(40px, 3.04vw, 53px);
  height: clamp(40px, 3.04vw, 53px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: none;
  transform-origin: center;
  transition:
    width 320ms cubic-bezier(0.16, 1, 0.3, 1),
    height 320ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 220ms ease,
    opacity 220ms ease;
}

.character-button:hover {
  transform: translateY(-2px) scale(1.14);
  filter: drop-shadow(0 0 14px rgba(255, 225, 0, 0.34));
}

.character-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 12px 16px rgba(0, 5, 45, 0.28));
}

.audio-button {
  position: relative;
  background:
    radial-gradient(circle at 35% 24%, #ffe675 0 12%, #ffd10f 13% 62%, #f6a900 100%);
  box-shadow:
    inset 0 4px 4px rgba(255, 255, 255, 0.34),
    inset 0 -6px 8px rgba(188, 93, 0, 0.24),
    0 12px 18px rgba(0, 5, 45, 0.24);
}

.audio-button:hover {
  transform: translateY(-2px) scale(1.12);
  filter: brightness(1.1) drop-shadow(0 0 14px rgba(255, 225, 0, 0.34));
}

.audio-button.is-on {
  filter: brightness(1.05);
}

.audio-button.is-on:hover {
  transform: translateY(-2px) scale(1.12);
  filter: brightness(1.12) drop-shadow(0 0 14px rgba(255, 225, 0, 0.34));
}

.audio-button:not(.is-on) {
  background:
    radial-gradient(circle at 35% 24%, #ffffff 0 12%, #dfe7ff 13% 62%, #8da0d9 100%);
}

.video-audio-button {
  background:
    radial-gradient(circle at 35% 24%, #ff9ac8 0 12%, #f0238a 13% 62%, #9f1260 100%);
}

.video-audio-button:not(.is-on) {
  background:
    radial-gradient(circle at 35% 24%, #ffffff 0 12%, #e9edf8 13% 62%, #7d8caf 100%);
}

.video-audio-button .audio-icon {
  color: #ffffff;
}

.video-audio-button:not(.is-on) .audio-icon {
  color: #00329f;
}

.audio-icon {
  position: relative;
  width: 36%;
  height: 36%;
  display: inline-block;
  color: #00329f;
  border-left: 0;
  border-radius: 0;
}

.audio-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  width: 58%;
  height: 52%;
  background: currentColor;
  clip-path: polygon(0 28%, 35% 28%, 100% 0, 100% 100%, 35% 72%, 0 72%);
}

.audio-icon::after {
  content: "";
  position: absolute;
  left: 58%;
  top: 6%;
  width: 42%;
  height: 88%;
  border: 4px solid currentColor;
  border-left: 0;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  opacity: 0.9;
}

.audio-button:not(.is-on) .audio-icon::after {
  width: 120%;
  height: 5px;
  left: 4%;
  top: 48%;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-38deg);
}

.city-landing {
  --city-landing-bg: #10227d;
  --city-landing-bg-soft: #10227d;
  --city-header-bg-rgb: 16, 34, 125;
  position: absolute;
  inset: 0;
  z-index: 12;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 225, 0, 0.7) rgba(255, 255, 255, 0.08);
  transition: opacity 320ms ease, visibility 320ms ease;
}

.city-landing.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.city-landing::-webkit-scrollbar {
  width: 8px;
}

.city-landing::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.city-landing::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 225, 0, 0.72);
}

.city-landing-fluid {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.city-landing-fluid-wave {
  will-change: d;
}

.city-landing-fluid-back {
  fill: var(--city-landing-bg-soft);
}

.city-landing-fluid-front {
  fill: var(--city-landing-bg);
}

.city-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  min-height: clamp(88px, 9vh, 104px);
  display: grid;
  grid-template-columns: minmax(92px, 0.7fr) minmax(420px, 1.35fr) minmax(190px, 0.7fr);
  align-items: center;
  gap: clamp(18px, 3.2vw, 58px);
  padding: 10px clamp(24px, 4.6vw, 78px);
  background: var(--city-landing-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -118%, 0) scale(0.985);
  transition:
    opacity 760ms ease,
    visibility 760ms ease,
    transform 1080ms cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  backdrop-filter: none;
  overflow: visible;
  will-change: transform, opacity;
}

.city-landing.has-sticky-header .city-sticky-bar {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.city-sticky-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  transform: translate3d(-10px, -8px, 0) scale(0.48);
  opacity: 0;
  transform-origin: center;
  transition: none;
}

.city-landing.is-sticky-icons-ready .city-sticky-brand {
  animation: stickyItemScaleIn 860ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.city-sticky-brand img {
  display: block;
  width: clamp(66px, 5.4vw, 86px);
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(0, 5, 46, 0.28));
}

.city-sticky-meta {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(58px, auto) auto minmax(76px, auto);
  align-items: center;
  justify-content: center;
  gap: 0;
  text-transform: uppercase;
  transform: translateY(3px);
}

.city-sticky-time,
.city-sticky-title,
.city-sticky-weather {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.city-sticky-time {
  display: block;
  min-width: clamp(88px, 8vw, 128px);
  padding-right: clamp(18px, 2vw, 32px);
  text-align: left;
}

.city-sticky-title {
  min-height: clamp(44px, 4.9vh, 58px);
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 clamp(22px, 2.8vw, 46px);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.city-sticky-weather {
  min-width: clamp(96px, 8vw, 130px);
  padding-left: clamp(18px, 2vw, 32px);
}

.city-sticky-weather img {
  width: clamp(16px, 1.25vw, 21px);
  height: clamp(16px, 1.25vw, 21px);
  filter: invert(1) brightness(1.4);
}

.city-sticky-time strong,
.city-sticky-weather strong {
  display: block;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(0.82rem, 1.2vw, 1.1rem);
  line-height: 1;
  font-weight: 700;
}

.city-sticky-title strong {
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.city-sticky-title small {
  color: #ff5aa6;
  font-size: clamp(0.98rem, 1.7vw, 1.45rem);
  line-height: 1;
  font-weight: 800;
}

.city-sticky-time small,
.city-sticky-weather small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.42rem, 0.55vw, 0.58rem);
  line-height: 1;
  font-weight: 800;
}

.city-sticky-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 0.85vw, 12px);
  justify-self: end;
}

.city-sticky-button {
  width: clamp(46px, 3.2vw, 56px);
  height: clamp(46px, 3.2vw, 56px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  transform: translate3d(12px, -8px, 0) scale(0.45);
  transform-origin: center;
  transition:
    filter 180ms ease;
  will-change: transform, opacity;
}

.city-landing.is-sticky-icons-ready .city-sticky-button {
  animation: stickyItemScaleIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.city-landing.is-sticky-icons-ready .city-sticky-button:nth-child(1) {
  animation-delay: 60ms;
}

.city-landing.is-sticky-icons-ready .city-sticky-button:nth-child(2) {
  animation-delay: 130ms;
}

.city-landing.is-sticky-icons-ready .city-sticky-button:nth-child(3) {
  animation-delay: 200ms;
}

.city-landing.is-sticky-icons-ready .city-sticky-button:nth-child(4) {
  animation-delay: 270ms;
}

.city-sticky-button:hover {
  transform: translateY(-2px) scale(1.08);
}

@keyframes stickyItemScaleIn {
  0% {
    opacity: 0;
    transform: translate3d(12px, -8px, 0) scale(0.42);
    filter: blur(8px);
  }

  62% {
    opacity: 1;
    transform: translate3d(0, 1px, 0) scale(1.12);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.city-sticky-character img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 5, 45, 0.28));
}

.city-sticky-audio {
  position: relative;
  background:
    radial-gradient(circle at 35% 24%, #ffe675 0 12%, #ffd10f 13% 62%, #f6a900 100%);
  box-shadow:
    inset 0 4px 4px rgba(255, 255, 255, 0.34),
    inset 0 -6px 8px rgba(188, 93, 0, 0.24),
    0 10px 16px rgba(0, 5, 45, 0.22);
}

.city-sticky-audio:not(.is-on) {
  background:
    radial-gradient(circle at 35% 24%, #ffffff 0 12%, #dfe7ff 13% 62%, #8da0d9 100%);
}

.city-sticky-video-audio {
  background:
    radial-gradient(circle at 35% 24%, #ff9ac8 0 12%, #f0238a 13% 62%, #9f1260 100%);
}

.city-sticky-video-audio:not(.is-on) {
  background:
    radial-gradient(circle at 35% 24%, #ffffff 0 12%, #e9edf8 13% 62%, #7d8caf 100%);
}

.city-sticky-video-audio .audio-icon {
  color: #ffffff;
}

.city-sticky-video-audio:not(.is-on) .audio-icon {
  color: #00329f;
}

.city-landing-hero {
  position: relative;
  min-height: 100vh;
  pointer-events: none;
}

.city-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: clamp(112px, 13vh, 154px);
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  transform: translateX(-50%);
  text-shadow: 0 8px 18px rgba(0, 3, 29, 0.48);
  opacity: 1;
  transition: opacity 240ms ease, transform 240ms ease;
}

.city-landing.has-scrolled .city-scroll-cue {
  opacity: 0;
  transform: translate(-50%, 10px);
}

.city-landing-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(170px, 26vh, 330px);
  display: none;
  overflow: visible;
}

.city-landing-wave path {
  fill: var(--city-landing-bg);
}

.city-landing-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 400vh;
  display: block;
  margin-top: 0;
  padding: 0 clamp(24px, 7vw, 112px);
  color: #ffffff;
  background: transparent;
  text-align: center;
}

.tokyo-itinerary {
  display: none;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(104px, 14vh, 156px) 0 clamp(160px, 20vh, 240px);
  text-align: left;
}

.city-landing.is-tokyo-itinerary .tokyo-itinerary {
  display: block;
}

.city-placeholder-content {
  display: grid;
  align-content: stretch;
  justify-items: center;
}

.city-landing.is-tokyo-itinerary .city-placeholder-content {
  display: none;
}

.tokyo-itinerary-reveal {
  opacity: 0;
  transform: translate3d(0, 72px, 0) scale(0.96);
  filter: blur(18px);
  transition:
    opacity 740ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 740ms ease;
}

.tokyo-itinerary-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.tokyo-itinerary-hero {
  position: relative;
  display: block;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-bottom: clamp(72px, 10vh, 128px);
}

.tokyo-hero-banner {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #10227d;
}

.tokyo-overview {
  width: min(1040px, 100%);
  margin: 0 auto clamp(70px, 10vh, 124px);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.tokyo-overview h3,
.tokyo-tips h3 {
  margin: 18px 0 0;
  color: #ffffff;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tokyo-overview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.38rem);
  line-height: 1.7;
  font-weight: 500;
}

.tokyo-highlight-grid {
  width: min(1040px, 100%);
  margin: 0 auto clamp(80px, 13vh, 150px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
}

.tokyo-highlight-grid article {
  min-height: clamp(170px, 17vw, 240px);
  padding: clamp(20px, 2.4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tokyo-highlight-grid span {
  display: block;
  color: #ffe15a;
  font-size: clamp(0.74rem, 0.9vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.tokyo-highlight-grid h4 {
  margin: 18px 0 10px;
  color: #ffffff;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.tokyo-highlight-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.paint-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  color: #07146b;
  background: #ffe15a;
  clip-path: polygon(5% 10%, 98% 0, 94% 86%, 10% 100%, 0 70%);
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.tokyo-days {
  position: relative;
  width: min(1120px, 100%);
  display: grid;
  gap: clamp(72px, 12vh, 132px);
  margin: 0 auto;
  padding: clamp(30px, 6vh, 64px) 0 clamp(88px, 13vh, 152px);
}

.tokyo-route-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  border-radius: 999px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.88) 45%, transparent 0);
  background-size: 4px 22px;
  opacity: 0.85;
  transform: translateX(-50%);
}

.tokyo-itinerary-day {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 8vw, 112px);
}

.tokyo-itinerary-day::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(24px, 2.8vw, 36px);
  height: clamp(24px, 2.8vw, 36px);
  border: 8px solid #ffe15a;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 8px rgba(255, 225, 90, 0.16);
  transform: translate(-50%, -50%) scale(0.72);
  transition: transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.tokyo-itinerary-day.is-visible::before {
  transform: translate(-50%, -50%) scale(1);
}

.tokyo-itinerary-day.is-right .tokyo-photo-card {
  order: 1;
}

.tokyo-itinerary-day.is-right .tokyo-day-copy {
  order: 2;
}

.tokyo-day-copy {
  position: relative;
  z-index: 3;
  max-width: 430px;
}

.tokyo-day-copy h3 {
  margin: 16px 0 20px;
  color: #ffffff;
  font-family: "Trebuchet MS", Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.tokyo-day-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 700;
}

.tokyo-day-copy li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
}

.tokyo-day-copy li span {
  color: #ffe15a;
  font-size: 1.25em;
  line-height: 1;
}

.tokyo-photo-card {
  position: relative;
  min-height: clamp(260px, 28vw, 390px);
  overflow: hidden;
  border: clamp(7px, 0.8vw, 10px) solid #ffffff;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, #1685ff, #05178f 62%, #ff5aa6);
  box-shadow: 0 26px 34px rgba(0, 4, 35, 0.2);
  transform: rotate(2.5deg);
}

.tokyo-itinerary-day.is-right .tokyo-photo-card {
  transform: rotate(-2.2deg);
}

.tokyo-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.34), transparent 18%),
    radial-gradient(circle at 76% 18%, rgba(255, 225, 90, 0.28), transparent 16%),
    linear-gradient(0deg, rgba(0, 8, 58, 0.42), transparent 48%);
}

.tokyo-photo-card::after {
  content: "";
  position: absolute;
  inset: 12% 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 40%, #ffd3b7 0 6%, transparent 7%),
    radial-gradient(circle at 62% 42%, #ffd3b7 0 5%, transparent 6%),
    radial-gradient(circle at 50% 65%, #163778 0 16%, transparent 17%);
  filter: blur(0.2px);
  opacity: 0.8;
}

.tokyo-photo-card strong {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  color: #ffffff;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 900;
  text-shadow: 0 8px 16px rgba(0, 4, 32, 0.36);
  text-transform: uppercase;
}

.photo-tape {
  position: absolute;
  left: 50%;
  top: -12px;
  z-index: 3;
  width: 118px;
  height: 36px;
  background: rgba(255, 130, 160, 0.9);
  transform: translateX(-50%) rotate(-2deg);
}

.photo-tape.blue {
  background: rgba(115, 196, 255, 0.9);
}

.tokyo-photo-arrival {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 40%),
    linear-gradient(135deg, #1a9fff, #071c8a 55%, #ff547b);
}

.tokyo-photo-culture {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #ff4e5f, #0c50c8 58%, #ffd95a);
}

.tokyo-photo-fuji {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #8fdcff, #0751c6 52%, #fbb1ce);
}

.tokyo-photo-city {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #07146b, #1249e0 45%, #ff356f);
}

.tokyo-photo-farewell {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #ff5f6d, #0751c6 56%, #ffe15a);
}

.tokyo-tips {
  width: min(1040px, 100%);
  margin: 0 auto clamp(78px, 12vh, 146px);
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.tokyo-tips ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tokyo-tips li {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 20px;
  padding: clamp(16px, 1.8vw, 24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.96rem, 1.24vw, 1.16rem);
  line-height: 1.5;
}

.tokyo-tips strong {
  color: #ffe15a;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.tokyo-tips span {
  display: block;
}

.tokyo-next-stop {
  width: min(900px, 100%);
  min-height: clamp(320px, 42vh, 520px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.tokyo-next-stop p {
  max-width: 780px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  line-height: 1.55;
}

.tokyo-next-stop strong {
  color: #ffe15a;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 5.7rem);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .tokyo-itinerary {
    padding-top: clamp(96px, 14vh, 140px);
  }

  .tokyo-overview,
  .tokyo-tips {
    grid-template-columns: 1fr;
  }

  .tokyo-highlight-grid {
    grid-template-columns: 1fr;
  }

  .tokyo-itinerary-day {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tokyo-day-copy {
    justify-items: start;
    max-width: none;
  }

  .tokyo-route-line,
  .tokyo-itinerary-day::before {
    left: 18px;
  }

  .tokyo-days {
    padding-left: 42px;
  }

  .tokyo-itinerary-day.is-right .tokyo-photo-card,
  .tokyo-itinerary-day.is-right .tokyo-day-copy {
    order: initial;
  }

  .tokyo-photo-card,
  .tokyo-itinerary-day.is-right .tokyo-photo-card {
    transform: rotate(0);
  }
}

.city-coming-section {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(120px, 18vh, 220px) 0;
}

.city-coming-section:first-child {
  padding-top: clamp(220px, 34vh, 380px);
  align-content: start;
}

.city-landing-kicker {
  margin: 0 0 20px;
  color: #ffe100;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.city-landing-content h2 {
  margin: 0;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.character-modal {
  --modal-bg: #05178f;
  --modal-bg-rgb: 5, 23, 143;
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}

.character-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.character-modal-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.character-modal-wave-back {
  fill: #0042c8;
}

.character-modal-wave-front {
  fill: var(--modal-bg);
}

.character-modal-caro {
  --modal-bg: #fb3d78;
  --modal-bg-rgb: 251, 61, 120;
}

.character-modal-caro .character-modal-wave-back {
  fill: #ff79a6;
}

.character-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.96);
}

.character-modal-scroll {
  height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-type: y proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 225, 0, 0.7) rgba(255, 255, 255, 0.08);
}

.character-modal-scroll::-webkit-scrollbar {
  width: 8px;
}

.character-modal-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.character-modal-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 225, 0, 0.72);
}

.subject-section {
  min-height: 100vh;
  scroll-snap-align: start;
  padding: clamp(84px, 9vw, 128px) clamp(24px, 7vw, 112px);
}

.subject-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 92px);
}

.subject-video-frame {
  position: sticky;
  top: clamp(70px, 9vh, 108px);
  width: min(430px, 40vw);
  justify-self: end;
  aspect-ratio: 496 / 864;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.subject-video-frame::before,
.subject-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.subject-video-frame::before {
  background:
    linear-gradient(90deg, var(--modal-bg) 0%, rgba(var(--modal-bg-rgb), 0) 24%),
    linear-gradient(270deg, var(--modal-bg) 0%, rgba(var(--modal-bg-rgb), 0) 24%),
    linear-gradient(180deg, var(--modal-bg) 0%, rgba(var(--modal-bg-rgb), 0) 18%),
    linear-gradient(0deg, var(--modal-bg) 0%, rgba(var(--modal-bg-rgb), 0) 18%);
}

.subject-video-frame::after {
  content: none;
}

.subject-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.subject-copy-block {
  max-width: 720px;
}

.character-modal-kicker {
  margin: 0;
  color: #ffe100;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.character-modal-panel h2 {
  margin: 12px 0 0;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.character-modal-copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.7;
}

.character-modal-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 28px;
}

.character-modal-facts span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.character-modal-close {
  position: fixed;
  top: clamp(16px, 3vw, 30px);
  right: clamp(16px, 3vw, 30px);
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #061986;
  background: #ffe100;
  box-shadow: 0 14px 28px rgba(0, 5, 45, 0.28);
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
}

.character-modal-close:hover,
.character-modal-close:focus-visible {
  color: #ffffff;
  background: #f0238a;
  outline: none;
}

.subject-stats {
  min-height: 78vh;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.subject-stats article {
  min-height: clamp(180px, 24vw, 270px);
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 3.4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.subject-stats strong {
  color: #ffe100;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
}

.subject-stats span {
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.subject-story {
  min-height: 92vh;
  display: grid;
  align-content: center;
  max-width: 980px;
}

.subject-story h3 {
  max-width: 860px;
  margin: 14px 0 24px;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.subject-story p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
  line-height: 1.8;
}

.subject-map {
  min-height: 72vh;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: clamp(12px, 2vw, 24px);
}

.subject-map span {
  min-height: clamp(58px, 7vw, 86px);
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: clamp(1rem, 2.1vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scene-meta-ui {
  position: absolute;
  top: clamp(66px, 6.9vh, 92px);
  left: clamp(96px, 13.5vw, 244px);
  right: clamp(96px, 13.5vw, 244px);
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(112px, 1fr) auto minmax(112px, 1fr);
  align-items: start;
  gap: clamp(20px, 3.4vw, 60px);
  opacity: 0;
  --city-meta-y: 0px;
  transform: translate3d(0, calc(-18px + var(--city-meta-y)), 0);
  transition: opacity 340ms ease, transform 340ms ease;
  pointer-events: none;
}

.scene-meta-ui.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--city-meta-y), 0);
}

.scene-city-heading {
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
}

.scene-city-heading h2 {
  margin: 0;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(2.88rem, 6.2vw, 6.9rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
}

.scene-city-letter {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.scene-city-heading p {
  margin: clamp(9px, 0.9vw, 13px) 0 0;
  color: #ff5aa6;
  font-size: clamp(1.15rem, 2.14vw, 2.45rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.scene-meta-ui .scene-stat,
.scene-meta-ui .scene-city-heading p,
.scene-meta-ui .scene-weather-icon,
.scene-meta-ui .scene-weather-copy {
  will-change: transform, opacity, filter;
}

.scene-stat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  text-shadow: none;
}

.scene-time {
  justify-self: end;
  display: block;
  min-width: clamp(72px, 6.8vw, 110px);
  padding-top: clamp(5px, 0.78vw, 13px);
  text-align: left;
}

.scene-weather {
  justify-self: start;
  padding-top: clamp(6px, 0.9vw, 15px);
}

.scene-stat strong {
  display: block;
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.3vw, 1.53rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.scene-stat > span:not(.scene-weather-icon),
.scene-stat small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.5rem, 0.63vw, 0.68rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.scene-weather-icon {
  width: clamp(20px, 1.53vw, 26px);
  height: clamp(20px, 1.53vw, 26px);
  flex: 0 0 auto;
  display: block;
  filter: invert(1) brightness(1.4);
  opacity: 0.92;
}

.city-info-cards {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.hero[data-scene-phase="hold"]:not(.is-city-header-hidden) .city-info-cards {
  opacity: 1;
  visibility: visible;
}

.city-info-card {
  --city-card-accent: #ff5aa6;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(14px, 1.4vw, 24px);
  max-width: clamp(270px, 22vw, 410px);
  padding: clamp(16px, 1.35vw, 24px);
  border: 1.5px solid rgba(255, 255, 255, 0.58);
  border-radius: clamp(20px, 2.4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05) 42%, rgba(0, 14, 72, 0.28)),
    rgba(0, 11, 54, 0.2);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(1.28);
  -webkit-backdrop-filter: blur(18px) saturate(1.28);
  transform: translate3d(0, 18px, 0) scale(0.97);
  opacity: 0;
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.hero[data-scene="scene-02"] .city-info-card {
  --city-card-accent: #e84f79;
}

.city-info-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 38% 64%, rgba(255, 255, 255, 0.04));
  opacity: 0.42;
  pointer-events: none;
}

.city-info-card::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 12%;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.82);
  pointer-events: none;
}

.city-info-card > * {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 9px, 0);
  transition:
    opacity 520ms ease 300ms,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1) 300ms;
}

.hero[data-scene-phase="hold"]:not(.is-city-header-hidden) .city-info-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero[data-scene-phase="hold"]:not(.is-city-header-hidden) .city-info-card > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.city-info-card-about {
  left: clamp(28px, 3.6vw, 70px);
  top: clamp(150px, 21vh, 232px);
}

.city-info-card-know {
  right: clamp(28px, 4.8vw, 92px);
  top: clamp(178px, 24vh, 268px);
  max-width: clamp(220px, 17vw, 300px);
  transition-delay: 90ms;
}

.city-info-card h3 {
  margin: 0 0 10px;
  color: var(--city-card-accent);
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.15vw, 1.28rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: none;
}

.city-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.78rem, 0.92vw, 1rem);
  line-height: 1.56;
  font-weight: 400;
}

.city-info-icon {
  width: clamp(44px, 4.2vw, 74px);
  color: var(--city-card-accent);
  filter: none;
}

.city-info-icon-food {
  width: clamp(42px, 3.5vw, 62px);
}

.trailer-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.play-icon {
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.menu-button {
  width: 38px;
  height: 34px;
  display: grid;
  align-content: center;
  gap: 7px;
}

.menu-button span {
  width: 100%;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

.character-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.character-stage::after {
  content: none;
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 11%;
  border-radius: 50%;
  background: rgba(0, 0, 37, 0.38);
  filter: blur(15px);
  z-index: -1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.intro-video {
  z-index: 4;
  transition: opacity 240ms ease;
}

.idle-loop-video {
  z-index: 3;
  opacity: 0;
  transition: opacity 140ms linear;
}

.story-video {
  z-index: 1;
}

.scene-loop-video {
  z-index: 2;
  opacity: 0;
}

.story-video-01,
.story-video-02,
.story-video-03,
.story-video-04,
.story-video-05,
.story-video-06,
.story-video-07,
.story-video-08 {
  opacity: 0;
}

.home-interface {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 128px clamp(24px, 6vw, 112px) 70px;
  opacity: var(--home-opacity);
  transform: translateY(var(--home-shift));
  transition: opacity 120ms linear;
  pointer-events: none;
}

.home-interface.is-waiting {
  opacity: 0;
}

.home-interface.is-hidden {
  opacity: 0;
}

.scene-identifier {
  position: absolute;
  left: clamp(20px, 4.6vw, 72px);
  bottom: clamp(20px, 4.6vh, 48px);
  z-index: 42;
  min-width: 54px;
  min-height: 40px;
  display: none;
  place-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 14, 72, 0.42);
  color: var(--yellow);
  box-shadow:
    0 14px 30px rgba(0, 4, 34, 0.28),
    inset 0 0 0 1px rgba(255, 225, 0, 0.12);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.scene-identifier.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scene-identifier.has-timeline {
  bottom: calc(clamp(0px, 0.5vh, 8px) + clamp(76px, 8.8vh, 96px) + 14px);
}

.scene-action-nav {
  position: absolute;
  right: clamp(28px, 3.4vw, 58px);
  bottom: clamp(31px, 4.1vh, 45px);
  z-index: 46;
  display: flex;
  gap: clamp(10px, 0.9vw, 14px);
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.scene-action-nav.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.scene-action-button {
  width: clamp(46px, 3.8vw, 58px);
  height: clamp(46px, 3.8vw, 58px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: #061986;
  background: #ffe100;
  box-shadow:
    0 14px 24px rgba(0, 5, 45, 0.24),
    inset 0 -4px 0 rgba(223, 127, 0, 0.3);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 900;
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.scene-action-button:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.08);
  filter: brightness(1.06);
}

.scene-action-button:disabled {
  opacity: 0.38;
  cursor: default;
}

.journey-timeline {
  position: absolute;
  left: clamp(24px, 4vw, 72px);
  right: clamp(150px, 13vw, 230px);
  bottom: clamp(0px, 0.5vh, 8px);
  z-index: 42;
  --timeline-progress: 0;
  --timeline-fill-progress: 12.5;
  --timeline-y: 28%;
  --timeline-bg-top: 0, 54, 210;
  --timeline-bg-mid: 0, 18, 100;
  --timeline-bg-bottom: 0, 8, 55;
  height: clamp(76px, 8.8vh, 96px);
  padding: 0 clamp(24px, 4.8vw, 70px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.98);
  transition: opacity 340ms ease, transform 340ms ease;
  pointer-events: none;
  backdrop-filter: none;
}

.hero.is-city-header-hidden .nav,
.hero.is-city-header-hidden .scene-meta-ui,
.hero.is-city-header-hidden .scene-identifier,
.hero.is-city-header-hidden .journey-timeline {
  opacity: 0;
  pointer-events: none;
}

.journey-timeline.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.timeline-line,
.timeline-line-fill {
  pointer-events: none;
  position: absolute;
  left: clamp(48px, 6vw, 94px);
  right: clamp(48px, 6vw, 94px);
  top: var(--timeline-y);
  height: 2px;
  transform: translateY(-50%);
}

.timeline-line {
  overflow: visible;
  border: 0;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.48) 0 8px,
    rgba(255, 255, 255, 0) 8px 14px
  );
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

.timeline-line-fill {
  left: 0;
  top: 0;
  right: auto;
  width: calc(100% * var(--timeline-fill-progress) / 100);
  height: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: #ff5aa6;
  box-shadow: 0 0 16px rgba(255, 90, 166, 0.46);
  transform: none;
  transition: width 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-line-fill::after {
  content: none;
}

.timeline-stop {
  position: absolute;
  left: calc(clamp(48px, 6vw, 94px) + (100% - (clamp(48px, 6vw, 94px) * 2)) * var(--stop-position) / 100);
  top: var(--timeline-y);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.62rem, 0.82vw, 0.84rem);
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: auto;
  transition: color 180ms ease, transform 180ms ease;
}

.timeline-stop:hover {
  color: #ff75b5;
  transform: translateX(-50%) translateY(-2px);
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dfe7ff;
  transform: translateY(-50%);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.08),
    0 0 14px rgba(255, 255, 255, 0.18);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.timeline-stop.is-passed .timeline-dot {
  background: #ff5aa6;
  box-shadow:
    0 0 0 4px rgba(255, 90, 166, 0.16),
    0 0 18px rgba(255, 90, 166, 0.5);
}

.timeline-stop.is-active {
  color: #ff75b5;
}

.timeline-stop.is-active .timeline-dot {
  background: transparent;
  border: 4px solid #ff5aa6;
  transform: translateY(-50%) scale(1.25);
}

.timeline-label {
  display: block;
  max-width: 15ch;
  transform: translateY(-4px);
  pointer-events: none;
}

.timeline-train {
  position: absolute;
  left: calc(clamp(48px, 6vw, 94px) + (100% - (clamp(48px, 6vw, 94px) * 2)) * var(--timeline-progress) / 100);
  top: calc(var(--timeline-y) - clamp(34px, 4vw, 52px));
  width: clamp(70px, 7.2vw, 112px);
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  transition: left 420ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.timeline-train img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(0, 4, 36, 0.36));
}

.home-interface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 53, 170, 0.08), rgba(0, 11, 66, 0.24) 66%),
    linear-gradient(0deg, rgba(0, 6, 39, 0.5) 0%, transparent 28%, transparent 70%, rgba(0, 6, 39, 0.32) 100%);
  pointer-events: none;
}

.character-names {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.character-name {
  position: absolute;
  width: clamp(132px, 16vw, 288px);
  height: auto;
  opacity: 0;
  filter: blur(18px) drop-shadow(0 18px 18px rgba(0, 3, 35, 0.35));
  transform: translate3d(0, 24px, 0) scale(0.62);
  transform-origin: center bottom;
  will-change: transform, opacity, filter;
}

.name-caro {
  left: clamp(25%, 33.5vw, 37%);
  top: clamp(128px, 16vh, 178px);
}

.name-oscar {
  right: clamp(25%, 31vw, 36%);
  top: clamp(146px, 18vh, 198px);
  width: clamp(125px, 15.2vw, 274px);
}

.character-names.is-visible .character-name {
  animation:
    nameReveal 920ms cubic-bezier(0.16, 1, 0.3, 1) forwards,
    nameFloat 3.6s ease-in-out 950ms infinite;
}

.character-names.is-visible .name-oscar {
  animation-delay: 120ms, 1070ms;
}

.home-interface.is-exiting .character-name {
  animation: nameExit 760ms cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

.home-interface.is-exiting .name-caro {
  animation-delay: 80ms;
}

@keyframes nameReveal {
  0% {
    opacity: 0;
    filter: blur(18px) drop-shadow(0 18px 18px rgba(0, 3, 35, 0.35));
    transform: translate3d(0, 24px, 0) scale(0.62);
  }

  70% {
    opacity: 1;
    filter: blur(1px) drop-shadow(0 18px 18px rgba(0, 3, 35, 0.35));
    transform: translate3d(0, -8px, 0) scale(1.08);
  }

  100% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 18px 18px rgba(0, 3, 35, 0.35));
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes nameFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(0, -9px, 0) rotate(1deg);
  }
}

@keyframes nameExit {
  0% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 18px 18px rgba(0, 3, 35, 0.35));
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 0;
    filter: blur(18px) drop-shadow(0 18px 18px rgba(0, 3, 35, 0.35));
    transform: translate3d(0, 24px, 0) scale(0.62);
  }
}

.hero-title-block {
  position: relative;
  z-index: 2;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --warp-x: 0px;
  --warp-y: 0px;
  width: min(928px, 88vw);
  display: grid;
  justify-items: center;
  align-self: end;
  margin-bottom: min(4vh, 42px);
  text-align: center;
  filter: drop-shadow(0 24px 24px rgba(0, 4, 34, 0.32));
  perspective: 900px;
  pointer-events: auto;
  transform:
    translate3d(var(--warp-x), calc(var(--warp-y) + clamp(18px, 4vh, 48px)), 0)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 260ms ease;
  will-change: transform;
}

.title-overline {
  position: relative;
  margin: 0 0 -0.04em;
  font-size: clamp(3.2rem, 8vw, 6.16rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-title-block h1 {
  position: relative;
  margin: 0;
  font-family: "Arial Black", Inter, system-ui, sans-serif;
  font-size: clamp(5.44rem, 15.7vw, 15.2rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.74;
  letter-spacing: 0;
  text-transform: uppercase;
  filter: drop-shadow(0 18px 20px rgba(0, 2, 32, 0.58));
}

.headline-letter {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 26px, 100px) scale(1.5) rotateX(22deg);
  filter: blur(18px);
  will-change: transform, opacity, filter;
}

.title-overline .headline-letter {
  color: #ffffff;
  text-shadow:
    2px 2px 0 rgba(180, 184, 208, 0.92),
    4px 5px 0 rgba(12, 20, 82, 0.82),
    0 18px 26px rgba(0, 2, 32, 0.44);
}

.title-overline .headline-letter::after {
  content: none;
}

.hero-title-block h1 .headline-letter {
  color: transparent;
  background:
    linear-gradient(180deg, #fffef0 0%, #fff05a 17%, #ffd000 36%, #f39a00 66%, #8f3900 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px #d98600;
  text-shadow:
    1px -1px 0 #ffe35a,
    2px -2px 0 #eaa900,
    3px -3px 0 #bd7800,
    4px -4px 0 #8d5200,
    0 4px 0 #bc7400,
    0 7px 0 #7e4700,
    0 12px 10px rgba(34, 14, 0, 0.32);
}

.hero-title-block h1 .headline-letter::after {
  content: attr(data-letter);
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, transparent 18%),
    linear-gradient(180deg, transparent 0%, transparent 36%, rgba(74, 28, 0, 0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  mix-blend-mode: multiply;
  opacity: 0.9;
  pointer-events: none;
}

.headline-letter::after {
  content: attr(data-letter);
}

.title-overline.is-visible .headline-letter,
.hero-title-block h1.is-visible .headline-letter {
  animation: letterReveal 920ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--letter-index) * 70ms);
}

.hero-title-block h1.is-visible .headline-letter {
  animation-duration: 1080ms;
  animation-delay: calc(var(--letter-index) * 95ms);
}

.home-interface.is-exiting .title-overline .headline-letter,
.home-interface.is-exiting .hero-title-block h1 .headline-letter {
  animation: letterExit 720ms cubic-bezier(0.7, 0, 0.84, 0) forwards;
  animation-delay: var(--exit-delay);
}

@keyframes letterReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 26px, 120px) scale(1.55) rotateX(22deg);
    filter: blur(18px);
  }

  68% {
    opacity: 1;
    transform: translate3d(0, -8px, 18px) scale(1.04) rotateX(-4deg);
    filter: blur(1px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0);
    filter: blur(0);
  }
}

@keyframes letterExit {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0);
    filter: blur(0);
  }

  32% {
    opacity: 1;
    transform: translate3d(0, -8px, 18px) scale(1.04) rotateX(-4deg);
    filter: blur(1px);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 26px, 120px) scale(1.55) rotateX(22deg);
    filter: blur(18px);
  }
}

.hero-subtitle {
  margin: 22px 0 18px;
  color: var(--white);
  font-size: clamp(0.8rem, 1.6vw, 1.38rem);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 8px 20px rgba(0, 3, 29, 0.52);
  opacity: 0;
  transform: translateY(18px);
  filter: blur(10px);
  transition: opacity 720ms ease, transform 720ms ease, filter 720ms ease;
}

.hero-subtitle strong {
  color: var(--yellow);
}

.hero-subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.home-interface.is-exiting .hero-subtitle {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(10px);
  transition-delay: 120ms;
}

.start-button {
  position: relative;
  isolation: isolate;
  min-width: min(288px, 76vw);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 27px;
  border-radius: 999px;
  background: var(--yellow);
  color: #06124c;
  font-size: clamp(0.78rem, 1.12vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  pointer-events: auto;
  box-shadow: 0 16px 28px rgba(0, 2, 36, 0.34);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  filter: blur(10px);
  overflow: hidden;
  transition:
    opacity 720ms ease,
    transform 180ms ease,
    filter 720ms ease,
    background 420ms ease,
    color 420ms ease;
}

.start-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.start-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #ff7a00, #ffb000, #ff6a00);
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
}

.start-button:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.start-button.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.home-interface.is-exiting .start-button {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  filter: blur(10px);
  transition-duration: 520ms;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 580ms ease;
}

.scroll-cue.is-visible {
  opacity: 1;
}

.home-interface.is-exiting .scroll-cue {
  opacity: 0;
  transition-duration: 420ms;
}

.mouse-icon {
  width: 21px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 999px;
  position: relative;
  animation: mouseFloat 1.65s ease-in-out infinite;
}

.mouse-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 8px;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%);
  animation: mouseWheelDown 1.65s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.chevron-down {
  grid-column: 1 / -1;
  justify-self: center;
  width: 15px;
  height: 15px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: arrowDown 1.65s ease-in-out infinite;
}

@keyframes mouseFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(3px);
  }
}

@keyframes mouseWheelDown {
  0% {
    opacity: 0;
    transform: translate(-50%, -3px);
  }

  25% {
    opacity: 1;
  }

  70% {
    opacity: 1;
    transform: translate(-50%, 10px);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

@keyframes arrowDown {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(-2px) rotate(45deg);
  }

  45% {
    opacity: 1;
    transform: translateY(6px) rotate(45deg);
  }
}

.feature {
  position: absolute;
  z-index: 4;
  width: min(210px, 19vw);
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  text-shadow: 0 4px 16px rgba(0, 8, 47, 0.38);
}

.feature-left-top {
  left: 11vw;
  top: 31%;
}

.feature-left-bottom {
  left: 11vw;
  bottom: 27%;
}

.feature-right-top {
  right: 11vw;
  top: 31%;
}

.feature-right-bottom {
  right: 11vw;
  bottom: 27%;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: block;
  position: relative;
  color: var(--yellow);
}

.icon-trophy::before {
  content: "🏆";
  font-size: 2.35rem;
  line-height: 1;
  filter: saturate(1.4);
}

.icon-bolt::before {
  content: "⚡";
  font-size: 2.55rem;
  line-height: 1;
}

.icon-shield {
  width: 34px;
  height: 40px;
  border: 3px solid var(--yellow);
  border-radius: 18px 18px 24px 24px;
}

.icon-shield::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 17px;
  height: 17px;
  border-right: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  background: transparent;
  transform: translateX(-50%) rotate(45deg);
}

.icon-globe {
  border: 3px solid var(--yellow);
  border-radius: 50%;
}

.icon-globe::before,
.icon-globe::after {
  content: "";
  position: absolute;
  inset: 8px 2px;
  border: 2px solid var(--yellow);
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
}

.icon-globe::after {
  inset: 2px 13px;
  border: 2px solid var(--yellow);
  border-top: 0;
  border-bottom: 0;
}

.feature h2 {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.feature p {
  margin: 0;
  color: var(--soft-white);
  font-size: clamp(0.86rem, 1.35vw, 1.12rem);
  font-weight: 600;
  line-height: 1.4;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(760px, 74vw);
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(15vh);
  pointer-events: none;
}

.born-row {
  width: min(430px, 62vw);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 8px;
}

.born-row span {
  height: 3px;
  background: var(--yellow);
}

.born-row p {
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-style: italic;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(6.5rem, 18vw, 14.2rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.08),
    0 24px 36px rgba(0, 0, 45, 0.35);
}

.lead {
  margin: 24px 0 0;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tagline {
  margin: 8px 0 28px;
  color: var(--yellow);
  font-size: clamp(0.96rem, 1.8vw, 1.42rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-action {
  min-width: min(380px, 82vw);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border-radius: 0;
  background: var(--yellow);
  color: #121200;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: auto;
  box-shadow: 0 14px 28px rgba(0, 0, 41, 0.24);
  transition: transform 160ms ease, filter 160ms ease;
}

.primary-action:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.hero-video-trigger {
  position: absolute;
  left: 50%;
  bottom: clamp(38px, 8vh, 92px);
  z-index: 7;
  transform: translateX(-50%);
}

.hero-video-trigger:hover {
  transform: translateX(-50%) translateY(-2px);
}

.content-band,
.steps {
  display: grid;
  gap: clamp(22px, 5vw, 64px);
  padding: clamp(54px, 8vw, 96px) clamp(22px, 5vw, 72px);
}

.content-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  align-items: start;
  background: #f3f7ff;
  color: #06113c;
}

.section-kicker {
  margin: 0 0 16px;
  color: #0042c8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.content-band h2 {
  max-width: 520px;
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 0.98;
}

.content-band p:last-child {
  max-width: 680px;
  color: rgba(6, 17, 60, 0.68);
  font-size: 1.12rem;
  line-height: 1.8;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #00155d;
}

.steps article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--yellow);
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.steps p {
  color: var(--soft-white);
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: auto auto;
    gap: 18px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    justify-self: end;
  }

  .scene-meta-ui {
    top: 66px;
    left: clamp(78px, 10vw, 128px);
    right: clamp(78px, 10vw, 128px);
    gap: 18px;
  }

  .city-info-card-about {
    left: 24px;
    top: clamp(148px, 20vh, 210px);
  }

  .city-info-card-know {
    right: 24px;
    top: clamp(168px, 23vh, 236px);
  }

  .feature {
    width: 160px;
  }

  .subject-hero {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .subject-video-frame {
    position: relative;
    top: auto;
    width: min(420px, 100%);
    justify-self: start;
    aspect-ratio: 1.12;
  }

  .subject-stats {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .feature-left-top,
  .feature-left-bottom {
    left: 4vw;
  }

  .feature-right-top,
  .feature-right-bottom {
    right: 4vw;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 94vh;
    padding-top: 92px;
    padding-bottom: 74px;
  }

  .city-info-cards {
    display: none;
  }

  .nav {
    padding: 24px 20px 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 88px;
  }

  .nav-actions {
    gap: 16px;
  }

  .nav-round-button {
    width: 44px;
    height: 44px;
  }

  .scene-meta-ui {
    top: 68px;
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .scene-city-heading {
    grid-column: 1 / -1;
    grid-row: 1;
    order: -1;
  }

  .scene-city-heading h2 {
    font-size: clamp(2.1rem, 11.5vw, 3.7rem);
    font-weight: 700;
  }

  .scene-city-heading p {
    font-size: clamp(0.98rem, 5.35vw, 1.75rem);
  }

  .scene-time,
  .scene-weather {
    padding-top: 2px;
    justify-self: center;
  }

  .scene-stat {
    gap: 8px;
  }

  .trailer-button {
    display: none;
  }

  .menu-button {
    width: 32px;
    height: 30px;
  }

  .feature {
    display: none;
  }

  .hero-copy {
    width: 100%;
    transform: translateY(19vh);
  }

  .born-row {
    width: min(320px, 84vw);
    gap: 14px;
  }

  .home-interface {
    padding: 92px 20px 64px;
  }

  .hero-title-block {
    width: min(720px, 86vw);
    margin-bottom: min(2vh, 22px);
    transform:
      translate3d(var(--warp-x), calc(var(--warp-y) + clamp(22px, 5vh, 54px)), 0)
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y));
  }

  .title-overline {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .hero-title-block h1 {
    font-size: clamp(3.6rem, 18vw, 6.3rem);
  }

  .hero-subtitle {
    max-width: min(330px, 76vw);
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: clamp(0.72rem, 3.2vw, 0.98rem);
    line-height: 1.25;
  }

  .start-button {
    min-width: min(250px, 72vw);
    min-height: 44px;
    padding: 0 20px;
    font-size: clamp(0.72rem, 3vw, 0.9rem);
  }

  .lead {
    margin-top: 18px;
    max-width: 340px;
    line-height: 1.25;
  }

  .tagline {
    max-width: 360px;
    line-height: 1.35;
  }

  .content-band,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 720px) {
  .hero-title-block {
    width: min(760px, 84vw);
    margin-bottom: 0;
    transform:
      translate3d(var(--warp-x), calc(var(--warp-y) + clamp(26px, 6vh, 58px)), 0)
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y));
  }

  .title-overline {
    font-size: clamp(2.4rem, 7vw, 4.8rem);
  }

  .hero-title-block h1 {
    font-size: clamp(4rem, 13.4vw, 9.2rem);
  }

  .hero-subtitle {
    margin: 16px 0 12px;
    font-size: clamp(0.72rem, 1.25vw, 1rem);
  }

  .start-button {
    min-width: min(250px, 68vw);
    min-height: 44px;
    padding: 0 22px;
    font-size: clamp(0.72rem, 1vw, 0.88rem);
  }
}

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

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