:root {
  color-scheme: light;
  --ink: #111;
  --muted: #4d4d4d;
  --link: #0000a0;
  --line: #aaa;
  --paper: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 18px; line-height: 1.55; }
.wrap { width: min(100% - 36px, 820px); margin-inline: auto; }
a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: #8b0000; }
a:focus-visible, input:focus-visible, button:focus-visible { outline: 3px solid #f2c94c; outline-offset: 3px; }
.skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip-link:focus { position: fixed; z-index: 10; top: 10px; left: 10px; padding: 6px 9px; background: #fff; color: #000; }
.site-header { border-bottom: 1px solid var(--line); }
.header-row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-block: 22px; }
.name { color: var(--ink); font-size: 24px; font-weight: 700; letter-spacing: .04em; text-decoration: none; }
nav { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 16px; }
main { padding-block: 44px 28px; }
.intro { max-width: 700px; padding-block: 10px 34px; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 650px; margin-bottom: 18px; font-size: clamp(38px, 7vw, 64px); font-weight: 400; line-height: 1.05; letter-spacing: -.02em; }
h2 { margin-bottom: 20px; font-size: 29px; line-height: 1.2; }
h3 { margin-bottom: 8px; font-size: 22px; line-height: 1.25; }
p { max-width: 670px; margin-bottom: 16px; }
.large { color: var(--muted); font-size: 23px; line-height: 1.45; }
hr { margin: 0; border: 0; border-top: 1px solid var(--line); }
section:not(.intro) { padding-block: 36px; }
.service-list { margin: 0; padding: 0; list-style: none; counter-reset: services; }
.service-list li { position: relative; padding: 22px 0 22px 52px; border-top: 1px dotted var(--line); counter-increment: services; }
.service-list li::before { position: absolute; top: 21px; left: 0; content: counter(services) "."; font-weight: 700; }
.service-list li:last-child { padding-bottom: 0; }
.service-list p { margin-bottom: 9px; }
.strong-link { font-weight: 700; }
.narrow { max-width: 700px; }
.kicker { margin-bottom: 8px; font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.prompt-intro { padding-bottom: 34px; }
.plain-list { margin: 0; padding-left: 24px; }
.plain-list li { margin-bottom: 9px; }
.simple-steps { margin: 0 0 30px; padding-left: 26px; }
.simple-steps li { margin-bottom: 10px; padding-left: 4px; }
.compact-steps { margin-bottom: 14px; }
code { padding: 1px 4px; background: #eee; color: #111; font: .92em Consolas, "Courier New", monospace; }
.lead-form { position: relative; max-width: 540px; margin-top: 24px; }
.lead-form label { display: block; margin-bottom: 7px; font-weight: 700; }
.lead-form input[type="email"] { width: 100%; margin-bottom: 14px; padding: 11px 12px; border: 1px solid #555; border-radius: 0; background: #fff; color: #111; font: inherit; }
.lead-form button:disabled { cursor: wait; opacity: .65; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.form-status { min-height: 1.5em; }
.form-status.error { color: #8b0000; font-weight: 700; }
.form-success { margin-top: 24px; padding: 20px; border: 1px solid var(--line); }
.form-success h3 { margin-bottom: 8px; }
.download-link { display: inline-block; padding: 10px 14px; border: 1px solid #111; border-radius: 0; background: #111; color: #fff; font: 700 16px/1.3 Georgia, "Times New Roman", serif; text-decoration: none; cursor: pointer; }
.download-link:hover { background: #333; color: #fff; }
.small { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
footer { padding-bottom: 26px; color: var(--muted); font-size: 15px; }
footer p { margin-top: 18px; }

@media (max-width: 600px) {
  body { font-size: 17px; }
  .header-row { display: block; }
  nav { margin-top: 12px; gap: 8px 16px; }
  main { padding-top: 28px; }
  .large { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
