/* ===== BASE ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at top, #0f1c3f, #050914);
  color: #ffffff;
}

.wrapper {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 800;
}

.page-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.card {
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 28px;
}

.section-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.muted {
  opacity: 0.75;
}

ul {
  padding-left: 18px;
  margin: 0;
}

ul li {
  margin-bottom: 10px;
}
/* Progress bar */
.progress{
  height:6px;
  background:rgba(255,255,255,.15);
  border-radius:6px;
  overflow:hidden;
  margin:14px 0 28px;
}

.progress-bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#38bdf8,#22c55e);
  transition:width .3s ease;
}