@font-face { font-family: "Fraunces"; src: url("/fonts/fraunces.woff2") format("woff2"); font-weight: 300 900; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("/fonts/fraunces-italic.woff2") format("woff2"); font-weight: 300 900; font-style: italic; font-display: swap; }
@font-face { font-family: "Geist"; src: url("/fonts/geist.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

:root {
  --bg: #f5f2ec;
  --bg-2: #ebe6dc;
  --surface: #fbf9f5;
  --ink: #1d1c19;
  --ink-2: #45423b;
  --muted: #6f6a60;
  --line: #dcd4c6;
  --accent: #2e5b4c;
  --accent-deep: #22463a;
  --accent-soft: #e2eae4;
  --on-accent: #f7f5f0;
  --shadow: 0 1px 2px rgba(52, 44, 30, 0.06), 0 12px 32px -12px rgba(52, 44, 30, 0.22);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius-lg: 22px;
  --radius: 12px;
  --radius-sm: 7px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.62 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-deep); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip { position: absolute; left: 16px; top: -48px; background: var(--ink); color: var(--bg); padding: 10px 14px; border-radius: var(--radius-sm); z-index: 10; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.prose { max-width: 68ch; }
.prose p, .prose li { color: var(--ink-2); }

h1, h2, h3 { font-family: var(--serif); color: var(--ink); font-weight: 600; text-wrap: balance; margin: 0; }
h1 { font-size: clamp(40px, 6.2vw, 68px); line-height: 1.02; letter-spacing: -0.025em; font-variation-settings: "opsz" 144; }
h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.08; letter-spacing: -0.018em; }
h3 { font-size: 21px; line-height: 1.25; letter-spacing: -0.01em; }
p { margin: 0 0 14px; text-wrap: pretty; }
.lead { font-size: clamp(18px, 2vw, 21px); line-height: 1.55; color: var(--ink-2); max-width: 36em; }
h1 + .lead, h2 + .lead, h2 + p { margin-top: 14px; }
.label { display: inline-block; font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 14px; letter-spacing: 0.01em; }
.small { font-size: 14px; color: var(--muted); }

/* Header */
.site-head { position: sticky; top: 0; z-index: 5; background: rgba(245, 242, 236, 0.92); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line); }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.brand svg { width: 28px; height: 28px; }
.nav { display: flex; gap: 4px; flex-wrap: wrap; }
.nav a { color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 500; padding: 7px 11px; border-radius: var(--radius-sm); transition: background-color 200ms, color 200ms; }
.nav a:hover { background: var(--bg-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); background: var(--bg-2); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: var(--on-accent); font: 600 18px/1 var(--sans);
  padding: 18px 26px; border-radius: var(--radius); text-decoration: none; border: 0; cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 10px 24px -10px rgba(34, 70, 58, 0.55);
  transition: background-color 200ms, transform 200ms, box-shadow 200ms;
}
.btn:hover { background: var(--accent-deep); color: var(--on-accent); transform: translateY(-1px); }
.btn:active { transform: translateY(1px) scale(0.99); box-shadow: 0 4px 12px -8px rgba(34, 70, 58, 0.6); }
.btn svg { width: 20px; height: 20px; }
.btn-block { display: flex; width: 100%; }
.btn-quiet { background: var(--surface); color: var(--ink); box-shadow: 0 0 0 1px var(--line) inset; }
.btn-quiet:hover { background: var(--bg-2); color: var(--ink); }

main { display: block; }
section { padding: 72px 0 84px; }

/* Hero */
.hero { padding: 64px 0 40px; background: radial-gradient(900px 420px at 88% 8%, rgba(46, 91, 76, 0.12), transparent 70%), radial-gradient(700px 360px at 0% 100%, rgba(170, 140, 90, 0.10), transparent 70%); }
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin: 28px 0 14px; }
.assure { display: flex; gap: 8px 22px; flex-wrap: wrap; padding: 0; margin: 18px 0 0; list-style: none; font-size: 15px; color: var(--ink-2); }
.assure li { display: inline-flex; align-items: center; gap: 8px; }
.assure svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* Phone mock */
.phone { width: 100%; max-width: 330px; margin: 0 auto; background: #fff; border-radius: 42px; padding: 12px; box-shadow: 0 0 0 1px #d8d1c4, var(--shadow), 0 40px 80px -40px rgba(52, 44, 30, 0.45); transform: rotate(1.5deg); }
.phone-screen { border-radius: 32px; overflow: hidden; background: #fff; border: 1px solid #eee9e0; }
.phone-top { text-align: center; padding: 18px 12px 10px; background: #f6f5f3; border-bottom: 1px solid #ebe7df; }
.phone-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: var(--on-accent); display: grid; place-items: center; margin: 0 auto 4px; font: 700 15px/1 var(--serif); }
.phone-name { font-size: 13px; font-weight: 600; }
.thread { display: flex; flex-direction: column; gap: 8px; padding: 14px 12px 18px; font-size: 14px; line-height: 1.38; }
.bubble { max-width: 84%; padding: 9px 12px; border-radius: 18px; white-space: pre-wrap; }
.bubble.me { align-self: flex-end; background: #2b7cf6; color: #fff; border-bottom-right-radius: 5px; }
.bubble.them { align-self: flex-start; background: #ebebed; color: #121212; border-bottom-left-radius: 5px; }
.thread .time { align-self: center; font-size: 11px; color: #8a8a8e; }

/* How it works */
.split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 64px 1fr; gap: 6px 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before { content: counter(step, decimal-leading-zero); grid-row: span 2; font: 500 34px/1 var(--serif); color: var(--accent); font-variant-numeric: tabular-nums; }
.steps h3 { font-size: 20px; }
.steps p { margin: 0; color: var(--ink-2); }

/* Example */
.band { background: var(--bg-2); }
.example { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: stretch; margin-top: 36px; }
.said { font: italic 400 22px/1.5 var(--serif); color: var(--ink-2); padding: 8px 0; margin: 0; }
.said::before { content: "\201C"; font-size: 48px; line-height: 0; vertical-align: -18px; color: var(--accent); margin-right: 4px; }
.arrow { align-self: center; color: var(--accent); }
.arrow svg { width: 40px; height: 40px; }
.written { background: var(--surface); border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow); }
.written .who { font-weight: 600; margin-bottom: 8px; }
.written p { margin: 0; color: var(--ink); }
.tag { display: inline-block; font-size: 13px; font-weight: 600; color: var(--muted); background: var(--bg); border-radius: 5px; padding: 3px 8px; margin-bottom: 10px; }

/* Promises + business */
.promises { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 48px; margin-top: 28px; }
.promises div { padding: 18px 0; border-top: 1px solid var(--line); }
.promises h3 { font-size: 19px; margin-bottom: 4px; }
.promises p { margin: 0; color: var(--ink-2); }
.biz { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.biz-card { background: var(--ink); color: var(--bg); border-radius: var(--radius-lg); padding: 32px; }
.biz-card h3 { color: var(--bg); margin-bottom: 10px; }
.biz-card p { color: #d9d3c7; }
.biz-card a { color: #bfe0d2; }
.biz-card a:hover { color: #ffffff; }

/* Consent */
.consent { background: var(--surface); border-left: 3px solid var(--accent); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.consent strong { color: var(--ink); }
.cta-block { max-width: 560px; }
.cta-block .btn { margin: 18px 0 10px; }

/* Join (mobile first) */
.join { padding: 36px 0 56px; }
.join .wrap { max-width: 560px; }
.join h1 { font-size: clamp(36px, 9vw, 52px); margin-bottom: 14px; }
.mini-steps { display: flex; gap: 8px; flex-wrap: wrap; list-style: none; padding: 0; margin: 18px 0 20px; }
.mini-steps li { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.next { margin-top: 36px; }
.next .thread { padding: 0; margin-top: 12px; }

/* Docs (opt-in, terms, privacy) */
.doc { padding: 56px 0 80px; }
.doc h1 { font-size: clamp(34px, 5vw, 50px); margin-bottom: 14px; }
.doc h2 { font-size: 26px; margin: 40px 0 10px; }
.doc h3 { font-size: 19px; margin: 24px 0 8px; }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin: 6px 0; }
.meta { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.facts { width: 100%; border-collapse: collapse; font-size: 15px; margin: 18px 0 8px; }
.facts th, .facts td { text-align: left; vertical-align: top; padding: 11px 12px 11px 0; border-bottom: 1px solid var(--line); }
.facts th { width: 30%; font-weight: 600; color: var(--ink); }
.facts td { color: var(--ink-2); }
.msg { font: 14px/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; white-space: pre-wrap; color: var(--ink); }
.shots { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; margin-top: 18px; align-items: start; }
.shots figure { margin: 0; }
.shots img { display: block; width: 100%; border-radius: var(--radius); box-shadow: 0 0 0 1px var(--line), var(--shadow); background: #fff; }
.shots figcaption { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* Review demo */
.review { padding: 48px 0 80px; }
.review .wrap { max-width: 640px; }
.review .written { margin: 22px 0 18px; }
.copied { font-size: 14px; color: var(--accent); min-height: 20px; margin-left: 4px; }

/* Footer */
.site-foot { border-top: 1px solid var(--line); padding: 36px 0 44px; font-size: 14px; color: var(--muted); }
.site-foot .wrap { display: grid; grid-template-columns: 1fr auto; gap: 18px 32px; }
.site-foot nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-foot a { color: var(--ink-2); text-decoration: none; }
.site-foot a:hover { color: var(--ink); text-decoration: underline; }
.site-foot address { font-style: normal; }

@media (max-width: 860px) {
  .hero .wrap, .split, .biz { grid-template-columns: 1fr; gap: 40px; }
  .phone { transform: none; }
  .example { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); justify-self: center; }
  .shots { grid-template-columns: 1fr 1fr; }
  .shots figure:first-child { grid-column: 1 / -1; }
  .site-foot .wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16.5px; }
  section { padding: 56px 0 64px; }
  .hero { padding-top: 40px; }
  .promises { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .nav a { padding: 6px 8px; font-size: 14px; }
  .facts th { width: 38%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .nav a { transition: none; }
}
