:root {
  --paper: #f7f3eb;
  --surface: #fffefa;
  --ink: #15221d;
  --forest: #234d40;
  --moss: #78a85e;
  --clay: #b86f45;
  --blue: #2e6f95;
  --sky: #e8f2f3;
  --blush: #f3d8c7;
  --line: rgba(21, 34, 29, 0.14);
  --soft-shadow: 0 20px 60px rgba(21, 34, 29, 0.14);
  --hard-shadow: 0 28px 90px rgba(21, 34, 29, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", Arial, sans-serif;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

body::selection {
  background: var(--blush);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 70px;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  background: rgba(255, 254, 250, 0.86);
  border-bottom: 1px solid rgba(21, 34, 29, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-family: "Bricolage Grotesque", "Nunito Sans", Arial, sans-serif;
  font-size: 21px;
  font-weight: 950;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(21, 34, 29, 0.78);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a,
.secondary-link,
.text-cta {
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.header-cta {
  justify-self: end;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: #fffefa;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  filter: saturate(1.04) contrast(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 48%, rgba(255, 254, 250, 0.04), rgba(21, 34, 29, 0.3) 34%, rgba(21, 34, 29, 0.72) 68%),
    linear-gradient(90deg, rgba(21, 34, 29, 0.9) 0%, rgba(21, 34, 29, 0.62) 46%, rgba(21, 34, 29, 0.24) 100%),
    linear-gradient(180deg, rgba(21, 34, 29, 0.12) 0%, rgba(21, 34, 29, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 124px 0 64px;
  color: #fffefa;
}

.hero-content > * {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5c39a;
}

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

h1 {
  margin: 0;
  max-width: 840px;
  font-family: "Bricolage Grotesque", "Nunito Sans", Arial, sans-serif;
  font-size: 76px;
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: #f5c39a;
}

h2 {
  margin: 0;
  max-width: 820px;
  font-size: 48px;
  line-height: 1;
  font-family: "Bricolage Grotesque", "Nunito Sans", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

p {
  font-size: 18px;
  line-height: 1.48;
}

.hero-copy {
  margin: 24px 0 0;
  color: rgba(255, 254, 250, 0.92);
  font-size: 25px;
  line-height: 1.22;
  font-weight: 800;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.primary-cta,
.sticky-cta {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 8px;
  background: var(--clay);
  color: #fffefa;
  font-size: 16px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(184, 111, 69, 0.34);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.primary-cta:hover,
.sticky-cta:hover {
  transform: translateY(-1px);
  background: #c8774d;
  box-shadow: 0 20px 54px rgba(184, 111, 69, 0.4);
}

.secondary-link {
  color: #fffefa;
  font-size: 16px;
  font-weight: 900;
}

.hero-note {
  margin: 16px 0 0;
  color: rgba(255, 254, 250, 0.72);
  font-size: 14px;
  font-weight: 750;
}

.hero-facts {
  margin: 38px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 254, 250, 0.26);
  background: rgba(255, 254, 250, 0.16);
}

.hero-facts div {
  padding: 16px;
  background: rgba(21, 34, 29, 0.36);
}

.hero-facts dt {
  margin-bottom: 5px;
  color: rgba(255, 254, 250, 0.68);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: #fffefa;
  font-size: 18px;
  font-weight: 950;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-band div {
  min-height: 94px;
  padding: 20px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border-right: 1px solid var(--line);
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.proof-band span {
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

.two-column,
.split-heading,
.conversion-layout,
.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: start;
}

.problem-copy p,
.split-heading p,
.offer-layout p,
.final-cta p {
  margin-top: 0;
  color: rgba(21, 34, 29, 0.74);
}

.text-cta {
  color: var(--blue);
  font-size: 17px;
  font-weight: 950;
}

.problem-section {
  background: var(--paper);
}

.problem-moments {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.problem-moments article {
  min-height: 160px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.problem-moments strong {
  color: var(--forest);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 950;
}

.problem-moments span {
  color: rgba(21, 34, 29, 0.7);
  font-size: 15px;
  line-height: 1.38;
}

.video-section {
  background: var(--sky);
  border-top: 1px solid rgba(46, 111, 149, 0.16);
  border-bottom: 1px solid rgba(46, 111, 149, 0.16);
}

.section-heading {
  margin-bottom: 36px;
}

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

figure {
  margin: 0;
}

figure video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--hard-shadow);
}

figcaption {
  margin-top: 12px;
  color: rgba(21, 34, 29, 0.72);
  font-size: 14px;
  font-weight: 850;
}

.benefit-section {
  background: var(--surface);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.benefit-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(21, 34, 29, 0.07);
}

.benefit-grid article.featured-benefit {
  grid-row: span 2;
}

.benefit-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  background: #fff;
}

.featured-benefit img {
  aspect-ratio: 1 / 1.22;
  object-fit: contain;
  padding: 24px;
}

.benefit-grid h3,
.benefit-grid p {
  padding-left: 18px;
  padding-right: 18px;
}

.benefit-grid p {
  margin: 0;
  padding-bottom: 20px;
  color: rgba(21, 34, 29, 0.72);
  font-size: 15px;
}

.conversion-section {
  background: linear-gradient(90deg, var(--forest), #2c604e);
  color: #fffefa;
}

.conversion-section .section-kicker {
  color: #bfe4a9;
}

.fit-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.fit-list li {
  padding: 18px 20px;
  border: 1px solid rgba(255, 254, 250, 0.2);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.08);
  color: rgba(255, 254, 250, 0.9);
  font-size: 17px;
  font-weight: 800;
}

.offer-section {
  background: #f9fbf8;
}

.offer-layout {
  align-items: center;
}

.offer-proof {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-proof span {
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--sky);
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.offer-panel {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.offer-panel img {
  width: 100%;
  border-radius: 6px;
  background: #fff;
}

.price {
  margin: 0;
  color: var(--forest);
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

.microcopy,
.after-cta-note {
  margin: 8px 0 18px;
  color: rgba(21, 34, 29, 0.66) !important;
  font-size: 13px;
}

.after-cta-note {
  margin: 12px 0 0;
  text-align: center;
}

.full-width {
  width: 100%;
}

.faq-section {
  background: var(--paper);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(21, 34, 29, 0.04);
}

summary {
  cursor: pointer;
  color: var(--forest);
  font-size: 18px;
  font-weight: 950;
}

details p {
  margin: 14px 0 0;
  color: rgba(21, 34, 29, 0.72);
}

.final-cta {
  text-align: center;
  background: var(--surface);
}

.final-cta .section-inner {
  padding-bottom: 122px;
}

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

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  max-width: 560px;
  margin-bottom: 26px;
}

.site-footer {
  min-height: 76px;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  background: var(--ink);
  color: rgba(255, 254, 250, 0.78);
  font-size: 13px;
  font-weight: 750;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fffefa;
  font-family: "Bricolage Grotesque", "Nunito Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a,
.footer-links button {
  border: 0;
  background: transparent;
  color: rgba(255, 254, 250, 0.78);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sticky-cta {
  position: fixed;
  z-index: 25;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: none;
}

.consent-banner {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  width: min(520px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(21, 34, 29, 0.18);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--hard-shadow);
}

.consent-banner[hidden] {
  display: none;
}

.consent-kicker {
  margin: 0 0 6px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.consent-banner h2 {
  font-size: 28px;
}

.consent-banner p {
  margin: 10px 0;
  color: rgba(21, 34, 29, 0.72);
  font-size: 15px;
}

.consent-banner a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.consent-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.consent-actions button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
}

.consent-secondary {
  background: var(--surface);
  color: var(--forest);
}

.consent-primary {
  background: var(--forest);
  color: #fffefa;
}

.legal-body {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  min-height: 70px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.legal-main {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-main h1 {
  color: var(--forest);
  font-size: 56px;
}

.legal-main h2 {
  margin-top: 34px;
  color: var(--forest);
  font-size: 26px;
}

.legal-main p,
.legal-main li {
  color: rgba(21, 34, 29, 0.76);
  font-size: 16px;
  line-height: 1.6;
}

.legal-main a {
  color: var(--blue);
  font-weight: 900;
}

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

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 38px;
  }

  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .split-heading,
  .conversion-layout,
  .offer-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .problem-moments,
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-grid article.featured-benefit {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 16px;
  }

  .hero {
    min-height: 88svh;
    align-items: flex-end;
  }

  .hero-media {
    object-position: 62% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(21, 34, 29, 0.2) 0%, rgba(21, 34, 29, 0.78) 48%, rgba(21, 34, 29, 0.94) 100%),
      linear-gradient(90deg, rgba(21, 34, 29, 0.7), rgba(21, 34, 29, 0.28));
  }

  .hero-content {
    width: min(100% - 32px, 1120px);
    padding: 100px 0 34px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy {
    font-size: 20px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .primary-cta {
    width: 100%;
  }

  .hero-facts,
  .proof-band,
  .video-grid,
  .problem-moments,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article.featured-benefit {
    grid-column: auto;
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
    padding: 58px 0;
  }

  .problem-moments {
    padding-top: 0;
  }

  .site-footer {
    padding-bottom: 92px;
    flex-direction: column;
  }

  .consent-banner {
    bottom: 12px;
  }

  .consent-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .legal-main h1 {
    font-size: 42px;
  }

  body.sticky-visible .sticky-cta {
    display: inline-flex;
  }
}
