Agency — Marketing / Growth Landing
A full-page landing for a fictional growth marketing agency, Voltline. Bright purple-to-orange gradients on white drive an energetic, results-first mood across a sticky nav, a hero with an animated live revenue dashboard, four service cards, ROI-heavy case studies, an animated metrics band, a four-step funnel, client testimonials, and a validated book-a-call form. Vanilla JS handles the mobile menu, scroll reveals, count-up stats, and toast feedback.
MCP
Code
/* ============ Voltline — Growth Marketing Agency ============ */
:root {
--ink: #14101f;
--ink-soft: #4a4458;
--muted: #6f6981;
--line: #ece8f2;
--bg: #ffffff;
--bg-soft: #faf8fe;
--card: #ffffff;
--violet: #7c3aed;
--pink: #ec4899;
--orange: #f97316;
--grad: linear-gradient(115deg, #7c3aed 0%, #d946ef 45%, #f97316 100%);
--grad-soft: linear-gradient(115deg, rgba(124,58,237,.12), rgba(249,115,22,.12));
--shadow-sm: 0 2px 8px rgba(20,16,31,.06);
--shadow-md: 0 14px 40px rgba(82,33,120,.12);
--shadow-lg: 0 30px 70px rgba(82,33,120,.20);
--radius: 18px;
--radius-lg: 28px;
--container: 1160px;
--font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
--display: "Space Grotesk", var(--font);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
margin: 0;
font-family: var(--font);
color: var(--ink);
background: var(--bg);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.grad-text {
background: var(--grad);
-webkit-background-clip: text; background-clip: text;
-webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
display: inline-block; font-size: .8rem; font-weight: 700;
letter-spacing: .14em; text-transform: uppercase;
color: var(--violet); margin-bottom: 16px;
}
.eyebrow--light { color: #fde2f3; }
.skip-link {
position: absolute; left: -999px; top: 0; z-index: 200;
background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }
/* ---------- Buttons ---------- */
.btn {
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
font-weight: 700; font-size: .98rem; padding: 14px 26px; border-radius: 999px;
border: 1.5px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
font-family: var(--font);
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px rgba(217,70,239,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(217,70,239,.45); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: #d9cef0; }
.btn--full { width: 100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
outline: 3px solid rgba(124,58,237,.45); outline-offset: 2px;
}
/* ---------- Nav ---------- */
.nav {
position: sticky; top: 0; z-index: 100;
backdrop-filter: blur(12px);
background: rgba(255,255,255,.72);
border-bottom: 1px solid transparent;
transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.is-scrolled { background: rgba(255,255,255,.92); border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.2rem; }
.brand__mark {
display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px;
background: var(--grad); color: #fff; font-size: 1rem; box-shadow: 0 6px 16px rgba(217,70,239,.4);
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-weight: 600; color: var(--ink-soft); font-size: .96rem; transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
background: var(--grad); color: #fff !important; padding: 10px 20px; border-radius: 999px;
box-shadow: 0 8px 20px rgba(217,70,239,.32);
}
.nav__cta:hover { transform: translateY(-1px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
/* ---------- Hero ---------- */
.hero {
position: relative; overflow: hidden;
background:
radial-gradient(900px 460px at 12% -8%, rgba(124,58,237,.14), transparent 60%),
radial-gradient(820px 520px at 100% 0%, rgba(249,115,22,.12), transparent 55%),
var(--bg);
padding: 72px 0 90px;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__title { font-family: var(--display); font-size: clamp(2.5rem, 5.4vw, 4rem); font-weight: 700; margin-bottom: 22px; }
.hero__sub { font-size: 1.18rem; color: var(--ink-soft); max-width: 30em; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__proof { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__proof li { font-size: .92rem; color: var(--muted); }
.hero__proof strong { display: block; font-family: var(--display); font-size: 1.5rem; color: var(--ink); }
/* hero dashboard mock */
.dash {
background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
border: 1px solid var(--line); overflow: hidden; transform: rotate(.4deg);
}
.dash__bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.dash__bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #e3def0; }
.dash__bar .dot:nth-child(1) { background: #ff6058; }
.dash__bar .dot:nth-child(2) { background: #ffbd2e; }
.dash__bar .dot:nth-child(3) { background: #28c840; }
.dash__title { margin-left: 8px; font-size: .82rem; color: var(--muted); font-weight: 600; }
.dash__body { padding: 24px; }
.kpi { margin-bottom: 22px; }
.kpi__label { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.kpi__value { display: block; font-family: var(--display); font-size: 2.4rem; font-weight: 700; margin: 4px 0; }
.kpi__delta { font-size: .88rem; font-weight: 700; color: #16a34a; }
.dash__chart { display: flex; align-items: flex-end; gap: 9px; height: 130px; padding: 8px 0 12px; border-bottom: 1px solid var(--line); }
.dash__chart span { flex: 1; height: var(--h); border-radius: 7px 7px 3px 3px; background: var(--grad); opacity: .9; transform-origin: bottom; animation: grow .9s cubic-bezier(.2,.8,.2,1) both; }
.dash__chart span:nth-child(odd) { opacity: .65; }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.dash__pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.pill { font-size: .8rem; font-weight: 700; padding: 6px 12px; border-radius: 999px; background: var(--grad-soft); color: var(--violet); }
/* ---------- Logos ---------- */
.logos { padding: 44px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.logos__lead { text-align: center; color: var(--muted); font-size: .92rem; font-weight: 600; margin-bottom: 22px; }
.logos__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 44px; }
.logo { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: #b3acc4; letter-spacing: -.01em; transition: color .2s ease; }
.logo:hover { color: var(--violet); }
/* ---------- Section heads ---------- */
.section__head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section__head h2 { font-family: var(--display); font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 14px; }
.section__head p { color: var(--ink-soft); font-size: 1.08rem; }
.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
/* ---------- Service cards ---------- */
.card {
background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #e2d7f6; }
.card__icon { width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem; border-radius: 14px; background: var(--grad-soft); margin-bottom: 16px; }
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin-bottom: 16px; font-size: .98rem; }
.ticks li { position: relative; padding-left: 24px; font-size: .9rem; color: var(--ink-soft); margin-bottom: 7px; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--pink); }
.ticks--light li { color: #f3e8fb; }
.ticks--light li::before { color: #ffd9a6; }
/* ---------- Case studies ---------- */
.work { background: var(--bg-soft); }
.case {
background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case__tag { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.case__big { display: block; font-family: var(--display); font-size: 3.2rem; font-weight: 700; line-height: 1; }
.case__metric { font-weight: 700; color: var(--ink); margin: 4px 0 14px; }
.case__desc { color: var(--ink-soft); font-size: .98rem; margin-bottom: 18px; }
.case__link { font-weight: 700; color: var(--violet); font-size: .94rem; }
.case__link:hover { color: var(--pink); }
/* ---------- Metrics band ---------- */
.band { background: var(--ink); color: #fff; padding: 70px 0; position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 320px at 0% 0%, rgba(124,58,237,.4), transparent 60%), radial-gradient(700px 320px at 100% 100%, rgba(249,115,22,.32), transparent 60%); }
.band__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.band__num { display: block; font-family: var(--display); font-size: clamp(2.2rem, 4.4vw, 3.2rem); font-weight: 700; background: linear-gradient(115deg, #c4b5fd, #f9a8d4, #fdba74); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.band__label { color: #cbc4dd; font-size: .96rem; margin-top: 6px; display: block; }
/* ---------- Process funnel ---------- */
.funnel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.funnel__step {
position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
padding: 28px 24px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.funnel__step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.funnel__num { font-family: var(--display); font-weight: 700; font-size: 1.1rem; display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--grad); color: #fff; margin-bottom: 16px; box-shadow: 0 8px 18px rgba(217,70,239,.3); }
.funnel__step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.funnel__step p { color: var(--ink-soft); font-size: .96rem; }
.funnel__step::after { content: "→"; position: absolute; right: -18px; top: 46px; font-size: 1.4rem; font-weight: 800; color: #d9cef0; }
.funnel__step:last-child::after { display: none; }
/* ---------- Testimonials ---------- */
.voices { background: var(--bg-soft); }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote blockquote { margin: 0 0 22px; font-size: 1.06rem; color: var(--ink); line-height: 1.5; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote small { display: block; color: var(--muted); font-size: .85rem; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: .9rem; background: var(--grad); flex: none; }
/* ---------- CTA / Book ---------- */
.cta { background: var(--ink); position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 100% 0%, rgba(124,58,237,.5), transparent 55%), radial-gradient(700px 360px at 0% 100%, rgba(249,115,22,.34), transparent 55%); }
.cta__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.cta__copy { color: #fff; }
.cta__copy h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta__copy p { color: #d9d2e8; font-size: 1.08rem; margin-bottom: 20px; max-width: 30em; }
.cta__form { background: #fff; border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-lg); }
.cta__form h3 { font-size: 1.3rem; margin-bottom: 18px; }
.cta__form label { display: block; font-weight: 700; font-size: .86rem; color: var(--ink-soft); margin-bottom: 14px; }
.cta__form input, .cta__form select {
width: 100%; margin-top: 7px; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 12px;
font-size: .98rem; font-family: var(--font); color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.cta__form input:focus, .cta__form select:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,58,237,.15); outline: none; }
.cta__form input.invalid, .cta__form select.invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.14); }
.cta__fine { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 12px; }
/* ---------- Footer ---------- */
.footer { background: #0e0a17; color: #c8c1d8; padding: 64px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; }
.footer__brand .brand { color: #fff; margin-bottom: 14px; }
.footer__brand p { color: #968ead; font-size: .95rem; max-width: 24em; }
.footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer__col a { display: block; color: #a59cbb; font-size: .94rem; margin-bottom: 10px; transition: color .15s ease; }
.footer__col a:hover { color: #fff; }
.footer__sub { display: flex; gap: 8px; margin-bottom: 8px; }
.footer__sub input { flex: 1; min-width: 0; padding: 11px 13px; border-radius: 10px; border: 1.5px solid #2a2438; background: #17122440; color: #fff; font-family: var(--font); }
.footer__sub input::placeholder { color: #8479a0; }
.footer__sub input:focus { border-color: var(--violet); outline: none; }
.footer__sub .btn { padding: 11px 18px; }
.footer__note { font-size: .82rem; color: #7e7497; }
.footer__base { display: flex; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 22px; border-top: 1px solid #221c33; font-size: .86rem; color: #7e7497; }
.footer__legal a:hover { color: #fff; }
/* ---------- Toast ---------- */
.toast {
position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 24px);
background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 14px;
font-weight: 600; font-size: .95rem; box-shadow: var(--shadow-lg);
opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease; z-index: 200; max-width: 90vw;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
/* ---------- Responsive ---------- */
@media (max-width: 980px) {
.grid--4 { grid-template-columns: repeat(2, 1fr); }
.funnel { grid-template-columns: repeat(2, 1fr); }
.funnel__step:nth-child(2)::after { display: none; }
.footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
.section { padding: 70px 0; }
.nav__toggle { display: flex; }
.nav__links {
position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 6px;
background: #fff; padding: 16px 24px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease;
}
.nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
.nav__links a { padding: 10px 4px; }
.nav__cta { text-align: center; }
.hero { padding: 48px 0 64px; }
.hero__inner { grid-template-columns: 1fr; gap: 40px; }
.dash { transform: none; }
.grid--3 { grid-template-columns: 1fr; }
.band__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; }
.cta__inner { grid-template-columns: 1fr; gap: 30px; }
.footer__base { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 520px) {
.container { padding: 0 18px; }
.grid--4 { grid-template-columns: 1fr; }
.funnel { grid-template-columns: 1fr; }
.funnel__step::after { display: none; }
.hero__proof { gap: 22px; }
.footer__inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
* { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
.reveal { opacity: 1; transform: none; }
}/* ============ Voltline — Growth Marketing Agency ============ */
(function () {
"use strict";
/* ---------- Toast helper ---------- */
var toastEl = document.getElementById("toast");
var toastTimer;
function toast(msg) {
if (!toastEl) return;
toastEl.textContent = msg;
toastEl.classList.add("show");
clearTimeout(toastTimer);
toastTimer = setTimeout(function () { toastEl.classList.remove("show"); }, 3200);
}
/* ---------- Mobile nav ---------- */
var toggle = document.getElementById("navToggle");
var links = document.getElementById("navLinks");
function closeNav() {
if (!links) return;
links.classList.remove("is-open");
toggle.classList.remove("is-open");
toggle.setAttribute("aria-expanded", "false");
}
if (toggle && links) {
toggle.addEventListener("click", function () {
var open = links.classList.toggle("is-open");
toggle.classList.toggle("is-open", open);
toggle.setAttribute("aria-expanded", String(open));
});
links.addEventListener("click", function (e) {
if (e.target.tagName === "A") closeNav();
});
}
/* ---------- Nav scrolled state ---------- */
var nav = document.getElementById("nav");
function onScroll() {
if (nav) nav.classList.toggle("is-scrolled", window.scrollY > 12);
}
window.addEventListener("scroll", onScroll, { passive: true });
onScroll();
/* ---------- Scroll reveal ---------- */
var revealEls = document.querySelectorAll(".reveal");
if ("IntersectionObserver" in window) {
var io = new IntersectionObserver(function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
entry.target.classList.add("in");
io.unobserve(entry.target);
}
});
}, { threshold: 0.14, rootMargin: "0px 0px -40px 0px" });
revealEls.forEach(function (el) { io.observe(el); });
} else {
revealEls.forEach(function (el) { el.classList.add("in"); });
}
/* ---------- Animated counters ---------- */
function formatNumber(n, decimals) {
if (decimals) return n.toFixed(decimals);
return Math.round(n).toLocaleString("en-US");
}
function animateCount(el) {
var target = parseFloat(el.getAttribute("data-count")) || 0;
var decimals = parseInt(el.getAttribute("data-decimals") || "0", 10);
var prefix = el.getAttribute("data-prefix") || "";
var suffix = el.getAttribute("data-suffix") || "";
var duration = 1500;
var start = null;
function step(ts) {
if (start === null) start = ts;
var p = Math.min((ts - start) / duration, 1);
var eased = 1 - Math.pow(1 - p, 3); // easeOutCubic
el.textContent = prefix + formatNumber(target * eased, decimals) + suffix;
if (p < 1) requestAnimationFrame(step);
else el.textContent = prefix + formatNumber(target, decimals) + suffix;
}
requestAnimationFrame(step);
}
var counters = document.querySelectorAll("[data-count]");
if ("IntersectionObserver" in window) {
var co = new IntersectionObserver(function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
animateCount(entry.target);
co.unobserve(entry.target);
}
});
}, { threshold: 0.5 });
counters.forEach(function (el) { co.observe(el); });
} else {
counters.forEach(animateCount);
}
/* ---------- Forms ---------- */
function markField(field, ok) {
field.classList.toggle("invalid", !ok);
}
var bookForm = document.getElementById("bookForm");
if (bookForm) {
bookForm.addEventListener("submit", function (e) {
e.preventDefault();
var name = bookForm.elements.name;
var email = bookForm.elements.email;
var budget = bookForm.elements.budget;
var okName = name.value.trim().length > 1;
var okEmail = /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email.value.trim());
var okBudget = budget.value !== "";
markField(name, okName); markField(email, okEmail); markField(budget, okBudget);
if (okName && okEmail && okBudget) {
bookForm.reset();
toast("Thanks " + name.value.trim().split(" ")[0] + "! We'll send your teardown within a day.");
} else {
toast("Please complete the highlighted fields.");
}
});
}
var subForm = document.getElementById("subForm");
if (subForm) {
subForm.addEventListener("submit", function (e) {
e.preventDefault();
var email = subForm.elements.email;
var ok = /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email.value.trim());
markField(email, ok);
if (ok) { subForm.reset(); toast("You're in — growth tactics incoming."); }
else { toast("Enter a valid email to subscribe."); }
});
}
})();<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Voltline — Growth Marketing Agency</title>
<meta name="description" content="Voltline is a results-driven growth marketing agency. SEO, paid media, content and social that compound." />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<a class="skip-link" href="#main">Skip to content</a>
<!-- NAV -->
<header class="nav" id="nav">
<div class="container nav__inner">
<a href="#top" class="brand" aria-label="Voltline home">
<span class="brand__mark" aria-hidden="true">⚡</span>
<span class="brand__name">Voltline</span>
</a>
<nav class="nav__links" id="navLinks" aria-label="Primary">
<a href="#services">Services</a>
<a href="#work">Case studies</a>
<a href="#process">Process</a>
<a href="#voices">Clients</a>
<a href="#book" class="nav__cta">Book a call</a>
</nav>
<button class="nav__toggle" id="navToggle" aria-label="Toggle menu" aria-expanded="false" aria-controls="navLinks">
<span></span><span></span><span></span>
</button>
</div>
</header>
<main id="main">
<!-- HERO -->
<section class="hero" id="top">
<div class="container hero__inner">
<div class="hero__copy reveal">
<span class="eyebrow">Growth marketing, engineered</span>
<h1 class="hero__title">We turn ad spend into <span class="grad-text">predictable revenue</span>.</h1>
<p class="hero__sub">Voltline is a full-funnel growth agency for ambitious brands. SEO, paid media, content and social — built into one compounding engine, measured to the last dollar.</p>
<div class="hero__cta">
<a href="#book" class="btn btn--primary">Book a strategy call</a>
<a href="#work" class="btn btn--ghost">See the results</a>
</div>
<ul class="hero__proof">
<li><strong>$240M+</strong> revenue driven</li>
<li><strong>4.7×</strong> avg. blended ROAS</li>
<li><strong>120+</strong> brands scaled</li>
</ul>
</div>
<div class="hero__visual reveal">
<div class="dash">
<div class="dash__bar">
<span class="dot"></span><span class="dot"></span><span class="dot"></span>
<span class="dash__title">Voltline · Live dashboard</span>
</div>
<div class="dash__body">
<div class="kpi">
<span class="kpi__label">Revenue this quarter</span>
<span class="kpi__value" data-count="1860000" data-prefix="$" data-suffix="">$0</span>
<span class="kpi__delta">▲ 38% vs. last Q</span>
</div>
<div class="dash__chart" aria-hidden="true">
<span style="--h:34%"></span><span style="--h:52%"></span><span style="--h:46%"></span>
<span style="--h:68%"></span><span style="--h:60%"></span><span style="--h:82%"></span>
<span style="--h:74%"></span><span style="--h:96%"></span>
</div>
<div class="dash__pills">
<span class="pill">SEO +212%</span>
<span class="pill">CPA −41%</span>
<span class="pill">LTV +1.8×</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- LOGOS / SOCIAL PROOF -->
<section class="logos" aria-label="Trusted by">
<div class="container">
<p class="logos__lead">Trusted by category leaders & venture-backed challengers</p>
<div class="logos__row">
<span class="logo">Northwind</span>
<span class="logo">Lumen</span>
<span class="logo">Cascade</span>
<span class="logo">Helio</span>
<span class="logo">Quanta</span>
<span class="logo">Marrow&Co</span>
</div>
</div>
</section>
<!-- SERVICES -->
<section class="services section" id="services">
<div class="container">
<div class="section__head reveal">
<span class="eyebrow">What we do</span>
<h2>Four channels, one growth engine</h2>
<p>We don't sell tactics in silos. Every channel feeds the next so your CAC drops while revenue compounds.</p>
</div>
<div class="grid grid--4">
<article class="card reveal">
<div class="card__icon">🔍</div>
<h3>SEO & Organic</h3>
<p>Technical fixes, topical authority and content that ranks — and keeps earning long after launch.</p>
<ul class="ticks"><li>Programmatic SEO</li><li>Content clusters</li><li>Link velocity</li></ul>
</article>
<article class="card reveal">
<div class="card__icon">🎯</div>
<h3>Paid Media</h3>
<p>Google, Meta, TikTok and beyond — creative-led campaigns built around incremental ROAS.</p>
<ul class="ticks"><li>Full-funnel ads</li><li>Creative testing</li><li>Bid automation</li></ul>
</article>
<article class="card reveal">
<div class="card__icon">✍️</div>
<h3>Content Studio</h3>
<p>Narrative-driven content and lifecycle email that converts attention into loyal revenue.</p>
<ul class="ticks"><li>Editorial & video</li><li>Lifecycle email</li><li>Landing pages</li></ul>
</article>
<article class="card reveal">
<div class="card__icon">📣</div>
<h3>Social & Creator</h3>
<p>Always-on social and creator partnerships that turn culture into pipeline.</p>
<ul class="ticks"><li>Creator UGC</li><li>Community ops</li><li>Brand x performance</li></ul>
</article>
</div>
</div>
</section>
<!-- CASE STUDIES -->
<section class="work section" id="work">
<div class="container">
<div class="section__head reveal">
<span class="eyebrow">Case studies</span>
<h2>Numbers that move boards</h2>
<p>A snapshot of what compounding growth looks like in the first 9 months.</p>
</div>
<div class="grid grid--3">
<article class="case reveal">
<span class="case__tag">DTC · Skincare</span>
<span class="case__big grad-text">+318%</span>
<p class="case__metric">revenue in 9 months</p>
<p class="case__desc">Rebuilt the paid funnel and creative engine for <strong>Lumen Skin</strong>, cutting blended CPA by 41%.</p>
<a class="case__link" href="#book">Read the playbook →</a>
</article>
<article class="case reveal">
<span class="case__tag">B2B SaaS</span>
<span class="case__big grad-text">4.7×</span>
<p class="case__metric">pipeline ROI</p>
<p class="case__desc">Programmatic SEO plus ABM ads took <strong>Quanta</strong> from flat MQLs to 4.7× pipeline return.</p>
<a class="case__link" href="#book">Read the playbook →</a>
</article>
<article class="case reveal">
<span class="case__tag">Marketplace</span>
<span class="case__big grad-text">−52%</span>
<p class="case__metric">customer acquisition cost</p>
<p class="case__desc">Creator-led social and lifecycle email halved CAC for <strong>Cascade</strong> while doubling LTV.</p>
<a class="case__link" href="#book">Read the playbook →</a>
</article>
</div>
</div>
</section>
<!-- METRICS BAND -->
<section class="band" aria-label="Agency results">
<div class="container band__grid">
<div class="band__item reveal">
<span class="band__num" data-count="240" data-prefix="$" data-suffix="M+">$0</span>
<span class="band__label">Revenue driven for clients</span>
</div>
<div class="band__item reveal">
<span class="band__num" data-count="4.7" data-decimals="1" data-suffix="×">0×</span>
<span class="band__label">Average blended ROAS</span>
</div>
<div class="band__item reveal">
<span class="band__num" data-count="120" data-suffix="+">0</span>
<span class="band__label">Brands scaled since 2017</span>
</div>
<div class="band__item reveal">
<span class="band__num" data-count="97" data-suffix="%">0</span>
<span class="band__label">Client retention rate</span>
</div>
</div>
</section>
<!-- PROCESS FUNNEL -->
<section class="process section" id="process">
<div class="container">
<div class="section__head reveal">
<span class="eyebrow">How it works</span>
<h2>A funnel built to compound</h2>
<p>No 6-month onboarding theatre. We diagnose, build and scale in tight loops.</p>
</div>
<ol class="funnel">
<li class="funnel__step reveal">
<span class="funnel__num">01</span>
<h3>Diagnose</h3>
<p>Full-funnel audit of data, creative and channels. We find the leaks before we spend a dollar.</p>
</li>
<li class="funnel__step reveal">
<span class="funnel__num">02</span>
<h3>Build</h3>
<p>Tracking, landing pages and a creative testing system wired to your revenue model.</p>
</li>
<li class="funnel__step reveal">
<span class="funnel__num">03</span>
<h3>Launch</h3>
<p>Multi-channel campaigns go live with weekly experiments and a shared live dashboard.</p>
</li>
<li class="funnel__step reveal">
<span class="funnel__num">04</span>
<h3>Scale</h3>
<p>Double down on what works, kill what doesn't, and reinvest margin into the next channel.</p>
</li>
</ol>
</div>
</section>
<!-- TESTIMONIALS -->
<section class="voices section" id="voices">
<div class="container">
<div class="section__head reveal">
<span class="eyebrow">Client voices</span>
<h2>Operators who scaled with us</h2>
</div>
<div class="grid grid--3">
<figure class="quote reveal">
<blockquote>"Voltline is the first agency that talked about margin, not impressions. They paid for themselves in six weeks."</blockquote>
<figcaption><span class="avatar" aria-hidden="true">MR</span><span><strong>Mara Reyes</strong><small>VP Growth, Lumen Skin</small></span></figcaption>
</figure>
<figure class="quote reveal">
<blockquote>"Pipeline went from a guessing game to a forecast. Our board finally trusts the marketing number."</blockquote>
<figcaption><span class="avatar" aria-hidden="true">DK</span><span><strong>Dev Kapoor</strong><small>CMO, Quanta</small></span></figcaption>
</figure>
<figure class="quote reveal">
<blockquote>"They treat our budget like their own money. CAC halved and nobody on my team burned out doing it."</blockquote>
<figcaption><span class="avatar" aria-hidden="true">JL</span><span><strong>Jules Laurent</strong><small>Founder, Cascade</small></span></figcaption>
</figure>
</div>
</div>
</section>
<!-- BOOK A CALL CTA -->
<section class="cta section" id="book">
<div class="container cta__inner reveal">
<div class="cta__copy">
<span class="eyebrow eyebrow--light">Limited Q3 capacity</span>
<h2>Let's build your growth engine.</h2>
<p>Book a free 30-minute teardown. We'll map your funnel, spot the leaks and show you the fastest path to ROI — no pitch deck required.</p>
<ul class="ticks ticks--light">
<li>Live funnel teardown</li><li>90-day growth plan</li><li>No long contracts</li>
</ul>
</div>
<form class="cta__form" id="bookForm" novalidate>
<h3>Book your strategy call</h3>
<label>Full name<input type="text" name="name" autocomplete="name" required placeholder="Jordan Avery" /></label>
<label>Work email<input type="email" name="email" autocomplete="email" required placeholder="you@company.com" /></label>
<label>Monthly marketing budget
<select name="budget" required>
<option value="">Select a range</option>
<option>$10k – $30k</option>
<option>$30k – $75k</option>
<option>$75k – $200k</option>
<option>$200k+</option>
</select>
</label>
<button type="submit" class="btn btn--primary btn--full">Get my teardown</button>
<p class="cta__fine">We reply within one business day. No spam, ever.</p>
</form>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="footer">
<div class="container footer__inner">
<div class="footer__brand">
<a href="#top" class="brand">
<span class="brand__mark" aria-hidden="true">⚡</span>
<span class="brand__name">Voltline</span>
</a>
<p>Growth marketing, engineered for compounding revenue.</p>
</div>
<nav class="footer__col" aria-label="Services">
<h4>Services</h4>
<a href="#services">SEO & Organic</a>
<a href="#services">Paid Media</a>
<a href="#services">Content Studio</a>
<a href="#services">Social & Creator</a>
</nav>
<nav class="footer__col" aria-label="Company">
<h4>Company</h4>
<a href="#work">Case studies</a>
<a href="#process">Process</a>
<a href="#voices">Clients</a>
<a href="#book">Book a call</a>
</nav>
<div class="footer__col">
<h4>Stay in the loop</h4>
<form class="footer__sub" id="subForm" novalidate>
<input type="email" name="email" aria-label="Email address" placeholder="you@company.com" required />
<button type="submit" class="btn btn--primary">Join</button>
</form>
<p class="footer__note">Monthly growth tactics. No fluff.</p>
</div>
</div>
<div class="container footer__base">
<span>© 2026 Voltline Growth Co. All rights reserved.</span>
<span class="footer__legal"><a href="#top">Privacy</a> · <a href="#top">Terms</a></span>
</div>
</footer>
<div class="toast" id="toast" role="status" aria-live="polite"></div>
<script src="script.js"></script>
</body>
</html>Marketing / Growth Landing
A complete one-page marketing site for Voltline, a fictional growth agency that “turns ad spend into predictable revenue.” The visual identity leans into a bright purple → pink → orange gradient on white, a punchy display typeface (Space Grotesk) paired with Plus Jakarta Sans, and generous spacing for an energetic, results-driven feel. The page flows top to bottom through a transparent sticky nav, a split hero with a tilted live-dashboard mockup, a social-proof logo strip, a four-card services grid, three ROI-forward case studies, a dark animated metrics band, a four-step process funnel, client testimonials, a high-contrast book-a-call section, and a multi-column footer.
The hero dashboard counts its revenue figure up from zero, the bar chart animates in, and the dark metrics band fires count-up stats the moment it scrolls into view. Every section reveals on scroll via IntersectionObserver, cards lift on hover, and the nav gains a solid backdrop once you scroll. Both the strategy-call form and the footer newsletter validate inline (highlighting bad fields) and confirm with a toast helper, while the mobile menu collapses into an animated hamburger.
Everything is vanilla — no frameworks, no build step — so the markup, styles, and one small script are easy to lift into any project and re-skin. A prefers-reduced-motion block disables the animations for users who opt out, and the layout reflows cleanly from wide desktop down to roughly 360px.
Illustrative UI only — fictional brand, not a real product.