/* ── Ordered steps list ───────────────────────────────────── */
ol.steps {
  padding-left: 0;
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

ol.steps li {
  counter-increment: steps;
  position: relative;
  padding-left: 40px;
  min-height: 26px;
  line-height: 1.6;
  color: var(--text-muted);
}

ol.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol.steps li strong {
  color: var(--text);
}

ol.steps li code {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.88em;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--accent);
}

/* ── App download cards ───────────────────────────────────── */
.app-cards {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.app-card {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
}

.app-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.app-card-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.app-card-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.app-card-store {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Callout boxes ────────────────────────────────────────── */
.callout {
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 24px 0;
  font-size: 0.9rem;
  line-height: 1.6;
  border-left: 4px solid;
}

.callout-warning {
  background: rgba(251, 191, 36, 0.08);
  border-color: #f59e0b;
  color: var(--text);
}

.callout-warning strong {
  color: #f59e0b;
}

.callout-tip {
  background: rgba(168, 85, 247, 0.08);
  border-color: var(--accent);
  color: var(--text-muted);
}

.callout-tip strong {
  color: var(--accent);
}
