:root {
  --ink: #0a0e0d;
  --ink-raised: #111816;
  --ink-soft: #19211f;
  --paper: #f4f1e9;
  --paper-soft: #e6e8e1;
  --white: #fffdf8;
  --muted: rgba(255, 253, 248, 0.68);
  --quiet: rgba(255, 253, 248, 0.48);
  --line: rgba(255, 253, 248, 0.16);
  --line-strong: rgba(255, 253, 248, 0.3);
  --aqua: #82ded3;
  --lime: #d4fd67;
  --copper: #f0b983;
  --danger: #ff8f87;
  --success: #bfe978;
  --max: 1440px;
  --content: 1180px;
  --gutter: clamp(20px, 5vw, 76px);
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  --ease: cubic-bezier(0.2, 0.72, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  color: var(--white);
  background: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

body::before {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.56), transparent 72%);
  content: "";
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  color: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 120;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms var(--ease);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.09);
  background: rgba(10, 14, 13, 0.88);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  width: min(var(--max), 100%);
  min-height: 76px;
  margin: 0 auto;
  padding: 13px var(--gutter);
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(212, 253, 103, 0.74);
  background: rgba(212, 253, 103, 0.06);
}

.brand-mark::before {
  width: 12px;
  height: 12px;
  border: 1px solid var(--white);
  border-right: 0;
  content: "";
}

.brand-mark::after {
  position: absolute;
  right: 7px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--lime);
  border-right: 1px solid var(--lime);
  content: "";
  transform: rotate(45deg);
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
  line-height: 1.12;
}

.brand-copy strong,
.brand-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 12px;
  font-weight: 760;
}

.brand-copy span {
  color: var(--quiet);
  font-size: 10px;
}

.site-nav {
  display: flex;
  min-width: 0;
  margin-left: auto;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
}

.site-nav a:not(.button) {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms var(--ease);
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 17px;
  height: 1px;
  margin: 0 auto;
  background: var(--white);
  content: "";
  transition:
    transform 180ms var(--ease),
    opacity 180ms var(--ease);
}

.nav-toggle::before {
  transform: translateY(-5px);
}

.nav-toggle::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(1px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-1px) rotate(-45deg);
}

.language-menu {
  position: relative;
  z-index: 2;
  margin-left: 2px;
}

.language-menu summary {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  list-style: none;
  cursor: pointer;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.language-menu[open] summary {
  color: var(--white);
  border-color: var(--line-strong);
}

.language-list {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  display: grid;
  min-width: 148px;
  padding: 6px;
  border: 1px solid var(--line);
  background: #101614;
  box-shadow: var(--shadow);
}

.language-list a {
  padding: 9px 10px;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.language-list a:hover,
.language-list a:focus-visible,
.language-list a[aria-current="page"] {
  color: var(--ink);
  background: var(--lime);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  color: var(--white);
  background: transparent;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 170ms var(--ease),
    color 170ms var(--ease),
    background 170ms var(--ease),
    border-color 170ms var(--ease);
}

.button:hover,
.button:focus-visible {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: var(--aqua);
  background: var(--aqua);
}

.button .arrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 0;
  transform: translateY(-1px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: min(800px, calc(100svh - 76px));
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(
      circle at 79% 24%,
      rgba(130, 222, 211, 0.15),
      transparent 23%
    ),
    radial-gradient(
      circle at 82% 70%,
      rgba(240, 185, 131, 0.12),
      transparent 26%
    ),
    linear-gradient(112deg, #0a0e0d 0%, #0d1412 56%, #0b1110 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.55;
  background-image: linear-gradient(
    90deg,
    transparent 49.9%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 50.1%
  );
  background-size: 50px 100%;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.42), transparent 76%);
  content: "";
}

.hero-inner {
  display: grid;
  width: min(var(--max), 100%);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(62px, 9vw, 126px) var(--gutter) clamp(52px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.76fr);
  align-items: center;
  gap: clamp(34px, 7vw, 116px);
}

.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(50px, 7vw, 104px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--aqua);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-disclosure {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--quiet);
  font-size: 12px;
}

.hero-proof {
  display: grid;
  max-width: 700px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-proof div {
  min-width: 0;
  padding: 15px 16px 0 0;
}

.hero-proof div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 12px;
  font-weight: 780;
}

.hero-proof span {
  margin-top: 4px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.4;
}

.signal-stage {
  position: relative;
  width: min(100%, 520px);
  min-height: 510px;
  margin-left: auto;
  aspect-ratio: 1;
}

.signal-stage::before,
.signal-stage::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 253, 248, 0.11);
  border-radius: 50%;
  content: "";
}

.signal-stage::before {
  inset: 1%;
}

.signal-stage::after {
  inset: 12%;
  border-color: rgba(130, 222, 211, 0.24);
}

.signal-grid {
  position: absolute;
  inset: 7%;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.19);
  border-radius: 50%;
  background: linear-gradient(
      90deg,
      rgba(255, 253, 248, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(255, 253, 248, 0.08) 1px, transparent 1px),
    radial-gradient(
      circle at 38% 32%,
      rgba(212, 253, 103, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 65% 62%,
      rgba(130, 222, 211, 0.13),
      transparent 29%
    ),
    #0c1513;
  background-size:
    38px 38px,
    38px 38px,
    auto,
    auto,
    auto;
  box-shadow:
    inset 0 0 70px rgba(0, 0, 0, 0.72),
    0 0 90px rgba(130, 222, 211, 0.08);
}

.signal-meridian,
.signal-equator {
  position: absolute;
  border: 1px solid rgba(130, 222, 211, 0.35);
  border-radius: 50%;
}

.signal-meridian {
  inset: 3% 28%;
}

.signal-equator {
  top: 46%;
  right: 3%;
  left: 3%;
  height: 18%;
}

.signal-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.signal-route path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.3;
  stroke-dasharray: 4 7;
  opacity: 0.86;
}

.signal-route path.route-aqua {
  stroke: var(--aqua);
}

.signal-route circle {
  fill: var(--white);
}

.signal-route circle.hub {
  fill: var(--lime);
}

.signal-node {
  position: absolute;
  display: grid;
  width: 74px;
  min-height: 50px;
  padding: 8px 9px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  background: rgba(10, 14, 13, 0.82);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  gap: 2px;
}

.signal-node strong {
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.signal-node span {
  color: var(--quiet);
  font-size: 9px;
  line-height: 1.25;
}

.signal-node.hong-kong {
  right: 10%;
  bottom: 20%;
  border-color: rgba(212, 253, 103, 0.62);
}

.signal-node.global {
  top: 18%;
  left: 3%;
}

.signal-node.china {
  right: 0;
  top: 43%;
}

.signal-caption {
  position: absolute;
  right: -1%;
  bottom: 2%;
  left: 4%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-caption span:last-child {
  color: var(--aqua);
}

/* Global-expansion signal field: CSS and SVG only, so the hero stays fast without WebGL. */
.hero {
  min-height: min(860px, calc(100svh - 76px));
  background: linear-gradient(
      90deg,
      rgba(255, 253, 248, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(255, 253, 248, 0.026) 1px, transparent 1px), #090e0d;
  background-size:
    96px 96px,
    96px 96px,
    auto;
}

.hero::before {
  background: linear-gradient(
      115deg,
      rgba(10, 14, 13, 0.98) 0%,
      rgba(10, 14, 13, 0.92) 39%,
      rgba(10, 14, 13, 0.44) 70%,
      rgba(10, 14, 13, 0.8) 100%
    ),
    linear-gradient(180deg, rgba(130, 222, 211, 0.06) 0, transparent 32%),
    #0a100e;
}

.hero::after {
  opacity: 0.9;
  background: linear-gradient(
      90deg,
      transparent 49.85%,
      rgba(255, 253, 248, 0.08) 50%,
      transparent 50.15%
    ),
    linear-gradient(
      180deg,
      transparent 49.85%,
      rgba(255, 253, 248, 0.05) 50%,
      transparent 50.15%
    );
  background-size:
    64px 100%,
    100% 64px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.82), transparent 78%);
}

.hero-inner {
  grid-template-columns: minmax(0, 0.98fr) minmax(410px, 0.78fr);
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(52px, 6.8vw, 100px);
  line-height: 0.91;
}

.hero-lead {
  max-width: 700px;
  font-size: clamp(16px, 1.48vw, 20px);
}

.hero-proof {
  max-width: 730px;
}

.signal-stage {
  --signal-shift-x: 0px;
  --signal-shift-y: 0px;
  --signal-shift-x-inverse: 0px;
  --signal-shift-y-inverse: 0px;
  width: min(100%, 560px);
  min-height: 560px;
  padding-top: 30px;
  isolation: isolate;
}

.signal-stage::before {
  inset: 7%;
  z-index: -2;
  border-color: rgba(212, 253, 103, 0.28);
  box-shadow:
    0 0 0 1px rgba(130, 222, 211, 0.06),
    0 30px 100px rgba(0, 0, 0, 0.32);
}

.signal-stage::after {
  inset: 15%;
  z-index: -1;
  border-color: rgba(130, 222, 211, 0.24);
  background: repeating-linear-gradient(
    135deg,
    transparent 0 16px,
    rgba(130, 222, 211, 0.028) 16px 17px
  );
}

.signal-kicker {
  position: absolute;
  top: 0;
  right: 1%;
  left: 2%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--quiet);
  font-size: 10px;
  font-weight: 790;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.signal-kicker span:first-child {
  color: var(--lime);
}

.signal-grid {
  inset: 12%;
  overflow: hidden;
  border-color: rgba(255, 253, 248, 0.22);
  background: linear-gradient(
      90deg,
      rgba(255, 253, 248, 0.09) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(255, 253, 248, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(130, 222, 211, 0.12), transparent 55%), #0a1412;
  background-size:
    34px 34px,
    34px 34px,
    auto,
    auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.04),
    inset 0 0 90px rgba(0, 0, 0, 0.78),
    0 0 110px rgba(130, 222, 211, 0.08);
  transition: transform 500ms var(--ease);
}

.signal-grid::before {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(130, 222, 211, 0.18);
  border-radius: 50%;
  content: "";
  transform: rotate(-22deg) scaleX(1.25);
}

.signal-grid::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      116deg,
      transparent 33%,
      rgba(212, 253, 103, 0.13) 48%,
      transparent 63%
    ),
    linear-gradient(
      26deg,
      transparent 42%,
      rgba(130, 222, 211, 0.1) 50%,
      transparent 58%
    );
  content: "";
  opacity: 0.72;
  transform: translate3d(-24%, 0, 0);
}

.signal-latitude {
  position: absolute;
  right: 8%;
  left: 8%;
  height: 17%;
  border: 1px solid rgba(130, 222, 211, 0.25);
  border-radius: 50%;
}

.signal-latitude.latitude-one {
  top: 28%;
}

.signal-latitude.latitude-two {
  top: 56%;
  transform: scaleX(0.85);
}

.signal-core {
  position: absolute;
  top: 56%;
  left: 61%;
  width: 12%;
  aspect-ratio: 1;
  border: 1px solid var(--lime);
  background: rgba(212, 253, 103, 0.08);
  box-shadow:
    0 0 0 6px rgba(212, 253, 103, 0.03),
    0 0 36px rgba(212, 253, 103, 0.18);
  transform: rotate(45deg);
}

.signal-meridian {
  border-color: rgba(130, 222, 211, 0.46);
}

.signal-equator {
  border-color: rgba(255, 253, 248, 0.22);
}

.signal-route {
  transition: transform 500ms var(--ease);
}

.signal-route path {
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-dasharray: 3 9;
}

.signal-route path.route-lime {
  stroke: var(--lime);
}

.signal-route path.route-aqua {
  stroke: var(--aqua);
}

.signal-route path.route-muted {
  stroke: rgba(255, 253, 248, 0.45);
  stroke-dasharray: 2 11;
}

.signal-route circle {
  stroke: rgba(10, 14, 13, 0.74);
  stroke-width: 2px;
}

.signal-route circle.route-pulse {
  fill: var(--aqua);
}

.signal-node {
  border-color: rgba(255, 253, 248, 0.26);
  background: rgba(8, 13, 12, 0.72);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition:
    transform 500ms var(--ease),
    border-color 200ms var(--ease);
}

.signal-node.hong-kong {
  border-color: rgba(212, 253, 103, 0.78);
}

.signal-node.system {
  top: 11%;
  right: 25%;
  width: 80px;
  border-color: rgba(130, 222, 211, 0.72);
}

.signal-metrics {
  position: absolute;
  right: 13%;
  bottom: 12%;
  left: 15%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--quiet);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.signal-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.signal-metrics b {
  color: var(--aqua);
  font-size: 10px;
}

.signal-caption {
  right: 2%;
  bottom: 0;
  left: 2%;
}

.signal-caption span:last-child {
  color: var(--quiet);
}

.signal-stage.has-signal-depth .signal-grid,
.signal-stage.has-signal-depth .signal-route {
  transform: translate3d(var(--signal-shift-x), var(--signal-shift-y), 0);
}

.signal-stage.has-signal-depth .signal-node.global,
.signal-stage.has-signal-depth .signal-node.system {
  transform: translate3d(
    var(--signal-shift-x-inverse),
    var(--signal-shift-y-inverse),
    0
  );
}

.signal-stage.has-signal-depth .signal-node.china,
.signal-stage.has-signal-depth .signal-node.hong-kong {
  transform: translate3d(var(--signal-shift-x), var(--signal-shift-y), 0);
}

.route-panel.is-switching > * {
  animation: route-reveal 280ms var(--ease);
}

.bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: #0d1412;
}

.bar-inner {
  display: contents;
  width: min(var(--max), 100%);
  margin: auto;
}

.bar p {
  max-width: 790px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.bar a {
  align-self: center;
  color: var(--lime);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 138px) var(--gutter);
}

.section.dark {
  background: var(--ink);
}

.section.paper {
  color: #15201d;
  background: var(--paper);
}

