:root {
  --background: #f7faf3;
  --foreground: #1a1a1a;
  --sage: #e8f0e5;
  --green: #237b4b;
  --deep: #39553e;
  --rose: #deb5c1;
  --rose-hover: #d8a4b4;
  --honey: #eba400;
  --line: #dbe5d7;
  --muted: #4c604f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(247, 250, 243, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--deep);
  text-transform: uppercase;
}

.brand-logo {
  width: 64px;
  height: 48px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 650;
}

.button,
.ghost-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.ghost-button:hover,
.outline-button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button {
  background: var(--rose);
  color: var(--foreground);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.button:hover {
  background: var(--rose-hover);
}

.button.green {
  background: var(--green);
  color: #fff;
}

.button.green:hover {
  background: #1d663e;
}

.ghost-button {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.outline-button {
  border-color: var(--green);
  color: var(--green);
}

.outline-button:hover {
  background: var(--green);
  color: #fff;
}

.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: flex-end;
  overflow: hidden;
  background: #263d2d;
  color: #fff;
  padding: 128px 0 72px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(22, 35, 24, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  margin: 0 0 20px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
}

.section-eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(48px, 8vw, 76px);
  line-height: 1.02;
  font-weight: 750;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.12;
  font-weight: 750;
}

h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 750;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.proof {
  border-block: 1px solid var(--line);
  background: var(--sage);
  padding: 28px 0;
}

.proof-grid {
  display: grid;
  gap: 16px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
  grid-template-columns: repeat(3, 1fr);
}

.section {
  padding: 92px 0;
}

.section.white {
  background: #fff;
}

.section.soft {
  background: #fffaf7;
}

.guide-section {
  border-block: 1px solid var(--line);
  background: #f2f6ed;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.section-head h2,
.why-text h2 {
  margin-top: 12px;
}

.section-head-text {
  max-width: 680px;
}

.offers {
  display: grid;
  gap: 20px;
  margin-top: 46px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 42, 25, 0.07);
  grid-template-columns: 220px minmax(0, 1fr);
}

.offer-media {
  background: var(--sage);
  padding: 20px;
}

.offer-media img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.offer-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 24px;
}

.offer-kicker {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}

.offer-copy,
.why-copy,
.principle p,
.legal-text {
  color: var(--muted);
  line-height: 1.75;
}

.offer-copy {
  margin-top: 16px;
}

.offer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price {
  margin: 0;
  font-size: 20px;
  font-weight: 750;
}

.previous {
  margin: 4px 0 0;
  color: #6d766b;
  font-size: 14px;
}

.why-grid {
  display: grid;
  gap: 44px;
  align-items: flex-start;
  grid-template-columns: 0.9fr 1.1fr;
}

.guide-grid {
  display: grid;
  gap: 44px;
  align-items: flex-start;
  grid-template-columns: 0.82fr 1.18fr;
}

.guide-copy h2 {
  margin-top: 12px;
}

.guide-actions {
  margin-top: 32px;
}

.guide-note {
  margin: 20px 0 0;
  color: #6d766b;
  font-size: 14px;
  line-height: 1.6;
}

.guide-preview {
  overflow: hidden;
  border: 1px solid #cbdcc5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 42, 25, 0.07);
}

.guide-preview iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  background: #fff;
}

.guide-preview-card {
  border: 1px solid #cbdcc5;
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(18, 42, 25, 0.07);
}

.guide-preview-kicker {
  margin: 0;
  color: #b56979;
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}

.guide-preview-card h3 {
  margin-top: 12px;
  color: #263d2d;
  font-size: 32px;
}

.guide-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.guide-points p {
  margin: 0;
  border-radius: 8px;
  background: #fffaf7;
  padding: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.why-copy {
  max-width: 620px;
  margin-top: 24px;
  font-size: 18px;
}

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

.learning-card,
.principle {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--background);
  padding: 22px;
}

.learning-card {
  border-color: #ead9d2;
  background: #fffefd;
  box-shadow: 0 14px 34px rgba(93, 62, 48, 0.06);
  padding: 24px;
}

.number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #f2d6de;
  color: #7a4a55;
  font-size: 14px;
  font-weight: 750;
}

.learning-card h3 {
  margin-top: 20px;
  color: #263d2d;
  font-size: 20px;
}

.learning-card p,
.team-card p:not(.team-kicker),
.about-copy {
  color: var(--muted);
  line-height: 1.75;
}

.learning-card p {
  margin: 12px 0 0;
}

.learning-card-wide {
  grid-column: 1 / -1;
}

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

.principle {
  background: var(--sage);
}

.principle p {
  margin: 16px 0 0;
}

.team-grid {
  display: grid;
  gap: 16px;
}

.team-card {
  border: 1px solid #ead9d2;
  border-radius: 8px;
  background: #fffefd;
  box-shadow: 0 14px 34px rgba(93, 62, 48, 0.06);
  padding: 24px;
}

.team-kicker {
  margin-top: 0;
  margin-bottom: 12px;
  color: #b56979;
  font-size: 14px;
  font-weight: 750;
}

.team-card h3 {
  color: #263d2d;
  font-size: 26px;
}

.team-card p:not(.team-kicker),
.about-copy {
  margin-top: 12px;
}

.cta {
  background: #1a1a1a;
  color: #fff;
  padding: 72px 0;
}

.cta-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr;
}

.cta .section-eyebrow {
  color: var(--rose);
}

.cta-copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
}

.footer {
  background: var(--sage);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  gap: 32px;
  color: var(--deep);
  font-size: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.footer-title {
  margin-bottom: 12px;
  color: var(--foreground);
  font-weight: 750;
}

.footer p,
.footer-links {
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--background);
}

.legal-header .header-inner {
  padding: 16px 0;
}

.legal-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 20px 96px;
}

.legal-main h1 {
  color: var(--foreground);
  font-size: clamp(40px, 6vw, 54px);
}

.legal-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 38px;
  background: #fff;
  padding: 24px;
}

.legal-row {
  display: grid;
  gap: 8px;
  border-top: 1px solid #e5ecdf;
  padding: 14px 0;
  font-size: 14px;
  grid-template-columns: 180px 1fr;
}

.legal-row:first-of-type {
  border-top: 0;
}

.legal-row strong {
  color: var(--muted);
}

.legal-section {
  margin-top: 36px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-section h2 {
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
  padding-bottom: 8px;
  color: var(--foreground);
  font-size: 22px;
}

.legal-section a,
.legal-box a,
.notice a {
  color: var(--green);
  font-weight: 750;
}

.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 22px;
  background: #fff;
  padding: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.source-note {
  margin-top: 42px;
  color: #6d766b;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .proof-grid,
  .offers,
  .why-grid,
  .guide-grid,
  .principles,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 650px;
    padding-bottom: 48px;
  }

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

  .actions,
  .offer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .ghost-button,
  .outline-button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-media {
    padding: 16px;
  }

  .learning-grid {
    grid-template-columns: 1fr;
  }

  .guide-preview iframe {
    height: 520px;
  }

  .footer-grid {
    gap: 26px;
  }

  .legal-row {
    grid-template-columns: 1fr;
  }
}
