:root {
  --paper: #ECEEED;
  --card: #FAFBFA;
  --ink: #16211D;
  --ink-soft: #56615C;
  --teal: #0E6A5E;
  --teal-deep: #0A4F46;
  --sand: #E9E2D3;
  --line: #D5D9D7;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; margin: 0; text-wrap: balance; }
p { margin: 0; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
::selection { background: var(--sand); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: 55rem; margin: 0 auto; padding: 0 1.5rem; }

/* ---- masthead ---- */
.masthead { border-bottom: 1px solid var(--line); }
.masthead .wrap {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.9rem 1.5rem; flex-wrap: wrap;
  padding-top: 1.35rem; padding-bottom: 1.35rem;
}
.wordmark { font-family: var(--serif); font-size: 1.5rem; letter-spacing: -0.015em; color: var(--ink); }
.wordmark:hover { text-decoration: none; }
.nav { display: flex; align-items: baseline; gap: 1.6rem; flex-wrap: wrap; font-size: 0.96rem; }
.nav a { color: var(--ink-soft); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); text-decoration: none; }
.nav .pill { font-weight: 600; color: var(--teal); }
.nav .pill:hover { color: var(--teal-deep); }
@media (max-width: 33rem) { .nav { gap: 0.95rem 1.1rem; font-size: 0.92rem; } }

/* ---- button ---- */
.button {
  display: inline-block; font-family: var(--sans); font-weight: 600; font-size: 1rem;
  background: var(--teal); color: #fff; padding: 0.8rem 1.5rem; border-radius: 2px;
}
.button:hover { background: var(--teal-deep); text-decoration: none; }

/* ---- hero ---- */
.hero { padding-block: clamp(2.75rem, 6vw, 4.25rem) clamp(3rem, 7vw, 4.75rem); }
.hero-grid { display: grid; gap: clamp(2.25rem, 5vw, 3.25rem); }
@media (min-width: 52rem) { .hero-grid { grid-template-columns: 1fr 0.92fr; align-items: start; } }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.3rem);
  line-height: 1.08; letter-spacing: -0.026em; max-width: 22ch;
}
.hero .lede { margin-top: 1.3rem; font-size: 1.2rem; line-height: 1.5; color: var(--ink-soft); max-width: 34ch; }
.hero .actions { margin-top: 2rem; display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.hero .actions .aside { font-size: 0.92rem; color: var(--ink-soft); }

/* ---- conversation panel ---- */
.thread {
  background: var(--card); border: 1px solid var(--line); border-radius: 6px;
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: 0 1px 2px rgba(22, 33, 29, 0.05), 0 16px 34px -18px rgba(22, 33, 29, 0.16);
}
.turn + .turn { margin-top: 1.05rem; }
.turn .who { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 0.35rem; }
.ask .bubble {
  display: inline-block; max-width: 17rem; background: var(--sand); color: var(--ink);
  font-size: 0.98rem; line-height: 1.5; padding: 0.6rem 0.85rem;
  border-radius: 3px 13px 13px 13px;
}
.reply .who { color: var(--teal); }
.reply .bubble { font-family: var(--serif); font-size: 1.12rem; line-height: 1.52; color: var(--ink); }
.thread .source { margin-top: 0.9rem; font-size: 0.82rem; color: var(--ink-soft); }
.stream .tok { opacity: 0; transition: opacity 0.16s linear; }
.stream.shown .tok { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .stream .tok { opacity: 1; transition: none; } }

/* ---- bands: italic serif label in a left rail, content on the right ---- */
.band { padding-block: clamp(2.2rem, 4.5vw, 3.1rem); border-top: 1px solid var(--line); }
.band.warm { background: #ECE7DC; border-top-color: #DED7C6; }
.band.warm + .band { border-top-color: #DED7C6; }
.band-grid { display: grid; gap: 0.7rem 2.4rem; }
@media (min-width: 50rem) {
  .band-grid { grid-template-columns: 9rem minmax(0, 1fr); align-items: start; }
  .band-grid > h2 { text-align: right; padding-top: 0.35rem; }
}
.band-grid > h2 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.28rem; line-height: 1.22; color: var(--ink-soft);
}
.band-main { max-width: 37rem; }
.band-main > p + p { margin-top: 1rem; }
.band-main .more { margin-top: 1.35rem; font-weight: 500; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85em; background: #E3E6E5; padding: 0.08em 0.34em; border-radius: 2px;
}

/* recurring questions: the second visual anchor */
.asks { margin: 0; padding: 0; list-style: none; }
.asks li {
  font-size: clamp(1.18rem, 2.4vw, 1.45rem); line-height: 1.3; color: var(--ink);
  padding: 0.6rem 0;
}
.asks li + li { border-top: 1px solid #DBD3C2; }
.asks li::before { content: "\201C"; color: var(--teal); }
.asks li::after { content: "\201D"; color: var(--teal); }
.asks + .note { margin-top: 1.6rem; color: #6A6252; max-width: 34rem; }

/* steps */
.steps { display: grid; gap: 1.9rem; }
.step { display: grid; grid-template-columns: 2.4rem 1fr; column-gap: 1.3rem; align-items: baseline; }
.step .n { font-family: var(--serif); font-size: 2.3rem; line-height: 0.85; color: var(--teal); }
.step h3 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; line-height: 1.35; }
.step p { margin-top: 0.4rem; color: var(--ink-soft); }

/* pricing: what's included */
.included > div { padding: 1.05rem 0; border-top: 1px solid var(--line); }
.included > div:last-child { border-bottom: 1px solid var(--line); }
.included h3 { font-family: var(--sans); font-weight: 600; font-size: 1rem; }
.included p { margin-top: 0.25rem; color: var(--ink-soft); }

/* page header */
.pagehd { padding-block: clamp(2.75rem, 6vw, 4rem) 0; }
.pagehd h1 { font-size: clamp(2.1rem, 4.4vw, 2.9rem); line-height: 1.08; letter-spacing: -0.022em; max-width: 16ch; }
.pagehd .lede { margin-top: 1rem; font-size: 1.2rem; line-height: 1.5; color: var(--ink-soft); max-width: 38ch; }

/* faq: question left, answer in a readable column on the right */
.qa { padding: 1.4rem 0; border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa .q { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.qa .a { font-family: var(--serif); font-size: 1.14rem; line-height: 1.55; color: var(--ink-soft); margin-top: 0.5rem; }
@media (min-width: 50rem) {
  .qa { display: grid; grid-template-columns: 13rem minmax(0, 33rem); gap: 0 3rem; align-items: baseline; }
  .qa .a { margin-top: 0; }
}

/* contact checklist */
.checklist { margin: 1rem 0 1.6rem; padding: 0; list-style: none; max-width: 37rem; }
.checklist li { padding: 0.7rem 0; border-top: 1px solid var(--line); color: var(--ink); }
.checklist li:last-child { border-bottom: 1px solid var(--line); }

/* closing: dark band, the page's second colour moment */
.closing { background: var(--ink); color: #E4E7E4; padding-block: clamp(3.25rem, 7vw, 5rem); }
.closing h2 { font-family: var(--serif); color: #fff; font-size: clamp(1.85rem, 3.6vw, 2.6rem); line-height: 1.08; letter-spacing: -0.02em; max-width: 16ch; }
.closing p { margin-top: 0.85rem; color: #AFB7B2; }
.closing .button { margin-top: 1.9rem; background: #fff; color: var(--ink); }
.closing .button:hover { background: var(--sand); }

/* footer */
.footer { border-top: 1px solid var(--line); }
.footer .wrap {
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap;
  gap: 0.9rem 1.5rem; padding-block: 2rem 2.6rem; font-size: 0.92rem; color: var(--ink-soft);
}
.footer .wordmark { font-size: 1.15rem; }
.footer nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer nav a { color: var(--ink-soft); }
.footer nav a:hover { color: var(--ink); }
