:root {
  --green-950: #102f24;
  --green-900: #183a2d;
  --green-800: #24533f;
  --green-700: #327255;
  --sage: #6f866f;
  --mint: #e9f4ec;
  --cream: #f8f4ec;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(24, 58, 45, 0.14);
  --text: #17231d;
  --muted: #607066;
  --shadow-soft: 0 18px 48px rgba(24, 58, 45, 0.1);
  --shadow-card: 0 26px 70px rgba(24, 58, 45, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(50, 114, 85, 0.08), transparent 26rem),
    linear-gradient(180deg, var(--paper) 0%, #ffffff 48%, #faf7f0 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--green-950);
  font-weight: 850;
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(24, 58, 45, 0.16);
}

.brand span {
  max-width: 150px;
  font-size: 0.9rem;
  line-height: 1.1;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--green-950);
}

.nav-links {
  position: fixed;
  inset: 71px 14px auto;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.menu-open .nav-links {
  display: flex;
}

.nav-links a {
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--green-950);
  font-weight: 800;
}

.nav-links a:hover {
  background: var(--mint);
}

.nav-cta {
  color: #fff !important;
  background: var(--green-800);
  text-align: center;
}

.section-pad {
  padding: 58px clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 58px;
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.94) 0%, rgba(239, 247, 237, 0.92) 62%, rgba(225, 238, 223, 0.9) 100%),
    radial-gradient(circle at 86% 18%, rgba(50, 114, 85, 0.22), transparent 22rem);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(24, 58, 45, 0.08);
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  right: -90px;
  top: 66px;
  width: 260px;
  height: 260px;
}

.hero::after {
  right: 80px;
  bottom: -110px;
  width: 210px;
  height: 210px;
}

.hero-copy,
.audit-preview,
.section-intro,
.pain-layout,
.framework,
.why-copy,
.outcome-panel,
.receive-list,
.proof-strip,
.timeline,
.final-shell {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--green-950);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 2.54rem;
}

h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-subhead {
  max-width: 740px;
  margin-bottom: 12px;
  color: #31473b;
  font-size: 1.1rem;
  font-weight: 750;
}

.hero-support {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: 1rem;
}

.hero-action {
  display: grid;
  gap: 14px;
  max-width: 660px;
}

.hero-action p {
  margin: 0;
  padding-left: 18px;
  color: #415249;
  border-left: 3px solid rgba(50, 114, 85, 0.34);
  font-size: 0.93rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  box-shadow: 0 16px 36px rgba(24, 58, 45, 0.2);
}

.btn-primary:hover {
  background: var(--green-950);
}

.btn-light {
  color: var(--green-950);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.audit-preview {
  display: none;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 58, 45, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.preview-top span,
.score-card span,
.framework-center span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.preview-top strong {
  color: var(--green-950);
  text-align: right;
}

.score-card {
  padding: 18px;
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  border-radius: var(--radius);
  color: #fff;
}

.score-card span {
  color: rgba(255, 255, 255, 0.7);
}

.score-card strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 1.65rem;
  line-height: 1;
}

.score-bar {
  height: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.score-bar span {
  display: block;
  width: 68%;
  height: 100%;
  background: #f5ead4;
  border-radius: 999px;
}

.preview-stack {
  display: grid;
  gap: 10px;
}

.preview-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 13px;
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.preview-stack span {
  color: var(--muted);
  font-weight: 800;
}

.preview-stack b {
  color: var(--green-950);
  text-align: right;
}

.founder-section {
  background: var(--white);
}

.founder-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(233, 244, 236, 0.86), rgba(255, 255, 255, 0.92)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.founder-card h2 {
  margin-bottom: 0;
}

.founder-card p:last-child {
  margin-bottom: 0;
  color: #31473b;
  font-weight: 700;
}

.section-intro {
  max-width: 760px;
}

.section-intro.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro p:last-child {
  margin-bottom: 0;
}

.problem-section {
  display: grid;
  gap: 34px;
  background: var(--white);
}

.pain-layout {
  display: grid;
  gap: 14px;
}

.pain-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(24, 58, 45, 0.06);
}

.pain-card > span {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(50, 114, 85, 0.18), rgba(50, 114, 85, 0.04)),
    var(--mint);
  border: 1px solid rgba(50, 114, 85, 0.18);
}

.pain-card h3,
.pain-card p {
  margin-bottom: 0;
}

.pain-card p {
  margin-top: 6px;
}

.pain-card.offset {
  background: #f7fbf5;
}

.pain-card.soft {
  background: #fff;
}

.audit-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(50, 114, 85, 0.12), transparent 21rem),
    linear-gradient(180deg, var(--paper) 0%, #ffffff 100%);
}

.qualification-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.qualification-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.qualification-grid div {
  position: relative;
  padding: 14px 14px 14px 42px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.qualification-grid div::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 17px;
  width: 10px;
  height: 10px;
  background: var(--green-700);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--mint);
}

