/* Shared shell for the public content pages (privacy, terms, about, pricing). */

.page-nav {
  display: flex; align-items: center; gap: 14px;
  padding: 0 26px; height: 58px; max-width: 1060px; margin: 0 auto;
}
.page-nav .spacer { flex: 1; }
.page-nav a.navlink { font-size: 13.5px; color: var(--ink-soft); }
.page-nav a.navlink:hover { color: var(--ink); }

.doc { max-width: 720px; margin: 0 auto; padding: 44px 26px 90px; }
.doc h1 { font-size: clamp(26px, 4vw, 34px); letter-spacing: -0.02em; margin-bottom: 8px; }
.doc .updated { color: var(--muted); font-size: 12.5px; margin-bottom: 34px; }
.doc h2 {
  font-size: 17px; font-weight: 580; margin: 34px 0 10px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.doc h2:first-of-type { border-top: none; padding-top: 0; }
.doc h3 { font-size: 14.5px; font-weight: 600; margin: 20px 0 6px; }
.doc p, .doc li { font-size: 14.5px; line-height: 1.68; color: var(--ink-soft); }
.doc p { margin-bottom: 13px; }
.doc ul, .doc ol { margin: 0 0 14px 20px; }
.doc li { margin-bottom: 7px; }
.doc strong { color: var(--ink); font-weight: 580; }
/* Link colour applies to prose links only. Buttons carry their own colour and
   are more specific than `.btn-primary`, so without :not() the CTA renders
   blue-on-black. */
.doc a:not(.btn) { color: var(--accent); }
.doc a:not(.btn):hover { text-decoration: underline; }
.doc a.btn-primary { color: #fff; }
.doc a.btn-quiet, .doc a.btn-ghost { color: var(--ink-soft); }
.doc .lead { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 30px; }
.doc table.data { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 13.5px; }
.doc table.data th {
  text-align: left; font-size: 11px; letter-spacing: .09em; text-transform: uppercase;
  color: var(--muted); padding: 9px 12px 9px 0; border-bottom: 1px solid var(--line);
}
.doc table.data td {
  padding: 11px 12px 11px 0; border-bottom: 1px solid var(--line);
  vertical-align: top; color: var(--ink-soft);
}
.doc .callout {
  background: var(--bg); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0; padding: 14px 16px; margin: 0 0 20px;
}
.doc .callout p:last-child { margin-bottom: 0; }

/* Pricing */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin: 8px 0 40px; }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 26px; }
.tier.featured { border-color: var(--ink); box-shadow: 0 10px 34px rgba(28,26,23,.08); }
.tier .name { font-size: 12px; font-weight: 640; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); }
.tier .price { font-size: 34px; font-weight: 600; letter-spacing: -0.03em; margin: 10px 0 2px; }
.tier .price small { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.tier .note { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.tier ul { list-style: none; margin: 0 0 22px; }
.tier li { font-size: 13.5px; color: var(--ink-soft); padding: 6px 0 6px 22px; position: relative; }
.tier li::before {
  content: ""; position: absolute; left: 3px; top: 12px; width: 8px; height: 4px;
  border-left: 1.8px solid var(--ok); border-bottom: 1.8px solid var(--ok);
  transform: rotate(-45deg);
}
.tier li.no { color: var(--muted); }
.tier li.no::before { border-color: var(--faint); transform: none; top: 14px;
  width: 8px; height: 0; border-left: none; border-bottom: 1.8px solid var(--faint); }

.faq { margin-top: 10px; }
.faq h3 { margin-top: 22px; }

.site-footer {
  border-top: 1px solid var(--line); padding: 30px 26px 44px; text-align: center;
  color: var(--muted); font-size: 12.5px; margin-top: 80px;
}
.site-footer nav { margin-bottom: 10px; display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; }
.site-footer nav a { color: var(--ink-soft); }
.site-footer nav a:hover { color: var(--ink); text-decoration: underline; }
.site-footer .fine { margin-top: 12px; font-size: 11.5px; }
