* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

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

.soon-card {
  width: min(100%, 620px);
  text-align: center;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(54px, 12vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
  transform: scaleX(0.92);
}

p {
  margin: 0 auto 28px;
  max-width: 560px;
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.18;
}

.newsletter-form {
  display: grid;
  gap: 8px;
  max-width: 430px;
  margin: 0 auto;
  text-align: left;
}

label {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

input,
button {
  min-height: 42px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font: inherit;
}

input {
  width: 100%;
  padding: 0 12px;
}

button {
  padding: 0 14px;
  cursor: pointer;
  text-transform: lowercase;
}

button:disabled {
  cursor: wait;
  opacity: 0.55;
}

button:hover,
button:focus-visible {
  background: #000;
  color: #fff;
}

.form-status {
  min-height: 18px;
  margin: 0;
  max-width: none;
  font-size: 13px;
  line-height: 1.2;
  text-align: left;
}

.form-status[data-state="success"] {
  color: #0f7f3f;
}

.form-status[data-state="error"] {
  color: #b00020;
}

@media (max-width: 520px) {
  .soon-page {
    place-items: start center;
    padding-top: 28vh;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
