:root {
  color-scheme: dark;
  --bg: #06080d;
  --panel: rgba(13, 17, 26, .84);
  --line: rgba(232, 196, 113, .28);
  --gold: #c58f30;
  --gold-strong: #f6d98d;
  --ink: #fff8e8;
  --muted: #cfc6b3;
  --blue: #7dd3fc;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(197, 143, 48, .24), transparent 24rem),
    radial-gradient(circle at 80% 76%, rgba(125, 211, 252, .14), transparent 28rem),
    linear-gradient(180deg, #121722 0%, var(--bg) 58%, #030407 100%);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.update-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.update-panel {
  width: min(780px, 100%);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.logo-animation {
  position: relative;
  width: clamp(168px, 26vw, 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-animation lottie-player {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 34px rgba(232, 196, 113, .26));
}

.eyebrow {
  margin: 0;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  min-height: 1.92em;
  margin: 0;
  font-size: clamp(38px, 8vw, 82px);
  line-height: .96;
  letter-spacing: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

.message-exit {
  opacity: 0;
  transform: translateY(-10px);
}

.message-enter {
  animation: message-enter 520ms ease both;
}

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2.1vw, 22px);
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.status-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .04);
}

.status-row i {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

@keyframes message-enter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 560px) {
  .update-shell { padding: 20px; }
  .status-row { align-items: stretch; flex-direction: column; }
  .status-row i { width: 2px; height: 18px; margin: 0 auto; }
}
