.hero {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

h1 {
  margin-top: 14px;
}

.intro {
  margin-top: 20px;
  max-width: none;
}

.brand-mark {
  width: min(390px, 48vw);
  justify-self: end;
}

.card {
  margin-top: 28px;
  padding: 20px;
}

#release-shell[data-release-state="ready"] {
  border-color: rgba(158, 255, 194, 0.34);
  box-shadow: 0 22px 48px rgba(7, 17, 31, 0.3);
}

#release-shell[data-release-state="error"] {
  border-color: rgba(255, 145, 145, 0.34);
}

.card h2 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--text);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.status-ready {
  color: #b8ffca;
}

.status-waiting {
  color: #ffdca8;
}

.status-error {
  color: #ffb5b5;
}

.release-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.release-meta dt {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.release-meta dd {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  word-break: break-word;
}

.cta-row {
  gap: 14px;
  margin-top: 24px;
}

.cta[hidden] {
  display: none;
}

.hint {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-mark {
    width: min(330px, 74vw);
    justify-self: start;
  }

  .panel {
    padding: 24px;
    border-radius: 24px;
  }
}
