.ps-proof-card {
  background: #ffffff;
  border: 1px solid #d7eef3;
  box-shadow: 0 18px 48px -32px rgba(5, 18, 34, 0.55);
}

.ps-report-cover {
  background: #07111f;
  border: 1px solid rgba(19, 192, 222, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ps-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 15, 29, 0.74);
  backdrop-filter: blur(10px);
}

.ps-modal-backdrop.is-open {
  display: flex;
}

.ps-modal {
  width: min(960px, 100%);
  max-height: min(860px, 92vh);
  overflow: auto;
  border-radius: 26px;
  background: #ffffff;
  color: #101827;
  box-shadow: 0 30px 100px -45px rgba(0, 0, 0, 0.65);
}

.ps-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  gap: 28px;
  padding: 26px;
}

.ps-modal-content {
  display: flex;
  flex-direction: column;
}

.ps-modal-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.ps-modal-preview {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #d7eef3;
  background: #07111f;
}

.ps-modal-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.ps-modal-kicker {
  color: #0e9fb5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ps-modal h2 {
  margin: 8px 0 0;
  color: #102033;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.ps-modal-copy {
  margin: 18px 0 0;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.55;
}

.ps-modal-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  color: #243244;
  font-size: 14px;
  list-style: none;
}

.ps-modal-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
}

.ps-modal-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #13c0de;
}

.ps-modal-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #dbe7ea;
  border-radius: 999px;
  color: #445569;
  background: #f8fbfc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ps-modal-close:hover,
.ps-modal-close:focus {
  color: #0b2338;
  border-color: #13c0de;
  outline: none;
}

.ps-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ps-modal-actions a,
.ps-modal-continue {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
}

.ps-modal-reserve {
  color: #ffffff;
  background: #ff6200;
}

.ps-modal-reserve:hover {
  background: #e85a00;
}

.ps-modal-pdf {
  border: 1px solid #d7eef3;
  color: #0e4a4e;
  background: #ffffff;
}

.ps-modal-pdf:hover {
  border-color: #13c0de;
}

.ps-modal-continue {
  justify-content: flex-start;
  width: fit-content;
  min-height: auto;
  border: 0;
  margin-top: 18px;
  padding: 0;
  color: #6b7280;
  background: transparent;
  cursor: pointer;
}

.ps-modal-continue:hover {
  color: #0e4a4e;
}

@media (max-width: 760px) {
  .ps-modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }

  .ps-modal {
    max-height: 94vh;
    border-radius: 24px 24px 0 0;
  }

  .ps-modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
  }

  .ps-modal h2 {
    font-size: 31px;
  }

  .ps-modal-preview {
    max-height: 320px;
    overflow: hidden;
  }

  .ps-modal-actions {
    flex-direction: column;
  }
}
