:root {
  --bg: #08090c;
  --panel: #11151c;
  --panel-2: #161b24;
  --text: #f8fafc;
  --muted: #a3adbd;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d9ad45;
  --gold-2: #f3d877;
  --blue: #2f83f6;
  --green: #16b47b;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 6%, rgba(47, 131, 246, 0.12), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(217, 173, 69, 0.13), transparent 30%),
    linear-gradient(180deg, #0b0d12 0%, var(--bg) 42%);
  color: var(--text);
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(170px, auto) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.82), rgba(8, 9, 12, 0.48));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: nowrap;
  min-width: 0;
  gap: 6px;
  justify-content: flex-start;
  justify-self: stretch;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.58);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

nav::-webkit-scrollbar {
  display: none;
}

nav a {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  color: #d6dce6;
  font-size: 14px;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section-dock {
  position: fixed;
  top: 50%;
  right: max(16px, calc((100vw - var(--max)) / 2 - 58px));
  z-index: 18;
  display: grid;
  width: 138px;
  gap: 2px;
  padding: 6px;
  border: 1px solid rgba(243, 216, 119, 0.36);
  border-radius: 12px;
  background: rgba(12, 14, 19, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.section-dock a {
  padding: 8px 10px;
  border-left: 2px solid transparent;
  border-radius: 6px;
  color: #d6dce6;
  font-size: 13px;
  white-space: nowrap;
}

.section-dock a:hover {
  border-left-color: var(--gold-2);
  background: rgba(217, 173, 69, 0.14);
  color: var(--gold-2);
}

.header-action {
  justify-self: end;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--gold);
  color: #121212;
  font-weight: 800;
}

.header-tools {
  display: inline-flex;
  justify-self: end;
  gap: 10px;
  align-items: center;
}

.language-switch {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 6px 8px 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d6dce6;
  font-size: 13px;
  font-weight: 800;
}

.language-switch select {
  max-width: 112px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.language-switch option {
  background: #11151c;
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  align-items: center;
  padding: 124px max(24px, calc((100vw - var(--max)) / 2 + 24px)) 72px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.92) 0%, rgba(8, 9, 12, 0.74) 38%, rgba(8, 9, 12, 0.36) 100%),
    linear-gradient(0deg, #08090c 0%, rgba(8, 9, 12, 0) 36%);
}

.hero-content {
  position: relative;
  max-width: 690px;
  padding-top: 18px;
}

.hero-logo {
  display: block;
  width: 112px;
  height: 112px;
  margin-bottom: 22px;
  border: 1px solid rgba(243, 216, 119, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(217, 173, 69, 0.08), 0 18px 50px rgba(0, 0, 0, 0.42);
}

.hero-content::before {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), rgba(243, 216, 119, 0));
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.95;
}

.lead {
  max-width: 620px;
  margin-top: 20px;
  color: #d7deea;
  font-size: 20px;
  line-height: 1.7;
}

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

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.primary:hover,
.secondary:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--gold);
  color: #111;
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-strip {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  bottom: 34px;
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(18px);
}

.hero-strip span {
  color: var(--muted);
}

.hero-strip strong {
  color: var(--gold-2);
}

main > section:not(.hero) {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px;
}

.quick-access {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 24px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -26px;
  position: relative;
  z-index: 2;
}

.metrics article,
.quick-card,
.reward-grid article,
.order-grid article,
.architecture-grid article,
.app-grid a,
.risk,
.section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.metrics article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.metrics span,
.metrics p,
.quick-card p,
.reward-grid span,
.reward-grid p,
.order-grid span,
.order-grid p,
.architecture-grid span,
.app-grid span,
.timeline span,
.section-copy {
  color: var(--muted);
}

.metrics strong {
  font-size: 24px;
}

.quick-card {
  display: grid;
  gap: 8px;
  min-height: 154px;
  padding: 18px;
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.quick-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(217, 173, 69, 0.12);
}

.quick-card:hover,
.metrics article:hover,
.reward-grid article:hover,
.order-grid article:hover,
.architecture-grid article:hover,
.app-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 216, 119, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
}

.quick-card.featured {
  border-color: rgba(243, 216, 119, 0.44);
  background: linear-gradient(180deg, rgba(217, 173, 69, 0.17), rgba(255, 255, 255, 0.045));
}

.quick-card span {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-card strong {
  font-size: 22px;
}

.quick-card p {
  line-height: 1.58;
}

.section {
  margin-top: 22px !important;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.section-copy {
  margin-top: 14px;
  line-height: 1.7;
}

.allocation-list {
  display: grid;
  gap: 14px;
}

.allocation-list div {
  display: grid;
  grid-template-columns: 1fr 58px minmax(190px, 260px);
  gap: 12px;
  align-items: center;
}

.allocation-list span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) var(--w), rgba(255,255,255,.12) var(--w));
}

.allocation-list b {
  color: var(--gold-2);
}

.allocation-list em {
  color: #d7deea;
  font-style: normal;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.section-head a {
  color: var(--gold-2);
  font-weight: 800;
}

.reward-grid,
.order-grid,
.app-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.reward-grid article,
.order-grid article,
.app-grid a {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 17px;
}

.reward-grid strong {
  color: var(--gold-2);
  font-size: 32px;
}


.order-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(47, 131, 246, 0.12), transparent 30%),
    radial-gradient(circle at 18% 0%, rgba(217, 173, 69, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.order-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-grid article {
  min-height: 160px;
  position: relative;
  overflow: hidden;
}

.order-grid article::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 216, 119, 0.42), rgba(243, 216, 119, 0.08));
}

.order-grid span {
  color: var(--gold-2);
  font-weight: 900;
}

.order-grid strong {
  font-size: 24px;
}

.order-grid p {
  line-height: 1.6;
}

.order-cta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(243, 216, 119, 0.22);
  border-radius: 16px;
  background: rgba(217, 173, 69, 0.08);
}

.order-cta p {
  color: #d7deea;
  line-height: 1.6;
}

.app-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.architecture-grid article {
  display: grid;
  gap: 10px;
  min-height: 156px;
  padding: 18px;
}

.architecture-grid b {
  color: var(--gold-2);
  font-size: 19px;
}

.architecture-grid span {
  line-height: 1.6;
}

.app-grid b {
  font-size: 20px;
}

.app-grid span {
  line-height: 1.55;
}

.app-grid a {
  min-height: 154px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.timeline div {
  display: grid;
  gap: 8px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.timeline b {
  color: var(--gold-2);
}

.timeline strong {
  font-size: 18px;
}

.security {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: center;
}

.security-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.security-list span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d7deea;
  font-weight: 800;
}

.risk {
  margin-top: 22px !important;
  color: #e3e8f0;
}

.risk strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
}

