/* Kept marketing site.
 *
 * The palette, the radii and the type scale are the app's, so the site and the
 * product read as one thing. The register is louder: bigger headlines, more
 * air, one dark section. Everything else stays hairline borders on warm
 * neutrals, and colour still carries status only.
 *
 * No build step. One stylesheet, one page, fonts from Google. */

:root {
  --canvas: #fafaf8;
  --surface: #ffffff;
  --surface-hover: #f5f4f1;
  --surface-active: #efeee9;
  --border: rgba(26, 26, 24, 0.10);
  --border-strong: rgba(26, 26, 24, 0.17);
  --ink: #1a1a18;
  --ink-secondary: #454440;
  --muted: #555451;
  --muted-2: #6e6c65;
  --twotone-soft: #76736d;

  --status-done: #197e56;
  --status-done-bg: #e9f5ef;
  --status-review: #946520;
  --status-review-bg: #f9f1e3;

  --radius-card: 8px;
  --radius-control: 6px;
  --radius-pill: 999px;

  --sans: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --gutter: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--status-review);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Keyboard users land on this before the header. */
.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-control);
  z-index: 60;
}
.skip:focus { left: 12px; }

/* The reading column. Every section on the page wears this, usually together
   with a second class that sets its vertical rhythm.
 *
 * Anything worn alongside .wrap must set its vertical padding with
 * padding-block, never the padding shorthand. The shorthand resets all four
 * sides, so `.section { padding: 88px 0 }` silently cancels the gutters set
 * here and the text runs to both edges of the screen. It hides on a wide
 * screen, where the column is centred inside a max-width and the missing 24px
 * disappears into a 160px margin, and it is obvious on a phone. */
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap.narrow { max-width: 780px; }

/* The wordmark. Fraunces with its softness axis pushed stands in for Kefir
   until that licence is bought; the app does the same. */
.wm {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-weight: 600;
  font-size: 25px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}

/* ── Header ─────────────────────────────────────────────────────────── */
.head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--canvas) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}
.head-in {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}
.head-nav {
  display: flex;
  gap: 24px;
  margin: 0 auto;
  font-size: 14.5px;
}
.head-nav a { color: var(--muted); text-decoration: none; }
.head-nav a:hover { color: var(--ink); }
.head-cta { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.lnk { font-size: 14.5px; color: var(--muted); text-decoration: none; }
.lnk:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 14.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms var(--ease);
}
.btn:hover { background: #333330; }
.btn-lg { height: 46px; padding: 0 22px; font-size: 15.5px; }
.btn-quiet {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-quiet:hover { background: var(--surface-hover); }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { padding-block: 72px 8px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 13px 5px 5px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  transition: background 150ms var(--ease);
}
.eyebrow:hover { background: var(--surface-hover); }
.eyebrow-tag {
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  background: var(--status-done-bg);
  color: var(--status-done);
  font-size: 12px;
  font-weight: 500;
}

h1 {
  margin: 26px 0 0;
  font-size: clamp(34px, 5.6vw, 58px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 17ch;
  text-wrap: pretty;
}
h1 span {
  color: var(--twotone-soft);
  display: block;
  max-width: 26ch;
  margin-top: 0.15em;
}

.lede {
  max-width: 56ch;
  margin: 26px 0 0;
  font-size: 17px;
  color: var(--muted);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta-row.centre { justify-content: center; }

.micro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--muted);
}
.micro li { display: inline-flex; align-items: center; gap: 8px; }
.micro svg {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Placeholders ───────────────────────────────────────────────────
   Every one is obviously unfinished on purpose: a dashed edge, what the
   asset is, and the size and path to drop in. Nothing here should survive
   to launch except the frame around it. */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-card);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0 10px,
      rgba(26, 26, 24, 0.02) 10px 20px
    );
  text-align: center;
  color: var(--muted-2);
}
.ph-mark {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.ph-name { font-size: 15px; color: var(--ink-secondary); }
.ph-spec { font-size: 12.5px; }
.ph-wide { aspect-ratio: 16 / 10; }
.ph-video { aspect-ratio: 16 / 9; margin-top: 26px; }
.ph-play { font-size: 26px; color: var(--muted); }
.ph-logos { min-height: 120px; margin-top: 26px; }
.ph-quote { min-height: 200px; }
.ph-inline {
  display: block;
  width: 100%;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--status-review);
}

.shot { margin: 44px 0 0; }
.shot figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted-2);
  text-align: center;
}

/* ── Sections ───────────────────────────────────────────────────────── */
.section { padding-block: 88px; }
.band { background: var(--surface); border-block: 1px solid var(--border); }

.sec-h {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 20ch;
  text-wrap: balance;
}
.sec-p {
  max-width: 60ch;
  margin: 14px 0 0;
  font-size: 16.5px;
  color: var(--muted);
}
.sec-p + .grid-3, .sec-p + .grid-2, .sec-p + .steps, .sec-p + .faq { margin-top: 44px; }
.sec-h + .grid-3, .sec-h + .faq { margin-top: 44px; }

