:root {
  --bg: #faf7f4;
  --card: #ffffff;
  --ink: #1c1714;
  --mute: #6b625b;
  --accent: #e8631f;
  --accent-ink: #ffffff;
  --line: #ece5df;
  --wash: #f3ede7;
  --good: #3e8e5a;
  --warn: #c07a1f;
  --bad: #c8442c;
  --good-wash: #e7f2ea;
  --warn-wash: #f7ecd9;
  --bad-wash: #f9e6e0;
  --maxw: 860px;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #171310;
    --card: #211c17;
    --ink: #f2ece5;
    --mute: #a89c91;
    --accent: #f07a35;
    --line: #322a23;
    --wash: #26201a;
    --good: #6fbf8d;
    --warn: #e0a54e;
    --bad: #e57757;
    --good-wash: #1e2b22;
    --warn-wash: #2e2618;
    --bad-wash: #301d17;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 var(--sans);
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px 72px; }

header.site {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 22px; max-width: var(--maxw); margin: 0 auto;
}
header.site img.mark { width: 28px; height: 28px; border-radius: 7px; display: block; }
header.site .brand { font-weight: 800; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
nav.site { margin-left: auto; display: flex; gap: 18px; }
nav.site a { color: var(--mute); text-decoration: none; font-size: 15px; }
nav.site a:hover, nav.site a:focus-visible { color: var(--accent); }

a { color: var(--accent); }
a:focus-visible, .btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { text-wrap: balance; letter-spacing: -0.02em; }
h1 { font-size: clamp(34px, 5.4vw, 46px); line-height: 1.12; margin: 18px 0 0; font-weight: 800; }
h2 { font-size: 26px; margin: 0 0 6px; font-weight: 750; }
h3 { font-size: 18px; margin: 0 0 4px; }
section { margin: 64px 0 0; }
.kicker {
  font: 600 12px/1 var(--mono);
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); margin: 0 0 12px;
}
.prose { max-width: 640px; }
.prose p { margin: 12px 0; }
.muted { color: var(--mute); }
.footnote { font-size: 14.5px; }

/* Hero */
.hero { padding-top: 40px; }
.hero .identity { font-size: 20px; line-height: 1.6; max-width: 680px; margin: 18px 0 0; }
.hero .identity strong { font-weight: 700; }
.hero .sub { color: var(--mute); max-width: 680px; margin: 10px 0 0; }
.cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 26px 0 0; }
.btn {
  display: inline-block; background: var(--accent); color: var(--accent-ink);
  text-decoration: none; padding: 13px 24px; border-radius: 12px; font-weight: 650;
}
.cta-note { font: 500 13px/1.5 var(--mono); color: var(--mute); }

/* Fact sheet */
.factsheet {
  margin: 48px 0 0;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden;
}
.factsheet .head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--wash);
  font: 600 12px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.12em;
}
.factsheet .head .upd { color: var(--mute); letter-spacing: 0.06em; text-transform: none; }
.factsheet dl {
  margin: 0; padding: 8px 0;
  display: grid; grid-template-columns: 160px 1fr; column-gap: 20px;
}
.factsheet dt {
  font: 600 13px/1.5 var(--mono); color: var(--mute);
  padding: 9px 0 9px 20px; border-top: 1px solid var(--line);
}
.factsheet dd {
  margin: 0; padding: 9px 20px 9px 0; font-size: 15.5px;
  border-top: 1px solid var(--line);
}
.factsheet dt:first-of-type, .factsheet dd:first-of-type { border-top: none; }
@media (max-width: 560px) {
  .factsheet dl { grid-template-columns: 1fr; }
  .factsheet dt { padding-bottom: 0; }
  .factsheet dd { border-top: none; padding-left: 20px; padding-top: 2px; }
}