.risk p {
  color: #c1cad8;
  line-height: 1.7;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px 44px;
  color: var(--muted);
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .hero-content::before {
  margin-right: 0;
  margin-left: auto;
  background: linear-gradient(270deg, var(--gold-2), rgba(243, 216, 119, 0));
}

[dir="rtl"] .section-head,
[dir="rtl"] .order-cta,
[dir="rtl"] footer {
  direction: rtl;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  nav {
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    padding-top: 132px;
  }

  .metrics,
  .quick-access,
  .reward-grid,
  .order-grid,
  .architecture-grid,
  .app-grid,
  .timeline,
  .split,
  .security {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 8px;
    padding: 12px;
  }

  nav {
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
  }

  nav a {
    padding: 7px 8px;
    font-size: 12px;
  }

  .section-dock {
    top: auto;
    right: 10px;
    bottom: 18px;
    width: 118px;
    gap: 1px;
    padding: 5px;
    transform: none;
  }

  .section-dock a {
    padding: 7px 8px;
    font-size: 12px;
  }

  .brand {
    min-width: 0;
  }

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

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

  .brand small {
    display: none;
  }

  .header-action {
    display: none;
  }

  .header-tools {
    gap: 8px;
    flex: 0 0 auto;
  }

  .language-switch {
    padding: 6px 8px;
  }

  .language-switch span {
    display: none;
  }

  .language-switch select {
    max-width: 78px;
    font-size: 13px;
  }

  .hero {
    min-height: 760px;
    padding: 116px 18px 128px;
  }

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

  .hero-content {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-logo {
    width: 88px;
    height: 88px;
    margin-bottom: 18px;
    border-radius: 22px;
  }

  .lead {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .primary,
  .secondary {
    min-width: 0;
    min-height: 46px;
    padding: 0 10px;
    font-size: 14px;
    text-align: center;
  }

  .hero-strip {
    display: grid;
    right: 18px;
    left: 18px;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    padding: 14px 16px;
  }

  main > section:not(.hero),
  .metrics,
  .quick-access,
  .reward-grid,
  .order-grid,
  .architecture-grid,
  .app-grid,
  .timeline,
  .split,
  .security {
    grid-template-columns: 1fr;
  }

  .allocation-list div {
    grid-template-columns: 1fr 50px;
  }

  .allocation-list em {
    grid-column: 1 / -1;
  }

  .order-cta {
    display: grid;
  }

  footer {
    display: grid;
  }
}

/* Match the supplied deep-blue space reference without washing out the stars. */
.hero {
  background-color: #020b1c;
  background-blend-mode: normal;
  border-bottom-color: rgba(78, 158, 230, .38);
  box-shadow: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(1, 7, 19, .54) 0%, rgba(2, 11, 28, .38) 37%, rgba(2, 13, 34, .12) 60%, transparent 82%),
    linear-gradient(180deg, rgba(1, 7, 20, .03) 76%, rgba(2, 12, 30, .16) 100%);
}

@media (max-width: 620px) {
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(1, 8, 21, .52) 0%, rgba(2, 13, 33, .28) 72%, rgba(2, 12, 30, .16) 100%);
  }
}

/* Balanced hero: content, globe, and floating navigation keep separate columns. */
@media (min-width: 1250px) {
  .hero-content {
    max-width: 600px;
  }

  .hero-globe {
    right: max(170px, calc((100vw - var(--max)) / 2 + 96px));
    width: 440px;
  }
}

@media (min-width: 901px) and (max-width: 1249px) {
  .hero-content {
    max-width: 560px;
  }

  .hero-globe {
    right: 160px;
    width: 400px;
  }
}

.earth-canvas {
  filter: drop-shadow(0 20px 34px rgba(0, 18, 44, .46));
}

.globe-tech-layer,
.satellite-constellation {
  width: 100%;
}

.globe-pin-field {
  top: 3%;
  left: 3%;
  width: 94%;
}

.globe-tech-layer::before {
  border-color: rgba(69, 178, 220, .24);
  box-shadow: inset 0 0 30px rgba(7, 50, 88, .2);
}

@media (min-width: 901px) {
  .node-map {
    min-height: 440px;
  }
}

/* Rotating global node network. */
.hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 42%, rgba(89, 221, 234, 0.18), transparent 29%),
    radial-gradient(circle at 82% 45%, rgba(114, 220, 66, 0.1), transparent 42%),
    #ffffff;
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 39%, rgba(255, 255, 255, 0.72) 55%, rgba(255, 255, 255, 0.05) 78%, rgba(255, 255, 255, 0) 100%);
}

.hero-content,
.hero-strip {
  z-index: 3;
}

.hero-globe {
  position: absolute;
  top: 50%;
  right: max(34px, calc((100vw - var(--max)) / 2 + 10px));
  z-index: 1;
  display: grid;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%) perspective(900px) rotateX(var(--globe-tilt-x, 0deg)) rotateY(var(--globe-tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .25s ease;
  will-change: transform;
}

.hero-globe:hover {
  transform: translateY(-50%) perspective(900px) rotateX(var(--globe-tilt-x, 0deg)) rotateY(var(--globe-tilt-y, 0deg)) scale(1.015);
}

.hero-globe:focus-visible {
  outline: 3px solid rgba(16, 191, 208, 0.62);
  outline-offset: 8px;
}

.hero-globe::before,
.hero-globe::after {
  content: "";
  position: absolute;
  width: 86%;
  height: 29%;
  border: 1px solid rgba(16, 191, 208, 0.16);
  border-radius: 50%;
  transform: rotate(-12deg);
  opacity: .52;
  animation: globe-orbit 28s linear infinite;
}

.hero-globe::after {
  display: none;
}

.hero-globe::before {
  display: none;
}

.globe-space {
  position: absolute;
  inset: -5%;
  z-index: 0;
  display: block;
  border-radius: 50%;
  background: #04172e url("/assets/hero-cosmic-starfield.png") center / 108% 108% no-repeat;
  opacity: .94;
  filter: saturate(.9) brightness(.84) contrast(1.04);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 60%, rgba(0, 0, 0, .76) 76%, rgba(0, 0, 0, .3) 90%, transparent 100%);
  mask-image: radial-gradient(circle at center, #000 0 60%, rgba(0, 0, 0, .76) 76%, rgba(0, 0, 0, .3) 90%, transparent 100%);
  animation: space-drift 30s ease-in-out infinite alternate;
  pointer-events: none;
}

.globe-sphere {
  position: relative;
  z-index: 1;
  display: block;
  width: 70%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(142, 232, 244, 0.62);
  border-radius: 50%;
  background-color: #0a5686;
  background-image: url("/assets/global-node-map-original.png");
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: auto 100%;
  box-shadow:
    inset 38px 0 56px rgba(0, 19, 43, 0.42),
    inset -12px 0 30px rgba(104, 225, 255, 0.18),
    0 0 0 7px rgba(89, 221, 234, 0.08),
    0 0 34px rgba(24, 187, 210, 0.22),
    0 26px 56px rgba(5, 66, 78, 0.2);
  filter: saturate(.96) contrast(1.02) brightness(1.04);
  animation: globe-spin 48s linear infinite;
}

.globe-sphere::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 34% 27%, rgba(255, 255, 255, 0.3), transparent 22%),
    linear-gradient(90deg, rgba(0, 18, 43, 0.3), transparent 32%, transparent 64%, rgba(0, 18, 43, 0.4));
  box-shadow: inset 0 0 42px rgba(1, 18, 35, 0.42);
}

