:root {
  color-scheme: dark;
  --ink: #02080d;
  --ink-soft: #06131c;
  --cyan: #47cfff;
  --cyan-deep: #118dbd;
  --paper: #f6fcff;
  --cyan-hot: #86efff;
  --deep-blue: #183fbe;
  --ultraviolet: #9b7cff;
  --cold-field:
    radial-gradient(circle at 76% 28%, rgba(134, 239, 255, 0.18), transparent 29%),
    radial-gradient(circle at 12% 84%, rgba(24, 63, 190, 0.24), transparent 35%),
    radial-gradient(circle at 52% 112%, rgba(155, 124, 255, 0.14), transparent 39%),
    conic-gradient(
      from 214deg at 68% 42%,
      transparent 0 18%,
      rgba(71, 207, 255, 0.065) 25%,
      transparent 34% 65%,
      rgba(155, 124, 255, 0.06) 75%,
      transparent 84%
    );
  --line: rgba(71, 207, 255, 0.3);
  --muted: rgba(246, 252, 255, 0.62);
  --mono: "Lucida Console", "Courier New", monospace;
  --sans: Arial, Helvetica, sans-serif;
  --pad-x: clamp(18px, 4vw, 68px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--cold-field), var(--ink);
  font-family: var(--sans);
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 8, 13, 0.92) 0 18%, transparent 52% 76%, rgba(2, 8, 13, 0.72)),
    linear-gradient(0deg, rgba(2, 8, 13, 0.86), transparent 38% 72%, rgba(2, 8, 13, 0.36));
}

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

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

