:root{
  --bg:#0f1724;
  --accent:#ff8a00;
  --muted:#9aa5b1;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:Inter,system-ui;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(255,138,0,0.06), transparent 8%),
              linear-gradient(180deg, #071028 0%, #07102a 60%);
  color:#e6eef6;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.card{
  width:100%;
  max-width:900px;
  background:rgba(255,255,255,0.02);
  border-radius:16px;
  box-shadow:0 10px 30px rgba(2,6,23,0.6);
  padding:36px;
  display:flex;
  gap:30px;
  align-items:center;
}
.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--accent), #ffb46b);
  color:#081026;
  font-weight:700;
  letter-spacing:0.6px;
  margin-bottom:18px;
  font-size:14px;
}
h1{font-size:42px;line-height:1.02;margin-bottom:10px}
p.lead{color:var(--muted);margin-bottom:18px;font-size:16px}
.actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  padding:10px 14px;border-radius:10px;background:transparent;
  border:1px solid rgba(255,255,255,0.06);color:inherit;text-decoration:none;font-weight:600;
}
.btn.primary{
  background:linear-gradient(90deg,var(--accent), #ffb46b);
  color:#081026;border:none;
}
.right{width:220px;height:220px;display:flex;align-items:center;justify-content:center}
.gear{width:120px;height:120px;opacity:0.95}
footer.note{margin-top:18px;color:var(--muted);font-size:13px}
@media(max-width:720px){.card{flex-direction:column;align-items:stretch}.right{width:100%;height:120px}h1{font-size:32px}}
