/* ============================================================
   Walkthru
   Look: a set of plans someone marked up by hand. Warm paper,
   dark ink, a yellow highlighter and a red grease-pencil for
   annotations. Notes taped up slightly crooked. Layouts set by
   eye rather than dropped into an even grid.
   Type: Fraunces for headlines (a serif with some wonk), Caveat
   for the handwritten notes, the system sans for running text.
   ============================================================ */

:root {
  --ink:       #241f19;   /* warm near-black, main text + dark panels */
  --ink-soft:  #2f2a22;   /* raised dark surface */
  --paper:     #f5efe3;   /* warm cream page */
  --paper-2:   #ede4d3;   /* deeper cream panel */
  --paper-3:   #e4d8c1;   /* card edge / rule on paper */
  --white:     #fffdf8;
  --red:       #cf4327;   /* grease-pencil red: links, primary action */
  --red-deep:  #ac3419;
  --hi:        #ffd64a;   /* highlighter yellow */
  --hi-soft:   #ffe488;
  --green:     #3c7a52;   /* done, checkmarks only */
  --muted:     #6b6154;   /* secondary text on paper */
  --muted-dk:  #b9ad98;   /* secondary text on ink */
  --rule:      #cabb9f;   /* hairline on paper */
  --rule-dk:   rgba(255,253,248,.18);

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --hand:    "Caveat", "Segoe Script", cursive;
  --body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:    ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --wrap: 1140px;
  --gutter: clamp(20px, 5vw, 52px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* faint paper tooth so the background isn't a dead flat fill */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(120,100,70,.05) 1px, transparent 1px);
  background-size: 4px 4px;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--display); margin: 0; line-height: 1.06;
  font-weight: 600; letter-spacing: -0.005em;
  font-variation-settings: "opsz" 120, "SOFT" 0, "WONK" 1;
}

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(60px, 9vw, 120px); }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }

/* kicker: a small handwritten label, not a boxed tag */
.kicker {
  font-family: var(--hand); font-size: 1.35rem; font-weight: 700;
  color: var(--red); display: inline-block; transform: rotate(-2deg);
  margin: 0 0 6px;
}
.kicker--ink { color: var(--hi); }

.h-xl { font-size: clamp(2.6rem, 6.4vw, 5rem); }
.h-lg { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.h-md { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.lede { font-size: clamp(1.08rem, 1.5vw, 1.32rem); color: var(--muted); max-width: 46ch; }
.muted { color: var(--muted); }

/* ---- hand-drawn text treatments ---- */
/* highlighter swipe behind text: uneven ends, faintly skewed */
.hl {
  background: linear-gradient(101deg, transparent 0.4%, var(--hi) 1.2%, var(--hi) 97%, transparent 99.6%);
  padding: 0.02em 0.12em; margin: 0 -0.04em;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  border-radius: 1px;
}
/* a word circled with the red pencil (SVG sits behind, span keeps the ink) */
.circled { position: relative; display: inline-block; }
.circled > svg { position: absolute; left: -10%; top: -22%; width: 120%; height: 150%; overflow: visible; pointer-events: none; }
.circled > svg path { fill: none; stroke: var(--red); stroke-width: 2.4; stroke-linecap: round; }
/* scribbled underline */
.underline-hand { position: relative; white-space: nowrap; }
.underline-hand > svg { position: absolute; left: 0; right: 0; bottom: -0.42em; width: 100%; height: 0.4em; overflow: visible; }
.underline-hand > svg path { fill: none; stroke: var(--red); stroke-width: 2.6; stroke-linecap: round; }

/* handwritten margin note */
.note {
  font-family: var(--hand); font-size: 1.28rem; line-height: 1.15; color: var(--ink);
  display: inline-flex; align-items: flex-start; gap: 6px;
}
.note--red { color: var(--red); }
.note svg { flex: none; width: 34px; height: 34px; stroke: currentColor; fill: none; stroke-width: 2; overflow: visible; margin-top: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 650; font-size: 1rem;
  padding: 13px 22px; border: 2px solid var(--ink); border-radius: 2px;
  background: transparent; color: var(--ink);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}
/* chunky offset shadow, like a stamped/printed block */
.btn--primary { background: var(--red); border-color: var(--ink); color: var(--white); box-shadow: 4px 4px 0 var(--ink); }
.btn--primary:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); text-decoration: none; }
.btn--primary:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); text-decoration: none; }
.btn--ghost-ink { border-color: var(--paper); color: var(--paper); }
.btn--ghost-ink:hover { background: var(--paper); color: var(--ink); text-decoration: none; }