button,
input {
  font: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

.screen-fx,
.screen-fx > * {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.screen-fx {
  z-index: 5;
}

.screen-fx__grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(71, 207, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 207, 255, 0.13) 1px, transparent 1px);
  background-size: clamp(42px, 5vw, 72px) clamp(42px, 5vw, 72px);
  mask-image: linear-gradient(90deg, #000 0 15%, transparent 56%, #000 100%);
}

.screen-fx__noise {
  opacity: 0.14;
  mix-blend-mode: screen;
  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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
}

.screen-fx__scan {
  top: -24vh;
  bottom: auto;
  height: 18vh;
  opacity: 0.11;
  background: linear-gradient(180deg, transparent, rgba(71, 207, 255, 0.2), rgba(246, 252, 255, 0.64), transparent);
  mix-blend-mode: screen;
  animation: scan-screen 9s linear infinite;
}

.edge-code {
  position: fixed;
  z-index: 8;
  top: 50%;
  color: rgba(71, 207, 255, 0.44);
  font: 7px/1 var(--mono);
  letter-spacing: 0.18em;
  white-space: nowrap;
  pointer-events: none;
}

.edge-code--left {
  left: 8px;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.edge-code--right {
  right: 8px;
  transform: translate(50%, -50%) rotate(90deg);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: var(--pad-x);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 70px;
  height: 5px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(71, 207, 255, 0.7);
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
}

.brand__mark {
  position: relative;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  border: 1px solid var(--paper);
  background: var(--cyan);
  box-shadow: 0 0 8px var(--paper), 0 0 24px rgba(71, 207, 255, 0.76);
  transform: rotate(45deg);
}

.brand__mark i {
  position: absolute;
  inset: 6px;
  background: var(--ink-soft);
}

.brand__name {
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand__file {
  padding: 4px 6px;
  color: var(--ink);
  background: var(--paper);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.channel-status {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 5px 9px;
  font: 8px/1 var(--mono);
  letter-spacing: 0.12em;
  text-align: right;
}

.channel-status__light {
  width: 8px;
  height: 8px;
  grid-row: 1 / 3;
  background: var(--ultraviolet);
  box-shadow: 0 0 12px rgba(134, 239, 255, 0.74);
  animation: channel-breathe 3.2s ease-in-out infinite;
}

.channel-status strong {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 400;
}

.launch {
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 128px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(28px, 5vh, 62px) var(--pad-x) clamp(90px, 11vh, 126px);
}

.launch__copy {
  position: relative;
  z-index: 4;
  width: min(760px, 100%);
}

.terminal-label {
  display: flex;
  width: min(520px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(22px, 3.5vh, 44px);
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(71, 207, 255, 0.48);
  color: var(--cyan);
  font: 8px/1 var(--mono);
  letter-spacing: 0.14em;
}

.terminal-label span:last-child {
  color: rgba(246, 252, 255, 0.42);
  text-align: right;
}

.launch__kicker {
  margin: 0 0 14px;
  color: var(--ultraviolet);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.18em;
}

.launch__kicker span {
  color: var(--cyan);
}

h1 {
  position: relative;
  margin: 0;
  font-size: clamp(74px, 10.1vw, 176px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.082em;
  text-transform: uppercase;
}

h1 > span {
  display: block;
}

.glitch-word {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: lowercase;
  text-shadow: -2px 0 var(--cyan-deep), 2px 0 var(--cyan), 0 0 24px rgba(71, 207, 255, 0.38);
}

.glitch-word::before,
.glitch-word::after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  content: attr(data-text);
  pointer-events: none;
}

.glitch-word::before {
  color: var(--cyan);
  clip-path: inset(10% 0 72% 0);
  transform: translateX(-4px);
  animation: glitch-one 3.6s steps(1, end) infinite;
}

.glitch-word::after {
  color: var(--paper);
  clip-path: inset(70% 0 8% 0);
  transform: translateX(4px);
  animation: glitch-two 4.2s steps(1, end) infinite;
}

.launch__intro {
  width: min(570px, 100%);
  margin: clamp(23px, 3vh, 36px) 0 0;
  color: rgba(246, 252, 255, 0.72);
  font: 11px/1.75 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-form {
  position: relative;
  width: min(650px, 100%);
  margin-top: clamp(26px, 4vh, 46px);
  padding: 15px;
  border: 1px solid rgba(71, 207, 255, 0.62);
  background:
    linear-gradient(90deg, rgba(71, 207, 255, 0.07), transparent 48%),
    rgba(2, 8, 13, 0.84);
  box-shadow: 8px 8px 0 rgba(17, 141, 189, 0.2), 0 0 32px rgba(71, 207, 255, 0.08);
  backdrop-filter: blur(12px);
}

.signal-form::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 92px;
  height: 4px;
  content: "";
  background: var(--paper);
  box-shadow: 0 0 14px rgba(246, 252, 255, 0.74);
}

.signal-form__heading,
.signal-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font: 7px/1.4 var(--mono);
  letter-spacing: 0.12em;
}

.signal-form__heading {
  margin-bottom: 10px;
}

.signal-form__heading label {
  color: var(--paper);
  font-weight: 700;
}

.signal-form__heading span {
  color: var(--cyan);
  text-align: right;
}

.signal-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 58px;
  border: 1px solid var(--paper);
  background: var(--paper);
}

.signal-form input[type="email"] {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 0 17px;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: 700 13px/1 var(--mono);
}

.signal-form input[type="email"]::placeholder {
  color: rgba(2, 8, 13, 0.44);
}

.signal-form input[type="email"]:focus-visible {
  box-shadow: inset 0 0 0 3px var(--cyan-deep);
}

.signal-form input[type="email"][aria-invalid="true"] {
  box-shadow: inset 0 0 0 3px var(--ultraviolet);
}

.signal-form button {
  position: relative;
  display: inline-flex;
  min-width: 170px;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 17px;
  border: 0;
  border-left: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--cyan);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.signal-form button:hover:not(:disabled) {
  color: var(--paper);
  background: var(--cyan-deep);
  box-shadow: inset 0 -4px 0 var(--cyan);
}

.signal-form button:focus-visible {
  z-index: 1;
  outline: 3px solid var(--ultraviolet);
  outline-offset: 3px;
}

.signal-form button:disabled {
  cursor: not-allowed;
}

.button-arrow {
  font-size: 17px;
}

.signal-form__footer {
  align-items: flex-start;
  margin-top: 11px;
  color: rgba(246, 252, 255, 0.46);
}

.signal-form__footer p {
  margin: 0;
}

.signal-form__status {
  max-width: 58%;
  color: var(--cyan);
  text-align: right;
}

.signal-form[data-state="submitting"] button {
  color: var(--paper);
  background: var(--cyan-deep);
  animation: submit-pulse 900ms steps(2, end) infinite;
}

.signal-form[data-state="success"] {
  border-color: var(--paper);
  box-shadow: 8px 8px 0 rgba(71, 207, 255, 0.42), 0 0 36px rgba(71, 207, 255, 0.17);
}

.signal-form[data-state="success"] button {
  color: var(--ink);
  background: var(--paper);
}

.signal-form[data-state="success"] .signal-form__status {
  color: var(--paper);
}

.signal-form[data-state="error"],
.signal-form[data-state="429"],
.signal-form[data-state="503"] {
  border-color: var(--ultraviolet);
  box-shadow: 8px 8px 0 rgba(24, 63, 190, 0.32);
}

.signal-form[data-state="error"] .signal-form__status,
.signal-form[data-state="429"] .signal-form__status,
.signal-form[data-state="503"] .signal-form__status {
  color: var(--ultraviolet);
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscript-note {
  width: min(650px, 100%);
  margin: 12px 0 0;
  color: var(--ultraviolet);
  font: 8px/1.5 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch__art {
  position: relative;
  z-index: 2;
  width: min(50vw, 720px);
  aspect-ratio: 0.9;
  justify-self: end;
  align-self: center;
}

.art-halo {
  position: absolute;
  z-index: 0;
  inset: 12% 4% 7% 11%;
  border: 1px solid rgba(71, 207, 255, 0.58);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, transparent 0 11%, rgba(71, 207, 255, 0.11) 11.4% 11.7%),
    radial-gradient(circle, rgba(71, 207, 255, 0.18), transparent 63%);
  box-shadow: inset 0 0 56px rgba(71, 207, 255, 0.12), 0 0 56px rgba(71, 207, 255, 0.08);
  animation: halo-drift 10s ease-in-out infinite alternate;
}

.art-halo::before,
.art-halo::after {
  position: absolute;
  content: "";
  background: var(--cyan);
  opacity: 0.4;
}

.art-halo::before {
  top: 50%;
  left: -9%;
  width: 118%;
  height: 1px;
}

.art-halo::after {
  top: -9%;
  left: 50%;
  width: 1px;
  height: 118%;
}

.art-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.58));
}

.art-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 60%, rgba(71, 207, 255, 0.1)),
    linear-gradient(0deg, var(--ink) 0, transparent 22%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.art-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.82) contrast(1.08) drop-shadow(-10px 0 0 rgba(17, 141, 189, 0.2));
  transform: scale(1.07);
}