.globe-sphere::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 66% 34%, rgba(255, 202, 91, 0.16), transparent 14%),
    radial-gradient(circle at 48% 43%, rgba(89, 221, 234, 0.16), transparent 22%);
  mix-blend-mode: screen;
  animation: city-light-breathe 3.8s ease-in-out infinite;
}

.globe-pin-field {
  position: absolute;
  top: 15%;
  left: 15%;
  z-index: 5;
  display: block;
  width: 70%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  pointer-events: none;
}

.network-pin {
  --pin-delay: 0s;
  position: absolute;
  display: block;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(204, 253, 255, 0.94);
  border-radius: 50% 50% 50% 0;
  background: rgba(7, 97, 112, 0.76);
  box-shadow: 0 0 0 3px rgba(89, 221, 234, 0.06), 0 0 10px rgba(89, 221, 234, 0.58);
  transform: rotate(-45deg);
  animation: network-pin-float 3.2s ease-in-out var(--pin-delay) infinite;
}

.network-pin::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #dfffff;
  box-shadow: 0 0 7px #ffffff;
}

.pin-1 { top: 13%; left: 26%; --pin-delay: -.4s; }
.pin-2 { top: 9%; left: 58%; --pin-delay: -1.6s; }
.pin-3 { top: 22%; right: 12%; --pin-delay: -.8s; }
.pin-4 { top: 38%; left: 15%; --pin-delay: -2.1s; }
.pin-5 { top: 42%; left: 43%; --pin-delay: -1.1s; }
.pin-6 { top: 36%; right: 20%; --pin-delay: -2.7s; }
.pin-7 { top: 58%; left: 21%; --pin-delay: -.2s; }
.pin-8 { top: 62%; right: 16%; --pin-delay: -1.9s; }
.pin-9 { bottom: 15%; left: 36%; --pin-delay: -.9s; }
.pin-10 { right: 35%; bottom: 10%; --pin-delay: -2.4s; }
.pin-11 { top: 26%; left: 4%; --pin-delay: -1.4s; }

.globe-tech-layer {
  position: absolute;
  z-index: 3;
  display: block;
  width: 70%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  pointer-events: none;
}

.globe-tech-layer::before,
.globe-tech-layer::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.globe-tech-layer::before {
  inset: 9%;
  border: 1px solid rgba(100, 238, 245, 0.32);
  box-shadow: inset 0 0 28px rgba(42, 214, 225, 0.12);
}

.globe-tech-layer::after {
  top: -14%;
  left: 50%;
  width: 1px;
  height: 128%;
  background: linear-gradient(180deg, transparent, rgba(147, 255, 248, 0.8), transparent);
  box-shadow: 0 0 12px rgba(83, 235, 237, 0.75);
  animation: globe-scan 5.5s ease-in-out infinite;
}

.chain-link {
  position: absolute;
  z-index: 2;
  display: block;
  height: 1px;
  overflow: visible;
  background: linear-gradient(90deg, rgba(89, 221, 234, 0), #59ddea 24%, #a6ff83 76%, rgba(166, 255, 131, 0));
  box-shadow: 0 0 7px rgba(89, 221, 234, 0.8);
  transform-origin: left center;
  animation: chain-flow 2.4s ease-in-out infinite alternate;
}

.chain-link::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px #75f9ff, 0 0 14px rgba(117, 249, 255, 0.8);
  animation: data-packet 2.2s linear infinite;
}

.link-b::after { animation-delay: .45s; }
.link-c::after { animation-delay: .9s; }
.link-d::after { animation-delay: 1.35s; }
.link-e::after { animation-delay: 1.7s; }
.link-f::after { animation-delay: 2.05s; }

.link-a { top: 32%; left: 24%; width: 41%; transform: rotate(18deg); }
.link-b { top: 50%; left: 36%; width: 38%; transform: rotate(-26deg); animation-delay: .4s; }
.link-c { top: 63%; left: 29%; width: 44%; transform: rotate(11deg); animation-delay: .8s; }
.link-d { top: 40%; left: 61%; width: 27%; transform: rotate(61deg); animation-delay: 1.2s; }
.link-e { top: 24%; left: 43%; width: 34%; transform: rotate(43deg); animation-delay: 1.5s; }
.link-f { top: 72%; left: 22%; width: 45%; transform: rotate(-15deg); animation-delay: 1.8s; }

.chain-node {
  --node-rgb: 83, 231, 237;
  position: absolute;
  z-index: 4;
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #d8fdff;
  border-radius: 3px;
  background: linear-gradient(135deg, #9cfbff 0 48%, #20b8cb 49% 100%);
  box-shadow: 0 0 0 0 rgba(var(--node-rgb), 0.5), 0 0 14px rgba(var(--node-rgb), 0.92);
  transform: rotate(45deg);
  animation: chain-node-pulse 2.4s ease-out infinite;
}

.chain-node::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(1, 54, 72, .42);
  border-radius: 1px;
  background: rgba(255, 255, 255, .34);
}

.node-a { top: 29%; left: 22%; }
.node-b { top: 41%; left: 59%; animation-delay: .35s; }
.node-c { top: 49%; left: 34%; animation-delay: .7s; }
.node-d { top: 27%; left: 75%; animation-delay: 1.05s; }
.node-e { top: 67%; left: 69%; animation-delay: 1.4s; }
.node-f { top: 19%; left: 48%; animation-delay: 1.7s; }
.node-g { top: 56%; left: 82%; animation-delay: 2s; }
.node-h { top: 76%; left: 45%; animation-delay: 2.25s; }

.node-c,
.node-g {
  --node-rgb: 255, 184, 66;
  border-color: #fff4c8;
  background: linear-gradient(135deg, #ffe28a 0 48%, #ff9f2d 49% 100%);
  box-shadow: 0 0 0 0 rgba(255, 184, 66, .5), 0 0 16px rgba(255, 174, 55, .95);
}

.globe-chip {
  position: absolute;
  z-index: 4;
  padding: 6px 9px;
  border: 1px solid rgba(16, 191, 208, 0.24);
  border-radius: 4px;
  background: rgba(248, 254, 255, 0.84);
  color: #087e8d;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(7, 94, 108, 0.1);
  backdrop-filter: blur(12px);
}

.globe-chip::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: #72dc42;
  box-shadow: 0 0 7px #72dc42;
  vertical-align: 1px;
}

