:root {
  color: #f7f7f2;
  background: #09090b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; background: radial-gradient(circle at 80% 10%, #2b2b30, transparent 34rem), #09090b; }
a { color: inherit; }

.placeholder {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.topbar, footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 5vw, 4rem);
}

.topbar {
  border-bottom: 1px solid #ffffff1a;
  background: #09090bcc;
  backdrop-filter: blur(16px);
}

.topbar strong { font-size: 1.1rem; }
.topbar a, footer a { color: #a7f3d0; text-decoration: none; font-weight: 800; }

.hero {
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 4rem);
}

.eyebrow {
  margin: 0;
  color: #a7f3d0;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: .9;
}

.hero > p {
  max-width: 48rem;
  margin: 0;
  color: #d4d4cc;
  font-size: 1.1rem;
  line-height: 1.7;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 72rem;
}

.status-grid div {
  min-height: 13rem;
  padding: 1.25rem;
  border: 1px solid #ffffff1f;
  border-radius: 8px;
  background: #151517;
}

.status-grid span {
  color: #a7f3d0;
  font-weight: 900;
}

.status-grid strong {
  display: block;
  margin: 1rem 0 .5rem;
  font-size: 1.2rem;
}

.status-grid p, footer p {
  color: #c8c8c0;
  line-height: 1.6;
}

footer { border-top: 1px solid #ffffff1a; }

@media (max-width: 760px) {
  .topbar, footer { flex-direction: column; }
  h1 { font-size: 3.5rem; }
  .status-grid { grid-template-columns: 1fr; }
}
