:root {
  color-scheme: light dark;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(59, 130, 246, 0.18), transparent 35%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: #e5e7eb;
}

.shell {
  width: min(680px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.hero {
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: #93c5fd;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.02;
}

.hero p {
  max-width: 56ch;
  margin: 0.9rem 0 0;
  color: #cbd5e1;
  line-height: 1.55;
}

.card {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.35);
  display: grid;
  gap: 1rem;
}

.latest {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.25rem;
}

.latest span,
dt {
  color: #94a3b8;
  font-size: 0.9rem;
}

.latest strong,
dd {
  margin: 0;
  font-size: 1rem;
  color: #f8fafc;
}

button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.1rem;
  font: inherit;
  font-weight: 700;
  color: #081120;
  background: linear-gradient(135deg, #93c5fd, #60a5fa);
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.details {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.details > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.details > div:first-child {
  border-top: 0;
  padding-top: 0;
}

progress {
  width: 100%;
  height: 0.75rem;
}

.status {
  min-height: 1.25em;
  margin: 0;
  color: #cbd5e1;
  line-height: 1.4;
}

@media (max-width: 520px) {
  .latest,
  .details > div {
    flex-direction: column;
    align-items: flex-start;
  }

  .card {
    padding: 1rem;
  }
}