/* ── Dark statement ─────────────────────────────────────────────────── */
.dark {
  background: var(--ink);
  color: #fff;
  padding: 104px 0;
}
.dark h2 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.24;
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 30ch;
  text-wrap: pretty;
}
.dark h2 span { color: #8a8880; }
.dark h2 + h2 { margin-top: 40px; }

/* ── Grids ──────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
}
.band .card { background: var(--canvas); }
.card h3 { margin: 18px 0 8px; font-size: 17px; font-weight: 500; }
.card p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* The small interface sketches inside a feature card. They are drawn rather
   than screenshotted, so they stay sharp and need no asset. */
.mock {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  background: var(--canvas);
  font-size: 12.5px;
  color: var(--ink-secondary);
  height: 132px;
  overflow: hidden;
}
.band .mock { background: var(--surface); }
.mock-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; }
.mock-go { margin-left: auto; color: var(--muted-2); font-variant-numeric: tabular-nums; }
.mock-line { display: flex; align-items: center; gap: 8px; }
.mock-line b { font-weight: 500; }
.mock-sub { margin-top: 3px; color: var(--muted-2); font-size: 12px; }
.mock-btns { display: flex; gap: 6px; justify-content: flex-end; margin-top: 12px; }
.mini {
  padding: 3px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  font-size: 11.5px;
  background: var(--surface);
}
.mini.solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.mock-chat {
  padding: 7px 10px;
  border-radius: 7px;
  margin-bottom: 7px;
  font-size: 12.5px;
}
.mock-chat.you { background: var(--surface-active); }
.mock-chat.kept { background: transparent; padding-left: 0; }
.mock-log { display: flex; align-items: center; gap: 7px; padding: 4px 0; color: var(--muted); }
.tick { color: var(--status-done); }

.dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.dot.amber { background: var(--status-review); }
.dot.green { background: var(--status-done); }

.chip {
  margin-left: auto;
  padding: 1px 8px;
  border-radius: var(--radius-pill);
  background: var(--surface-active);
  color: var(--muted);
  font-size: 11.5px;
}
.chip.green { background: var(--status-done-bg); color: var(--status-done); }

/* ── Steps ──────────────────────────────────────────────────────────── */
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}
.steps li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.step-n {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-top: 3px;
}
.steps h3 { margin: 0 0 6px; font-size: 19px; font-weight: 500; }
.steps p { margin: 0; max-width: 62ch; font-size: 15.5px; color: var(--muted); }

/* ── Trust ──────────────────────────────────────────────────────────── */
.trust {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--canvas);
}
.trust h3 { margin: 0 0 8px; font-size: 17px; font-weight: 500; }
.trust p { margin: 0; font-size: 14.5px; color: var(--muted); }
.trust b { font-weight: 500; color: var(--ink-secondary); }
.note { margin: 26px 0 0; font-size: 14px; color: var(--muted-2); }

/* ── Systems ────────────────────────────────────────────────────────── */
.systems {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 20px;
  padding: 0;
  list-style: none;
}
.systems li {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 13.5px;
  color: var(--ink-secondary);
}

/* ── Pricing ────────────────────────────────────────────────────────── */
.price {
  max-width: 460px;
  margin-top: 40px;
  padding: 28px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  background: var(--canvas);
}
.price-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.price-amt { font-size: 44px; font-weight: 500; letter-spacing: -0.02em; }
.price-unit { font-size: 15px; color: var(--muted); }
.price-list { margin: 22px 0; padding: 0; list-style: none; }
.price-list li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 15px;
  color: var(--ink-secondary);
  border-top: 1px solid var(--border);
}
.price-list li:first-child { border-top: none; }
.price-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 9px;
  height: 5px;
  border-left: 1.5px solid var(--status-done);
  border-bottom: 1.5px solid var(--status-done);
  transform: rotate(-45deg);
}
.price-note { margin: 14px 0 0; font-size: 13.5px; color: var(--muted-2); }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  font-size: 16.5px;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  margin-left: auto;
  font-size: 20px;
  color: var(--muted-2);
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0 0 20px; max-width: 68ch; font-size: 15.5px; color: var(--muted); }

/* ── Closing call to action ─────────────────────────────────────────── */
.cta-end { text-align: center; }
.cta-end h2 {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.cta-end > p { max-width: 48ch; margin: 14px auto 0; font-size: 16.5px; color: var(--muted); }
.cta-mail { margin: 22px 0 0; font-size: 14.5px; color: var(--muted-2); }

/* ── Footer ─────────────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--border); background: var(--surface); }
.foot-in { display: flex; flex-wrap: wrap; gap: 40px; padding-block: 48px 32px; }
.foot-brand p { margin: 10px 0 0; font-size: 14px; color: var(--muted); max-width: 30ch; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 48px; margin-left: auto; }
.foot-nav h4 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.foot-nav a {
  display: block;
  margin-bottom: 9px;
  font-size: 14.5px;
  color: var(--muted);
  text-decoration: none;
}
.foot-nav a:hover { color: var(--ink); }
.foot-end {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 18px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--muted-2);
}
.foot-end a { margin-left: auto; text-decoration: none; color: var(--muted); }

/* ── Narrow screens ─────────────────────────────────────────────────
   One column below 900px, and the header keeps only the wordmark and the
   one action worth tapping. The page is a single scroll and the footer
   carries every link, so a hamburger would add a control for nothing. */
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .foot-nav { margin-left: 0; gap: 32px; }
}

@media (max-width: 760px) {
  :root { --gutter: 18px; }
  .head-nav, .lnk { display: none; }
  .head-in { height: 58px; }
  .section { padding-block: 60px; }
  .dark { padding: 68px 0; }
  .hero { padding-block: 44px 4px; }
  h1 { max-width: none; }
  h1 span { max-width: none; }
  .steps li { grid-template-columns: 1fr; gap: 6px; }
  .cta-row .btn { flex: 1 1 auto; }
  .price { max-width: none; }
  .ph-wide { aspect-ratio: 4 / 3; }
}

/* Footer links are dense by nature. On a touch screen they get the height a
   thumb needs, which the pointer version does not have to carry. */
@media (hover: none) {
  .foot-nav a { padding: 6px 0; margin-bottom: 2px; }
  .faq summary { padding: 22px 0; }
}

@media (max-width: 420px) {
  .micro { gap: 8px 18px; font-size: 13.5px; }
  .ph-spec { font-size: 11.5px; }
}
