:root {
  color-scheme: light;
  --paper: #faf8f5;
  --ink: #211d18;
  --muted: #5f574c;
  --accent: #b4441a;
  --line: #e5dfd6;
  --soft: #f2ede5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.65;
}
a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid #b4441a60;
}
a:hover {
  color: #8d3413;
  border-bottom-color: currentColor;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
::selection {
  background: #f3d9c9;
}
h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0 0 20px;
}
h1 {
  font-size: clamp(40px, 5.1vw, 62px);
  font-weight: 750;
  line-height: 1.08;
}
h2 {
  font-size: clamp(29px, 3.3vw, 40px);
}
h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
}
p {
  margin: 0 0 20px;
  text-wrap: pretty;
}
p:last-child {
  margin-bottom: 0;
}
em {
  color: var(--accent);
  font-style: normal;
}
ul {
  padding-left: 22px;
}
li {
  margin-bottom: 10px;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
.container,
.header-inner {
  max-width: 1120px;
  margin: auto;
  padding-inline: 30px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 248, 245, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 17px;
  letter-spacing: -0.04em;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink);
  border: 0;
}
.brand span:first-child {
  color: var(--accent);
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}
nav a {
  border: 0;
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 650;
  text-align: center;
}
.button:hover {
  background: #3d342c;
  color: white;
  border-color: #3d342c;
}
.button.small {
  font-size: 13px;
  padding: 10px 15px;
  min-height: 42px;
}
.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: #766c60;
}
.button.secondary:hover {
  background: var(--soft);
}
.actions {
  display: flex;
  align-items: center;
  gap: 18px 24px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.eyebrow {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 550;
  line-height: 1.6;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 70px;
  align-items: start;
  padding: 76px 0 64px;
}
.lead {
  font-size: 21px;
  line-height: 1.6;
  color: #34302a;
  max-width: 740px;
}
.hero-proof {
  font-size: 16px;
  line-height: 1.65;
  max-width: 590px;
  margin-top: 32px;
}
.small-text {
  font-size: 14px;
}
.muted {
  color: var(--muted);
}
.portrait {
  margin: 5px 0 0;
}
.portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: var(--soft);
}
.portrait figcaption {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 16px;
}
.section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}
.section-heading {
  max-width: 730px;
  margin-bottom: 32px;
}
.recognition h2 {
  max-width: 780px;
}
.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.fit {
  background: var(--soft);
  border-left: 3px solid var(--accent);
  padding: 22px 26px;
  margin-top: 20px;
  font-size: 16px;
}
.grid {
  display: grid;
  gap: 16px;
}
.examples,
.prices {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}
.card p,
.card li {
  font-size: 16px;
  color: var(--muted);
}
.card h3 {
  font-size: 21px;
  margin: 0 0 14px;
}
.card .number {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 22px;
}
.card .eyebrow {
  color: var(--accent);
  font-size: 11px;
}
.comparison ol {
  padding: 0;
  list-style: none;
  margin: 24px 0 0;
}
.comparison li {
  position: relative;
  padding: 0 0 23px 26px;
  font-size: 16px;
  margin-bottom: 0;
}
.comparison li:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 0;
  top: 24px;
  color: var(--muted);
}
.comparison li::before {
  content: "·";
  position: absolute;
  left: 3px;
  color: var(--accent);
  font-weight: bold;
}
.comparison li:last-child {
  padding-bottom: 0;
}
.before {
  background: var(--soft);
}
.after {
  border-top: 3px solid var(--accent);
}
.statement {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
}
.prices {
  margin: 32px 0 22px;
}
.prices h3 {
  font-size: 27px;
}
.card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.card.featured p {
  color: #d9d2c7;
}
.card.featured .eyebrow {
  color: #f3b18a;
}
.card .timing {
  font-size: 14px;
}
.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin: 0;
  padding: 0;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 45px;
  margin: 0;
}
.steps li::before {
  content: "0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}
.steps p {
  font-size: 16px;
  color: var(--muted);
}
.steps h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.case-study {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--soft);
}
.case-study > div {
  padding: 28px;
}
.case-study > div + div {
  border-left: 1px solid var(--line);
}
.case-study h3 {
  font-size: 19px;
}
.case-study p {
  font-size: 16px;
}
.card .price {
  font-size: 26px;
  font-weight: 650;
  color: var(--ink);
}
.boundaries p {
  max-width: 800px;
}
.contact {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 48px;
  border-radius: 6px;
  margin: 24px 0;
}
.contact .section-heading {
  margin-bottom: 24px;
}
.contact h2 {
  font-size: clamp(32px, 4vw, 46px);
}
.contact .actions {
  font-size: 15px;
}
.form-note {
  font-size: 14px;
  color: var(--muted);
  max-width: 720px;
  margin: 20px 0;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 26px 0;
}
.field {
  min-width: 0;
}
.full {
  grid-column: 1/-1;
}
.field > label,
legend {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 9px;
}
.field label span {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
input:not([type="checkbox"]),
textarea,
select {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  background: #fff;
  border: 1px solid #a79a8b;
  border-radius: 3px;
  color: var(--ink);
  font-size: 16px;
}
textarea {
  resize: vertical;
  line-height: 1.5;
}
input::placeholder {
  color: #6b6257;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
legend {
  padding: 0;
}
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 16px;
  cursor: pointer;
}
input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--accent);
}
.email-preview {
  margin-top: 30px;
  border-top: 1px solid #c9bfb1;
  padding-top: 28px;
}
.email-preview > label {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
}
#form-status {
  font-size: 14px;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0 40px;
  font-size: 13px;
}
.landing-hero {
  display: block;
  max-width: 910px;
  padding-bottom: 64px;
}
.landing-hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
}
details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding-right: 15px;
}
details p {
  margin: 16px 0 0;
  max-width: 800px;
  color: var(--muted);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 100;
  transform: translateY(-200%);
  background: var(--ink);
  color: white;
  padding: 10px 20px;
  border-radius: 3px;
}
.skip-link:focus {
  transform: translateY(0);
}
@media (max-width: 1000px) {
  nav {
    gap: 16px;
  }
  .brand-domain {
    display: none;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 40px;
  }
  .prices {
    grid-template-columns: 1fr;
  }
  .prices .card {
    padding: 28px;
  }
  .prices h3 {
    font-size: 28px;
  }
  .examples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .container,
  .header-inner {
    padding-inline: 22px;
  }
  .header-inner {
    min-height: 70px;
    gap: 14px;
  }
  .brand {
    font-size: 16px;
  }
  .nav-extra {
    display: none;
  }
  .button.small {
    font-size: 12px;
    padding: 10px 12px;
    max-width: 190px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 0;
  }
  .hero-proof {
    margin-top: 26px;
  }
  .portrait {
    width: 220px;
  }
  .portrait figcaption {
    font-size: 11px;
  }
  .lead {
    font-size: 19px;
  }
  .section {
    padding: 44px 0;
  }
  .two-col,
  .steps,
  .case-study {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .case-study {
    gap: 0;
  }
  .case-study > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .contact {
    padding: 30px 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full {
    grid-column: auto;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .actions {
    gap: 18px;
  }
  .site-footer {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .container,
  .header-inner {
    padding-inline: 18px;
  }
  .examples {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 24px;
  }
  .brand {
    font-size: 14px;
  }
  .button.small {
    max-width: 170px;
  }
  .header-inner {
    gap: 10px;
  }
  .contact {
    padding: 26px 18px;
  }
  .actions .button {
    width: 100%;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  h1 {
    font-size: 40px;
  }
  .prices h3 {
    font-size: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
@media print {
  .site-header,
  .actions,
  form,
  .email-preview,
  .skip-link {
    display: none;
  }
  .section {
    break-inside: avoid;
  }
  .container {
    max-width: 100%;
  }
  .hero {
    padding: 20px 0;
  }
  body {
    font-size: 12px;
  }
  .section {
    padding: 24px 0;
  }
  a {
    color: inherit;
  }
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
