/* Homepage field-setup — how SR plugs into church sound.
 * Linked after site.css from index.html only.
 * Do not dump pricing / legal / brandkit / booth / manage here.
 */

/* Field setup — how SR plugs into church sound (homepage) */

.setup-section {
  margin: 0;
  display: flex;
  flex-direction: column;
  /* Major blocks: heading, lede, two-col grid, path, tips */
  gap: var(--space-6);
}

.setup-section > .section-head {
  margin: 0;
}

.setup-lede {
  margin: 0 auto;
  max-width: 40rem;
  text-align: center;
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--ink);
  text-wrap: pretty;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5) var(--space-6);
  margin: 0;
}

.setup-block h3,
.setup-notes h3 {
  margin: 0 0 var(--space-3);
  font-family: var(--sans);
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  color: var(--accent);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.setup-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.setup-list li {
  margin: 0 0 var(--space-3);
  padding: 0;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  text-wrap: pretty;
}

.setup-list li:last-child {
  margin-bottom: 0;
}

.setup-list strong {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
}

.setup-path {
  margin: 0;
  padding: var(--space-4);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.setup-path-label {
  margin: 0 0 var(--space-3);
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.setup-path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3) var(--space-4);
  counter-reset: setup-step;
}

.setup-path-steps li {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.85rem;
  font-family: var(--sans);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  counter-increment: setup-step;
}

.setup-path-steps li::before {
  content: counter(setup-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  line-height: 1.35rem;
  text-align: center;
}

.setup-notes {
  margin: 0;
  padding: var(--space-4) var(--space-5);
  background: var(--accent-light);
  border-radius: 12px;
}

.setup-notes .setup-list li {
  margin-bottom: var(--space-3);
}

.setup-notes .setup-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .setup-section {
    gap: var(--space-5);
  }

  .setup-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .setup-path-steps {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
}
