:root {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #081b45;
  background: #eff8ff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --line: #dce5ee;
  --blue: #0668e8;
  --soft: #f4f8fb;
  --muted: #5f7188;
  --violet: #6e58e8;
  --ink: #0c1728;
}

* {
  box-sizing: border-box;
}

html,
body,
.home-page {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

a,
a:hover,
a:focus,
a:visited {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 229, 238, 0.82);
  background: rgba(251, 253, 255, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  border-radius: 8px;
}

.content-page .brand img {
  border-radius: 22%;
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-header nav a:hover,
footer nav a:hover {
  color: var(--blue);
}

.header-cta,
.primary,
.secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 760;
}

.header-cta,
.primary {
  background: var(--ink);
  color: #fff;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switch {
  position: relative;
}

.lang-switch__trigger {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.lang-switch__flag {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(8, 27, 69, 0.08);
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  min-width: 168px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(42, 72, 102, 0.14);
}

.lang-switch__option {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.lang-switch__option[aria-selected='true'] {
  background: var(--soft);
  font-weight: 700;
}

.lang-switch__option:hover {
  background: #eef4fb;
}

.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.home-page {
  background: #fbfdff;
}

.home-page main {
  display: block;
}

.home-page .hero-shell {
  min-height: 100vh;
  padding-top: clamp(72px, 8vw, 96px);
}

.eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section h2,
.route-section h2,
.content-section h2,
.download-strip h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section p,
.moment-band p,
.feature-list p,
.route-step p,
.article-card p,
.faq-list details p {
  color: var(--muted);
  line-height: 1.65;
}

.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.text-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.footer-brand .brijjo-mark-small {
  width: 30px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

footer nav a {
  font-weight: 700;
  text-decoration: none;
}

.article-card {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.hero-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 34%, rgba(255, 255, 255, 0.98) 0 19%, rgba(255, 255, 255, 0) 43%),
    radial-gradient(circle at 72% 28%, rgba(134, 194, 238, 0.74), rgba(204, 232, 252, 0.26) 34%, rgba(255, 255, 255, 0) 63%),
    linear-gradient(112deg, #ffffff 0%, #f8fcff 31%, #dff2ff 61%, #9bcef1 100%);
}

.hero-shell::before {
  position: absolute;
  inset: -8% -6% auto auto;
  width: 70vw;
  height: 70vw;
  min-width: 720px;
  min-height: 720px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 63%);
  pointer-events: none;
}

.hero-radiance {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 21%, rgba(255, 255, 255, 0.18) 46%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 72%, rgba(255, 255, 255, 0.76) 92%, #f9fcff 100%);
  pointer-events: none;
}

.china-pulse {
  position: absolute;
  z-index: 2;
  top: 52%;
  left: 71%;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 18%, rgba(172, 144, 255, 0.72) 20% 36%, rgba(172, 144, 255, 0) 62%),
    radial-gradient(circle, rgba(130, 109, 255, 0.52), rgba(130, 109, 255, 0));
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.9),
    0 0 28px rgba(142, 121, 255, 0.58),
    0 0 70px rgba(142, 121, 255, 0.36);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulseCore 2.8s ease-in-out infinite;
}

.china-pulse::before,
.china-pulse::after,
.china-pulse i {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.china-pulse::before {
  width: 78px;
  height: 78px;
  opacity: 0.55;
}

.china-pulse::after {
  width: 132px;
  height: 132px;
  opacity: 0.32;
}

.china-pulse i:first-child {
  width: 190px;
  height: 190px;
  opacity: 0.18;
}

.china-pulse i:last-child {
  width: 260px;
  height: 260px;
  opacity: 0.12;
}

.earth-scene {
  position: absolute;
  inset: -18vh -5vw -1vh 16vw;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  width: min(100%, 1640px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 8vh clamp(48px, 5.3vw, 102px) 12vh;
}

.hero-copy {
  max-width: 720px;
  transform: translateY(-2.8vh);
}

.brijjo-logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(32px, 3.6vw, 58px);
  color: #081b45;
  font-size: clamp(38px, 3.8vw, 62px);
  font-weight: 700;
  letter-spacing: 0;
}

.brijjo-logo.compact {
  gap: 9px;
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 730;
}

.brijjo-mark {
  display: block;
  width: clamp(76px, 6.8vw, 112px);
  height: auto;
  object-fit: contain;
  border-radius: 22%;
  filter: drop-shadow(0 14px 18px rgba(73, 107, 255, 0.18));
}

.brijjo-mark-small {
  width: 34px;
}

h1 {
  max-width: 800px;
  margin: 0;
  color: #071a42;
  font-size: clamp(52px, 4.4vw, 76px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 168px;
  margin-top: clamp(28px, 3.2vw, 44px);
  padding: 10px 18px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  background: #000000;
  box-shadow:
    0 10px 24px rgba(7, 26, 66, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.app-store-btn:hover {
  color: #ffffff;
  background: #222222;
  box-shadow:
    0 14px 28px rgba(7, 26, 66, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.app-store-btn:hover .app-store-btn__apple,
.app-store-btn:hover .app-store-btn__copy {
  color: #ffffff;
}

.app-store-btn:active {
  transform: translateY(0);
}

.app-store-btn__apple {
  flex: 0 0 auto;
  width: 28px;
  height: auto;
}

.app-store-btn__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.app-store-btn__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.app-store-btn__title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.phone-stage {
  position: relative;
  justify-self: center;
  width: clamp(295px, 21vw, 384px);
  transform: translateY(0.5vh);
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 0.55;
  padding: 14px;
  border: 1px solid rgba(113, 146, 190, 0.3);
  border-radius: 42px;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.96), rgba(225, 238, 250, 0.74)),
    linear-gradient(90deg, #ffffff, #b4c7dc);
  box-shadow:
    -28px 28px 54px rgba(91, 128, 171, 0.22),
    10px 0 28px rgba(255, 255, 255, 0.68),
    inset -7px -3px 10px rgba(105, 134, 170, 0.24),
    inset 5px 0 6px rgba(255, 255, 255, 0.98);
}

.phone::after {
  position: absolute;
  inset: 24px auto 56px 13px;
  width: 7px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
  opacity: 0.62;
}

.phone::before {
  position: absolute;
  top: 11px;
  left: 34%;
  width: 32%;
  height: 5px;
  border-radius: 999px;
  content: "";
  background: rgba(72, 91, 123, 0.14);
}

.phone-side-button {
  position: absolute;
  top: 26%;
  right: -5px;
  width: 4px;
  height: 74px;
  border-radius: 999px;
  background: rgba(105, 128, 161, 0.32);
}

.phone-screen {
  height: 100%;
  padding: 19px 16px 14px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 70% 4%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #f9fcff 0%, #edf5ff 100%);
  box-shadow: inset 0 0 0 1px rgba(60, 90, 135, 0.08);
}

.status-bar {
  display: flex;
  justify-content: space-between;
  height: 17px;
  color: #0b1a36;
  font-size: 10px;
  font-weight: 700;
}

.status-icons {
  opacity: 0.86;
}

.map-card,
.audio-card,
.hint-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(127, 157, 200, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(78, 113, 158, 0.16);
}

.map-card {
  height: 30.5%;
  min-height: 154px;
  background:
    radial-gradient(circle at 20% 68%, rgba(107, 144, 255, 0.12), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, rgba(247, 251, 255, 0.94), rgba(224, 235, 248, 0.92));
}

.map-grid {
  position: absolute;
  inset: -18%;
  opacity: 0.48;
  background:
    linear-gradient(24deg, transparent 48%, rgba(154, 172, 199, 0.38) 49% 50%, transparent 51%),
    linear-gradient(144deg, transparent 48%, rgba(154, 172, 199, 0.28) 49% 50%, transparent 51%);
  background-size: 48px 42px;
  transform: rotate(-8deg);
}

.map-route {
  position: absolute;
  inset: 13px 15px;
  width: calc(100% - 30px);
  height: calc(100% - 26px);
  fill: none;
}

.map-route path {
  stroke: #6a91ff;
  stroke-width: 4;
  stroke-dasharray: 11 9;
  stroke-linecap: round;
  animation: dashMove 2.7s linear infinite;
}

.map-route circle {
  fill: #ffffff;
  stroke: #755fff;
  stroke-width: 5;
  filter: drop-shadow(0 0 8px rgba(112, 91, 255, 0.46));
}

.map-locate {
  position: absolute;
  right: 14px;
  bottom: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #4b73ff;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(66, 95, 143, 0.14);
}

.audio-card,
.hint-card {
  display: grid;
  grid-template-columns: 70px 1fr 34px;
  align-items: center;
  gap: 12px;
  min-height: 90px;
  margin-top: 14px;
  padding: 10px;
}

.audio-card button {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #6684ff;
}

.thumb {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 12px;
  background: #d5e7f8;
}

.temple {
  background:
    linear-gradient(180deg, rgba(226, 240, 255, 0.05), rgba(31, 68, 115, 0.34)),
    radial-gradient(circle at 50% 21%, #243f78 0 8%, transparent 9%),
    linear-gradient(90deg, transparent 21%, #243f78 22% 78%, transparent 79%),
    linear-gradient(180deg, transparent 0 38%, #3f5d95 39% 48%, transparent 49%),
    linear-gradient(135deg, #eaf6ff, #9fc7e7);
}

.food {
  background:
    radial-gradient(circle at 46% 42%, #fff6dc 0 12%, #dca85b 13% 18%, transparent 19%),
    radial-gradient(circle at 61% 58%, #f5dca4 0 8%, transparent 9%),
    radial-gradient(circle at 31% 64%, #f4c26d 0 9%, transparent 10%),
    linear-gradient(135deg, #efe0c4, #c88f5a);
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  gap: 3px;
}

.waveform i {
  display: block;
  width: 3px;
  height: var(--bar);
  border-radius: 999px;
  background: linear-gradient(180deg, #77d2ff, #7b5cff);
  animation: wave 1.3s ease-in-out infinite alternate;
  animation-delay: calc(var(--bar) * -0.012);
}

.hint-card {
  grid-template-columns: 70px 1fr 18px;
}

.hint-card p {
  margin: 0;
  color: #14234d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.hint-card span {
  color: #98a6bb;
  font-size: 30px;
}

.phone-nav {
  position: absolute;
  right: 25px;
  bottom: 17px;
  left: 25px;
  display: flex;
  justify-content: space-between;
  color: #a5b0c1;
}

.phone-nav .active {
  color: #5a86ff;
}

.phone-shadow {
  position: absolute;
  right: -19%;
  bottom: -8%;
  width: 122%;
  height: 16%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(54, 90, 137, 0.22), rgba(54, 90, 137, 0));
  filter: blur(3px);
  transform: rotate(-3deg);
}

.phone-glow {
  position: absolute;
  z-index: 0;
  inset: 10% -18% 6% 18%;
  border-radius: 42%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.7), rgba(152, 195, 236, 0.18) 48%, rgba(255, 255, 255, 0));
  filter: blur(18px);
}

.skyline-layer {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30vh;
  min-height: 230px;
  pointer-events: none;
}

.mountains {
  position: absolute;
  right: -3vw;
  bottom: 38%;
  left: 0;
  height: 40%;
  opacity: 0.24;
  background:
    linear-gradient(160deg, transparent 0 28%, #aac1d7 29% 41%, transparent 42%),
    linear-gradient(150deg, transparent 0 35%, #b7cde1 36% 48%, transparent 49%),
    linear-gradient(145deg, transparent 0 42%, #c4d5e3 43% 52%, transparent 53%);
  filter: blur(1px);
}

.skyline {
  position: absolute;
  bottom: 23%;
  left: 26%;
  display: flex;
  align-items: flex-end;
  width: 34vw;
  min-width: 380px;
  height: 180px;
  gap: 7px;
  opacity: 0.62;
  filter: drop-shadow(0 10px 12px rgba(80, 122, 156, 0.14));
}

.building,
.tower {
  display: block;
  width: 22px;
  background: linear-gradient(180deg, rgba(96, 144, 184, 0.86), rgba(224, 239, 250, 0.25));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.b1 { height: 48px; }
.b2 { height: 76px; width: 30px; }
.b3 { height: 62px; }
.b4 { height: 108px; width: 42px; clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%); }
.b5 { height: 130px; width: 34px; clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%); }
.b6 { height: 66px; width: 28px; }
.b7 { height: 42px; width: 34px; }
.b8 { height: 58px; width: 25px; }

.pearl {
  position: relative;
  width: 12px;
  height: 142px;
  background: linear-gradient(180deg, rgba(92, 133, 184, 0.8), rgba(214, 235, 249, 0.22));
}

.pearl::before,
.pearl::after {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.pearl::before {
  top: 24px;
  width: 44px;
  height: 44px;
  background: radial-gradient(circle, rgba(113, 153, 200, 0.78), rgba(201, 228, 248, 0.4));
}

.pearl::after {
  top: 83px;
  width: 28px;
  height: 28px;
  background: rgba(113, 153, 200, 0.55);
}

.shanghai,
.center {
  width: 20px;
  background: linear-gradient(180deg, rgba(70, 124, 178, 0.86), rgba(220, 238, 251, 0.2));
}

.shanghai {
  height: 168px;
  clip-path: polygon(46% 0, 65% 0, 62% 19%, 82% 100%, 20% 100%, 41% 19%);
}

.center {
  height: 150px;
  width: 26px;
  clip-path: polygon(50% 0, 70% 52%, 64% 100%, 35% 100%, 29% 52%);
}

.clouds {
  position: absolute;
  right: -8%;
  bottom: -22%;
  left: -8%;
  height: 66%;
  background:
    radial-gradient(ellipse at 12% 64%, rgba(255, 255, 255, 0.98) 0 10%, transparent 27%),
    radial-gradient(ellipse at 27% 42%, rgba(255, 255, 255, 0.88) 0 12%, transparent 30%),
    radial-gradient(ellipse at 44% 54%, rgba(255, 255, 255, 0.88) 0 13%, transparent 33%),
    radial-gradient(ellipse at 63% 49%, rgba(255, 255, 255, 0.95) 0 12%, transparent 31%),
    radial-gradient(ellipse at 82% 60%, rgba(255, 255, 255, 0.92) 0 15%, transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 60%);
  filter: blur(6px);
}

.c2 {
  bottom: -4%;
  opacity: 0.78;
  transform: scaleX(1.08);
}

.c3 {
  bottom: -34%;
  opacity: 0.84;
  filter: blur(13px);
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(1vh);
  }
  50% {
    transform: translateY(calc(1vh - 14px));
  }
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -40;
  }
}

@keyframes wave {
  to {
    transform: scaleY(0.62);
    opacity: 0.72;
  }
}

@keyframes flightBeamFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -456;
  }
}

@keyframes pulseCore {
  50% {
    box-shadow:
      0 0 20px rgba(255, 255, 255, 0.96),
      0 0 36px rgba(142, 121, 255, 0.7),
      0 0 92px rgba(142, 121, 255, 0.44);
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@media (max-width: 900px) {
  body {
    overflow: auto;
  }

  .earth-scene {
    inset: -12vh -64vw 14vh -14vw;
    opacity: 0.82;
  }

  .hero-radiance {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 20%, rgba(255, 255, 255, 0.42) 52%, rgba(255, 255, 255, 0.88) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
  }

  .china-pulse {
    top: 43%;
    left: 77%;
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.72);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 100svh;
    padding: 44px 24px 180px;
  }

  .hero-copy {
    max-width: 430px;
    transform: none;
  }

  .brijjo-logo {
    gap: 14px;
    margin-bottom: 28px;
    font-size: 39px;
  }

  .brijjo-mark {
    width: 70px;
  }

  h1 {
    max-width: calc(100vw - 48px);
    font-size: clamp(39px, 11vw, 54px);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .phone-stage {
    justify-self: center;
    width: min(72vw, 306px);
    margin-top: 2vh;
  }

  .skyline {
    left: 10%;
    width: 70vw;
    min-width: 300px;
    transform: scale(0.78);
    transform-origin: bottom left;
  }
}

@media (max-width: 460px) {
  .hero-content {
    padding: 36px 18px 152px;
  }

  .brijjo-logo {
    margin-bottom: 22px;
  }

  .brijjo-logo.compact {
    font-size: 19px;
  }

  h1 {
    max-width: calc(100vw - 36px);
    font-size: clamp(38px, 10.2vw, 46px);
  }

  .brijjo-mark-small {
    width: 29px;
  }

  .phone-stage {
    width: min(78vw, 282px);
  }

  .phone {
    border-radius: 34px;
    padding: 11px;
  }

  .phone-screen {
    padding: 17px 13px 13px;
    border-radius: 27px;
  }

  .map-card {
    min-height: 126px;
  }

  .audio-card,
  .hint-card {
    grid-template-columns: 56px 1fr 30px;
    gap: 9px;
    min-height: 74px;
    margin-top: 10px;
    padding: 8px;
  }

  .thumb {
    width: 56px;
    height: 56px;
  }

  .hint-card {
    grid-template-columns: 56px 1fr 15px;
  }

  .hint-card p {
    font-size: 12px;
  }
}

html {
  scroll-behavior: smooth;
}

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

#travel-moments,
#features,
#content {
  scroll-margin-top: clamp(84px, 9vw, 112px);
}

body.content-page {
  background: #fbfdff;
  color: #081b45;
}

.content-page .site-header {
  position: sticky;
  border-bottom: 1px solid rgba(220, 229, 238, 0.82);
  background: rgba(251, 253, 255, 0.92);
}

.content-page .article-body,
.content-page .download-page {
  max-width: 760px;
  padding-top: clamp(36px, 6vw, 72px);
  padding-bottom: clamp(64px, 10vw, 108px);
}

.content-page .article-body > .eyebrow,
.content-page .download-page > .eyebrow {
  margin-bottom: 14px;
}

.hero-lede {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.72;
}

.content-page .article-body h1,
.content-page .download-page h1,
.content-page .faq-page h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.content-page .article-body h2 {
  margin-top: 46px;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.content-page .article-body p,
.content-page .article-body li {
  font-size: 1.02rem;
}

.content-page .article-body ul {
  padding-left: 1.25rem;
}

.content-page .article-body li::marker {
  color: var(--blue);
}

.content-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.content-back:hover {
  opacity: 0.78;
}

.content-page .article-list {
  gap: 16px;
  margin-top: 36px;
}

.content-page .article-list a {
  position: relative;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(220, 229, 238, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(42, 72, 102, 0.06);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.content-page .article-list a::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--blue);
  font-size: 1.35rem;
  content: "›";
  transform: translateY(-50%);
}

.content-page .article-list a:hover {
  border-color: rgba(6, 104, 232, 0.22);
  box-shadow: 0 24px 56px rgba(42, 72, 102, 0.1);
  transform: translateY(-2px);
}

.content-page .article-list h2 {
  max-width: calc(100% - 28px);
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  line-height: 1.28;
}

.content-page .article-list p {
  max-width: calc(100% - 28px);
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.content-page .faq-page .hero-lede {
  margin-bottom: 40px;
}

.content-page .long-faq {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.content-page .faq-list details {
  overflow: hidden;
  border: 1px solid rgba(220, 229, 238, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(42, 72, 102, 0.05);
}

.content-page .faq-list summary {
  padding: 20px 22px;
  font-size: 1.02rem;
  line-height: 1.45;
  list-style: none;
}

.content-page .faq-list summary::-webkit-details-marker {
  display: none;
}

.content-page .faq-list summary::after {
  float: right;
  color: var(--blue);
  font-size: 1.25rem;
  content: "+";
}

.content-page .faq-list details[open] summary::after {
  content: "−";
}

.content-page .faq-list details p {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.72;
}

.content-page footer {
  margin-top: auto;
}

.site-header nav a {
  text-decoration: none;
  transition: color 0.18s ease;
}

.header-cta {
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #1a2d45;
  color: #fff;
}

.primary:hover {
  background: #0556c7;
  color: #fff;
}

@media (max-width: 980px) {
  .content-page .article-list a::after {
    display: none;
  }

  .content-page .article-list h2,
  .content-page .article-list p {
    max-width: none;
  }
}

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

/* Asset-driven hero pass */
.hero-shell {
  isolation: isolate;
  background:
    radial-gradient(circle at 6% 38%, rgba(255, 255, 255, 0.98) 0 24%, rgba(255, 255, 255, 0.46) 47%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(circle at 76% 16%, rgba(119, 186, 235, 0.76), rgba(213, 237, 252, 0.24) 43%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(112deg, #ffffff 0%, #f8fcff 34%, #d9f0ff 68%, #88c2eb 100%);
}

.hero-shell::before {
  inset: 0;
  z-index: 2;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  background:
   linear-gradient(301deg, rgba(255, 255, 255, 0.19) 0 31%, rgba(255, 255, 255, 0.22) 43%, rgba(255, 255, 255, 0.12) 66%, rgba(255, 255, 255, 0) 100%), linear-gradient(
176deg, rgba(255, 255, 255, 0) 0 72%, rgba(255, 255, 255, 0.52) 87%, #ffffff 100%);
}

.visual-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  --hero-geo-scale: min(1, 100vw / 1600);
}

.visual-backdrop::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background:
    radial-gradient(ellipse at 73% 24%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 44%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0 20%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
}

.hero-asset {
  position: absolute;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-earth {
  z-index: 1;
  top: 13vh;
  right: -10vw;
  width: min(92vw, 1320px);
  opacity: 0.88;
  filter: saturate(1.15) contrast(1.08) brightness(1.03) drop-shadow(0 0 34px rgba(255, 255, 255, 0.72));
  clip-path: none;
  mask-image: none;
  -webkit-mask-image: none;
}

.hero-china-stack {
  position: absolute;
  z-index: 6;
  top: 38vh;
  right: 18vw;
  width: min(38vw, 400px);
  height: min(28vw, 320px);
}

.hero-china-stack .hero-china {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  height: 100%;
}

.hero-china-stack .landing-halo {
  top: 56%;
  left: 65%;
}

.hero-china {
  z-index: 6;
  top:38vh;
  right: 18vw;
  width: min(38vw, 400px);
  height: min(28vw, 320px);
  object-fit: contain;
  opacity: 0.92;
  filter:
    saturate(1.28)
    contrast(0.95)
    brightness(1.2)
    drop-shadow(0 0 18px rgba(255, 255, 255, 1))
    drop-shadow(0 0 48px rgba(92, 126, 255, 0.82));
  transform: rotate(-3deg);
  mask-image: none;
  -webkit-mask-image: none;
}

.network-spark {
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.96),
    0 0 36px rgba(134, 112, 255, 0.46);
}

.spark-a {
  top: 31%;
  right: 36%;
}

.spark-b {
  top: 45%;
  right: 30%;
}

.flight-layer {
  position: absolute;
  inset: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
}

.flight-beam {
  fill: none;
  stroke-linecap: round;
}

.flight-beam-glow {
  stroke: url(#flightBeam);
  stroke-width: 13;
  opacity: 1;
}

.flight-beam-core {
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 3.6;
  opacity: 1;
}

.flight-beam-flow {
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 5.5;
  stroke-dasharray: 36 420;
  animation: flightBeamFlow 2.6s linear infinite;
  filter: url(#flightGlow);
}

.plane-anchor {
  position: absolute;
  z-index: 8;
  top: 28%;
  left: 40%;
  width: 186px;
  visibility: hidden;
  pointer-events: none;
}

.plane-anchor img {
  display: block;
  width: 100%;
  height: auto;
}

.plane-glyph-svg {
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 1))
    drop-shadow(0 0 16px rgba(94, 123, 190, 0.45))
    drop-shadow(0 12px 14px rgba(44, 74, 126, 0.22));
}

.plane-glyph {
  display: none;
}

.landing-halo {
  position: absolute;
  z-index: 5;
  top: 47.8%;
  left: 61.4%;
  width: 26px;
  height: 26px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 18%, rgba(162, 137, 255, 0.86) 21% 39%, rgba(162, 137, 255, 0) 66%),
    radial-gradient(circle, rgba(133, 116, 255, 0.58), rgba(133, 116, 255, 0));
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.94),
    0 0 36px rgba(147, 127, 255, 0.52),
    0 0 86px rgba(147, 127, 255, 0.32);
  transform: translate(-50%, -50%);
  animation: pulseCore 3.2s ease-in-out infinite;
}

.landing-halo::before,
.landing-halo::after,
.landing-halo i {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.landing-halo::before {
  width: 86px;
  height: 86px;
}

.landing-halo::after {
  width: 150px;
  height: 150px;
  opacity: 0.42;
}

.landing-halo i {
  width: 230px;
  height: 230px;
  opacity: 0.18;
}

.hero-skyline {
  z-index: 0;
  bottom: 98px;
  left: 52px;
  width: 820px;
  opacity: 0.96;
  transform: scale(var(--hero-geo-scale));
  transform-origin: bottom left;
  filter: saturate(1.06) contrast(1.12) brightness(0.98) drop-shadow(0 12px 14px rgba(76, 121, 168, 0.16));
}

.hero-clouds {
  z-index: 5;
  right: -4vw;
  bottom: -9vh;
  left: -4vw;
  width: 108vw;
  height: 38vh;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.86;
  filter: brightness(1.02) saturate(1.02) contrast(1.08);
  mask-image: linear-gradient(180deg, transparent 0 10%, #000 34% 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0 10%, #000 34% 100%);
}

.hero-atmosphere {
  position: absolute;
  inset: auto 0 0;
  z-index: 7;
  height: 25vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.26) 70%, #ffffff 100%);
}

.hero-content {
  z-index: 8;
  grid-template-columns: minmax(520px, 0.92fr) minmax(300px, 0.48fr);
  padding-top: 6.6vh;
}

.hero-copy {
  max-width: 760px;
}

h1 {
  max-width: 760px;
  font-size: clamp(52px, 4.25vw, 72px);
  line-height: 1.1;
}

h1 span {
  display: block;
}

.phone-stage {
  justify-self: end;
  width: clamp(212px, 13.9vw, 268px);
  margin-top: 8vh;
  margin-right: clamp(8px, 2.4vw, 42px);
  perspective: 900px;
}

.phone-stage .phone {
  transform: rotateY(-24deg) rotateZ(5deg);
  transform-origin: 50% 58%;
}

@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: minmax(380px, 1fr) 196px;
    padding-right: 30px;
    padding-left: 44px;
  }

  .phone-stage {
    width: 196px;
    margin-top: 6vh;
    margin-right: 8px;
  }
}

@media (max-width: 900px) {
  .hero-earth {
    opacity: 0.45;
  }

  .hero-china,
  .hero-china-stack {
    top: 34vh;
    right: -6vw;
    width: 78vw;
    height: auto;
    opacity: 0.28;
  }

  .flight-layer,
  .plane-anchor,
  .plane-glyph-svg,
  .landing-halo,
  .network-spark {
    opacity: 0.52;
  }

  .plane-anchor {
    top: 38%;
    left: 34%;
    width: 152px;
  }

  .landing-halo {
    top: 52%;
    left: 65%;
    transform: translate(-50%, -50%) scale(0.74);
  }

  .hero-skyline {
    opacity: 0.36;
  }

  .hero-clouds {
    bottom: -8vh;
    height: 34vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 132px;
  }

  h1 span {
    display: inline;
  }

  h1 span + span::before {
    content: " ";
  }
}

@media (max-width: 460px) {
  .hero-content {
    gap: 24px;
    padding-bottom: 130px;
  }

  .flight-layer,
  .plane-anchor,
  .plane-glyph-svg,
  .landing-halo,
  .network-spark {
    opacity: 0.36;
  }
}

.hero-content--copy-only {
  display: block;
  width: 100%;
  max-width: none;
  padding-right: clamp(48px, 5.3vw, 102px);
}

.hero-shell > .phone-stage--dock {
  position: absolute;
  right: 160px;
  bottom: 10vh;
  z-index: 12;
  width: 248px;
  margin: 0;
  justify-self: auto;
  transform: none;
  animation: phoneFloat 6s ease-in-out infinite;
  perspective: 900px;
}

.hero-shell > .phone-stage--dock .phone {
  transform: rotateY(-24deg) rotateZ(5deg);
  transform-origin: 50% 58%;
}

@media (max-width: 900px) {
  .hero-shell > .phone-stage--dock {
    right: 20px;
    bottom: 8vh;
    width: min(72vw, 260px);
  }
}




.moment-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.moment-band article {
  min-height: 210px;
  padding: clamp(24px, 4vw, 38px);
  border-right: 1px solid var(--line);
}

.moment-band article:last-child {
  border-right: 0;
}

.moment-band span,
.feature-list small,
.route-step span,
.article-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.moment-band h2 {
  margin-top: 18px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.moment-band p {
  margin-top: 12px;
}

.section,
.route-section,
.download-strip {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 82px);
}

.section-intro {
  max-width: 580px;
}

.section-intro p {
  margin-top: 18px;
}

.feature-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-list article {
  padding: 22px;
  background: #fff;
}

.feature-list h3 {
  margin-top: 8px;
}

.feature-list p {
  margin-top: 9px;
}

.route-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 5vw, 72px);
  background: #132033;
  color: #fff;
}

.route-section p {
  color: #c8d5e4;
}

.route-section .eyebrow,
.route-step span {
  color: #7ae4ef;
}

.route-board {
  display: grid;
  gap: 12px;
}

.route-step {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.route-step strong {
  display: block;
  margin-top: 8px;
}

.route-step p {
  margin-top: 8px;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.article-card,
.download-box,
.article-list a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.download-box {
  margin-top: 34px;
}

.ios-download-hero {
  max-width: 720px;
}

.ios-icon-wrap {
  display: inline-flex;
  width: 132px;
  height: 132px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ios-icon-wrap img {
  width: 112px;
  height: 112px;
  border-radius: 25px;
  object-fit: cover;
}

.app-store-button {
  min-height: 58px;
  flex-direction: column;
  align-items: flex-start;
  padding: 9px 18px;
  line-height: 1.1;
}

.app-store-button span {
  font-size: 0.72rem;
  opacity: 0.78;
}

.app-store-button strong {
  font-size: 1.08rem;
}

.faq-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

.faq-list details p {
  padding: 0 20px 20px;
}

.dark-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}

.faq-page .hero-lede {
  margin-bottom: 34px;
}

.long-faq {
  margin-top: 34px;
}

.article-card h3 {
  margin-top: 8px;
  font-size: 1.35rem;
}

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

.download-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.download-strip p:last-child {
  margin-top: 10px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
}

footer p {
  margin-top: 8px;
}

.article-body,
.download-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) clamp(18px, 4vw, 48px);
}

.article-body h1,
.download-page h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.article-body h2,
.download-box h2 {
  margin-top: 42px;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
}

.download-box h2 {
  margin-top: 0;
}

.article-body p,
.article-body ul {
  margin-top: 16px;
}

.article-body li {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.65;
}

.article-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.article-list h2 {
  margin: 0;
  font-size: 1.35rem;
}

.article-list p {
  margin-top: 8px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .site-header {
    gap: 12px;
  }

  .hero,
  .split,
  .route-section,
  .content-section,
  .faq-preview {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 58px;
  }

  .hero-copy {
    width: min(720px, 100%);
  }

  .phone-demo {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 420px);
    justify-content: flex-start;
    margin-top: 34px;
  }

  .hero-brand-lockup {
    margin-bottom: 24px;
  }

  .hero-china-overlay {
    right: -8%;
    top: 16%;
    width: 900px;
    opacity: 0.72;
  }

  .hero-skyline {
    left: 12%;
    width: 420px;
    opacity: 0.28;
  }

  #hero-3d {
    min-height: 760px;
  }

  .moment-band {
    grid-template-columns: 1fr;
  }

  .moment-band article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .moment-band article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .phone-shell {
    min-height: auto;
    border-radius: 22px;
    padding: 12px;
  }

  .hero-china-overlay {
    right: -310px;
    top: 20%;
    width: 780px;
    opacity: 0.45;
  }

  .hero-skyline {
    display: none;
  }

  #hero-3d {
    min-height: 760px;
  }

  #china-map {
    height: 280px;
  }

  .preview-carousel {
    min-height: 492px;
  }

  .trip-line {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .download-strip,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

}

/* Final Step 1 override: static cinematic hero layout only. */
.cinematic-hero {
  display: grid;
  min-height: min(920px, calc(100vh - 70px));
  grid-template-columns: minmax(360px, 0.78fr) minmax(420px, 1.06fr) minmax(300px, 0.56fr);
  gap: clamp(18px, 3vw, 46px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) clamp(22px, 5vw, 86px);
  background:
    radial-gradient(circle at 76% 20%, rgba(120, 186, 232, 0.28), transparent 34%),
    linear-gradient(112deg, #ffffff 0%, #f7fbfe 42%, #dfeff9 100%);
}

.cinematic-hero .hero-visual {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 100%;
  height: min(66vw, 650px);
  min-height: 520px;
  overflow: visible;
  pointer-events: none;
}

.cinematic-hero #hero-3d {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px dashed rgba(6, 104, 232, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.92), rgba(199, 231, 247, 0.34) 44%, rgba(80, 153, 216, 0.1) 70%, transparent 72%),
    repeating-radial-gradient(circle at 58% 42%, transparent 0 62px, rgba(6, 104, 232, 0.08) 63px 64px);
}

.cinematic-hero .render-fallback,
.cinematic-hero .hero-china-overlay,
.cinematic-hero .hero-skyline,
.cinematic-hero .hero-clouds {
  display: none;
}

.cinematic-hero .hero-copy {
  position: relative;
  z-index: 3;
  width: auto;
  max-width: 640px;
  padding-top: 0;
}

.cinematic-hero .hero-brand-lockup {
  margin-bottom: clamp(24px, 4vw, 44px);
}

.cinematic-hero h1 {
  max-width: 680px;
  color: #071a3d;
  font-size: clamp(3rem, 5.2vw, 5.9rem);
  line-height: 1.16;
}

.cinematic-hero .hero-lede {
  max-width: 560px;
}

.cinematic-hero .phone-demo {
  position: relative;
  right: auto;
  top: auto;
  z-index: 3;
  width: min(100%, 360px);
  justify-content: flex-end;
}

.cinematic-hero .phone-shell {
  width: min(100%, 360px);
  min-height: 610px;
}

.static-phone-screen {
  display: grid;
  gap: 12px;
}

.mock-map {
  position: relative;
  height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(6, 104, 232, 0.1) 49% 50%, transparent 51%),
    linear-gradient(20deg, transparent 0 44%, rgba(96, 112, 132, 0.12) 45% 46%, transparent 47%),
    #f4f8fb;
}

.mock-route {
  position: absolute;
  left: 26%;
  top: 52%;
  width: 48%;
  height: 3px;
  transform: rotate(-28deg);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.mock-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(110, 88, 232, 0.14);
}

.mock-pin.start {
  left: 24%;
  top: 62%;
}

.mock-pin.end {
  right: 24%;
  top: 34%;
}

.mock-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
}

.mock-card strong,
.mock-card small {
  display: block;
}

.mock-card small {
  margin-top: 4px;
  color: var(--muted);
}

.mock-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.7), transparent 22%),
    linear-gradient(145deg, #95c6ed, #e9f4fb);
}

.mock-thumb.food {
  background:
    radial-gradient(circle at 50% 50%, #fff 0 20%, #f0be6f 21% 42%, #ffffff 43% 56%, transparent 57%),
    linear-gradient(145deg, #f5d6a7, #fff4e4);
}

.mock-wave {
  display: block;
  width: 100%;
  height: 18px;
  margin-top: 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 4px, transparent 4px 9px);
  opacity: 0.58;
}

@media (max-width: 1100px) {
  .cinematic-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cinematic-hero .hero-visual {
    order: 2;
    height: 520px;
    min-height: 420px;
  }

  .cinematic-hero .phone-demo {
    order: 3;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .cinematic-hero {
    padding: 44px 16px 56px;
  }

  .cinematic-hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.8rem);
  }

  .cinematic-hero .hero-visual {
    height: 360px;
    min-height: 320px;
  }

  .cinematic-hero .phone-shell {
    min-height: auto;
  }
}
/* Final Step 2 override: keep the Earth canvas full-screen after all older hero rules. */
.earth-step-ready .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.earth-step-ready #hero-3d {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(920px, calc(100vh - 70px));
  border: 0;
  border-radius: 0;
  background: transparent;
}

.earth-step-ready .hero-canvas-guide {
  display: none;
}

.earth-step-ready .hero-copy,
.earth-step-ready .phone-demo {
  position: relative;
  z-index: 3;
}

.cinematic-hero .hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 2%;
  right: -13%;
  width: min(940px, 68vw);
  aspect-ratio: 1;
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.96), rgba(221, 244, 255, 0.72) 28%, rgba(126, 190, 232, 0.32) 58%, rgba(104, 178, 226, 0.18) 70%, rgba(104, 178, 226, 0) 74%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(131, 196, 238, 0.18));
  box-shadow:
    inset 28px 26px 80px rgba(255, 255, 255, 0.62),
    inset -34px -30px 90px rgba(70, 142, 212, 0.18),
    0 0 100px rgba(143, 217, 246, 0.35);
  opacity: 0.78;
  filter: blur(0.2px);
}

.earth-step-ready .hero-visual::before {
  opacity: 0.16;
}

@media (max-width: 1100px) {
  .earth-step-ready .hero-visual {
    order: initial;
    height: 100%;
    min-height: 100%;
  }
}
/* Final cinematic composite override: project-bound background + Three light layer. */
.cinematic-hero {
  isolation: isolate;
  min-height: min(920px, calc(100vh - 70px));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 26%, rgba(255, 255, 255, 0.34) 52%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.72) 100%),
    url("assets/hero-cinematic-bg-v2.png") center / cover no-repeat;
}

.earth-step-ready #hero-3d {
  opacity: 0.18;
  mix-blend-mode: screen;
  filter: saturate(1.16) blur(0.15px);
}