/* App Store button: dark block with the offset shadow */
.appstore {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: var(--white);
  padding: 11px 18px; border: 2px solid var(--ink); border-radius: 2px;
  box-shadow: 4px 4px 0 rgba(36,31,25,.28);
  transition: transform .12s ease, box-shadow .12s ease;
}
.appstore:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 rgba(36,31,25,.32); text-decoration: none; }
.appstore:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 rgba(36,31,25,.3); }
.appstore svg { width: 24px; height: 24px; fill: currentColor; }
.appstore .as-small { font-size: 11px; letter-spacing: .01em; opacity: .82; line-height: 1; }
.appstore .as-big { font-family: var(--body); font-weight: 700; font-size: 17px; line-height: 1.15; }
.appstore--light { background: var(--white); color: var(--ink); box-shadow: 4px 4px 0 var(--paper-3); }

:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 1.45rem; color: var(--ink); font-variation-settings: "opsz" 140, "WONK" 1; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 30px; height: 30px; flex: none; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a.navlink { font-family: var(--body); font-weight: 600; font-size: 0.98rem; color: var(--ink); position: relative; padding: 3px 1px; }
.nav a.navlink:hover { color: var(--red); text-decoration: none; }
.nav a.navlink[aria-current="page"] { color: var(--red); }
/* active link gets a hand-scribbled underline */
.nav a.navlink[aria-current="page"]::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: -3px; height: 6px;
  background: no-repeat center/100% 6px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 6'%3E%3Cpath d='M1 4 C 20 1, 45 6, 62 2.5 S 92 2, 99 3.5' fill='none' stroke='%23cf4327' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.header-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }
.menu-toggle svg { width: 27px; height: 27px; stroke: currentColor; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 2px solid var(--ink); }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 56px);
  align-items: start; padding-block: clamp(52px, 8vw, 96px);
}
.hero-copy { padding-top: clamp(8px, 3vw, 40px); }
.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 30px; max-width: 40ch; font-size: clamp(1.12rem, 1.6vw, 1.4rem); }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 22px; }
.hero-meta { display: flex; align-items: center; gap: 14px 22px; flex-wrap: wrap; font-size: 0.95rem; color: var(--muted); }
.hero-meta .dot-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--rule); }
.ios-note { font-family: var(--mono); font-size: 12px; letter-spacing: .02em; color: var(--muted); }

