* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, Arial, sans-serif;
  background: #d9d9d9;
  color: #111111;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: min(100%, 760px);
  padding: 64px 32px;
  text-align: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #555555;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.description {
  max-width: 560px;
  margin: 28px auto 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  color: #3f3f3f;
}

.divider {
  width: 72px;
  height: 1px;
  margin: 36px auto;
  background: rgba(17, 17, 17, 0.25);
}

.soon {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1c1c1c;
}

.contact {
  margin: 24px 0 0;
  font-size: 14px;
  color: #666666;
}

.contact a {
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 640px) {
  .card {
    padding: 48px 22px;
    border-radius: 22px;
  }

  .eyebrow {
    letter-spacing: 0.3em;
  }
}