:root {
  color-scheme: dark;
  color: #e7e7f0;
  background: radial-gradient(circle at top left, #ffb9a4 0%, transparent 32%),
    radial-gradient(circle at bottom right, #8c8dff 0%, transparent 28%),
    linear-gradient(180deg, #090b16 0%, #111827 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  display: grid;
  place-items: center;
  padding: 24px;
}

.page-shell {
  width: min(100%, 920px);
  padding: 24px;
}

.content-card {
  position: relative;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.45);
  padding: 48px 44px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c7c7d4;
}

.badge::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.5);
}

h1 {
  margin: 0;
  font-size: clamp(2.9rem, 4vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #7c3aed, #ec4899, #facc15);
  -webkit-background-clip: text;
  color: transparent;
}

p {
  margin: 0;
  margin-top: 24px;
  color: #c7c7d4;
  font-size: 1.02rem;
  line-height: 1.9;
}

.progress-wrapper {
  margin: 32px auto 0;
  width: min(100%, 420px);
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #ec4899, #f59e0b);
}

.footer-note {
  margin-top: 30px;
  color: rgba(199, 199, 212, 0.85);
  font-size: 0.83rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