/* the taped-up capture + task, sitting slightly crooked and offset */
.transform { position: relative; display: block; padding-top: 14px; }
.card {
  background: var(--white); border: 2px solid var(--ink); border-radius: 3px;
  box-shadow: 6px 7px 0 rgba(36,31,25,.14); padding: 16px;
}
.capture-card { position: relative; transform: rotate(-1.6deg); z-index: 2; max-width: 92%; }
.task-card { position: relative; transform: rotate(1.3deg); margin-top: 26px; margin-left: auto; max-width: 94%; z-index: 3; }
/* a strip of tape at the top of taped things */
.taped::before {
  content: ""; position: absolute; top: -13px; left: 24px; width: 84px; height: 26px;
  background: rgba(255,214,74,.55); border: 1px solid rgba(180,150,40,.3);
  transform: rotate(-5deg); box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.task-card.taped::before { left: auto; right: 30px; transform: rotate(4deg); background: rgba(207,67,39,.28); border-color: rgba(150,50,30,.3); }

.capture-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.rec { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--ink); font-weight: 700; }
.rec .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .25 } }
.capture-frame {
  position: relative; border-radius: 2px; overflow: hidden; aspect-ratio: 16 / 10;
  background: #2a2620;
}
.capture-frame .grid-lines { display: none; }
.capture-frame .annot {
  position: absolute; left: 15%; top: 24%; width: 48%; height: 44%;
  border: 3px solid var(--hi); border-radius: 46% 54% 50% 50% / 52% 48% 52% 48%;
  transform: rotate(-5deg);
}
.capture-frame .annot-label {
  position: absolute; left: 15%; top: 12%; font-family: var(--hand); font-size: 1.15rem; font-weight: 700;
  color: var(--ink); background: var(--hi); padding: 0 8px; transform: rotate(-3deg);
}
.capture-frame .ts { position: absolute; right: 10px; bottom: 8px; font-family: var(--mono); font-size: 11px; color: #d8cdb8; }
.transcript { margin: 12px 2px 2px; font-size: 15px; color: var(--muted); line-height: 1.5; font-style: italic; }
.transcript b { color: var(--ink); font-weight: 700; font-style: normal; }

/* the drawn arrow + note between the two cards */
.transform-arrow {
  position: absolute; left: 40%; top: 47%; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-family: var(--hand); font-size: 1.25rem; font-weight: 700; color: var(--red);
  transform: rotate(-4deg); text-align: center; width: 130px;
}
.transform-arrow svg { width: 52px; height: 46px; stroke: var(--red); fill: none; stroke-width: 2.4; overflow: visible; }

.task-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.task-title { font-family: var(--display); font-weight: 600; font-size: 1.24rem; font-variation-settings: "opsz" 40, "WONK" 1; }
.task-tag { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); border: 1px solid var(--rule); padding: 3px 7px; border-radius: 2px; white-space: nowrap; }
.task-desc { color: var(--muted); font-size: .96rem; margin: 4px 0 14px; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: .98rem; }
.checklist .box { flex: none; width: 21px; height: 21px; border: 2px solid var(--ink); border-radius: 2px; display: grid; place-items: center; margin-top: 1px; }
.checklist li.done .box { background: var(--green); border-color: var(--green); }
.checklist li.done .box svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 3.4; }
.checklist li.done span { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 2px; }
.task-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 15px; padding-top: 13px; border-top: 1px dashed var(--rule); }
.lang-toggle { display: inline-flex; border: 2px solid var(--ink); border-radius: 2px; overflow: hidden; }
.lang-toggle button { border: 0; background: transparent; font-family: var(--mono); font-size: 12px; font-weight: 700; padding: 5px 11px; color: var(--muted); }
.lang-toggle button + button { border-left: 2px solid var(--ink); }
.lang-toggle button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.assignee { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--muted); }
.assignee .av { width: 25px; height: 25px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 12px; }

/* ---------- pain strip: an old text thread, crossed out ---------- */
.painstrip { background: var(--ink); color: var(--paper); border-bottom: 2px solid var(--ink); }
.painstrip .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.painstrip .lead-note { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--paper); font-variation-settings: "opsz" 80, "WONK" 1; }
.painstrip .lead-note .hl { color: var(--ink); }
.crossed { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.crossed li { position: relative; font-size: 1.12rem; color: var(--muted-dk); padding-left: 34px; }
.crossed li .old { color: var(--muted-dk); position: relative; }
.crossed li .old::after { content: ""; position: absolute; left: -3px; right: -3px; top: 52%; height: 3px; background: var(--red); transform: rotate(-1.4deg); }
.crossed li .fix { display: block; color: var(--paper); font-weight: 600; margin-top: 3px; }
.crossed li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 13l5 5L20 5' fill='none' stroke='%233c7a52' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/* ---------- how it works: a numbered, alternating sequence ---------- */
.sec-head { max-width: 30ch; }
.sec-head.center { max-width: 34ch; margin-inline: auto; text-align: center; }
.steps { display: grid; gap: clamp(30px, 5vw, 54px); margin-top: 48px; max-width: 900px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 3vw, 34px); align-items: start;
  padding-bottom: clamp(30px, 5vw, 54px); border-bottom: 1px solid var(--rule);
}
.steps .step:last-child { border-bottom: 0; padding-bottom: 0; }
.step:nth-child(even) { margin-left: clamp(0px, 8vw, 120px); }
.step .num { font-family: var(--display); font-weight: 600; font-size: clamp(3rem, 7vw, 5.2rem); line-height: .8; color: var(--paper-3); font-variation-settings: "opsz" 144, "WONK" 1; }
.step:nth-child(even) .num { color: var(--red); }
.step-body h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.step-body p { margin: 0 0 16px; color: var(--muted); font-size: 1.05rem; max-width: 48ch; }
.step-body .svg-slot { max-width: 340px; }
.step-body .svg-slot svg { border: 2px solid var(--ink); border-radius: 3px; }