.globe-chip-a { top: 30%; left: 23%; }
.globe-chip-b { top: 37%; right: 21%; }
.globe-chip-c { bottom: 32%; left: 24%; }

.globe-caption {
  position: absolute;
  right: 14%;
  bottom: 13%;
  left: auto;
  z-index: 4;
  display: grid;
  gap: 3px;
  min-width: 152px;
  padding: 10px 13px;
  border: 1px solid rgba(16, 191, 208, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(23, 65, 72, 0.1);
  backdrop-filter: blur(12px);
}

.globe-caption small {
  color: #009cad;
  font-size: 10px;
  font-weight: 900;
}

.globe-caption strong {
  font-size: 20px;
}

.globe-caption em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.global-nodes {
  color: #062b33;
  background: #f7fcfd;
  box-shadow: 0 18px 48px rgba(7, 94, 108, 0.1);
}

.global-nodes .section-copy {
  max-width: 690px;
  color: #52727a;
}

.node-status {
  padding: 8px 12px;
  border: 1px solid rgba(52, 190, 130, 0.3);
  border-radius: 999px;
  background: #e9fbf3;
  color: #11875a;
  font-size: 13px;
  font-weight: 900;
}

.node-network {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(230px, .5fr);
  gap: 24px;
  align-items: stretch;
}

.node-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid #cfe8ec;
  border-radius: 8px;
  background: #07558a url("/assets/global-node-map-original.png") center / contain no-repeat;
  box-shadow: inset 0 0 40px rgba(16, 191, 208, 0.08), 0 14px 34px rgba(7, 94, 108, 0.14);
}

.node-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 165, 195, 0.01), rgba(2, 47, 78, 0.08));
}

.node-pulse {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #34be82;
  box-shadow: 0 0 0 0 rgba(52, 190, 130, 0.48);
  animation: node-pulse 2.2s ease-out infinite;
}

.node-pulse-a { top: 36%; left: 22%; }
.node-pulse-b { top: 30%; left: 51%; animation-delay: .55s; }
.node-pulse-c { top: 44%; left: 72%; animation-delay: 1.1s; }
.node-pulse-d { top: 70%; left: 84%; animation-delay: 1.65s; }

.node-facts {
  display: grid;
  align-content: center;
}

.node-facts article {
  display: grid;
  gap: 7px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(6, 43, 51, 0.1);
  transition: padding-left .18s ease, background .18s ease;
}

.node-facts article:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(16, 191, 208, 0.09), transparent);
}

.node-facts article:last-child {
  border-bottom: 0;
}

.node-facts span {
  color: #6b858b;
  font-size: 13px;
}

.node-facts strong {
  color: #062b33;
  font-size: 20px;
}

@keyframes globe-spin {
  to { background-position: -200% center; }
}

@keyframes globe-orbit {
  to { rotate: 360deg; }
}

@keyframes space-drift {
  from { background-position: 45% 50%; }
  to { background-position: 55% 47%; }
}

@keyframes node-pulse {
  70%, 100% { box-shadow: 0 0 0 18px rgba(114, 220, 66, 0); }
}

@keyframes globe-scan {
  0%, 100% { transform: translateX(-145px) rotate(18deg); opacity: 0; }
  18%, 82% { opacity: 1; }
  50% { transform: translateX(145px) rotate(18deg); }
}

@keyframes chain-flow {
  from { opacity: .4; filter: brightness(.85); }
  to { opacity: 1; filter: brightness(1.35); }
}

@keyframes chain-node-pulse {
  65%, 100% { box-shadow: 0 0 0 16px rgba(var(--node-rgb), 0), 0 0 14px rgba(var(--node-rgb), 0.95); }
}

@keyframes data-packet {
  0% { left: 0; opacity: 0; }
  12%, 86% { opacity: 1; }
  100% { left: calc(100% - 5px); opacity: 0; }
}

@keyframes city-light-breathe {
  0%, 100% { opacity: .55; filter: brightness(.9); }
  50% { opacity: 1; filter: brightness(1.35); }
}

@keyframes network-pin-float {
  0%, 100% { transform: translateY(0) rotate(-45deg) scale(.92); opacity: .72; }
  50% { transform: translateY(-8px) rotate(-45deg) scale(1.08); opacity: 1; }
}

@media (max-width: 900px) {
  .hero-globe {
    right: -110px;
    width: 430px;
    opacity: .62;
  }

  .node-network {
    grid-template-columns: 1fr;
  }

  .node-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .node-facts article {
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .hero-globe {
    top: 42%;
    right: -190px;
    width: 340px;
    opacity: 1;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .45) 34%, #000 66%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .45) 34%, #000 66%);
  }

  .globe-caption {
    display: none;
  }

  .globe-chip {
    display: none;
  }

  .network-pin {
    width: 10px;
    height: 10px;
  }

  .network-pin::after {
    top: 3px;
    left: 3px;
    width: 2px;
    height: 2px;
  }

  .chain-node {
    width: 9px;
    height: 9px;
  }

  .node-map {
    min-height: 220px;
  }

  .node-facts {
    grid-template-columns: 1fr;
  }

  .node-facts article {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .globe-sphere,
  .hero-globe::before,
  .hero-globe::after,
  .node-pulse,
  .globe-tech-layer::after,
  .chain-link,
  .chain-link::after,
  .chain-node,
  .globe-sphere::before,
  .network-pin {
    animation: none;
  }
}

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

  .language-switch select {
    max-width: 68px;
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    right: 14px;
    left: 14px;
  }
}

/* Light cyan theme inspired by modern mobile wallet interfaces. */
:root {
  --bg: #f7fafb;
  --panel: #ffffff;
  --panel-2: #f1f5f6;
  --text: #062b33;
  --muted: #71878c;
  --line: #e2e9eb;
  --gold: #59ddea;
  --gold-2: #08aabc;
  --blue: #10bfd0;
  --green: #72dc42;
}

body {
  background: #f7fafb;
  color: var(--text);
}

