:root {
  --bg: #f5efe6;
  --bg-soft: #fbf8f2;
  --surface: #fffaf3;
  --surface-strong: #fffdf8;
  --border: rgba(50, 38, 24, 0.12);
  --text: #1f1a17;
  --muted: #665b52;
  --accent: #2f6a57;
  --accent-dark: #214b3f;
  --shadow: 0 14px 34px rgba(38, 28, 18, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 36%),
    linear-gradient(180deg, #f7f1e9 0%, #f3ede4 52%, #efe6da 100%);
}

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

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

button,
a.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-140%);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 760px);
}

.section {
  padding: 4rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  background: rgba(245, 239, 230, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(50, 38, 24, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  font-weight: 700;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg-soft);
  font-size: 0.92rem;
}

.brand-text {
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(47, 106, 87, 0.22);
  outline-offset: 3px;
}

.button-primary {
  background: var(--accent);
  color: #f9f7f3;
  box-shadow: 0 16px 28px rgba(33, 75, 63, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: var(--border);
}

.button-block,
.button-block-mobile {
  width: 100%;
}

.hero {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-copy,
.hero-card,
.problem-card,
.step-card,
.deliverables-card,
.audience-card,
.pricing-card,
.final-cta-card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.pricing-card,
.final-cta-card,
.deliverables-card {
  border-radius: var(--radius);
}

.hero-copy {
  padding: 1.5rem 1.25rem;
}

.hero-card {
  padding: 1.25rem;
}

.eyebrow,
.section-kicker,
.card-label,
.step-number {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  letter-spacing: -0.04em;
}

h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

p {
  margin: 0;
}

.hero-lead,
.section-intro,
.pricing-text {
  max-width: 35rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.hero-list,
.feature-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.hero-list li,
.feature-list li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 700;
}

.hero-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-actions {
  margin-top: 1.25rem;
}

.micro-proof {
  margin-top: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-line,
.credibility-line,
.price-reassurance,
.final-supporting-line {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-line {
  margin-top: 0.85rem;
}

.hero-trust-strip {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-trust-strip p {
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fffdf8;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.pdf-mockup {
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f4ede2;
}

.pdf-sheet {
  min-height: 260px;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fffdf8;
  box-shadow: 0 8px 18px rgba(31, 26, 23, 0.06);
}

.pdf-kicker {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdf-title {
  margin-top: 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
}

.pdf-headline {
  margin-top: 0.8rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.pdf-lines {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.pdf-lines span {
  display: block;
  height: 0.6rem;
  border-radius: 999px;
  background: #ece3d6;
}

.pdf-lines span:nth-child(1) {
  width: 100%;
}

.pdf-lines span:nth-child(2) {
  width: 88%;
}

.pdf-lines span:nth-child(3) {
  width: 64%;
}

.hero-card-title {
  margin-top: 1rem;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  line-height: 1.12;
}

.credibility-line {
  margin-top: 0.75rem;
}

.hero-price-block {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.price-tag {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.price-note,
.price-description,
.price-footnote {
  color: var(--muted);
}

.price-note {
  margin-top: 0.45rem;
}

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

.problem-grid,
.steps-grid,
.audience-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.problem-card,
.step-card,
.audience-card {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
}

.problem-card p,
.step-card p:last-child,
.audience-card p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.key-line {
  margin-top: 1.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  font-size: 1.08rem;
  font-weight: 800;
}

.problem-credibility {
  margin-top: 0.9rem;
}

.feature-layout {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.deliverables-card {
  padding: 1.35rem;
}

.deliverables-note {
  margin-top: 1rem;
  color: var(--muted);
}

.deliverables-cta {
  margin-top: 1.15rem;
}

.pricing-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.price-box {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface-strong);
}

.price-amount {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  line-height: 1;
}

.price-description {
  margin-top: 0.35rem;
}

.price-reassurance {
  margin-top: 0.7rem;
}

.price-box .button {
  margin-top: 1.15rem;
}

.price-footnote {
  margin-top: 0.85rem;
  font-size: 0.95rem;
}

.faq-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 18px;
}

.faq-item summary {
  padding: 1.05rem 1.2rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 1.2rem 1.1rem;
  color: var(--muted);
}

.final-cta-card {
  padding: 1.5rem;
  text-align: center;
}

.final-supporting-line {
  margin-top: 0.8rem;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  padding: 0.75rem 1rem max(0.75rem, env(safe-area-inset-bottom));
  background: rgba(245, 239, 230, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(50, 38, 24, 0.08);
}

.sticky-cta-inner {
  width: min(100%, 560px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-title {
  font-size: 0.95rem;
  font-weight: 800;
}

.sticky-price {
  color: var(--muted);
  font-size: 0.9rem;
}

.sticky-button {
  min-width: 7.25rem;
}

main {
  padding-bottom: 6.5rem;
}

.success-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.success-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-copy {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.success-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.success-reassurance {
  margin-top: 0.8rem;
}

.success-open-link {
  margin-top: 0.7rem;
}

.success-fallback {
  margin-top: 0.55rem;
  font-size: 0.88rem;
}

.success-link {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

@media (min-width: 700px) {
  .section {
    padding: 5.5rem 0;
  }

  .hero-grid,
  .feature-layout,
  .pricing-card {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

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

  .hero-copy {
    padding: 2.4rem;
  }

  .hero-card,
  .deliverables-card,
  .price-box,
  .final-cta-card {
    padding: 2rem;
  }

  .hero-list {
    grid-template-columns: repeat(3, minmax(0, max-content));
    gap: 1rem;
  }

  .pricing-card {
    align-items: center;
    padding: 1.8rem;
  }

  .success-card {
    padding: 2rem;
  }
}

@media (min-width: 980px) {
  .hero {
    padding-top: 4rem;
  }

  .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 979px) {
  .header-cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .sticky-cta {
    display: none;
  }

  main {
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}
