:root {
  --ink: #111;
  --muted: #666;
  --accent: #9929ea;
  --panel: #f6f6f6;
  --bg: #ffffff;
  --card-border: #ddd;
  --warn-bg: #b91c1c;
  --warn-ink: #ffffff;
  --good: #1a7f37;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8e8e8;
    --muted: #9a9a9a;
    --panel: #1b1b1f;
    --bg: #121214;
    --card-border: #333;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.section { padding: 48px 0; }
.section h2 { font-size: 28px; margin: 0 0 8px; }
.section > .container > p.lede { color: var(--muted); margin-top: 0; }
.muted { color: var(--muted); }
.panel { background: var(--panel); border: 1px solid var(--card-border); border-radius: 10px; padding: 20px; }
.pill-btn {
  display: inline-block; background: #000; color: #fff; text-decoration: none;
  border: 1px solid #000; border-radius: 25px; padding: 13px 25px; font-size: 16px;
}
@media (prefers-color-scheme: dark) {
  .pill-btn { background: #fff; color: #000; border-color: #fff; }
}
a { color: var(--accent); }
html { scroll-behavior: smooth; }

/* Disclaimer bar, header, hero, stats */
.disclaimer-bar {
  background: var(--warn-bg); color: var(--warn-ink);
  text-align: center; padding: 8px 16px; font-size: 14px;
}
.disclaimer-bar strong { text-decoration: underline; }
.site-header { border-bottom: 1px solid var(--card-border); position: sticky; top: 0; background: var(--bg); z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
.wordmark { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: bold; }
.wordmark em { color: var(--accent); font-style: normal; }
.site-header nav { display: flex; gap: 14px; flex-wrap: wrap; font-size: 14px; }
.site-header nav a { color: var(--ink); text-decoration: none; }
.site-header nav a:hover { color: var(--accent); }
.hero { padding: 56px 0 32px; }
.hero h1 { font-size: 40px; margin: 0 0 16px; }
.hero-sub { font-size: 18px; max-width: 46em; }
.hero-form { margin-top: 24px; max-width: 560px; }
.hero-form label { font-weight: bold; display: block; margin-bottom: 10px; }
.form-row { display: flex; gap: 10px; flex-wrap: wrap; }
.form-row input {
  flex: 1; min-width: 200px; font-size: 16px; padding: 12px 14px;
  border: 1px solid var(--card-border); border-radius: 25px; background: var(--bg); color: var(--ink);
}
.form-note { font-size: 13px; margin: 10px 0 0; }
.stats { background: var(--panel); border-block: 1px solid var(--card-border); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat-num { display: block; font-size: 34px; font-weight: bold; color: var(--accent); }
.stat-label { font-size: 14px; color: var(--muted); }
@media (max-width: 700px) {
  .hero h1 { font-size: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Steps + timeline */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { position: relative; }
.step-num {
  display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--accent); color: #fff; font-weight: bold; margin-bottom: 8px;
}
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { margin: 0; font-size: 15px; }
.timeline-wrap { overflow-x: auto; }
.timeline-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px; }
.timeline-table th, .timeline-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--card-border); vertical-align: top; }
.timeline-table th { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.timeline-table td:last-child { color: var(--accent); font-weight: bold; white-space: nowrap; }
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; } }

/* Email cards */
.email-card { border: 1px solid var(--card-border); border-radius: 10px; margin: 18px auto; max-width: 720px; overflow: hidden; }
.email-head { background: var(--panel); padding: 14px 18px; border-bottom: 1px solid var(--card-border); }
.email-head h3 { margin: 6px 0 4px; font-size: 17px; }
.email-meta { margin: 0; font-size: 13px; color: var(--muted); }
.email-tag { display: inline-block; font-size: 11px; font-weight: bold; text-transform: uppercase; letter-spacing: .05em; padding: 2px 10px; border-radius: 12px; }
.email-tag.them { background: var(--accent); color: #fff; }
.email-tag.us { background: var(--good); color: #fff; }
.email-body { padding: 4px 18px 14px; font-size: 15px; }
.receipt-line { display: flex; justify-content: space-between; gap: 16px; border-block: 1px dotted var(--card-border); padding: 10px 0; margin: 12px 0; }
.receipt-line .price { color: var(--accent); font-weight: bold; white-space: nowrap; }
.small { font-size: 13px; }
.fake-btn { display: inline-block; background: #000; color: #fff; border-radius: 25px; padding: 10px 22px; font-size: 15px; }
@media (prefers-color-scheme: dark) { .fake-btn { background: #fff; color: #000; } }
.thread-title { margin: 40px 0 4px; font-size: 22px; }

/* Their words, what-to-do, footer */
.words-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.words-col h3 { margin-top: 0; }
.words-col ul { margin: 0; padding-left: 20px; }
.words-col li { margin-bottom: 10px; font-size: 15px; }
.todo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.todo-grid h3 { margin-top: 0; font-size: 17px; }
.todo-grid ul { padding-left: 20px; margin: 0; }
.site-footer { border-top: 1px solid var(--card-border); background: var(--panel); padding: 32px 0; font-size: 14px; margin-top: 24px; }
@media (max-width: 700px) { .words-grid, .todo-grid { grid-template-columns: 1fr; } }
