.sense-diia-launch-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.sense-diia-launch-modal.is-open {
  display: block;
}

.sense-diia-launch-modal-open {
  overflow: hidden;
}

.sense-diia-launch-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 37, 0.62);
  backdrop-filter: blur(6px);
}

.sense-diia-launch-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 760px);
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  overflow: auto;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(12, 52, 83, 0.24);
}

.sense-diia-launch-modal__content {
  padding: 28px 28px 32px;
}

.sense-diia-launch-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f2f5f7;
  color: #0c3453;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.sense-diia-launch-modal__eyebrow {
  margin: 0 0 12px;
  color: #0c3453;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
}

.sense-diia-launch-modal__description,
.sense-diia-launch-modal__hint,
.sense-diia-launch-modal__status {
  margin: 0;
  color: #35536b;
  font-size: 16px;
  line-height: 1.55;
}

.sense-diia-launch-modal__hint,
.sense-diia-launch-modal__status {
  margin-top: 12px;
}

.sense-diia-launch-modal__status.is-error {
  color: #bb3d2c;
}

.sense-diia-launch-modal__frame-wrap {
  position: relative;
  margin-top: 20px;
  min-height: 460px;
  border: 1px solid #d7e0e7;
  border-radius: 22px;
  overflow: hidden;
  background: #f7fafc;
}

.sense-diia-launch-modal__frame-wrap.is-hidden {
  display: none;
}

.sense-diia-launch-modal__frame {
  display: block;
  width: 100%;
  min-height: 460px;
  border: 0;
  background: #ffffff;
}

.sense-diia-launch-modal__spinner {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 4px solid rgba(255, 118, 79, 0.2);
  border-top-color: #ff764f;
  border-radius: 999px;
  animation: sense-diia-launch-spin 0.9s linear infinite;
}

.sense-diia-launch-modal__spinner.is-hidden {
  display: none;
}

.sense-diia-launch-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #ff764f;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.sense-diia-launch-modal__button.is-hidden {
  display: none;
}

@keyframes sense-diia-launch-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .sense-diia-launch-modal__dialog {
    width: min(100vw - 20px, 760px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    border-radius: 22px;
  }

  .sense-diia-launch-modal__content {
    padding: 24px 18px 24px;
  }

  .sense-diia-launch-modal__eyebrow {
    max-width: calc(100% - 56px);
    font-size: 24px;
  }

  .sense-diia-launch-modal__frame-wrap,
  .sense-diia-launch-modal__frame {
    min-height: 360px;
  }

  .sense-diia-launch-modal__button {
    width: 100%;
  }
}
