:root {
  color-scheme: light;
  --navy: #272d6c;
  --orange: #f05521;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #08101b;
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.launch-page {
  min-height: 100svh;
  background: var(--white);
}

.brand-header {
  position: relative;
  z-index: 3;
  display: flex;
  height: clamp(168px, 19vh, 190px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 80px);
  padding: 14px clamp(28px, 5vw, 84px);
  background: var(--white);
}

.brand-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(30vw, 460px);
  height: 4px;
  background: var(--orange);
  content: "";
}

.brand-logo {
  display: block;
  width: clamp(240px, 22vw, 340px);
  height: clamp(104px, 13vh, 138px);
  object-fit: contain;
  object-position: left center;
  overflow: visible;
}

.brand-context {
  display: flex;
  flex: 0 1 auto;
  margin: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: #5f6878;
  font-size: clamp(9px, 0.68vw, 11px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-context a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  text-decoration: none;
}

.brand-context .linkedin-label {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.brand-context a svg {
  width: 1.8em;
  height: 1.8em;
  flex: 0 0 auto;
}

.brand-context .linkedin-disc {
  fill: currentColor;
}

.brand-context .linkedin-mark {
  fill: #fff;
}

.brand-context a:hover,
.brand-context a:focus-visible {
  color: #0f294b;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - clamp(168px, 19vh, 190px));
  grid-template-rows: 1fr auto;
  padding: clamp(38px, 5vw, 76px) clamp(28px, 6vw, 102px) clamp(24px, 2.8vw, 44px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgb(255 255 255 / 3.2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3.2%) 1px, transparent 1px),
    #09090e;
  background-size: 64px 64px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 78% 42%, rgb(39 45 108 / 20%), transparent 42%);
  content: "";
}

.network-visual {
  position: absolute;
  top: 50%;
  right: clamp(-150px, -5vw, -40px);
  width: min(64vw, 930px);
  color: rgb(116 104 156 / 34%);
  transform: translateY(-52%);
  pointer-events: none;
}

.network-visual svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.world-dots {
  fill: url(#legacy-map-dots);
}

.routes path {
  fill: none;
  stroke: var(--orange);
  stroke-dasharray: 0.18 0.82;
  stroke-linecap: round;
  stroke-width: 2;
  opacity: 0.7;
  animation: route-flow 8s linear infinite;
}

.routes path:nth-child(2n) {
  animation-duration: 11s;
  animation-direction: reverse;
}

.nodes circle {
  fill: var(--orange);
  filter: drop-shadow(0 0 8px rgb(240 85 33 / 75%));
  transform-box: fill-box;
  transform-origin: center;
  animation: node-pulse 3.2s ease-in-out infinite;
}

.nodes circle:nth-child(2n) {
  animation-delay: -1.4s;
}

.message {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  align-self: center;
  padding: 2vh 0 4vh;
}

.status {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(24px, 3vw, 42px);
  color: rgb(255 255 255 / 82%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.status span {
  width: 38px;
  height: 3px;
  background: var(--orange);
  transform-origin: left;
  animation: signal 2.8s ease-in-out infinite;
}

h1 {
  max-width: 8.4ch;
  margin: 0;
  color: #fff;
  font-size: clamp(64px, 8vw, 142px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.83;
  text-transform: uppercase;
  text-wrap: balance;
}

.subhead {
  max-width: none;
  margin: clamp(28px, 4vw, 52px) 0 0;
  color: rgb(255 255 255 / 78%);
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.45;
  white-space: nowrap;
}

.subhead span {
  color: var(--orange);
}

.brand-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 36px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 34%);
}

.brand-footer p {
  margin: 0;
  color: rgb(255 255 255 / 64%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes signal {
  0%, 100% { transform: scaleX(0.35); opacity: 0.55; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes settle {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

@keyframes route-flow {
  to { stroke-dashoffset: -1; }
}

@keyframes node-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.25); }
}

@media (max-width: 760px) {
  .brand-header {
    display: flex;
    height: 126px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 18px;
  }

  .brand-logo {
    flex: 0 1 auto;
    width: min(176px, 40vw);
    height: 82px;
  }

  .brand-context {
    position: absolute;
    top: 50%;
    right: 18px;
    display: flex;
    gap: 8px;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 0.03em;
    line-height: 1.25;
    text-align: right;
    transform: translateY(-50%);
  }

  .hero {
    min-height: calc(100svh - 126px);
    padding: 38px 22px 24px;
  }

  .network-visual {
    top: 46%;
    right: -210px;
    width: 760px;
    color: rgb(116 104 156 / 25%);
  }

  .message {
    padding: 4vh 0 8vh;
  }

  .subhead {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(51px, 15vw, 84px);
  }

  .brand-footer {
    display: grid;
    justify-content: start;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .subhead {
    font-size: 10px;
  }
}

@media (max-width: 350px) {
  .brand-header {
    gap: 10px;
    padding-inline: 16px;
  }

  .brand-context {
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status span,
  .routes path,
  .nodes circle {
    animation: none;
  }
}