.site-header {
  border-color: rgba(6, 43, 51, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 42px rgba(23, 65, 72, 0.09);
}

.brand img {
  box-shadow: 0 0 0 3px rgba(89, 221, 234, 0.16);
}

nav {
  border-color: #e5ecee;
  background: #f4f7f8;
}

nav a {
  color: #36565d;
}

nav a:hover {
  background: #ffffff;
  color: #008fa0;
  box-shadow: 0 4px 14px rgba(23, 65, 72, 0.08);
}

.brand small,
.metrics span,
.metrics p,
.quick-card p,
.reward-grid span,
.reward-grid p,
.order-grid span,
.order-grid p,
.architecture-grid span,
.app-grid span,
.timeline span,
.section-copy,
footer {
  color: var(--muted);
}

.header-action,
.primary {
  background: #59ddea;
  color: #052e36;
  box-shadow: 0 8px 22px rgba(16, 191, 208, 0.2);
}

.header-action:hover,
.primary:hover {
  background: #46d1df;
}

.language-switch {
  border-color: #e2e9eb;
  background: #f4f7f8;
  color: #36565d;
}

.language-switch select {
  color: var(--text);
}

.language-switch option {
  background: #ffffff;
  color: var(--text);
}

.section-dock {
  border-color: rgba(16, 191, 208, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(23, 65, 72, 0.13);
}

.section-dock a {
  color: #527076;
}

.section-dock a:hover {
  border-left-color: #10bfd0;
  background: #e7fbfd;
  color: #008fa0;
}

.hero {
  background: #ffffff;
}

.hero-bg {
  opacity: 0.92;
  filter: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 37%, rgba(255, 255, 255, 0.58) 57%, rgba(255, 255, 255, 0.08) 76%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, #f7fafb 0%, rgba(247, 250, 251, 0) 32%);
}

.hero-logo {
  border-color: rgba(16, 191, 208, 0.38);
  box-shadow: 0 0 0 7px rgba(89, 221, 234, 0.15), 0 18px 44px rgba(23, 65, 72, 0.15);
}

.hero-content::before {
  background: linear-gradient(90deg, #59ddea, #72dc42);
}

.eyebrow,
.section-kicker,
.quick-card span,
.allocation-list b,
.section-head a,
.reward-grid strong,
.order-grid span,
.architecture-grid b,
.timeline b,
.risk strong {
  color: #009cad;
}

.lead,
.allocation-list em,
.order-cta p,
.security-list span,
.risk,
.risk p {
  color: #49666c;
}

.secondary {
  border-color: #dce6e8;
  background: rgba(255, 255, 255, 0.86);
  color: #21474f;
  box-shadow: 0 7px 18px rgba(23, 65, 72, 0.07);
}

.secondary:hover {
  border-color: rgba(16, 191, 208, 0.38);
  background: #e7fbfd;
}

.hero-strip {
  border-color: #e0e8ea;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(23, 65, 72, 0.1);
}

.hero-strip span {
  color: var(--muted);
}

.hero-strip strong {
  color: #009cad;
}

.metrics article,
.quick-card,
.reward-grid article,
.order-grid article,
.architecture-grid article,
.app-grid a,
.risk,
.section {
  border-color: #e2e9eb;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(23, 65, 72, 0.07);
}

.quick-card::after {
  background: rgba(89, 221, 234, 0.16);
}

.quick-card:hover,
.metrics article:hover,
.reward-grid article:hover,
.order-grid article:hover,
.architecture-grid article:hover,
.app-grid a:hover {
  border-color: rgba(16, 191, 208, 0.34);
  background: #f7feff;
  box-shadow: 0 16px 36px rgba(23, 65, 72, 0.11);
}

.quick-card.featured {
  border-color: rgba(16, 191, 208, 0.34);
  background: #eafcfd;
}

.allocation-list span {
  background: linear-gradient(90deg, #72dc42 var(--w), #e8eff0 var(--w));
}

.order-section {
  background: #eefcfd;
}

.order-grid article::after {
  background: #72dc42;
  box-shadow: 0 0 0 8px rgba(114, 220, 66, 0.14);
}

.order-cta {
  border-color: rgba(16, 191, 208, 0.22);
  background: rgba(255, 255, 255, 0.78);
}

.security-list span {
  border-color: #e1e9eb;
  background: #f3f7f8;
}

@media (max-width: 620px) {
  .site-header {
    display: grid;
    width: 100%;
    max-width: 100vw;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
  }

  .site-header nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
  }

  .brand span {
    display: block;
  }

  .brand {
    min-width: 0;
  }

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

  .header-tools {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
    gap: 0;
  }

  .language-switch {
    min-height: 36px;
    padding: 4px 6px;
  }

  .language-switch select {
    width: 62px;
    max-width: 62px;
  }

  .hero-bg {
    opacity: 0.72;
  }

  .hero,
  .hero-content,
  .hero-actions {
    max-width: 100vw;
  }

  .hero-actions {
    width: calc(100vw - 36px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.5) 78%, rgba(255, 255, 255, 0.12) 100%),
      linear-gradient(0deg, #f7fafb 0%, rgba(247, 250, 251, 0) 38%);
  }

  .section-dock {
    right: 10px;
    bottom: 12px;
    left: 10px;
    display: flex;
    width: auto;
    max-width: calc(100vw - 20px);
    gap: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    scrollbar-width: none;
  }

  .section-dock::-webkit-scrollbar {
    display: none;
  }

  .section-dock a {
    flex: 0 0 auto;
    padding: 8px 11px;
    border-left: 0;
    border-radius: 999px;
  }

  .section-dock a:hover {
    border-left: 0;
  }
}

/* Keep the node network band aligned with the site's light cyan theme. */
.global-nodes.section {
  scroll-margin-top: 112px;
  color: #062b33;
  border: 1px solid #dcebed;
  background: #f7fcfd;
  box-shadow: 0 18px 48px rgba(7, 94, 108, 0.1);
}

.global-nodes h2,
.global-nodes .node-facts strong {
  color: #062b33;
}

.global-nodes .section-copy {
  color: #52727a;
}

@media (min-width: 901px) {
  .global-nodes.section {
    padding-right: 110px;
  }
}

.section-dock a.is-active {
  border-left-color: #10bfd0;
  background: #e7fbfd;
  color: #007f90;
  font-weight: 900;
}

@media (max-width: 620px) {
  .global-nodes.section {
    padding-bottom: 104px;
  }

  .section-dock a.is-active {
    border-left: 0;
  }
}

/* Full-width cosmic hero with an independently animated Earth and node layer. */
.hero {
  background: #03152d url("/assets/hero-cosmic-starfield.png") center / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, .99) 34%, rgba(255, 255, 255, .9) 47%, rgba(255, 255, 255, .46) 61%, rgba(3, 21, 45, .04) 80%, rgba(3, 21, 45, .08) 100%),
    linear-gradient(0deg, #f7fafb 0%, rgba(247, 250, 251, .84) 7%, rgba(247, 250, 251, 0) 22%);
}

.globe-space {
  display: none;
}

@media (max-width: 620px) {
  .hero {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .97) 48%, rgba(255, 255, 255, .86) 72%, rgba(255, 255, 255, .56) 100%),
      linear-gradient(0deg, #f7fafb 0%, rgba(247, 250, 251, .86) 10%, rgba(247, 250, 251, 0) 30%);
  }
}

/* Deep-space presentation based on the supplied visual reference. */
.hero {
  background-color: #020d20;
  background-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(1, 9, 23, .82) 0%, rgba(2, 15, 35, .68) 39%, rgba(2, 20, 45, .34) 58%, rgba(2, 20, 45, .08) 82%, rgba(2, 20, 45, .04) 100%),
    linear-gradient(0deg, rgba(2, 13, 30, .86) 0%, rgba(2, 13, 30, 0) 25%);
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 8px 34px rgba(0, 7, 22, .34);
}

.hero .eyebrow {
  color: #67edf2;
}

.hero .lead {
  color: #dcecf4;
  text-shadow: 0 2px 14px rgba(0, 8, 24, .42);
}

.hero .secondary {
  border-color: rgba(135, 224, 235, .34);
  background: rgba(2, 25, 50, .52);
  color: #f4feff;
  box-shadow: 0 8px 24px rgba(0, 7, 22, .18);
  backdrop-filter: blur(10px);
}

.hero .secondary:hover {
  border-color: rgba(103, 237, 242, .72);
  background: rgba(6, 54, 78, .72);
}

.hero-strip {
  border-color: rgba(135, 224, 235, .26);
  background: rgba(2, 18, 40, .7);
  box-shadow: 0 12px 34px rgba(0, 7, 22, .22);
}

.hero-strip span {
  color: #b8d1dc;
}

.hero-strip strong {
  color: #67edf2;
}

@media (max-width: 620px) {
  .hero {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(1, 9, 23, .9) 0%, rgba(2, 14, 33, .82) 56%, rgba(2, 20, 45, .58) 100%),
      linear-gradient(0deg, rgba(2, 13, 30, .88) 0%, rgba(2, 13, 30, 0) 32%);
  }
}

/* Blend the cosmic hero into the site's cyan and white content system. */
.hero {
  border-bottom: 1px solid rgba(89, 221, 234, .18);
  box-shadow: inset 0 -40px 64px rgba(247, 250, 251, .08);
}

.hero-overlay {
  background:
    radial-gradient(circle at 77% 44%, rgba(70, 229, 234, .14), transparent 31%),
    linear-gradient(90deg, rgba(1, 9, 23, .84) 0%, rgba(2, 15, 35, .68) 39%, rgba(2, 20, 45, .34) 58%, rgba(2, 20, 45, .08) 82%, rgba(2, 20, 45, .04) 100%),
    linear-gradient(0deg, rgba(247, 250, 251, .96) 0%, rgba(247, 250, 251, .28) 5%, rgba(247, 250, 251, 0) 15%);
}

@media (max-width: 620px) {
  .hero-overlay {
    background:
      radial-gradient(circle at 86% 38%, rgba(70, 229, 234, .12), transparent 29%),
      linear-gradient(90deg, rgba(1, 9, 23, .92) 0%, rgba(2, 14, 33, .84) 56%, rgba(2, 20, 45, .62) 100%),
      linear-gradient(0deg, rgba(247, 250, 251, .96) 0%, rgba(247, 250, 251, .24) 6%, rgba(247, 250, 251, 0) 17%);
  }
}

/* Restored full-node map with interactive location markers. */
.node-map {
  min-height: 0 !important;
  aspect-ratio: 2 / 1;
  background-color: #075d91;
  background-image: url("./assets/global-node-map-real.png");
  background-position: center;
  background-size: 100% 100%;
}

.node-map::after {
  z-index: 2;
  pointer-events: none;
}

.node-map-picture,
.node-map-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .node-map {
    min-height: 168px !important;
    background-image: url("/assets/global-node-map-mobile.jpg?v=20260716-2");
  }
}

