/* Post Pilot — shared site styles
   Aesthetic: calm, confident, editorial. A tool that respects you.
   Deep ink + warm paper + a single confident signal-blue accent. No gradients-on-white slop. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Spline+Sans:wght@400;500;600&display=swap');

:root {
  --ink: #1a1d24;
  --ink-soft: #3d4351;
  --ink-faint: #6b7280;
  --paper: #faf8f4;
  --paper-card: #ffffff;
  --line: #e7e3da;
  --accent: #2f5fe0;
  --accent-deep: #1e3a8a;
  --max: 720px;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Spline Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---- Header / nav ---- */
.site-head {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 10;
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 980px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 600; font-size: 20px; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 9px;
}
.brand .mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--accent); position: relative; flex: none;
}
.brand .mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.45) 46%, transparent 60%);
  border-radius: 7px;
}
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500;
}
.nav-links a:hover { color: var(--accent); }

/* ---- Generic page (legal docs) ---- */
.doc { padding: 56px 0 80px; }
.doc h1 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 38px; letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 10px;
}
.doc .updated { color: var(--ink-faint); font-size: 14px; margin-bottom: 40px; }
.doc h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 22px; letter-spacing: -0.01em;
  margin: 38px 0 12px;
}
.doc p { margin-bottom: 16px; color: var(--ink-soft); }
.doc ul { margin: 0 0 16px 22px; color: var(--ink-soft); }
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--ink); font-weight: 600; }
.doc a { color: var(--accent); }
.callout {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px; margin: 22px 0;
  font-size: 15.5px; color: var(--ink-soft);
}

/* ---- Footer ---- */
.site-foot {
  border-top: 1px solid var(--line);
  padding: 34px 0; margin-top: 40px;
  font-size: 14px; color: var(--ink-faint);
}
.site-foot .wrap {
  max-width: 980px; display: flex; flex-wrap: wrap; gap: 8px 24px;
  align-items: center; justify-content: space-between;
}
.site-foot a { color: var(--ink-soft); text-decoration: none; }
.site-foot a:hover { color: var(--accent); }
.site-foot .links { display: flex; gap: 20px; flex-wrap: wrap; }
