Creator — Coach / Speaker Landing
A polished, single-page personal-brand landing for a leadership coach and keynote speaker, built in vanilla HTML, CSS, and JavaScript. Warm-white canvas with a bold coral accent and a confident friendly sans, it pairs a strong hero and book-a-call CTA with program cards, an about and credentials block, a results testimonial slider, signature speaking topics, a free-resource lead magnet, and a booking form. Fully responsive with a mobile nav, scroll reveal, and validated forms.
MCP
Code
/* ===== Maya Okonkwo — Coach / Speaker Landing ===== */
:root {
/* palette: warm white + bold coral accent, friendly confident */
--bg: #fcf8f3;
--bg-alt: #f5ede2;
--surface: #ffffff;
--ink: #2a2420;
--ink-soft: #6c6359;
--line: #e7ddcf;
--accent: #f4623a; /* bold coral */
--accent-dark: #d94d27;
--accent-soft: #fde4dc;
--teal: #0f766e; /* secondary trust accent */
--teal-soft: #d7efeb;
--shadow-sm: 0 2px 10px rgba(42, 36, 32, .06);
--shadow-md: 0 12px 36px rgba(42, 36, 32, .10);
--shadow-lg: 0 28px 60px rgba(217, 77, 39, .16);
--radius: 16px;
--radius-lg: 28px;
--container: 1140px;
--sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
--serif: "Fraunces", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(--sans);
background: var(--bg);
color: var(--ink);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.skip-link {
position: absolute; left: -999px; top: 8px; z-index: 200;
background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }
/* ===== Buttons ===== */
.btn {
--b: var(--accent);
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
font-family: var(--sans); font-weight: 700; font-size: .95rem;
padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
cursor: pointer; transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(244, 98, 58, .28); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn--soft { background: var(--accent-soft); color: var(--accent-dark); }
.btn--soft:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 15px 28px; font-size: 1.02rem; }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
.btn--block { width: 100%; }
.eyebrow {
font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
color: var(--accent-dark); margin-bottom: 14px;
}
.eyebrow--light { color: var(--accent-soft); }
.ink { color: var(--accent); }
/* ===== Nav ===== */
.nav {
position: sticky; top: 0; z-index: 100;
background: rgba(252, 248, 243, .82); backdrop-filter: blur(12px);
border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.05rem; }
.brand__mark {
width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
background: var(--accent); color: #fff; font-family: var(--serif); font-weight: 600; font-size: 1.2rem;
box-shadow: var(--shadow-sm);
}
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-weight: 600; font-size: .95rem; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav__links a::after {
content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--accent);
transition: width .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__toggle {
display: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer;
flex-direction: column; justify-content: center; gap: 5px; align-items: center;
}
.nav__toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
/* ===== Hero ===== */
.hero { padding-top: 56px; position: relative; }
.hero__grid {
display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
padding-bottom: 40px;
}
.hero__title {
font-family: var(--serif); font-weight: 600; line-height: 1.04;
font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -.01em; margin-bottom: 22px;
}
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 52ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero__stats { list-style: none; display: flex; gap: 36px; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--ink); }
.hero__stats span { font-size: .85rem; color: var(--ink-soft); }
.hero__visual { position: relative; }
.portrait {
aspect-ratio: 4 / 5; border-radius: var(--radius-lg); position: relative; overflow: hidden;
background:
radial-gradient(120% 100% at 70% 0%, var(--accent) 0%, var(--accent-dark) 55%, #b13c1c 100%);
box-shadow: var(--shadow-md); display: grid; place-items: center;
}
.portrait::after {
content: ""; position: absolute; inset: 0;
background:
radial-gradient(closest-side at 30% 80%, rgba(255,255,255,.22), transparent 70%),
repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, transparent 14px 28px);
}
.portrait__initials {
font-family: var(--serif); font-size: clamp(4rem, 12vw, 7rem); font-weight: 600;
color: rgba(255,255,255,.92); position: relative; z-index: 1; letter-spacing: -.02em;
}
.portrait--soft { background: radial-gradient(120% 100% at 30% 0%, var(--teal) 0%, #0b5a53 100%); }
.badge {
position: absolute; background: var(--surface); border-radius: 14px; padding: 12px 16px;
box-shadow: var(--shadow-md); font-size: .85rem; font-weight: 600;
}
.badge--top { top: 22px; left: -18px; display: flex; align-items: center; gap: 8px; }
.badge--bottom { bottom: 26px; right: -16px; font-family: var(--serif); }
.badge--bottom strong { font-weight: 600; }
.badge__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: .7; } }
/* marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-alt); margin-top: 28px; }
.marquee__track {
display: flex; gap: 28px; align-items: center; padding: 16px 0; white-space: nowrap; width: max-content;
animation: scroll 26s linear infinite;
font-weight: 600; color: var(--ink-soft); font-size: .92rem;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span:nth-child(even) { color: var(--accent); }
@keyframes scroll { to { transform: translateX(-50%); } }
/* ===== Sections ===== */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 620px; margin: 0 auto 52px; text-align: center; }
.section__title {
font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.01em;
font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px;
}
.section__sub { color: var(--ink-soft); font-size: 1.08rem; }
/* ===== Programs cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.card {
background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
box-shadow: var(--shadow-sm); position: relative; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
display: flex; flex-direction: column; gap: 6px;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.card--feature { background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 220%); border-color: var(--accent); transform: translateY(-8px); }
.card--feature:hover { transform: translateY(-14px); box-shadow: var(--shadow-lg); }
.card__ribbon {
position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
text-transform: uppercase; padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.card__tag { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.card__title { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.card__price { color: var(--ink-soft); font-size: .9rem; font-weight: 600; margin-bottom: 8px; }
.card__text { color: var(--ink-soft); font-size: .95rem; margin-bottom: 6px; }
.card__list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 6px 0 20px; flex: 1; }
.card__list li { position: relative; padding-left: 24px; font-size: .92rem; }
.card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
/* ===== About ===== */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about__visual .portrait { aspect-ratio: 1; max-width: 420px; }
.about__copy p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.05rem; }
.about__copy p strong { color: var(--ink); }
.creds { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 24px; }
.creds li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; font-size: .95rem; }
.creds li span { color: var(--accent); }
/* ===== Testimonial slider ===== */
.slider { max-width: 820px; margin-inline: auto; }
.slider__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.slider__track { list-style: none; display: flex; transition: transform .5s cubic-bezier(.4,.1,.2,1); }
.quote {
min-width: 100%; padding: 48px clamp(28px, 6vw, 64px); background: var(--surface);
border: 1px solid var(--line); box-shadow: var(--shadow-sm); text-align: center;
}
.quote__text { font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.45; font-weight: 500; margin-bottom: 28px; }
.quote__by { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.quote__avatar {
width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; flex: none;
background: var(--teal); color: #fff; font-weight: 700; font-size: .95rem;
}
.quote__by strong { display: block; }
.quote__by small { color: var(--ink-soft); }
.slider__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.slider__btn {
width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--surface);
font-size: 1.5rem; line-height: 1; color: var(--ink); cursor: pointer; transition: all .2s;
}
.slider__btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: scale(1.06); }
.slider__dots { display: flex; gap: 8px; }
.slider__dots button {
width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; transition: all .25s; padding: 0;
}
.slider__dots button.is-active { background: var(--accent); width: 28px; border-radius: 6px; }
/* ===== Topics ===== */
.topics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.topic {
background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden;
}
.topic::before {
content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent);
transform: scaleY(0); transform-origin: top; transition: transform .3s ease;
}
.topic:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.topic:hover::before { transform: scaleY(1); }
.topic__num { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--accent); }
.topic h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin: 6px 0 8px; }
.topic p { color: var(--ink-soft); font-size: .96rem; }
/* ===== Resource / lead magnet ===== */
.resource {
display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
background: var(--teal-soft); border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px);
}
.resource__copy p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 16px; }
.resource__bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.resource__bullets li { padding-left: 24px; position: relative; font-weight: 600; }
.resource__bullets li::before { content: "→"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.lead { background: var(--surface); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field span, .field label { font-weight: 600; font-size: .9rem; }
.field input, .field select, .field textarea {
font-family: var(--sans); font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--line);
border-radius: 10px; background: var(--bg); color: var(--ink); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; }
.field.has-error input, .field.has-error select { border-color: var(--accent-dark); box-shadow: 0 0 0 3px var(--accent-soft); }
.lead__note { font-size: .82rem; color: var(--ink-soft); }
.lead__note.is-success { color: var(--teal); font-weight: 700; }
/* ===== Booking ===== */
.section--book { background: var(--ink); color: var(--bg); }
.section--book .section__title { color: #fff; }
.book { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.book__copy p { color: rgba(252,248,243,.78); font-size: 1.08rem; margin-bottom: 20px; max-width: 46ch; }
.book__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.book__list li { padding-left: 30px; position: relative; font-weight: 600; }
.book__list li::before {
content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border-radius: 50%;
background: var(--accent); color: #fff; font-size: .7rem; display: grid; place-items: center;
}
.book__form { background: var(--surface); color: var(--ink); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 16px; }
.book__status { font-size: .9rem; min-height: 1.2em; font-weight: 600; }
.book__status.is-success { color: var(--teal); }
.book__status.is-error { color: var(--accent-dark); }
/* ===== Footer ===== */
.footer { background: var(--bg-alt); padding-top: 64px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer__brand .brand__mark { margin-bottom: 14px; }
.footer__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.footer__tag { color: var(--ink-soft); font-size: .92rem; max-width: 30ch; margin-top: 6px; }
.footer__col h4 { font-size: .95rem; margin-bottom: 14px; }
.footer__col a { display: block; color: var(--ink-soft); padding: 5px 0; font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__base {
display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
border-top: 1px solid var(--line); padding-block: 22px; font-size: .85rem; color: var(--ink-soft);
}
.footer__base a:hover { color: var(--accent); }
/* ===== Toast ===== */
.toast {
position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(140%);
background: var(--ink); color: var(--bg); padding: 14px 22px; border-radius: 999px;
font-weight: 600; font-size: .92rem; box-shadow: var(--shadow-lg); z-index: 300; opacity: 0;
transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .3s; max-width: 90vw; text-align: center;
}
.toast.is-show { transform: translateX(-50%) translateY(0); opacity: 1; }
/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
/* ===== Responsive ===== */
@media (max-width: 940px) {
.hero__grid { grid-template-columns: 1fr; gap: 40px; }
.hero__visual { max-width: 440px; }
.about__grid { grid-template-columns: 1fr; gap: 36px; }
.cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
.card--feature { transform: none; }
.resource { grid-template-columns: 1fr; }
.book { grid-template-columns: 1fr; gap: 32px; }
.footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
.nav__links {
position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px 24px 20px;
transform: translateY(-120%); transition: transform .35s ease; box-shadow: var(--shadow-md);
}
.nav__links.is-open { transform: translateY(0); }
.nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.nav__links a::after { display: none; }
.nav__cta { display: none; }
.nav__toggle { display: flex; }
.section { padding: 64px 0; }
.topics { grid-template-columns: 1fr; }
.creds { grid-template-columns: 1fr; }
.hero__stats { gap: 24px; }
}
@media (max-width: 520px) {
.container { padding-inline: 18px; }
.hero__stats { width: 100%; justify-content: space-between; gap: 14px; }
.hero__stats strong { font-size: 1.5rem; }
.badge--top { left: 0; }
.badge--bottom { right: 0; }
.footer__grid { grid-template-columns: 1fr; }
.footer__base { flex-direction: column; align-items: flex-start; }
.btn--lg { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
* { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
.reveal { opacity: 1; transform: none; }
}/* ===== Maya Okonkwo — Coach / Speaker Landing ===== */
(function () {
"use strict";
/* ---------- Toast helper ---------- */
var toastEl = document.getElementById("toast");
var toastTimer;
function toast(msg) {
if (!toastEl) return;
toastEl.textContent = msg;
toastEl.classList.add("is-show");
clearTimeout(toastTimer);
toastTimer = setTimeout(function () {
toastEl.classList.remove("is-show");
}, 3200);
}
/* ---------- Year ---------- */
var yearEl = document.getElementById("year");
if (yearEl) yearEl.textContent = new Date().getFullYear();
/* ---------- Mobile nav ---------- */
var toggle = document.getElementById("navToggle");
var navLinks = document.getElementById("primary-nav");
function closeNav() {
if (!toggle || !navLinks) return;
toggle.setAttribute("aria-expanded", "false");
toggle.setAttribute("aria-label", "Open menu");
navLinks.classList.remove("is-open");
}
if (toggle && navLinks) {
toggle.addEventListener("click", function () {
var open = toggle.getAttribute("aria-expanded") === "true";
toggle.setAttribute("aria-expanded", String(!open));
toggle.setAttribute("aria-label", open ? "Open menu" : "Close menu");
navLinks.classList.toggle("is-open", !open);
});
navLinks.querySelectorAll("a").forEach(function (a) {
a.addEventListener("click", closeNav);
});
document.addEventListener("keydown", function (e) {
if (e.key === "Escape") closeNav();
});
}
/* ---------- Smooth scroll for in-page anchors ---------- */
document.querySelectorAll('a[href^="#"]').forEach(function (link) {
link.addEventListener("click", function (e) {
var id = link.getAttribute("href");
if (id.length < 2) return;
var target = document.querySelector(id);
if (!target) return;
e.preventDefault();
target.scrollIntoView({ behavior: "smooth", block: "start" });
});
});
/* ---------- Data-toast triggers ---------- */
document.querySelectorAll("[data-toast]").forEach(function (el) {
el.addEventListener("click", function () {
toast(el.getAttribute("data-toast"));
});
});
/* ---------- Nav scrolled state ---------- */
var nav = document.querySelector(".nav");
function onScroll() {
if (nav) nav.classList.toggle("is-scrolled", window.scrollY > 12);
}
onScroll();
window.addEventListener("scroll", onScroll, { passive: true });
/* ---------- Scroll reveal ---------- */
var reveals = document.querySelectorAll(".reveal");
if ("IntersectionObserver" in window) {
var io = new IntersectionObserver(
function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
entry.target.classList.add("is-in");
io.unobserve(entry.target);
}
});
},
{ threshold: 0.14, rootMargin: "0px 0px -40px 0px" }
);
reveals.forEach(function (el, i) {
el.style.transitionDelay = (i % 3) * 0.07 + "s";
io.observe(el);
});
} else {
reveals.forEach(function (el) { el.classList.add("is-in"); });
}
/* ---------- Testimonial slider ---------- */
var track = document.getElementById("sliderTrack");
if (track) {
var slides = Array.prototype.slice.call(track.children);
var dotsWrap = document.getElementById("sliderDots");
var prevBtn = document.getElementById("prevQuote");
var nextBtn = document.getElementById("nextQuote");
var index = 0;
var autoTimer;
var dots = slides.map(function (_, i) {
var b = document.createElement("button");
b.setAttribute("role", "tab");
b.setAttribute("aria-label", "Testimonial " + (i + 1));
b.addEventListener("click", function () { go(i, true); });
dotsWrap.appendChild(b);
return b;
});
function render() {
track.style.transform = "translateX(" + -index * 100 + "%)";
dots.forEach(function (d, i) {
d.classList.toggle("is-active", i === index);
d.setAttribute("aria-selected", String(i === index));
});
}
function go(i, user) {
index = (i + slides.length) % slides.length;
render();
if (user) restartAuto();
}
function next() { go(index + 1); }
function startAuto() { autoTimer = setInterval(next, 6000); }
function restartAuto() { clearInterval(autoTimer); startAuto(); }
if (prevBtn) prevBtn.addEventListener("click", function () { go(index - 1, true); });
if (nextBtn) nextBtn.addEventListener("click", function () { go(index + 1, true); });
var slider = track.closest(".slider");
slider.addEventListener("mouseenter", function () { clearInterval(autoTimer); });
slider.addEventListener("mouseleave", startAuto);
slider.addEventListener("focusin", function () { clearInterval(autoTimer); });
slider.addEventListener("focusout", startAuto);
// keyboard
slider.setAttribute("tabindex", "0");
slider.addEventListener("keydown", function (e) {
if (e.key === "ArrowRight") { e.preventDefault(); go(index + 1, true); }
if (e.key === "ArrowLeft") { e.preventDefault(); go(index - 1, true); }
});
render();
startAuto();
}
/* ---------- Email validation ---------- */
function isEmail(v) {
return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(v.trim());
}
function flag(field, bad) {
if (field) field.classList.toggle("has-error", bad);
}
/* ---------- Lead magnet form ---------- */
var leadForm = document.getElementById("leadForm");
if (leadForm) {
var leadName = document.getElementById("leadName");
var leadEmail = document.getElementById("leadEmail");
var leadNote = document.getElementById("leadNote");
leadForm.addEventListener("submit", function (e) {
e.preventDefault();
var badName = !leadName.value.trim();
var badEmail = !isEmail(leadEmail.value);
flag(leadName.parentElement, badName);
flag(leadEmail.parentElement, badEmail);
if (badName || badEmail) {
leadNote.textContent = "Please add your name and a valid email.";
leadNote.classList.remove("is-success");
return;
}
var first = leadName.value.trim().split(" ")[0];
leadNote.textContent = "On its way, " + first + "! Check your inbox for The 5-Minute Reset.";
leadNote.classList.add("is-success");
toast("The 5-Minute Reset is on its way ✉️");
leadForm.reset();
});
}
/* ---------- Booking form ---------- */
var bookForm = document.getElementById("bookForm");
if (bookForm) {
var bName = document.getElementById("bName");
var bEmail = document.getElementById("bEmail");
var bGoal = document.getElementById("bGoal");
var bStatus = document.getElementById("bookStatus");
bookForm.addEventListener("submit", function (e) {
e.preventDefault();
var badName = !bName.value.trim();
var badEmail = !isEmail(bEmail.value);
var badGoal = !bGoal.value;
flag(bName.parentElement, badName);
flag(bEmail.parentElement, badEmail);
flag(bGoal.parentElement, badGoal);
bStatus.classList.remove("is-success", "is-error");
if (badName || badEmail || badGoal) {
bStatus.textContent = "Just fill in your name, email and a focus and we're set.";
bStatus.classList.add("is-error");
return;
}
var first = bName.value.trim().split(" ")[0];
bStatus.textContent = "Thanks, " + first + "! I'll email you 2–3 call times within a day.";
bStatus.classList.add("is-success");
toast("Discovery call request received — talk soon!");
bookForm.reset();
});
// clear error on input
bookForm.querySelectorAll("input, select, textarea").forEach(function (el) {
el.addEventListener("input", function () { flag(el.parentElement, false); });
});
}
})();<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Maya Okonkwo — Leadership Coach & Keynote Speaker</title>
<meta name="description" content="Maya Okonkwo helps ambitious teams and leaders move from burnout to bold, sustainable performance — through coaching, programs, and keynotes." />
<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=Fraunces:opsz,[email protected],500;9..144,600&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="top">
<div class="container nav__inner">
<a class="brand" href="#top" aria-label="Maya Okonkwo home">
<span class="brand__mark" aria-hidden="true">M</span>
<span class="brand__name">Maya Okonkwo</span>
</a>
<nav class="nav__links" id="primary-nav" aria-label="Primary">
<a href="#programs">Programs</a>
<a href="#about">About</a>
<a href="#results">Results</a>
<a href="#topics">Speaking</a>
<a href="#resource">Free Guide</a>
</nav>
<div class="nav__actions">
<a class="btn btn--primary nav__cta" href="#booking" data-toast="Opening your discovery call booking…">Book a call</a>
<button class="nav__toggle" id="navToggle" aria-expanded="false" aria-controls="primary-nav" aria-label="Open menu">
<span></span><span></span><span></span>
</button>
</div>
</div>
</header>
<main id="main">
<!-- ===== HERO ===== -->
<section class="hero">
<div class="container hero__grid">
<div class="hero__copy reveal">
<p class="eyebrow">Leadership coach · Keynote speaker</p>
<h1 class="hero__title">From burnout to <span class="ink">bold</span>, sustainable leadership.</h1>
<p class="hero__lede">I'm Maya — I help founders and people-leaders perform at the top of their game without running on empty. Sharper decisions, calmer teams, results that last.</p>
<div class="hero__cta">
<a class="btn btn--primary btn--lg" href="#booking" data-toast="Opening your discovery call booking…">Book a discovery call</a>
<a class="btn btn--ghost btn--lg" href="#resource">Get the free guide</a>
</div>
<ul class="hero__stats" aria-label="Track record">
<li><strong>12k+</strong><span>leaders coached</span></li>
<li><strong>90+</strong><span>keynote stages</span></li>
<li><strong>4.9/5</strong><span>client rating</span></li>
</ul>
</div>
<div class="hero__visual reveal">
<div class="portrait" role="img" aria-label="Portrait of Maya Okonkwo, leadership coach">
<span class="portrait__initials" aria-hidden="true">MO</span>
</div>
<div class="badge badge--top">
<span class="badge__dot" aria-hidden="true"></span> Booking Q3 keynotes
</div>
<div class="badge badge--bottom">
<strong>“Calm is a strategy.”</strong>
</div>
</div>
</div>
<div class="marquee" aria-hidden="true">
<div class="marquee__track">
<span>Featured in Forge Weekly</span><span>•</span>
<span>TEDx Harbour Bay</span><span>•</span>
<span>The Founders Podcast</span><span>•</span>
<span>Northwind Leadership Summit</span><span>•</span>
<span>Lumen Magazine</span><span>•</span>
<span>Featured in Forge Weekly</span><span>•</span>
<span>TEDx Harbour Bay</span><span>•</span>
<span>The Founders Podcast</span><span>•</span>
<span>Northwind Leadership Summit</span><span>•</span>
<span>Lumen Magazine</span><span>•</span>
</div>
</div>
</section>
<!-- ===== PROGRAMS / OFFERS ===== -->
<section class="section" id="programs" aria-labelledby="programs-title">
<div class="container">
<div class="section__head reveal">
<p class="eyebrow">Ways to work together</p>
<h2 id="programs-title" class="section__title">Programs built for momentum</h2>
<p class="section__sub">Pick the depth that fits where you are — every path starts with a no-pressure discovery call.</p>
</div>
<div class="cards">
<article class="card reveal">
<p class="card__tag">1:1 Coaching</p>
<h3 class="card__title">The Anchor Program</h3>
<p class="card__price">12 weeks · private</p>
<p class="card__text">Deep, personal coaching for founders and senior leaders navigating high-stakes seasons. Twice-monthly sessions plus async support between.</p>
<ul class="card__list">
<li>Personalised leadership map</li>
<li>Decision & energy systems</li>
<li>Voice & presence coaching</li>
</ul>
<a class="btn btn--soft" href="#booking" data-toast="Let's talk about The Anchor Program.">Apply now</a>
</article>
<article class="card card--feature reveal">
<span class="card__ribbon">Most popular</span>
<p class="card__tag">Team intensive</p>
<h3 class="card__title">Bold Teams Lab</h3>
<p class="card__price">6 weeks · up to 12 people</p>
<p class="card__text">A live cohort intensive that turns a stretched team into a steady, high-trust one. Weekly workshops, playbooks, and accountability pods.</p>
<ul class="card__list">
<li>Trust & feedback frameworks</li>
<li>Sustainable performance rituals</li>
<li>Manager toolkit & templates</li>
</ul>
<a class="btn btn--primary" href="#booking" data-toast="Bringing Bold Teams Lab to your team — let's chat.">Reserve a cohort</a>
</article>
<article class="card reveal">
<p class="card__tag">Keynotes</p>
<h3 class="card__title">Stage & Workshop</h3>
<p class="card__price">60–90 min · in-person or virtual</p>
<p class="card__text">High-energy, research-backed talks that leave your audience with one big shift and three things they'll actually do on Monday.</p>
<ul class="card__list">
<li>Tailored to your theme</li>
<li>Interactive, never preachy</li>
<li>Optional follow-up workshop</li>
</ul>
<a class="btn btn--soft" href="#booking" data-toast="Checking keynote availability for your event.">Check availability</a>
</article>
</div>
</div>
</section>
<!-- ===== ABOUT / CREDENTIALS ===== -->
<section class="section section--alt" id="about" aria-labelledby="about-title">
<div class="container about__grid">
<div class="about__visual reveal">
<div class="portrait portrait--soft" role="img" aria-label="Maya speaking on stage">
<span class="portrait__initials" aria-hidden="true">MO</span>
</div>
</div>
<div class="about__copy reveal">
<p class="eyebrow">About Maya</p>
<h2 id="about-title" class="section__title">I rebuilt my own way of leading — then turned it into a method.</h2>
<p>After a decade scaling product teams (and one very loud burnout), I went looking for a way to lead that didn't cost me my health. What I found became the framework I now teach: <strong>steady ambition</strong> — drive without the dread.</p>
<p>Today I coach founders, directors, and emerging leaders across tech, health, and the public sector. My work blends behavioural science, somatic practice, and plain-spoken strategy — no jargon, no hustle theatre.</p>
<ul class="creds" aria-label="Credentials">
<li><span aria-hidden="true">◆</span> ICF-certified Professional Coach (PCC)</li>
<li><span aria-hidden="true">◆</span> MSc, Organisational Psychology</li>
<li><span aria-hidden="true">◆</span> Author, <em>Steady Ambition</em></li>
<li><span aria-hidden="true">◆</span> Faculty, Northwind Leadership Summit</li>
</ul>
</div>
</div>
</section>
<!-- ===== RESULTS / TESTIMONIALS ===== -->
<section class="section" id="results" aria-labelledby="results-title">
<div class="container">
<div class="section__head reveal">
<p class="eyebrow">Proof, not promises</p>
<h2 id="results-title" class="section__title">Results clients feel — and measure</h2>
</div>
<div class="slider reveal" aria-roledescription="carousel" aria-label="Client testimonials">
<div class="slider__viewport">
<ul class="slider__track" id="sliderTrack">
<li class="quote" role="group" aria-label="1 of 3">
<p class="quote__text">“Maya gave my leadership team a shared language overnight. Six months later our retention is up 18% and the constant fire-fighting is gone.”</p>
<div class="quote__by">
<span class="quote__avatar" aria-hidden="true">JR</span>
<span><strong>Jordan Reyes</strong><small>VP Engineering, Helio Labs</small></span>
</div>
</li>
<li class="quote" role="group" aria-label="2 of 3">
<p class="quote__text">“I came in exhausted and convinced rest meant falling behind. Maya proved the opposite. I'm sharper, calmer, and we just closed our biggest quarter.”</p>
<div class="quote__by">
<span class="quote__avatar" aria-hidden="true">PA</span>
<span><strong>Priya Anand</strong><small>Founder & CEO, Cartwheel</small></span>
</div>
</li>
<li class="quote" role="group" aria-label="3 of 3">
<p class="quote__text">“Best keynote we've ever booked. People were still quoting Maya in Slack a month later — and actually changing how they ran meetings.”</p>
<div class="quote__by">
<span class="quote__avatar" aria-hidden="true">TM</span>
<span><strong>Tomas Müller</strong><small>People Director, Northwind</small></span>
</div>
</li>
</ul>
</div>
<div class="slider__controls">
<button class="slider__btn" id="prevQuote" aria-label="Previous testimonial">‹</button>
<div class="slider__dots" id="sliderDots" role="tablist" aria-label="Choose testimonial"></div>
<button class="slider__btn" id="nextQuote" aria-label="Next testimonial">›</button>
</div>
</div>
</div>
</section>
<!-- ===== SPEAKING TOPICS ===== -->
<section class="section section--alt" id="topics" aria-labelledby="topics-title">
<div class="container">
<div class="section__head reveal">
<p class="eyebrow">On stage</p>
<h2 id="topics-title" class="section__title">Signature speaking topics</h2>
<p class="section__sub">Each talk is shaped to your audience and outcomes — here's where I start.</p>
</div>
<div class="topics">
<article class="topic reveal"><span class="topic__num">01</span><h3>Steady Ambition</h3><p>Why the fastest leaders are the calmest — and how to build drive that doesn't burn out.</p></article>
<article class="topic reveal"><span class="topic__num">02</span><h3>The Trust Dividend</h3><p>The everyday behaviours that compound into teams who move fast and stay together.</p></article>
<article class="topic reveal"><span class="topic__num">03</span><h3>Decisions Under Pressure</h3><p>A simple system for thinking clearly when the stakes — and the noise — are high.</p></article>
<article class="topic reveal"><span class="topic__num">04</span><h3>Leading Through Change</h3><p>How to bring people with you when the map keeps redrawing itself.</p></article>
</div>
</div>
</section>
<!-- ===== FREE RESOURCE / LEAD MAGNET ===== -->
<section class="section" id="resource" aria-labelledby="resource-title">
<div class="container resource">
<div class="resource__copy reveal">
<p class="eyebrow">Free guide</p>
<h2 id="resource-title" class="section__title">The 5-Minute Reset</h2>
<p>A one-page field guide for leaders who feel the wheels coming off mid-week. Five science-backed resets you can run between meetings — no app, no fluff. Join 9,000+ leaders who already grabbed it.</p>
<ul class="resource__bullets">
<li>Pocket-sized PDF</li>
<li>Plus my Monday note (unsubscribe anytime)</li>
</ul>
</div>
<form class="lead reveal" id="leadForm" novalidate>
<label class="field">
<span>Your name</span>
<input type="text" name="name" id="leadName" autocomplete="name" placeholder="Jamie Cole" required />
</label>
<label class="field">
<span>Email</span>
<input type="email" name="email" id="leadEmail" autocomplete="email" placeholder="[email protected]" required />
</label>
<button class="btn btn--primary btn--block" type="submit">Send me the guide</button>
<p class="lead__note" id="leadNote" role="status" aria-live="polite">We respect your inbox. No spam, ever.</p>
</form>
</div>
</section>
<!-- ===== BOOKING / CONTACT ===== -->
<section class="section section--book" id="booking" aria-labelledby="booking-title">
<div class="container book">
<div class="book__copy reveal">
<p class="eyebrow eyebrow--light">Let's talk</p>
<h2 id="booking-title" class="section__title">Book a free discovery call</h2>
<p>Tell me a little about where you are. We'll spend 20 minutes mapping your next move — and if I'm not the right fit, I'll point you to someone who is.</p>
<ul class="book__list" aria-label="What to expect">
<li>20 minutes, video or phone</li>
<li>Zero pressure, zero pitch</li>
<li>You leave with one clear next step</li>
</ul>
</div>
<form class="book__form reveal" id="bookForm" novalidate>
<div class="field">
<label for="bName">Full name</label>
<input type="text" id="bName" name="name" autocomplete="name" required placeholder="Your name" />
</div>
<div class="field">
<label for="bEmail">Work email</label>
<input type="email" id="bEmail" name="email" autocomplete="email" required placeholder="[email protected]" />
</div>
<div class="field">
<label for="bGoal">What would you like to work on?</label>
<select id="bGoal" name="goal" required>
<option value="" disabled selected>Choose a focus…</option>
<option>1:1 leadership coaching</option>
<option>Team intensive</option>
<option>Keynote / event</option>
<option>Not sure yet</option>
</select>
</div>
<div class="field">
<label for="bNote">Anything else? (optional)</label>
<textarea id="bNote" name="note" rows="3" placeholder="A sentence about where you are right now…"></textarea>
</div>
<button class="btn btn--primary btn--block btn--lg" type="submit">Request my call</button>
<p class="book__status" id="bookStatus" role="status" aria-live="polite"></p>
</form>
</div>
</section>
</main>
<!-- ===== FOOTER ===== -->
<footer class="footer">
<div class="container footer__grid">
<div class="footer__brand">
<span class="brand__mark" aria-hidden="true">M</span>
<p class="footer__name">Maya Okonkwo</p>
<p class="footer__tag">Leadership coaching & keynotes for steady, ambitious teams.</p>
</div>
<nav class="footer__col" aria-label="Explore">
<h4>Explore</h4>
<a href="#programs">Programs</a>
<a href="#about">About</a>
<a href="#results">Results</a>
<a href="#topics">Speaking</a>
</nav>
<nav class="footer__col" aria-label="Connect">
<h4>Connect</h4>
<a href="#" data-toast="LinkedIn — illustrative link.">LinkedIn</a>
<a href="#" data-toast="Instagram — illustrative link.">Instagram</a>
<a href="#" data-toast="The Founders Podcast — illustrative link.">Podcast</a>
<a href="#booking" data-toast="Opening your discovery call booking…">Book a call</a>
</nav>
<div class="footer__col">
<h4>Stay in the loop</h4>
<p class="footer__tag">Get the Monday note — one idea on leading well.</p>
<a class="btn btn--soft btn--sm" href="#resource">Join the list</a>
</div>
</div>
<div class="container footer__base">
<p>© <span id="year"></span> Maya Okonkwo. Illustrative UI — fictional creator.</p>
<p><a href="#top">Back to top ↑</a></p>
</div>
</footer>
<div class="toast" id="toast" role="status" aria-live="polite"></div>
<script src="script.js"></script>
</body>
</html>Coach / Speaker Landing
A complete, production-feel personal-brand landing page for a fictional leadership coach and keynote speaker, Maya Okonkwo. The design leans on a warm-white background, a bold coral accent paired with a trustworthy teal, and a friendly-confident type system (Plus Jakarta Sans for UI, Fraunces for display headlines). The page is structured as one continuous story: a sticky top nav with a persistent “Book a call” CTA, a strong hero with name, tagline, primary CTA and a portrait visual, then program/offer cards, an about-and-credentials block, a results testimonial slider, signature speaking topics, a free-resource lead magnet, a discovery-call booking form, and a footer with social links and a newsletter prompt.
Interactions are all vanilla JavaScript with no dependencies: a mobile nav toggle with focus-trap-friendly Escape handling, smooth in-page scrolling, an IntersectionObserver scroll-reveal with staggered delays, and an auto-advancing testimonial slider with prev/next buttons, dot tabs, keyboard arrows, and pause-on-hover/focus. Both the lead-magnet and booking forms run inline validation (name, email pattern, and a required focus on the booking form), surface friendly success and error messages via aria-live regions, and fire a reusable toast(msg) helper for CTA feedback.
Accessibility and responsiveness are first-class: semantic landmarks, a skip link, visible focus rings, AA-contrast colors, and breakpoints at 940px, 720px (mobile menu), and 520px that stack every section gracefully down to ~360px. A prefers-reduced-motion block disables animation for users who opt out.
Illustrative UI only — fictional creator, not a real person or brand.