@font-face {
  font-family: "ndpro-regular";
  src: url("../font/ndpro-regular.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ndpro-monospace";
  src: url("../font/ndpro-monospace-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #03050b;
  --bg-2: #07101f;
  --ink: #eef3fc;
  --ink-soft: rgba(238, 243, 252, .72);
  --ink-mute: rgba(238, 243, 252, .46);
  --hair: rgba(255, 255, 255, .09);
  --hair-strong: rgba(255, 255, 255, .16);
  --brand: #396dbe;
  --brand-hi: #6c9cf0;
  --glass: rgba(10, 16, 30, .55);
  --radius: .8rem;
  --radius-btn: .5rem;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: "ndpro-regular", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: "ndpro-monospace", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --pad: clamp(18px, 3.2vw, 44px);
  color-scheme: dark;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  height: 100%;
  background: var(--bg);
}
body {
  font-family: var(--font);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow: hidden;
  overscroll-behavior: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
::selection {
  background: rgba(57, 109, 190, .55);
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--brand-hi);
  outline-offset: 3px;
  border-radius: var(--radius-btn);
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 110%, #0b1a36 0%, transparent 60%),
    radial-gradient(90% 70% at 50% -20%, #0a1428 0%, transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.sky__nebula {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(38% 30% at 22% 34%, rgba(57, 109, 190, .20), transparent 70%),
    radial-gradient(30% 26% at 78% 62%, rgba(94, 70, 190, .13), transparent 70%),
    radial-gradient(26% 22% at 64% 18%, rgba(40, 150, 200, .09), transparent 70%);
  filter: blur(20px);
  animation: nebula 60s var(--ease) infinite alternate;
}
@keyframes nebula {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 1.5%, 0) scale(1.08);
  }
}
.sky__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sky__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(130% 100% at 50% 50%, transparent 55%, rgba(0, 0, 0, .55) 100%);
}
.constellation {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.photo {
  --size: 80px;
  position: absolute;
  top: 0;
  left: 0;
  width: var(--size);
  height: var(--size);
  margin: 0;
  pointer-events: auto;
  will-change: transform;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.photo.is-visible {
  opacity: 1;
}
.photo__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28%;
  overflow: hidden;
  background: #0b1222;
  box-shadow:
    0 0 0 1px var(--hair-strong),
    0 10px 30px -8px rgba(0, 0, 0, .8),
    0 0 40px -10px rgba(57, 109, 190, .35);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.photo__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, .14), transparent 40%, rgba(3, 5, 11, .35));
  pointer-events: none;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.72);
  opacity: .78;
  transition: filter .7s var(--ease), opacity .6s var(--ease);
}
.photo.is-swapping img {
  opacity: 0;
}
.photo figcaption {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: max-content;
  max-width: 220px;
  transform: translate(-50%, -4px);
  font: 400 11px/1.4 var(--mono);
  letter-spacing: .04em;
  color: var(--ink-soft);
  text-align: center;
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.photo:hover .photo__frame,
.photo.is-active .photo__frame {
  transform: scale(1.12);
  box-shadow:
    0 0 0 1px rgba(108, 156, 240, .55),
    0 16px 40px -10px rgba(0, 0, 0, .9),
    0 0 60px -6px rgba(57, 109, 190, .6);
}
.photo:hover img,
.photo.is-active img {
  filter: none;
  opacity: 1;
}
.photo:hover figcaption,
.photo.is-active figcaption {
  opacity: 1;
  transform: translate(-50%, 0);
}
.photo.is-dim:not(.is-active) img {
  opacity: .42;
}
.photo.is-dim:not(.is-active) .photo__frame {
  box-shadow: 0 0 0 1px var(--hair), 0 8px 20px -8px rgba(0, 0, 0, .8);
}
.stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  height: 100svh;
  padding: var(--pad);
  padding-top: max(var(--pad), env(safe-area-inset-top));
  padding-bottom: max(var(--pad), env(safe-area-inset-bottom));
  pointer-events: none;
}
.stage > * > * {
  pointer-events: auto;
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 1.2s var(--ease) forwards;
  animation-delay: calc(var(--d, 0) * 120ms + 350ms);
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.coords {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font: 400 11px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.coords::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-hi);
  box-shadow: 0 0 0 4px rgba(108, 156, 240, .15), 0 0 14px rgba(108, 156, 240, .9);
  animation: beacon 3.2s ease-in-out infinite;
}
@keyframes beacon {
  50% {
    box-shadow: 0 0 0 7px rgba(108, 156, 240, 0), 0 0 22px rgba(108, 156, 240, .6);
  }
}
.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--hair-strong);
  border-radius: var(--radius-btn);
  background: rgba(8, 13, 25, .45);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font: inherit;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.pill:hover {
  border-color: rgba(108, 156, 240, .6);
  background: rgba(20, 34, 64, .6);
}
.pill--icon {
  width: 38px;
  padding: 0;
  justify-content: center;
}
.flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 0;
  padding: clamp(12px, 3vh, 40px) 0;
}
.hero__scrim {
  position: absolute;
  z-index: -1;
  width: min(900px, 110vw);
  height: min(640px, 80svh);
  background: radial-gradient(closest-side, rgba(3, 5, 11, .72), rgba(3, 5, 11, .35) 60%, transparent);
  pointer-events: none !important;
}
.brand {
  width: clamp(220px, 30vw, 420px);
  height: auto;
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, .6));
}
.kicker {
  margin: clamp(22px, 4.2vh, 44px) 0 0;
  font: 400 clamp(12px, 1vw, 14.5px)/1.6 var(--mono);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.kicker span {
  color: var(--brand-hi);
}
.headline {
  max-width: 17ch;
  margin: clamp(10px, 1.8vh, 18px) 0 0;
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  background: linear-gradient(180deg, #fff 30%, rgba(214, 226, 250, .72));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  max-width: 50ch;
  margin: clamp(12px, 2vh, 20px) 0 0;
  font-size: clamp(.95rem, 1.15vw, 1.08rem);
  line-height: 1.6;
  color: var(--ink-soft);
}
.portal {
  --angle: 0deg;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  width: min(560px, 100%);
  margin-top: clamp(22px, 4.5vh, 48px);
  padding: 18px 20px 18px 22px;
  border-radius: var(--radius);
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  text-align: left;
  text-decoration: none;
  isolation: isolate;
  transition: transform .5s var(--ease);
}
.portal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle),
    rgba(255, 255, 255, .08),
    rgba(108, 156, 240, .75) 12%,
    rgba(255, 255, 255, .08) 26%,
    rgba(255, 255, 255, .08) 60%,
    rgba(57, 109, 190, .5) 72%,
    rgba(255, 255, 255, .08) 86%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  animation: orbit 9s linear infinite;
}
.portal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background: radial-gradient(80% 120% at 0% 50%, rgba(57, 109, 190, .22), transparent 60%);
  opacity: .7;
  transition: opacity .5s var(--ease);
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes orbit {
  to {
    --angle: 360deg;
  }
}
.portal:hover {
  transform: translateY(-2px);
}
.portal:hover::after {
  opacity: 1;
}
.portal__logo {
  width: auto;
  height: 58px;
  padding-right: clamp(16px, 2vw, 24px);
  border-right: 1px solid var(--hair);
}
.portal__label {
  display: block;
  margin-bottom: 6px;
  font: 400 10.5px/1 var(--mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-hi);
}
.portal__text {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.portal__text strong {
  font-weight: 600;
  color: var(--ink);
}
.portal__go {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  background: var(--brand);
  box-shadow: 0 8px 26px -6px rgba(57, 109, 190, .9);
  transition: transform .5s var(--ease), background .3s var(--ease);
}
.portal__go svg {
  width: 18px;
  height: 18px;
}
.portal:hover .portal__go {
  transform: translateX(4px);
  background: #4a7fd4;
}
.bottombar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: var(--ink-mute);
}
.bottombar p {
  margin: 0;
}
.legal {
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.legal a {
  display: inline-block;
  padding: 8px 10px;
  border-radius: var(--radius-btn);
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.legal a:hover {
  color: #fff;
}
.modal {
  width: min(600px, calc(100vw - 28px));
  max-height: min(78svh, 760px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: rgba(9, 14, 27, .82);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow:
    0 0 0 1px var(--hair-strong),
    0 40px 120px -20px rgba(0, 0, 0, .9),
    0 0 80px -30px rgba(57, 109, 190, .6);
  color: var(--ink);
  overflow: hidden;
}
.modal[open] {
  display: flex;
  flex-direction: column;
  animation: modal-in .45s var(--ease);
}
.modal.is-closing {
  animation: modal-out .25s var(--ease) forwards;
}
.modal::backdrop {
  background: rgba(2, 4, 9, .6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: fade-in .45s var(--ease);
}
.modal.is-closing::backdrop {
  animation: fade-out .25s var(--ease) forwards;
}
@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }
}
@keyframes modal-out {
  to {
    opacity: 0;
    transform: translateY(10px) scale(.985);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
}
@keyframes fade-out {
  to {
    opacity: 0;
  }
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 18px 28px;
  border-bottom: 1px solid var(--hair);
}
.modal__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -.01em;
}
.modal__eyebrow {
  display: block;
  margin-bottom: 6px;
  font: 400 10.5px/1 var(--mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-hi);
}
.modal__close {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--hair-strong);
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .3s var(--ease), transform .4s var(--ease);
}
.modal__close:hover {
  background: rgba(255, 255, 255, .06);
  transform: rotate(90deg);
}
.modal__close svg {
  width: 14px;
  height: 14px;
}
.modal__body {
  padding: 24px 28px 30px;
  overflow-y: auto;
  overscroll-behavior: contain;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.modal__body h3 {
  margin: 26px 0 6px;
  font: 400 10.5px/1.4 var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.modal__body h3:first-child {
  margin-top: 0;
}
.modal__body p {
  margin: 0 0 10px;
}
.modal__body strong {
  color: var(--ink);
  font-weight: 600;
}
.modal__body a {
  color: var(--brand-hi);
  text-decoration: none;
  border-bottom: 1px solid rgba(108, 156, 240, .35);
  transition: border-color .3s var(--ease);
}
.modal__body a:hover {
  border-color: var(--brand-hi);
}
.facts {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 22px;
  margin: 0;
}
.facts dt {
  font: 400 11px/1.9 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.facts dd {
  margin: 0;
  color: var(--ink);
}
.contact-cards {
  display: grid;
  gap: 12px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
}
.modal__body a.contact-card {
  border-bottom: 1px solid var(--hair);
  color: inherit;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.modal__body a.contact-card:hover {
  border-color: rgba(108, 156, 240, .5);
  background: rgba(57, 109, 190, .08);
}
.contact-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-btn);
  background: rgba(57, 109, 190, .16);
  color: var(--brand-hi);
}
.contact-card__icon svg {
  width: 20px;
  height: 20px;
}
.contact-card small {
  display: block;
  font: 400 10.5px/1.6 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-card__text {
  min-width: 0;
  font-style: normal;
}
.contact-card__text > span {
  display: block;
  color: var(--ink);
}
@media (max-width: 1100px) {
  .brand {
    width: clamp(220px, 40vw, 380px);
  }
}
@media (max-width: 720px) {
  .coords .long {
    display: none;
  }
  .pill__text {
    display: none;
  }
  .pill--contact {
    width: 38px;
    padding: 0;
    justify-content: center;
  }
  .brand {
    width: min(68vw, 300px);
  }
  .headline {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }
  .lead {
    font-size: .94rem;
  }
  .portal {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 14px 14px 14px 16px;
  }
  .portal__logo {
    height: 44px;
    padding-right: 14px;
  }
  .portal__text {
    font-size: 13.5px;
  }
  .portal__go {
    width: 40px;
    height: 40px;
  }
  .bottombar {
    flex-direction: column-reverse;
    gap: 2px;
    text-align: center;
  }
  .facts {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .facts dd {
    margin-bottom: 10px;
  }
  .modal__head {
    padding: 18px 18px 16px 22px;
  }
  .modal__body {
    padding: 20px 22px 26px;
  }
}
@media (max-width: 359px) {
  .portal__label {
    display: none;
  }
  .lead {
    display: none;
  }
}
@media (max-height: 700px) and (max-width: 720px) {
  .lead {
    display: none;
  }
}
@media (max-height: 560px) {
  .lead {
    display: none;
  }
  .kicker {
    margin-top: 14px;
  }
  .portal {
    margin-top: 16px;
  }
}
@media (max-height: 460px) {
  body {
    overflow: auto;
  }
  .stage {
    height: auto;
    min-height: 100svh;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