.subject-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 5px;
  min-width: 112px;
  padding: 9px 11px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: rgba(2, 8, 13, 0.85);
  box-shadow: 5px 5px 0 rgba(17, 141, 189, 0.32);
  font: 7px/1 var(--mono);
  letter-spacing: 0.12em;
  backdrop-filter: blur(7px);
}

.subject-card strong {
  color: var(--paper);
  font-size: 11px;
}

.subject-card--top {
  top: 11%;
  left: 1%;
  transform: rotate(-2deg);
}

.subject-card--side {
  right: 0;
  bottom: 21%;
  border-color: var(--paper);
  color: var(--ultraviolet);
  transform: rotate(2deg);
}

.target-corner {
  position: absolute;
  z-index: 3;
  width: 52px;
  height: 52px;
  pointer-events: none;
}

.target-corner--one {
  top: 2%;
  right: 6%;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.target-corner--two {
  bottom: 5%;
  left: 8%;
  border-bottom: 2px solid var(--paper);
  border-left: 2px solid var(--paper);
}

.launch__readout {
  position: absolute;
  right: var(--pad-x);
  bottom: 46px;
  left: var(--pad-x);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.launch__readout div {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px;
  border-right: 1px solid var(--line);
  font: 7px/1 var(--mono);
  letter-spacing: 0.13em;
}

.launch__readout div:first-child {
  border-left: 1px solid var(--line);
}

.launch__readout span {
  color: rgba(246, 252, 255, 0.42);
}

.launch__readout strong {
  color: var(--cyan);
  font-size: 8px;
  font-weight: 400;
}

.site-footer {
  position: fixed;
  z-index: 10;
  right: var(--pad-x);
  bottom: 12px;
  left: var(--pad-x);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(246, 252, 255, 0.34);
  font: 6px/1 var(--mono);
  letter-spacing: 0.12em;
  pointer-events: none;
}

@keyframes scan-screen {
  from { transform: translateY(-8vh); }
  to { transform: translateY(132vh); }
}

@keyframes glitch-one {
  0%, 91%, 100% { transform: translateX(-4px); opacity: 0; }
  92% { transform: translateX(7px); opacity: 0.8; }
  94% { transform: translateX(-8px); opacity: 0.62; }
  96% { transform: translateX(3px); opacity: 0; }
}

@keyframes glitch-two {
  0%, 83%, 100% { transform: translateX(4px); opacity: 0; }
  84% { transform: translateX(-6px); opacity: 0.76; }
  87% { transform: translateX(8px); opacity: 0.54; }
  89% { transform: translateX(-2px); opacity: 0; }
}

@keyframes halo-drift {
  from { transform: rotate(-2deg) scale(0.98); }
  to { transform: rotate(3deg) scale(1.02); }
}

@keyframes submit-pulse {
  0%, 49% { box-shadow: inset 0 -4px 0 var(--cyan); }
  50%, 100% { box-shadow: inset 0 -4px 0 var(--paper); }
}

@media (max-width: 1050px) {
  .launch {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.72fr);
  }

  h1 {
    font-size: clamp(74px, 11vw, 132px);
  }

  .launch__art {
    width: min(46vw, 590px);
  }
}

@media (max-width: 780px) {
  body::before {
    background: linear-gradient(0deg, rgba(2, 8, 13, 0.96) 0 26%, rgba(2, 8, 13, 0.6) 64%, rgba(2, 8, 13, 0.88));
  }

  .edge-code {
    display: none;
  }

  .site-header {
    min-height: 72px;
  }

  .brand__file {
    display: none;
  }

  .launch {
    display: block;
    min-height: calc(100svh - 72px);
    padding-top: clamp(26px, 4vh, 42px);
    padding-bottom: 112px;
  }

  .launch__copy {
    width: 100%;
  }

  .terminal-label {
    margin-bottom: 26px;
  }

  h1 {
    font-size: clamp(68px, 20.5vw, 126px);
  }

  .launch__intro {
    width: min(520px, 94%);
  }

  .signal-form {
    width: min(620px, 100%);
  }

  .launch__art {
    position: absolute;
    z-index: -1;
    top: 4%;
    right: -19%;
    width: min(86vw, 610px);
    opacity: 0.52;
  }

  .subject-card--side,
  .target-corner {
    display: none;
  }

  .launch__readout {
    bottom: 48px;
  }
}

@media (max-width: 520px) {
  :root {
    --pad-x: 16px;
  }

  .channel-status {
    grid-template-columns: auto auto;
    font-size: 6px;
  }

  .channel-status strong {
    font-size: 7px;
  }

  .launch__kicker {
    font-size: 7px;
  }

  h1 {
    font-size: clamp(62px, 21vw, 98px);
  }

  .launch__intro {
    font-size: 9px;
    line-height: 1.65;
  }

  .signal-form {
    padding: 11px;
    box-shadow: 5px 5px 0 rgba(17, 141, 189, 0.2);
  }

  .signal-form__heading span {
    display: none;
  }

  .signal-form__row {
    grid-template-columns: 1fr;
    background: transparent;
    border: 0;
  }

  .signal-form input[type="email"] {
    border: 1px solid var(--paper);
    background: var(--paper);
  }

  .signal-form button {
    width: 100%;
    min-width: 0;
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--paper);
    border-right: 1px solid var(--paper);
    border-bottom: 1px solid var(--paper);
  }

  .signal-form__footer {
    display: block;
  }

  .signal-form__status {
    max-width: none;
    margin-top: 7px !important;
    text-align: left;
  }

  .launch__art {
    top: 10%;
    right: -34%;
    width: 118vw;
    opacity: 0.36;
  }

  .subject-card {
    display: none;
  }

  .launch__readout div {
    display: grid;
    justify-content: start;
    gap: 5px;
    padding: 9px 8px;
  }

  .site-footer {
    display: none;
  }
}

