/* Inner page styles - used by all content pages (not the landing page) */

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  flex: 1;
}

.page-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── Sections ── */
.section { margin-bottom: 3.5rem; }

.section-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(12,184,168,0.12);
  border: 1px solid rgba(12,184,168,0.3);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

/* ── Typography ── */
p { font-size: 0.93rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.75rem; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0.5rem 0 0.75rem 1.2rem; }
li { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.3rem; }
li strong { color: var(--text); }

code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.82em;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  color: #e6edf3;
}

/* ── Callouts ── */
.note {
  font-size: 0.84rem;
  background: rgba(12,184,168,.07);
  border-left: 3px solid var(--brand);
  padding: 0.6rem 0.9rem;
  border-radius: 0 6px 6px 0;
  color: var(--muted);
  margin: 1rem 0;
  line-height: 1.6;
}
.note strong { color: var(--text); }

.warn {
  font-size: 0.84rem;
  background: rgba(210,153,34,.07);
  border-left: 3px solid var(--yellow);
  padding: 0.6rem 0.9rem;
  border-radius: 0 6px 6px 0;
  color: var(--muted);
  margin: 1rem 0;
  line-height: 1.6;
}

hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

@media (max-width: 500px) {
  .page { padding: 2.5rem 1.25rem 4rem; }
}
