Home / Course / Module 05

Module 05

The pre-lander: the single biggest EPC lever

10 min read · pairs with tools/landers and tools/tracking.

A pre-lander is a page you own that sits between your Facebook ad and the vendor's sales page. The click flow becomes: ad → your pre-lander → vendor offer. It looks like extra friction. It's not — it's the single biggest lever you have on earnings per click.

Why a pre-lander multiplies EPC

Three things happen when someone hits a pre-lander instead of going direct to the vendor:

  1. Pre-qualification. People who bounce from the pre-lander never reach the vendor — and you don't pay the vendor anything (the model is one-sided), but you've shaved low-intent clicks out of the funnel. Your downstream conversion rate goes up.
  2. Warm-up. A quiz, an article, or a video on the pre-lander invests the visitor in the story. By the time they click through, they want the answer. The vendor's VSL converts a "wants the answer" visitor much better than a cold one.
  3. Compliance buffer. Facebook reviews your URL. If you send direct to a Clickbank hop link, FB sometimes flags the offer page and disapproves the ad. Sending to your own clean pre-lander URL puts a buffer between FB's reviewers and the spicy vendor copy.

The math

Direct-to-offer EPC in most niches: $0.30–0.70. With a decent pre-lander: $0.80–1.80. Same traffic, same offer — 2–3× the earnings per click. That's the whole game.

Three pre-lander archetypes

1. The quiz pre-lander

2–6 multiple-choice questions, then a "personalized result" that conveniently recommends the offer. Works best for health, dating, self-improvement. The act of clicking answers makes the visitor commit; the personalized result feels earned.

Structure:

  • Headline matching the ad hook ("Find your blood-sugar type")
  • Question 1: demographic (age range, gender)
  • Question 2: pain point ("how long have you struggled with X?")
  • Question 3–5: situation (lifestyle, prior attempts, beliefs)
  • Loading bar (3–6 seconds of fake "analyzing")
  • Result page: "Based on your answers, here's what we recommend" + CTA to the offer

2. The advertorial article

A long-form article that reads like editorial content. "I tried X for 30 days and here's what happened" or "The little-known truth about Y." Works best for make-money, supplements, and any niche where social proof matters.

Structure:

  • Editorial-looking header (made-up publication name, byline, date)
  • 800–1500 words telling the story
  • 2–3 inline links to the offer ("I ordered this one after reading the reviews")
  • End CTA

3. The VSL pre-lander

Your own short video (2–4 min) framing the story, then a CTA to the offer page. Most expensive to produce, highest barrier to copy, can convert the best on warm niches. Save for once you have a winning niche/offer and want to defend it.

Anatomy of a high-CTR pre-lander

Whichever archetype you pick:

  • Mobile first. 80–90% of FB traffic is mobile. Test the page on your phone before anything else.
  • Above-the-fold hook matching the ad. If the ad said "blood-sugar quiz," the first thing visible must say "blood-sugar quiz." Mismatch is the #1 reason for bounces.
  • One CTA color, used consistently. Orange and green convert well; pick one and don't use it for anything that isn't the CTA.
  • Fast. Under 2-second time-to-interactive. Optimize images. No frameworks. Inline critical CSS. The operator's lander template is ~6 KB by design.
  • No header nav, no footer links. The only escape is the CTA.
  • FB pixel + Lead event fires on CTA click (Module 06).

Where to host the pre-lander

  • Cheap + fast: Cloudflare Pages or Netlify — both free static hosting with global CDN, perfect for the operator's HTML output. Or self-host on a small VPS behind nginx.
  • WordPress (Module 11) if you want your pre-landers to live on a real branded site.
  • Avoid: shared cheap hosting where 2 sec → 8 sec page loads kill conversion.

Domain choice

A short, clean, niche-adjacent domain works best. betterglucosenow.com beats tracking2025bonus3.click. Facebook scores domains for reputation; freshly-registered .click/.shop spam-pattern TLDs get extra scrutiny. A 1–2 year-old .com is the gold standard.

Track lander CTR

The metric you care about is landing-page CTR — what % of people who land on your pre-lander click through to the offer.

  • 20%+: excellent, you have a winner
  • 10–20%: good, scale-able
  • 5–10%: needs work — fix the hook or the CTA
  • under 5%: kill it, the ad-to-lander angle is broken

Measure with the FB pixel's Lead event firing on CTA click + PageView on load (Module 06).

How the operator builds landers

lander_build(out_path, headline, lede, hero_img, offer_url, cta_text, questions=[...]) renders a clean quiz-template HTML file (~6 KB) with the FB pixel hook already injected. The agent uses the spied competitor's angle to fill in headline/lede/questions, then hands the file to you (or to a hosting tool) to deploy.

The template is in tools/landers/__init__.py — copy it, edit it, make it your own.

Action: Build one quiz pre-lander for your chosen offer. Test it on your phone. Pixel installed (Module 06 next). Push it to Cloudflare Pages — should take 15 minutes total with the operator.