/* Hero / blueprint area */

.talos-hero {
  min-height: 100vh;
  border-bottom: 1px solid var(--talos-border);
  display: flex;
  flex-direction: column;
}

.talos-hero__content {
  padding-top: 112px;
  padding-bottom: 112px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Keep blueprint responsive without overflow */
.talos-blueprint {
  width: 100%;
  height: 480px;
  background: #FBFBFB;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  position: relative;
  overflow: hidden;
}

.talos-blueprint__axes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#talos-drone {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.drone-callout {
  position: absolute;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
  opacity: 0.9;
  pointer-events: none;
  z-index: 3;
  color: var(--talos-maroon);
}

.talos-label {
  animation: talos-label 5s ease-in-out infinite;
  z-index: 3;
}

@media (max-width: 640px) {
  /* HUD labels overlap on narrow screens */
  .drone-callout {
    display: none;
  }
  .talos-blueprint {
    height: 380px;
  }
}