.section.raised {
  background: linear-gradient(135deg, #111917, #15201d);
}

.container {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(250px, 0.42fr);
  align-items: end;
  gap: clamp(26px, 7vw, 104px);
  margin-bottom: clamp(36px, 5vw, 62px);
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.paper .eyebrow {
  color: #42736d;
}

.paper .section-heading p {
  color: #56615c;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.route-controls {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--line);
}

.route-control {
  display: grid;
  width: 100%;
  min-height: 115px;
  padding: 20px 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  text-align: left;
  transition:
    color 170ms var(--ease),
    background 170ms var(--ease);
}

.route-control:focus:not(:focus-visible) {
  outline: 0;
}

.route-control:last-child {
  border-bottom: 0;
}

.route-control span {
  color: var(--quiet);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-control strong {
  margin-top: 7px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.route-control[aria-pressed="true"],
.route-control:hover,
.route-control:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.route-control[aria-pressed="true"] span,
.route-control:hover span,
.route-control:focus-visible span {
  color: rgba(10, 14, 13, 0.66);
}

.route-panel {
  display: grid;
  min-height: 363px;
  padding: clamp(28px, 5vw, 58px);
  align-content: space-between;
  gap: 42px;
}

.route-index {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-panel h3 {
  max-width: 670px;
  margin: 13px 0 0;
  font-size: clamp(27px, 3.5vw, 45px);
  font-weight: 650;
  line-height: 1.08;
}

.route-panel p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.route-footnotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.route-footnotes div {
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.route-footnotes strong,
.route-footnotes span {
  display: block;
}

.route-footnotes strong {
  color: var(--white);
  font-size: 11px;
  font-weight: 740;
}

.route-footnotes span {
  margin-top: 5px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.35;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(21, 32, 29, 0.2);
}

.service-card {
  min-width: 0;
  min-height: 320px;
  padding: 26px;
  border-right: 1px solid rgba(21, 32, 29, 0.2);
  border-bottom: 1px solid rgba(21, 32, 29, 0.2);
}

.service-card:last-child {
  border-right: 0;
}

.service-card span {
  color: #42736d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin: 46px 0 0;
  color: #15201d;
  font-size: clamp(23px, 2.35vw, 33px);
  font-weight: 690;
  line-height: 1.08;
}

.service-card p {
  margin: 16px 0 0;
  color: #56615c;
  font-size: 14px;
}

.service-card ul {
  display: grid;
  margin: 23px 0 0;
  padding: 0;
  color: #2f3d38;
  font-size: 12px;
  list-style: none;
  gap: 7px;
}

.service-card li {
  display: flex;
  gap: 8px;
}

.service-card li::before {
  color: #42736d;
  content: "+";
}

.assurance {
  display: grid;
  margin-top: 24px;
  border: 1px solid var(--line);
  grid-template-columns: 0.4fr 0.6fr;
}

.assurance-label,
.assurance-copy {
  padding: 25px;
}

.assurance-label {
  border-right: 1px solid var(--line);
}

.assurance-label span {
  display: block;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.assurance-label strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.18;
}

.assurance-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.assurance-copy a {
  display: inline-flex;
  margin-top: 15px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
}

.governance-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.governance-card {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.governance-card:last-child {
  border-right: 0;
}

.governance-card .number {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.governance-card h3 {
  min-height: 56px;
  margin: 31px 0 0;
  font-size: 21px;
  font-weight: 670;
  line-height: 1.18;
}

.governance-card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.governance-card a {
  display: inline-block;
  margin-top: 24px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
}

.method-list {
  display: grid;
  border-top: 1px solid rgba(21, 32, 29, 0.22);
}

.method-step {
  display: grid;
  min-height: 132px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(21, 32, 29, 0.22);
  grid-template-columns: 118px minmax(0, 0.8fr) minmax(220px, 0.48fr);
  align-items: center;
  gap: 28px;
}

.method-step span {
  color: #42736d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.method-step h3 {
  margin: 0;
  color: #15201d;
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 660;
  line-height: 1.1;
}

.method-step p {
  margin: 0;
  color: #56615c;
  font-size: 14px;
}

.arrival-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b100f;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
}

.arrival-copy {
  display: grid;
  min-height: 370px;
  padding: clamp(26px, 5vw, 58px);
  align-content: space-between;
  gap: 50px;
}

.arrival-copy h3 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 670;
  line-height: 1.04;
}

.arrival-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.arrival-copy small {
  color: var(--quiet);
  font-size: 10px;
}

.arrival-image {
  position: relative;
  min-height: 370px;
  margin: 0;
  background: #16231f;
}

.arrival-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 16, 15, 0.36), transparent 45%),
    linear-gradient(0deg, rgba(11, 16, 15, 0.38), transparent 45%);
  content: "";
}

.arrival-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrival-image figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 16px;
  left: 20px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 10px;
}

.evidence-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.evidence-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.evidence-table th,
.evidence-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.evidence-table tr:last-child td {
  border-bottom: 0;
}

.evidence-table th {
  color: var(--quiet);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-table td {
  color: var(--muted);
  font-size: 13px;
}

.evidence-table td strong {
  display: block;
  color: var(--white);
  font-size: 13px;
}

.evidence-table .state {
  display: inline-flex;
  padding: 4px 7px;
  border: 1px solid rgba(191, 233, 120, 0.42);
  color: var(--success);
  font-size: 10px;
  font-weight: 760;
  line-height: 1;
}

.evidence-table .state.pending {
  border-color: rgba(240, 185, 131, 0.5);
  color: var(--copper);
}

.notice {
  display: grid;
  margin-top: 26px;
  padding: 22px 24px;
  border-left: 3px solid var(--copper);
  color: var(--muted);
  background: rgba(240, 185, 131, 0.08);
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 18px;
}

.notice strong {
  color: var(--copper);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.notice p {
  max-width: 800px;
  margin: 0;
  font-size: 13px;
}

.contact-section {
  position: relative;
  overflow: clip;
  padding: clamp(72px, 10vw, 128px) var(--gutter);
  background: radial-gradient(
      circle at 88% 20%,
      rgba(130, 222, 211, 0.16),
      transparent 24%
    ),
    linear-gradient(135deg, #0b100f, #101a17);
}

.contact-layout {
  display: grid;
  width: min(var(--content), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.76fr) minmax(390px, 0.6fr);
  align-items: start;
  gap: clamp(36px, 8vw, 116px);
}

.contact-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(36px, 5.6vw, 72px);
  font-weight: 680;
  line-height: 1.02;
  text-wrap: balance;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.contact-points {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-point {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
}

.contact-point span {
  color: var(--quiet);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-point a,
.contact-point strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.contact-point a {
  text-decoration-color: rgba(212, 253, 103, 0.45);
  text-underline-offset: 4px;
}

.project-form {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line-strong);
  background: rgba(8, 13, 12, 0.48);
  box-shadow: var(--shadow);
}

.form-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 790;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-head span:last-child {
  color: var(--quiet);
}

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

.project-form label {
  display: grid;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
}

.project-form input:not([type="checkbox"]),
.project-form select,
.project-form textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: rgba(255, 253, 248, 0.04);
  font-size: 14px;
  line-height: 1.35;
  transition:
    border-color 160ms var(--ease),
    background 160ms var(--ease);
}

.project-form select option {
  color: var(--ink);
  background: var(--paper);
}

.project-form textarea {
  min-height: 102px;
  resize: vertical;
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.42);
}

.project-form input:not([type="checkbox"]):focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--aqua);
  background: rgba(130, 222, 211, 0.08);
}

.form-full {
  margin-top: 16px;
}

.form-consent {
  display: flex !important;
  align-items: flex-start;
  margin-top: 17px;
  gap: 10px !important;
  color: var(--quiet) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.form-consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--lime);
}

.form-consent a,
.form-scope a {
  color: var(--aqua);
  text-underline-offset: 3px;
}

.form-scope {
  margin: 16px 0 0;
  color: var(--quiet);
  font-size: 11px;
}

.form-retention {
  margin: 10px 0 0;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.5;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-actions .button[disabled] {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.form-actions .button {
  border: 0;
}

.form-status {
  max-width: 250px;
  margin: 0;
  color: var(--aqua);
  font-size: 11px;
  line-height: 1.4;
}

.form-status.is-error {
  color: var(--danger);
}

.site-footer {
  padding: 34px var(--gutter);
  border-top: 1px solid var(--line);
  background: #080b0a;
}

.footer-inner {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.48fr);
  gap: 38px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-copy p,
.footer-copy small {
  display: block;
  max-width: 730px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 12px;
}

.footer-copy small {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.57);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer-links a {
  color: rgba(255, 253, 248, 0.74);
  font-size: 12px;
  text-decoration-color: rgba(130, 222, 211, 0.35);
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--aqua);
}

.legal-hero {
  padding: clamp(72px, 10vw, 136px) var(--gutter) clamp(50px, 7vw, 86px);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(
      circle at 78% 16%,
      rgba(130, 222, 211, 0.16),
      transparent 25%
    ),
    linear-gradient(135deg, #0c1210, #0b0e0d 68%);
}

.legal-hero .container {
  max-width: 1060px;
}

.legal-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 6.3vw, 82px);
  font-weight: 690;
  line-height: 0.98;
  text-wrap: balance;
}

.legal-hero p:not(.eyebrow) {
  max-width: 770px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  margin-top: 28px;
  color: var(--quiet);
  font-size: 11px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legal-meta span::before {
  width: 6px;
  height: 6px;
  background: var(--aqua);
  content: "";
}

.legal-nav-wrap {
  border-bottom: 1px solid var(--line);
  background: #0d1311;
}

.legal-nav {
  display: flex;
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  overflow-x: auto;
}

.legal-nav a {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.legal-nav a:first-child {
  border-left: 1px solid var(--line);
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.legal-section {
  padding: clamp(60px, 8vw, 106px) var(--gutter);
}

.legal-section.alt {
  background: #101714;
}

.legal-section .container {
  max-width: 1060px;
}

.legal-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(230px, 0.42fr);
  gap: clamp(24px, 7vw, 88px);
  align-items: end;
  margin-bottom: 38px;
}

.legal-intro h2 {
  margin: 0;
  font-size: clamp(30px, 4.3vw, 52px);
  font-weight: 670;
  line-height: 1.05;
  text-wrap: balance;
}

.legal-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.entity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.entity-card {
  min-width: 0;
  min-height: 320px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.entity-card:last-child {
  border-right: 0;
}

.entity-card .entity-index {
  color: var(--aqua);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.entity-card h3 {
  min-height: 66px;
  margin: 25px 0 0;
  font-size: 20px;
  font-weight: 670;
  line-height: 1.18;
}

.entity-card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.fact-list {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  gap: 8px;
}

.fact-list li {
  color: var(--quiet);
  font-size: 11px;
}

.fact-list strong {
  display: block;
  color: var(--white);
  font-size: 11px;
}

.legal-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 7vw, 96px);
}

.legal-columns h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
}

.legal-columns p,
.legal-columns li {
  color: var(--muted);
  font-size: 14px;
}

.legal-columns p {
  margin: 14px 0 0;
}

.legal-columns ul {
  display: grid;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  gap: 9px;
}

.legal-columns li {
  display: flex;
  gap: 10px;
}

.legal-columns li::before {
  color: var(--aqua);
  content: "+";
}

.legal-columns a,
.legal-section a:not(.button) {
  color: var(--aqua);
  text-underline-offset: 3px;
}

.policy-table {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
}

.policy-table th,
.policy-table td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  width: 30%;
  color: var(--white);
  font-size: 12px;
}

.policy-table td {
  color: var(--muted);
  font-size: 13px;
}

.empty-state {
  display: grid;
  min-height: 70svh;
  padding: 88px var(--gutter);
  place-items: center;
  text-align: center;
}

.empty-state .container {
  max-width: 700px;
}

.empty-state h1 {
  margin: 0;
  font-size: clamp(56px, 9vw, 126px);
  line-height: 0.9;
}

.empty-state p {
  margin: 22px auto 0;
  color: var(--muted);
}

.empty-state .button {
  margin-top: 28px;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 15px;
  }

  .site-nav > a:not(.button) {
    display: none;
  }

  .hero-inner,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  }

  .hero h1 {
    font-size: clamp(50px, 6.7vw, 78px);
  }

  .service-card {
    min-height: 345px;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100svh - 76px);
    padding: 24px var(--gutter) 42px;
    background: #0b100f;
    align-content: start;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav > a:not(.button) {
    display: flex;
    min-height: 46px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 12px;
  }

  .site-nav .language-menu {
    justify-self: start;
    margin-top: 12px;
  }

  .header-inner > .language-menu {
    display: none;
  }

  .site-nav .language-menu {
    display: block;
  }

  .hero-inner,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .signal-stage {
    width: min(100%, 470px);
    min-height: 430px;
    margin: 0 auto;
  }

  .signal-stage::before {
    inset: 8%;
  }

  .signal-stage::after {
    inset: 16%;
  }

  .signal-kicker {
    right: 5%;
    left: 5%;
  }

  .signal-grid {
    inset: 14%;
  }

  .signal-metrics {
    right: 15%;
    left: 17%;
  }

  .hero-copy,
  .contact-copy,
  .project-form {
    width: 100%;
    min-width: 0;
  }

  .section-heading,
  .legal-intro {
    grid-template-columns: 1fr;
  }

  .route-layout {
    grid-template-columns: 1fr;
  }

  .route-controls {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .route-control {
    min-height: 120px;
    padding: 17px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .route-control:last-child {
    border-right: 0;
  }

  .route-footnotes,
  .service-grid,
  .governance-grid,
  .entity-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .governance-card,
  .entity-card {
    min-height: auto;
    border-right: 0;
  }

  .method-step {
    grid-template-columns: 88px 1fr;
    gap: 14px;
  }

  .method-step p {
    grid-column: 2;
  }

  .assurance {
    grid-template-columns: 1fr;
  }

  .arrival-panel {
    grid-template-columns: 1fr;
  }

  .arrival-image,
  .arrival-copy {
    min-height: 290px;
  }

  .assurance-label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (min-width: 841px) {
  .site-nav .language-menu {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 68px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-nav {
    top: 68px;
    min-height: calc(100svh - 68px);
  }

  .brand-copy span {
    max-width: 160px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.2vw, 58px);
    line-height: 0.93;
  }

  .hero-proof,
  .route-controls,
  .route-footnotes,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof div + div {
    padding-top: 15px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .signal-stage {
    min-height: 350px;
    padding-top: 26px;
  }

  .signal-kicker {
    font-size: 8px;
  }

  .signal-node {
    width: 62px;
    min-height: 42px;
    padding: 6px;
  }

  .signal-node strong {
    font-size: 8px;
  }

  .signal-node span {
    font-size: 7px;
  }

  .signal-node.global {
    left: 1%;
  }

  .signal-node.china {
    right: 1%;
  }

  .signal-node.system {
    top: 13%;
    right: 21%;
    width: 67px;
  }

  .signal-metrics {
    right: 14%;
    bottom: 13%;
    left: 14%;
    font-size: 7px;
  }

  .signal-metrics b {
    font-size: 8px;
  }

  .signal-caption {
    right: 4%;
    left: 4%;
    font-size: 8px;
  }

  .route-control {
    min-height: 82px;
    padding: 14px 17px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route-control:last-child {
    border-bottom: 0;
  }

  .route-control strong {
    font-size: 14px;
  }

  .route-panel {
    min-height: auto;
  }

  .method-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .method-step p {
    grid-column: auto;
  }

  .notice {
    grid-template-columns: 1fr;
  }

  .contact-point {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .project-form {
    margin-inline: calc(var(--gutter) * -1);
  }

  .legal-nav {
    width: calc(100% - (var(--gutter) * 2));
  }

  .legal-meta {
    display: grid;
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) and (min-width: 760px) {
  .signal-stage::before {
    animation: pulse-ring 5.2s ease-in-out infinite;
  }

  .signal-grid {
    animation: grid-shift 16s linear infinite;
  }

  .signal-grid::after {
    animation: signal-scan 7.8s cubic-bezier(0.2, 0.72, 0.22, 1) infinite;
  }

  .signal-route path {
    animation: dash-flow 6.5s linear infinite;
  }

  .signal-route .route-pulse {
    transform-origin: center;
    animation: node-pulse 3.6s ease-in-out infinite;
  }

  .button:hover,
  .button:focus-visible {
    transition-duration: 170ms;
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .service-card,
  .governance-card,
  .method-step {
    transition:
      transform 220ms var(--ease),
      background 220ms var(--ease),
      box-shadow 220ms var(--ease);
  }

  .service-card:hover {
    background: rgba(255, 253, 248, 0.36);
    box-shadow: 0 16px 36px rgba(21, 32, 29, 0.1);
    transform: translateY(-6px);
  }

  .governance-card:hover {
    background: rgba(130, 222, 211, 0.055);
    transform: translateY(-6px);
  }

  .method-step:hover {
    background: rgba(21, 32, 29, 0.035);
    transform: translateX(8px);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes grid-shift {
  from {
    background-position:
      0 0,
      0 0,
      center,
      center,
      center;
  }

  to {
    background-position:
      38px 38px,
      -38px 38px,
      center,
      center,
      center;
  }
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -44;
  }
}

@keyframes signal-scan {
  0%,
  16% {
    opacity: 0;
    transform: translate3d(-56%, 0, 0);
  }

  48% {
    opacity: 0.78;
  }

  76%,
  100% {
    opacity: 0;
    transform: translate3d(58%, 0, 0);
  }
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes route-reveal {
  from {
    opacity: 0.44;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media print {
  body {
    color: #111;
    background: #fff;
  }

  .site-header,
  .site-footer,
  .legal-nav-wrap,
  .skip-link,
  .nav-toggle,
  .contact-section {
    display: none;
  }
}

/* Apple-inspired flagship composition for the global gateway. */
:root {
  --apple-black: #050505;
  --apple-panel: #f5f5f7;
  --apple-silver: #e8e8ed;
  --apple-blue: #0071e3;
  --apple-blue-dark: #005bbd;
  --apple-copy: #1d1d1f;
  --apple-muted: #6e6e73;
}

html {
  background: var(--apple-black);
}

body {
  background: #fff;
}

body::before {
  display: none;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 22, 23, 0.82);
}

.header-inner {
  min-height: 52px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(145deg, #f5f5f7, #8e8e93 48%, #2c2c2e);
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

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

.brand-copy span {
  font-size: 9px;
}

.site-nav a:not(.button) {
  font-weight: 540;
}

.button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 19px;
  border-color: rgba(29, 29, 31, 0.18);
  color: var(--apple-copy);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.dark .button,
.hero .button,
.site-nav .button {
  border-color: rgba(255, 255, 255, 0.18);
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.08);
}

.button:hover,
.button:focus-visible {
  color: #fff;
  border-color: var(--apple-blue);
  background: var(--apple-blue);
  transform: translateY(-1px);
}

.button.primary,
.dark .button.primary,
.hero .button.primary,
.site-nav .button.primary {
  border-color: var(--apple-blue);
  color: #fff;
  background: var(--apple-blue);
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: var(--apple-blue-dark);
  background: var(--apple-blue-dark);
}

.language-menu summary {
  min-height: 34px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.13);
}

.language-list {
  overflow: hidden;
  border-radius: 14px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(22, 22, 23, 0.94);
}

.language-list a:hover,
.language-list a:focus-visible,
.language-list a[aria-current="page"] {
  color: #fff;
  background: var(--apple-blue);
}

.eyebrow {
  color: var(--apple-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.hero {
  min-height: calc(100svh - 52px);
  border-bottom: 0;
  color: #f5f5f7;
  background:
    radial-gradient(circle at 50% 62%, rgba(25, 105, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #050505 0%, #111114 58%, #000 100%);
}

.hero::before {
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, #000 84%);
}

.hero::after {
  display: none;
}

.hero-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  gap: 0;
  min-height: calc(100svh - 52px);
  padding: clamp(24px, 4vw, 52px) var(--gutter) 0;
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
  max-width: 1120px;
}

.hero h1 {
  max-width: 1080px;
  font-size: clamp(58px, 7.5vw, 118px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero h1 em {
  background: linear-gradient(90deg, #f5f5f7, #b8d6ff 50%, #f5f5f7);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 820px;
  margin-top: 18px;
  color: rgba(245, 245, 247, 0.74);
  font-size: clamp(22px, 1.85vw, 30px);
  font-weight: 650;
  line-height: 1.16;
}

.hero-sublead {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(245, 245, 247, 0.58);
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.42;
}

.hero-actions {
  margin-top: 20px;
  justify-content: center;
}

.hero-proof {
  width: min(100%, 780px);
  margin-top: clamp(-18px, -1.2vw, -8px);
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(22px);
}

.hero-proof strong {
  color: #f5f5f7;
  font-size: 11px;
  letter-spacing: 0;
}

.hero-proof span {
  color: rgba(245, 245, 247, 0.62);
  font-size: 13px;
}

.cinematic-stage {
  position: relative;
  width: min(100%, 1200px);
  height: clamp(380px, 41vw, 560px);
  margin: clamp(-12px, -0.8vw, -4px) auto 0;
  isolation: isolate;
}

.stage-aurora {
  position: absolute;
  inset: 4% 4% 0;
  z-index: -3;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 255, 255, 0.36), transparent 7%),
    radial-gradient(circle at 48% 48%, rgba(0, 113, 227, 0.42), transparent 31%),
    radial-gradient(circle at 64% 72%, rgba(112, 199, 255, 0.18), transparent 34%),
    radial-gradient(circle at 28% 76%, rgba(255, 255, 255, 0.12), transparent 31%);
  filter: blur(11px);
}

.gateway-horizon {
  position: absolute;
  inset: 8% 4% 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(34px, 4.4vw, 72px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 52%, rgba(0, 113, 227, 0.26), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  background-size: 54px 54px, 54px 54px, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 54px 140px rgba(0, 0, 0, 0.52);
}

.gateway-horizon::before {
  position: absolute;
  inset: auto 8% 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 245, 247, 0.72), transparent);
  content: "";
}

.gateway-horizon::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.16), transparent 9%);
  content: "";
}

.horizon-topline {
  position: absolute;
  top: 28px;
  right: 34px;
  left: 34px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: rgba(245, 245, 247, 0.52);
  font-size: 12px;
  font-weight: 700;
}

.horizon-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(170px, 18vw, 260px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 26%),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 0 80px rgba(0, 113, 227, 0.16),
    0 0 80px rgba(0, 113, 227, 0.22);
  transform: translate(-50%, -50%);
}

.horizon-core span {
  align-self: end;
  color: #7db6ff;
  font-size: 13px;
  font-weight: 800;
}

.horizon-core strong {
  max-width: 150px;
  align-self: start;
  color: #f5f5f7;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.02;
}

.route-beam {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  height: 2px;
  width: 38%;
  transform-origin: left;
  background: linear-gradient(90deg, rgba(125, 182, 255, 0.95), transparent);
}

.beam-one {
  transform: rotate(-24deg);
}

.beam-two {
  transform: rotate(18deg);
}

.beam-three {
  width: 32%;
  transform: rotate(156deg);
}

.market-dot {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 70px;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
  font-size: 12px;
  font-weight: 760;
}

.dot-hk {
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 128px));
}

.dot-world {
  right: 13%;
  top: 24%;
}

.dot-china {
  right: 16%;
  bottom: 20%;
}

.visual-tile {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: clamp(170px, 17vw, 240px);
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(26px);
  text-align: left;
}

.visual-tile span {
  color: #7db6ff;
  font-size: 12px;
  font-weight: 800;
}

.visual-tile strong {
  font-size: 16px;
  line-height: 1.18;
}

.tile-ai {
  left: 2%;
  top: 20%;
}

.tile-web {
  left: 9%;
  bottom: 12%;
}

.tile-china {
  right: 2%;
  bottom: 18%;
}

.bar {
  border: 0;
  color: #f5f5f7;
  background: #111;
}

.bar-inner {
  min-height: 82px;
  font-size: 17px;
}

.section {
  padding: clamp(82px, 11vw, 170px) 0;
}

.section.dark {
  color: #f5f5f7;
  background: #0b0b0c;
}

.section.paper,
.section.raised {
  color: var(--apple-copy);
  background: var(--apple-panel);
}

.section-heading,
.engagement-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.45fr);
  gap: clamp(32px, 7vw, 120px);
  align-items: end;
}

.section-heading h2,
.engagement-statement h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 84px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.96;
}

.section-heading p,
.engagement-statement > p {
  color: inherit;
  opacity: 0.7;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.42;
}

.route-layout {
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: clamp(44px, 7vw, 84px);
  align-items: stretch;
}

.route-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.route-control {
  min-height: 170px;
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 22%, rgba(0, 113, 227, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.055);
}

.route-control:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.route-control span {
  color: rgba(245, 245, 247, 0.52);
  font-size: 12px;
  letter-spacing: 0;
}

.route-control strong {
  margin-top: 9px;
  color: #f5f5f7;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.06;
}

.route-control[aria-pressed="true"],
.route-control:hover,
.route-control:focus-visible {
  border-color: rgba(0, 113, 227, 0.58);
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.32), rgba(255, 255, 255, 0.08));
}

.route-control[aria-pressed="true"] span,
.route-control:hover span,
.route-control:focus-visible span {
  color: rgba(245, 245, 247, 0.7);
}

.route-panel {
  min-height: 520px;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 74% 20%, rgba(0, 113, 227, 0.26), transparent 25%),
    radial-gradient(circle at 24% 82%, rgba(255, 255, 255, 0.12), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.route-index {
  color: var(--apple-blue);
  font-size: 13px;
  letter-spacing: 0;
}

.route-panel h3 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(36px, 5vw, 78px);
  font-weight: 760;
  line-height: 0.96;
}

.route-panel p {
  max-width: 720px;
  color: rgba(245, 245, 247, 0.72);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.42;
}

.route-footnotes {
  gap: 10px;
}

.route-footnotes div {
  min-height: 84px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
}

.route-footnotes strong {
  color: rgba(245, 245, 247, 0.52);
  font-size: 11px;
}

.route-footnotes span {
  color: #f5f5f7;
  font-size: 13px;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(44px, 7vw, 82px);
  border-top: 0;
}

.engagement-grid article {
  min-width: 0;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 113, 227, 0.15), transparent 28%),
    #fff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.06);
}

