.registry-page .content-inner {
  padding-top: 36px;
}

.registry-hero {
  min-height: min(620px, calc(100svh - 62px));
  display: grid;
  align-content: center;
}

.registry-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.7) 46%, rgba(5, 7, 10, 0.34)),
    linear-gradient(180deg, rgba(255, 122, 24, 0.08), rgba(67, 209, 122, 0.05)),
    var(--banner-image);
  background-size: cover;
  background-position: center;
}

.registry-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.registry-kicker .eyebrow {
  margin: 0;
}

.registry-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.registry-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.registry-json-link::after {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.registry-body {
  gap: var(--space-3);
}

.registry-status {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(160px, 0.55fr));
  gap: var(--space-3);
}

.registry-status > div,
.registry-empty {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--surface);
}

.registry-status > div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 1rem;
}

.registry-status span {
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.registry-status strong {
  color: var(--text);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-3);
}

.registry-empty {
  min-height: 240px;
  display: grid;
  align-content: center;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.registry-empty h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.registry-empty p:not(.eyebrow) {
  max-width: 620px;
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

@media (max-width: 760px) {
  .registry-status {
    grid-template-columns: 1fr;
  }

  .registry-hero {
    min-height: auto;
  }
}
