:root {
  color: #172033;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f7f8fc;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

.hero {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgb(247 127 0 / 18%), transparent 38%),
    radial-gradient(circle at bottom right, rgb(63 94 251 / 14%), transparent 40%);
}

.card {
  width: min(100%, 680px);
  padding: clamp(32px, 7vw, 64px);
  border: 1px solid rgb(23 32 51 / 8%);
  border-radius: 24px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 24px 80px rgb(23 32 51 / 10%);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #d85b00;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.description {
  max-width: 32rem;
  margin: 28px 0 0;
  color: #5b6475;
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.8;
}

.status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 40px 0 0;
}

.status div {
  padding: 16px;
  border-radius: 14px;
  background: #f4f5f9;
}

.status dt {
  color: #7b8495;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status dd {
  margin: 6px 0 0;
  font-weight: 700;
}

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