/* ========== LANDING PAGE FORM ========== */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: white;
  border: 1.5px solid var(--parchment);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235C4033' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-row textarea {
  resize: vertical;
  min-height: 80px;
}

/* Form button — inherits .cta-button styling, override border */
.signup-form .cta-button {
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
}

.signup-form .cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ========== THANK YOU STATE ========== */
.signup-thankyou {
  text-align: center;
  padding: 3rem 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.signup-thankyou.visible {
  opacity: 1;
  transform: translateY(0);
}
.thankyou-icon {
  font-size: 3.5rem;
  color: var(--amber);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.thankyou-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}
.thankyou-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin: 0;
}
