:root{
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #ffb86b;
  --muted: #98a0b3;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0}
body{
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: linear-gradient(180deg, #071023 0%, var(--bg) 100%);
  color: #e6eef8;
  display:flex;align-items:center;justify-content:center;padding:24px;
}
.wrap{width:100%;max-width:980px}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:18px;padding:36px 28px;text-align:center;box-shadow:0 10px 30px rgba(2,6,23,0.6);
  border:1px solid rgba(255,255,255,0.03);
}
.icon{width:86px;height:86px;margin:0 auto 18px;position:relative}
.gear{
  width:86px;height:86px;border-radius:50%;background:conic-gradient(from 90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  display:flex;align-items:center;justify-content:center;position:relative;box-shadow:inset 0 -6px 20px rgba(0,0,0,0.45);
  animation:rotate 6s linear infinite;
}
.bolt{position:absolute;right:-4px;bottom:-6px;font-size:24px;transform:rotate(10deg)}
@keyframes rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}

h1{font-size:clamp(22px,4vw,36px);margin:6px 0 8px}
.lead{color:var(--muted);margin:0 0 18px}

.progress{height:12px;background:linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));border-radius:999px;overflow:hidden;margin:18px auto 10px;max-width:560px}
.bar{height:100%;width:18%;background:linear-gradient(90deg,var(--accent),#ffd48f);border-radius:999px;transition:width 0.3s ease}

.meta{font-size:14px;color:var(--muted);margin-top:12px}
.meta a{color:var(--accent);text-decoration:none}
.small{color:rgba(230,238,248,0.45);font-size:13px;margin-top:18px}

@media (max-width:520px){
  .card{padding:24px}
  .icon{width:72px;height:72px}
}