/* ---------- why: a marked-up list, not a card grid ---------- */
.why { background: var(--paper-2); border-block: 2px solid var(--ink); }
.why-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.why-list { list-style: none; margin: 0; padding: 0; }
.why-list li { padding: 22px 0; border-top: 1px solid var(--rule); }
.why-list li:first-child { border-top: 0; padding-top: 0; }
.why-list h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin-bottom: 6px; display: flex; align-items: baseline; gap: 12px; }
.why-list h3 .no { font-family: var(--mono); font-size: .8rem; color: var(--red); font-weight: 700; }
.why-list p { margin: 0; color: var(--muted); max-width: 52ch; }
/* first two items get a bit more presence, so the list isn't uniform */
.why-list li.lead h3 { font-size: clamp(1.5rem, 2.8vw, 2.05rem); }
.why-list li.lead p { color: var(--ink); font-size: 1.08rem; }

/* ---------- split feature rows (asymmetric) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split + .split { margin-top: clamp(56px, 8vw, 104px); }
.split--flip .split-media { order: -1; }
.split-copy h2 { margin-bottom: 16px; }
.split-copy .lede { margin-bottom: 22px; }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.04rem; }
.feature-list .tick { flex: none; width: 24px; height: 24px; margin-top: 1px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 13l5 5L21 5' fill='none' stroke='%23cf4327' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/* generic media panel */
.panel { background: var(--white); border: 2px solid var(--ink); border-radius: 3px; box-shadow: 6px 7px 0 rgba(36,31,25,.14); padding: 24px; }
.panel--ink { background: var(--ink); border-color: var(--ink); color: var(--paper); position: relative; }
.panel--ink > * { position: relative; }

