:root {
  --ink-1000: #030811;
  --ink-950: #050d19;
  --ink-900: #071426;
  --ink-800: #0d1d33;
  --paper: #f2f5f8;
  --white: #ffffff;
  --blue: #245bff;
  --cyan: #55dcff;
  --gold: #f5b942;
  --muted: #96a4b8;
  --dark-muted: #526076;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(7, 20, 38, 0.16);
  --header-height: 88px;
  --pad: clamp(24px, 5vw, 84px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink-950);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: var(--white); }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink-950);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .045;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header-height);
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(5, 13, 25, .78);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }

.brand-mark {
  width: 35px;
  height: 35px;
  display: inline-grid;
  place-items: center;
}

.brand-mark svg { width: 100%; height: 100%; }
.brand-mark .gate-left { fill: var(--blue); }
.brand-mark .gate-right { fill: var(--gold); }
.brand-mark .spine { fill: var(--white); }

.brand-word {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1;
}

.brand-word span { font-weight: 400; color: #b5bfd0; }

.nav { display: flex; align-items: center; gap: clamp(22px, 2.7vw, 46px); }

.nav > a {
  position: relative;
  color: #b9c3d1;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .055em;
  transition: color .2s ease;
}

.nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--white);
  transition: right .35s var(--ease);
}

.nav > a:hover, .nav > a:focus-visible { color: var(--white); }
.nav > a:hover::after, .nav > a:focus-visible::after { right: 0; }

.nav .nav-cta {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  padding: 12px 17px;
  border-radius: 999px;
}

.nav .nav-cta span { color: var(--gold); margin-left: 7px; }

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  padding: 14px 10px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  margin: 7px 0;
  transition: transform .25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(80px, 10vh, 130px)) var(--pad) 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(430px, .9fr);
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 83% 40%, rgba(36, 91, 255, .15), transparent 29%),
    linear-gradient(180deg, #050d19 0%, #071426 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, black 55%, black);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 860px;
  height: 860px;
  border: 1px solid rgba(85, 220, 255, .1);
  border-radius: 50%;
  right: -360px;
  top: -360px;
}

.hero-ambient { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); }
.orbit-one { width: 340px; height: 340px; left: -190px; bottom: 8%; }
.orbit-two { width: 250px; height: 250px; left: -145px; bottom: calc(8% + 45px); }

.hero-copy { max-width: 860px; position: relative; z-index: 2; }

.eyebrow,
.section-kicker,
.solution-label,
.metric-tag,
.console-head,
.coordinates,
.legal-date {
  font-family: "Space Grotesk", ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: #a6b4c8;
  font-size: .71rem;
}

.eyebrow::before { content: ""; width: 33px; height: 1px; background: var(--gold); }

.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(4rem, 7.25vw, 8.8rem);
  line-height: .83;
  font-weight: 500;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.hero h1 > span { display: block; }

.gradient-text {
  padding-bottom: .09em;
  color: transparent;
  background: linear-gradient(96deg, #ffffff 8%, #7fa0ff 58%, #55dcff 105%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-intro {
  max-width: 660px;
  margin: clamp(32px, 5vh, 56px) 0 0;
  color: #aab6c6;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 39px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border: 0;
  border-radius: 999px;
  padding: 15px 23px;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease;
}

.button-primary { background: var(--white); color: var(--ink-950); box-shadow: 0 14px 45px rgba(0, 0, 0, .22); }
.button-primary:hover, .button-primary:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 55px rgba(36,91,255,.3); }
.button-primary span { color: var(--blue); }

.text-link {
  position: relative;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  transform: scaleX(.28);
  transform-origin: left;
  background: currentColor;
  opacity: .45;
  transition: transform .35s var(--ease), opacity .35s ease;
}

.text-link:hover::after, .text-link:focus-visible::after { transform: scaleX(1); opacity: 1; }
.text-link span { color: var(--gold); }