.engagement-grid article + article {
  padding-left: clamp(24px, 3vw, 36px);
  border-left: 0;
}

.engagement-grid span {
  order: -1;
  font-size: 12px;
  color: var(--apple-blue);
  font-weight: 720;
  letter-spacing: 0;
}

.engagement-grid h3 {
  max-width: 360px;
  margin: auto 0 0;
  font-size: clamp(28px, 2.9vw, 46px);
  font-weight: 760;
  line-height: 1.02;
}

.engagement-grid p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--apple-muted);
  font-size: 16px;
  line-height: 1.42;
}

.product-grid article:nth-child(1) {
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.88) 65%),
    radial-gradient(circle at 50% 18%, rgba(0, 113, 227, 0.34), transparent 30%),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.88), transparent 18%),
    #fefefe;
}

.product-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, transparent 0%, rgba(29, 29, 31, 0.72) 64%),
    url("china-arrival-900.webp") center/cover;
  color: #fff;
}

.product-grid article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.72);
}

.product-grid article:nth-child(3) {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 149, 0, 0.24), transparent 28%),
    radial-gradient(circle at 38% 20%, rgba(0, 113, 227, 0.12), transparent 23%),
    linear-gradient(155deg, #f5f5f7, #fff);
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(76px, 10vw, 150px) var(--gutter);
  color: #f5f5f7;
  background: #000;
}

.showcase-copy {
  max-width: 560px;
  justify-self: end;
}

.showcase-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 82px);
  font-weight: 760;
  line-height: 0.98;
}

.showcase-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(245, 245, 247, 0.68);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.44;
}

.showcase-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.45);
}

.showcase-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 46%);
  content: "";
}

.showcase-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.02);
}

.governance-grid {
  gap: 18px;
}

.governance-card,
.method-step,
.assurance,
.notice,
.project-form,
.contact-point {
  border-radius: 26px;
}

.governance-card {
  min-height: 360px;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.055);
}

.governance-card .number,
.method-step span {
  color: var(--apple-blue);
  letter-spacing: 0;
}

.method-list {
  gap: 12px;
}

.method-step {
  background: #fff;
}

.contact-section {
  color: #f5f5f7;
  background:
    radial-gradient(circle at 70% 18%, rgba(0, 113, 227, 0.24), transparent 23%),
    #000;
}

.contact-layout {
  align-items: start;
}

.project-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.project-form input:not([type="checkbox"]),
.project-form select,
.project-form textarea {
  border-radius: 15px;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) and (min-width: 760px) {
  .hero-copy > * {
    animation: hero-rise 560ms var(--ease) both;
  }

  .hero-copy .hero-lead {
    animation-delay: 50ms;
  }

  .hero-copy .hero-actions {
    animation-delay: 90ms;
  }

  .hero-copy .hero-proof {
    animation-delay: 130ms;
  }

  .cinematic-stage {
    animation: product-enter 820ms 80ms var(--ease) both;
  }

  .stage-aurora {
    animation: halo-breathe 6.8s ease-in-out infinite;
  }

  .route-beam {
    animation: beam-pulse 3.4s ease-in-out infinite;
  }

  .visual-tile {
    animation: tile-float 6.4s ease-in-out infinite;
  }

  .tile-web {
    animation-delay: 500ms;
  }

  .tile-china {
    animation-delay: 900ms;
  }

  .engagement-grid article {
    transition:
      background 220ms var(--ease),
      transform 220ms var(--ease);
  }
  .engagement-grid article:hover {
    transform: translateY(-8px);
  }
}

@keyframes halo-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0.72;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 44px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes tile-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes beam-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .section-heading,
  .engagement-statement {
    grid-template-columns: 1fr;
  }

  .route-layout,
  .showcase-section {
    grid-template-columns: 1fr;
  }

  .engagement-statement {
    gap: 22px;
  }

  .showcase-copy {
    max-width: 760px;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    position: relative;
    padding-top: 38px;
    padding-bottom: 32px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(48px, 13.6vw, 68px);
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 22px;
    line-height: 1.12;
  }

  .hero-sublead {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.38;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .hero-proof div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .cinematic-stage {
    height: 390px;
    margin-top: 16px;
  }

  .gateway-horizon {
    inset: 5% 0 0;
    border-radius: 30px;
  }

  .horizon-topline {
    top: 18px;
    right: 18px;
    left: 18px;
    font-size: 10px;
  }

  .horizon-core {
    width: 154px;
  }

  .horizon-core strong {
    max-width: 110px;
    font-size: 20px;
  }

  .market-dot {
    min-width: 58px;
    min-height: 32px;
    font-size: 10px;
  }

  .dot-hk {
    transform: translate(-50%, calc(-50% + 92px));
  }

  .dot-world {
    right: 7%;
    top: 26%;
  }

  .dot-china {
    right: 8%;
    bottom: 23%;
  }

  .visual-tile {
    min-width: 136px;
    padding: 12px 13px;
    border-radius: 17px;
  }

  .visual-tile strong {
    font-size: 12px;
  }

  .tile-ai {
    left: 2%;
    top: 15%;
  }

  .tile-web {
    left: 4%;
    bottom: 8%;
  }

  .tile-china {
    right: 2%;
    bottom: 9%;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .engagement-grid article {
    min-height: 360px;
  }

  .engagement-grid article + article {
    padding-left: clamp(24px, 3vw, 36px);
  }

  .engagement-grid h3 {
    margin-top: auto;
  }

  .showcase-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .showcase-media {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *,
  .cinematic-stage,
  .stage-aurora,
  .route-beam,
  .visual-tile {
    animation: none;
  }
}

/* Premium route redesign: lightning claw brand, cinematic service cards and compliance visuals. */
.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(145deg, #111114, #050505 56%, #0a2e57);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 34px rgba(0, 113, 227, 0.28);
}

.brand-mark::before {
  position: absolute;
  left: 8px;
  top: 3px;
  display: block;
  width: 18px;
  height: 27px;
  border: 0;
  background: linear-gradient(155deg, #fff, #9fd7ff 48%, #0071e3);
  clip-path: polygon(58% 0, 16% 52%, 44% 52%, 28% 100%, 88% 39%, 58% 39%, 78% 0);
  content: "";
}

.brand-mark::after {
  position: absolute;
  right: 4px;
  top: 8px;
  display: block;
  width: 13px;
  height: 17px;
  border: 0;
  background:
    linear-gradient(#f5f5f7, #f5f5f7) 0 0 / 12px 2px no-repeat,
    linear-gradient(#f5f5f7, #f5f5f7) 1px 7px / 13px 2px no-repeat,
    linear-gradient(#f5f5f7, #f5f5f7) 0 14px / 12px 2px no-repeat;
  content: "";
  transform: rotate(-28deg);
  transform-origin: center;
}

.engagement-statement h2,
.section-heading h2,
.showcase-copy h2 {
  text-wrap: balance;
}

.engagement-grid.product-grid {
  gap: clamp(14px, 2vw, 22px);
}

.engagement-grid.product-grid .product-card {
  position: relative;
  display: flex;
  min-height: clamp(470px, 36vw, 610px);
  padding: 0;
  isolation: isolate;
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: clamp(28px, 3vw, 44px);
  background: #fff;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.engagement-grid.product-grid .product-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.96) 70%);
  content: "";
}

.engagement-grid.product-grid .product-card:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.06) 24%, rgba(5, 5, 5, 0.78) 70%);
}

.product-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  padding: clamp(24px, 3vw, 38px);
}

.engagement-grid .product-copy > span {
  display: inline-flex;
  order: initial;
  margin-bottom: 14px;
  color: var(--apple-blue);
  font-size: 12px;
  font-weight: 760;
}

.engagement-grid .product-copy h3 {
  max-width: 390px;
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(30px, 3.1vw, 52px);
  line-height: 1;
  text-wrap: balance;
}

.engagement-grid .product-copy p {
  max-width: 410px;
  margin-top: 16px;
  color: #5f6368;
  font-size: clamp(15px, 1.18vw, 17px);
}

.product-card-arrival .product-copy h3,
.product-card-arrival .product-copy p {
  color: #f5f5f7;
}

.product-card-arrival .product-copy p {
  color: rgba(245, 245, 247, 0.74);
}

.product-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.visual-global {
  background:
    radial-gradient(circle at 50% 24%, rgba(0, 113, 227, 0.25), transparent 23%),
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.95), transparent 17%),
    linear-gradient(180deg, #f8fbff, #fff 70%);
}

.visual-global .orbit {
  position: absolute;
  left: 50%;
  top: 26%;
  border: 1px solid rgba(0, 113, 227, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.visual-global .orbit-one {
  width: min(72%, 270px);
  aspect-ratio: 1;
}

.visual-global .orbit-two {
  width: min(52%, 200px);
  aspect-ratio: 1;
  border-color: rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%) rotate(22deg) scaleY(0.72);
}

.core-mark {
  position: absolute;
  left: 50%;
  top: 26%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 24px;
  color: #f5f5f7;
  font-size: 18px;
  font-weight: 760;
  background: linear-gradient(145deg, #1d1d1f, #050505 58%, #0071e3);
  box-shadow: 0 26px 70px rgba(0, 113, 227, 0.32);
  transform: translate(-50%, -50%);
}

.signal-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #0071e3;
  box-shadow: 0 0 0 7px rgba(0, 113, 227, 0.1);
}

.dot-one {
  left: 28%;
  top: 17%;
}

.dot-two {
  right: 23%;
  top: 30%;
}

.dot-three {
  left: 47%;
  top: 46%;
}

.visual-arrival {
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.5), transparent 19%),
    linear-gradient(145deg, rgba(0, 113, 227, 0.9), rgba(5, 5, 5, 0.98) 66%);
}