/* "same task, six ways" */
.six { display: grid; gap: 9px; }
.six .lang-line { display: flex; align-items: baseline; gap: 10px; }
.six .lang-line .lc { font-family: var(--mono); font-size: .72rem; color: var(--hi); width: 22px; flex: none; }
.six .en { font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: var(--white); }
.six .tr { font-size: 1rem; color: #ded2bb; }
.langs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { font-family: var(--mono); font-size: 12px; font-weight: 700; padding: 5px 11px; border: 1.5px solid var(--rule-dk); border-radius: 2px; color: var(--paper); background: rgba(255,255,255,.05); }
.chip--live { background: var(--hi); color: var(--ink); border-color: var(--hi); }

/* ---------- contractor / no-download band ---------- */
.band { background: var(--ink); color: var(--paper); border-block: 2px solid var(--ink); position: relative; }
.band .split-copy h2 { color: var(--paper); }
.band .lede { color: var(--muted-dk); }
.band .feature-list .tick { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 13l5 5L21 5' fill='none' stroke='%23ffd64a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.linkbar { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.07); border: 1.5px solid var(--rule-dk); border-radius: 2px; padding: 10px 14px; font-family: var(--mono); font-size: 13px; color: #ded2bb; }
.linkbar .lock { width: 14px; height: 14px; stroke: var(--hi); fill: none; }

/* ---------- closer ---------- */
.closer { text-align: center; }
.closer h2 { max-width: 20ch; margin-inline: auto; margin-bottom: 18px; }
.closer .lede { margin-inline: auto; margin-bottom: 30px; }
.closer .hero-cta { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--muted-dk); padding-block: 54px 34px; border-top: 2px solid var(--ink); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 34px; border-bottom: 1px solid var(--rule-dk); }
.site-footer .brand { color: var(--paper); margin-bottom: 14px; }
.site-footer .foot-blurb { max-width: 34ch; font-size: .96rem; }
.foot-col h4 { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--paper); margin-bottom: 15px; font-weight: 700; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-col a { color: var(--muted-dk); }
.foot-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 22px; font-size: .85rem; flex-wrap: wrap; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 650; font-size: .96rem; }
.field label .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 2px solid var(--ink); border-radius: 2px;
  background: var(--white); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--hi); outline-offset: 0; border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 140px; }
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.human-check { display: flex; align-items: center; gap: 12px; background: var(--paper-2); border: 2px dashed var(--rule); border-radius: 2px; padding: 14px 16px; margin-bottom: 20px; }
.human-check label { font-weight: 650; font-size: .96rem; }
.human-check input { width: 84px; text-align: center; }
.form-note { font-size: .88rem; color: var(--muted); margin-top: 6px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 2px; font-size: .96rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: color-mix(in srgb, var(--green) 14%, var(--white)); border: 2px solid var(--green); color: #245737; }
.form-status.err { background: #fbe6df; border: 2px solid var(--red); color: var(--red-deep); }
.btn[disabled] { opacity: .45; cursor: not-allowed; box-shadow: none; }
.contact-aside { background: var(--white); border: 2px solid var(--ink); border-radius: 3px; padding: 28px; box-shadow: 6px 7px 0 rgba(36,31,25,.14); transform: rotate(-.8deg); }
.contact-aside h3 { font-size: 1.35rem; margin-bottom: 8px; }
.contact-aside .mailrow { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--rule); }
.contact-aside .mailrow .ic { width: 40px; height: 40px; border: 2px solid var(--ink); border-radius: 2px; display: grid; place-items: center; flex: none; }
.contact-aside .mailrow .ic svg { width: 21px; height: 21px; stroke: var(--ink); fill: none; }
.contact-aside .mailrow a { font-weight: 700; color: var(--ink); }
.contact-aside .mailrow a:hover { color: var(--red); }

/* why-list used on a dark section (features "and the rest") */
.band .why-list li, .why--ink .why-list li { border-color: var(--rule-dk); }
.band .why-list h3, .why--ink .why-list h3 { color: var(--paper); }
.band .why-list h3 .no, .why--ink .why-list h3 .no { color: var(--hi); }
.band .why-list p, .why--ink .why-list p { color: var(--muted-dk); }
.why--ink { background: var(--ink); color: var(--paper); border-block: 2px solid var(--ink); }
.why--ink .sec-head h2 { color: var(--paper); }
/* let the roster breathe as two columns on wider screens */
.roster { columns: 2; column-gap: clamp(30px, 5vw, 64px); margin-top: 40px; }
.roster li { break-inside: avoid; }
@media (max-width: 720px) { .roster { columns: 1; } }

/* pages with a short hero (features, contact) */
.page-hero { padding-block: clamp(44px, 6vw, 76px) 0; }
.page-hero .h-xl { max-width: 16ch; }
.page-hero .lede { margin-top: 18px; }

/* mobile nav panel */
.mobile-nav { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .transform { max-width: 460px; margin-inline: auto; margin-top: 20px; }
  .painstrip .wrap, .split, .form-grid, .why-grid { grid-template-columns: 1fr; }
  .split--flip .split-media { order: 0; }
  .step:nth-child(even) { margin-left: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav, .header-cta .appstore, .header-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .transform-arrow { position: static; width: auto; flex-direction: row; margin: 6px 0; transform: rotate(-2deg); }
  .capture-card, .task-card { transform: none; max-width: 100%; }
  .task-card { margin-top: 20px; }
  .mobile-nav.open { display: block; border-top: 2px solid var(--ink); background: var(--paper); padding: 12px var(--gutter) 20px; }
  .mobile-nav.open a { display: block; padding: 12px 0; font-weight: 600; border-bottom: 1px solid var(--rule); color: var(--ink); }
  .mobile-nav.open .appstore { margin-top: 14px; }
}