/* 2026-2028 global strategy and company progress. */
.roadmap {
  overflow: hidden;
}

.strategy-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.strategy-heading h2 {
  margin-bottom: 8px;
}

.strategy-range {
  flex: 0 0 auto;
  color: #009cad;
  font-size: 24px;
  font-weight: 900;
}

.strategy-current {
  display: grid;
  grid-template-columns: auto minmax(220px, .85fr) minmax(300px, 1.15fr);
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 191, 208, .28);
  border-left: 4px solid #10bfd0;
  background: #ecfbfc;
}

.strategy-current strong {
  color: #062b33;
  font-size: 18px;
}

.strategy-current > span:last-child {
  color: #52727a;
  line-height: 1.55;
}

.strategy-live {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #008c9c;
  font-size: 13px;
  font-weight: 900;
}

.strategy-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #24c780;
  box-shadow: 0 0 0 5px rgba(36, 199, 128, .12);
}

.strategy-years {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.strategy-year {
  overflow: hidden;
  border: 1px solid #dce9eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(23, 65, 72, .08);
}

.strategy-year.is-current {
  border-color: rgba(16, 191, 208, .48);
}

.strategy-year > header {
  display: grid;
  min-height: 154px;
  align-content: end;
  padding: 20px;
  background: #083b50;
  color: #ffffff;
}

.strategy-year.is-current > header {
  background: #075c70;
}

.strategy-year header span {
  color: #6be4eb;
  font-size: 11px;
  font-weight: 900;
}

.strategy-year header strong {
  margin: 4px 0;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
}

.strategy-year header h3 {
  font-size: 18px;
  line-height: 1.35;
}

.strategy-milestones {
  padding: 8px 20px 18px;
}

.strategy-milestones section {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #e7eef0;
}

.strategy-milestones section:last-child {
  border-bottom: 0;
}

.strategy-milestones time {
  color: #009cad;
  font-size: 12px;
  font-weight: 900;
}

.strategy-milestones h4 {
  margin-bottom: 6px;
  color: #062b33;
  font-size: 15px;
}

.strategy-milestones p {
  color: #607a81;
  font-size: 13px;
  line-height: 1.65;
}

.strategy-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid #dce9eb;
  border-bottom: 1px solid #dce9eb;
}

.strategy-path div {
  display: grid;
  gap: 5px;
  padding: 20px;
  border-right: 1px solid #dce9eb;
}

.strategy-path div:last-child {
  border-right: 0;
}

.strategy-path b {
  color: #009cad;
  font-size: 13px;
}

.strategy-path strong {
  color: #062b33;
  font-size: 17px;
}

.strategy-path span,
.strategy-note {
  color: #6b858b;
  font-size: 13px;
  line-height: 1.6;
}

