/* CT Progress Header */
.ct-progress{
  margin-top:12px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid #263246;
  background:#0b1220;
}
.ct-progress-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.ct-progress-title{
  font-weight:900;
  font-size:14px;
  letter-spacing:.02em;
  opacity:.95;
}
.ct-progress-eta{
  font-size:13px;
  opacity:.8;
}
.ct-progress-steps{
  display:flex;
  gap:10px;
  margin-top:10px;
  flex-wrap:wrap;
}
.ct-step{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid #263246;
  background:#0a0f1a;
  opacity:.75;
}
.ct-step .ct-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
}
.ct-step.active{
  opacity:1;
  border-color:#3b82f6;
}
.ct-step.active .ct-dot{ background:#3b82f6; }
.ct-step.done{
  opacity:.95;
  border-color:#14532d;
}
.ct-step.done .ct-dot{ background:#22c55e; }
.ct-step .ct-label{
  font-size:13px;
  font-weight:800;
}