.cinematic-hero .hero-visual::before {
  content: none;
}

/* Final hero polish: align the composite with the cinematic reference. */
.cinematic-hero {
  grid-template-columns: minmax(430px, 0.92fr) minmax(420px, 0.92fr) minmax(330px, 0.58fr);
  gap: clamp(10px, 2.2vw, 34px);
  align-items: center;
  min-height: min(940px, calc(100vh - 70px));
  padding: clamp(64px, 7.2vw, 108px) clamp(24px, 5.2vw, 92px);
  background-position: center center;
}

.cinematic-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.58) 31%, rgba(255, 255, 255, 0.12) 58%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0.58) 100%);
}

.cinematic-hero .hero-copy {
  z-index: 5;
  max-width: 720px;
  padding-top: 0;
  transform: translateY(-8px);
}

.cinematic-hero .hero-brand-lockup {
  gap: clamp(16px, 1.6vw, 24px);
  margin-bottom: clamp(34px, 5.2vw, 74px);
}

.cinematic-hero .hero-brand-lockup img {
  width: clamp(62px, 5.8vw, 88px);
  height: clamp(62px, 5.8vw, 88px);
  border-radius: 20px;
  box-shadow: none;
}

.cinematic-hero .hero-brand-lockup strong {
  color: #061a3d;
  font-size: clamp(3.1rem, 4.6vw, 5.7rem);
  line-height: 1;
  font-weight: 820;
}