.strategy-note {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .strategy-current {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .strategy-years {
    grid-template-columns: 1fr;
  }

  .strategy-year > header {
    min-height: 132px;
  }
}

@media (max-width: 620px) {
  .strategy-heading {
    align-items: start;
  }

  .strategy-heading h2 {
    font-size: 30px;
  }

  .strategy-range {
    padding-top: 24px;
    font-size: 14px;
  }

  .strategy-current {
    padding: 16px;
  }

  .strategy-year > header {
    min-height: 118px;
    padding: 18px;
  }

  .strategy-year header strong {
    font-size: 32px;
  }

  .strategy-milestones {
    padding-right: 16px;
    padding-left: 16px;
  }

  .strategy-milestones section {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .strategy-path {
    grid-template-columns: 1fr;
  }

  .strategy-path div {
    border-right: 0;
    border-bottom: 1px solid #dce9eb;
  }

  .strategy-path div:last-child {
    border-bottom: 0;
  }
}

.map-node {
  position: absolute;
  z-index: 7;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-node::before,
.map-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-node::before {
  width: 11px;
  height: 11px;
  border: 2px solid #ffffff;
  background: #13c8bd;
  box-shadow: 0 0 0 4px rgba(19, 200, 189, .18), 0 0 16px rgba(105, 255, 243, .92);
}

.map-node::after {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(159, 255, 247, .8);
  animation: map-node-ring 2.2s ease-out infinite;
}

.map-node:hover::before,
.map-node:focus-visible::before,
.map-node.is-active::before {
  background: #ffcf56;
  box-shadow: 0 0 0 5px rgba(255, 207, 86, .2), 0 0 18px rgba(255, 225, 131, .95);
}

.map-node:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.map-node-us { top: 36%; left: 22%; }
.map-node-br { top: 68%; left: 36%; }
.map-node-de { top: 31%; left: 51%; }
.map-node-dubai { top: 46%; left: 63%; }
.map-node-za { top: 72%; left: 54%; }
.map-node-in { top: 48%; left: 70%; }
.map-node-hk { top: 43%; left: 79%; }
.map-node-sg { top: 59%; left: 77%; }
.map-node-au { top: 71%; left: 85%; }

.map-node-featured::before {
  background: #ffbf3f;
  box-shadow: 0 0 0 5px rgba(255, 191, 63, .24), 0 0 20px rgba(255, 221, 116, 1);
}

.map-node-featured > span {
  position: absolute;
  top: -17px;
  left: 50%;
  min-width: 38px;
  padding: 3px 6px;
  border: 1px solid rgba(255, 217, 112, .72);
  border-radius: 4px;
  background: rgba(3, 30, 54, .9);
  color: #ffe083;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.globe-city-label {
  position: absolute;
  z-index: 8;
  padding: 5px 8px 5px 17px;
  border: 1px solid rgba(255, 214, 105, .72);
  border-radius: 4px;
  background: rgba(3, 27, 52, .84);
  color: #ffe27e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 0 16px rgba(255, 194, 54, .18);
  pointer-events: none;
}

.globe-city-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffc347;
  box-shadow: 0 0 8px #ffe7a3;
  transform: translateY(-50%);
}

.globe-city-hk { top: 39%; right: 9%; }
.globe-city-dubai { top: 48%; left: 13%; }

@media (max-width: 620px) {
  .map-node-featured > span {
    top: -15px;
    font-size: 9px;
  }

  .globe-city-label {
    padding: 4px 6px 4px 14px;
    font-size: 8px;
  }
}

/* Final compatibility layout: the image participates in normal document flow. */
.node-map {
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: auto !important;
  background: #075d91;
}

.node-map-image {
  position: relative;
  inset: auto;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  pointer-events: none;
}

@media (max-width: 620px) {
  .node-map {
    min-height: 0 !important;
    background: #075d91;
  }
}

.node-map-popup {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 6;
  display: grid;
  width: min(230px, calc(100% - 36px));
  gap: 3px;
  padding: 16px 42px 16px 16px;
  border: 1px solid rgba(144, 239, 243, .6);
  border-radius: 8px;
  background: rgba(3, 30, 54, .92);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 20, 43, .3);
  backdrop-filter: blur(12px);
}

.node-map-popup[hidden] {
  display: none;
}

.node-map-popup.is-left {
  right: auto;
  left: 18px;
}

.node-map-popup-kicker {
  color: #62e8ec;
  font-size: 10px;
  font-weight: 900;
}

.node-map-popup-title {
  font-size: 22px;
}

.node-map-popup-city {
  color: #dff9fb;
  font-weight: 800;
}

.node-map-popup-type {
  margin-top: 5px;
  color: #a9cbd4;
}

.node-map-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

@keyframes map-node-ring {
  from { opacity: .9; transform: translate(-50%, -50%) scale(.55); }
  to { opacity: 0; transform: translate(-50%, -50%) scale(1.55); }
}

@media (max-width: 620px) {
  .node-map-popup {
    right: 10px;
    bottom: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .node-map-popup-title {
    font-size: 18px;
  }

  .node-map-popup.is-left {
    left: 10px;
  }
}

/* Photorealistic rotating Earth with a slower independent cloud layer. */
.globe-sphere {
  border-color: rgba(177, 239, 255, .72);
  background-color: #071447;
  background-image: url("./assets/earth-blue-marble.png");
  box-shadow:
    inset 48px 4px 66px rgba(0, 5, 22, .58),
    inset -18px -4px 38px rgba(98, 206, 255, .18),
    0 0 0 5px rgba(111, 224, 244, .08),
    0 0 34px rgba(47, 202, 227, .24),
    0 24px 54px rgba(0, 7, 24, .34);
  filter: saturate(1.08) contrast(1.05) brightness(1.11);
}

.globe-sphere::before {
  inset: 0;
  z-index: 1;
  background-color: transparent;
  background-image: url("/assets/earth-cloud-layer.png");
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: auto 100%;
  opacity: .38;
  mix-blend-mode: screen;
  animation: cloud-spin 72s linear infinite;
}

.globe-sphere::after {
  z-index: 2;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .28), transparent 20%),
    linear-gradient(90deg, rgba(0, 4, 18, .34), transparent 34%, transparent 64%, rgba(0, 5, 22, .4));
  box-shadow: inset 0 0 42px rgba(0, 7, 24, .36);
}

@keyframes cloud-spin {
  to { background-position: -200% center; }
}

/* A single low-orbit satellite chain around the Earth. */
.satellite-constellation {
  position: absolute;
  top: 7%;
  left: 7%;
  z-index: 4;
  display: block;
  width: 86%;
  aspect-ratio: 1;
  pointer-events: none;
}

.satellite-constellation::before {
  content: "";
  position: absolute;
  top: 34%;
  left: 1%;
  width: 98%;
  height: 32%;
  border: 1px solid rgba(103, 237, 242, .24);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(71, 218, 228, .08);
  transform: rotate(-12deg);
}

