.legacy-market-stage[hidden] { display: none !important; }

.neural-stage {
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100% - 40px));
  min-height: clamp(480px, 62svh, 660px);
  margin: clamp(24px, 4vw, 58px) auto;
  overflow: hidden;
  background: transparent;
}

.neural-stage #neural-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.neural-stage .neural-eye {
  position: absolute;
  top: 50%;
  right: clamp(12px, 4vw, 56px);
  z-index: 2;
  display: block;
  width: min(43%, 470px);
  height: auto;
  max-height: 72%;
  opacity: 1;
  object-fit: contain;
  pointer-events: none;
  transform: translateY(-50%);
  filter: contrast(1.03) saturate(.98);
}

.neural-stage .neural-eye-copy {
  position: absolute;
  top: calc(50% + min(19vw, 206px));
  right: clamp(12px, 4vw, 56px);
  z-index: 3;
  width: min(43%, 470px);
  text-align: center;
}

.neural-stage .neural-eye-title,
.neural-stage .neural-eye-subtitle {
  display: block;
  min-height: 1em;
}

.neural-stage .neural-eye-title {
  color: #142f3c;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 560;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.neural-stage .neural-eye-subtitle {
  margin-top: 9px;
  color: rgba(31, 52, 61, .58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
}

.neural-stage .neural-eye-title::after,
.neural-stage .neural-eye-subtitle::after {
  display: inline-block;
  width: 1px;
  height: .9em;
  margin-left: 4px;
  background: rgba(0, 142, 190, .72);
  content: "";
  opacity: 0;
  vertical-align: -.08em;
}

.neural-stage .neural-eye-title.is-typing::after,
.neural-stage .neural-eye-subtitle.is-typing::after {
  opacity: 1;
  animation: neural-label-caret .7s steps(1) infinite;
}

.neural-stage .neural-eye-subtitle.is-complete::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: #1598c9;
  box-shadow: 0 0 0 5px rgba(21, 152, 201, .09);
  content: "";
  vertical-align: .08em;
}

@keyframes neural-label-caret {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@media (max-width: 700px) {
  .neural-stage {
    width: calc(100% - 20px);
    min-height: 320px;
    margin: 12px auto 24px;
  }

  .neural-stage .neural-eye {
    right: -2%;
    width: 44%;
    max-height: 64%;
  }

  .neural-stage .neural-eye-copy {
    top: calc(50% + 82px);
    right: -2%;
    width: 44%;
  }

  .neural-stage .neural-eye-title { font-size: 13px; }
  .neural-stage .neural-eye-subtitle { margin-top: 5px; font-size: 7px; letter-spacing: .09em; }
}
