/* ============================================================================
   Long-form pages (creators, privacy, terms). Borrows the landing's tokens;
   only the reading rhythm lives here.
   ========================================================================= */
.doc-main {
  max-width: 620px;
  margin: 0 auto;
  padding: 70px 24px 40px;
}
.doc-kicker {
  font: 700 11px/1 var(--mono);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted-soft);
}
.doc-title {
  margin-top: 12px;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.02;
  letter-spacing: -1.8px;
  color: var(--ink);
}
.doc-lede {
  margin-top: 16px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 40ch;
}
.doc-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font: 700 12px/1.6 var(--mono);
  color: var(--muted-soft);
}
.doc-body {
  margin-top: 40px;
}
.doc-body h2 {
  margin-top: 44px;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--ink);
}
.doc-body h2:first-child {
  margin-top: 0;
}
.doc-body h3 {
  margin-top: 26px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.2px;
  color: var(--ink);
}
.doc-body p,
.doc-body li {
  margin-top: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.62;
  color: var(--muted);
}
.doc-body ul {
  margin-top: 6px;
  padding-left: 20px;
}
.doc-body li {
  margin-top: 8px;
}
.doc-body li::marker {
  color: var(--green);
}
.doc-body b,
.doc-body strong {
  color: var(--ink);
  font-weight: 800;
}
.doc-body a {
  color: var(--green-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* a callout for the one line that actually matters on the page */
.doc-note {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(20, 35, 26, 0.05);
}
.doc-note p {
  margin-top: 0;
}
.doc-note p + p {
  margin-top: 10px;
}

/* things still to be filled in before this goes live */
.doc-todo {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 6px;
  background: #fdf3d6;
  box-shadow: inset 0 0 0 1px #e8d9a8;
  font: 700 13px/1.5 var(--mono);
  color: #7a5c12;
}

/* ---- creators: the numbers ---- */
.doc-figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.doc-fig {
  padding: 20px 18px;
  border-radius: 20px;
  background: var(--ink);
}
.doc-fig dt {
  font: 700 11px/1 var(--mono);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8a9a8f;
}
.doc-fig dd {
  margin-top: 10px;
  font-weight: 900;
  font-size: 27px;
  letter-spacing: -1px;
  color: #fff;
}
@media (max-width: 560px) {
  .doc-figures {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .doc-title {
    font-size: 33px;
    letter-spacing: -1.3px;
  }
}

/* ---- a plain back link ---- */
.doc-back {
  display: inline-block;
  margin-top: 56px;
  font-weight: 800;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}
.doc-back:hover {
  color: var(--ink);
}
