/* MealWise waitlist form — matches the site design system */
.amy-waitlist { display: block; max-width: 460px; margin: 0; }
.amy-waitlist-row { display: flex; gap: 10px; }
.amy-waitlist-input {
  flex: 1 1 auto; min-width: 0; height: 60px; padding: 0 20px;
  font: inherit; font-size: 16px; color: #18221f;
  background: #fff; border: 1px solid #dfe3e1; border-radius: 999px; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.amy-waitlist-input::placeholder { color: #9aa3a0; }
.amy-waitlist-input:focus { border-color: var(--amy-green); box-shadow: 0 0 0 3px rgba(23, 107, 91, .15); }
.amy-waitlist-btn {
  flex: 0 0 auto; min-height: 60px; padding: 0 26px;
  font: inherit; font-size: 16px; font-weight: 700; color: #fff; white-space: nowrap;
  background: var(--amy-green); border: 0; border-radius: 999px; cursor: pointer;
  box-shadow: 0 9px 22px rgba(23, 107, 91, .16);
  transition: transform .18s ease, background-color .18s ease;
}
.amy-waitlist-btn:hover { background: var(--amy-green-dark); transform: scale(1.04); }
.amy-waitlist-btn:disabled { opacity: .7; cursor: default; transform: none; }
.amy-waitlist-opt { display: flex; align-items: center; gap: 9px; margin-top: 14px; color: #888; font-size: 14px; font-weight: 500; cursor: pointer; user-select: none; }
.amy-waitlist-opt input { width: 17px; height: 17px; accent-color: var(--amy-green); cursor: pointer; }
.amy-waitlist-note { margin: 10px 0 0; color: #999; font-size: 13px; }
.amy-waitlist-note a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.amy-waitlist-error { margin: 8px 0 0; color: #c0562f; font-size: 13px; font-weight: 600; display: none; }
.amy-waitlist.is-error .amy-waitlist-input { border-color: #c0562f; }
.amy-waitlist.is-error .amy-waitlist-error { display: block; }
.amy-waitlist-success {
  display: flex; align-items: center; gap: 11px; max-width: 460px;
  padding: 20px 22px; background: var(--amy-green-pale); border-radius: 18px;
  color: var(--amy-green-dark); font-size: 16px; font-weight: 600;
}
.amy-waitlist-success span { font-weight: 600; }

/* Final CTA (green background) variant */
.amy-final-cta .amy-waitlist { margin: 0 auto; }
.amy-final-cta .amy-waitlist-row { justify-content: center; }
.amy-final-cta .amy-waitlist-input { background: #fff; border-color: rgba(255, 255, 255, .55); }
.amy-final-cta .amy-waitlist-btn { background: #fff; color: var(--amy-green); box-shadow: 0 9px 22px rgba(0, 0, 0, .14); }
.amy-final-cta .amy-waitlist-btn:hover { background: #eef4f2; }
.amy-final-cta .amy-waitlist-opt { color: rgba(255, 255, 255, .85); justify-content: center; }
.amy-final-cta .amy-waitlist-opt input { accent-color: #fff; }
.amy-final-cta .amy-waitlist-note { color: rgba(255, 255, 255, .7); text-align: center; }
.amy-final-cta .amy-waitlist-success { background: rgba(255, 255, 255, .16); color: #fff; margin: 0 auto; }

@media (max-width: 560px) {
  .amy-waitlist-row { flex-direction: column; }
  .amy-waitlist-btn { width: 100%; }
}

/* Recipe mockup inside the "How it works" device area */
.amy-workflow-shot {
  width: 100%; max-width: 340px; height: auto; display: block;
  filter: drop-shadow(0 30px 60px rgba(38, 54, 48, .18));
}
