:root{
  --bg:#0f1724;
  --card:#0b1220;
  --accent:#ffb703;
  --muted:#94a3b8;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #071020 0%, #0f1724 100%);
  color:#e6eef8;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.center{min-height:100vh;display:grid;place-items:center;padding:24px}
.card{
  width:100%;max-width:720px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:16px;padding:36px;border:1px solid rgba(255,255,255,0.04);box-shadow:0 8px 40px rgba(2,6,23,0.6);
}
.illustration{height:160px;position:relative;margin-bottom:8px}
.crane{position:absolute;left:16px;top:8px;width:120px;height:120px;transform:scale(0.9)}
.crane .arm{width:100%;height:6px;background:linear-gradient(90deg,var(--accent),#f77f00);border-radius:4px;transform-origin:left center;animation:swing 3s ease-in-out infinite}
.crane .weight{position:absolute;right:8px;top:40px;width:18px;height:28px;background:var(--accent);border-radius:3px;box-shadow:0 4px 10px rgba(0,0,0,0.4);animation:drop 2s ease-in-out infinite}
@keyframes swing{0%{transform:rotate(-6deg)}50%{transform:rotate(6deg)}100%{transform:rotate(-6deg)}}
@keyframes drop{0%{transform:translateY(-6px)}50%{transform:translateY(6px)}100%{transform:translateY(-6px)}}
.cone{position:absolute;right:28px;bottom:8px;width:36px;height:36px;background:linear-gradient(180deg,#ff7a00,#ffb703);clip-path:polygon(50% 0, 100% 100%, 0 100%);border-radius:6px}

h1{font-size:26px;margin:8px 0 6px}
.lead{color:var(--muted);margin:0 0 18px}
.progress{height:12px;background:rgba(255,255,255,0.04);border-radius:999px;overflow:hidden;margin-bottom:10px}
.progress-bar{height:100%;background:linear-gradient(90deg,var(--accent),#ff7f50);width:0;transition:width 800ms cubic-bezier(.2,.9,.2,1)}
.small{color:var(--muted);font-size:14px;margin-bottom:14px}
.actions{display:flex;gap:12px}
.btn{display:inline-block;padding:10px 14px;border-radius:10px;background:linear-gradient(90deg,var(--accent),#ff9b3a);color:#07102a;text-decoration:none;font-weight:600}
.btn.ghost{background:transparent;border:1px solid rgba(255,255,255,0.06);color:var(--muted)}
.foot{margin-top:18px;color:var(--muted);font-size:13px}

@media (max-width:560px){.card{padding:20px}.illustration{height:110px}}