:root {
  --ink: #151914;
  --paper: #f3f0e8;
  --lime: #d7ff4f;
  --green: #18392c;
  --muted: #666b62;
  --line: #d5d1c6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { font-size: 1rem; font-weight: 900; letter-spacing: .13em; text-decoration: none; }
.brand span { color: #5c7d08; }
.nav-link { font-size: .9rem; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--ink); }
.hero { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(50px, 8vw, 110px); align-items: center; min-height: 680px; padding-block: 90px; }
.eyebrow { margin: 0 0 22px; color: #4d5b36; font-size: .75rem; font-weight: 850; letter-spacing: .15em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.03; letter-spacing: -.04em; }
h1 { max-width: 850px; margin-bottom: 28px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.4rem, 6.5vw, 6.7rem); font-weight: 400; }
h1 em { color: #456b16; font-weight: 400; }
h2 { max-width: 760px; font-size: clamp(2.4rem, 4.7vw, 4.6rem); font-weight: 650; }
h3 { font-size: 1.6rem; }
.lede { max-width: 720px; color: #41463e; font-size: clamp(1.1rem, 1.7vw, 1.35rem); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 34px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid var(--ink); border-radius: 3px; font: inherit; font-size: .9rem; font-weight: 800; text-decoration: none; cursor: pointer; }
.button.primary { color: white; background: var(--green); border-color: var(--green); }
.button.primary:hover { background: #285841; }
.button.text { border-color: transparent; background: transparent; }
.microcopy { margin-top: 18px; color: var(--muted); font-size: .82rem; }
.response-card { color: #f8f7f2; background: var(--green); border-radius: 5px; box-shadow: 20px 24px 0 #dce6bf; transform: rotate(1deg); }
.card-top, .card-foot { display: flex; justify-content: space-between; padding: 18px 22px; font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.card-top { border-bottom: 1px solid #476255; }
.status { color: var(--lime); }
.status i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; background: var(--lime); border-radius: 50%; }
.status.alert { color: #ff9a8f; }
.status.alert i { background: #ff9a8f; }
.property { padding: 28px 22px; border-bottom: 1px solid #476255; }
.property .label { margin-bottom: 7px; color: #b7c9bf; font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.property h2 { margin-bottom: 12px; font-size: 1.7rem; }
.property p:last-child { margin-bottom: 0; color: #d8e1dc; font-size: .86rem; }
.timeline { list-style: none; margin: 0; padding: 20px 22px; }
.timeline li { display: grid; grid-template-columns: 60px 1fr; position: relative; padding: 10px 0 10px 19px; color: #c4d0ca; font-size: .82rem; }
.timeline li::before { content: ""; position: absolute; top: 16px; left: 0; width: 7px; height: 7px; border: 1px solid #759083; border-radius: 50%; }
.timeline li.done::before { background: var(--lime); border-color: var(--lime); }
.timeline strong { color: #fff; }
.card-foot { align-items: end; background: #10271f; }
.card-foot strong { color: var(--lime); font-size: 1.25rem; letter-spacing: -.03em; }
.proof-strip { color: white; background: var(--ink); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid div { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; padding: 30px; border-right: 1px solid #3a3d39; }
.proof-grid div:first-child { padding-left: 0; }
.proof-grid div:last-child { border-right: 0; }
.proof-grid strong { color: var(--lime); font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.proof-grid span { color: #c9ccc5; font-size: .75rem; line-height: 1.4; }
.section { padding-block: 120px; border-bottom: 1px solid var(--line); }
.section-heading { max-width: 860px; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); font-size: 1.1rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 65px; background: var(--line); border: 1px solid var(--line); }
.steps article { padding: 34px; background: var(--paper); }
.steps article > span { display: block; margin-bottom: 58px; color: #617539; font-size: .75rem; font-weight: 800; }
.steps p { margin: 0; color: var(--muted); }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.included { list-style: none; margin: 0; padding: 0; }
.included li { display: grid; grid-template-columns: 30px 1fr; gap: 15px; padding: 25px 0; border-top: 1px solid var(--line); }
.included li > span { display: flex; width: 24px; height: 24px; align-items: center; justify-content: center; color: var(--green); background: var(--lime); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.included strong { font-size: 1.05rem; }
.included p { margin: 5px 0 0; color: var(--muted); }
.price-card { display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; padding: clamp(35px, 6vw, 75px); color: white; background: var(--green); }
.price-card h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.price-card > div:first-child > p:last-child { max-width: 620px; color: #c3d0ca; }
.price { align-self: center; }
.price p { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid #526b60; }
.price strong { color: var(--lime); font-family: Georgia, serif; font-size: 2.5rem; font-weight: 400; }
.price span, .price small { color: #c3d0ca; font-size: .75rem; }
.form-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 120px); }
.form-copy h2 { font-size: clamp(2.4rem, 4.2vw, 4.2rem); }
.form-copy > p:not(.eyebrow) { color: var(--muted); }
.privacy { margin-top: 28px; font-size: .78rem; }
form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; gap: 8px; font-size: .8rem; font-weight: 800; }
label > span { color: var(--muted); font-weight: 500; }
input, textarea { width: 100%; padding: 14px 15px; color: var(--ink); background: #fbf9f3; border: 1px solid #bdb9ae; border-radius: 2px; font: inherit; font-size: .95rem; }
input:focus, textarea:focus { outline: 3px solid #dff66f; border-color: var(--green); }
textarea { resize: vertical; }
.consent { display: flex; grid-template-columns: auto 1fr; align-items: start; gap: 10px; font-weight: 500; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; }
.honeypot { position: absolute; left: -10000px; }
form .button { justify-self: start; }
footer { display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; padding-block: 38px; color: var(--muted); font-size: .75rem; }
footer p { margin: 0; }
.sources { text-align: right; }
.message-page { display: grid; min-height: 100vh; place-items: center; padding: 30px; }
.message-card { width: min(720px, 100%); padding: clamp(36px, 8vw, 80px); color: white; background: var(--green); }
.message-card .brand { display: block; margin-bottom: 80px; }
.message-card h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.message-card p:not(.eyebrow) { color: #c3d0ca; }
.message-card .button { margin-top: 20px; color: var(--ink); background: var(--lime); border-color: var(--lime); }

@media (max-width: 850px) {
  .hero, .split, .price-card, .form-section { grid-template-columns: 1fr; }
  .hero { padding-block: 60px 90px; }
  .response-card { max-width: 500px; transform: none; }
  .proof-grid, .steps { grid-template-columns: 1fr; }
  .proof-grid div { padding-inline: 0; border-right: 0; border-bottom: 1px solid #3a3d39; }
  .proof-grid div:last-child { border-bottom: 0; }
  .split, .form-section, .price-card { gap: 45px; }
  footer { grid-template-columns: 1fr; }
  .sources { text-align: left; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav { height: 68px; }
  .nav-link { font-size: .75rem; }
  h1 { font-size: 3.15rem; }
  .section { padding-block: 80px; }
  .field-row { grid-template-columns: 1fr; }
  .steps article { padding: 26px; }
  .steps article > span { margin-bottom: 35px; }
  .price-card { margin-inline: -14px; }
}