@media (max-height: 720px) and (min-width: 781px) {
  .site-header {
    min-height: 72px;
  }

  .launch {
    min-height: calc(100svh - 100px);
    padding-top: 22px;
    padding-bottom: 82px;
  }

  .terminal-label {
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(68px, 9vw, 124px);
  }

  .launch__intro {
    margin-top: 20px;
  }

  .signal-form {
    margin-top: 22px;
  }

  .launch__readout {
    bottom: 34px;
  }
}

@media (hover: none) {
  .signal-form button:hover:not(:disabled) {
    color: var(--ink);
    background: var(--cyan);
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .screen-fx__scan,
  .glitch-word::before,
  .glitch-word::after {
    display: none;
  }
}

/* ENTRY GATE ---------------------------------------------------------- */
.entry-gate {
  display: none;
}

html.has-entry-gate {
  overflow: hidden;
  overscroll-behavior: none;
  background: #02080d;
}

html.has-entry-gate body {
  overflow: hidden;
  overscroll-behavior: none;
  background: #02080d;
}

html.has-entry-gate body::before {
  opacity: 0;
}

html.has-entry-gate .screen-fx,
html.has-entry-gate .edge-code,
html.has-entry-gate .site-header,
html.has-entry-gate .launch,
html.has-entry-gate .site-footer {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

html.has-entry-gate.entry-reveal body {
  background: var(--cold-field), var(--ink);
}

html.has-entry-gate.entry-reveal body::before {
  opacity: 1;
}

html.has-entry-gate.entry-reveal .screen-fx,
html.has-entry-gate.entry-reveal .edge-code,
html.has-entry-gate.entry-reveal .site-header,
html.has-entry-gate.entry-reveal .launch,
html.has-entry-gate.entry-reveal .site-footer {
  visibility: visible;
  opacity: 1;
}

html.has-entry-gate .entry-gate {
  --entry-art-position: 50% 42%;
  --entry-scale-start: 1.28;
  --entry-scale-end: 1.08;
  position: fixed;
  z-index: 10000;
  inset: 0;
  isolation: isolate;
  display: grid;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 100svh;
  min-height: 100dvh;
  place-items: center;
  overflow: hidden;
  padding:
    max(20px, env(safe-area-inset-top))
    max(20px, env(safe-area-inset-right))
    max(20px, env(safe-area-inset-bottom))
    max(20px, env(safe-area-inset-left));
  color: var(--paper);
  background: transparent;
  overscroll-behavior: none;
}

.entry-gate__curtain {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #02080d;
  pointer-events: none;
}

.entry-gate__idle {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
}

.entry-gate__button {
  display: inline-grid;
  min-width: min(312px, calc(100vw - 40px));
  min-height: 56px;
  place-items: center;
  padding: 15px 24px;
  border: 1px solid var(--cyan);
  border-radius: 0;
  outline: 0;
  color: var(--paper);
  background: #02080d;
  box-shadow:
    0 0 0 1px rgba(2, 8, 13, 0.9),
    0 0 24px rgba(71, 207, 255, 0.12),
    inset 0 0 18px rgba(71, 207, 255, 0.04);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.14em;
  text-align: center;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    border-color 140ms ease,
    color 140ms ease,
    box-shadow 140ms ease;
}

.entry-gate__button:hover:not(:disabled) {
  border-color: var(--ultraviolet);
  color: var(--ultraviolet);
  box-shadow:
    0 0 0 1px rgba(2, 8, 13, 0.9),
    0 0 26px rgba(155, 124, 255, 0.18),
    inset 0 0 18px rgba(24, 63, 190, 0.12);
}

.entry-gate__button:focus-visible {
  border-color: var(--paper);
  outline: 3px solid var(--ultraviolet);
  outline-offset: 5px;
}

.entry-gate__button:disabled {
  cursor: default;
}

.entry-gate__scene,
.entry-gate__visuals,
.entry-gate__art,
.entry-gate__impact {
  position: absolute;
  inset: 0;
}

.entry-gate__scene {
  z-index: 2;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}

.entry-gate__visuals {
  z-index: 0;
}

.entry-gate__art {
  overflow: hidden;
  background: #02080d;
}

.entry-gate__art img {
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: var(--entry-art-position);
  transform: scale(var(--entry-scale-start));
  transform-origin: 50% 42%;
  will-change: transform, opacity;
}

.entry-gate__impact {
  z-index: 2;
  opacity: 0;
  background: radial-gradient(
    circle at 50% 47%,
    rgba(246, 252, 255, 0.82) 0 1px,
    rgba(71, 207, 255, 0.54) 2%,
    rgba(71, 207, 255, 0.14) 16%,
    transparent 43%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.entry-gate__tear {
  position: absolute;
  z-index: 3;
  right: -2%;
  left: -2%;
  display: block;
  height: 3px;
  opacity: 0;
  background-image: url("art%20main.png");
  background-repeat: no-repeat;
  background-position: var(--entry-art-position);
  background-size: 100vw 100dvh;
  box-shadow: 0 0 5px rgba(71, 207, 255, 0.62);
  pointer-events: none;
}

.entry-gate__tear--one {
  top: 39%;
  height: 3px;
}

.entry-gate__tear--two {
  top: 63%;
  height: 4px;
}

.entry-gate__copy {
  position: absolute;
  z-index: 4;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(46px, calc(env(safe-area-inset-bottom) + 24px));
  left: max(20px, env(safe-area-inset-left));
  opacity: 0;
  text-align: center;
  pointer-events: none;
}

.entry-gate__copy p {
  margin: 0 0 12px;
  color: var(--cyan);
  font: 700 clamp(7px, 0.8vw, 10px)/1.2 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.entry-gate__copy h2 {
  margin: 0;
  color: var(--paper);
  font: 900 clamp(46px, 8.4vw, 144px)/0.82 var(--sans);
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-shadow: -2px 0 var(--cyan-deep), 2px 0 var(--cyan);
}

.entry-gate__wipe {
  position: absolute;
  z-index: 6;
  top: 0;
  bottom: 0;
  left: 0;
  width: clamp(12px, 2vw, 28px);
  opacity: 0;
  background: var(--cyan);
  box-shadow:
    0 0 12px var(--paper),
    0 0 34px rgba(71, 207, 255, 0.9);
  transform: translateX(-220%);
  pointer-events: none;
}

html.has-entry-gate[data-entry-state="impact"] .entry-gate__idle,
html.has-entry-gate[data-entry-state="exit"] .entry-gate__idle {
  visibility: hidden;
  opacity: 0;
}

html.has-entry-gate[data-entry-state="impact"] .entry-gate__scene,
html.has-entry-gate[data-entry-state="exit"] .entry-gate__scene {
  visibility: visible;
}

html.has-entry-gate[data-entry-state="impact"] .entry-gate__art img {
  animation: entry-art-impact 560ms cubic-bezier(0.12, 0.82, 0.18, 1) 120ms both;
}

html.has-entry-gate[data-entry-state="impact"] .entry-gate__impact {
  animation: entry-radial-impact 360ms ease-out 120ms forwards;
}

html.has-entry-gate[data-entry-state="impact"] .entry-gate__copy {
  animation: entry-copy-show 1ms steps(1, end) 180ms forwards;
}

html.has-entry-gate[data-entry-state="impact"] .entry-gate__tear--one {
  animation: entry-tear-one 112ms steps(2, end) 286ms forwards;
}

html.has-entry-gate[data-entry-state="impact"] .entry-gate__tear--two {
  animation: entry-tear-two 104ms steps(2, end) 476ms forwards;
}

html.has-entry-gate[data-entry-state="exit"] .entry-gate__art img {
  opacity: 1;
  transform: scale(var(--entry-scale-end));
}

html.has-entry-gate[data-entry-state="exit"] .entry-gate__copy {
  opacity: 1;
}

html.has-entry-gate[data-entry-state="exit"] .entry-gate__scene {
  animation: entry-scene-collapse 160ms cubic-bezier(0.72, 0, 1, 0.58) forwards;
}

html.has-entry-gate.entry-wiping .entry-gate__scene {
  visibility: hidden;
  opacity: 0;
}

html.has-entry-gate.entry-wiping .entry-gate__curtain {
  animation: entry-curtain-reveal 240ms cubic-bezier(0.7, 0, 0.25, 1) forwards;
}

html.has-entry-gate.entry-wiping .entry-gate__wipe {
  animation: entry-cyan-wipe 240ms cubic-bezier(0.7, 0, 0.25, 1) forwards;
}

#launch-title:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 8px;
}

@keyframes entry-art-impact {
  0% {
    opacity: 1;
    transform: scale(var(--entry-scale-start));
  }
  100% {
    opacity: 1;
    transform: scale(var(--entry-scale-end));
  }
}

@keyframes entry-radial-impact {
  0% {
    opacity: 0.86;
    transform: scale(0.18);
  }
  72% {
    opacity: 0.2;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes entry-copy-show {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes entry-tear-one {
  0%, 100% { opacity: 0; transform: translateX(0); }
  25%, 70% { opacity: 0.82; transform: translateX(4px); }
}

@keyframes entry-tear-two {
  0%, 100% { opacity: 0; transform: translateX(0); }
  25%, 70% { opacity: 0.72; transform: translateX(-4px); }
}

@keyframes entry-scene-collapse {
  from { clip-path: inset(0 0 0 0); }
  to { clip-path: inset(49.7% 0 49.7% 0); }
}

@keyframes entry-curtain-reveal {
  from { clip-path: inset(0 0 0 0); }
  to { clip-path: inset(0 0 0 100%); }
}

@keyframes entry-cyan-wipe {
  0% { opacity: 1; transform: translateX(-220%); }
  8%, 92% { opacity: 1; }
  100% { opacity: 0; transform: translateX(calc(100vw + 220%)); }
}

@keyframes entry-reduced-fade {
  from { opacity: 1; }
  to { opacity: 0; }
}

@media (max-width: 600px) {
  html.has-entry-gate .entry-gate {
    --entry-art-position: 50% 34%;
    --entry-scale-start: 1.18;
    --entry-scale-end: 1.04;
  }

  .entry-gate__art img {
    transform-origin: 50% 34%;
  }

  .entry-gate__copy {
    bottom: max(34px, calc(env(safe-area-inset-bottom) + 20px));
  }

  .entry-gate__copy p {
    margin-bottom: 9px;
    font-size: 7px;
  }

  .entry-gate__copy h2 {
    font-size: clamp(42px, 17vw, 78px);
    line-height: 0.86;
  }
}

@media (hover: none) {
  .entry-gate__button:hover:not(:disabled) {
    border-color: var(--cyan);
    color: var(--paper);
    box-shadow:
      0 0 0 1px rgba(2, 8, 13, 0.9),
      0 0 24px rgba(71, 207, 255, 0.12),
      inset 0 0 18px rgba(71, 207, 255, 0.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.has-entry-gate[data-entry-state="impact"] .entry-gate__art img {
    opacity: 1;
    transform: scale(1);
    animation: none !important;
  }

  html.has-entry-gate[data-entry-state="impact"] .entry-gate__copy {
    opacity: 1;
    animation: none !important;
  }

  .entry-gate__impact,
  .entry-gate__tear {
    display: none !important;
  }

  html.has-entry-gate[data-entry-state="exit"] .entry-gate__scene {
    clip-path: none;
    animation: none !important;
  }

  html.has-entry-gate[data-entry-state="exit"] .entry-gate {
    animation: entry-reduced-fade 120ms linear forwards !important;
  }

  html.has-entry-gate.entry-wiping .entry-gate__curtain,
  html.has-entry-gate.entry-wiping .entry-gate__wipe {
    animation: none !important;
  }
}

/* COLD PSYCHEDELIC PASS ----------------------------------------------- */
.screen-fx {
  z-index: 1;
  overflow: hidden;
}

.screen-fx::before {
  position: absolute;
  inset: -24%;
  content: "";
  opacity: 0.11;
  background:
    radial-gradient(circle at 34% 44%, rgba(134, 239, 255, 0.2), transparent 22%),
    radial-gradient(circle at 72% 56%, rgba(24, 63, 190, 0.2), transparent 28%),
    conic-gradient(
      from 210deg at 66% 46%,
      transparent 0 22%,
      rgba(71, 207, 255, 0.13) 31%,
      transparent 40% 68%,
      rgba(155, 124, 255, 0.14) 77%,
      transparent 86%
    );
  filter: blur(56px);
  mix-blend-mode: screen;
  animation: cold-fog-drift 32s ease-in-out infinite alternate;
}

.screen-fx__grid {
  opacity: 0.3;
  background-image:
    repeating-radial-gradient(
      circle at 73% 39%,
      rgba(134, 239, 255, 0.11) 0 1px,
      transparent 1px 16px
    ),
    linear-gradient(72deg, rgba(71, 207, 255, 0.11) 1px, transparent 1px),
    linear-gradient(-18deg, rgba(155, 124, 255, 0.09) 1px, transparent 1px);
  background-position: 0 0, 0 0, 14px -8px;
  background-size: 32px 32px, 68px 68px, 94px 94px;
  mix-blend-mode: screen;
  mask-image: radial-gradient(
    circle at 68% 42%,
    #000 0 20%,
    rgba(0, 0, 0, 0.62) 44%,
    transparent 82%
  );
}

.screen-fx__noise {
  opacity: 0.11;
}

.screen-fx__scan {
  opacity: 0.08;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(155, 124, 255, 0.1),
    rgba(71, 207, 255, 0.18),
    rgba(246, 252, 255, 0.48),
    transparent
  );
}

.channel-status__light {
  background: linear-gradient(135deg, var(--paper), var(--cyan-hot) 48%, var(--ultraviolet));
  box-shadow:
    0 0 7px rgba(246, 252, 255, 0.8),
    0 0 16px rgba(71, 207, 255, 0.64),
    0 0 26px rgba(155, 124, 255, 0.28);
}

.launch__kicker {
  color: var(--ultraviolet);
  text-shadow: 0 0 12px rgba(155, 124, 255, 0.34);
}

.glitch-word {
  text-shadow:
    -4px 1px 0 rgba(24, 63, 190, 0.74),
    3px -1px 0 rgba(134, 239, 255, 0.58),
    7px 2px 18px rgba(155, 124, 255, 0.28),
    0 0 30px rgba(71, 207, 255, 0.34);
}

.glitch-word::before {
  color: var(--cyan-hot);
  animation-duration: 7.2s;
}

.glitch-word::after {
  color: var(--ultraviolet);
  animation-duration: 8.4s;
}

.signal-form {
  border-color: rgba(134, 239, 255, 0.76);
  background:
    radial-gradient(circle at 10% 0%, rgba(134, 239, 255, 0.08), transparent 32%),
    linear-gradient(
      112deg,
      rgba(24, 63, 190, 0.13),
      rgba(2, 8, 13, 0.96) 42%,
      rgba(155, 124, 255, 0.08)
    ),
    rgba(2, 8, 13, 0.96);
  box-shadow:
    8px 8px 0 rgba(24, 63, 190, 0.28),
    -4px 0 0 rgba(155, 124, 255, 0.1),
    0 0 38px rgba(71, 207, 255, 0.12);
  backdrop-filter: blur(18px) saturate(120%);
}

.signal-form::before {
  background: var(--cyan-hot);
  box-shadow:
    0 0 10px rgba(134, 239, 255, 0.82),
    0 0 20px rgba(155, 124, 255, 0.22);
}

.signal-form input[type="email"][aria-invalid="true"] {
  box-shadow:
    inset 0 0 0 3px var(--ultraviolet),
    inset 0 0 14px rgba(24, 63, 190, 0.18);
}

.signal-form button:focus-visible {
  outline-color: var(--cyan-hot);
}

.signal-form[data-state="error"],
.signal-form[data-state="429"],
.signal-form[data-state="503"] {
  border-color: var(--ultraviolet);
  box-shadow:
    8px 8px 0 rgba(24, 63, 190, 0.32),
    0 0 30px rgba(155, 124, 255, 0.16);
}

.signal-form[data-state="error"] .signal-form__status,
.signal-form[data-state="429"] .signal-form__status,
.signal-form[data-state="503"] .signal-form__status {
  color: var(--ultraviolet);
  text-shadow: 0 0 12px rgba(155, 124, 255, 0.3);
}

.noscript-note,
.subject-card--side {
  color: var(--ultraviolet);
  text-shadow: 0 0 10px rgba(155, 124, 255, 0.3);
}

.art-halo {
  border-color: rgba(134, 239, 255, 0.62);
  background:
    repeating-radial-gradient(
      circle at center,
      transparent 0 8.5%,
      rgba(134, 239, 255, 0.13) 8.8% 9.1%,
      transparent 9.4% 15%
    ),
    conic-gradient(
      from 18deg,
      transparent 0 12%,
      rgba(24, 63, 190, 0.24) 19%,
      transparent 30% 47%,
      rgba(155, 124, 255, 0.2) 57%,
      transparent 68% 83%,
      rgba(71, 207, 255, 0.2) 91%,
      transparent
    ),
    radial-gradient(
      circle,
      rgba(71, 207, 255, 0.2),
      rgba(24, 63, 190, 0.07) 42%,
      transparent 68%
    );
  box-shadow:
    inset 0 0 70px rgba(24, 63, 190, 0.2),
    0 0 34px rgba(134, 239, 255, 0.14),
    0 0 76px rgba(155, 124, 255, 0.09);
  animation-duration: 14s;
}

.art-frame {
  isolation: isolate;
}

.art-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  opacity: 0.8;
  background: linear-gradient(
    142deg,
    var(--cyan-hot) 8%,
    var(--cyan) 34%,
    var(--deep-blue) 62%,
    var(--ultraviolet) 88%
  );
  mix-blend-mode: color;
  pointer-events: none;
  transform: translate3d(5px, -2px, 0) scale(1.07);
  transform-origin: center bottom;
  -webkit-mask: url("art%20main.png") center bottom / contain no-repeat;
  mask: url("art%20main.png") center bottom / contain no-repeat;
}

.art-frame::after {
  z-index: 2;
}

.art-frame img {
  position: relative;
  z-index: 0;
  filter:
    grayscale(1)
    contrast(1.18)
    brightness(0.92)
    drop-shadow(-12px 0 0 rgba(24, 63, 190, 0.28))
    drop-shadow(7px 0 0 rgba(71, 207, 255, 0.2));
}

.entry-gate__button {
  background:
    linear-gradient(
      112deg,
      rgba(24, 63, 190, 0.16),
      transparent 46%,
      rgba(155, 124, 255, 0.12)
    ),
    #02080d;
}

.entry-gate__button:hover:not(:disabled) {
  border-color: var(--ultraviolet);
  color: var(--cyan-hot);
  box-shadow:
    0 0 0 1px rgba(2, 8, 13, 0.9),
    0 0 18px rgba(134, 239, 255, 0.24),
    0 0 30px rgba(155, 124, 255, 0.18),
    inset 0 0 18px rgba(24, 63, 190, 0.14);
}

.entry-gate__button:focus-visible {
  outline-color: var(--cyan-hot);
}

.entry-gate__visuals {
  isolation: isolate;
}

.entry-gate__art {
  isolation: auto;
}

.entry-gate__art::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(
    138deg,
    var(--cyan-hot) 6%,
    var(--cyan) 32%,
    var(--deep-blue) 61%,
    var(--ultraviolet) 90%
  );
  mix-blend-mode: color;
  pointer-events: none;
  transform: scale(var(--entry-scale-start));
  transform-origin: 50% 42%;
  -webkit-mask: url("art%20main.png") var(--entry-art-position) / cover no-repeat;
  mask: url("art%20main.png") var(--entry-art-position) / cover no-repeat;
  will-change: transform, opacity;
}

.entry-gate__art img {
  position: relative;
  z-index: 0;
  filter:
    grayscale(1)
    contrast(1.18)
    brightness(0.92)
    drop-shadow(-10px 0 0 rgba(24, 63, 190, 0.24))
    drop-shadow(6px 0 0 rgba(71, 207, 255, 0.18));
}

.entry-gate__impact {
  background: radial-gradient(
    circle at 50% 47%,
    rgba(246, 252, 255, 0.84) 0 1px,
    rgba(134, 239, 255, 0.58) 2%,
    rgba(71, 207, 255, 0.2) 13%,
    rgba(155, 124, 255, 0.12) 23%,
    rgba(24, 63, 190, 0.08) 34%,
    transparent 46%
  );
}

.entry-gate__copy h2 {
  text-shadow:
    -4px 0 var(--deep-blue),
    3px 0 var(--cyan-hot),
    7px 2px 20px rgba(155, 124, 255, 0.3),
    0 0 28px rgba(71, 207, 255, 0.28);
}

html.has-entry-gate[data-entry-state="impact"] .entry-gate__art::after {
  animation: entry-overlay-impact 560ms cubic-bezier(0.12, 0.82, 0.18, 1) 120ms both;
}

html.has-entry-gate[data-entry-state="exit"] .entry-gate__art::after {
  opacity: 0.78;
  transform: scale(var(--entry-scale-end));
}

@keyframes cold-fog-drift {
  from { transform: translate3d(-2%, -1%, 0) rotate(-5deg) scale(0.98); }
  to { transform: translate3d(2%, 1%, 0) rotate(7deg) scale(1.04); }
}

@keyframes channel-breathe {
  0%, 100% {
    opacity: 0.58;
    transform: scale(0.88);
    box-shadow:
      0 0 5px rgba(246, 252, 255, 0.62),
      0 0 12px rgba(71, 207, 255, 0.42),
      0 0 18px rgba(155, 124, 255, 0.18);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
    box-shadow:
      0 0 9px rgba(246, 252, 255, 0.88),
      0 0 20px rgba(71, 207, 255, 0.7),
      0 0 30px rgba(155, 124, 255, 0.3);
  }
}

@keyframes glitch-one {
  0%, 94%, 100% { transform: translateX(-4px); opacity: 0; }
  95% { transform: translateX(7px); opacity: 0.55; }
  96.5% { transform: translateX(-8px); opacity: 0.42; }
  98% { transform: translateX(3px); opacity: 0; }
}

@keyframes glitch-two {
  0%, 91%, 100% { transform: translateX(4px); opacity: 0; }
  92% { transform: translateX(-6px); opacity: 0.5; }
  94.5% { transform: translateX(8px); opacity: 0.4; }
  97% { transform: translateX(-2px); opacity: 0; }
}

@keyframes halo-drift {
  from { transform: rotate(-3deg) scale(0.98); }
  to { transform: rotate(4deg) scale(1.025); }
}

@keyframes entry-overlay-impact {
  0% {
    opacity: 0.82;
    transform: scale(var(--entry-scale-start));
  }
  100% {
    opacity: 0.78;
    transform: scale(var(--entry-scale-end));
  }
}

@media (max-width: 780px) {
  .art-frame::before {
    opacity: 0.62;
    transform: translate3d(3px, -1px, 0) scale(1.07);
  }
}

@media (max-width: 520px) {
  .art-frame::before {
    opacity: 0.52;
    transform: translate3d(2px, 0, 0) scale(1.07);
  }
}

@media (max-width: 600px) {
  .entry-gate__art::after {
    transform-origin: 50% 34%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .screen-fx::before {
    animation: none !important;
    transform: none;
  }

  html.has-entry-gate[data-entry-state="impact"] .entry-gate__art::after {
    opacity: 0.78;
    transform: scale(1);
    animation: none !important;
  }

  html.has-entry-gate[data-entry-state="exit"] .entry-gate__art::after {
    opacity: 0.78;
    transform: scale(1);
  }
}
