.steps { list-style: none; margin: 1rem 0; padding: 0; counter-reset: step; }
.steps li {
  position: relative;
  padding: .85rem .85rem .85rem 3rem;
  margin: .55rem 0;
  background: #12181f;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  line-height: 1.35;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: .7rem;
  top: .75rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--accent);
  color: #04221e;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps strong { color: #fff; }
.big-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  padding: .9rem 1rem;
  margin: .75rem 0;
}
.help-box {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 640px) {
  .btn.ghost { display: inline-block; margin-top: .4rem; }
  h1 { font-size: 1.55rem; }
}