.visual-arrival::before {
  position: absolute;
  inset: 13% -8% auto;
  height: 45%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px 42px);
  clip-path: polygon(0 62%, 100% 12%, 100% 100%, 0 100%);
  content: "";
}

.arrival-card {
  position: absolute;
  display: grid;
  min-width: 132px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: #f5f5f7;
  font-size: 13px;
  font-weight: 720;
  backdrop-filter: blur(16px);
}

.glass-card {
  left: 13%;
  top: 18%;
  background: rgba(255, 255, 255, 0.16);
}

.dark-card {
  right: 12%;
  top: 34%;
  background: rgba(0, 0, 0, 0.28);
}

.arrival-path {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 33%;
  height: 2px;
  background: linear-gradient(90deg, #fff, rgba(159, 215, 255, 0.8), transparent);
  transform: rotate(16deg);
}

.visual-trade {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 149, 0, 0.2), transparent 25%),
    radial-gradient(circle at 22% 22%, rgba(0, 113, 227, 0.18), transparent 25%),
    linear-gradient(160deg, #f5f5f7, #fff);
}

.trade-line {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 27%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0), rgba(0, 113, 227, 0.62), rgba(255, 149, 0, 0));
}

.line-two {
  top: 39%;
  transform: rotate(-12deg);
}

.trade-node {
  position: absolute;
  display: grid;
  min-width: 112px;
  min-height: 50px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  color: #1d1d1f;
  font-size: 12px;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.node-supplier {
  left: 12%;
  top: 16%;
}

.node-procure {
  right: 12%;
  top: 27%;
}

.node-export {
  left: 33%;
  top: 42%;
}

.gateway-showcase {
  min-height: min(900px, 92vh);
  padding-top: clamp(90px, 10vw, 170px);
  padding-bottom: clamp(90px, 10vw, 170px);
  background:
    radial-gradient(circle at 76% 24%, rgba(0, 113, 227, 0.25), transparent 24%),
    radial-gradient(circle at 26% 82%, rgba(159, 215, 255, 0.08), transparent 25%),
    #000;
}

.gateway-board {
  min-height: clamp(480px, 46vw, 680px);
  border-radius: clamp(30px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 113, 227, 0.18), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 50px 140px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.gateway-board::before,
.gateway-board::after {
  position: absolute;
  content: "";
}

.gateway-board::before {
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.gateway-board::after {
  inset: 26% 33%;
  border-radius: 36px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(145deg, #111114, #050505 60%, #06294f);
  box-shadow:
    0 30px 90px rgba(0, 113, 227, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.board-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 72%);
}

.board-route {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(159, 215, 255, 0.95), transparent);
  transform-origin: left center;
}

.route-global {
  left: 18%;
  right: 50%;
  top: 44%;
  transform: rotate(-12deg);
}

.route-china {
  left: 50%;
  right: 14%;
  top: 44%;
  transform: rotate(15deg);
}

.route-trade {
  left: 50%;
  right: 18%;
  top: 55%;
  transform: rotate(-20deg);
}

.board-node {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 152px;
  gap: 3px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.board-node span,
.board-ledger span {
  color: rgba(245, 245, 247, 0.54);
  font-size: 11px;
}

.board-node strong {
  color: #f5f5f7;
  font-size: 14px;
}

.node-world {
  left: 8%;
  top: 33%;
}

.node-hk {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.node-reception {
  right: 8%;
  top: 25%;
}

.node-sourcing {
  right: 10%;
  bottom: 22%;
}

.board-ledger {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 8%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.board-ledger span {
  display: grid;
  min-height: 44px;
  place-items: center;
  background: rgba(0, 0, 0, 0.24);
  color: rgba(245, 245, 247, 0.72);
  font-weight: 680;
}

.showcase-media.gateway-board::after {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(145deg, #111114, #050505 60%, #06294f);
}

.governance-grid {
  align-items: stretch;
  border-top: 0;
}

.governance-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(0, 0, 0, 0.055);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff),
    #fff;
}

.governance-card h3 {
  min-height: auto;
  margin-top: 18px;
  color: #1d1d1f;
  font-size: clamp(24px, 2.1vw, 34px);
}

.governance-card p {
  color: #5f6368;
  font-size: 15px;
}

.governance-card a {
  color: #0071e3;
}

.governance-symbol {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 38px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.75), transparent 20%),
    linear-gradient(145deg, #1d1d1f, #050505 62%, #0b66c3);
  box-shadow: 0 24px 58px rgba(0, 113, 227, 0.18);
}

.governance-symbol::before,
.governance-symbol::after {
  position: absolute;
  content: "";
}

.symbol-disclose::before {
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
}

.symbol-disclose::after {
  left: 35px;
  top: 18px;
  width: 2px;
  height: 36px;
  background: #9fd7ff;
}

.symbol-verify::before {
  left: 19px;
  top: 24px;
  width: 34px;
  height: 18px;
  border-left: 3px solid #9fd7ff;
  border-bottom: 3px solid #9fd7ff;
  transform: rotate(-45deg);
}

.symbol-verify::after {
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
}

.symbol-minimise::before {
  left: 17px;
  top: 20px;
  width: 38px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
}

.symbol-minimise::after {
  left: 33px;
  top: 32px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #9fd7ff;
  box-shadow: 0 0 0 8px rgba(159, 215, 255, 0.12);
}

.assurance {
  margin-top: 18px;
  border: 1px solid rgba(0, 113, 227, 0.16);
  background:
    radial-gradient(circle at 10% 50%, rgba(0, 113, 227, 0.08), transparent 24%),
    #fff;
}

.cinematic-method {
  gap: 14px;
  border-top: 0;
  counter-reset: method;
}

.cinematic-method .method-step {
  position: relative;
  min-height: 156px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 28px;
  grid-template-columns: minmax(100px, 0.18fr) minmax(0, 0.48fr) minmax(240px, 0.34fr);
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.065), transparent 28%),
    #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.045);
}

.cinematic-method .method-step::before {
  position: absolute;
  right: clamp(20px, 4vw, 52px);
  top: 50%;
  color: rgba(0, 0, 0, 0.045);
  font-size: clamp(72px, 10vw, 132px);
  font-weight: 780;
  line-height: 1;
  content: attr(data-step);
  transform: translateY(-50%);
}

.cinematic-method .method-step:nth-child(1)::before { content: "01"; }
.cinematic-method .method-step:nth-child(2)::before { content: "02"; }
.cinematic-method .method-step:nth-child(3)::before { content: "03"; }
.cinematic-method .method-step:nth-child(4)::before { content: "04"; }

.cinematic-method .method-step h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 3.2vw, 45px);
  text-wrap: balance;
}

.cinematic-method .method-step p,
.cinematic-method .method-step span {
  position: relative;
  z-index: 1;
}

.dark .section-heading h2,
#evidence .section-heading h2 {
  max-width: 760px;
}

#evidence .evidence-table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 0%, rgba(0, 113, 227, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#evidence .evidence-table {
  border-collapse: separate;
  border-spacing: 0;
}

#evidence .evidence-table th,
#evidence .evidence-table td {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

#evidence .evidence-table th {
  color: rgba(245, 245, 247, 0.46);
}

#evidence .evidence-table td {
  color: rgba(245, 245, 247, 0.68);
}

#evidence .evidence-table td strong {
  color: #f5f5f7;
  font-size: 14px;
}

#evidence .state {
  border-radius: 999px;
  border-color: rgba(159, 215, 255, 0.4);
  color: #9fd7ff;
  background: rgba(0, 113, 227, 0.12);
}

#evidence .state.pending {
  border-color: rgba(255, 190, 105, 0.5);
  color: #ffbe69;
  background: rgba(255, 149, 0, 0.1);
}

#evidence .notice {
  border-color: rgba(255, 190, 105, 0.22);
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 149, 0, 0.12), transparent 20%),
    rgba(255, 255, 255, 0.06);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .brand-mark::before {
    transition: transform 260ms var(--ease);
  }

  .brand:hover .brand-mark::before,
  .brand:focus-visible .brand-mark::before {
    transform: translateY(-1px) scale(1.05);
  }

  .visual-global .orbit-one,
  .visual-global .orbit-two {
    animation: orbit-drift 9s linear infinite;
  }

  .visual-global .orbit-two {
    animation-duration: 12s;
    animation-direction: reverse;
  }

  .arrival-path,
  .board-route {
    animation: line-scan 3.8s ease-in-out infinite;
  }

  .board-node {
    transition:
      transform 260ms var(--ease),
      border-color 260ms var(--ease),
      background 260ms var(--ease);
  }

  .gateway-board:hover .board-node {
    border-color: rgba(159, 215, 255, 0.34);
    background: rgba(255, 255, 255, 0.105);
  }
}

@keyframes orbit-drift {
  to {
    transform: translate(-50%, -50%) rotate(342deg);
  }
}

@keyframes line-scan {
  0%,
  100% {
    opacity: 0.38;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .engagement-grid.product-grid {
    grid-template-columns: 1fr;
  }

  .engagement-grid.product-grid .product-card {
    min-height: 420px;
  }

  .gateway-board {
    width: 100%;
  }

  .cinematic-method .method-step {
    grid-template-columns: 96px 1fr;
  }

  .cinematic-method .method-step p {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .engagement-statement h2,
  .section-heading h2 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.02;
  }

  .engagement-grid.product-grid .product-card {
    min-height: 390px;
    border-radius: 28px;
  }

  .product-copy {
    padding: 24px;
  }

  .engagement-grid .product-copy h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .core-mark {
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .arrival-card,
  .trade-node {
    min-width: 100px;
  }

  .gateway-showcase {
    min-height: auto;
  }

  .gateway-board {
    min-height: 520px;
    border-radius: 28px;
  }

  .gateway-board::after {
    inset: 32% 24%;
    border-radius: 28px;
  }

  .node-world {
    left: 7%;
    top: 18%;
  }

  .node-hk {
    top: 49%;
  }

  .node-reception {
    right: 7%;
    top: 31%;
  }

  .node-sourcing {
    left: 8%;
    right: auto;
    bottom: 18%;
  }

  .board-node {
    min-width: 132px;
    padding: 13px 14px;
  }

  .board-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: 7%;
    right: 7%;
    bottom: 5%;
  }

  .cinematic-method .method-step {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cinematic-method .method-step p {
    grid-column: auto;
  }

  #evidence .evidence-table-wrap {
    overflow: visible;
  }

  #evidence .evidence-table,
  #evidence .evidence-table thead,
  #evidence .evidence-table tbody,
  #evidence .evidence-table tr,
  #evidence .evidence-table th,
  #evidence .evidence-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  #evidence .evidence-table {
    min-width: 0;
  }

  #evidence .evidence-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  #evidence .evidence-table tr {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  #evidence .evidence-table tr:last-child {
    border-bottom: 0;
  }

  #evidence .evidence-table td {
    padding: 0;
    border-bottom: 0;
  }

  #evidence .evidence-table td + td {
    margin-top: 12px;
  }

  #evidence .evidence-table td:nth-child(3) {
    margin-top: 14px;
  }
}

.hero {
  background:
    radial-gradient(circle at 50% 59%, rgba(0, 113, 227, 0.34), transparent 30%),
    radial-gradient(circle at 50% 96%, rgba(159, 215, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0b0b0d 56%, #000 100%);
}

.hero::before {
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92) 88%);
}

.hero h1,
.hero h1 em {
  color: #f5f5f7;
  text-shadow: 0 18px 70px rgba(0, 113, 227, 0.24);
}

.hero h1 em {
  background: linear-gradient(90deg, #fff, #dcebff 46%, #8fc8ff 74%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  color: rgba(245, 245, 247, 0.9);
}

.hero-sublead {
  color: rgba(245, 245, 247, 0.72);
}

.stage-aurora {
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 255, 255, 0.5), transparent 7%),
    radial-gradient(circle at 48% 48%, rgba(0, 113, 227, 0.56), transparent 31%),
    radial-gradient(circle at 64% 72%, rgba(112, 199, 255, 0.24), transparent 34%),
    radial-gradient(circle at 28% 76%, rgba(255, 255, 255, 0.14), transparent 31%);
}

@media (max-width: 620px) {
  .hero-lead {
    color: rgba(245, 245, 247, 0.88);
  }

  .hero-sublead {
    color: rgba(245, 245, 247, 0.7);
  }
}

/* Payment and verification panels: high-contrast, readable at a glance. */
.assurance {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 172px;
  border: 1px solid rgba(0, 113, 227, 0.24);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 56px rgba(0, 42, 91, 0.08);
}

.assurance::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 41%;
  content: "";
  background:
    radial-gradient(circle at 22% 35%, rgba(88, 177, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #f2f8ff, #ffffff 72%);
}

.assurance-label,
.assurance-copy {
  position: relative;
  padding: clamp(25px, 3vw, 38px);
}

.assurance-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right-color: rgba(0, 113, 227, 0.15);
}

.assurance-label span {
  color: #0071e3;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.assurance-label strong {
  max-width: 360px;
  margin-top: 12px;
  color: #17171a;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 720;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.assurance-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.assurance-copy p {
  max-width: 700px;
  color: #51555b;
  font-size: 15px;
  line-height: 1.65;
}

.assurance-copy a {
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0, 113, 227, 0.34);
  color: #0071e3;
  font-size: 13px;
  font-weight: 720;
}

#evidence .evidence-table {
  width: 100%;
  table-layout: fixed;
}

#evidence .evidence-table th:nth-child(1),
#evidence .evidence-table td:nth-child(1) {
  width: 14%;
}

#evidence .evidence-table th:nth-child(2),
#evidence .evidence-table td:nth-child(2) {
  width: 25%;
}

#evidence .evidence-table th:nth-child(3),
#evidence .evidence-table td:nth-child(3) {
  width: 22%;
}

#evidence .evidence-table th:nth-child(4),
#evidence .evidence-table td:nth-child(4) {
  width: 39%;
}

#evidence .evidence-table th,
#evidence .evidence-table td {
  overflow-wrap: anywhere;
}

#evidence .verification-row--trade td {
  padding-top: 24px;
  padding-bottom: 24px;
  background: linear-gradient(90deg, rgba(255, 149, 0, 0.1), rgba(255, 149, 0, 0.02) 48%, transparent);
}

#evidence .verification-row--trade td:first-child {
  box-shadow: inset 3px 0 0 #ff9500;
}

#evidence .verification-row--trade td strong {
  font-size: 15px;
}

#evidence .verification-row--trade td:nth-child(2) {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

#evidence .verification-row--trade td:nth-child(4) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

#evidence .verification-row--trade .state.pending {
  min-height: 31px;
  padding: 7px 11px;
  border-color: rgba(255, 190, 105, 0.74);
  color: #ffd29a;
  font-size: 11px;
  letter-spacing: 0.015em;
  line-height: 1.2;
}

#evidence .verification-row--trade.verification-row--supported td {
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.16), rgba(0, 113, 227, 0.04) 48%, transparent);
}

#evidence .verification-row--trade.verification-row--supported td:first-child {
  box-shadow: inset 3px 0 0 #0071e3;
}

#evidence .verification-row--trade.verification-row--supported .state {
  min-height: 31px;
  padding: 7px 11px;
  border-color: rgba(159, 215, 255, 0.7);
  color: #d9efff;
  font-size: 11px;
  letter-spacing: 0.015em;
  line-height: 1.2;
}

@media (max-width: 760px) {
  .assurance {
    min-height: 0;
  }

  .assurance::before {
    inset: 0 0 auto 0;
    width: auto;
    height: 44%;
  }

  .assurance-label {
    border-right: 0;
    border-bottom-color: rgba(0, 113, 227, 0.15);
  }

  .assurance-label strong {
    max-width: 100%;
  }

  #evidence .evidence-table th,
  #evidence .evidence-table td {
    width: 100%;
  }

  #evidence .verification-row--trade td {
    padding-top: 0;
    padding-bottom: 0;
    background: none;
  }

  #evidence .verification-row--trade td:first-child {
    padding-left: 14px;
    box-shadow: inset 3px 0 0 #ff9500;
  }

  #evidence .verification-row--trade td:nth-child(4) {
    color: rgba(255, 255, 255, 0.74);
  }

  #evidence .verification-row--trade.verification-row--supported td {
    background: none;
  }

  #evidence .verification-row--trade.verification-row--supported td:first-child {
    box-shadow: inset 3px 0 0 #0071e3;
  }
}

