* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.28), transparent 32%),
    radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.22), transparent 34%),
    linear-gradient(135deg, #0f172a 0%, #111827 48%, #020617 100%);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  padding: 46px;
  text-align: center;
  box-shadow: 0 28px 90px rgba(0,0,0,0.38);
  backdrop-filter: blur(18px);
}

.badge {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.16);
  border: 1px solid rgba(45, 212, 191, 0.28);
  color: #ccfbf1;
  font-size: 14px;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: -1.5px;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: #dbeafe;
  margin: 0 auto 28px;
  max-width: 580px;
}

.trust-box {
  display: grid;
  gap: 12px;
  margin: 26px auto 32px;
  max-width: 500px;
  color: #e5e7eb;
}

.trust-box div {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 16px;
}

.trust-box span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.24);
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 700;
}

button {
  width: 100%;
  max-width: 370px;
  border: none;
  border-radius: 18px;
  padding: 17px 24px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
  color: #0f172a;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

#statusText {
  min-height: 24px;
  margin-top: 20px;
  color: #fde68a;
}

.small {
  margin-top: 20px;
  color: #a5b4fc;
  font-size: 14px;
}

.background-card {
  position: absolute;
  width: 210px;
  height: 132px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03));
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  opacity: 0.75;
}

.background-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.22);
}

.background-card::after {
  content: "";
  position: absolute;
  left: 92px;
  top: 32px;
  width: 78px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 24px 0 rgba(255,255,255,0.12);
}

.card-one {
  top: 12%;
  left: 8%;
  transform: rotate(-12deg);
}

.card-two {
  bottom: 12%;
  right: 7%;
  transform: rotate(10deg);
}

.background-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.18);
  box-shadow:
    inset 0 0 60px rgba(45, 212, 191, 0.08),
    0 0 80px rgba(59, 130, 246, 0.12);
}

@media (max-width: 700px) {
  .page {
    align-items: stretch;
    padding: 16px;
  }

  .card {
    min-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 22px;
    border-radius: 24px;
  }

  .background-card,
  .background-ring {
    display: none;
  }

  .lead {
    font-size: 16px;
  }
}