/* Shared styling for the text pages: privacy, terms, the reel offer. */
:root {
  --ink: #111;
  --muted: #6f6f6f;
  --line: #ededed;
  --bg: #f5f5f5;
  --card: #fff;
  --col: 640px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.topbar { position: absolute; left: 32px; top: 28px; }
.wordmark { text-decoration: none; font-weight: 600; letter-spacing: -0.02em; }
.wordmark:hover { color: var(--muted); }

.doc {
  max-width: var(--col);
  margin: 0 auto;
  padding: 128px 24px 24px;
}
.doc h1 { font-size: 30px; font-weight: 600; letter-spacing: -0.03em; margin: 0 0 14px; }
.doc h2 {
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin: 40px 0 10px; padding-top: 20px; border-top: 1px solid var(--line);
}
.doc p, .doc li { color: var(--muted); }
.doc strong { color: var(--ink); font-weight: 600; }
.doc .lede { margin: 0 0 8px; max-width: 30em; }
.doc ul, .doc ol { padding-left: 20px; margin: 0 0 14px; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--ink); text-decoration: none; border-bottom: 1px solid #d9d9d9; }
.doc a:hover { border-color: var(--ink); }
.meta { font-size: 13px; margin-top: 32px; }
.back { margin: 32px 0 0; }
.button {
  display: inline-flex; align-items: center; height: 36px; padding: 0 16px;
  border-radius: 999px; background: var(--ink); color: #fff;
  text-decoration: none; border: 0; font-size: 14px; font-weight: 600;
  transition: transform .15s ease;
}
.button:hover { transform: translateY(-1px); border: 0; }
/* .doc a is more specific than .button, so say it again for buttons inside prose */
.doc a.button { color: #fff; border-bottom: 0; }
.doc a.button:hover { border-bottom: 0; }
.button:active { transform: scale(.98); }

footer {
  max-width: var(--col); margin: 0 auto;
  padding: 40px 24px 56px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}
footer nav { display: flex; gap: 18px; }
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

@media (max-width: 700px) {
  .topbar { position: static; padding: 20px 20px 0; }
  .doc { padding-top: 40px; }
  .doc h1 { font-size: 26px; }
}

/* ---------- thank-you page ---------- */
.kicker {
  margin: 0 0 10px; font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.kicker::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: #78907b;
}
.steps { list-style: none; counter-reset: step; padding: 0; margin: 28px 0 0; }
.steps li {
  counter-increment: step;
  position: relative; padding: 16px 0 16px 40px;
  border-top: 1px solid var(--line); color: var(--muted);
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 15px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 600;
  display: grid; place-items: center;
}
.steps strong { color: var(--ink); font-weight: 600; display: block; }
.steps em { font-style: normal; color: var(--ink); }
