* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background:
    radial-gradient(circle at 70% 20%, rgba(99, 102, 241, 0.22), transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.18), transparent 35%),
    #070b14;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 850px;
  text-align: center;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 10px 16px;

  color: #cbd5e1;
  font-size: 14px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.04);
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b5cf6;

  box-shadow: 0 0 15px #8b5cf6;
}

h1 {
  margin-bottom: 25px;

  font-size: clamp(45px, 8vw, 80px);
  line-height: 1;
  letter-spacing: -3px;

  background: linear-gradient(
    90deg,
    #ffffff,
    #c4b5fd,
    #818cf8
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container > p {
  max-width: 700px;
  margin: 0 auto 45px;

  color: #a7b0c5;
  font-size: 19px;
  line-height: 1.7;
}

.card {
  max-width: 480px;
  margin: auto;
  padding: 45px 40px;

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 69, 0.9),
      rgba(13, 19, 35, 0.95)
    );

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4);
}

.icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: bold;
  color: #a78bfa;

  border-radius: 22px;

  border: 1px solid rgba(139, 92, 246, 0.25);

  background: rgba(139, 92, 246, 0.1);
}

.card h2 {
  margin-bottom: 12px;
  font-size: 25px;
}

.small {
  color: #8f9aad;
  font-size: 15px;
  line-height: 1.6;
}

.progress {
  width: 100%;
  height: 9px;
  margin-top: 30px;

  overflow: hidden;

  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar {
  width: 72%;
  height: 100%;

  border-radius: 20px;

  background: linear-gradient(
    90deg,
    #8b5cf6,
    #6366f1
  );
}

.percent {
  margin-top: 10px;
  text-align: right;

  color: #929caf;
  font-size: 13px;
}

@media (max-width: 600px) {
  .page {
    padding: 30px 16px;
  }

  h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .container > p {
    font-size: 17px;
  }

  .card {
    padding: 35px 22px;
  }
}