.registry-shell {
  max-width: 980px;
}

.registry-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
   text-align: center;
  display: grid;
  justify-items: center;
}
.registry-header .lede {
  max-width: 760px;
}
.hero-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 1rem 0 1.5rem;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(255, 0, 140, 0.12))
    drop-shadow(0 0 24px rgba(0, 255, 255, 0.08));
  opacity: 0.9;
}

.registry-header h1 {
  font-size: clamp(2rem, 6vw, 4.4rem);
}

.lede {
  max-width: 680px;
  font-size: 1.15rem;
  color: var(--muted);
}

.registry-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.025);
}

.registry-status div {
  padding: 1rem;
  border-right: 1px solid var(--border);
}
.compact-logo {
  max-width: 260px;
  width: 100%;
  margin: 1rem auto 2rem;
}
.registry-status div:last-child {
  border-right: 0;
}

.registry-status span,
.registry-table article > span {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.registry-status strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 2rem;
}

.registry-table {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.registry-table article {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.registry-table article:last-child {
  border-bottom: 0;
}

.registry-table h2 {
  margin: 0.8rem 0 0.5rem;
}

.registry-table p {
  color: var(--muted);
  max-width: 680px;
}
.registry-status,
.registry-table {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.registry-table article {
  text-align: left;
}
@media (max-width: 700px) {
  .registry-status {
    grid-template-columns: 1fr;
  }

  .registry-status div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .registry-status div:last-child {
    border-bottom: 0;
  }
}