:root {
  --ink: #17231f;
  --muted: #5c6962;
  --line: #d9e2db;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --sage: #dfeadf;
  --green: #123d34;
  --green-2: #1f6657;
  --blue: #d9eaf0;
  --gold: #d8b45e;
  --shadow: 0 22px 70px rgba(28, 47, 41, 0.12);
}

* {
  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;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(217, 226, 219, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: clamp(40px, 6vw, 80px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.pricing-card p,
.final-cta p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.check-list,
.offer-box ul,
.fit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 28px 0;
  color: var(--ink);
  font-weight: 650;
}

.check-list li,
.offer-box li,
.fit-card li {
  position: relative;
  padding-left: 28px;
}

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

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover {
  background: #0e3029;
}

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

.button.full {
  width: 100%;
}

.price-note,
.fine-print {
  color: var(--muted);
  font-size: 14px;
}

.kit-card {
  padding: clamp(22px, 4vw, 38px);
  background: linear-gradient(145deg, #ffffff 0%, #edf5ed 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.kit-label {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.75fr;
  gap: 18px;
  align-items: end;
  min-height: 310px;
}

.product {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px 10px;
  color: white;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(18, 61, 52, 0.16);
}

.product span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pouch {
  height: 270px;
  background: linear-gradient(155deg, var(--green), #2f7b68);
}

.jar {
  height: 220px;
  background: linear-gradient(155deg, #224f72, #77a8b8);
}

.sticks {
  height: 180px;
  background: linear-gradient(155deg, #9c7b2d, var(--gold));
}

.kit-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.kit-details p {
  margin: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
}

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

.section-heading.compact {
  max-width: 760px;
}

.problem {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-grid,
.feature-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

blockquote,
.feature-grid article,
.fit-card,
.offer-box,
.lead-form,
details {
  margin: 0;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

blockquote {
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
}

.feature-grid {
  grid-template-columns: repeat(5, 1fr);
}

.feature-grid article p,
.fit-card li,
.offer-box li,
details p {
  color: var(--muted);
}

.split,
.pricing-card {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.fit-grid {
  grid-template-columns: repeat(2, 1fr);
}

.fit-card ul {
  display: grid;
  gap: 12px;
}

.fit-card.muted {
  background: #f4f7f4;
}

.pricing {
  background: var(--green);
}

.pricing-card {
  max-width: 1120px;
  margin: 0 auto;
  color: white;
}

.pricing-card .eyebrow,
.pricing-card p {
  color: rgba(255, 255, 255, 0.78);
}

.offer-box {
  color: var(--ink);
  box-shadow: var(--shadow);
}

.price {
  margin: 24px 0 10px;
  color: var(--green);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 18px;
}

.form-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(28px, 5vw, 64px);
}

.lead-form {
  display: grid;
  gap: 18px;
}

.tally-embed {
  min-height: 620px;
}

.tally-embed iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-success {
  margin: 0;
  padding: 14px;
  color: var(--green);
  background: var(--sage);
  border-radius: 8px;
  font-weight: 750;
}

.trust {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.trust-row span {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

details p {
  margin: 14px 0 0;
  padding: 0;
  border: 0;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  margin-right: auto;
  margin-left: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .pricing-card,
  .form-section {
    grid-template-columns: 1fr;
  }

  .quote-grid,
  .feature-grid,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
  }
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .quote-grid,
  .feature-grid,
  .fit-grid,
  .trust-row,
  .kit-details {
    grid-template-columns: 1fr;
  }

  .product-row {
    min-height: 230px;
    gap: 10px;
  }

  .pouch {
    height: 210px;
  }

  .jar {
    height: 180px;
  }

  .sticks {
    height: 150px;
  }

  .site-footer {
    flex-direction: column;
  }
}
