.launch-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  color: #0a0a0a;
  background: transparent;
  border: 0;
}

.launch-dialog::backdrop {
  background: rgba(5, 5, 5, .76);
  backdrop-filter: blur(8px);
}

.launch-dialog-shell {
  position: relative;
  max-height: calc(100dvh - 32px);
  overflow: auto;
  background: #fff;
  border-radius: 8px;
}

.launch-dialog-head {
  padding: 34px 36px 28px;
  border-bottom: 1px solid #dedede;
}

.launch-dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #0a0a0a;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.launch-dialog-close svg { width: 20px; }

.launch-kicker {
  margin: 0 54px 14px 0;
  color: #5f6f69;
  font: 700 11px/1.3 "Sora", Arial, sans-serif;
  text-transform: uppercase;
}

.launch-dialog h2 {
  max-width: 540px;
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.launch-intro {
  max-width: 560px;
  margin: 16px 0 0;
  color: #6f6b66;
  font: 400 14px/1.5 "Sora", Arial, sans-serif;
}

.launch-audience-switch {
  padding: 20px 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.launch-audience-switch button {
  min-height: 46px;
  color: #0a0a0a;
  background: #f4f4f2;
  border: 1px solid #d7d7d3;
  cursor: pointer;
  font: 650 13px/1 "Sora", Arial, sans-serif;
}

.launch-audience-switch button[aria-pressed="true"] {
  color: #fff;
  background: #0a0a0a;
  border-color: #0a0a0a;
}

.launch-form { padding: 26px 36px 34px; }
.launch-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.launch-field { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.launch-field-wide { grid-column: 1 / -1; }
.launch-field[hidden] { display: none; }

.launch-field label {
  font: 650 11px/1.3 "Sora", Arial, sans-serif;
}

.launch-field input,
.launch-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: #0a0a0a;
  background: #fff;
  border: 1px solid #b8b8b3;
  border-radius: 4px;
  outline: none;
  font: 400 14px/1 "Sora", Arial, sans-serif;
}

.launch-field input:focus,
.launch-field select:focus {
  border-color: #0a0a0a;
  box-shadow: 0 0 0 2px #c8ff00;
}

.launch-field input[aria-invalid="true"],
.launch-field select[aria-invalid="true"] { border-color: #bd3025; }

.launch-field-error {
  min-height: 15px;
  color: #a92820;
  font: 600 10px/1.4 "Sora", Arial, sans-serif;
}

.launch-checks {
  margin-top: 24px;
  padding-top: 20px;
  display: grid;
  gap: 13px;
  border-top: 1px solid #dedede;
}

.launch-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #595651;
  font: 400 11px/1.45 "Sora", Arial, sans-serif;
}

.launch-check input { width: 18px; height: 18px; margin: 0; accent-color: #0a0a0a; }
.launch-check a { color: #0a0a0a; text-decoration: underline; text-underline-offset: 2px; }
.launch-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.launch-form-status {
  min-height: 20px;
  margin: 18px 0 0;
  color: #a92820;
  font: 600 12px/1.45 "Sora", Arial, sans-serif;
}

.launch-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #0a0a0a;
  background: #c8ff00;
  border: 1px solid #c8ff00;
  border-radius: 4px;
  cursor: pointer;
  font: 750 13px/1 "Sora", Arial, sans-serif;
}

.launch-submit:disabled { cursor: wait; opacity: .58; }
.launch-submit svg { width: 17px; }

.launch-success {
  min-height: 460px;
  padding: 54px 36px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.launch-success[hidden] { display: none; }
.launch-success-mark { width: 56px; height: 56px; display: grid; place-items: center; color: #0a0a0a; background: #c8ff00; border-radius: 50%; }
.launch-success-mark svg { width: 28px; }
.launch-success h2 { margin-top: 28px; }
.launch-success p { max-width: 520px; margin: 18px 0 0; color: #6f6b66; font: 400 14px/1.55 "Sora", Arial, sans-serif; }
.launch-success button { width: fit-content; min-height: 46px; margin-top: 30px; padding: 0 20px; color: #fff; background: #0a0a0a; border: 0; border-radius: 4px; cursor: pointer; font: 700 12px/1 "Sora", Arial, sans-serif; }

@media (max-width: 600px) {
  .launch-dialog { width: 100%; max-width: none; max-height: 100dvh; margin: 0; }
  .launch-dialog-shell { min-height: 100dvh; max-height: 100dvh; border-radius: 0; }
  .launch-dialog-head { padding: 28px 20px 24px; }
  .launch-dialog h2 { font-size: 34px; }
  .launch-audience-switch { padding: 18px 20px 0; }
  .launch-form { padding: 22px 20px max(28px, env(safe-area-inset-bottom)); }
  .launch-fields { grid-template-columns: 1fr; gap: 14px; }
  .launch-field-wide { grid-column: 1; }
  .launch-success { min-height: 100dvh; padding: 44px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .launch-dialog::backdrop { backdrop-filter: none; }
}
