/* CyphCard v2 Milestone 8 - final polish */
:root{
  --cyph-bg:#070a1a;
  --cyph-panel:rgba(18,28,75,.72);
  --cyph-border:rgba(132,155,255,.22);
  --cyph-primary:#5a78ff;
  --cyph-success:#22c55e;
  --cyph-warning:#f59e0b;
  --cyph-danger:#ef4444;
}
.cyph-final-card{
  background:linear-gradient(145deg,rgba(24,36,96,.82),rgba(9,13,36,.92));
  border:1px solid var(--cyph-border);
  border-radius:22px;
  box-shadow:0 18px 55px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
  padding:20px;
}
.cyph-final-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.cyph-status-pill{
  display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;
  background:rgba(90,120,255,.13);border:1px solid rgba(90,120,255,.24);font-size:12px
}
.cyph-status-ok{color:#86efac}.cyph-status-warn{color:#fcd34d}.cyph-status-bad{color:#fca5a5}
.install-panel{
  margin-top:16px;padding:14px;border-radius:16px;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);font-size:13px;line-height:1.5
}
.install-btn{
  width:100%;margin-top:10px;border:0;border-radius:999px;padding:12px 14px;
  background:linear-gradient(135deg,#5a78ff,#2237a8);color:white;font-weight:800;cursor:pointer
}
.install-help{display:none;margin-top:10px;color:rgba(255,255,255,.75)}
.install-help.show{display:block}
.release-list{display:grid;gap:12px;margin-top:18px}
.release-row{display:flex;justify-content:space-between;gap:14px;align-items:center;padding:14px;border-radius:16px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1)}
.release-row small{opacity:.7}
@media(max-width:600px){.release-row{display:block}.release-row strong{display:block;margin-bottom:6px}}
