
/* DN_PREUPLOAD_PAYFLOW_LANDING_V1_20260508 */
.dn-payflow-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(94,124,255,.24), transparent 42%),
    rgba(2, 5, 18, .78);
  backdrop-filter: blur(14px);
}

.dn-payflow-modal.is-open {
  display: flex;
}

.dn-payflow-card {
  width: min(680px, 100%);
  border: 1px solid rgba(150,176,255,.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 0%, rgba(150,176,255,.14), transparent 38%),
    linear-gradient(180deg, #202a44 0%, #10172b 100%);
  box-shadow: 0 30px 100px rgba(0,0,0,.42);
  color: #f3f6ff;
  padding: clamp(24px, 4vw, 38px);
  position: relative;
}

.dn-payflow-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #f3f6ff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.dn-payflow-kicker {
  color: #9bb4ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 14px;
}

.dn-payflow-card h2 {
  margin: 0 44px 14px 0;
  font-size: clamp(34px, 6vw, 62px);
  line-height: .92;
  letter-spacing: -.06em;
}

.dn-payflow-card p {
  color: rgba(243,246,255,.72);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
}

.dn-payflow-drop {
  display: block;
  border: 1px dashed rgba(150,176,255,.34);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255,255,255,.045);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}

.dn-payflow-drop:hover {
  border-color: rgba(180,200,255,.54);
  background: rgba(255,255,255,.065);
}

.dn-payflow-drop input {
  display: none;
}

.dn-payflow-file-title {
  font-weight: 850;
  margin-bottom: 6px;
}

.dn-payflow-file-help {
  color: rgba(243,246,255,.58);
  font-size: 14px;
}

.dn-payflow-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  flex-wrap: wrap;
}

.dn-payflow-submit {
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #9bb4ff, #7896ff);
  color: #071021;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dn-payflow-submit:disabled {
  opacity: .48;
  cursor: not-allowed;
}

.dn-payflow-note {
  color: rgba(243,246,255,.54);
  font-size: 13px;
}

.dn-payflow-status {
  margin-top: 16px;
  color: rgba(243,246,255,.78);
  font-size: 14px;
  min-height: 20px;
}

@media (max-width: 640px) {
  .dn-payflow-modal {
    padding: 16px;
  }

  .dn-payflow-card {
    border-radius: 24px;
  }

  .dn-payflow-submit {
    width: 100%;
  }
}