.cinematic-hero .eyebrow {
  margin-bottom: 18px;
  color: #46617c;
  font-size: 0.84rem;
  letter-spacing: 0.11em;
}

.cinematic-hero h1 {
  max-width: 760px;
  color: #06183a;
  font-size: clamp(3.3rem, 5.45vw, 6.35rem);
  line-height: 1.13;
  font-weight: 840;
}

.cinematic-hero .hero-lede {
  max-width: 580px;
  margin-top: 24px;
  color: rgba(6, 24, 58, 0.72);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.72;
}

.cinematic-hero .hero-actions {
  margin-top: 32px;
}

.cinematic-hero .primary,
.cinematic-hero .secondary {
  min-height: 50px;
  border-radius: 999px;
  padding: 0 22px;
  box-shadow: 0 16px 34px rgba(6, 24, 58, 0.12);
}

.cinematic-hero .secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

.cinematic-hero .signal-row span {
  border-color: rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 26px rgba(65, 101, 135, 0.08);
  backdrop-filter: blur(12px);
}

.cinematic-hero .phone-demo {
  z-index: 5;
  align-self: center;
  justify-self: end;
  width: min(23.5vw, 390px);
  min-width: 300px;
  transform: translate(8px, 18px) rotate(-1.2deg);
  filter: drop-shadow(0 34px 52px rgba(42, 83, 126, 0.22));
}