.network-console {
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: 580px;
  justify-self: end;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(145deg, rgba(16, 38, 69, .62), rgba(5, 13, 25, .78));
  box-shadow: inset 0 1px rgba(255,255,255,.05), 0 50px 100px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.network-console::before, .network-console::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--cyan);
  opacity: .7;
}

.network-console::before { top: -1px; left: -1px; border-left: 2px solid; border-top: 2px solid; }
.network-console::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }

.console-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  color: #7f8da1;
  font-size: .58rem;
}

.console-head span:first-child { color: #c3cedc; }
.console-head i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #52e5a5; box-shadow: 0 0 18px #52e5a5; margin-right: 8px; }

.console-metric { position: relative; z-index: 2; display: flex; align-items: center; gap: 17px; margin-top: 21px; }
.console-number { font-family: "Space Grotesk", sans-serif; font-size: 3.6rem; line-height: .9; letter-spacing: -.07em; }
.console-metric > span:last-child { color: #75849a; font-family: "Space Grotesk", monospace; font-size: .63rem; text-transform: uppercase; letter-spacing: .12em; line-height: 1.55; }

.orbital-map { position: absolute; inset: 98px 3px 70px; display: grid; place-items: center; }
.orbital-map svg { width: 100%; height: 100%; overflow: visible; }
.globe-line { fill: none; stroke: rgba(150,174,210,.17); stroke-width: 1; }
.route { fill: none; stroke: var(--blue); stroke-width: 1.4; stroke-linecap: round; stroke-dasharray: 8 13; animation: routeFlow 8s linear infinite; }
.route-b { animation-duration: 6.5s; animation-delay: -.6s; }
.route-c { animation-duration: 9.5s; animation-delay: -2.1s; }
.route-d { animation-duration: 7.2s; animation-delay: -3s; }

.map-node circle:first-child { fill: rgba(36,91,255,.13); stroke: rgba(85,220,255,.7); stroke-width: 1; }
.map-node circle:nth-child(2) { fill: var(--cyan); filter: url(#nodeGlow); }
.map-node text { fill: #aeb9ca; font: 500 10px "Space Grotesk", sans-serif; letter-spacing: .14em; }
.node-sg circle:first-child { fill: rgba(245,185,66,.14); stroke: var(--gold); animation: hubPulse 2.8s ease-out infinite; transform-box: fill-box; transform-origin: center; }
.node-sg circle:nth-child(2) { fill: var(--gold); }
.node-sg text { fill: var(--white); }

.console-foot {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  color: #697991;
  font-family: "Space Grotesk", monospace;
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-index {
  position: absolute;
  left: var(--pad);
  bottom: 30px;
  display: flex;
  gap: 14px;
  color: #5d6c82;
  font: 500 .58rem "Space Grotesk", monospace;
  letter-spacing: .14em;
}

.hero-index span:first-child { color: var(--gold); }

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #697991;
  font: 500 .58rem "Space Grotesk", monospace;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.scroll-cue i { display: inline-block; width: 50px; height: 1px; background: #697991; overflow: hidden; }
.scroll-cue i::after { content: ""; display: block; width: 24px; height: 1px; background: var(--white); animation: scrollCue 2.6s var(--ease) infinite; }

.section-rule { position: relative; padding: clamp(96px, 12vw, 190px) var(--pad); border-top: 1px solid var(--line-light); }
.section-kicker { display: flex; align-items: center; gap: 15px; margin-bottom: clamp(52px, 8vw, 105px); color: #526076; font-size: .65rem; font-weight: 600; }
.section-kicker span { display: inline-grid; place-items: center; width: 30px; height: 30px; border: 1px solid currentColor; border-radius: 50%; color: var(--blue); font-size: .58rem; }

.ecosystem { color: var(--ink-900); background: var(--paper); }
.ecosystem-heading { display: grid; grid-template-columns: 1.7fr 1fr; align-items: end; gap: 60px; }
.ecosystem h2, .impact-title, .solutions h2, .network h2, .footprint h2, .contact h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: .95;
  font-weight: 500;
  letter-spacing: -.055em;
}
.ecosystem-heading > p, .solutions-intro > p, .network-copy > p, .footprint-head > p, .contact-copy > p {
  max-width: 560px;
  margin: 0 0 7px;
  color: var(--dark-muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
}

.logo-track-wrap { margin: clamp(70px, 9vw, 130px) calc(var(--pad) * -1) 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.logo-track { display: grid; grid-template-columns: repeat(3, 1fr); }
.logo-item {
  min-height: 170px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: #26344a;
  filter: grayscale(1);
  transition: filter .35s ease, color .35s ease, background .35s ease;
}
.logo-item:nth-child(3n) { border-right: 0; }
.logo-item:nth-last-child(-n+3) { border-bottom: 0; }
.logo-item:hover { filter: grayscale(0); background: var(--white); }
.logo-item img { display: block; width: auto; max-width: min(68%, 220px); max-height: 55px; object-fit: contain; }
.logo-red img { max-height: 68px; }
.logo-fallback { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.1rem, 1.8vw, 1.65rem); letter-spacing: -.03em; }
.logo-shopee:hover { color: #ee4d2d; }
.logo-lazada:hover { color: #f36f21; }
.logo-tiktok:hover { color: #111; }
.logo-jbhunt:hover { color: #d7292f; }
.logo-ups:hover { color: #351c15; }
.logo-expeditors:hover { color: #cf152d; }
.logo-ryder:hover { color: #d22630; }
.logo-red:hover { color: #ff2442; }
.logo-temu:hover { color: #ff5a00; }
.trademark-note, .data-note, .availability, .location-note {
  max-width: 1020px;
  margin: 29px 0 0;
  color: #627085;
  font-size: .75rem;
  line-height: 1.7;
}

.impact { color: var(--white); background: #050c17; overflow: hidden; }
.impact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 22%, rgba(36,91,255,.16), transparent 25%), radial-gradient(circle at 82% 88%, rgba(85,220,255,.08), transparent 28%); pointer-events: none; }
.impact .section-kicker { color: #75849a; }
.impact-title em, .solutions h2 em, .network h2 em, .footprint h2 em, .contact h2 em { color: #718096; font-style: normal; }
.impact-title { position: relative; }
.metric-list { position: relative; margin-top: clamp(72px, 10vw, 145px); border-top: 1px solid var(--line-dark); }
.metric-row { min-height: 245px; display: grid; grid-template-columns: minmax(300px, .9fr) 1fr auto; align-items: center; gap: 60px; border-bottom: 1px solid var(--line-dark); }
.metric-value { display: flex; align-items: baseline; white-space: nowrap; font-family: "Space Grotesk", sans-serif; font-size: clamp(4.3rem, 9.2vw, 10rem); line-height: .82; letter-spacing: -.065em; font-variant-numeric: tabular-nums; }
.metric-value small { color: var(--gold); font-size: .28em; letter-spacing: -.03em; }
.metric-copy h3 { margin: 0 0 9px; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.1rem, 1.5vw, 1.5rem); font-weight: 500; }
.metric-copy p { max-width: 470px; margin: 0; color: #8290a5; }
.metric-tag { align-self: start; margin-top: 45px; color: #6c7c93; font-size: .58rem; }
.impact .data-note { position: relative; color: #697991; }

.solutions { color: var(--ink-900); background: var(--paper); }
.solutions-intro { display: grid; grid-template-columns: 1.7fr 1fr; align-items: end; gap: 60px; }
.solution-panel { position: relative; display: grid; grid-template-columns: 90px minmax(280px, .78fr) 1.22fr; gap: clamp(30px, 6vw, 100px); padding: clamp(70px, 8vw, 120px) 0; border-top: 1px solid var(--line-light); }
.solution-panel:first-of-type { margin-top: clamp(80px, 10vw, 150px); }
.solution-panel:last-child { border-bottom: 1px solid var(--line-light); }
.solution-number { font-family: "Space Grotesk", monospace; color: var(--blue); font-size: .75rem; }
.solution-label { margin: 0 0 28px; color: #607086; font-size: .62rem; }
.solution-main h3 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.4rem, 4vw, 5rem); line-height: .98; letter-spacing: -.055em; font-weight: 500; }
.solution-main > p:not(.solution-label) { max-width: 540px; margin: 30px 0 24px; color: #56657a; font-size: 1.02rem; line-height: 1.75; }
.solutions .text-link { color: var(--ink-900); }
.flow-diagram { min-height: 440px; display: grid; grid-template-rows: 1fr auto 1fr; align-items: center; padding: 35px; background: var(--ink-900); color: var(--white); overflow: hidden; }
.flow-step { display: grid; grid-template-columns: 45px 1fr; align-items: end; gap: 5px 20px; }
.flow-step.align-right { text-align: right; grid-template-columns: 1fr 45px; }
.flow-step.align-right span { grid-column: 2; grid-row: 1 / span 2; }
.flow-step.align-right strong, .flow-step.align-right small { grid-column: 1; }
.flow-step span { grid-row: 1 / span 2; align-self: center; color: var(--gold); font: 500 .62rem "Space Grotesk", monospace; }
.flow-step strong { font: 500 clamp(1.5rem, 2.5vw, 2.6rem) "Space Grotesk", sans-serif; letter-spacing: -.03em; }
.flow-step small { color: #7f8da1; font-size: .75rem; }
.flow-line { position: relative; height: 92px; display: grid; place-items: center; }
.flow-line::before, .flow-line::after { content: ""; position: absolute; left: 50%; width: 1px; height: 42%; background: linear-gradient(transparent, var(--blue)); }
.flow-line::before { top: 0; }
.flow-line::after { bottom: 0; transform: rotate(180deg); }
.flow-line i { width: 12px; height: 12px; border: 2px solid var(--cyan); border-radius: 50%; box-shadow: 0 0 28px var(--blue); }
.flow-line span { position: absolute; left: calc(50% + 23px); color: #75849a; font: .56rem "Space Grotesk", monospace; letter-spacing: .13em; }
.feature-ledger { border-top: 1px solid var(--line-light); }
.feature-ledger div { min-height: 58px; display: flex; align-items: center; gap: 23px; border-bottom: 1px solid var(--line-light); color: #26354a; font-size: clamp(.9rem, 1.15vw, 1.05rem); transition: padding-left .3s var(--ease), color .3s ease; }
.feature-ledger div:hover { padding-left: 9px; color: var(--blue); }
.feature-ledger span { color: #8b98aa; font: 500 .58rem "Space Grotesk", monospace; }

.network { min-height: 100vh; color: var(--white); background: #06101e; overflow: hidden; }
.network-grid { position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(circle at center, black, transparent 80%); }
.network .section-kicker { position: relative; color: #75849a; }
.network-copy { position: relative; display: grid; grid-template-columns: 1.6fr .8fr; align-items: end; gap: 60px; }
.network-copy > p { color: #8290a5; }
.market-orbit { position: relative; max-width: 1200px; margin: clamp(50px, 7vw, 95px) auto 0; }
.market-orbit svg { width: 100%; height: auto; overflow: visible; }
.market-ring { fill: none; stroke: rgba(141,166,202,.13); stroke-width: 1; stroke-dasharray: 3 8; }
.ring-outer { stroke: rgba(36,91,255,.24); }
.market-route { fill: none; stroke: url(#routeGradient); stroke-width: 1.4; stroke-linecap: round; stroke-dasharray: 8 13; animation: routeFlow 9s linear infinite; opacity: .8; }
.r2 { animation-duration: 8s; animation-delay: -1s; }.r3 { animation-duration: 7s; animation-delay: -2s; }.r4 { animation-duration: 9.5s; animation-delay: -3s; }.r5 { animation-duration: 7.7s; animation-delay: -4s; }.r6 { animation-duration: 10s; animation-delay: -5s; }
.hub text, .country-node text { fill: #eef4ff; text-anchor: middle; font: 600 14px "Space Grotesk", sans-serif; letter-spacing: .1em; }
.hub .sub, .country-node .sub { fill: #65768f; font-size: 8px; letter-spacing: .13em; }
.hub-glow { fill: rgba(245,185,66,.12); stroke: rgba(245,185,66,.42); animation: hubPulse 2.8s ease-out infinite; transform-box: fill-box; transform-origin: center; }
.hub-core { fill: var(--gold); filter: url(#largeGlow); }
.country-node circle { fill: var(--cyan); stroke: rgba(85,220,255,.32); stroke-width: 10; paint-order: stroke; }
.network .availability { position: relative; margin-top: 30px; color: #62748f; }

.footprint { color: var(--ink-900); background: var(--white); }
.footprint-head { display: grid; grid-template-columns: 1.6fr .8fr; align-items: end; gap: 60px; }
.footprint-list { margin-top: clamp(72px, 10vw, 140px); border-top: 1px solid var(--line-light); }
.footprint-row { min-height: 155px; display: grid; grid-template-columns: 120px minmax(300px, 1.3fr) .75fr 1fr; align-items: center; gap: 30px; border-bottom: 1px solid var(--line-light); }
.footprint-index { color: var(--blue); font: 500 .58rem "Space Grotesk", monospace; letter-spacing: .14em; }
.footprint-row h3 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.35rem, 2.2vw, 2.6rem); line-height: 1.15; letter-spacing: -.04em; font-weight: 500; }
.footprint-row h3 i { color: var(--gold); font-style: normal; }
.footprint-row p { margin: 0; color: #526076; }
.coordinates { color: #8a96a6; font-size: .56rem; line-height: 1.7; }

.contact { color: var(--white); background: var(--blue); overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 5% 90%, rgba(85,220,255,.18), transparent 30%), linear-gradient(120deg, rgba(255,255,255,.03), transparent 40%); }
.contact-backdrop { position: absolute; left: -2vw; right: -2vw; top: 18%; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.09); font: 600 clamp(8rem, 22vw, 30rem)/.8 "Space Grotesk", sans-serif; letter-spacing: -.09em; white-space: nowrap; pointer-events: none; }
.contact .section-kicker { position: relative; color: rgba(255,255,255,.65); }
.contact .section-kicker span { color: var(--gold); }
.contact-layout { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 160px); }
.contact h2 em { color: rgba(255,255,255,.58); }
.contact-copy > p { margin-top: 40px; color: rgba(255,255,255,.72); }
.contact-route { display: flex; align-items: center; gap: 18px; margin-top: 48px; color: rgba(255,255,255,.7); font: 500 .58rem "Space Grotesk", monospace; letter-spacing: .13em; }
.contact-route i { position: relative; width: 90px; height: 1px; background: rgba(255,255,255,.35); }
.contact-route i::after { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); top: -2.5px; left: 0; animation: routeDot 3s var(--ease) infinite; box-shadow: 0 0 15px var(--gold); }
.enquiry-form { border-top: 1px solid rgba(255,255,255,.42); padding-top: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.enquiry-form label:not(.consent-field) { display: grid; gap: 8px; padding: 24px 0 18px; border-bottom: 1px solid rgba(255,255,255,.28); }
.enquiry-form label > span:first-child { font: 500 .62rem "Space Grotesk", monospace; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.enquiry-form input:not([type="checkbox"]), .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  border-radius: 0;
}
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: rgba(255,255,255,.55); }
.enquiry-form select { appearance: auto; color-scheme: dark; }
.enquiry-form select option { background: var(--ink-900); color: var(--white); }
.enquiry-form textarea { resize: vertical; min-height: 105px; line-height: 1.55; }
.enquiry-form label:focus-within { border-color: var(--gold); }
.consent-field { display: flex; align-items: flex-start; gap: 13px; margin-top: 22px; color: rgba(255,255,255,.72); font-size: .78rem; line-height: 1.6; }
.consent-field input { appearance: none; flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; border: 1px solid rgba(255,255,255,.65); display: grid; place-items: center; cursor: pointer; }
.consent-field input::after { content: ""; width: 9px; height: 5px; border-left: 2px solid var(--ink-900); border-bottom: 2px solid var(--ink-900); transform: rotate(-45deg) scale(0); transition: transform .18s ease; }
.consent-field input:checked { background: var(--gold); border-color: var(--gold); }
.consent-field input:checked::after { transform: rotate(-45deg) scale(1); }
.consent-field button { display: inline; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; }
.form-footer { display: flex; align-items: center; gap: 24px; margin-top: 30px; }
.form-footer p { max-width: 240px; margin: 0; color: rgba(255,255,255,.58); font-size: .7rem; }
.form-status { min-height: 24px; margin: 18px 0 0; font-size: .82rem; color: var(--gold); }
.form-status.error { color: #ffe3df; }

.site-footer { padding: 78px var(--pad) 30px; display: grid; grid-template-columns: 1.2fr 1fr .7fr; gap: 50px; background: var(--ink-1000); border-top: 1px solid var(--line-dark); color: #8997aa; }
.footer-brand .brand { color: var(--white); }
.footer-brand > p { margin: 18px 0 0 48px; color: #64738a; font-size: .82rem; }
.footer-company { display: flex; flex-direction: column; gap: 7px; font-size: .8rem; }
.footer-company strong { color: var(--white); font-family: "Space Grotesk", sans-serif; letter-spacing: .04em; }
.footer-company address { margin-top: 7px; font-style: normal; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-links button { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.footer-links button:hover, .footer-links a:hover { color: var(--white); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 29px; margin-top: 25px; border-top: 1px solid var(--line-dark); color: #4e5d72; font: 500 .58rem "Space Grotesk", monospace; letter-spacing: .12em; text-transform: uppercase; }

.legal-dialog {
  width: min(790px, calc(100vw - 32px));
  max-height: min(830px, calc(100vh - 32px));
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  background: var(--ink-900);
  color: var(--white);
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
}
.legal-dialog::backdrop { background: rgba(1,4,9,.82); backdrop-filter: blur(8px); }
.dialog-head { position: sticky; top: 0; z-index: 1; display: flex; justify-content: space-between; padding: 19px 24px; border-bottom: 1px solid var(--line-dark); background: rgba(7,20,38,.94); }
.dialog-head p { margin: 0; color: #75849a; font: 500 .62rem "Space Grotesk", monospace; letter-spacing: .12em; text-transform: uppercase; }
.dialog-head button { min-width: 64px; min-height: 32px; border: 0; background: transparent; cursor: pointer; color: #c6cfdb; }
.dialog-body { padding: clamp(30px, 5vw, 65px); }
.dialog-body h2 { margin: 0; font: 500 clamp(2.5rem, 5vw, 5.4rem)/.95 "Space Grotesk", sans-serif; letter-spacing: -.055em; }
.dialog-body .legal-date { color: var(--gold); font-size: .58rem; margin: 17px 0 45px; }
.dialog-body h3 { margin: 32px 0 9px; font: 500 1.1rem "Space Grotesk", sans-serif; }
.dialog-body p:not(.legal-date) { color: #95a3b6; line-height: 1.75; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes routeFlow { to { stroke-dashoffset: -84; } }
@keyframes hubPulse { 0% { opacity: .9; transform: scale(.72); } 80%,100% { opacity: 0; transform: scale(1.8); } }
@keyframes scrollCue { 0% { transform: translateX(-100%); } 65%,100% { transform: translateX(220%); } }
@keyframes routeDot { 0% { transform: translateX(0); } 70%,100% { transform: translateX(84px); } }

@media (max-width: 1180px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr); gap: 45px; }
  .network-console { min-height: 510px; }
  .metric-row { grid-template-columns: minmax(270px, .85fr) 1fr auto; gap: 35px; }
  .solution-panel { grid-template-columns: 50px minmax(250px, .85fr) 1.15fr; gap: 38px; }
  .footprint-row { grid-template-columns: 90px minmax(260px, 1.2fr) .8fr .9fr; gap: 20px; }
}

@media (max-width: 980px) {
  :root { --header-height: 76px; }
  .site-header { padding-inline: 24px; }
  .menu-button { display: block; }
  .menu-button.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 120px 30px 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    background: rgba(5,13,25,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  }
  .nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav > a { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.8rem, 6vw, 3rem); font-weight: 500; letter-spacing: -.03em; }
  .nav .nav-cta { margin-top: 15px; font-size: 1rem; letter-spacing: .03em; }
  body.menu-open { overflow: hidden; }
  .hero { padding-inline: 24px; grid-template-columns: 1fr; align-content: center; gap: 58px; }
  .hero-copy { padding-top: 50px; }
  .network-console { justify-self: stretch; max-width: none; min-height: 480px; }
  .hero-index, .scroll-cue { display: none; }
  .section-rule { padding-inline: 24px; }
  .ecosystem-heading, .solutions-intro, .network-copy, .footprint-head, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .logo-track-wrap { margin-inline: -24px; }
  .metric-row { grid-template-columns: 1fr auto; gap: 18px; padding: 46px 0; }
  .metric-copy { grid-column: 1 / -1; grid-row: 2; }
  .metric-tag { grid-column: 2; grid-row: 1; margin-top: 10px; }
  .solution-panel { grid-template-columns: 50px 1fr; }
  .solution-main { grid-column: 2; }
  .flow-diagram, .feature-ledger { grid-column: 2; }
  .footprint-row { grid-template-columns: 75px 1fr; padding: 28px 0; }
  .footprint-row p, .coordinates { grid-column: 2; }
  .contact-layout { gap: 70px; }
}

@media (max-width: 680px) {
  .hero { padding-bottom: 60px; }
  .hero h1 { font-size: clamp(3.45rem, 16vw, 5rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .network-console { min-height: 400px; padding: 18px; }
  .console-head span:last-child { display: none; }
  .console-number { font-size: 3rem; }
  .orbital-map { inset: 78px -42px 45px; }
  .console-foot { left: 18px; right: 18px; bottom: 14px; }
  .section-kicker { margin-bottom: 45px; }
  .ecosystem h2, .impact-title, .solutions h2, .network h2, .footprint h2, .contact h2 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .logo-track { grid-template-columns: 1fr 1fr; }
  .logo-item { min-height: 125px; padding: 20px 12px; flex-direction: column; gap: 8px; text-align: center; }
  .logo-item:nth-child(3n) { border-right: 1px solid var(--line-light); }
  .logo-item:nth-child(2n) { border-right: 0; }
  .logo-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--line-light); }
  .logo-item:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .logo-item img { max-width: 76%; max-height: 40px; }
  .metric-row { min-height: auto; }
  .metric-value { font-size: clamp(4.15rem, 21vw, 6.7rem); }
  .metric-copy h3 { font-size: 1rem; }
  .solution-panel { grid-template-columns: 1fr; padding-block: 65px; }
  .solution-number, .solution-main, .flow-diagram, .feature-ledger { grid-column: 1; }
  .flow-diagram { min-height: 365px; padding: 25px; }
  .feature-ledger div { min-height: 56px; }
  .market-orbit { margin-inline: -110px; }
  .market-orbit svg { min-width: 720px; transform: translateX(-7%); }
  .network .availability { margin-top: 40px; }
  .footprint-row { grid-template-columns: 1fr; gap: 8px; }
  .footprint-row p, .coordinates { grid-column: 1; }
  .footprint-index { margin-bottom: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; gap: 40px; padding-inline: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-brand > p { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.page-hidden .route,
.page-hidden .market-route,
.page-hidden .hub-glow,
.page-hidden .node-sg circle:first-child,
.page-hidden .scroll-cue i::after,
.page-hidden .contact-route i::after { animation-play-state: paused; }
