.hn {
  background: var(--vierlot-bg);
  padding: 60px 20px;
  font-family: var(--vierlot-font);
}
.hn__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hn__heading {
  font-family: var(--vierlot-font);
  font-size: 24px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin: 0 0 16px;
  line-height: 1.3;
}
.hn__line {
  font-family: var(--vierlot-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  margin: 0;
  line-height: 1.5;
}
.hn__line + .hn__line {
  margin-top: 4px;
}
.hn__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
}
.hn__label {
  font-family: var(--vierlot-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin-bottom: 12px;
}
.hn__row {
  display: flex;
  align-items: stretch;
  gap: 16px;
  justify-content: center;
  width: 100%;
}
.hn__input {
  width: 280px;
  height: 44px;
  border: 1px solid var(--vierlot-line);
  background: transparent;
  padding: 0 14px;
  font-family: var(--vierlot-font);
  font-size: 14px;
  color: var(--vierlot-text);
  outline: 0;
  box-sizing: border-box;
}
.hn__input::placeholder {
  color: var(--vierlot-text-muted);
}
.hn__input:focus {
  border-color: var(--vierlot-text);
}
.hn__btn {
  width: 120px;
  min-width: 120px;
  height: 44px;
  padding: 0 8px;
  font-size: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.hn__btn[disabled],
.hn__btn.is-loading {
  opacity: 0.6;
  cursor: wait;
}
.hn__disclaimer {
  font-family: var(--vierlot-font);
  font-size: 12px;
  font-weight: 400;
  color: var(--vierlot-text-muted);
  margin: 16px 0 0;
}
.hn__msg {
  font-family: var(--vierlot-font);
  font-size: 13px;
  margin: 12px 0 0;
}
.hn__msg--success {
  color: var(--vierlot-text);
}
.hn__msg--error {
  color: #B00020;
}
.hn__joined {
  font-family: var(--vierlot-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  margin: 16px 0 0;
  line-height: 1.5;
}
.hn__joined-cta {
  margin-top: 24px;
  font-size: 16px;
  min-width: 140px;
  height: 40px;
}

@media (max-width: 768px) {
  .hn {
    padding: 40px 16px;
  }
  .hn__row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .hn__input {
    width: 100%;
  }
  .hn__btn {
    width: 100%;
    max-width: 200px;
    align-self: center;
  }
}
