* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(118, 181, 255, .35), transparent 28%),
    radial-gradient(circle at 92% 92%, rgba(97, 160, 255, .26), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f5faff 48%, #e6f2ff 100%);
  color: #123d78;
  overflow: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  isolation: isolate;
}

.blob {
  position: absolute;
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
}

.blob-one {
  width: 360px;
  height: 360px;
  top: -170px;
  left: -140px;
  background: linear-gradient(145deg, rgba(72, 148, 245, .38), rgba(210, 233, 255, .22));
}

.blob-two {
  width: 440px;
  height: 440px;
  right: -210px;
  bottom: -210px;
  background: linear-gradient(145deg, rgba(207, 232, 255, .30), rgba(86, 151, 240, .34));
}

.glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95), rgba(255,255,255,0));
  z-index: -1;
}

.card {
  width: min(92vw, 560px);
  padding: 52px 32px 38px;
  border-radius: 32px;
  text-align: center;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 30px 90px rgba(62, 122, 191, .15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand-logo {
  width: min(360px, 78vw);
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 8px 14px rgba(169, 122, 38, .12));
}

.line {
  width: 180px;
  height: 3px;
  margin: 0 auto 34px;
  border-radius: 20px;
  background: linear-gradient(90deg, transparent, #2f8cff, transparent);
}

.shield-wrap {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 36px rgba(48, 133, 232, .15);
}

.shield {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  background: linear-gradient(145deg, #5db1ff, #176fe8);
  clip-path: polygon(50% 0%, 90% 16%, 84% 69%, 50% 100%, 16% 69%, 10% 16%);
}

.redirect-text {
  font-size: 18px;
  line-height: 1.55;
  color: #335d92;
}

.redirect-text strong {
  color: #153f79;
  font-size: 22px;
}

.dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 26px 0 34px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9fcafa;
  animation: loading 1.1s infinite ease-in-out;
}

.dot:nth-child(2) { animation-delay: .15s; }
.dot:nth-child(3) { animation-delay: .3s; }

@keyframes loading {
  0%, 100% { transform: translateY(0); opacity: .42; }
  50% { transform: translateY(-7px); opacity: 1; background: #2f89f7; }
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: #5577a6;
}

.footer {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 2.3px;
  color: #4b95ef;
}

@media (max-width: 600px) {
  .page {
    padding: 16px;
  }

  .card {
    padding: 42px 20px 32px;
    border-radius: 26px;
  }

  .brand-logo {
    width: min(320px, 82vw);
    margin-bottom: 24px;
  }

  .redirect-text {
    font-size: 16px;
  }

  .redirect-text strong {
    font-size: 19px;
  }
}