.cinematic-hero .phone-shell {
  position: relative;
  width: min(100%, 372px);
  min-height: 642px;
  border: 1px solid rgba(224, 233, 243, 0.98);
  border-radius: 42px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
  box-shadow:
    inset 0 0 0 7px rgba(232, 240, 249, 0.88),
    inset 0 0 0 8px rgba(255, 255, 255, 0.9),
    0 24px 80px rgba(38, 78, 124, 0.22);
}

.cinematic-hero .phone-shell::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 92px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(17, 30, 45, 0.08);
  box-shadow: inset 0 1px 4px rgba(17, 30, 45, 0.08);
}

.cinematic-hero .phone-shell::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 36px;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0) 34%);
}

.cinematic-hero .phone-top {
  position: relative;
  z-index: 1;
  padding: 30px 16px 16px;
}

.cinematic-hero .mini-label {
  color: #0b244e;
  font-weight: 800;
}

.cinematic-hero .phone-top strong {
  color: #06183a;
  font-size: 1.14rem;
}

.cinematic-hero .status-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, #6d8dff 0 16%, transparent 17%),
    rgba(239, 246, 255, 0.94);
  box-shadow: 0 8px 22px rgba(64, 108, 224, 0.16);
}

.cinematic-hero .static-phone-screen {
  position: relative;
  z-index: 1;
  gap: 14px;
}