/* Homepage: one cinematic cross-border gateway, not a stack of interface cards. */
.hero {
  min-height: 100svh;
  background:
    radial-gradient(ellipse at 50% 71%, rgba(0, 113, 227, 0.34), transparent 23%),
    radial-gradient(ellipse at 50% 100%, rgba(53, 151, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #030304 0%, #07070a 52%, #000 100%);
}

.hero-inner {
  min-height: 100svh;
  padding-top: clamp(28px, 5vw, 68px);
}

.hero h1 {
  max-width: 1180px;
  font-size: clamp(62px, 8.7vw, 142px);
  line-height: 0.88;
}

.hero-lead {
  max-width: 860px;
  color: rgba(245, 245, 247, 0.82);
  font-size: clamp(21px, 1.8vw, 30px);
}

.hero-sublead {
  max-width: 650px;
  color: rgba(245, 245, 247, 0.62);
}

.cinematic-stage {
  width: min(100%, 1320px);
  height: clamp(390px, 39vw, 600px);
  margin-top: clamp(-2px, -0.3vw, 0px);
}

.gateway-field {
  position: absolute;
  inset: 7% 3% 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(36px, 5vw, 76px) clamp(36px, 5vw, 76px) 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 90%, rgba(0, 113, 227, 0.36), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.006) 54%, rgba(0, 0, 0, 0.46));
  background-size: 44px 44px, 44px 44px, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 48px 135px rgba(0, 0, 0, 0.62);
}

.gateway-field::before,
.gateway-field::after {
  position: absolute;
  content: "";
}

.gateway-field::before {
  inset: auto 4% 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
}

.gateway-field::after {
  inset: 0;
  background: radial-gradient(circle at 50% 51%, rgba(255, 255, 255, 0.13), transparent 7%);
}

.gateway-monolith {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 51%;
  display: grid;
  width: clamp(188px, 21vw, 300px);
  aspect-ratio: 0.78;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: clamp(26px, 3.8vw, 52px);
  background:
    linear-gradient(116deg, rgba(255, 255, 255, 0.24), transparent 28%),
    radial-gradient(circle at 50% 44%, rgba(99, 179, 255, 0.58), transparent 32%),
    linear-gradient(155deg, #162d50, #07101d 48%, #020304);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 0 0 14px rgba(0, 113, 227, 0.035), 0 35px 90px rgba(0, 79, 172, 0.34);
  transform: translate(-50%, -50%) perspective(900px) rotateX(5deg);
}

.gateway-monolith::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: inherit;
  content: "";
}

.gateway-monolith span {
  position: relative;
  color: #cfe9ff;
  font-size: clamp(28px, 3.5vw, 54px);
  font-weight: 820;
  letter-spacing: 0.05em;
}

.gateway-monolith strong {
  position: relative;
  color: rgba(245, 245, 247, 0.92);
  font-size: clamp(13px, 1.3vw, 18px);
  line-height: 1.03;
  letter-spacing: 0.08em;
}

.gateway-arc {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 51%;
  width: min(62vw, 800px);
  height: min(31vw, 390px);
  border-top: 1px solid rgba(153, 210, 255, 0.58);
  border-radius: 50% 50% 0 0;
  transform-origin: 50% 100%;
}

.arc-one {
  opacity: 0.95;
  transform: translate(-50%, -100%) rotate(-18deg) scaleX(0.92);
}

.arc-two {
  width: min(78vw, 990px);
  height: min(40vw, 490px);
  opacity: 0.48;
  transform: translate(-50%, -100%) rotate(12deg) scaleX(0.9);
}

.arc-three {
  width: min(47vw, 610px);
  height: min(25vw, 320px);
  border-top-color: rgba(255, 255, 255, 0.7);
  opacity: 0.68;
  transform: translate(-50%, -100%) rotate(37deg) scaleX(0.95);
}

.gateway-point,
.gateway-caption {
  position: absolute;
  z-index: 4;
  color: rgba(245, 245, 247, 0.85);
  font-size: 12px;
  font-weight: 730;
  letter-spacing: 0.035em;
}

.gateway-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gateway-point span {
  display: grid;
  width: 27px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #9fd7ff;
  font-size: 10px;
}

.point-world { left: 12%; top: 29%; }
.point-hk { left: 50%; bottom: 16%; transform: translateX(-50%); }
.point-china { right: 12%; top: 38%; }

.gateway-caption {
  right: 6%;
  bottom: 6%;
  color: rgba(245, 245, 247, 0.42);
  font-size: 10px;
}

.stage-aurora,
.gateway-horizon,
.horizon-topline,
.horizon-core,
.route-beam,
.market-dot,
.visual-tile {
  display: none;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .gateway-monolith { animation: gateway-rise 4.8s ease-in-out infinite; }
  .gateway-arc { animation: arc-breathe 5.8s ease-in-out infinite; }
  .arc-two { animation-delay: 680ms; }
  .arc-three { animation-delay: 1120ms; }
}

@keyframes gateway-rise {
  0%, 100% { transform: translate(-50%, -50%) perspective(900px) rotateX(5deg) translateY(0); }
  50% { transform: translate(-50%, -50%) perspective(900px) rotateX(5deg) translateY(-8px); }
}

@keyframes arc-breathe {
  0%, 100% { opacity: 0.42; }
  50% { opacity: 0.96; }
}

@media (max-width: 620px) {
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding-top: 40px; }
  .hero h1 { font-size: clamp(52px, 14vw, 69px); }
  .cinematic-stage { height: 380px; margin-top: 12px; }
  .gateway-field { inset: 7% 0 0; border-radius: 32px 32px 0 0; background-size: 32px 32px, 32px 32px, auto, auto; }
  .gateway-monolith { width: 184px; }
  .gateway-arc { width: 110vw; height: 52vw; }
  .arc-two { width: 136vw; height: 67vw; }
  .arc-three { width: 85vw; height: 41vw; }
  .point-world { left: 7%; top: 25%; }
  .point-china { right: 7%; top: 34%; }
  .gateway-caption { right: 18px; bottom: 18px; font-size: 8px; }
}

/* Flagship visual system: real-world scale in the hero, focused scenes below. */
.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.hero-earth {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.4;
  background:
    radial-gradient(ellipse at 50% 43%, transparent 15%, rgba(0, 0, 0, 0.58) 63%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.28) 47%, #000 100%),
    url("earth-night.jpg") center 46% / cover no-repeat;
  filter: saturate(1.12) contrast(1.1);
  transform: scale(1.04);
}

.hero::before {
  z-index: -2;
  height: 64%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 62%, rgba(0, 0, 0, 0.82));
}

.hero .eyebrow {
  position: relative;
  padding: 8px 13px;
  border: 1px solid rgba(159, 215, 255, 0.26);
  border-radius: 999px;
  color: #a9d5ff;
  background: rgba(4, 18, 34, 0.55);
  box-shadow: 0 0 40px rgba(0, 113, 227, 0.12);
}

.hero h1 {
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.48);
}

.hero h1 em {
  background: linear-gradient(90deg, #fff 4%, #eaf4ff 40%, #79b8ff 70%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-proof {
  position: relative;
  z-index: 5;
  margin-top: -16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 7, 14, 0.62);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
}

.cinematic-stage {
  z-index: 1;
}

.gateway-field {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 100%, rgba(0, 113, 227, 0.48), transparent 28%),
    linear-gradient(180deg, rgba(2, 12, 25, 0.22), rgba(0, 0, 0, 0.56));
  background-size: 44px 44px, 44px 44px, auto, auto;
}

#routes {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 16%, rgba(0, 113, 227, 0.14), transparent 22%),
    #050507;
}

#routes::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: min(9vw, 130px) 100%;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

#routes .container {
  position: relative;
}

#routes .section-heading {
  margin-bottom: clamp(38px, 5vw, 76px);
}

.route-layout {
  display: grid;
  min-height: clamp(510px, 54vw, 680px);
  grid-template-columns: minmax(260px, 0.33fr) minmax(0, 0.67fr);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.3);
}

.route-controls {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.route-control {
  min-height: 0;
  padding: 26px 24px;
  border: 0;
  border-radius: 22px;
  color: rgba(245, 245, 247, 0.57);
  text-align: left;
}

.route-control + .route-control {
  margin-top: 5px;
}

.route-control span {
  color: inherit;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.route-control strong {
  margin-top: 10px;
  color: inherit;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 680;
  line-height: 1.12;
}

.route-control[aria-pressed="true"],
.route-control:hover,
.route-control:focus-visible {
  color: #fff;
  background: linear-gradient(130deg, rgba(0, 113, 227, 0.32), rgba(255, 255, 255, 0.07));
  box-shadow: inset 0 0 0 1px rgba(159, 215, 255, 0.18);
}

.route-panel {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: clamp(28px, 4vw, 62px);
  overflow: hidden;
  border: 0;
  background: radial-gradient(circle at 50% 44%, rgba(0, 113, 227, 0.14), transparent 38%);
}

.route-panel > :not(.route-stage) {
  position: relative;
  z-index: 2;
}

.route-panel > div:not(.route-stage):first-of-type {
  max-width: 650px;
}

.route-index {
  color: #9fd7ff;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.route-panel h3 {
  max-width: 720px;
  margin-top: 13px;
  color: #fff;
  font-size: clamp(38px, 4.45vw, 70px);
  line-height: 0.94;
  text-wrap: balance;
}

.route-panel p {
  max-width: 600px;
  color: rgba(245, 245, 247, 0.74);
  font-size: 16px;
  line-height: 1.55;
}

.route-footnotes {
  display: grid;
  max-width: 820px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-footnotes div {
  padding: 17px 16px 0 0;
}

.route-footnotes div + div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.route-footnotes strong,
.route-footnotes span {
  display: block;
}

.route-footnotes strong {
  color: #9fd7ff;
  font-size: 10px;
  letter-spacing: 0.07em;
}

.route-footnotes span {
  margin-top: 6px;
  color: rgba(245, 245, 247, 0.74);
  font-size: 12px;
  line-height: 1.35;
}

.route-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.92;
  transition: background 600ms var(--ease);
}

.route-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 5, 9, 0.2), rgba(4, 5, 9, 0.18) 36%, #07070a 94%);
}

.route-stage-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(133, 202, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 202, 255, 0.11) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000, transparent 77%);
}

.route-stage-orbit {
  position: absolute;
  left: 54%;
  top: 38%;
  border: 1px solid rgba(159, 215, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-24deg);
}

.orbit-a { width: 64%; aspect-ratio: 1; }
.orbit-b { width: 94%; aspect-ratio: 0.54; opacity: 0.42; transform: translate(-50%, -50%) rotate(32deg); }