.qualification-note {
  margin: 18px 0 0;
  padding: 16px;
  color: var(--green-950);
  background: rgba(50, 114, 85, 0.08);
  border: 1px solid rgba(50, 114, 85, 0.16);
  border-radius: var(--radius);
  font-weight: 800;
}

.framework {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.framework-center,
.framework-card {
  border-radius: var(--radius);
}

.framework-center {
  padding: 22px;
  color: #fff;
  background: linear-gradient(145deg, var(--green-950), var(--green-700));
  box-shadow: var(--shadow-card);
}

.framework-center span {
  color: rgba(255, 255, 255, 0.72);
}

.framework-center strong {
  display: block;
  margin-top: 8px;
  font-size: 1.85rem;
  line-height: 1.08;
}

.framework-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(24, 58, 45, 0.06);
}

.framework-card p {
  margin-bottom: 0;
}

.why-section {
  display: grid;
  gap: 28px;
  background: var(--green-950);
}

.why-section .eyebrow,
.why-section h2 {
  color: #fff;
}

.why-copy p {
  color: rgba(255, 255, 255, 0.75);
}

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

.outcome-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.outcome-panel div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.outcome-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--green-950);
  background: #f6ead4;
  border-radius: 50%;
  font-weight: 900;
}

.outcome-panel strong {
  color: #fff;
  line-height: 1.25;
}

.receive-section {
  display: grid;
  gap: 28px;
  background: var(--white);
}

.receive-list {
  display: grid;
  gap: 12px;
}

.receive-list div {
  position: relative;
  padding: 14px 14px 14px 42px;
  color: var(--green-950);
  background: linear-gradient(90deg, rgba(233, 244, 236, 0.7), rgba(255, 255, 255, 0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.receive-list div::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 17px;
  width: 10px;
  height: 10px;
  background: var(--green-700);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--mint);
}

.proof-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

.proof-strip {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.proof-strip article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 1.55rem;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 750;
}

.process-section {
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.timeline article {
  position: relative;
  padding: 18px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--green-950);
  background: var(--mint);
  border-radius: 50%;
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.12), transparent 18rem),
    linear-gradient(145deg, var(--green-950), var(--green-800));
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.final-shell {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.final-shell .eyebrow,
.final-shell h2,
.final-shell p {
  color: #fff;
}

.final-shell p {
  max-width: 660px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: grid;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.thank-you-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 12%, rgba(50, 114, 85, 0.18), transparent 22rem),
    linear-gradient(135deg, var(--paper) 0%, var(--mint) 100%);
}

.thank-you-shell {
  display: grid;
  min-height: 100vh;
  padding: 28px 16px;
  place-items: center;
}

.thank-you-card {
  width: min(720px, 100%);
  padding: clamp(24px, 6vw, 48px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.thank-you-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--green-950);
  font-weight: 850;
}

.thank-you-brand img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  object-fit: cover;
}

.thank-you-card h1 {
  margin-bottom: 18px;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.06rem;
}

.thank-you-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.btn-secondary {
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(24, 58, 45, 0.22);
}

@media (min-width: 640px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-action {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .proof-strip,
  .receive-list,
  .qualification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .thank-you-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }
}

@media (min-width: 920px) {
  .section-pad {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-links a {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .nav-cta {
    margin-left: 6px;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .brand span {
    max-width: none;
  }

  h1 {
    font-size: 4.65rem;
  }

  h2 {
    font-size: 3.15rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    min-height: 680px;
  }

  .audit-preview {
    display: grid;
    align-self: center;
    max-width: 480px;
    justify-self: end;
    transform: translateY(10px);
  }

  .problem-section,
  .why-section,
  .receive-section {
    grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
    align-items: center;
  }

  .founder-card {
    grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
    align-items: center;
    padding: 30px;
  }

  .pain-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .pain-card.wide {
    grid-column: span 2;
  }

  .pain-card.offset {
    transform: translateY(22px);
  }

  .framework {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto auto;
    align-items: stretch;
  }

  .framework-center {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    display: grid;
    align-content: center;
    min-height: 260px;
    text-align: center;
  }

  .framework-card.offer,
  .framework-card.ads {
    grid-column: 1;
  }

  .framework-card.website,
  .framework-card.journey {
    grid-column: 4;
  }

  .framework-card.offer,
  .framework-card.website {
    grid-row: 1;
  }

  .framework-card.ads,
  .framework-card.journey {
    grid-row: 2;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr 1.25fr 1.25fr;
  }

  .timeline {
    position: relative;
  }

  .timeline::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 17%;
    right: 17%;
    height: 1px;
    background: var(--line);
  }

  .timeline article {
    background: rgba(255, 253, 248, 0.96);
  }

  .site-footer {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .site-footer p {
    text-align: right;
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: 2.24rem;
  }

  h2 {
    font-size: 1.84rem;
  }

  .section-pad {
    padding-right: 16px;
    padding-left: 16px;
  }

  .audit-preview,
  .pain-card,
  .framework-center,
  .framework-card,
  .outcome-panel,
  .proof-strip article,
  .timeline article {
    padding: 16px;
  }
}