.cinematic-hero .mock-map {
  height: 236px;
  border: 1px solid rgba(218, 228, 240, 0.96);
  border-radius: 22px;
  background:
    radial-gradient(circle at 77% 24%, rgba(111, 98, 255, 0.2), transparent 8%),
    linear-gradient(120deg, transparent 0 48%, rgba(82, 137, 238, 0.16) 49% 50%, transparent 51%),
    linear-gradient(22deg, transparent 0 44%, rgba(96, 112, 132, 0.12) 45% 46%, transparent 47%),
    #f3f7fb;
  box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.82);
}

.cinematic-hero .mock-route {
  height: 4px;
  background: linear-gradient(90deg, #4085ff, #8069ff);
  box-shadow: 0 0 18px rgba(102, 111, 255, 0.34);
}

.cinematic-hero .mock-card {
  grid-template-columns: 74px 1fr;
  gap: 14px;
  min-height: 88px;
  border: 1px solid rgba(221, 231, 242, 0.95);
  border-radius: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(55, 83, 118, 0.09);
}

.cinematic-hero .mock-card strong {
  color: #102448;
  font-size: 0.94rem;
  line-height: 1.25;
}

.cinematic-hero .mock-thumb {
  width: 74px;
  height: 64px;
  border-radius: 16px;
}

.cinematic-hero .mock-wave {
  height: 22px;
  background: repeating-linear-gradient(90deg, #4f8cff 0 4px, transparent 4px 9px);
  opacity: 0.72;
}

@media (max-width: 1100px) {
  .cinematic-hero {
    grid-template-columns: 1fr;
    background-position: 58% center;
  }

  .cinematic-hero .hero-copy {
    max-width: 720px;
  }

  .cinematic-hero .phone-demo {
    justify-self: start;
    width: min(390px, 88vw);
    min-width: 0;
    transform: none;
  }
}

@media (max-width: 640px) {
  .cinematic-hero {
    min-height: auto;
    padding: 42px 18px 62px;
    background-position: 63% center;
  }

  .cinematic-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 54%, rgba(255, 255, 255, 0.2) 100%);
  }

  .cinematic-hero .hero-brand-lockup {
    margin-bottom: 28px;
  }

  .cinematic-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .cinematic-hero .hero-lede {
    display: none;
  }

.cinematic-hero .phone-shell {
    min-height: 588px;
  }
}