.route-stage-core {
  position: absolute;
  left: 54%;
  top: 38%;
  z-index: 1;
  display: grid;
  width: clamp(110px, 13vw, 178px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #dcedff;
  background: radial-gradient(circle, rgba(80, 167, 255, 0.7), rgba(0, 38, 90, 0.3) 44%, transparent 68%);
  box-shadow: 0 0 90px rgba(0, 113, 227, 0.46);
  font-size: clamp(27px, 4vw, 54px);
  font-weight: 780;
  transform: translate(-50%, -50%);
}

.route-stage-label {
  position: absolute;
  z-index: 1;
  color: rgba(245, 245, 247, 0.58);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.label-a { left: 12%; top: 19%; }
.label-b { left: 54%; top: 17%; }
.label-c { right: 10%; top: 48%; }

.route-stage-city,
.route-stage-supply {
  position: absolute;
  opacity: 0;
  transition: opacity 450ms var(--ease), transform 600ms var(--ease);
}

.route-stage-city {
  right: 0;
  bottom: 20%;
  left: 8%;
  height: 42%;
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(119, 181, 255, 0.5) 5% 7%, transparent 7% 12%, rgba(119, 181, 255, 0.35) 12% 15%, transparent 15% 23%, rgba(119, 181, 255, 0.65) 23% 27%, transparent 27% 34%, rgba(119, 181, 255, 0.38) 34% 40%, transparent 40% 47%, rgba(119, 181, 255, 0.7) 47% 54%, transparent 54% 61%, rgba(119, 181, 255, 0.45) 61% 66%, transparent 66% 76%, rgba(119, 181, 255, 0.55) 76% 80%, transparent 80%),
    linear-gradient(90deg, transparent 0 5%, #0a1f3d 5% 7%, transparent 7% 12%, #07172f 12% 15%, transparent 15% 23%, #0a2f5e 23% 27%, transparent 27% 34%, #08254a 34% 40%, transparent 40% 47%, #0d3d76 47% 54%, transparent 54% 61%, #082548 61% 66%, transparent 66% 76%, #0b3261 76% 80%, transparent 80%);
  clip-path: polygon(0 100%, 0 63%, 4% 63%, 4% 38%, 8% 38%, 8% 77%, 14% 77%, 14% 18%, 20% 18%, 20% 58%, 26% 58%, 26% 31%, 34% 31%, 34% 72%, 42% 72%, 42% 7%, 49% 7%, 49% 66%, 58% 66%, 58% 27%, 67% 27%, 67% 81%, 75% 81%, 75% 43%, 84% 43%, 84% 13%, 91% 13%, 91% 61%, 100% 61%, 100% 100%);
  filter: drop-shadow(0 0 18px rgba(0, 113, 227, 0.46));
  transform: translateY(40px);
}

.route-stage-supply {
  inset: 14% 10% auto 12%;
  height: 48%;
  background:
    radial-gradient(circle at 7% 78%, #9fd7ff 0 5px, transparent 6px),
    radial-gradient(circle at 42% 28%, #9fd7ff 0 5px, transparent 6px),
    radial-gradient(circle at 79% 68%, #9fd7ff 0 5px, transparent 6px),
    linear-gradient(24deg, transparent 18%, rgba(159, 215, 255, 0.66) 18.2% 18.8%, transparent 19%),
    linear-gradient(151deg, transparent 39%, rgba(159, 215, 255, 0.66) 39.2% 39.8%, transparent 40%),
    linear-gradient(21deg, transparent 57%, rgba(159, 215, 255, 0.66) 57.2% 57.8%, transparent 58%);
  transform: scale(0.9);
}

.route-panel[data-route="arrival"] .route-stage {
  background: radial-gradient(circle at 62% 42%, rgba(51, 146, 255, 0.32), transparent 35%);
}

.route-panel[data-route="arrival"] .route-stage-orbit,
.route-panel[data-route="arrival"] .route-stage-core,
.route-panel[data-route="arrival"] .label-a {
  opacity: 0.16;
}

.route-panel[data-route="arrival"] .route-stage-city {
  opacity: 1;
  transform: translateY(0);
}

.route-panel[data-route="trade"] .route-stage {
  background: radial-gradient(circle at 48% 38%, rgba(0, 113, 227, 0.26), transparent 34%);
}

.route-panel[data-route="trade"] .route-stage-orbit,
.route-panel[data-route="trade"] .route-stage-core,
.route-panel[data-route="trade"] .route-stage-city,
.route-panel[data-route="trade"] .label-c {
  opacity: 0.14;
}

.route-panel[data-route="trade"] .route-stage-supply {
  opacity: 1;
  transform: scale(1);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .route-stage-orbit { animation: route-orbit 11s linear infinite; }
  .orbit-b { animation-duration: 15s; animation-direction: reverse; }
  .route-stage-core { animation: route-core 4.8s ease-in-out infinite; }
  .route-panel[data-route="arrival"] .route-stage-city { animation: city-rise 1s var(--ease) both; }
  .route-panel[data-route="trade"] .route-stage-supply { animation: supply-pulse 3.6s ease-in-out infinite; }
}

@keyframes route-orbit { to { transform: translate(-50%, -50%) rotate(336deg); } }
@keyframes route-core { 0%, 100% { box-shadow: 0 0 70px rgba(0, 113, 227, 0.34); } 50% { box-shadow: 0 0 115px rgba(0, 113, 227, 0.64); } }
@keyframes city-rise { from { opacity: 0; transform: translateY(45px); } to { opacity: 1; transform: translateY(0); } }
@keyframes supply-pulse { 0%, 100% { filter: drop-shadow(0 0 0 rgba(159, 215, 255, 0)); } 50% { filter: drop-shadow(0 0 16px rgba(159, 215, 255, 0.55)); } }

@media (max-width: 820px) {
  .route-layout { min-height: 0; grid-template-columns: 1fr; border-radius: 26px; }
  .route-controls { display: grid; padding: 8px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.11); grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .route-control { padding: 16px 13px; border-radius: 16px; }
  .route-control + .route-control { margin-top: 0; }
  .route-control strong { font-size: 14px; }
  .route-panel { min-height: 520px; padding: 26px 22px; }
  .route-panel h3 { font-size: clamp(34px, 8.5vw, 52px); }
  .route-footnotes { grid-template-columns: 1fr; }
  .route-footnotes div { padding: 13px 0 0; }
  .route-footnotes div + div { padding-left: 0; border-left: 0; }
  .route-stage { opacity: 0.7; }
}

@media (max-width: 520px) {
  .hero-earth { opacity: 0.28; background-position: 56% 44%; }
  .hero-proof { margin-top: 12px; }
  .route-controls { grid-template-columns: 1fr; }
  .route-control { display: grid; min-height: 74px; padding: 13px 16px; grid-template-columns: 106px 1fr; align-items: center; gap: 8px; }
  .route-control strong { margin-top: 0; }
  .route-panel { min-height: 540px; padding: 24px 20px; }
  .route-panel p { font-size: 14px; }
  .route-stage-grid { background-size: 34px 34px; }
  .route-stage-core { left: 57%; top: 37%; width: 122px; }
  .route-stage-orbit { left: 57%; top: 37%; }
  .orbit-a { width: 104%; }
  .orbit-b { width: 144%; }
}

/* Hero art direction: a text-free Atlas, built around Hong Kong as a global node. */
.cinematic-stage {
  position: relative;
  height: clamp(390px, 42vw, 660px);
  overflow: visible;
}

.gateway-field,
.gateway-arc,
.gateway-monolith,
.gateway-point,
.gateway-caption {
  display: none;
}

.atlas-halo {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 113, 227, 0.29) 0 8%, rgba(0, 113, 227, 0.14) 25%, transparent 66%);
  filter: blur(8px);
  transform: translate(-50%, -50%) scale(1.16);
}

.atlas-globe {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 51%;
  width: min(52vw, 740px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(186, 226, 255, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 26%, rgba(230, 246, 255, 0.32), transparent 18%),
    radial-gradient(circle at 68% 77%, rgba(0, 113, 227, 0.42), transparent 47%),
    #02101e;
  box-shadow:
    inset 28px 4px 60px rgba(198, 230, 255, 0.14),
    inset -66px -24px 100px rgba(0, 0, 0, 0.82),
    0 0 0 1px rgba(0, 113, 227, 0.28),
    0 36px 110px rgba(0, 38, 89, 0.58);
  transform: translate(-50%, -50%);
}

.atlas-globe::before,
.atlas-globe::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
  content: "";
}

.atlas-globe::before {
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.35), transparent 7%),
    radial-gradient(circle at 53% 52%, transparent 47%, rgba(0, 0, 0, 0.52) 100%);
  mix-blend-mode: screen;
}

.atlas-globe::after {
  border: 1px solid rgba(255, 255, 255, 0.19);
  box-shadow: inset 0 0 36px rgba(158, 215, 255, 0.18);
}

.atlas-map {
  position: absolute;
  z-index: 1;
  inset: -8% -25% -8% -25%;
  opacity: 1;
  background:
    radial-gradient(ellipse at center, transparent 22%, rgba(0, 8, 17, 0.3) 72%),
    linear-gradient(120deg, rgba(0, 28, 66, 0.08), transparent 55%),
    url("earth-night.jpg") 56% 46% / auto 114% no-repeat;
  filter: saturate(1.4) contrast(1.36) brightness(1.3);
  transform: rotate(-4deg) scale(1.08);
}

.atlas-meridian,
.atlas-latitude {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(158, 215, 255, 0.23);
  border-radius: 50%;
}

.atlas-meridian {
  top: -7%;
  bottom: -7%;
  width: 36%;
}

.meridian-one { left: 19%; }
.meridian-two { right: 19%; }

.atlas-latitude {
  right: -7%;
  left: -7%;
  height: 28%;
}

.latitude-one { top: 25%; }
.latitude-two { bottom: 23%; }

.atlas-route {
  position: absolute;
  z-index: 5;
  left: 55%;
  top: 57%;
  width: 43%;
  height: 28%;
  border-top: 2px solid rgba(208, 239, 255, 0.9);
  border-radius: 50% 50% 0 0;
  filter: drop-shadow(0 0 8px rgba(90, 177, 255, 0.95));
  transform-origin: left bottom;
}

.route-west {
  width: 56%;
  height: 35%;
  transform: rotate(-157deg);
}

.route-east {
  width: 43%;
  height: 31%;
  transform: rotate(-39deg);
}

.route-china {
  width: 23%;
  height: 15%;
  border-top-color: rgba(255, 255, 255, 0.78);
  transform: rotate(38deg);
}

.atlas-hk-pin {
  position: absolute;
  z-index: 7;
  left: 54.6%;
  top: 56.3%;
  width: clamp(11px, 1.1vw, 16px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e7f5ff;
  box-shadow: 0 0 0 8px rgba(154, 215, 255, 0.13), 0 0 30px rgba(105, 188, 255, 1);
}

.atlas-hk-pin::after {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(185, 226, 255, 0.52);
  border-radius: 50%;
  content: "";
}

.atlas-orbit {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 51%;
  width: min(70vw, 1020px);
  height: min(23vw, 330px);
  border: 1px solid rgba(159, 215, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
}

.orbit-near {
  border-top-color: rgba(255, 255, 255, 0.74);
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.orbit-far {
  width: min(82vw, 1190px);
  height: min(35vw, 510px);
  border-color: rgba(79, 164, 255, 0.22);
  transform: translate(-50%, -50%) rotate(19deg);
}

.atlas-spark {
  position: absolute;
  z-index: 6;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e2f4ff;
  box-shadow: 0 0 20px rgba(140, 209, 255, 0.95);
}

.spark-one { left: 20%; top: 28%; }
.spark-two { right: 16%; top: 31%; }
.spark-three { right: 25%; bottom: 24%; }

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .atlas-globe { animation: atlas-float 7s ease-in-out infinite; }
  .atlas-map { animation: atlas-drift 22s ease-in-out infinite alternate; }
  .atlas-hk-pin::after { animation: atlas-ping 2.5s ease-out infinite; }
  .atlas-orbit { animation: atlas-orbit 13s linear infinite; }
  .orbit-far { animation-duration: 20s; animation-direction: reverse; }
  .atlas-route { animation: atlas-route 3.8s ease-in-out infinite; }
  .route-east { animation-delay: 600ms; }
  .route-china { animation-delay: 1.1s; }
}

@keyframes atlas-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes atlas-drift {
  from { transform: rotate(-4deg) scale(1.08) translateX(-1.5%); }
  to { transform: rotate(-4deg) scale(1.08) translateX(1.5%); }
}

@keyframes atlas-ping {
  0% { opacity: 0.85; transform: scale(0.65); }
  75%, 100% { opacity: 0; transform: scale(1.65); }
}

@keyframes atlas-orbit {
  from { transform: translate(-50%, -50%) rotate(-14deg); }
  to { transform: translate(-50%, -50%) rotate(346deg); }
}

@keyframes atlas-route {
  0%, 100% { opacity: 0.38; }
  48% { opacity: 1; }
}

@media (max-width: 620px) {
  .cinematic-stage { height: 360px; margin-top: 14px; }
  .atlas-halo { width: 92vw; top: 50%; }
  .atlas-globe { width: min(86vw, 390px); top: 50%; }
  .atlas-orbit { width: 114vw; height: 43vw; top: 50%; }
  .orbit-far { width: 130vw; height: 65vw; }
  .spark-one { left: 9%; top: 22%; }
  .spark-two { right: 8%; top: 27%; }
  .spark-three { right: 13%; bottom: 18%; }
}

/* Final art direction: architectural light, a single calm motion, and no dashboard language. */
.hero {
  min-height: min(900px, 100svh);
  background: #000;
}

.hero-earth,
.atlas-halo,
.atlas-globe,
.atlas-map,
.atlas-meridian,
.atlas-latitude,
.atlas-route,
.atlas-hk-pin,
.atlas-orbit,
.atlas-spark {
  display: none !important;
}

.hero::before {
  height: 100%;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.92) 30%, rgba(0, 0, 0, 0.32) 62%, rgba(0, 0, 0, 0.66) 100%);
}

.hero-inner {
  min-height: min(900px, 100svh);
  align-content: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 690px;
}

.hero .eyebrow {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  box-shadow: none;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(64px, 8.2vw, 132px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 0.88;
  text-shadow: none;
}

.hero h1 em {
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.harbour-stage {
  position: absolute;
  z-index: 1;
  inset: 0 calc(var(--gutter) * -1) 0 25%;
  height: auto;
  overflow: hidden;
  pointer-events: none;
}

.harbour-sky,
.harbour-water,
.harbour-horizon,
.harbour-reflection,
.harbour-beacon,
.harbour-rain {
  position: absolute;
}

.harbour-sky {
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.82) 28%, rgba(0, 0, 0, 0.1) 68%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent 38%, rgba(0, 0, 0, 0.5) 100%),
    url("hong-kong-harbour.jpg") center / cover no-repeat;
}

.harbour-sky::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(191, 224, 255, 0.12) 8.15% 8.25%, transparent 8.4% 22%, rgba(191, 224, 255, 0.09) 22.1% 22.2%, transparent 22.4% 100%),
    linear-gradient(90deg, transparent 0 59%, rgba(115, 193, 255, 0.18) 59.1% 59.25%, transparent 59.4% 69%, rgba(115, 193, 255, 0.14) 69.1% 69.22%, transparent 69.35%);
  mask-image: linear-gradient(180deg, transparent 4%, #000 28%, rgba(0, 0, 0, 0.18) 72%, transparent);
}

.harbour-rain {
  inset: -25% -5%;
  opacity: 0.13;
  background: repeating-linear-gradient(104deg, transparent 0 13px, rgba(213, 237, 255, 0.13) 14px 15px, transparent 16px 32px);
  transform: skewX(-12deg);
}

.harbour-horizon {
  bottom: 26%;
  filter: drop-shadow(0 0 24px rgba(74, 157, 255, 0.3));
}

.harbour-left {
  left: 3%;
  width: 40%;
  height: 39%;
  opacity: 0.85;
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(187, 224, 255, 0.5) 5.4% 6%, transparent 6.4% 16%, rgba(187, 224, 255, 0.44) 16.3% 17%, transparent 17.4% 30%, rgba(187, 224, 255, 0.37) 30.3% 31%, transparent 31.4% 49%, rgba(187, 224, 255, 0.46) 49.3% 50%, transparent 50.4%),
    linear-gradient(90deg, transparent 0 5%, #061a32 5% 6.4%, transparent 6.4% 16%, #0a2745 16% 17.4%, transparent 17.4% 30%, #061a32 30% 31.4%, transparent 31.4% 49%, #08223c 49% 50.4%, transparent 50.4%);
  clip-path: polygon(0 100%, 0 54%, 6% 54%, 6% 29%, 16% 29%, 16% 47%, 26% 47%, 26% 10%, 35% 10%, 35% 39%, 49% 39%, 49% 2%, 58% 2%, 58% 57%, 70% 57%, 70% 20%, 82% 20%, 82% 48%, 100% 48%, 100% 100%);
}

.harbour-right {
  right: -1%;
  width: 47%;
  height: 50%;
  opacity: 0.94;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(218, 239, 255, 0.57) 10.3% 10.8%, transparent 11% 23%, rgba(96, 181, 255, 0.46) 23.3% 24%, transparent 24.3% 40%, rgba(218, 239, 255, 0.55) 40.3% 41%, transparent 41.3% 57%, rgba(96, 181, 255, 0.43) 57.3% 58%, transparent 58.3% 77%, rgba(218, 239, 255, 0.42) 77.3% 78%, transparent 78.3%),
    linear-gradient(90deg, transparent 0 10%, #0b3156 10% 11%, transparent 11% 23%, #092948 23% 24.3%, transparent 24.3% 40%, #0c3155 40% 41.3%, transparent 41.3% 57%, #082544 57% 58.3%, transparent 58.3% 77%, #0c2a49 77% 78.3%, transparent 78.3%);
  clip-path: polygon(0 100%, 0 44%, 9% 44%, 9% 18%, 20% 18%, 20% 39%, 31% 39%, 31% 2%, 42% 2%, 42% 28%, 55% 28%, 55% 14%, 65% 14%, 65% 52%, 78% 52%, 78% 6%, 87% 6%, 87% 37%, 100% 37%, 100% 100%);
}

