:root{
  --bg0:#070A12;
  --bg1:#0B1430;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.14);
  --text:#EAF0FF;
  --muted: rgba(234,240,255,.72);
  --accent:#7C5CFF;
  --accent2:#22D3EE;
  --good:#34D399;
  --shadow: 0 30px 90px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 50% -10%, rgba(124,92,255,.28), transparent 60%),
              radial-gradient(800px 500px at 15% 20%, rgba(34,211,238,.22), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

.page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding: 28px 16px;
  position:relative;
}

.card{
  width: min(980px, 100%);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
  position:relative;
  z-index:2;
  backdrop-filter: blur(10px);
}

.top{margin-bottom:18px}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124,92,255,.14);
  border: 1px solid rgba(124,92,255,.35);
  color: rgba(234,240,255,.9);
  font-size: 13px;
  letter-spacing:.2px;
}
.badge__dot{
  width:10px;height:10px;border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent));
  box-shadow: 0 0 0 6px rgba(124,92,255,.18);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(.95); opacity:.9}
  50%{transform:scale(1.05); opacity:1}
}

.title{
  margin: 14px 0 8px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.title__accent{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.subtitle{
  margin:0;
  color: var(--muted);
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
}

.progress{
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
}

.progress__track{
  width:100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow:hidden;
}

.progress__fill{
  height:100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,92,255,.95), rgba(34,211,238,.95));
  box-shadow: 0 0 18px rgba(124,92,255,.35);
  transition: width 120ms linear;
  position:relative;
}
.progress__fill::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: translateX(-60%);
  animation: shimmer 1.35s ease-in-out infinite;
}
@keyframes shimmer{
  0%{transform: translateX(-70%)}
  50%{transform: translateX(30%)}
  100%{transform: translateX(70%)}
}

.progress__row{
  margin-top: 10px;
  display:flex;
  justify-content:space-between;
  gap: 12px;
  align-items:baseline;
}
.progress__label{color: rgba(234,240,255,.66); font-size: 13px}
.progress__value{font-weight: 600; color: rgba(234,240,255,.92)}

.actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(234,240,255,.92);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:active{transform: translateY(1px)}

.btn--primary{
  background: linear-gradient(90deg, rgba(124,92,255,.95), rgba(34,211,238,.85));
  border-color: rgba(124,92,255,.55);
  box-shadow: 0 14px 35px rgba(124,92,255,.22);
}
.btn--primary:hover{filter: brightness(1.05)}

.btn--ghost{
  background: rgba(255,255,255,.05);
}
.btn--ghost:hover{background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22)}

.footer{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
  color: var(--muted);
  font-size: 13px;
}
.footer__strong{color: rgba(234,240,255,.9); font-weight: 600}
.footer__sep{opacity:.5}

/* Logo / Brand */
.brand{display:flex; align-items:center; justify-content:flex-start; margin-bottom: 6px;}
.brand__logo{
  height: 46px;
  width: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

/* Background ornament */
.bg{position:absolute; inset:0; pointer-events:none; z-index:1}
.bg__glow{position:absolute; filter: blur(30px); opacity:.65}
.bg__glow--a{width:480px; height:300px; left:-120px; top: 80px; background: rgba(124,92,255,.35)}
.bg__glow--b{width:520px; height:340px; right:-160px; top: 0px; background: rgba(34,211,238,.28)}


.bg__grid{
  position:absolute; inset:-40px;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(900px) rotateX(65deg);
  transform-origin: top;
  opacity:.18;
}

@media (max-width: 520px){
  .card{padding: 20px}
  .progress{padding: 14px}
}

@media (prefers-reduced-motion: reduce){
  .badge__dot, .progress__fill::after{animation:none}
}

