.outbound-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(32px, 7vw, 112px);
  align-items: start;
  padding-block: 88px;
}
.outbound-copy h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  margin: 0 0 28px;
}
.outbound-lead {
  max-width: 510px;
  font-size: 20px;
  color: var(--muted);
}
.outbound-status {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 650;
}
.outbound-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.outbound-boundary {
  border-top: 1px solid var(--line);
  margin-top: 46px;
  padding-top: 30px;
}
.outbound-boundary h2 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.outbound-boundary p,
.waitlist-panel > p,
.outbound-questions p {
  color: var(--muted);
  margin-bottom: 18px;
}
.outbound-boundary a,
.waitlist-privacy a,
.outbound-questions a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.waitlist-panel {
  padding: clamp(24px, 3vw, 44px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  background: var(--surface);
  border-radius: 4px 4px 20px 20px;
}
.waitlist-panel h2 {
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.waitlist-panel form > label:first-child {
  display: block;
  font-size: 13px;
  font-weight: 750;
  margin: 28px 0 10px;
}
#waitlist-email {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.waitlist-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  margin: 22px 0;
  cursor: pointer;
}
.waitlist-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--blue);
}
#waitlist-submit {
  width: 100%;
  justify-content: space-between;
}
#waitlist-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
#waitlist-status:not(:empty) {
  margin: 22px 0;
  color: var(--ink);
}
.waitlist-panel .waitlist-privacy {
  font-size: 12px;
  margin: 24px 0 0;
}
.outbound-questions {
  border-top: 1px solid var(--line);
  padding-block: 48px 80px;
}
.outbound-questions h2 {
  font-size: 32px;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}
.outbound-questions > div {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  padding-block: 24px 8px;
}
.outbound-questions h3 {
  font-size: 17px;
}
@media (max-width: 800px) {
  .outbound-intro {
    grid-template-columns: 1fr;
    padding-block: 48px;
  }
  .outbound-questions > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
