:root {
  color-scheme: light;
  --ink: #17272a;
  --muted: #5c6867;
  --paper: #ffffff;
  --white: #ffffff;
  --green: #143f3c;
  --teal: #2f7774;
  --copper: #b66b35;
  --gold: #d7a94f;
  --line: rgba(23, 39, 42, 0.16);
  --shadow: 0 24px 70px rgba(20, 63, 60, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 82px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  display: none;
}

main {
  overflow: hidden;
}

.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(20, 63, 60, 0.18);
  border-radius: 8px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(20, 63, 60, 0.16);
}

.sticky-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.sticky-actions a:first-child {
  background: var(--green);
  color: var(--white);
}

.hero,
.choice-band,
.reassurance-band,
.lead-form-section,
.context-band,
.authority-band,
.final-cta {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vh, 56px) 0 32px;
}

.hero-copy {
  max-width: 800px;
}

.brand-logo {
  width: min(218px, 62vw);
  height: auto;
  display: block;
  margin: 0 0 12px;
}

.eyebrow,
.step {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p,
li,
a {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.55rem, 4.4vw, 4.35rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1;
}

.lede {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.36rem);
  line-height: 1.58;
}

.cta-row,
.final-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.cta-row {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  color: inherit;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
}

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(20, 63, 60, 0.22);
}

.button-secondary {
  border-color: rgba(20, 63, 60, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
}

.microcopy {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.trust-note {
  width: fit-content;
  max-width: 660px;
  margin: 18px 0 0;
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 13px;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.45;
}

.hero-capture {
  max-width: 680px;
  margin-top: 14px;
  padding: 10px 14px;
  gap: 6px;
  scroll-margin-top: 18px;
  box-shadow: 0 14px 38px rgba(20, 63, 60, 0.09);
}

.hero-capture-title {
  margin: 0;
  color: var(--green);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.25;
}

.hero-capture-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

.hero-capture-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.hero-capture .button {
  min-height: 44px;
  padding: 11px 16px;
  white-space: nowrap;
}

.hero-capture .consent-row {
  font-size: 0.8rem;
  line-height: 1.35;
}

.hero-capture .form-status {
  min-height: 0;
  font-size: 0.88rem;
}

.hero-proof {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.4;
}

.hero-question-prompt {
  max-width: 680px;
  margin-top: 12px;
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 13px;
}

.text-action {
  display: inline-flex;
  margin-top: 6px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.book-figure {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0;
}

.book-figure img {
  width: min(100%, 330px);
  aspect-ratio: 274 / 400;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transform: rotate(-0.75deg);
}

.book-figure figcaption {
  max-width: 360px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
}

.choice-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.choice-band article {
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.75);
}

.choice-band h2 {
  font-size: clamp(1.85rem, 3vw, 3.05rem);
}

.choice-band p:not(.step),
.authority-band p,
.context-band li {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.choice-band a:not(.button) {
  width: fit-content;
  color: var(--green);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.reassurance-band {
  border-top: 1px solid var(--line);
  padding: 68px 0;
}

.reassurance-band h2 {
  max-width: 900px;
}

.reassurance-band p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.58;
}

.context-band,
.lead-form-section,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 68px 0;
}

.lead-form-section {
  align-items: start;
  scroll-margin-top: 16px;
}

.form-intro p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.58;
}

.book-title-callout {
  margin-top: 20px;
  color: var(--green);
}

.book-title-callout strong {
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(20, 63, 60, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 850;
}

.optional-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 63, 60, 0.22);
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(92, 104, 103, 0.72);
  font-weight: 650;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(215, 169, 79, 0.42);
  outline-offset: 1px;
  border-color: var(--green);
}

.consent-row {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-status {
  min-height: 1.45em;
  margin: 0;
  color: var(--green);
  font-weight: 800;
  line-height: 1.45;
}

.form-status[data-state="error"] {
  color: #9d3327;
}

.fallback-link {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.fallback-link a {
  color: var(--green);
  font-weight: 850;
}

.phone-support {
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.download-link {
  color: var(--green);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.context-band ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.authority-band {
  border-top: 1px solid var(--line);
  padding: 68px 0;
}

.authority-band p {
  max-width: 820px;
  margin-top: 24px;
}

.final-cta {
  padding-bottom: 96px;
}

.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 38px;
}

.site-footer p {
  max-width: 860px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.site-footer strong {
  color: var(--green);
  font-weight: 900;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.thank-you-panel {
  border-top: 1px solid var(--line);
  padding-top: 54px;
}

.thank-you-logo {
  width: min(240px, 70vw);
  height: auto;
  display: block;
  margin: 0 0 26px;
}

.thank-you-panel h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
}

.thank-you-panel .lede {
  max-width: 760px;
}

@media (max-width: 860px) {
  .hero,
  .choice-band,
  .reassurance-band,
  .lead-form-section,
  .context-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 86px;
  }

  .hero,
  .choice-band,
  .lead-form-section,
  .context-band,
  .authority-band,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.3rem);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-capture {
    padding: 16px;
  }

  .hero-capture-row {
    grid-template-columns: 1fr;
  }

  .hero-capture .button {
    width: 100%;
    white-space: normal;
  }

  .sticky-actions {
    position: sticky;
    top: 0;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    justify-content: stretch;
    box-shadow: 0 8px 24px rgba(20, 63, 60, 0.12);
  }

  .sticky-actions a {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 8px;
    font-size: 0.84rem;
  }

}
