/* The install guide page. Everything else it needs is in base.css. */

/* A guide reads better narrow than the splitter does. */
.app {
  max-width: 760px;
}

.topbar {
  margin-bottom: 34px;
}

h1 {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 660;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 0 0 10px;
  max-width: 18ch;
}

.sub {
  font-size: 15px;
  color: var(--dim);
  max-width: 54ch;
  margin: 0 0 34px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  margin-bottom: 16px;
}

.card h2 {
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}

.card .plat {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--faint);
  margin: 0 0 20px;
}

ol {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

li {
  counter-increment: step;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

li::before {
  content: counter(step);
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: var(--r-sm);
  background: var(--panel-2);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

li p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
}

li p + p {
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--faint);
}

li strong {
  font-weight: 620;
  color: var(--accent-dim);
}

.actions {
  margin-top: 24px;
}