.harbour-water {
  right: 0;
  bottom: 0;
  left: 0;
  height: 31%;
  background:
    repeating-linear-gradient(178deg, transparent 0 12px, rgba(140, 201, 255, 0.14) 13px 14px, transparent 16px 29px),
    linear-gradient(180deg, rgba(15, 54, 89, 0.18), #02060c 74%);
  mask-image: linear-gradient(180deg, transparent, #000 23%);
}

.harbour-reflection {
  bottom: -8%;
  width: 18%;
  height: 36%;
  opacity: 0.56;
  filter: blur(4px);
  background: linear-gradient(180deg, rgba(172, 218, 255, 0.72), rgba(0, 113, 227, 0.18), transparent 86%);
  transform: skewX(-18deg);
}

.reflection-one { left: 42%; }
.reflection-two { right: 14%; opacity: 0.37; transform: skewX(18deg); }

.harbour-beacon {
  right: 25%;
  bottom: 34%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8eeff;
  box-shadow: 0 0 0 8px rgba(163, 216, 255, 0.09), 0 0 42px 12px rgba(90, 177, 255, 0.62);
}

.route-layout {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  background: #050609;
}

.route-panel {
  isolation: isolate;
  min-height: clamp(550px, 52vw, 700px);
  background: #050609;
}

.route-stage.route-cinema {
  opacity: 1;
  transition: none;
}

.route-stage::after,
.route-stage-grid,
.route-stage-orbit,
.route-stage-core,
.route-stage-city,
.route-stage-supply,
.route-stage-label {
  display: none !important;
}

.route-film,
.route-film-shade {
  position: absolute;
  inset: 0;
}

.route-film {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms var(--ease), transform 1200ms var(--ease);
}

.route-film-digital {
  opacity: 1;
  background:
    radial-gradient(circle at 79% 23%, rgba(125, 204, 255, 0.78) 0 2px, transparent 2.5px),
    radial-gradient(circle at 82% 26%, rgba(125, 204, 255, 0.58) 0 1px, transparent 1.5px),
    linear-gradient(126deg, transparent 52%, rgba(113, 187, 255, 0.42) 52.2% 52.5%, transparent 52.7%),
    linear-gradient(127deg, transparent 57%, rgba(113, 187, 255, 0.25) 57.2% 57.35%, transparent 57.5%),
    radial-gradient(ellipse at 74% 24%, rgba(0, 113, 227, 0.55), transparent 17%),
    linear-gradient(128deg, transparent 0 48%, rgba(33, 98, 157, 0.34) 48.2% 48.3%, transparent 48.5%),
    #05070c;
}

.route-film-digital::after {
  position: absolute;
  right: -9%;
  top: 8%;
  width: 61%;
  height: 82%;
  border: 1px solid rgba(178, 224, 255, 0.31);
  border-radius: 50% 0 0 50%;
  content: "";
  box-shadow: inset 55px 0 100px rgba(8, 60, 111, 0.3), 0 0 100px rgba(0, 113, 227, 0.16);
}

.route-film-arrival {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.84), rgba(5, 7, 10, 0.06) 68%),
    linear-gradient(90deg, transparent 0 61%, rgba(232, 245, 255, 0.34) 61.1% 61.45%, transparent 61.7% 71%, rgba(232, 245, 255, 0.27) 71.1% 71.4%, transparent 71.7%),
    linear-gradient(143deg, transparent 0 58%, rgba(187, 222, 255, 0.32) 58.3% 58.6%, transparent 58.9%),
    radial-gradient(ellipse at 73% 25%, rgba(255, 225, 177, 0.28), transparent 24%),
    linear-gradient(145deg, #0a0e12, #152131 64%, #05111e);
}

.route-film-arrival::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 55%;
  height: 68%;
  opacity: 0.7;
  content: "";
  background: linear-gradient(90deg, transparent 0 8%, rgba(244, 227, 193, 0.4) 8.2% 8.8%, transparent 9% 20%, rgba(244, 227, 193, 0.45) 20.2% 20.8%, transparent 21% 37%, rgba(244, 227, 193, 0.4) 37.2% 37.8%, transparent 38%), linear-gradient(90deg, transparent 0 8%, #22354a 8% 9%, transparent 9% 20%, #2c4257 20% 21%, transparent 21% 37%, #1b3148 37% 38%, transparent 38%);
  clip-path: polygon(0 100%, 0 61%, 11% 61%, 11% 30%, 22% 30%, 22% 45%, 35% 45%, 35% 13%, 49% 13%, 49% 55%, 61% 55%, 61% 21%, 73% 21%, 73% 41%, 87% 41%, 87% 4%, 100% 4%, 100% 100%);
}

.route-film-trade {
  background:
    repeating-linear-gradient(90deg, transparent 0 8.6%, rgba(194, 224, 255, 0.12) 8.7% 8.82%, transparent 8.95% 17.3%),
    linear-gradient(180deg, rgba(4, 7, 10, 0.18), rgba(4, 7, 10, 0.77)),
    radial-gradient(ellipse at 74% 27%, rgba(106, 165, 228, 0.24), transparent 29%),
    linear-gradient(145deg, #111821, #07121e 65%, #030507);
}

.route-film-trade::after {
  position: absolute;
  right: 4%;
  top: 14%;
  width: 68%;
  height: 48%;
  content: "";
  border-top: 1px solid rgba(195, 226, 255, 0.55);
  border-bottom: 1px solid rgba(195, 226, 255, 0.2);
  box-shadow: 0 30px 80px rgba(0, 113, 227, 0.2);
  transform: skewY(-16deg);
}

.route-film-shade {
  z-index: 1;
  background: linear-gradient(90deg, #050609 0%, rgba(5, 6, 9, 0.93) 29%, rgba(5, 6, 9, 0.32) 68%, rgba(5, 6, 9, 0.02) 100%), linear-gradient(180deg, transparent 56%, #050609 96%);
}

.route-film-kicker {
  position: absolute;
  right: 31px;
  top: 27px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.route-panel[data-route="arrival"] .route-film-digital,
.route-panel[data-route="trade"] .route-film-digital { opacity: 0; }
.route-panel[data-route="arrival"] .route-film-arrival,
.route-panel[data-route="trade"] .route-film-trade { opacity: 1; transform: scale(1); }
.route-panel[data-route="arrival"] .route-film-kicker::after { content: " / 02"; }
.route-panel[data-route="trade"] .route-film-kicker::after { content: " / 03"; }

.gateway-showcase { background: #000; }

.gateway-portrait {
  min-height: clamp(510px, 50vw, 710px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: #05070b;
  box-shadow: none;
}

.gateway-portrait::after,
.portrait-light,
.portrait-horizon,
.portrait-window,
.portrait-route {
  position: absolute;
}

.gateway-portrait::after {
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(1, 3, 6, 0.5), transparent 54%), linear-gradient(180deg, transparent 53%, rgba(1, 3, 6, 0.8));
}

.portrait-light {
  inset: -25% -5% 0 34%;
  background: radial-gradient(ellipse at 52% 33%, rgba(109, 186, 255, 0.5), transparent 20%), radial-gradient(ellipse at 69% 54%, rgba(11, 79, 151, 0.35), transparent 35%);
}

.portrait-horizon {
  right: 0;
  bottom: 0;
  left: 29%;
  height: 61%;
  opacity: 0.76;
  background: linear-gradient(90deg, transparent 0 5%, rgba(192, 225, 255, 0.42) 5.2% 5.7%, transparent 5.9% 14%, rgba(192, 225, 255, 0.52) 14.2% 14.8%, transparent 15% 28%, rgba(192, 225, 255, 0.42) 28.2% 28.8%, transparent 29% 48%, rgba(192, 225, 255, 0.55) 48.2% 48.8%, transparent 49%), linear-gradient(90deg, transparent 0 5%, #0c2d4c 5% 5.9%, transparent 5.9% 14%, #0d365c 14% 15%, transparent 15% 28%, #092744 28% 29%, transparent 29% 48%, #0e3559 48% 49%, transparent 49%);
  clip-path: polygon(0 100%, 0 58%, 9% 58%, 9% 29%, 19% 29%, 19% 45%, 31% 45%, 31% 12%, 42% 12%, 42% 52%, 54% 52%, 54% 24%, 64% 24%, 64% 39%, 76% 39%, 76% 2%, 87% 2%, 87% 47%, 100% 47%, 100% 100%);
}

.portrait-window {
  left: 8%;
  top: 12%;
  z-index: 2;
  color: #fff;
}

.portrait-window span,
.portrait-route span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.portrait-window strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(41px, 5vw, 76px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 0.86;
}

.portrait-route {
  z-index: 2;
  right: 8%;
  width: 48%;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.portrait-route strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(16px, 1.7vw, 23px);
  font-weight: 620;
}

.portrait-route-arrival { top: 49%; }
.portrait-route-trade { top: 70%; }

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .harbour-sky { animation: harbour-light 12s ease-in-out infinite alternate; }
  .harbour-rain { animation: harbour-rain 14s linear infinite; }
  .route-film-digital::after { animation: route-lens 10s ease-in-out infinite alternate; }
}

@keyframes harbour-light { to { filter: brightness(1.16) saturate(1.14); transform: scale(1.025); } }
@keyframes harbour-rain { to { transform: translate3d(-4%, 8%, 0) skewX(-12deg); } }
@keyframes route-lens { to { transform: translateX(-5%) scale(1.035); } }

@media (max-width: 820px) {
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding-top: 112px; padding-bottom: 44px; }
  .harbour-stage { inset: 38% -24px 0 2%; min-height: 450px; opacity: 0.78; }
  .hero-copy { max-width: 560px; }
  .hero-proof { margin-top: 42px; }
  .route-layout { border-radius: 26px; }
  .route-panel { min-height: 600px; }
  .route-film-shade { background: linear-gradient(180deg, rgba(5, 6, 9, 0.5), #050609 92%); }
  .route-film-kicker { right: 21px; top: 19px; }
  .gateway-portrait { min-height: 570px; }
}

@media (max-width: 520px) {
  .hero-inner { padding-top: 98px; }
  .hero h1 { font-size: clamp(55px, 16.5vw, 74px); }
  .hero-sublead { max-width: 330px; }
  .harbour-stage { inset: 43% -54px 0 -17%; min-height: 400px; opacity: 0.69; }
  .harbour-left { width: 52%; }
  .harbour-right { width: 63%; }
  .hero-proof { margin-top: 32px; }
  .route-panel { min-height: 580px; padding: 26px 20px; }
  .route-film-shade { background: linear-gradient(180deg, rgba(5, 6, 9, 0.46), #050609 80%); }
  .route-panel > div:not(.route-stage):first-of-type { margin-top: 184px; }
  .route-film-kicker { display: none; }
  .gateway-portrait { min-height: 510px; }
  .portrait-window { left: 7%; top: 9%; }
  .portrait-window strong { font-size: 47px; }
  .portrait-route { right: 7%; width: 61%; }
  .portrait-route-arrival { top: 60%; }
  .portrait-route-trade { top: 78%; }
}

/* 2026 flagship visual pass: photography, editorial scale, restrained motion. */
.hero {
  min-height: 100svh;
  background: #030405;
}

.hero::before {
  z-index: 1;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 31%, rgba(0, 0, 0, 0.22) 63%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 30%, rgba(0, 0, 0, 0.88) 100%);
}

.hero-inner {
  min-height: 100svh;
  grid-template-columns: 1fr;
  justify-items: start;
  align-content: center;
  padding-top: clamp(126px, 15vh, 180px);
  padding-bottom: clamp(96px, 12vh, 140px);
}

.hero-copy {
  z-index: 5;
  display: grid;
  justify-items: start;
  max-width: min(680px, 54vw);
  align-self: center;
  text-align: left;
}

.hero h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(70px, 8.3vw, 138px);
  font-weight: 680;
  line-height: 0.86;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
}

.hero-lead {
  margin-top: 30px;
  color: #fff;
  font-size: clamp(21px, 1.65vw, 28px);
  font-weight: 570;
  line-height: 1.25;
}

.hero-sublead {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  justify-content: flex-start;
}

html[lang^="zh"] .hero-copy {
  max-width: min(820px, 57vw);
}

html[lang^="zh"] .hero h1 {
  max-width: 820px;
  font-size: clamp(72px, 6vw, 112px);
  line-height: 0.96;
}

html[lang^="zh"] .route-panel h3 {
  max-width: 760px;
  font-size: clamp(46px, 5.2vw, 82px);
  line-height: 1.02;
}

.harbour-stage {
  z-index: 0;
  inset: 0 calc(var(--gutter) * -1) 0 20%;
  min-height: 100%;
  overflow: hidden;
}

.harbour-sky {
  z-index: 0;
  inset: -3%;
  background: url("hong-kong-night-v2.jpg") 53% 48% / cover no-repeat;
  filter: saturate(0.84) contrast(1.12) brightness(0.8);
  transform: scale(1.045);
  will-change: transform;
}

.harbour-sky::after {
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 52%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 38%, rgba(0, 0, 0, 0.62));
  mask-image: none;
}

.hero-film-grain,
.hero-light-sweep,
.hero-location {
  position: absolute;
}

.hero-film-grain {
  z-index: 1;
  inset: 0;
  opacity: 0.085;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-light-sweep {
  z-index: 2;
  top: -18%;
  bottom: -18%;
  left: 38%;
  width: 22%;
  opacity: 0.22;
  background: linear-gradient(90deg, transparent, rgba(178, 220, 255, 0.28), transparent);
  filter: blur(24px);
  transform: rotate(12deg) translateX(-180%);
}

.hero-location {
  right: max(28px, var(--gutter));
  bottom: 42px;
  z-index: 3;
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.harbour-rain,
.harbour-horizon,
.harbour-water,
.harbour-reflection,
.harbour-beacon {
  display: none !important;
}

.hero-proof {
  z-index: 6;
  max-width: 760px;
  margin-top: clamp(48px, 7vh, 80px);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-proof div {
  min-height: 74px;
  padding: 18px 22px 0 0;
}

.hero-proof div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-proof strong {
  color: rgba(255, 255, 255, 0.52);
}

#routes.section.dark {
  padding-top: clamp(110px, 13vw, 210px);
  padding-bottom: clamp(110px, 13vw, 210px);
  background: rgba(5, 5, 5, 0.46);
}

#routes .section-heading {
  margin-bottom: clamp(52px, 7vw, 100px);
}

.route-layout {
  display: block;
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.route-controls {
  display: grid;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.route-control {
  min-height: 126px;
  margin: 0;
  padding: 25px clamp(18px, 2.4vw, 34px) 22px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.route-control + .route-control {
  margin: 0;
  padding-left: clamp(18px, 2.4vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.route-control[aria-pressed="true"] {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 2px 0 #fff;
}

.route-control span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.07em;
}

.route-control strong {
  max-width: 320px;
  margin-top: 13px;
  font-size: clamp(18px, 1.65vw, 25px);
  font-weight: 560;
  line-height: 1.14;
}

.route-panel {
  isolation: isolate;
  display: flex;
  min-height: clamp(620px, 66vw, 840px);
  margin-top: 0;
  padding: clamp(48px, 6vw, 82px);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #0a0a0a;
}

.route-panel > div:not(.route-stage):first-of-type {
  z-index: 4;
  max-width: min(730px, 68%);
}

.route-panel h3 {
  max-width: 700px;
  margin-top: 17px;
  font-size: clamp(44px, 5.8vw, 88px);
  font-weight: 650;
  line-height: 0.94;
}

.route-panel p {
  max-width: 610px;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.52;
}

.route-index {
  color: rgba(255, 255, 255, 0.62);
}

.route-footnotes {
  z-index: 4;
  max-width: 960px;
  margin-top: 35px;
  border-top-color: rgba(255, 255, 255, 0.28);
}

.route-footnotes strong {
  color: rgba(255, 255, 255, 0.52);
}

.route-footnotes span {
  color: rgba(255, 255, 255, 0.82);
}

.route-stage.route-cinema {
  z-index: 0;
  opacity: 1;
}

.route-film {
  inset: -3%;
  opacity: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.76) contrast(1.08) brightness(0.76);
  transform: scale(1.04);
  transition: opacity 850ms var(--ease), transform 1800ms var(--ease);
}

.route-film::after {
  display: none;
}

.route-film-digital {
  opacity: 1;
  background: url("global-architecture.jpg") center 52% / cover no-repeat;
}

.route-film-arrival {
  background: url("shanghai-business.jpg") center 48% / cover no-repeat;
}

.route-film-trade {
  background: url("yangshan-port.jpg") center 48% / cover no-repeat;
}

.route-film-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.87) 0%, rgba(0, 0, 0, 0.54) 45%, rgba(0, 0, 0, 0.1) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 35%, rgba(0, 0, 0, 0.92) 91%);
}

.route-film-kicker {
  top: 32px;
  right: 36px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.7);
}

.route-panel[data-route="arrival"] .route-film-digital,
.route-panel[data-route="trade"] .route-film-digital {
  opacity: 0;
}

.route-panel[data-route="arrival"] .route-film-arrival,
.route-panel[data-route="trade"] .route-film-trade {
  opacity: 1;
  transform: scale(1);
}

.route-panel[data-route="arrival"] .route-film-kicker::after,
.route-panel[data-route="trade"] .route-film-kicker::after {
  content: none;
}

.gateway-showcase {
  min-height: 100svh;
  padding: clamp(110px, 12vw, 190px) var(--gutter);
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(42px, 7vw, 110px);
  background: #f5f5f7;
}

.gateway-showcase .showcase-copy {
  max-width: 520px;
  color: #111;
}

.gateway-showcase .showcase-copy .eyebrow {
  color: #62666d;
}

.gateway-showcase .showcase-copy h2 {
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 670;
  line-height: 0.94;
}

.gateway-showcase .showcase-copy p:not(.eyebrow) {
  max-width: 500px;
  color: #62666d;
  font-size: clamp(16px, 1.25vw, 20px);
}

.gateway-portrait {
  display: grid;
  min-height: clamp(660px, 62vw, 840px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #111;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.16);
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.gateway-portrait::after,
.portrait-light,
.portrait-horizon,
.portrait-window,
.portrait-route {
  display: none !important;
}

.gateway-frame {
  position: relative;
  isolation: isolate;
  display: flex;
  padding: clamp(26px, 3.5vw, 48px);
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.gateway-frame::before,
.gateway-frame::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}

.gateway-frame::before {
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.82));
}

.gateway-frame::after {
  opacity: 0;
  background: rgba(255, 255, 255, 0.08);
  transition: opacity 450ms var(--ease);
}

.gateway-frame-hk {
  grid-row: 1 / -1;
  background-image: url("hong-kong-night-v2.jpg");
  background-position: 59% center;
}

.gateway-frame-arrival {
  background-image: url("shanghai-business.jpg");
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.gateway-frame-trade {
  background-image: url("yangshan-port.jpg");
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.gateway-frame div {
  max-width: 350px;
}

.gateway-frame span,
.gateway-frame small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.gateway-frame strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(27px, 3vw, 48px);
  font-weight: 650;
  line-height: 0.98;
}

.gateway-frame small {
  margin-top: 12px;
  letter-spacing: 0;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .harbour-sky {
    animation: hero-camera 18s ease-in-out infinite alternate;
  }

  .hero-light-sweep {
    animation: hero-sweep 9s 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  }

  .gateway-frame {
    transition: background-size 900ms var(--ease), filter 700ms var(--ease);
  }

  .gateway-frame:hover::after {
    opacity: 1;
  }
}

@keyframes hero-camera {
  from { transform: scale(1.045) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-1.2%, -0.7%, 0); }
}

@keyframes hero-sweep {
  0%, 62% { opacity: 0; transform: rotate(12deg) translateX(-200%); }
  72% { opacity: 0.2; }
  100% { opacity: 0; transform: rotate(12deg) translateX(430%); }
}

@media (max-width: 900px) {
  .hero-inner {
    padding-top: 112px;
    padding-bottom: 48px;
  }

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

  .harbour-stage {
    inset: 0 -24px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28) 38%, rgba(0, 0, 0, 0.92) 92%);
  }

  .route-panel > div:not(.route-stage):first-of-type {
    max-width: 86%;
  }

  .gateway-showcase {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .gateway-showcase .showcase-copy {
    max-width: 720px;
    justify-self: start;
  }

  .gateway-portrait {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    min-height: 100svh;
    padding-top: 102px;
    padding-bottom: 32px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(54px, 15.8vw, 72px);
    line-height: 0.9;
  }

  html[lang^="zh"] .hero h1 {
    max-width: 340px;
    font-size: clamp(47px, 13.6vw, 62px);
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 330px;
    margin-top: 22px;
    font-size: 20px;
  }

  .hero-sublead {
    max-width: 330px;
    font-size: 14px;
  }

  .harbour-stage {
    inset: 0 -60px;
    min-height: 100%;
    opacity: 1;
  }

  .harbour-sky {
    background-position: 63% center;
    filter: saturate(0.78) contrast(1.15) brightness(0.66);
  }

  .hero-location {
    display: none;
  }

  .hero-proof {
    margin-top: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-proof div {
    min-height: 64px;
    padding: 13px 9px 0 0;
  }

  .hero-proof div + div {
    padding-left: 9px;
  }

  .hero-proof span {
    font-size: 10px;
  }

  .bar {
    display: block;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .bar-inner {
    display: grid;
    min-height: 0;
    gap: 18px;
    font-size: 14px;
  }

  .bar-inner p,
  .bar-inner a {
    max-width: 100%;
  }

  .route-controls {
    grid-template-columns: 1fr;
  }

  .route-control {
    display: grid;
    min-height: 86px;
    padding: 18px 0;
    grid-template-columns: 116px 1fr;
    align-items: center;
    gap: 8px;
  }

  .route-control + .route-control {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .route-control strong {
    margin-top: 0;
    font-size: 16px;
  }

  .route-control[aria-pressed="true"] {
    box-shadow: inset 3px 0 0 #fff;
  }

  .route-panel {
    min-height: 690px;
    padding: 28px 22px;
  }

  .route-panel > div:not(.route-stage):first-of-type {
    max-width: 100%;
    margin-top: 0;
  }

  .route-panel h3 {
    font-size: clamp(39px, 11.4vw, 52px);
  }

  .route-panel p {
    font-size: 14px;
  }

  .route-film {
    inset: 0;
    background-position: center;
  }

  .route-film-digital { background-position: 50% center; }
  .route-film-arrival { background-position: 56% center; }
  .route-film-trade { background-position: 54% center; }

  .route-film-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.45) 34%, rgba(0, 0, 0, 0.96) 75%);
  }

  .route-film-kicker {
    display: block;
    top: 22px;
    right: 22px;
  }

  .route-footnotes {
    grid-template-columns: 1fr;
  }

  .gateway-showcase {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .gateway-portrait {
    min-height: 760px;
    grid-template-columns: 1fr;
    grid-template-rows: 1.15fr 0.85fr 0.85fr;
  }

  .gateway-frame-hk {
    grid-row: auto;
    background-position: center;
  }

  .gateway-frame-arrival,
  .gateway-frame-trade {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .gateway-frame strong {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .harbour-sky,
  .hero-light-sweep,
  .route-film {
    animation: none !important;
    transition: none !important;
  }
}

/* 2026 apex pass: full-bleed photography, editorial hierarchy, quiet motion. */
body::before {
  display: none;
}

body * {
  letter-spacing: 0 !important;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 7, 8, 0.76);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
  backdrop-filter: saturate(150%) blur(24px);
}

.hero {
  isolation: isolate;
  min-height: max(760px, calc(100svh - 55px));
  overflow: hidden;
  background: #030303;
}

.hero::before {
  z-index: 1;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.3) 52%, rgba(0, 0, 0, 0.06) 72%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 36%, rgba(0, 0, 0, 0.76) 100%);
}

.hero::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: none;
  pointer-events: none;
  background: #050505;
  content: "";
}

.hero-inner {
  min-height: max(760px, calc(100svh - 55px));
  padding-top: clamp(112px, 14vh, 172px);
  padding-bottom: clamp(72px, 9vh, 108px);
}

.hero-copy {
  max-width: min(1050px, 72vw);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
}

.hero h1 {
  max-width: 1050px;
  margin-top: 20px;
  font-size: clamp(76px, 6.7vw, 116px);
  font-weight: 680;
  line-height: 0.9;
  text-shadow: 0 3px 32px rgba(0, 0, 0, 0.36);
}

html[lang^="zh"] .hero-copy {
  max-width: min(820px, 60vw);
}

html[lang^="zh"] .hero h1 {
  max-width: 820px;
  font-size: clamp(76px, 6vw, 112px);
  line-height: 0.96;
}

html[lang^="es"] .hero h1 {
  max-width: 980px;
  font-size: clamp(70px, 6vw, 106px);
}

.hero-lead {
  max-width: 700px;
  margin-top: 29px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(21px, 1.55vw, 27px);
}

.hero-sublead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.harbour-stage {
  z-index: 0;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: calc(50% - 50vw);
  width: auto;
  max-width: none;
  height: auto;
  margin: 0;
  min-height: 100%;
}

.harbour-sky {
  position: absolute;
  inset: -2%;
  display: block;
  overflow: hidden;
  background: #090b0f;
  filter: none;
  transform: scale(1.03);
  will-change: transform;
}

.harbour-sky::after {
  display: none;
}

.harbour-sky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
}

.hero-film-grain {
  opacity: 0.035;
}

.hero-light-sweep {
  left: 42%;
  width: 14%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(218, 238, 255, 0.18), transparent);
  filter: blur(32px);
}

.hero-location {
  bottom: 32px;
  color: rgba(255, 255, 255, 0.64);
}

.hero-proof {
  width: min(100%, 820px);
  max-width: 820px;
  margin-top: clamp(44px, 6vh, 70px);
  border-top-color: rgba(255, 255, 255, 0.42);
}

.hero-proof strong {
  color: rgba(255, 255, 255, 0.66);
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

#routes.section.dark {
  padding-top: clamp(108px, 11vw, 178px);
  padding-bottom: clamp(108px, 11vw, 178px);
  background: #050505;
}

#routes::before {
  display: none;
}

