/* ── Homepage-only sections (loaded after style.css on index.html) ── */

.section { padding: 70px 20px; }
.section-narrow { width: min(760px, 100%); margin: 0 auto; }
.section-wide   { width: min(1000px, 100%); margin: 0 auto; }
.center { text-align: center; }

.section h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.section .lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 44px;
}

/* ── Trust strip (honest signals, no fake numbers) ──────── */
.trust-strip {
  border-top: 1px solid var(--card-line);
  border-bottom: 1px solid var(--card-line);
  background: #fafafb;
}
.trust-inner {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  padding: 22px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #4a4f57;
}
.trust-inner span { display: inline-flex; align-items: center; gap: 8px; }
.trust-inner svg { color: var(--accent); flex: none; }

/* ── How it works ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #101114;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 9px; }
.step p  { font-size: 13px; line-height: 1.6; color: var(--muted); }
.step kbd {
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 12px;
  background: #eef7fa;
  border: 1px solid #c9dde6;
  border-radius: 6px;
  padding: 1px 7px;
  color: #1d3742;
}

/* ── Privacy / local-OCR differentiator ─────────────────── */
.privacy-band {
  background: #0e1320;
  color: #fff;
}
.privacy-inner {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: center;
}
.privacy-lock {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(15, 210, 238, .12);
  border: 1px solid rgba(15, 210, 238, .35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.privacy-lock svg { color: var(--cyan); }
.privacy-inner h2 { margin-bottom: 12px; }
.privacy-inner p {
  color: #aab2c0;
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 620px;
}
.privacy-inner a { color: var(--cyan); font-weight: 600; }
.privacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 16px;
  font-size: 13px;
  color: #d4dae3;
}
.privacy-points span { display: inline-flex; align-items: center; gap: 7px; }
.privacy-points svg { color: var(--cyan); }

/* ── Comparison table ───────────────────────────────────── */
.compare-table {
  width: min(820px, 100%);
  margin: 0 auto;
  border: 1px solid var(--card-line);
  border-radius: 16px;
  overflow: hidden;
  font-size: 14px;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
}
.compare-row + .compare-row { border-top: 1px solid var(--card-line); }
.compare-row > div { padding: 14px 18px; text-align: center; }
.compare-row > div:first-child { text-align: left; font-weight: 500; }
.compare-head {
  background: #fafafb;
  font-weight: 700;
}
.compare-head .col-premium { color: var(--cyan-dark); }
.compare-row .col-premium { background: rgba(15, 210, 238, .05); }
.tick  { color: #1fb771; font-weight: 700; }
.cross { color: #cdd0d6; font-weight: 700; }
.compare-note {
  text-align: center;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ── Testimonials (real, verifiable posts) ──────────────── */
.tweet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.tweet {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--card-line);
  border-radius: 16px;
  padding: 20px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.tweet:hover { box-shadow: 0 14px 34px rgba(30, 35, 60, .08); transform: translateY(-2px); }
.tweet-head { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
.tweet-pfp {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #1872fc, #0fd2ee);
  flex: none;
}
.tweet-name { font-size: 13.5px; font-weight: 700; line-height: 1.2; }
.tweet-handle { font-size: 12.5px; color: var(--muted); }
.tweet-src { margin-left: auto; color: #1d9bf0; }
.tweet-src.li { color: #0a66c2; }
.tweet p { font-size: 13.5px; line-height: 1.6; color: #2a2e35; }
.tweet p .tag { color: var(--accent); }
.tweet-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--card-line);
  font-size: 12px;
  color: var(--muted);
}
.testi-placeholder {
  width: min(1000px, 100%);
  margin: 18px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

/* ── macOS waitlist ─────────────────────────────────────── */
.waitlist {
  width: min(620px, 100%);
  margin: 0 auto;
  text-align: center;
}
.waitlist .pill { background: #ece8fb; color: #6b4ee6; }
.waitlist-form {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}
.waitlist-form input {
  flex: 1;
  font-family: inherit;
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #e3e5ea;
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
}
.waitlist-form input:focus { border-color: var(--accent); background: #fff; }
.waitlist-msg { font-size: 13px; min-height: 18px; margin-top: 12px; color: var(--muted); }
.waitlist-msg.ok  { color: #1fb771; }
.waitlist-msg.err { color: #d44; }

/* ── Money-back reassurance under CTA ───────────────────── */
.cta-guarantee {
  margin-top: 18px;
  font-size: 12.5px;
  color: #9aa1ab;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-guarantee svg { color: var(--cyan); }

/* Featured "hero" feature card — breaks the flat 9-card wall */
.grid .feat-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 32px;
  background: linear-gradient(135deg, #f2f8ff 0%, #ecfcff 100%);
  border: 1px solid #d3e9f5;
}
.feat-hero .fh-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.feat-hero h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.feat-hero p  { font-size: 14.5px; line-height: 1.65; color: #44505f; }
.fh-demo {
  background: #0b1220;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 44px rgba(20, 30, 60, .25);
}
.fh-demo .fh-dim {
  border: 2px dashed var(--cyan);
  border-radius: 10px;
  padding: 14px 16px;
  color: #d7f6fc;
  font-size: 13px;
  line-height: 1.5;
  background: rgba(15, 210, 238, .06);
}
.fh-demo .fh-cap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8fa0b3;
}

/* Feature-card icons (inline SVG placeholders until brand icons land) */
.card-icon svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  .steps, .tweet-grid { grid-template-columns: 1fr; }
  .grid .feat-hero { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .privacy-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .privacy-points { justify-content: center; }
  .compare-row { grid-template-columns: 1.4fr .8fr .8fr; font-size: 12.5px; }
  .compare-row > div { padding: 12px 10px; }
  .waitlist-form { flex-direction: column; }
}