/* Final dynamic 3D layer: visible motion without replacing the cinematic fallback art. */
.earth-step-ready .hero-visual {
  z-index: 3;
}

.earth-step-ready #hero-3d {
  opacity: 0.62;
  mix-blend-mode: screen;
  filter: saturate(1.28) contrast(1.08) blur(0.08px);
}

.cinematic-hero .hero-copy,
.cinematic-hero .phone-demo {
  z-index: 6;
}

.cinematic-hero::after {
  z-index: 4;
}

/* Final composition scale: keep the Earth cinematic, but restore flight-path whitespace. */
.cinematic-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 27%, rgba(255, 255, 255, 0.26) 55%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.66) 100%),
    url("assets/hero-cinematic-bg-v2.png");
  background-size:
    100% 100%,
    100% 100%,
    min(1760px, 112vw) auto;
  background-position:
    center,
    center,
    58% center;
  background-repeat: no-repeat;
}

.earth-step-ready #hero-3d {
  opacity: 0.54;
}

@media (min-width: 1500px) {
  .cinematic-hero {
    background-size:
      100% 100%,
      100% 100%,
      min(1900px, 106vw) auto;
    background-position:
      center,
      center,
      56% center;
  }
}

@media (max-width: 1100px) {
  .cinematic-hero {
    background-size:
      100% 100%,
      100% 100%,
      1480px auto;
    background-position:
      center,
      center,
      58% top;
  }
}

