.newsletter-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(64px, 10vw, 156px);
  align-items: end;
  padding: clamp(104px, 12vw, 176px) max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
  background: linear-gradient(165deg, #08090b, #101116 62%, #08090b);
  color: var(--paper);
}

.newsletter-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
  right: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--white-72), transparent);
  box-shadow: 0 0 32px var(--white-08);
}

.newsletter-copy h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(48px, 5rem, 82px);
  font-weight: 460;
  line-height: 1.04;
  text-shadow: 0 0 60px var(--white-08);
}

.newsletter-copy h2 i {
  color: rgba(243, 241, 237, 0.58);
  font-weight: 420;
}

.newsletter-copy > p:last-child {
  max-width: 48ch;
  margin-top: 28px;
  color: rgba(243, 241, 237, 0.62);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
}

.newsletter-field {
  display: grid;
  gap: 10px;
}

.newsletter-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(243, 241, 237, 0.5);
}

.newsletter-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(243, 241, 237, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(24px, 2rem, 34px);
  font-weight: 420;
  outline: 0;
  transition: border-color 250ms var(--ease);
}

.newsletter-field input::placeholder {
  color: rgba(243, 241, 237, 0.3);
  opacity: 1;
}

.newsletter-field input:hover {
  border-color: rgba(243, 241, 237, 0.5);
}

.newsletter-field input:focus-visible {
  border-color: var(--paper);
  outline: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.04);
}

.newsletter-field input:user-invalid {
  border-color: var(--foil);
}

.newsletter-submit {
  min-height: 58px;
}

.newsletter-note,
.newsletter-status {
  max-width: 72ch;
  margin-top: 20px;
  color: rgba(243, 241, 237, 0.56);
  font-size: 11px;
  line-height: 1.6;
}

.newsletter-note a {
  color: rgba(243, 241, 237, 0.72);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.newsletter-status {
  padding-left: 14px;
  border-left: 1px solid var(--white-72);
  color: rgba(243, 241, 237, 0.76);
}

.newsletter-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
