.guide-page {
  max-width: var(--container);
  margin: 0 auto;
}

.guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.guide-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
}

.guide-intro h2 {
  margin-top: 0;
}

.guide-steps {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--text);
}

.guide-steps li {
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
}

.guide-list {
  margin: 0.85rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.guide-list li {
  margin-bottom: 0.45rem;
}

.guide-table {
  margin-top: 1rem;
}

.guide-table code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  background: var(--bg-elev);
  padding: 0.15rem 0.45rem;
  border-radius: 5px;
  border: 1px solid var(--border-soft);
  color: var(--accent);
}

.guide-checklist-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.guide-checklist-items li {
  padding: 0.65rem 0.85rem 0.65rem 2.2rem;
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  position: relative;
  color: var(--text);
}

.guide-checklist-items li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.guide-footer {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.guide-page a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.guide-page a:hover {
  text-decoration: underline;
}

@media (max-width: 620px) {
  .guide-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .guide-cta {
    width: 100%;
    justify-content: center;
  }
}
