.signup-top { min-height: 360px; }

.signup-main {
  padding: 64px 0 88px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 211, 28, .12), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(237, 61, 120, .09), transparent 24%),
    var(--paper);
}

.signup-heading {
  max-width: 920px;
  margin-bottom: 34px;
  text-align: center;
}

.signup-heading h1 {
  margin: 8px 0 0;
  font: 700 clamp(38px, 7vw, 68px) var(--hand);
  text-transform: uppercase;
}

.signup-heading > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.7;
}

.signup-stroke {
  display: block;
  width: min(330px, 66%);
  height: 7px;
  margin: 5px auto 0;
  border-radius: 50%;
  background: var(--pink);
  transform: rotate(-1deg);
}

.signup-form {
  width: min(920px, calc(100% - 48px));
  padding: 42px 54px 48px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 250, .92);
  box-shadow: 10px 11px 0 var(--cream);
}

.form-section {
  min-width: 0;
  margin: 0;
  padding: 34px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.form-section:first-child { padding-top: 0; }

.form-section legend {
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  font: 700 clamp(19px, 3vw, 26px) var(--hand);
}

.contact-grid,
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.text-field {
  display: grid;
  gap: 9px;
  font-weight: 700;
}

.text-field input,
.text-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font: 15px/1.5 var(--type);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.text-field input {
  min-height: 50px;
  padding: 10px 13px;
}

.text-field textarea {
  min-height: 145px;
  padding: 13px;
  resize: vertical;
}

.text-field input:focus,
.text-field textarea:focus {
  border-color: var(--pink);
  box-shadow: 4px 4px 0 rgba(237, 61, 120, .13);
}

.choice {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 240, 195, .28);
  cursor: pointer;
  line-height: 1.45;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.choice:hover {
  border-color: rgba(237, 61, 120, .55);
  background: rgba(255, 240, 195, .5);
  transform: translateY(-1px);
}

.choice:has(input:checked) {
  border-color: var(--pink);
  background: rgba(237, 61, 120, .08);
  box-shadow: 3px 3px 0 rgba(237, 61, 120, .12);
}

.choice input,
.privacy-choice input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--pink);
}

.choice.wide { grid-column: 1 / -1; }

.other-goal { margin-top: 16px; }
.field-error { margin: 12px 0 0; color: #b4234f; font-weight: 700; }

.privacy-note {
  margin-top: 34px;
  padding: 20px 22px;
  border-left: 5px solid var(--yellow);
  background: var(--cream);
}

.privacy-note h2 {
  margin: 0 0 8px;
  font: 700 20px var(--hand);
  text-transform: uppercase;
}

.privacy-note p { margin: 0; font-size: 13px; line-height: 1.6; }
.privacy-note a,
.privacy-choice a {
  color: #b4235a;
  text-underline-offset: 3px;
}
.privacy-note a:hover,
.privacy-choice a:hover { color: var(--pink); }

.privacy-choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.5;
}

.privacy-choice a { position: relative; z-index: 1; }

.submit-area {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 32px;
}

.submit-button {
  min-width: min(380px, 100%);
  min-height: 58px;
  padding: 12px 28px;
  border: 0;
  background: var(--pink);
  color: white;
  box-shadow: 5px 5px 0 rgba(237, 61, 120, .2);
  font: 700 18px var(--hand);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.submit-button:hover:not(:disabled) {
  box-shadow: 7px 7px 0 rgba(237, 61, 120, .24);
  transform: translateY(-2px);
}

.submit-button:disabled { cursor: wait; opacity: .65; }

.form-status {
  min-height: 22px;
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.form-status.success { color: #31713d; }
.form-status.error { color: #b4234f; }

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

@media (max-width: 680px) {
  .signup-top { min-height: 280px; }
  .signup-main { padding: 48px 0 64px; }
  .signup-heading { margin-bottom: 26px; }
  .signup-heading h1 { font-size: clamp(35px, 11vw, 48px); }
  .signup-heading > p:last-child { font-size: 14px; }
  .signup-form {
    width: min(100% - 28px, 920px);
    padding: 28px 18px 34px;
    box-shadow: 7px 8px 0 var(--cream);
  }
  .form-section { padding: 28px 0; }
  .form-section legend { font-size: 20px; line-height: 1.35; }
  .contact-grid,
  .option-grid { grid-template-columns: 1fr; gap: 10px; }
  .choice.wide { grid-column: auto; }
  .choice { min-height: 50px; padding: 12px; font-size: 13px; }
  .text-field input,
  .text-field textarea { font-size: 14px; }
  .privacy-note { padding: 17px 16px; }
  .privacy-choice { font-size: 13px; }
  .submit-button { min-width: 100%; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .choice,
  .submit-button,
  .text-field input,
  .text-field textarea { transition: none; }
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
