* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7f9;
  color: #17202a;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(760px, 100%);
  background: white;
  border: 1px solid #e5e9ee;
  border-radius: 20px;
  padding: 56px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0 0 18px;
  color: #65717d;
}

h1 {
  font-size: clamp(44px, 8vw, 76px);
  line-height: 0.95;
  margin: 0 0 24px;
}

.subtitle {
  font-size: 21px;
  line-height: 1.55;
  max-width: 620px;
  color: #47515c;
}

.status {
  margin-top: 30px;
  font-weight: 600;
}

.button {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  background: #17202a;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  opacity: 0.88;
}

@media (max-width: 600px) {
  .card {
    padding: 34px 26px;
  }
}
