.pilot-card-ready {
  color: #f8fbff;
}

.pilot-card-ready > p:not(.eyebrow),
.pilot-card-ready .pilot-success > p:not(.eyebrow):not(.pilot-request-id) {
  color: rgba(248, 251, 255, .82);
}

.pilot-card-ready .pilot-request-form {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: rgba(6, 26, 49, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 18px 20px;
}

.pilot-grid label,
.pilot-request-form label {
  display: grid;
  min-width: 0;
  color: #f8fbff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.pilot-grid label span {
  color: rgba(235, 248, 255, .72);
  font-weight: 650;
}

.pilot-grid input,
.pilot-grid select,
.pilot-grid textarea {
  width: 100%;
  min-height: 54px;
  margin-top: 9px;
  border: 1px solid rgba(203, 219, 232, .52);
  border-radius: 16px;
  background: #f8fbff;
  padding: 14px 16px;
  color: #102235;
  font: inherit;
  outline: none;
  box-shadow: 0 10px 24px rgba(5, 18, 35, .08);
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.pilot-grid input::placeholder,
.pilot-grid textarea::placeholder {
  color: #6b7a90;
  opacity: 1;
}

.pilot-grid textarea {
  min-height: 148px;
  resize: vertical;
  line-height: 1.48;
}

.pilot-grid input:focus,
.pilot-grid select:focus,
.pilot-grid textarea:focus {
  border-color: #23d3cf;
  box-shadow: 0 0 0 4px rgba(35, 211, 207, .24), 0 12px 28px rgba(5, 18, 35, .14);
  background: #fff;
}

.pilot-full {
  grid-column: 1 / -1;
}

.pilot-consent {
  display: flex !important;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  color: #f8fbff;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}

.pilot-consent input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 2px 0 0;
  accent-color: #18c9c3;
  flex: 0 0 auto;
}

.pilot-consent span {
  display: block;
  min-width: 0;
}

.pilot-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.pilot-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pilot-actions .button {
  min-width: 220px;
  justify-content: center;
}

.pilot-actions button:disabled {
  opacity: .72;
  cursor: wait;
}

.pilot-status {
  margin: 0;
  color: rgba(248, 251, 255, .82);
  font-size: 14px;
}

.pilot-status-error {
  color: #ffd7d2;
  font-weight: 750;
}

.pilot-success {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: rgba(6, 26, 49, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.pilot-success h2 {
  margin-bottom: 0;
}

.pilot-request-id {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(35, 211, 207, .46);
  border-radius: 999px;
  padding: 9px 13px;
  color: #dffeff;
  background: rgba(24, 201, 195, .14);
  overflow-wrap: anywhere;
}

.pilot-success .button {
  width: fit-content;
  margin-top: 4px;
}

@media (max-width: 860px) {
  .pilot-card-ready .pilot-request-form,
  .pilot-success {
    padding: 20px;
    border-radius: 18px;
  }

  .pilot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pilot-card-ready .pilot-request-form,
  .pilot-success {
    padding: 16px;
  }

  .pilot-grid {
    gap: 16px;
  }

  .pilot-actions {
    align-items: stretch;
  }

  .pilot-actions .button,
  .pilot-success .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}