.orbital-satellite {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 6px;
  border: 1px solid rgba(205, 249, 255, .9);
  border-radius: 2px;
  background: linear-gradient(90deg, #1f9fb4 0 34%, #f5ffff 35% 65%, #1f9fb4 66% 100%);
  box-shadow: 0 0 10px rgba(103, 237, 242, .72);
  offset-path: ellipse(48% 16% at 50% 50%);
  offset-rotate: auto;
  animation: satellite-travel 26s linear infinite;
}

.orbital-satellite::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border-radius: 2px;
  background: #eaffff;
  box-shadow: 0 0 7px rgba(255, 255, 255, .72);
}

.satellite-b { animation-delay: -5.2s; }
.satellite-c { animation-delay: -10.4s; }
.satellite-d { animation-delay: -15.6s; }
.satellite-e { animation-delay: -20.8s; }

@keyframes satellite-travel {
  to { offset-distance: 100%; }
}

@media (max-width: 620px) {
  .orbital-satellite {
    width: 15px;
    height: 5px;
  }

  .orbital-satellite::before {
    top: -2px;
    left: 5px;
    width: 4px;
    height: 8px;
  }
}

/* Wrap the high-resolution global node map around the rotating sphere. */
.globe-sphere {
  background-color: #075884;
  background-image: url("/assets/global-node-map-original.png");
  filter: saturate(1.02) contrast(1.04) brightness(1.04);
  animation-duration: 54s;
}

.globe-sphere::before {
  opacity: .16;
  animation-duration: 78s;
}

.globe-sphere::after {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .25), transparent 21%),
    linear-gradient(90deg, rgba(0, 8, 26, .34), transparent 35%, transparent 64%, rgba(0, 8, 28, .42));
  box-shadow: inset 0 0 42px rgba(0, 9, 30, .34);
}

.globe-pin-field {
  opacity: .36;
}

.chain-link {
  opacity: .54;
}

.chain-node {
  transform: rotate(45deg) scale(.88);
}

.satellite-constellation::before {
  border-color: rgba(103, 237, 242, .18);
}

/* Let the real Earth fill the complete interactive globe area. */
.globe-sphere,
.globe-tech-layer {
  width: 90%;
}

.globe-pin-field {
  top: 5%;
  left: 5%;
  width: 90%;
}

.satellite-constellation {
  top: 1%;
  left: 1%;
  width: 98%;
}

.globe-chip-a { top: 23%; left: 13%; }
.globe-chip-b { top: 31%; right: 10%; }
.globe-chip-c { bottom: 24%; left: 14%; }

/* True WebGL sphere; the CSS sphere remains as a no-WebGL fallback. */
.hero-globe {
  right: max(46px, calc((100vw - var(--max)) / 2 + 24px));
  width: min(36vw, 440px);
}

.earth-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: drop-shadow(0 24px 38px rgba(0, 7, 24, .38));
  transition: opacity .45s ease;
  pointer-events: none;
}

.webgl-earth .earth-canvas {
  opacity: 1;
}

.webgl-earth .globe-sphere {
  opacity: 0;
}

.globe-sphere {
  transition: opacity .35s ease;
}

.globe-tech-layer {
  width: 82%;
}

.globe-pin-field {
  top: 9%;
  left: 9%;
  width: 82%;
}

.satellite-constellation {
  top: 3%;
  left: 3%;
  width: 94%;
}

.globe-chip-a { top: 24%; left: 16%; }
.globe-chip-b { top: 33%; right: 13%; }
.globe-chip-c { bottom: 25%; left: 17%; }

@media (max-width: 900px) {
  .hero-globe {
    right: -92px;
    width: 400px;
  }
}

@media (max-width: 620px) {
  .hero {
    display: flex;
    min-height: 0;
    padding: 124px 18px 30px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    order: 1;
    width: 100%;
  }

  .hero-globe {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    order: 2;
    align-self: center;
    width: min(80vw, 312px);
    margin: 30px auto 0;
    opacity: 1;
    transform: none !important;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-globe:hover {
    transform: scale(1.01) !important;
  }

  .hero-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    order: 3;
    width: 100%;
    margin-top: 26px;
  }
}

/* Final balanced node-Earth layout. Keep these rules last in the cascade. */
.earth-canvas {
  filter: drop-shadow(0 20px 34px rgba(0, 18, 44, .46));
}

.globe-tech-layer,
.satellite-constellation {
  top: 0;
  left: 0;
  width: 100%;
}

.globe-pin-field {
  top: 3%;
  left: 3%;
  width: 94%;
}

.globe-tech-layer::before {
  border-color: rgba(69, 178, 220, .24);
  box-shadow: inset 0 0 30px rgba(7, 50, 88, .2);
}

@media (min-width: 1250px) {
  .hero-content {
    max-width: 600px;
  }

  .hero-globe {
    right: max(170px, calc((100vw - var(--max)) / 2 + 96px));
    width: 440px;
  }

  .node-map {
    min-height: 440px;
  }
}

@media (min-width: 901px) and (max-width: 1249px) {
  .hero-content {
    max-width: 560px;
  }

  .hero-globe {
    right: 160px;
    width: 400px;
  }

  .node-map {
    min-height: 400px;
  }
}

/* Restore the previous cosmic theme with a brighter, whiter star field. */
.hero {
  background-color: #0b3b63;
  background-blend-mode: screen;
  border-bottom-color: rgba(121, 218, 232, .28);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 38%, rgba(214, 248, 255, .12), transparent 31%),
    linear-gradient(90deg, rgba(1, 10, 25, .76) 0%, rgba(2, 18, 40, .58) 40%, rgba(6, 42, 75, .24) 67%, rgba(21, 87, 128, .04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .02) 58%, rgba(221, 246, 251, .08) 79%, rgba(247, 252, 253, .9) 100%);
}

@media (max-width: 620px) {
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(1, 13, 31, .78) 0%, rgba(4, 31, 57, .58) 70%, rgba(247, 252, 253, .84) 100%);
  }
}

/* Final reference-blue space palette. */
.hero {
  background-color: #020b1c;
  background-blend-mode: normal;
  border-bottom-color: rgba(78, 158, 230, .38);
  box-shadow: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(1, 7, 19, .54) 0%, rgba(2, 11, 28, .38) 37%, rgba(2, 13, 34, .12) 60%, transparent 82%),
    linear-gradient(180deg, rgba(1, 7, 20, .03) 76%, rgba(2, 12, 30, .16) 100%);
}

@media (max-width: 620px) {
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(1, 8, 21, .52) 0%, rgba(2, 13, 33, .28) 72%, rgba(2, 12, 30, .16) 100%);
  }
}
