/* b-trim — light, restrained, editorial. */

:root {
  --bg:        #ffffff;
  --text:      #111111;
  --muted:     #5a5a5a;
  --faint:     #8a8a8a;
  --line:      #e6e6e6;
  --line-soft: #f0f0f0;
  --link:      #111111;
  --max:       760px;
  --max-wide:  920px;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--link); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }

img, video { max-width: 100%; display: block; }

p { color: var(--text); }
em { font-style: italic; color: var(--text); }
strong { font-weight: 600; }
code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.92em; padding: 1px 4px; background: var(--line-soft); border-radius: 3px; }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.site-header > * { display: flex; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 40px);
}
.logo {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}
.logo .dot { color: var(--text); }
.logo.small { font-size: 14px; }

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header nav a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}
.site-header nav a:hover { color: var(--text); }
.site-header nav a.nav-cta {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.site-header nav a.nav-cta:hover { text-decoration-thickness: 2px; }

/* ---------- Sections (shared) ---------- */
section {
  padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 40px);
}
.section-head {
  max-width: var(--max);
  margin: 0 auto clamp(28px, 4vw, 48px);
}
.eyebrow { display: none; }    /* removed — restraint */
.dot-sep { display: none; }    /* removed */
.grad { color: inherit; background: none; }   /* neutralise */

h1, h2, h3 {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(26px, 3.6vw, 34px);
  line-height: 1.18;
  margin-bottom: 6px;
}
h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.section-head p { color: var(--muted); max-width: 60ch; }

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(36px, 5vw, 64px);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.hero h1 br { display: none; }   /* one flowing line */
.lede {
  margin-top: 22px;
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 60ch;
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 28px;
  font-size: 14px;
  color: var(--faint);
}
.hero-meta span + span::before {
  content: " — ";
  color: var(--faint);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 0;
  border: 1px solid var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.12s, color 0.12s;
  background: var(--bg);
  color: var(--text);
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { background: #000; }
.btn-ghost { background: var(--bg); color: var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Demo ---------- */
.demo {
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 80px);
}
.demo-wrap {
  max-width: var(--max-wide);
  margin: 0 auto;
}
.demo-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.demo-frame img,
.demo-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.demo-caption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--faint);
}

/* ---------- How it works ---------- */
.how .section-head h2,
.features .section-head h2,
.pricing .section-head h2,
.faq .section-head h2 { /* left-aligned section heads */ }

.steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 12px;
  row-gap: 4px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  color: var(--faint);
  font-weight: 500;
}
.step h3 { grid-column: 2; margin-bottom: 0; }
.step p  { grid-column: 2; color: var(--muted); }

/* ---------- Features ---------- */
.features-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
.feat {
  background: transparent;
  border: 0;
  padding: 0;
}
.feat svg {
  width: 22px;
  height: 22px;
  color: var(--text);
  margin-bottom: 12px;
  display: block;
}
.feat h3 { margin-bottom: 4px; }
.feat p { color: var(--muted); font-size: 15.5px; }

/* ---------- Pricing ---------- */
.pricing-card {
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--line);
  padding: 32px 28px 26px;
  background: var(--bg);
}
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}
.price {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}
.price-period {
  font-size: 14px;
  color: var(--faint);
}
.price-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.price-features li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--line-soft);
}
.price-features li:last-child { border-bottom: 0; }
.price-features li::before {
  content: "";
  margin-right: 0;
}
.price-fineprint {
  margin-top: 14px;
  font-size: 13px;
  color: var(--faint);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: var(--max);
  margin: 0 auto;
}
details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq-list details:last-of-type { border-bottom: 1px solid var(--line); }
details summary {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 28px;
  cursor: pointer;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 18px;
  color: var(--faint);
}
details[open] summary::after { content: "–"; }
details summary:hover { color: var(--muted); }
details p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 64ch;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px clamp(20px, 5vw, 40px);
  margin-top: 24px;
}
.foot-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-brand p {
  margin-top: 6px;
  font-size: 14px;
  color: var(--faint);
  max-width: 36ch;
}
.foot-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--faint);
  text-align: right;
}
.foot-meta a { color: var(--muted); text-decoration: none; }
.foot-meta a:hover { color: var(--text); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-header nav { gap: 18px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
  .foot-meta { text-align: left; }
}
