/* Baseline — marketing + legal site.
   No build step, one stylesheet, one generation. Palette mirrors the app: a monochrome
   page with a single ember accent, used sparingly enough that it still means something. */

:root {
  --ember: #ff6b47;
  --ember-deep: #b83319;
  --ink: #1a0f0b;
  --ink-soft: #6b5a52;
  --paper: #fbf7f4;
  --line: #ece2dc;
  --max: 1040px;
  font-synthesis: none;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ---- nav ---- */
nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 22px 24px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.02em; font-size: 17px; }
.brand img { border-radius: 8px; }
nav .links { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 500; }
nav .links a:not(.cta-small):hover { color: var(--ember-deep); }
.cta-small {
  background: var(--ink); color: #fff; padding: 9px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px; transition: background .15s ease;
}
.cta-small:hover { background: var(--ember-deep); }

/* ---- hero ---- */
.hero { padding: 52px 0 0; text-align: center; }
.hero h1 {
  font-size: clamp(36px, 5.4vw, 56px); line-height: 1.05;
  letter-spacing: -0.035em; font-weight: 800;
  max-width: 22ch; margin: 0 auto 20px;
}
.lede {
  font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft);
  max-width: 40ch; margin: 0 auto 30px;
}
.badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  padding: 15px 26px; border-radius: 999px; font-weight: 600; font-size: 16px;
  transition: transform .15s ease, background .15s ease;
}
.badge:hover { transform: translateY(-1px); background: #000; }
.badge svg { width: 20px; height: 20px; }
.fineprint { margin-top: 14px; font-size: 14px; color: var(--ink-soft); }

/* The screenshot, cropped in CSS to the one thing that matters: the score and the
   sentence under it. The full-height capture stays in the file, so restoring more of
   the screen is a one-number change here rather than a re-export. */
.shot { margin: 44px auto 0; max-width: 560px; }
.shot img {
  width: 100%; aspect-ratio: 560 / 366; object-fit: cover; object-position: top center;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -1px 0 rgba(0,0,0,0.04), 0 22px 50px rgba(90, 40, 20, 0.15);
}
.shot figcaption {
  font-size: 14.5px; color: var(--ink-soft);
  padding: 18px 0 40px;
}

/* ---- what it does ---- */
.what { padding: 72px 0; border-top: 1px solid var(--line); }
.section-title {
  font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -0.025em; line-height: 1.12;
  margin-bottom: 30px; max-width: 20ch;
}
.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.feature-list li { padding: 24px 0; border-top: 1px solid var(--line); }
.feature-list h3 { font-size: 17px; letter-spacing: -0.012em; margin-bottom: 6px; }
.feature-list p { color: var(--ink-soft); font-size: 15.5px; max-width: 44ch; }
.feature-list em { font-style: italic; color: var(--ink); }

/* ---- pull quote ---- */
.quote { padding: 76px 0; border-top: 1px solid var(--line); text-align: center; }
.pull {
  font-size: clamp(26px, 4vw, 40px); letter-spacing: -0.03em; line-height: 1.2;
  font-weight: 700; max-width: 18ch; margin: 0 auto 16px;
}
.attrib { color: var(--ink-soft); font-size: 16.5px; }

/* ---- privacy ---- */
.privacy-band { background: #14100e; color: #fff; padding: 76px 0; text-align: center; }
.privacy-band h2 { font-size: clamp(25px, 3.2vw, 34px); letter-spacing: -0.025em; max-width: 26ch; margin: 0 auto 20px; }
.privacy-band p { max-width: 54ch; margin: 0 auto 16px; opacity: 0.78; font-size: 16.5px; }
.privacy-band .caveat { font-size: 15px; opacity: 0.6; }
.pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.pill {
  border: 1px solid rgba(255,255,255,0.22); border-radius: 999px;
  padding: 8px 16px; font-size: 13.5px; opacity: 0.85;
}
.privacy-band .more { margin-top: 30px; }
.privacy-band .more a { color: var(--ember); font-weight: 600; }
.privacy-band .more a:hover { text-decoration: underline; }

/* ---- footer ---- */
footer { padding: 44px 0 56px; border-top: 1px solid var(--line); }
footer .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 22px;
}
footer .foot { display: flex; gap: 22px; font-size: 15px; color: var(--ink-soft); }
footer .foot a:hover { color: var(--ink); }
.fine { font-size: 13px; color: var(--ink-soft); opacity: 0.85; max-width: 78ch; }

/* ---- legal pages ---- */
.legal { padding: 48px 0 80px; }
.legal .back { font-size: 15px; color: var(--ink-soft); display: inline-block; margin-bottom: 28px; }
.legal .back:hover { color: var(--ink); }
.legal h1 { font-size: clamp(32px, 5vw, 44px); letter-spacing: -0.03em; margin-bottom: 10px; }
.legal .updated { color: var(--ink-soft); font-size: 15px; margin-bottom: 44px; }
.legal h2 {
  font-size: 20px; letter-spacing: -0.015em; margin: 40px 0 12px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal h3 { font-size: 16.5px; margin: 26px 0 6px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 16px; max-width: 68ch; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--ember-deep); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--ink); font-weight: 650; }
.callout {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--ember);
  border-radius: 12px; padding: 18px 20px; margin: 22px 0;
}
.callout p { margin: 0; }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 32px 0 60px; }
  .hero-shot { order: -1; }
  .hero-shot img { margin: 0 auto; max-width: 268px; }
  .what { padding: 60px 0; }
  .quote { padding: 60px 0; }
  .feature-list { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 560px) {
  nav { padding: 16px 20px; }
  nav .links { gap: 16px; font-size: 14px; }
  nav .links a:not(.cta-small) { display: none; }
  .wrap { padding: 0 20px; }
  footer .row { flex-direction: column; align-items: flex-start; }
  .privacy-band { padding: 60px 0; }
}
