#nyx-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.52;
}

.nyx-control {
  position: relative;
}

.nyx-hero {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  margin-bottom: 20px;
}

.nyx-hero img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.nyx-kicker {
  margin: 0 0 8px;
  color: var(--nyx-green);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nyx-hero h2,
.nyx-labs h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.nyx-hero p,
.nyx-labs p {
  margin: 0;
  color: #d8fbff;
}

.nyx-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.nyx-status-grid article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--nyx-border);
  background: rgba(5, 2, 13, 0.76);
  box-shadow: inset 0 0 18px rgba(0, 255, 224, 0.06);
}

.nyx-status-grid span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 2px 8px;
  border: 1px solid rgba(0, 255, 127, 0.5);
  color: var(--nyx-green);
  font-size: 0.9rem;
}

.nyx-status-grid [data-state='pending'] span {
  border-color: rgba(255, 233, 92, 0.62);
  color: var(--nyx-yellow);
}

.nyx-status-grid [data-state='lab'] span {
  border-color: rgba(255, 43, 242, 0.6);
  color: var(--nyx-magenta);
}

.nyx-status-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.45rem;
}

.nyx-status-grid p {
  min-height: 66px;
  margin: 0 0 14px;
  color: #d8fbff;
}

.nyx-status-grid a,
.nyx-lab-links a {
  color: var(--nyx-cyan);
  text-decoration: none;
}

.nyx-status-grid a:hover,
.nyx-lab-links a:hover {
  color: #ffffff;
}

.nyx-labs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
}

.nyx-lab-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nyx-lab-links a {
  border: 1px solid var(--nyx-border);
  border-radius: 4px;
  padding: 8px 12px;
  background: rgba(0, 255, 224, 0.06);
}

@media (max-width: 860px) {
  .nyx-hero,
  .nyx-status-grid {
    grid-template-columns: 1fr;
  }

  .nyx-labs {
    align-items: flex-start;
    flex-direction: column;
  }

  .nyx-lab-links {
    justify-content: flex-start;
  }
}
