/* form-top landing (home + legacy slug) */
.form-top {
  padding: clamp(3.2rem, 8vw, 7.2rem) 0;
}

.form-top__inner {
  display: grid;
  gap: clamp(2.4rem, 4vw, 4rem);
}

.form-top__logo {
  display: flex;
  justify-content: center;
}

.form-top__logo-image {
  width: min(100%, 32rem);
  height: auto;
}

.form-top__text {
  display: grid;
  gap: 1.6rem;
  margin: 0 auto;
  color: var(--flow-color-ink);
}

.form-top__text h2 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #5f7f9f;
  text-align: center;
}

.form-top__text p {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 1.9rem);
  line-height: 1.9;
  color: var(--flow-color-muted);
}

.form-top__actions {
  display: flex;
  justify-content: center;
}

.form-top__button {
  width: min(100%, 28rem);
}

@media (min-width: 768px) {
  .form-top__inner {
    gap: 4.8rem;
  }

  .form-top__text {
    max-width: 72rem;
  }
}
