:root {
  color-scheme: light;
  --ink: #102522;
  --muted: #596b66;
  --line: #d9e4df;
  --paper: #f8f4ed;
  --panel: #ffffff;
  --green: #0c5a50;
  --green-dark: #063b35;
  --red: #9d2e25;
  --gold: #d8b66b;
  --blue: #2f6f8f;
  --shadow: 0 20px 60px rgba(16, 37, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 244, 237, 0.92);
  border-bottom: 1px solid rgba(16, 37, 34, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 0.85rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a,
.text-link {
  text-decoration-color: rgba(12, 90, 80, 0.35);
  text-underline-offset: 4px;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  background: var(--green);
  color: white;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px) 44px;
}

.hero-copy,
.section-heading {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

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

.hero-lede {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.cta-row,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

.trust-strip {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(16, 37, 34, 0.12);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.problem,
.inside,
.how,
.faq {
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.two-column p,
.showcase p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.module-grid article {
  min-height: 184px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.module-grid span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 900;
}

.module-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: #edf6f3;
}

.showcase img,
.proof img {
  border: 1px solid rgba(16, 37, 34, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.audience {
  background: var(--green-dark);
  color: white;
}

.audience .eyebrow {
  color: var(--gold);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.audience-grid div {
  min-height: 92px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  counter-increment: steps;
}

.steps li::before {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  content: counter(steps);
  font-weight: 900;
}

.steps span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

details {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #103b36 0%, #0c5a50 54%, #8d2e25 100%);
  color: white;
}

.final-cta p {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta .primary-button {
  margin-top: 12px;
  border-color: white;
  background: white;
  color: var(--green-dark);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero,
  .two-column,
  .showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .module-grid,
  .audience-grid,
  .steps,
  .proof,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .brand span:last-child {
    max-width: 128px;
    line-height: 1.1;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 24px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .module-grid,
  .audience-grid,
  .steps,
  .proof,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-row a {
    width: 100%;
  }

  footer {
    flex-direction: column;
  }
}