#routes .container {
  width: min(1280px, 100%);
}

#routes .section-heading {
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.3fr);
  align-items: end;
  gap: clamp(48px, 7vw, 104px);
  margin-bottom: clamp(54px, 7vw, 92px);
}

#routes .section-heading h2 {
  max-width: 820px;
  font-size: clamp(56px, 5.1vw, 82px);
  font-weight: 660;
  line-height: 0.96;
  text-wrap: wrap;
}

#routes .section-heading h2 span {
  display: block;
}

html[lang^="zh"] #routes .section-heading h2 {
  max-width: 760px;
  font-size: clamp(54px, 4.4vw, 72px);
  line-height: 1;
}

html[lang^="es"] #routes .section-heading h2 {
  font-size: clamp(50px, 4.5vw, 72px);
}

#routes .section-heading > p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.58;
}

.site-header .brand-copy span {
  color: rgba(255, 255, 255, 0.74);
}

.route-controls {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.route-control {
  min-height: 118px;
  padding-top: 24px;
  transition: color 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease);
}

.route-control:focus-visible {
  outline: 2px solid #2997ff;
  outline-offset: 3px;
}

.route-control strong {
  font-size: clamp(17px, 1.35vw, 22px);
}

.route-panel {
  min-height: clamp(650px, 57vw, 790px);
  padding: clamp(46px, 5vw, 74px);
}

.route-panel > div:not(.route-stage):first-of-type {
  max-width: min(800px, 72%);
}

.route-panel h3 {
  max-width: 800px;
  font-size: clamp(48px, 5.2vw, 80px);
  line-height: 0.96;
  text-wrap: balance;
}

html[lang^="zh"] .route-panel h3 {
  max-width: 760px;
  font-size: clamp(48px, 4.5vw, 72px);
  line-height: 1.02;
}

html[lang^="es"] .route-panel h3 {
  font-size: clamp(44px, 4.6vw, 70px);
}

.route-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.route-stage.route-cinema {
  inset: 0;
}

.route-film {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.06) brightness(0.82);
  transform: scale(1.035);
  transition: opacity 760ms var(--ease), transform 1800ms var(--ease);
}

.route-film-digital {
  object-position: 50% center;
  background: none;
}

.route-film-arrival {
  object-position: 50% center;
  background: none;
}

.route-film-trade {
  object-position: 50% center;
  background: none;
}

.route-film-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.08) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 34%, rgba(0, 0, 0, 0.93) 94%);
}

.route-film-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.route-panel.is-switching > * {
  animation: none;
}

.route-panel.is-switching > div:not(.route-stage),
.route-panel.is-switching > .route-footnotes {
  animation: route-content-in 520ms var(--ease) both;
}

.route-footnotes {
  max-width: 1020px;
  margin-top: 32px;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.route-footnotes div {
  min-height: 76px;
  padding: 16px 18px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.route-footnotes div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.route-footnotes strong {
  color: rgba(255, 255, 255, 0.62);
}

.route-footnotes span {
  color: rgba(255, 255, 255, 0.9);
}

.gateway-showcase {
  min-height: 100svh;
  padding-top: clamp(110px, 11vw, 176px);
  padding-bottom: clamp(110px, 11vw, 176px);
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  align-items: center;
  gap: clamp(54px, 7vw, 108px);
  background: #f5f5f7;
}

.gateway-showcase .showcase-copy {
  max-width: 560px;
}

.gateway-showcase .showcase-copy h2 {
  max-width: 560px;
  font-size: clamp(54px, 4.8vw, 76px);
  line-height: 0.96;
  text-wrap: balance;
}

html[lang^="zh"] .gateway-showcase .showcase-copy h2 {
  font-size: clamp(58px, 4.8vw, 76px);
  line-height: 1;
}

html[lang^="es"] .gateway-showcase .showcase-copy h2 {
  font-size: clamp(48px, 4.2vw, 68px);
}

.gateway-portrait {
  min-height: clamp(680px, 58vw, 820px);
  grid-template-columns: 1.08fr 0.92fr;
  box-shadow: 0 38px 92px rgba(0, 0, 0, 0.18);
}

.gateway-frame {
  background: #111;
}

.gateway-frame img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1400ms var(--ease), filter 900ms var(--ease);
}

.gateway-frame::before {
  background: linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.84));
}

.gateway-frame-hk {
  background-image: none;
}

.gateway-frame-hk img {
  object-position: 51% center;
}

.gateway-frame-arrival {
  background-image: none;
}

.gateway-frame-arrival img {
  object-position: center;
}

.gateway-frame-trade {
  background-image: none;
}

.gateway-frame-trade img {
  object-position: center;
}

.gateway-frame strong {
  font-size: clamp(26px, 2.6vw, 42px);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .hero::after {
    display: block;
    animation: hero-curtain 920ms 80ms var(--ease) both;
  }

  .harbour-sky {
    animation: hero-camera-apex 22s 1.2s ease-in-out infinite alternate;
  }

  .hero-light-sweep {
    animation: hero-sweep-apex 1700ms 1s var(--ease) both;
  }

  .gateway-frame:hover img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.035);
  }
}

@keyframes hero-curtain {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes hero-camera-apex {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-0.8%, -0.5%, 0); }
}

@keyframes hero-sweep-apex {
  0%, 12% { opacity: 0; transform: rotate(11deg) translateX(-240%); }
  42% { opacity: 0.22; }
  100% { opacity: 0; transform: rotate(11deg) translateX(520%); }
}

@keyframes route-content-in {
  from { opacity: 0.2; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1040px) {
  #routes .section-heading,
  .gateway-showcase {
    grid-template-columns: 1fr;
  }

  #routes .section-heading {
    align-items: start;
  }

  #routes .section-heading > p {
    max-width: 680px;
  }

  .gateway-showcase .showcase-copy {
    max-width: 760px;
  }

  .gateway-showcase .showcase-copy h2 {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .hero-copy,
  html[lang^="zh"] .hero-copy {
    max-width: min(760px, 88vw);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2) 72%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 32%, rgba(0, 0, 0, 0.9) 94%);
  }

  .route-panel > div:not(.route-stage):first-of-type {
    max-width: 92%;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: max(720px, calc(100svh - 55px));
  }

  .hero-inner {
    min-height: max(720px, calc(100svh - 55px));
    padding-top: 96px;
    padding-bottom: 26px;
    align-content: end;
  }

  .hero-copy,
  html[lang^="zh"] .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 350px;
    margin-top: 14px;
    font-size: clamp(52px, 15vw, 64px);
    line-height: 0.92;
  }

  html[lang^="zh"] .hero h1 {
    max-width: 350px;
    font-size: clamp(48px, 13.2vw, 58px);
    line-height: 1.02;
  }

  html[lang^="es"] .hero h1 {
    font-size: clamp(47px, 13vw, 58px);
  }

  .hero-lead {
    max-width: 350px;
    margin-top: 20px;
    font-size: 19px;
  }

  .hero-sublead {
    max-width: 350px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .harbour-stage {
    inset: 0 calc(50% - 50vw);
  }

  .harbour-sky {
    inset: 0;
    transform: none;
  }

  .harbour-sky img {
    object-position: 55% center;
    filter: saturate(0.9) contrast(1.06) brightness(0.78);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.08) 88%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.12) 28%, rgba(0, 0, 0, 0.88) 66%, rgba(0, 0, 0, 0.97) 100%);
  }

  .hero-film-grain {
    opacity: 0.025;
  }

  .hero-proof {
    margin-top: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-proof div {
    min-height: 58px;
    padding-top: 12px;
  }

  .hero-proof span {
    font-size: 10px;
  }

  #routes.section.dark {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  #routes .section-heading {
    gap: 28px;
    margin-bottom: 48px;
    padding-right: 20px;
    padding-left: 20px;
  }

  #routes .section-heading h2,
  html[lang^="zh"] #routes .section-heading h2,
  html[lang^="es"] #routes .section-heading h2 {
    max-width: 100%;
    font-size: clamp(41px, 11vw, 48px);
    line-height: 1;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .route-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .route-control {
    display: block;
    min-height: 78px;
    padding: 15px 8px;
  }

  .route-control + .route-control {
    padding-left: 8px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .route-control span {
    display: block;
    font-size: 9px;
    line-height: 1.35;
  }

  .route-control strong {
    display: none;
  }

  .route-control[aria-pressed="true"] {
    box-shadow: inset 0 3px 0 #fff;
  }

  .route-panel {
    min-height: 650px;
    padding: 26px 20px;
  }

  .route-panel > div:not(.route-stage):first-of-type {
    max-width: 100%;
  }

  .route-panel h3,
  html[lang^="zh"] .route-panel h3,
  html[lang^="es"] .route-panel h3 {
    max-width: 100%;
    font-size: clamp(38px, 10.8vw, 47px);
    line-height: 1.02;
  }

  .route-panel p {
    margin-top: 18px;
    font-size: 14px;
  }

  .route-film {
    object-position: center;
  }

  .route-film-digital {
    object-position: 44% center;
  }

  .route-film-arrival {
    object-position: 53% center;
  }

  .route-film-trade {
    object-position: 52% center;
  }

  .route-film-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.36) 34%, rgba(0, 0, 0, 0.96) 72%);
  }

  .route-footnotes {
    margin-top: 24px;
    gap: 0;
  }

  .route-footnotes div {
    min-height: 0;
    padding: 14px 0 0;
  }

  .route-footnotes div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .gateway-showcase {
    padding: 92px 20px;
    gap: 46px;
  }

  .gateway-showcase .showcase-copy h2,
  html[lang^="zh"] .gateway-showcase .showcase-copy h2,
  html[lang^="es"] .gateway-showcase .showcase-copy h2 {
    max-width: 100%;
    font-size: clamp(45px, 12.2vw, 54px);
    line-height: 1;
  }

  .gateway-portrait {
    min-height: 720px;
    grid-template-columns: 1fr;
    grid-template-rows: 1.2fr 0.9fr 0.9fr;
  }

  .gateway-frame-hk {
    grid-row: auto;
  }

  .gateway-frame-arrival,
  .gateway-frame-trade {
    border-left: 0;
  }

  .gateway-frame {
    padding: 26px;
  }

  .gateway-frame strong {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after {
    display: none;
  }

  .gateway-frame img {
    transition: none;
  }
}
