UNIT 26 • STAGE 6 OF 7

Call to Action + Footer

Email form, CTA ways, and footer to complete the site

UNIT 6 / 7
STEP 1

Every Pitch Needs a Clear Ask

A pitch site with no call to action is a dead end. Visitors who are convinced need somewhere to go. The CTA section gives them three choices: donate, volunteer, or share — ordered by commitment level so there is always a low-barrier option.

The email input has a subtle focus ring: border-color: var(--red) on :focus. This is a small detail but it signals interactivity and brand consistency — the same red used in the hero appears in the form.

STEP 2

Add the CTA Section

👉 CTA form CSS: #support { background: linear-gradient(135deg, #1a0e0a 0%, #0d0f1a 100%); padding: 80px 0; text-align: center; }
.cta-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 40px; }
.cta-form input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--snow); padding: 13px 18px; border-radius: 6px; outline: none; }
.cta-form input:focus { border-color: var(--red); }
.cta-form button { background: var(--red); color: white; border: none; padding: 13px 24px; border-radius: 6px; font-family: var(--font-display); font-weight: 700; cursor: pointer; }

Stage 6 Complete

The site is visually complete: hero, stats, problem, solution, plan, team, CTA, and footer. All seven sections of a full pitch site.

Next: Stage 7 adds IntersectionObserver — a new JavaScript API that triggers animations when sections scroll into view.

Code Editor
Live Preview