:root {
  --ink: #10281f;
  --ink-2: #183c30;
  --cream: #f4efe4;
  --paper: #fffdf7;
  --lime: #d8f56a;
  --orange: #ef6a3a;
  --muted: #6c756f;
  --line: rgba(16, 40, 31, .16);
  --shadow: 0 30px 80px rgba(16, 40, 31, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 99; background: var(--lime); padding: .75rem 1rem; font-weight: 800; }
.skip-link:focus { top: 1rem; }
.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 850; letter-spacing: -.025em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; background: var(--ink); color: var(--lime); border-radius: 4px; font-size: 14px; letter-spacing: -.08em; }
.nav-cta { text-decoration: none; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; border-bottom: 2px solid var(--ink); padding-bottom: 3px; }
.nav-cta span { color: var(--orange); }

.hero {
  max-width: 1240px;
  min-height: 670px;
  margin: 0 auto;
  padding: 64px 28px 88px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
}
.eyebrow, .kicker { margin: 0 0 18px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 30px; height: 3px; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: -.055em; line-height: .96; }
h1 { max-width: 720px; margin-bottom: 28px; font-size: clamp(58px, 7vw, 96px); }
h2 { font-size: clamp(42px, 5vw, 66px); }
.hero-lede { max-width: 670px; margin-bottom: 32px; font-size: 20px; line-height: 1.55; color: #3e4d46; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 14px; min-height: 56px; padding: 0 24px; border-radius: 3px; text-decoration: none; font-weight: 900; }
.button-primary { background: var(--ink); color: white; box-shadow: 7px 7px 0 var(--orange); transition: transform .2s, box-shadow .2s; }
.button-primary:hover { transform: translate(2px, 2px); box-shadow: 5px 5px 0 var(--orange); }
.text-link { font-weight: 850; text-underline-offset: 5px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 35px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; font-weight: 750; }
.hero-proof li::before { content: "✓"; color: var(--ink); margin-right: 7px; }

.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.closing-panel { background: var(--ink); color: white; padding: 36px; border-top: 8px solid var(--lime); }
.closing-panel .kicker { color: var(--lime); font-size: 14px; }
.closing-panel h2 { font-size: clamp(38px, 4vw, 56px); margin-bottom: 30px; }
.closing-panel ol { padding-left: 24px; margin: 0; }
.closing-panel li { padding: 18px 0 18px 8px; border-top: 1px solid #567064; }
.closing-panel li strong, .closing-panel li span { display: block; }
.closing-panel li span { margin-top: 6px; color: #d4dfd8; }
.panel-offer { margin: 24px 0 0; padding-top: 24px; border-top: 1px solid #567064; }
.panel-offer strong { display: block; font-size: 48px; color: var(--lime); }
.panel-offer span { font-size: 14px; color: #d4dfd8; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.problem-grid article { border-top: 3px solid var(--orange); padding-top: 24px; }
.problem-grid h3 { font-family: Georgia, serif; font-size: 28px; line-height: 1.15; }
.problem-grid p { font-size: 16px; color: #46534d; }
.deliverable p { font-size: 16px; }
@media (max-width: 620px) {
  .closing-panel { padding: 28px 22px; }
  .problem-grid { grid-template-columns: 1fr; }
}
.paper-stack { position: relative; width: min(390px, 84vw); aspect-ratio: .73; }
.paper { position: absolute; inset: 0; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.paper-back { transform: rotate(6deg) translate(18px, -7px); background: var(--lime); box-shadow: none; }
.paper-front { padding: 35px; transform: rotate(-2deg); display: flex; flex-direction: column; }
.paper-topline { display: flex; justify-content: space-between; border-bottom: 1px solid var(--ink); padding-bottom: 10px; font-size: 10px; letter-spacing: .16em; }
.paper-topline b { color: var(--orange); }
.paper-title { margin: 52px 0 auto; font-family: Georgia, serif; font-size: 48px; line-height: .98; letter-spacing: -.05em; }
.paper-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.paper-grid div { border-top: 1px solid var(--ink); padding-top: 8px; }
.paper-grid small, .paper-grid strong { display: block; }
.paper-grid small { font-size: 8px; letter-spacing: .15em; }
.paper-grid strong { margin-top: 6px; font-size: 12px; }
.paper-accent { width: 42%; height: 9px; background: var(--orange); }
.price-card { position: absolute; right: -12px; bottom: 44px; width: 150px; padding: 17px 18px 15px; background: var(--ink); color: white; box-shadow: 8px 8px 0 var(--orange); transform: rotate(2deg); }
.price-card span, .price-card small { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.price-card strong { display: block; margin: 1px 0 -2px; color: var(--lime); font-family: Georgia, serif; font-size: 48px; line-height: 1; }

.proof-strip { overflow: hidden; display: flex; justify-content: center; gap: 25px; padding: 20px; background: var(--ink); color: white; font-size: 11px; font-weight: 900; letter-spacing: .2em; white-space: nowrap; }
.proof-strip i { color: var(--lime); font-style: normal; }
.section { max-width: 1240px; margin: 0 auto; padding: 110px 28px; }
.section-heading { max-width: 820px; margin-bottom: 60px; }
.section-heading h2, .process-intro h2 { margin-bottom: 24px; }
.section-heading p:last-child, .process-intro > p:last-child { max-width: 680px; color: var(--muted); font-size: 18px; }
.kicker { color: var(--orange); }

.transformation { padding-bottom: 130px; }
.comparison { display: grid; grid-template-columns: 1fr 56px 1fr; align-items: center; }
.sample-card { margin: 0; padding: 18px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 16px 50px rgba(16, 40, 31, .1); }
.sample-card.muted { transform: rotate(-1.2deg); filter: saturate(.25); }
.sample-card.after { transform: rotate(1deg); border-color: rgba(239,106,58,.5); }
.sample-label { display: flex; align-items: baseline; justify-content: space-between; padding: 2px 4px 14px; }
.sample-label span { font-family: Georgia, serif; font-size: 25px; font-weight: 700; }
.sample-label small { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.sample-card img { width: 100%; aspect-ratio: .77; object-fit: cover; object-position: top; border: 1px solid var(--line); }
.sample-card figcaption { padding: 14px 4px 2px; color: var(--muted); font-size: 14px; }
.arrow { display: grid; place-items: center; width: 48px; height: 48px; background: var(--lime); border-radius: 50%; font-size: 25px; font-weight: 900; z-index: 2; }
.sample-note { margin: 30px auto 0; max-width: 820px; text-align: center; color: var(--muted); font-size: 12px; }

.deliverables { max-width: none; padding-left: max(28px, calc((100vw - 1184px)/2)); padding-right: max(28px, calc((100vw - 1184px)/2)); background: var(--paper); }
.compact { max-width: 720px; }
.deliverable-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.deliverable { min-height: 300px; padding: 28px 24px; border-right: 1px solid var(--line); }
.deliverable:last-child { border-right: 0; }
.deliverable.featured { background: var(--lime); }
.number { color: var(--orange); font-weight: 900; font-size: 12px; letter-spacing: .12em; }
.deliverable h3 { margin: 82px 0 16px; font-family: Georgia, serif; font-size: 28px; line-height: 1.05; letter-spacing: -.03em; }
.deliverable p { color: #46534d; font-size: 14px; }

.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.process-intro { position: sticky; top: 32px; align-self: start; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.steps li { display: grid; grid-template-columns: 58px 1fr; gap: 14px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.steps li > span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--ink); border-radius: 50%; font-weight: 900; }
.steps h3 { margin-bottom: 8px; font-family: Georgia, serif; font-size: 26px; letter-spacing: -.025em; }
.steps p { margin-bottom: 0; color: var(--muted); }

.fit { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; padding-top: 0; }
.fit-card { padding: 54px; min-height: 440px; }
.fit-card.good { background: var(--ink); color: white; }
.fit-card.good .kicker { color: var(--lime); }
.fit-card.not { border: 1px solid var(--ink); }
.fit-card h2 { font-size: clamp(38px, 4vw, 56px); }
.fit-card ul { margin: 34px 0 0; padding: 0; list-style: none; }
.fit-card li { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.2); }
.fit-card li::before { content: "✓"; color: var(--lime); margin-right: 11px; }
.fit-card.not p:last-child { color: var(--muted); font-size: 17px; }

.guarantee { display: grid; grid-template-columns: 190px 1fr; gap: 60px; align-items: center; max-width: 980px; }
.guarantee h2 { margin-bottom: 22px; }
.guarantee p:last-child { color: var(--muted); font-size: 17px; }
.seal { width: 160px; height: 160px; display: grid; place-content: center; text-align: center; background: var(--orange); color: white; border-radius: 50%; outline: 1px solid var(--cream); outline-offset: -10px; transform: rotate(-8deg); }
.seal span { font-family: Georgia, serif; font-size: 62px; line-height: .8; }
.seal small { margin-top: 9px; font-weight: 900; letter-spacing: .16em; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--ink); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; cursor: pointer; list-style: none; padding: 24px 42px 24px 0; font-weight: 850; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; font-size: 22px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 650px; padding: 0 42px 24px 0; margin: 0; color: var(--muted); }

.final-cta { max-width: none; padding-left: max(28px, calc((100vw - 1184px)/2)); padding-right: max(28px, calc((100vw - 1184px)/2)); background: var(--ink); color: white; display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center; }
.final-cta .kicker { color: var(--lime); }
.final-cta h2 { margin-bottom: 24px; }
.final-cta > div > p:last-child { color: rgba(255,255,255,.68); max-width: 640px; }
.offer-box { padding: 32px; border: 1px solid rgba(255,255,255,.25); }
.offer-box > div { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 24px; }
.offer-box span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.offer-box strong { grid-column: 2; grid-row: 1 / span 2; color: var(--lime); font-family: Georgia, serif; font-size: 68px; line-height: .8; }
.offer-box small { color: rgba(255,255,255,.6); }
.button-light { width: 100%; background: white; color: var(--ink); }
.offer-box > p { margin: 16px 0 0; text-align: center; color: rgba(255,255,255,.6); font-size: 11px; }
footer { max-width: 1240px; margin: 0 auto; padding: 50px 28px; display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; color: var(--muted); font-size: 12px; }
footer p { margin: 0; text-align: center; }
footer > a:last-child { text-underline-offset: 3px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 30px; padding-top: 52px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { min-height: 520px; }
  .deliverable-grid { grid-template-columns: 1fr 1fr; }
  .deliverable:nth-child(2) { border-right: 0; }
  .process, .faq { grid-template-columns: 1fr; gap: 48px; }
  .process-intro { position: static; }
  .fit { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; gap: 45px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer p { text-align: center; }
  .footer-brand { justify-self: center; }
}

@media (max-width: 620px) {
  .site-header { height: 66px; padding: 0 18px; }
  .brand > span:last-child { font-size: 14px; }
  .nav-cta { font-size: 10px; }
  .hero { min-height: 0; padding: 46px 20px 70px; }
  h1 { font-size: 54px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-link { text-align: center; }
  .hero-visual { min-height: 430px; }
  .paper-stack { width: 280px; }
  .paper-front { padding: 27px; }
  .paper-title { margin-top: 38px; font-size: 38px; }
  .price-card { right: 2px; bottom: 15px; }
  .proof-strip { justify-content: flex-start; }
  .section { padding: 78px 20px; }
  .comparison { grid-template-columns: 1fr; gap: 22px; }
  .arrow { margin: -35px auto; transform: rotate(90deg); }
  .deliverable-grid { grid-template-columns: 1fr; }
  .deliverable { border-right: 0; border-bottom: 1px solid var(--line); min-height: 250px; }
  .deliverable h3 { margin-top: 55px; }
  .fit { padding-top: 0; }
  .fit-card { padding: 36px 28px; min-height: 0; }
  .guarantee { grid-template-columns: 1fr; gap: 36px; }
  .seal { width: 135px; height: 135px; }
  .faq { gap: 25px; }
  .final-cta { padding-top: 78px; padding-bottom: 78px; }
  .offer-box { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