@media (max-width: 640px) {
  .cinematic-hero {
    background-size:
      100% 100%,
      100% 100%,
      1220px auto;
    background-position:
      center,
      center,
      57% 18%;
  }
}

/* Final page assembly: make the home page read as one complete landing page. */
.home-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.54));
  backdrop-filter: blur(18px);
}

.home-page .site-header .brand,
.home-page .site-header nav,
.home-page .site-header-actions,
.home-page .site-header .header-cta {
  position: relative;
  z-index: 1;
}

.home-page .site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(220, 229, 238, 0), rgba(220, 229, 238, 0.72), rgba(220, 229, 238, 0));
}

.home-page .cinematic-hero {
  min-height: 100vh;
  padding-top: clamp(112px, 10vw, 148px);
}

.home-page .moment-band {
  position: relative;
  z-index: 2;
  border-top: 0;
  background: linear-gradient(180deg, #ffffff, #f7fbfe);
}

.home-page .moment-band article {
  min-height: 230px;
  padding: clamp(28px, 4.5vw, 48px);
}

.home-page .moment-band h2,
.home-page .section h2,
.home-page .route-section h2,
.home-page .download-strip h2 {
  letter-spacing: 0;
}

.home-page .section,
.home-page .route-section,
.home-page .download-strip {
  padding-left: clamp(22px, 5vw, 86px);
  padding-right: clamp(22px, 5vw, 86px);
}

.home-page #features {
  background:
    radial-gradient(circle at 85% 10%, rgba(23, 191, 211, 0.14), transparent 30%),
    #fbfdff;
}

