:root {
  --bg: #f5efe3;
  --paper: rgba(255, 252, 245, 0.72);
  --ink: #18261d;
  --muted: #526053;
  --line: rgba(24, 38, 29, 0.12);
  --accent: #1d5c42;
  --accent-strong: #103c2a;
  --highlight: #e8c789;
  --shadow: 0 20px 60px rgba(16, 34, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(232, 199, 137, 0.45), transparent 28%),
    radial-gradient(circle at top right, rgba(29, 92, 66, 0.1), transparent 24%),
    linear-gradient(180deg, #fbf6ec 0%, var(--bg) 100%);
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 72px;
}

section {
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 52px 32px;
}

.eyebrow,
.section-intro,
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  margin-top: 14px;
  font-family: "Newsreader", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-top: 10px;
}

.lede,
p,
li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.lede {
  max-width: 700px;
  margin: 18px 0 0;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #f8fbf7;
}

.button.secondary {
  background: rgba(29, 92, 66, 0.08);
  color: var(--accent-strong);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 700;
}

.problem-grid,
.content-layout,
.outcome-grid,
.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

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

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

.content-card,
.problem-grid article,
.faq-list article,
.outcome-grid div {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.feature {
  background:
    linear-gradient(145deg, rgba(29, 92, 66, 0.92), rgba(16, 60, 42, 0.94));
  color: #f7f7f1;
}

.feature p,
.feature .kicker,
.feature h2 {
  color: #f7f7f1;
}

.buy-card {
  max-width: 560px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 230, 0.96));
  border: 1px solid var(--line);
}

.pricing h2 {
  margin-top: 6px;
  font-family: "Newsreader", serif;
  font-size: 4rem;
}

ul {
  margin: 22px 0;
  padding-left: 20px;
}

.buy-note {
  margin-top: 12px;
  font-size: 0.92rem;
}

@media (max-width: 800px) {
  .page {
    width: min(100% - 20px, 1120px);
    padding-top: 18px;
  }

  section,
  .hero {
    padding: 22px;
    border-radius: 22px;
  }

  .problem-grid,
  .content-layout,
  .outcome-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .pricing h2 {
    font-size: 3rem;
  }
}
