:root {
  --bg: #f4f0e8;
  --bg-2: #ebe5da;
  --card: #fbf8f2;
  --ink: #20201e;
  --muted: #6f716a;
  --line: #d8d1c4;
  --sage: #7f927f;
  --sage-dark: #617463;
  --clay: #b7836c;
  --charcoal: #292b29;
  --shadow: 0 24px 70px rgba(43, 43, 38, .12);
  --radius: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: radial-gradient(rgba(32,32,30,.25) .45px, transparent .45px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 55%);
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 100px 0; }

.announcement {
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  background: var(--charcoal);
  color: #f6f2ea;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 240, 232, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 209, 196, .75);
}
.nav { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Manrope", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -.03em; }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--charcoal); color: white; font-size: 15px; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid var(--charcoal);
  transition: .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(41,43,41,.16); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 13px; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-full { width: 100%; }
.text-link { font-weight: 700; font-size: 15px; }
.text-link span { display: inline-block; margin-left: 4px; transition: transform .2s; }
.text-link:hover span { transform: translate(3px, 3px); }

.hero { padding-top: 82px; padding-bottom: 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; color: var(--sage-dark); }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin: 0; line-height: 1.06; letter-spacing: -.045em; }
h1 { font-size: clamp(50px, 6.5vw, 82px); max-width: 830px; }
h2 { font-size: clamp(38px, 4.5vw, 58px); }
h3 { font-size: 22px; }
.hero-sub { max-width: 700px; font-size: 19px; color: var(--muted); margin: 26px 0 30px; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.mini-proof { display: flex; align-items: center; gap: 14px; margin-top: 34px; max-width: 620px; }
.mini-proof p { margin: 0; font-size: 13px; color: var(--muted); }
.avatars { display: flex; }
.avatars span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; margin-left: -7px; background: #d9d1c4; border: 2px solid var(--bg); font-size: 9px; font-weight: 800; }
.avatars span:first-child { margin-left: 0; background: #9ba89a; }
.avatars span:nth-child(2) { background: #c9a08d; }
.avatars span:nth-child(3) { background: #b8b4a6; }
.avatars span:last-child { background: var(--charcoal); color: white; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.visual-card { border: 1px solid var(--line); background: rgba(251,248,242,.86); backdrop-filter: blur(8px); box-shadow: var(--shadow); }
.main-card { width: min(100%, 470px); border-radius: 28px; padding: 32px; transform: rotate(-1.5deg); }
.card-topline { display: flex; align-items: center; justify-content: space-between; font-size: 10px; letter-spacing: .14em; font-weight: 800; color: var(--muted); }
.status-dot { color: var(--sage-dark); }
.status-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 6px; background: var(--sage); box-shadow: 0 0 0 5px rgba(127,146,127,.12); }
.main-card h3 { font-size: 30px; margin: 26px 0; max-width: 340px; }
.content-flow { display: grid; gap: 10px; }
.flow-item { display: flex; align-items: center; gap: 15px; padding: 14px 16px; border: 1px solid #ded8cd; border-radius: 13px; background: #f8f4ed; }
.flow-item > span { font-family: "Manrope"; color: #99968d; font-size: 11px; }
.flow-item div { display: grid; }
.flow-item strong { font-size: 14px; }
.flow-item small { color: var(--muted); font-size: 11px; }
.flow-item.active { background: #dfe6dd; border-color: #bbc8b9; }
.floating-card { position: absolute; width: 170px; padding: 18px; border-radius: 16px; border: 1px solid var(--line); background: var(--card); box-shadow: 0 18px 45px rgba(43,43,38,.12); display: grid; }
.floating-card .kicker { font-size: 9px; letter-spacing: .14em; font-weight: 800; color: var(--muted); }
.floating-card strong { font: 800 28px/1 "Manrope"; margin: 8px 0 6px; }
.floating-card small { color: var(--muted); }
.fc-one { left: -12px; bottom: 52px; transform: rotate(4deg); }
.fc-two { right: -12px; top: 52px; transform: rotate(4deg); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(235,229,218,.55); }
.trust-grid { min-height: 88px; display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; gap: 20px; color: #6f716a; }
.trust-grid span { font-size: 10px; letter-spacing: .18em; font-weight: 800; }
.trust-grid strong { font-family: "Manrope"; font-size: 14px; text-align: center; }

.split-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; }
.problem-section { background: var(--card); }
.problem-copy { align-self: end; font-size: 18px; color: var(--muted); }
.problem-copy p:last-child { margin-bottom: 0; }
.centered { text-align: center; max-width: 780px; margin: 0 auto 52px; }
.centered .eyebrow { justify-content: center; }
.centered p { color: var(--muted); font-size: 17px; max-width: 650px; margin: 18px auto 0; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(251,248,242,.76); }
.step-card .step-num { font-family: "Manrope"; font-size: 12px; font-weight: 800; color: var(--clay); }
.step-card h3 { margin: 54px 0 14px; }
.step-card p { margin: 0; color: var(--muted); font-size: 15px; }
.accent-card { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.accent-card p { color: #c9ccc6; }
.accent-card .step-num { color: #c0c9bd; }

.outcomes-section { padding: 58px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.outcome-stat { display: grid; gap: 2px; padding-left: 24px; border-left: 1px solid var(--line); }
.outcome-stat strong { font: 800 clamp(30px, 3vw, 42px)/1 "Manrope"; }
.outcome-stat span { color: var(--muted); font-size: 13px; }

.playbook-section { background: #ded8cc; }
.playbook-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 80px; align-items: center; }
.playbook-copy .lead { font-size: 19px; color: #666860; max-width: 620px; }
.check-list { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: var(--sage-dark); color: white; font-size: 11px; }
.guarantee-note { display: inline-block; font-size: 12px; color: var(--muted); padding-top: 8px; border-top: 1px solid rgba(32,32,30,.15); }
.offer-card { background: var(--card); border-radius: 28px; padding: 24px; box-shadow: var(--shadow); }
.product-mockup { height: 350px; border-radius: 20px; background: #c7cec3; display: grid; place-items: center; overflow: hidden; position: relative; }
.mock-cover { width: 225px; min-height: 285px; padding: 25px; background: #eae5dc; border: 1px solid rgba(32,32,30,.18); box-shadow: 16px 22px 36px rgba(43,43,38,.2); transform: rotate(-6deg); display: flex; flex-direction: column; }
.mock-cover > span { font: 800 15px "Manrope"; }
.mock-cover h3 { margin-top: 52px; font-size: 28px; }
.mock-cover p { font-size: 12px; color: var(--muted); }
.mock-cover small { margin-top: auto; font-size: 9px; letter-spacing: .12em; }
.mock-spine { position: absolute; width: 18px; height: 286px; background: #bcb5aa; transform: translate(-111px, 4px) rotate(-6deg); z-index: 0; }
.offer-content { padding: 26px 6px 4px; }
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price { font: 800 40px/1 "Manrope"; }
.price-note { color: var(--muted); font-size: 13px; }
.offer-content > p { color: var(--muted); }
.secure-note { display: block; text-align: center; margin-top: 10px; color: #8a8b84; font-size: 10px; }

.proof-section { background: var(--card); }
.testimonial-disclaimer { font-size: 12px !important; color: #8d7d74 !important; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); }
.stars { color: var(--clay); letter-spacing: .12em; font-size: 11px; }
.testimonial-card > p { margin: 20px 0 26px; font-size: 16px; }
.person { display: flex; align-items: center; gap: 12px; }
.person > span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #d2d8cf; font-size: 10px; font-weight: 800; }
.person div { display: grid; }
.person strong { font-size: 13px; }
.person small { color: var(--muted); font-size: 11px; }

.referral-section { padding-top: 30px; background: var(--card); }
.referral-card { padding: 46px; border-radius: 26px; background: var(--charcoal); color: white; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.referral-card h2 { font-size: clamp(34px, 4vw, 50px); max-width: 700px; }
.referral-card p { color: #c6c8c3; max-width: 650px; }
.referral-card .eyebrow { color: #aeb9aa; }
.referral-card .btn-secondary { color: white; border-color: #d6d8d3; white-space: nowrap; }

.faq-grid { display: grid; grid-template-columns: .6fr 1fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 22px 0; }
summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: "Manrope"; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--muted); }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); max-width: 720px; margin-bottom: 0; }

.final-cta-section { padding-top: 30px; }
.final-cta { text-align: center; padding: 76px 30px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(135deg, #ebe6dc, #dfe5dc); }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { max-width: 780px; margin: 0 auto; }
.final-cta p { color: var(--muted); margin: 18px auto 28px; }

footer { padding: 40px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.footer-brand { margin-bottom: 10px; }
.footer-grid p { color: var(--muted); font-size: 12px; margin: 0; }
.footer-links { display: flex; gap: 22px; font-size: 12px; color: var(--muted); }
.copyright { grid-column: 1 / -1; padding-top: 26px; border-top: 1px solid var(--line); }

.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; padding: 12px 18px; border-radius: 10px; background: var(--charcoal); color: white; font-size: 13px; box-shadow: var(--shadow); transition: .2s ease; z-index: 80; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid, .playbook-grid, .split-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 60px; }
  .hero-visual { min-height: 470px; }
  .steps-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); padding: 20px 0; }
  .trust-grid span { text-align: center; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .referral-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 74px 0; }
  .announcement { font-size: 11px; }
  .nav { height: 66px; }
  .nav .btn-small { display: none; }
  h1 { font-size: 46px; }
  h2 { font-size: 38px; }
  .hero-sub { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 430px; }
  .main-card { padding: 24px; }
  .main-card h3 { font-size: 26px; }
  .floating-card { width: 145px; padding: 14px; }
  .floating-card strong { font-size: 23px; }
  .fc-one { left: -4px; bottom: 14px; }
  .fc-two { right: -4px; top: 15px; }
  .steps-grid, .testimonial-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 225px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid span { grid-column: 1 / -1; }
  .offer-card { padding: 14px; }
  .product-mockup { height: 310px; }
  .referral-card { padding: 34px 24px; }
  .final-cta { padding: 56px 22px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-links { flex-wrap: wrap; }
}