.home-page .feature-list {
  gap: 1px;
  overflow: hidden;
  border-color: rgba(220, 229, 238, 0.92);
  border-radius: 10px;
  background: rgba(220, 229, 238, 0.92);
  box-shadow: 0 28px 70px rgba(42, 72, 102, 0.08);
}

.home-page .feature-list article {
  min-height: 178px;
  padding: clamp(22px, 2.4vw, 32px);
}

.home-page .route-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(23, 191, 211, 0.28), transparent 26%),
    radial-gradient(circle at 18% 92%, rgba(110, 88, 232, 0.28), transparent 28%),
    linear-gradient(135deg, #0c1728, #14263d 56%, #0d1b2e);
}

.home-page .route-board {
  position: relative;
}

.home-page .route-board::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, rgba(122, 228, 239, 0), rgba(122, 228, 239, 0.58), rgba(122, 228, 239, 0));
}

.home-page .route-step {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.home-page .content-section {
  background: #ffffff;
}

.home-page .article-card {
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(42, 72, 102, 0.09);
}

.home-page .faq-preview {
  border-top: 1px solid rgba(220, 229, 238, 0.9);
  background:
    linear-gradient(180deg, #fbfdff, #f4f8fb);
}

.home-page .faq-list details {
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(42, 72, 102, 0.05);
}

.home-page .download-strip {
  background:
    linear-gradient(120deg, #101d30, #19304a);
  color: #ffffff;
}

.home-page .download-strip p,
.home-page .download-strip .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .download-strip .primary {
  background: #ffffff;
  color: #101d30;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

.home-page .download-strip .primary:hover {
  background: #e8eef5;
  color: #101d30;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .home-page .site-header {
    position: sticky;
    background: rgba(251, 253, 255, 0.92);
  }

  .home-page .hero-shell {
    padding-top: clamp(62px, 10vw, 92px);
  }

  .home-page .cinematic-hero {
    min-height: auto;
    padding-top: clamp(62px, 10vw, 92px);
  }
}