/* Screenshot strip */
.shots { margin-top: 48px; }
.shots .row {
  display: flex; gap: 18px; overflow-x: auto; padding: 4px 2px 14px;
  scroll-snap-type: x proximity;
}
.shots figure { margin: 0; flex: 0 0 auto; width: 200px; scroll-snap-align: start; }
.shots img {
  width: 100%; height: auto; display: block; border-radius: 18px;
  border: 1px solid var(--line);
}
.shots figcaption { font: 500 12.5px/1.5 var(--mono); color: var(--mute); margin-top: 8px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.step .n { font: 700 13px/1 var(--mono); color: var(--accent); display: block; margin-bottom: 10px; }
.step p { margin: 6px 0 0; font-size: 15.5px; color: var(--mute); }
.step h3 { color: var(--ink); }

/* Tables */
.tablewrap { overflow-x: auto; margin-top: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: 15px; }
caption { text-align: left; padding: 14px 18px 4px; font-weight: 650; font-size: 15px; caption-side: top; }
th, td { text-align: left; padding: 10px 18px; border-top: 1px solid var(--line); vertical-align: top; }
thead th {
  border-top: none; font: 600 12px/1.4 var(--mono);
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--mute);
  padding-top: 14px;
}
td.num { font-family: var(--mono); font-size: 14px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pill {
  display: inline-block; font: 650 11.5px/1 var(--mono); letter-spacing: 0.06em;
  padding: 5px 9px; border-radius: 999px; white-space: nowrap;
}
.pill.good { color: var(--good); background: var(--good-wash); }
.pill.bad  { color: var(--bad);  background: var(--bad-wash); }
.pill.warn { color: var(--warn); background: var(--warn-wash); }
.yes { color: var(--good); font-weight: 650; }
.no  { color: var(--mute); }

/* Feature list */
ul.features { padding-left: 0; list-style: none; margin: 20px 0 0; max-width: 680px; }
ul.features li { padding: 12px 0 12px 26px; border-top: 1px solid var(--line); position: relative; }
ul.features li:first-child { border-top: none; }
ul.features li::before {
  content: ""; position: absolute; left: 4px; top: 22px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--accent);
}
ul.features strong { font-weight: 650; }

/* Watch split */
.split { display: grid; grid-template-columns: 1fr 220px; gap: 32px; align-items: center; margin-top: 20px; }
@media (max-width: 640px) { .split { grid-template-columns: 1fr; } .split .shot { justify-self: center; } }
.split .shot img { width: 220px; height: auto; border-radius: 18px; border: 1px solid var(--line); display: block; }

/* Not-for list */
ul.notfor { padding-left: 0; list-style: none; margin: 20px 0 0; max-width: 680px; }
ul.notfor li { padding: 10px 0; border-top: 1px solid var(--line); }
ul.notfor li:first-child { border-top: none; }
ul.notfor .want { font-weight: 650; }
ul.notfor .ans { color: var(--mute); }

/* Pricing */
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; margin-top: 20px; max-width: 680px;
}
.price-line { font-size: 22px; font-weight: 750; letter-spacing: -0.01em; }
.price-line .per { color: var(--mute); font-weight: 500; font-size: 16px; }
.price-card p { margin: 10px 0 0; color: var(--mute); font-size: 15.5px; }

/* FAQ */
.faq { max-width: 680px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 16px 0; font-weight: 650; font-size: 16.5px;
  list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--accent); font-weight: 600; }
.faq details[open] summary::after { content: "-"; }
.faq details p { margin: 0 0 16px; color: var(--mute); }

footer.site {
  max-width: var(--maxw); margin: 72px auto 0; padding: 28px 22px 48px;
  color: var(--mute); font-size: 14px; border-top: 1px solid var(--line);
  display: flex; gap: 18px; flex-wrap: wrap;
}
footer.site .spacer { margin-left: auto; }
footer.site a { color: var(--mute); text-decoration: none; }
footer.site a:hover, footer.site a:focus-visible { color: var(--accent); }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
