.launch-signup {
  width: min(640px, 100%);
  margin: 40px auto 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  text-align: left;
  box-shadow: var(--shadow);
}

.launch-signup[hidden] { display: none; }
.launch-signup .eyebrow { text-align: center; }
.launch-signup h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.03;
  letter-spacing: -1.2px;
}
.launch-signup > p:not(.eyebrow) {
  max-width: 520px;
  margin: 13px auto 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.launch-form { margin-top: 24px; }
.launch-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
}
.launch-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.launch-form input[type="email"] {
  min-width: 0;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}
.launch-form input[type="email"]:focus-visible {
  outline: 3px solid rgba(255, 102, 85, .25);
  outline-offset: 2px;
  border-color: var(--coral);
}
.launch-form button { border: 0; cursor: pointer; }
.launch-form button:disabled { cursor: default; opacity: .65; transform: none; }
.launch-form .microcopy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.launch-remove-button {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.launch-remove-button:hover { color: var(--ink); }
.launch-form-status {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}
.launch-form-status[data-state="success"] { color: #35643c; }
.launch-form-status[data-state="error"] { color: #9f352d; }
.launch-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 640px) {
  .launch-signup { padding: 24px 18px; }
  .launch-form-row { grid-template-columns: 1fr; }
  .launch-form-row .primary-button { width: 100%; }
}
