:root {
  color-scheme: light;
  --ink: #14201c;
  --muted: #5f6f68;
  --bg: #f5f4ed;
  --paper: #fffdfa;
  --line: #ddd8ca;
  --green: #17362f;
  --green-2: #2d6a4f;
  --teal: #1f6f83;
  --amber: #b46a19;
  --blue: #2b5f8d;
  --shadow: 0 24px 60px rgba(25, 35, 31, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(245, 244, 237, 0.92);
  border-bottom: 1px solid rgba(221, 216, 202, 0.72);
  backdrop-filter: blur(16px);
}

.brand,
.header-cta,
nav a,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 850;
  font-size: 19px;
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: repeat(2, 10px);
  gap: 3px;
  align-items: end;
  width: 29px;
  height: 29px;
  padding: 5px;
  border-radius: 7px;
  background: var(--green);
}

.brand-mark span {
  display: block;
  width: 10px;
  border-radius: 999px;
  background: #c4e6d2;
}

.brand-mark span:first-child {
  height: 16px;
}

.brand-mark span:last-child {
  height: 10px;
  background: #8fd4d9;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.header-cta {
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 14px;
  font-weight: 780;
}

main {
  overflow: clip;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(28px, 6vw, 78px);
  min-height: calc(100vh - 70px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(40px, 6vw, 72px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 780px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
}

.lede {
  margin-bottom: 28px;
  max-width: 650px;
  color: #34433e;
  font-size: 20px;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 820;
  line-height: 1.2;
}

.button.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 24px rgba(23, 54, 47, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.78);
  color: var(--green);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.proof-strip div {
  border-top: 2px solid var(--line);
  padding-top: 14px;
}

.proof-strip dt {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 860;
}

.proof-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-visual {
  min-width: 0;
}

.flow-frame {
  width: min(100%, 700px);
  margin-left: auto;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(23, 54, 47, 0.18);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.flow-card {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdfa;
}

.flow-card.active {
  border-color: rgba(31, 111, 131, 0.34);
  background: #f3f8f6;
}

.flow-card.outcome {
  border-color: rgba(45, 106, 79, 0.34);
}

.flow-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.flow-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
}

.flow-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.flow-connector {
  width: 2px;
  height: 30px;
  margin: 0 0 0 34px;
  background: var(--line);
}

.report-frame {
  width: min(100%, 760px);
  margin-left: auto;
  border: 1px solid rgba(23, 54, 47, 0.18);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.report-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  background: var(--green);
  color: white;
}

.small-label,
.metric-row span,
.price-options span {
  display: block;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.small-label {
  margin-bottom: 6px;
  color: #a8d6c6;
}

.report-topbar strong {
  font-size: 26px;
}

.status-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff0d8;
  color: #623607;
  font-size: 13px;
  font-weight: 850;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.metric-row div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row span {
  margin-bottom: 7px;
  color: var(--muted);
}

.metric-row strong {
  font-size: 30px;
}

.quote-list {
  display: grid;
}

.quote-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.quote-item strong {
  font-size: 15px;
}

.quote-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-item > span:last-child {
  font-weight: 850;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot.amber {
  background: var(--amber);
}

.dot.green {
  background: var(--green-2);
}

.dot.blue {
  background: var(--blue);
}

.message-preview {
  margin: 20px;
  padding: 15px 17px;
  border-left: 3px solid var(--teal);
  background: #f3f8f6;
  color: #2c3d37;
  font-size: 15px;
  line-height: 1.5;
}

.band {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 18px;
}

.steps article,
.timeline article,
.price-options article {
  border-top: 2px solid var(--line);
  padding-top: 18px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 850;
}

.steps p,
.timeline p,
.section-heading p,
.copy-block p,
.cta-band p,
.price-options p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.steps p,
.timeline p,
.price-options p {
  margin-bottom: 0;
}

.dark {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 76px);
  background: var(--green);
  color: white;
}

.dark .eyebrow {
  color: #8fd4d9;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-grid li {
  min-height: 74px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-size: 16px;
  line-height: 1.38;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 680px;
  margin: 16px 0 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.timeline span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.report-sample {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  margin-top: clamp(34px, 6vw, 64px);
}

.sample-copy {
  max-width: 430px;
}

.sample-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.sample-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.report-sample .report-frame {
  margin-left: 0;
}

.privacy {
  background: #fffdfa;
}

.copy-block {
  max-width: 780px;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.pricing {
  border-top: 1px solid var(--line);
}

.price-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
}

.price-options span {
  margin-bottom: 14px;
  color: var(--teal);
}

.price-options strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(44px, 5vw, 72px);
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius);
  background: #fffdfa;
  box-shadow: 0 18px 50px rgba(25, 35, 31, 0.08);
}

.cta-band p {
  max-width: 720px;
  margin: 16px 0 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer span:first-child {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .split,
  .dark,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .report-frame {
    margin-left: 0;
  }

  .flow-frame {
    margin-left: 0;
  }

  .proof-strip,
  .timeline,
  .price-options,
  .report-sample {
    grid-template-columns: 1fr;
  }

  .cta-band .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  .lede {
    font-size: 18px;
  }

  .hero {
    padding-top: 34px;
  }

  .button {
    width: 100%;
  }

  .metric-row,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .metric-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-row div:last-child {
    border-bottom: 0;
  }

  .quote-item {
    grid-template-columns: 10px minmax(0, 1fr);
  }

  .quote-item > span:last-child {
    grid-column: 2;
  }

  footer {
    display: grid;
  }
}
