
Html Ppt Zhangzara Peoples Platform
- 61 installs
- 83.7k repo stars
- Updated August 5, 2026
- nexu-io/open-design
Helps with ai & agent building tasks during AI-assisted development.
About
html-ppt-zhangzara-peoples-platform is a Claude Code skill in the AI & Agent Building category.
- html-ppt-zhangzara-peoples-platform
- AI & Agent Building
- AI-coding skill
Html Ppt Zhangzara Peoples Platform by the numbers
- 61 all-time installs (skills.sh)
- +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #6,381 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nexu-io/open-design --skill html-ppt-zhangzara-peoples-platformAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 61 |
|---|---|
| repo stars | ★ 83.7k |
| Last updated | August 5, 2026 |
| Repository | nexu-io/open-design ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
People's Platform (Block & Bold)
Activist poster energy: blue, orange, red on cream, with Alfa Slab + Caveat Brush.
A single self-contained HTML deck — typography, palette, decorative system, and slide vocabulary are all tuned together. Mixing layouts across templates breaks the system; stay inside this one.
At a glance
- Scheme: light
- Formality: medium-low
- Density: medium-high
- Slides in demo: 10
Best for
Anything that should feel honest, loud, and graphic: cultural commentary, manifestos, civic and community decks, design talks, campaign pitches. Excellent for founder-vision moments, mission statements, or any deck — including across industries — that wants protest-poster energy instead of corporate polish.
Avoid for
Contexts where institutional restraint is the actual goal — the saturated political-poster palette commits hard to expressive energy.
Workflow
1. Clone `example.html` AND the `assets/` folder into the user's workspace. This template ships an assets/deck-stage.js runtime (keyboard navigation, stage rendering); the HTML references it as assets/deck-stage.js, so the file must sit next to the cloned HTML or that path will 404 in the generated artifact and navigation will silently break. Inlining the JS into a single <script> block in the HTML is an acceptable alternative when a single self-contained file is preferred. 2. Replace placeholder content with the user's real headlines, body copy, numbers, names, dates, and section labels. Match existing dimensions when swapping image placeholders. 3. Preserve the design system. Never substitute fonts, recolor the palette, restructure the layout grid, or strip decorative elements (corner brackets, paper grain, geometric shapes, illustrated SVGs). They are part of the identity. 4. Adjust deck length by duplicating layouts. If the user has more content than the demo holds, duplicate an existing slide of the most appropriate layout. If less, drop slides from the bottom. Update page-number labels. 5. Designing missing layouts: if a slide needs a layout the template doesn't have, design it from scratch using the same fonts, palette, decorative vocabulary, spacing rhythm, and component grammar — never bail to a different template. 6. Keep the navigation runtime as shipped. If the deck ships an assets/deck-stage.js or inline keyboard handler, leave it intact.
Output contract
Emit between <artifact> tags:
<artifact identifier="zhangzara-peoples-platform" type="text/html" title="Deck Title">
<!doctype html>
<html>...</html>
</artifact>Source & license
Vendored from upstream MIT-licensed `zarazhangrui/beautiful-html-templates`.
The full upstream MIT license text — including the original copyright notice — ships in this skill at `LICENSE` and must be redistributed alongside any copy of example.html, template.json, or any vendored assets/ runtime. See template.json for the upstream metadata snapshot.
/**
* <deck-stage> — reusable web component for HTML decks.
*
* Handles:
* (a) speaker notes — reads <script type="application/json" id="speaker-notes">
* and posts {slideIndexChanged: N} to the parent window on nav.
* (b) keyboard navigation — ←/→, PgUp/PgDn, Space, Home/End, number keys.
* (c) press R to reset to slide 0 (with a tasteful keyboard hint).
* (d) bottom-center overlay showing slide count + hints, fades out on idle.
* (e) auto-scaling — inner canvas is a fixed design size (default 1920×1080)
* scaled with `transform: scale()` to fit the viewport, letterboxed.
* Set the `noscale` attribute to render at authored size (1:1) — the
* PPTX exporter sets this so its DOM capture sees unscaled geometry.
* (f) print — `@media print` lays every slide out as its own page at the
* design size, so the browser's Print → Save as PDF produces a clean
* one-page-per-slide PDF with no extra setup.
*
* Slides are HIDDEN, not unmounted. Non-active slides stay in the DOM with
* `visibility: hidden` + `opacity: 0`, so their state (videos, iframes,
* form inputs, React trees) is preserved across navigation.
*
* Lifecycle event — the component dispatches a `slidechange` CustomEvent on
* itself whenever the active slide changes (including the initial mount).
* The event bubbles and composes out of shadow DOM, so you can listen on
* the <deck-stage> element or on document:
*
* document.querySelector('deck-stage').addEventListener('slidechange', (e) => {
* e.detail.index // new 0-based index
* e.detail.previousIndex // previous index, or -1 on init
* e.detail.total // total slide count
* e.detail.slide // the new active slide element
* e.detail.previousSlide // the prior slide element, or null on init
* e.detail.reason // 'init' | 'keyboard' | 'click' | 'tap' | 'api'
* });
*
* Persistence: none at the deck level. The host app keeps the current slide
* in its own URL (?slide=) and re-delivers it via location.hash on load, so a
* bare load with no hash always starts at slide 1.
*
* Usage:
* <deck-stage width="1920" height="1080">
* <section data-label="Title">...</section>
* <section data-label="Agenda">...</section>
* </deck-stage>
*
* Slides are the direct element children of <deck-stage>. Each slide is
* automatically tagged with:
* - data-screen-label="NN Label" (1-indexed, for comment flow)
* - data-om-validate="no_overflowing_text,no_overlapping_text,slide_sized_text"
*/
(() => {
const DESIGN_W_DEFAULT = 1920;
const DESIGN_H_DEFAULT = 1080;
const OVERLAY_HIDE_MS = 1800;
const VALIDATE_ATTR = 'no_overflowing_text,no_overlapping_text,slide_sized_text';
const pad2 = (n) => String(n).padStart(2, '0');
const stylesheet = `
:host {
position: fixed;
inset: 0;
display: block;
background: #000;
color: #fff;
font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
overflow: hidden;
}
.stage {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
}
.canvas {
position: relative;
transform-origin: center center;
flex-shrink: 0;
background: #fff;
will-change: transform;
}
/* Slides live in light DOM (via <slot>) so authored CSS still applies.
We absolutely position each slotted child to stack them. */
::slotted(*) {
position: absolute !important;
inset: 0 !important;
width: 100% !important;
height: 100% !important;
box-sizing: border-box !important;
overflow: hidden;
opacity: 0;
pointer-events: none;
visibility: hidden;
}
::slotted([data-deck-active]) {
opacity: 1;
pointer-events: auto;
visibility: visible;
}
/* Tap zones for mobile — back/forward thirds like Stories.
Transparent, no visible UI, don't block the overlay. */
.tapzones {
position: fixed;
inset: 0;
display: flex;
z-index: 2147482000;
pointer-events: none;
}
.tapzone {
flex: 1;
pointer-events: auto;
-webkit-tap-highlight-color: transparent;
}
/* Only activate tap zones on coarse pointers (touch devices). */
@media (hover: hover) and (pointer: fine) {
.tapzones { display: none; }
}
.overlay {
position: fixed;
left: 50%;
bottom: 22px;
transform: translate(-50%, 6px) scale(0.92);
filter: blur(6px);
display: flex;
align-items: center;
gap: 4px;
padding: 4px;
background: #000;
color: #fff;
border-radius: 999px;
font-size: 12px;
font-feature-settings: "tnum" 1;
letter-spacing: 0.01em;
opacity: 0;
pointer-events: none;
transition: opacity 260ms ease, transform 260ms cubic-bezier(.2,.8,.2,1), filter 260ms ease;
transform-origin: center bottom;
z-index: 2147483000;
user-select: none;
}
.overlay[data-visible] {
opacity: 1;
pointer-events: auto;
transform: translate(-50%, 0) scale(1);
filter: blur(0);
}
.btn {
appearance: none;
-webkit-appearance: none;
background: transparent;
border: 0;
margin: 0;
padding: 0;
color: inherit;
font: inherit;
cursor: default;
display: inline-flex;
align-items: center;
justify-content: center;
height: 28px;
min-width: 28px;
border-radius: 999px;
color: rgba(255,255,255,0.72);
transition: background 140ms ease, color 140ms ease;
-webkit-tap-highlight-color: transparent;
}
.btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn:active { background: rgba(255,255,255,0.18); }
.btn:focus { outline: none; }
.btn:focus-visible { outline: none; }
.btn::-moz-focus-inner { border: 0; }
.btn svg { width: 14px; height: 14px; display: block; }
.btn.reset {
font-size: 11px;
font-weight: 500;
letter-spacing: 0.02em;
padding: 0 10px 0 12px;
gap: 6px;
color: rgba(255,255,255,0.72);
}
.btn.reset .kbd {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 16px;
height: 16px;
padding: 0 4px;
font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
font-size: 10px;
line-height: 1;
color: rgba(255,255,255,0.88);
background: rgba(255,255,255,0.12);
border-radius: 4px;
}
.count {
font-variant-numeric: tabular-nums;
color: #fff;
font-weight: 500;
padding: 0 8px;
min-width: 42px;
text-align: center;
font-size: 12px;
}
.count .sep { color: rgba(255,255,255,0.45); margin: 0 3px; font-weight: 400; }
.count .total { color: rgba(255,255,255,0.55); }
.divider {
width: 1px;
height: 14px;
background: rgba(255,255,255,0.18);
margin: 0 2px;
}
/* ── Print: one page per slide, no chrome ────────────────────────────
The screen layout stacks every slide at inset:0 inside a scaled
canvas; for print we want them in document flow at the authored
design size so the browser paginates one slide per sheet. The
@page size is set from the width/height attributes via the inline
<style id="deck-stage-print-page"> that connectedCallback injects
into <head> (the @page at-rule has no effect inside shadow DOM). */
@media print {
:host {
position: static;
inset: auto;
background: none;
overflow: visible;
color: inherit;
}
.stage { position: static; display: block; }
.canvas {
transform: none !important;
width: auto !important;
height: auto !important;
background: none;
will-change: auto;
}
::slotted(*) {
position: relative !important;
inset: auto !important;
width: var(--deck-design-w) !important;
height: var(--deck-design-h) !important;
box-sizing: border-box !important;
opacity: 1 !important;
visibility: visible !important;
pointer-events: auto;
break-after: page;
page-break-after: always;
break-inside: avoid;
overflow: hidden;
}
::slotted(*:last-child) {
break-after: auto;
page-break-after: auto;
}
.overlay, .tapzones { display: none !important; }
}
`;
class DeckStage extends HTMLElement {
static get observedAttributes() { return ['width', 'height', 'noscale']; }
constructor() {
super();
this._root = this.attachShadow({ mode: 'open' });
this._index = 0;
this._slides = [];
this._notes = [];
this._hideTimer = null;
this._mouseIdleTimer = null;
this._onKey = this._onKey.bind(this);
this._onResize = this._onResize.bind(this);
this._onSlotChange = this._onSlotChange.bind(this);
this._onMouseMove = this._onMouseMove.bind(this);
this._onTapBack = this._onTapBack.bind(this);
this._onTapForward = this._onTapForward.bind(this);
}
get designWidth() {
return parseInt(this.getAttribute('width'), 10) || DESIGN_W_DEFAULT;
}
get designHeight() {
return parseInt(this.getAttribute('height'), 10) || DESIGN_H_DEFAULT;
}
connectedCallback() {
this._render();
this._loadNotes();
this._syncPrintPageRule();
window.addEventListener('keydown', this._onKey);
window.addEventListener('resize', this._onResize);
window.addEventListener('mousemove', this._onMouseMove, { passive: true });
// Initial collection + layout happens via slotchange, which fires on mount.
}
disconnectedCallback() {
window.removeEventListener('keydown', this._onKey);
window.removeEventListener('resize', this._onResize);
window.removeEventListener('mousemove', this._onMouseMove);
if (this._hideTimer) clearTimeout(this._hideTimer);
if (this._mouseIdleTimer) clearTimeout(this._mouseIdleTimer);
}
attributeChangedCallback() {
if (this._canvas) {
this._canvas.style.width = this.designWidth + 'px';
this._canvas.style.height = this.designHeight + 'px';
this._canvas.style.setProperty('--deck-design-w', this.designWidth + 'px');
this._canvas.style.setProperty('--deck-design-h', this.designHeight + 'px');
this._fit();
this._syncPrintPageRule();
}
}
_render() {
const style = document.createElement('style');
style.textContent = stylesheet;
const stage = document.createElement('div');
stage.className = 'stage';
const canvas = document.createElement('div');
canvas.className = 'canvas';
canvas.style.width = this.designWidth + 'px';
canvas.style.height = this.designHeight + 'px';
canvas.style.setProperty('--deck-design-w', this.designWidth + 'px');
canvas.style.setProperty('--deck-design-h', this.designHeight + 'px');
const slot = document.createElement('slot');
slot.addEventListener('slotchange', this._onSlotChange);
canvas.appendChild(slot);
stage.appendChild(canvas);
// Tap zones (mobile): left third = back, right third = forward.
const tapzones = document.createElement('div');
tapzones.className = 'tapzones export-hidden';
tapzones.setAttribute('aria-hidden', 'true');
tapzones.setAttribute('data-noncommentable', '');
const tzBack = document.createElement('div');
tzBack.className = 'tapzone tapzone--back';
const tzMid = document.createElement('div');
tzMid.className = 'tapzone tapzone--mid';
tzMid.style.pointerEvents = 'none';
const tzFwd = document.createElement('div');
tzFwd.className = 'tapzone tapzone--fwd';
tzBack.addEventListener('click', this._onTapBack);
tzFwd.addEventListener('click', this._onTapForward);
tapzones.append(tzBack, tzMid, tzFwd);
// Overlay: compact, solid black, with clickable controls.
const overlay = document.createElement('div');
overlay.className = 'overlay export-hidden';
overlay.setAttribute('role', 'toolbar');
overlay.setAttribute('aria-label', 'Deck controls');
overlay.setAttribute('data-noncommentable', '');
overlay.innerHTML = `
<button class="btn prev" type="button" aria-label="Previous slide" title="Previous (←)">
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M10 3L5 8l5 5"/></svg>
</button>
<span class="count" aria-live="polite"><span class="current">1</span><span class="sep">/</span><span class="total">1</span></span>
<button class="btn next" type="button" aria-label="Next slide" title="Next (→)">
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 3l5 5-5 5"/></svg>
</button>
<span class="divider"></span>
<button class="btn reset" type="button" aria-label="Reset to first slide" title="Reset (R)">Reset<span class="kbd">R</span></button>
`;
overlay.querySelector('.prev').addEventListener('click', () => this._go(this._index - 1, 'click'));
overlay.querySelector('.next').addEventListener('click', () => this._go(this._index + 1, 'click'));
overlay.querySelector('.reset').addEventListener('click', () => this._go(0, 'click'));
this._root.append(style, stage, tapzones, overlay);
this._canvas = canvas;
this._slot = slot;
this._overlay = overlay;
this._countEl = overlay.querySelector('.current');
this._totalEl = overlay.querySelector('.total');
}
/** @page must live in the document stylesheet — it's a no-op inside
* shadow DOM. Inject/update a single <head> style tag so the print
* sheet matches the design size and Save-as-PDF yields one slide per
* page with no margins. */
_syncPrintPageRule() {
const id = 'deck-stage-print-page';
let tag = document.getElementById(id);
if (!tag) {
tag = document.createElement('style');
tag.id = id;
document.head.appendChild(tag);
}
tag.textContent =
'@page { size: ' + this.designWidth + 'px ' + this.designHeight + 'px; margin: 0; } ' +
'@media print { html, body { margin: 0 !important; padding: 0 !important; background: none !important; overflow: visible !important; height: auto !important; } ' +
'* { -webkit-print-color-adjust: exact; print-color-adjust: exact; } }';
}
_onSlotChange() {
this._collectSlides();
this._restoreIndex();
this._applyIndex({ showOverlay: false, broadcast: true, reason: 'init' });
this._fit();
}
_collectSlides() {
const assigned = this._slot.assignedElements({ flatten: true });
this._slides = assigned.filter((el) => {
// Skip template/style/script nodes even if someone slots them.
const tag = el.tagName;
return tag !== 'TEMPLATE' && tag !== 'SCRIPT' && tag !== 'STYLE';
});
this._slides.forEach((slide, i) => {
const n = i + 1;
// Determine a label for comment flow: prefer explicit data-label,
// then an existing data-screen-label, then first heading, else "Slide".
let label = slide.getAttribute('data-label');
if (!label) {
const existing = slide.getAttribute('data-screen-label');
if (existing) {
// Strip any leading number the author may have included.
label = existing.replace(/^\s*\d+\s*/, '').trim() || existing;
}
}
if (!label) {
const h = slide.querySelector('h1, h2, h3, [data-title]');
if (h) label = (h.textContent || '').trim().slice(0, 40);
}
if (!label) label = 'Slide';
slide.setAttribute('data-screen-label', `${pad2(n)} ${label}`);
// Validation attribute for comment flow / auto-checks.
if (!slide.hasAttribute('data-om-validate')) {
slide.setAttribute('data-om-validate', VALIDATE_ATTR);
}
slide.setAttribute('data-deck-slide', String(i));
});
if (this._totalEl) this._totalEl.textContent = String(this._slides.length || 1);
if (this._index >= this._slides.length) this._index = Math.max(0, this._slides.length - 1);
}
_loadNotes() {
const tag = document.getElementById('speaker-notes');
if (!tag) { this._notes = []; return; }
try {
const parsed = JSON.parse(tag.textContent || '[]');
if (Array.isArray(parsed)) this._notes = parsed;
} catch (e) {
console.warn('[deck-stage] Failed to parse #speaker-notes JSON:', e);
this._notes = [];
}
}
_restoreIndex() {
// The host's ?slide= param is delivered as a #<int> hash (1-indexed) on
// the iframe src. No hash → slide 1; the deck itself keeps no position
// state across loads.
const h = (location.hash || '').match(/^#(\d+)$/);
if (h) {
const n = parseInt(h[1], 10) - 1;
if (n >= 0 && n < this._slides.length) this._index = n;
}
}
_applyIndex({ showOverlay = true, broadcast = true, reason = 'init' } = {}) {
if (!this._slides.length) return;
const prev = this._prevIndex == null ? -1 : this._prevIndex;
const curr = this._index;
// Keep the iframe's own hash in sync so an in-iframe location.reload()
// (reload banner path in viewer-handle.ts) lands on the current slide,
// not the stale deep-link hash from initial load.
try { history.replaceState(null, '', '#' + (curr + 1)); } catch (e) {}
this._slides.forEach((s, i) => {
if (i === curr) s.setAttribute('data-deck-active', '');
else s.removeAttribute('data-deck-active');
});
if (this._countEl) this._countEl.textContent = String(curr + 1);
if (broadcast) {
// (1) Legacy: host-window postMessage for speaker-notes renderers.
try { window.postMessage({ slideIndexChanged: curr }, '*'); } catch (e) {}
// (2) In-page CustomEvent on the <deck-stage> element itself.
// Bubbles and composes out of shadow DOM so slide code can listen:
// document.querySelector('deck-stage').addEventListener('slidechange', e => {
// e.detail.index, e.detail.previousIndex, e.detail.total, e.detail.slide, e.detail.reason
// });
const detail = {
index: curr,
previousIndex: prev,
total: this._slides.length,
slide: this._slides[curr] || null,
previousSlide: prev >= 0 ? (this._slides[prev] || null) : null,
reason: reason, // 'init' | 'keyboard' | 'click' | 'tap' | 'api'
};
this.dispatchEvent(new CustomEvent('slidechange', {
detail,
bubbles: true,
composed: true,
}));
}
this._prevIndex = curr;
if (showOverlay) this._flashOverlay();
}
_flashOverlay() {
if (!this._overlay) return;
this._overlay.setAttribute('data-visible', '');
if (this._hideTimer) clearTimeout(this._hideTimer);
this._hideTimer = setTimeout(() => {
this._overlay.removeAttribute('data-visible');
}, OVERLAY_HIDE_MS);
}
_fit() {
if (!this._canvas) return;
// PPTX export sets noscale so the DOM capture sees authored-size
// geometry — the scaled canvas is in shadow DOM, so the exporter's
// resetTransformSelector can't reach .canvas.style.transform directly.
if (this.hasAttribute('noscale')) {
this._canvas.style.transform = 'none';
return;
}
const vw = window.innerWidth;
const vh = window.innerHeight;
const s = Math.min(vw / this.designWidth, vh / this.designHeight);
this._canvas.style.transform = `scale(${s})`;
}
_onResize() { this._fit(); }
_onMouseMove() {
// Keep overlay visible while mouse moves; hide after idle.
this._flashOverlay();
}
_onTapBack(e) {
e.preventDefault();
this._go(this._index - 1, 'tap');
}
_onTapForward(e) {
e.preventDefault();
this._go(this._index + 1, 'tap');
}
_onKey(e) {
// Ignore when the user is typing.
const t = e.target;
if (t && (t.isContentEditable || /^(INPUT|TEXTAREA|SELECT)$/.test(t.tagName))) return;
if (e.metaKey || e.ctrlKey || e.altKey) return;
const key = e.key;
let handled = true;
if (key === 'ArrowRight' || key === 'PageDown' || key === ' ' || key === 'Spacebar') {
this._go(this._index + 1, 'keyboard');
} else if (key === 'ArrowLeft' || key === 'PageUp') {
this._go(this._index - 1, 'keyboard');
} else if (key === 'Home') {
this._go(0, 'keyboard');
} else if (key === 'End') {
this._go(this._slides.length - 1, 'keyboard');
} else if (key === 'r' || key === 'R') {
this._go(0, 'keyboard');
} else if (/^[0-9]$/.test(key)) {
// 1..9 jump to that slide; 0 jumps to 10.
const n = key === '0' ? 9 : parseInt(key, 10) - 1;
if (n < this._slides.length) this._go(n, 'keyboard');
} else {
handled = false;
}
if (handled) {
e.preventDefault();
this._flashOverlay();
}
}
_go(i, reason = 'api') {
if (!this._slides.length) return;
const clamped = Math.max(0, Math.min(this._slides.length - 1, i));
if (clamped === this._index) {
this._flashOverlay();
return;
}
this._index = clamped;
this._applyIndex({ showOverlay: true, broadcast: true, reason });
}
// Public API ------------------------------------------------------------
/** Current slide index (0-based). */
get index() { return this._index; }
/** Total slide count. */
get length() { return this._slides.length; }
/** Programmatically navigate. */
goTo(i) { this._go(i, 'api'); }
next() { this._go(this._index + 1, 'api'); }
prev() { this._go(this._index - 1, 'api'); }
reset() { this._go(0, 'api'); }
}
if (!customElements.get('deck-stage')) {
customElements.define('deck-stage', DeckStage);
}
})();
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Block & Bold — Presentation Template</title>
<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=Alfa+Slab+One&family=Archivo+Narrow:wght@400;500;600;700&family=Caveat+Brush&family=DM+Mono:wght@400;500&display=swap" rel="stylesheet">
<script src="assets/deck-stage.js"></script>
<style>
:root{
--blue:#2C2CDC;
--blue-deep:#1B1BB0;
--orange:#F2A03A;
--orange-deep:#E89321;
--red:#E83A2A;
--red-deep:#B7281C;
--cream:#F4E9D6;
--paper:#F5F2EA;
--ink:#0E0E14;
}
html,body{margin:0;background:#111;}
body{font-family:'Archivo Narrow', system-ui, sans-serif; color:var(--ink);}
deck-stage > section{
width:1920px; height:1080px;
position:relative; overflow:hidden;
background:var(--paper);
}
/* ——— atoms ——— */
.display{
font-family:'Alfa Slab One', serif;
letter-spacing:.005em; line-height:.88;
text-transform:uppercase;
}
.script{ font-family:'Caveat Brush', cursive; text-transform:lowercase;}
.mono{ font-family:'DM Mono', monospace;}
.stamp-orange{ color:var(--orange); text-shadow: 6px 6px 0 var(--red), 12px 12px 0 var(--red-deep);}
.stamp-blue{ color:var(--blue); text-shadow: 6px 6px 0 var(--red);}
.stamp-cream{ color:var(--cream); text-shadow: 6px 6px 0 var(--red);}
.grain::before{
content:""; position:absolute; inset:0; pointer-events:none;
background-image:
radial-gradient(rgba(0,0,0,.06) 1px, transparent 1px),
radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
background-size: 3px 3px, 5px 5px;
background-position: 0 0, 1px 2px;
mix-blend-mode:multiply;
opacity:.5;
}
/* ============ 01 — COVER ============ */
.s-cover{ background:var(--blue); color:var(--cream);}
.s-cover .frame{ position:absolute; inset:48px; border:6px solid var(--cream);}
.s-cover .meta-top{
position:absolute; top:90px; left:90px; right:90px;
display:flex; justify-content:space-between; align-items:center;
font-family:'DM Mono', monospace; font-size:24px; letter-spacing:.18em; color:var(--cream);
}
.s-cover .meta-top .pill{ border:3px solid var(--cream); padding:8px 20px; border-radius:999px;}
.s-cover .center{
position:absolute; left:0; right:0; top:340px;
display:flex; flex-direction:column; align-items:center;
}
.s-cover .title{
font-family:'Alfa Slab One', serif; font-size:240px; line-height:.86;
color:var(--orange);
text-shadow: 10px 10px 0 var(--red), 20px 20px 0 var(--red-deep);
}
.s-cover .row2{ display:flex; align-items:center; gap:34px; margin-top:46px;}
.s-cover .for{ font-family:'Caveat Brush', cursive; font-size:96px; color:var(--cream); transform:rotate(-5deg);}
.s-cover .sub{
font-family:'Alfa Slab One', serif; font-size:72px; color:var(--cream);
letter-spacing:.01em; text-transform:uppercase;
}
.s-cover .footline{
position:absolute; bottom:140px; left:0; right:0;
display:flex; justify-content:center; gap:32px; align-items:center;
font-family:'DM Mono', monospace; font-size:26px; letter-spacing:.22em; color:var(--cream);
}
.s-cover .dot{width:10px; height:10px; background:var(--orange); border-radius:50%;}
/* ============ 02 — TABLE OF CONTENTS ============ */
.s-toc{ background:var(--paper);}
.s-toc .head{
padding:80px 90px 30px;
display:flex; justify-content:space-between; align-items:flex-end;
border-bottom:6px solid var(--ink);
}
.s-toc .head h2{
margin:0; font-family:'Alfa Slab One', serif; font-size:140px; line-height:.88;
color:var(--blue); text-shadow:6px 6px 0 var(--red); text-transform:uppercase;
}
.s-toc .head .meta{
font-family:'DM Mono', monospace; text-align:right; font-size:24px; letter-spacing:.16em; color:var(--ink);
}
.s-toc .head .meta .big{font-size:32px; color:var(--blue); font-weight:600; margin-bottom:6px;}
.s-toc .list{
padding:50px 90px 0;
display:grid; grid-template-columns: 1fr 1fr; column-gap:90px; row-gap:18px;
}
.s-toc .row{
display:grid; grid-template-columns:90px 1fr 100px; align-items:center;
padding:20px 0; border-bottom:3px solid var(--ink); gap:24px;
}
.s-toc .row .n{
font-family:'Alfa Slab One', serif; font-size:54px; line-height:1;
color:var(--orange); text-shadow:3px 3px 0 var(--red);
}
.s-toc .row .t{
font-family:'Alfa Slab One', serif; font-size:36px; line-height:1;
color:var(--blue); text-transform:uppercase;
}
.s-toc .row .pg{
font-family:'DM Mono', monospace; font-size:24px; letter-spacing:.18em; color:var(--ink); text-align:right;
}
/* ============ 03 — MANIFESTO / BIG IDEA ============ */
.s-manifesto{ background:var(--cream); color:var(--ink);}
.s-manifesto .topbar{
position:absolute; top:0; left:0; right:0; height:90px; background:var(--blue);
display:flex; align-items:center; justify-content:space-between;
padding: 0 90px; color:var(--cream);
font-family:'DM Mono', monospace; letter-spacing:.18em; font-size:24px;
}
.s-manifesto .body{
position:absolute; left:120px; right:120px; top:240px;
}
.s-manifesto .kicker{
font-family:'DM Mono', monospace; letter-spacing:.22em; font-size:26px;
color:var(--red); margin-bottom:48px;
}
.s-manifesto h1{
margin:0; font-family:'Alfa Slab One', serif; line-height:1.04;
font-size:108px; letter-spacing:.005em; text-transform:uppercase;
color:var(--blue);
}
.s-manifesto h1 .y{ color:var(--orange); text-shadow: 5px 5px 0 var(--red);}
.s-manifesto h1 .scriptline{
display:inline-block; font-family:'Caveat Brush', cursive; color:var(--red);
font-size:104px; transform:rotate(-2deg); margin: 0 14px;
text-transform:lowercase;
}
.s-manifesto .underline{
margin-top:60px; height:14px; background:var(--ink); width:30%;
}
.s-manifesto .footrow{
position:absolute; bottom:80px; left:120px; right:120px;
display:flex; justify-content:space-between; align-items:center;
font-family:'DM Mono', monospace; font-size:24px; letter-spacing:.18em; color:var(--ink);
}
/* ============ 04 — THREE COLUMNS ============ */
.s-pillars{ background:var(--paper);}
.s-pillars .head{
padding:70px 90px 30px;
display:flex; justify-content:space-between; align-items:flex-end;
border-bottom:6px solid var(--ink);
}
.s-pillars .head h2{
margin:0; font-family:'Alfa Slab One', serif; font-size:120px; line-height:.9;
color:var(--blue); text-shadow:5px 5px 0 var(--red); text-transform:uppercase;
}
.s-pillars .head .lede{
max-width:560px; padding-left:50px;
font-family:'Archivo Narrow', sans-serif; font-weight:500;
font-size:28px; line-height:1.35; color:var(--ink);
border-left:4px solid var(--ink);
}
.s-pillars .grid{
display:grid; grid-template-columns:repeat(3, 1fr);
height: calc(100% - 320px);
}
.s-pillars .col{
padding:60px 50px 60px;
border-right:6px solid var(--ink);
display:flex; flex-direction:column;
overflow:hidden;
}
.s-pillars .col:last-child{border-right:none;}
.s-pillars .col .num{
font-family:'Alfa Slab One', serif; font-size:180px; line-height:.88;
color:var(--orange); text-shadow:5px 5px 0 var(--red);
}
.s-pillars .col .tag{
font-family:'DM Mono', monospace; font-size:24px; letter-spacing:.18em;
color:var(--ink); margin-top:14px; padding-top:18px;
border-top:3px solid var(--ink); align-self:flex-start;
}
.s-pillars .col h3{
margin:30px 0 20px; font-family:'Alfa Slab One', serif;
font-size:54px; line-height:1; color:var(--blue); text-transform:uppercase;
}
.s-pillars .col p{
margin:0; font-family:'Archivo Narrow', sans-serif; font-weight:500;
font-size:26px; line-height:1.4; color:var(--ink); max-width:430px;
}
.s-pillars .col.alt{ background:var(--blue);}
.s-pillars .col.alt .tag{color:var(--cream); border-top-color:var(--cream);}
.s-pillars .col.alt h3{color:var(--orange); text-shadow:4px 4px 0 var(--red);}
.s-pillars .col.alt p{color:var(--cream);}
/* ============ 05 — BIG STAT ============ */
.s-stat{ background:var(--blue); color:var(--cream);}
.s-stat .topbar{
position:absolute; top:0; left:0; right:0; height:90px;
border-bottom:6px solid var(--cream);
display:flex; align-items:center; justify-content:space-between;
padding:0 90px; color:var(--cream);
font-family:'DM Mono', monospace; letter-spacing:.18em; font-size:24px;
}
.s-stat .stat{
position:absolute; left:90px; right:90px; top:200px;
display:grid; grid-template-columns: 1fr 1fr; gap:80px; align-items:center;
}
.s-stat .num{
font-family:'Alfa Slab One', serif; font-size:540px; line-height:.82;
color:var(--orange);
text-shadow: 12px 12px 0 var(--red), 24px 24px 0 var(--red-deep);
letter-spacing:-.02em;
}
.s-stat .num sup{
font-size:130px; vertical-align:top; line-height:1;
color:var(--cream); text-shadow: 6px 6px 0 var(--red);
}
.s-stat .desc h3{
margin:0 0 30px; font-family:'Alfa Slab One', serif;
font-size:64px; line-height:1; color:var(--cream); text-transform:uppercase;
}
.s-stat .desc h3 .accent{ color:var(--orange);}
.s-stat .desc p{
margin:0; font-size:30px; line-height:1.4; color:var(--cream);
font-family:'Archivo Narrow', sans-serif; font-weight:500; max-width:640px;
}
.s-stat .desc .source{
margin-top:36px; font-family:'DM Mono', monospace; font-size:24px;
letter-spacing:.18em; color:var(--orange); padding-top:18px;
border-top:3px solid var(--cream); display:inline-block;
}
.s-stat .ribbon{
position:absolute; bottom:0; left:0; right:0; height:60px;
background:var(--orange); display:flex; align-items:center; gap:50px;
overflow:hidden; padding-left:90px;
font-family:'DM Mono', monospace; font-size:24px; letter-spacing:.22em;
color:var(--blue); font-weight:600;
border-top:6px solid var(--ink);
}
/* ============ 06 — DENSE LIST ============ */
.s-platform{ background:var(--paper);}
.s-platform .head{
padding:70px 90px 0;
display:flex; align-items:flex-start; justify-content:space-between; gap:60px;
}
.s-platform .head h2{
margin:0; font-family:'Alfa Slab One', serif; font-size:140px; line-height:.86;
color:var(--blue); text-shadow:6px 6px 0 var(--red); text-transform:uppercase;
}
.s-platform .head .lede{
max-width:560px; padding-top:24px;
font-family:'Archivo Narrow', sans-serif; font-weight:500;
font-size:28px; line-height:1.4; color:var(--ink);
border-top:6px solid var(--ink);
}
.s-platform .body{
padding:60px 90px 0;
display:grid; grid-template-columns: 1fr 1fr; column-gap:90px; row-gap:24px;
}
.s-platform .item{
display:grid; grid-template-columns:90px 1fr; gap:24px; align-items:start;
padding:20px 0; border-top:3px solid var(--ink);
}
.s-platform .item .n{
font-family:'Alfa Slab One', serif; font-size:60px; line-height:.9;
color:var(--orange); text-shadow:3px 3px 0 var(--red);
}
.s-platform .item h4{
margin:0 0 8px; font-family:'Alfa Slab One', serif;
font-size:30px; line-height:1; color:var(--blue); text-transform:uppercase;
}
.s-platform .item p{
margin:0; font-size:24px; line-height:1.4; color:var(--ink);
font-family:'Archivo Narrow', sans-serif; max-width:600px;
}
/* ============ 07 — QUOTE ============ */
.s-quote{ background:var(--orange); color:var(--blue);}
.s-quote .marks{
position:absolute; top:80px; left:120px;
font-family:'Alfa Slab One', serif; font-size:300px; line-height:.7;
color:var(--blue); text-shadow:8px 8px 0 var(--red);
opacity:.95;
}
.s-quote .quote{
position:absolute; left:120px; right:120px; top:380px;
font-family:'Alfa Slab One', serif; font-size:78px; line-height:1.08;
color:var(--blue); text-transform:uppercase;
text-wrap:pretty;
}
.s-quote .quote .em{ color:var(--cream); text-shadow:5px 5px 0 var(--red);}
.s-quote .attribution{
position:absolute; bottom:120px; left:120px; right:120px;
display:flex; justify-content:space-between; align-items:center; gap:40px;
}
.s-quote .who{ display:flex; align-items:center; gap:30px;}
.s-quote .avatar{
width:120px; height:120px; border-radius:50%;
background:var(--blue); border:6px solid var(--blue);
box-shadow:6px 6px 0 var(--red);
display:flex; align-items:center; justify-content:center;
color:var(--orange); font-family:'Alfa Slab One', serif; font-size:60px;
}
.s-quote .who .name{font-family:'Alfa Slab One', serif; font-size:38px; color:var(--blue); text-transform:uppercase; line-height:1;}
.s-quote .who .role{font-family:'DM Mono', monospace; font-size:24px; letter-spacing:.16em; color:var(--blue); margin-top:8px;}
.s-quote .stamp{
background:var(--blue); color:var(--orange);
padding:18px 32px; transform:rotate(-3deg);
border:5px solid var(--cream);
font-family:'Alfa Slab One', serif; font-size:28px; letter-spacing:.04em;
box-shadow:6px 6px 0 var(--red);
text-transform:uppercase;
}
/* ============ 08 — TIMELINE / ROADMAP ============ */
.s-timeline{ background:var(--cream);}
.s-timeline .head{ padding:70px 90px 30px;}
.s-timeline .head h2{
margin:0; font-family:'Alfa Slab One', serif; font-size:120px; line-height:.88;
color:var(--blue); text-shadow:5px 5px 0 var(--red); text-transform:uppercase;
}
.s-timeline .head .sub{
margin-top:18px; font-family:'Caveat Brush', cursive; color:var(--red);
font-size:64px; transform:rotate(-2deg); display:inline-block;
}
.s-timeline .track{
position:absolute; left:120px; right:120px; top:430px;
height:14px; background:var(--ink);
}
.s-timeline .nodes{
position:absolute; left:90px; right:90px; top:380px;
display:grid; grid-template-columns: repeat(4, 1fr); gap:30px;
}
.s-timeline .node{ position:relative; padding:0 30px;}
.s-timeline .node .dot{
width:60px; height:60px; border-radius:50%; background:var(--orange);
border:6px solid var(--ink); box-shadow:6px 6px 0 var(--red);
margin-bottom:36px;
}
.s-timeline .node.alt .dot{background:var(--blue);}
.s-timeline .node .when{
font-family:'DM Mono', monospace; font-size:24px; letter-spacing:.18em; color:var(--ink);
}
.s-timeline .node h4{
margin:8px 0 12px; font-family:'Alfa Slab One', serif;
font-size:38px; line-height:1; color:var(--blue); text-transform:uppercase;
}
.s-timeline .node p{
margin:0; font-size:24px; line-height:1.4; color:var(--ink);
font-family:'Archivo Narrow', sans-serif; max-width:340px;
}
.s-timeline .below{
position:absolute; left:120px; right:120px; top:780px;
display:grid; grid-template-columns:1fr 1fr 1fr; gap:30px;
}
.s-timeline .kpi{
border:5px solid var(--ink); padding:28px 30px; background:var(--paper);
}
.s-timeline .kpi .label{font-family:'DM Mono', monospace; font-size:24px; letter-spacing:.18em; color:var(--ink);}
.s-timeline .kpi .v{
margin-top:10px; font-family:'Alfa Slab One', serif; font-size:88px; line-height:.9;
color:var(--orange); text-shadow:4px 4px 0 var(--red);
}
.s-timeline .kpi.alt{background:var(--blue);}
.s-timeline .kpi.alt .label{color:var(--cream);}
.s-timeline .kpi.alt .v{color:var(--orange);}
/* ============ 09 — TWO-COLUMN COMPARE ============ */
.s-compare{ background:var(--paper);}
.s-compare .head{
padding:70px 90px 30px;
border-bottom:6px solid var(--ink);
}
.s-compare .head h2{
margin:0; font-family:'Alfa Slab One', serif; font-size:120px; line-height:.88;
color:var(--blue); text-shadow:5px 5px 0 var(--red); text-transform:uppercase;
}
.s-compare .head .sub{
margin-top:14px; font-family:'Archivo Narrow', sans-serif; font-weight:500;
font-size:28px; color:var(--ink); max-width:900px; line-height:1.4;
}
.s-compare .grid{
display:grid; grid-template-columns:1fr 1fr;
height: calc(100% - 290px);
}
.s-compare .side{ padding:60px 70px; display:flex; flex-direction:column;}
.s-compare .side.left{ background:var(--paper); border-right:6px solid var(--ink);}
.s-compare .side.right{ background:var(--blue); color:var(--cream);}
.s-compare .side .label{
font-family:'DM Mono', monospace; font-size:24px; letter-spacing:.22em; color:var(--ink);
padding-bottom:14px; border-bottom:4px solid var(--ink); align-self:flex-start;
}
.s-compare .side.right .label{ color:var(--cream); border-bottom-color:var(--cream);}
.s-compare .side h3{
margin:30px 0 30px; font-family:'Alfa Slab One', serif;
font-size:78px; line-height:.95; text-transform:uppercase;
color:var(--blue);
}
.s-compare .side.right h3{ color:var(--orange); text-shadow:5px 5px 0 var(--red);}
.s-compare .side ul{
list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:18px;
}
.s-compare .side li{
font-family:'Archivo Narrow', sans-serif; font-size:28px; line-height:1.35;
padding-left:48px; position:relative; color:var(--ink);
}
.s-compare .side.right li{ color:var(--cream);}
.s-compare .side li::before{
content:""; position:absolute; left:0; top:14px;
width:24px; height:24px; background:var(--red); border-radius:4px;
transform:rotate(45deg);
}
.s-compare .side.right li::before{ background:var(--orange);}
/* ============ 10 — CLOSING / THANK YOU ============ */
.s-close{ background:var(--blue); color:var(--cream);}
.s-close .frame{ position:absolute; inset:50px; border:6px solid var(--cream);}
.s-close .top{
position:absolute; top:100px; left:100px; right:100px;
display:flex; justify-content:space-between; align-items:center;
font-family:'DM Mono', monospace; letter-spacing:.22em; color:var(--cream); font-size:24px;
}
.s-close .center{
position:absolute; left:100px; right:100px; top:260px;
}
.s-close .center .pre{
font-family:'Caveat Brush', cursive; color:var(--orange);
font-size:96px; transform:rotate(-3deg); display:inline-block;
}
.s-close .center h1{
margin:10px 0 0; font-family:'Alfa Slab One', serif;
font-size:260px; line-height:.86; color:var(--orange);
text-shadow: 10px 10px 0 var(--red), 20px 20px 0 var(--red-deep);
text-transform:uppercase;
}
.s-close .row{
margin-top:60px;
display:grid; grid-template-columns: auto 1fr; gap:40px; align-items:center;
}
.s-close .cta{
background:var(--orange); color:var(--blue);
padding:24px 44px; font-family:'Alfa Slab One', serif;
font-size:48px; text-transform:uppercase;
border:6px solid var(--cream);
box-shadow: 10px 10px 0 var(--red);
letter-spacing:.02em;
}
.s-close .url{
font-family:'Alfa Slab One', serif; font-size:46px; color:var(--cream);
text-transform:uppercase; letter-spacing:.02em;
}
.s-close .footrow{
position:absolute; bottom:120px; left:100px; right:100px;
display:flex; justify-content:space-between; align-items:flex-end;
}
.s-close .signoff{
font-family:'DM Mono', monospace; font-size:26px; letter-spacing:.2em; color:var(--cream);
}
.s-close .signoff .b{color:var(--orange);}
.s-close .stamp{
width:200px; height:200px; border-radius:50%;
background:var(--cream); color:var(--blue);
border:6px solid var(--orange);
display:flex; align-items:center; justify-content:center; flex-direction:column;
text-align:center; font-family:'Alfa Slab One', serif; line-height:1;
transform:rotate(-9deg);
box-shadow:8px 8px 0 var(--red);
}
.s-close .stamp .big{font-size:54px;}
.s-close .stamp .small{font-size:24px; letter-spacing:.18em; margin-top:8px; font-family:'DM Mono', monospace;}
</style>
</head>
<body>
<script type="application/json" id="speaker-notes">
[
"Title slide. Use to open any deck — set the project name, the audience, and the date. The big stamped headline is the brand voice; the subtitle below it carries the descriptor.",
"Table of contents. Drop in the four to eight chapters of your deck. Page numbers on the right help in printed handouts.",
"Big idea slide. Use this for the one sentence you want the audience to leave the room remembering. One per deck — keep it short.",
"Three-column overview. Use to introduce three pillars, three workstreams, three offerings. The middle column is highlighted blue to anchor the eye.",
"Hero stat. Pair one giant number with a one-line headline and a single source. Don't crowd it — the number is the slide.",
"Detailed list. High information density: eight items in two columns. Use for a feature breakdown, an agenda, a launch checklist.",
"Pull quote. Use to break up data with a human voice — a customer testimonial, a research interview, a leadership quote.",
"Timeline / roadmap. Four phases on the track plus three KPI cards beneath. Edit dates and milestones to fit your plan.",
"Two-column compare. Use for before/after, current/proposed, problem/solution. The blue side is the recommendation.",
"Closing slide. Big thanks, a call to action, and contact details. Always end the deck here."
]
</script>
<deck-stage>
<!-- ============ 01 — COVER ============ -->
<section class="s-cover grain" data-screen-label="01 Cover">
<div class="frame"></div>
<div class="meta-top">
<div class="pill">Q2 · 2026</div>
<div>STRATEGIC REVIEW · INTERNAL</div>
<div class="pill">VOL. 01</div>
</div>
<div class="center">
<div class="title">QUARTERLY<br/>REVIEW</div>
<div class="row2">
<div class="for">a</div>
<div class="sub">PRESENTATION TEMPLATE</div>
</div>
</div>
<div class="footline">
<span>PREPARED BY THE TEAM</span>
<span class="dot"></span>
<span>MAY 2026</span>
<span class="dot"></span>
<span>VERSION 01</span>
</div>
</section>
<!-- ============ 02 — TABLE OF CONTENTS ============ -->
<section class="s-toc grain" data-screen-label="02 Contents">
<div class="head">
<h2>WHAT'S<br/>INSIDE.</h2>
<div class="meta">
<div class="big">CONTENTS</div>
<div>SECTION GUIDE</div>
<div>02 / 10</div>
</div>
</div>
<div class="list">
<div class="row"><div class="n">01</div><div class="t">The Big Idea</div><div class="pg">PG 03</div></div>
<div class="row"><div class="n">02</div><div class="t">Three Pillars</div><div class="pg">PG 04</div></div>
<div class="row"><div class="n">03</div><div class="t">By the Numbers</div><div class="pg">PG 05</div></div>
<div class="row"><div class="n">04</div><div class="t">The Full Plan</div><div class="pg">PG 06</div></div>
<div class="row"><div class="n">05</div><div class="t">Voice of the Customer</div><div class="pg">PG 07</div></div>
<div class="row"><div class="n">06</div><div class="t">Roadmap</div><div class="pg">PG 08</div></div>
<div class="row"><div class="n">07</div><div class="t">Where We Land</div><div class="pg">PG 09</div></div>
<div class="row"><div class="n">08</div><div class="t">Next Steps</div><div class="pg">PG 10</div></div>
</div>
</section>
<!-- ============ 03 — BIG IDEA ============ -->
<section class="s-manifesto grain" data-screen-label="03 Big Idea">
<div class="topbar">
<div>— THE BIG IDEA —</div>
<div>03 / 10</div>
<div>ONE SENTENCE</div>
</div>
<div class="body">
<div class="kicker">★ ★ ★ OUR THESIS ★ ★ ★</div>
<h1>
The product gets <span class="scriptline">simpler</span><br/>
as the team gets <span class="y">braver</span> —<br/>
not the other way around.
</h1>
<div class="underline"></div>
</div>
<div class="footrow">
<div>— PARAGRAPH 01 —</div>
<div>SET IN ALFA SLAB</div>
</div>
</section>
<!-- ============ 04 — THREE COLUMNS ============ -->
<section class="s-pillars grain" data-screen-label="04 Pillars">
<div class="head">
<h2>THREE<br/>PRIORITIES.</h2>
<div class="lede">The work falls into three buckets this quarter. Each has a clear owner, a clear deliverable, and a clear way to know we are done.</div>
</div>
<div class="grid">
<div class="col">
<div class="num">01</div>
<div class="tag">— FOCUS —</div>
<h3>Ship the<br/>core flow.</h3>
<p>Cut three legacy paths and double down on the one that drives ninety percent of activations.</p>
</div>
<div class="col alt">
<div class="num">02</div>
<div class="tag">— LEARN —</div>
<h3>Talk to<br/>ten teams.</h3>
<p>Standing weekly research with target customers. Findings briefed every Friday in a one-page memo.</p>
</div>
<div class="col">
<div class="num">03</div>
<div class="tag">— SHIP —</div>
<h3>One launch,<br/>not five.</h3>
<p>Combine the four small drops on the calendar into a single, well-told release with shared positioning.</p>
</div>
</div>
</section>
<!-- ============ 05 — BIG STAT ============ -->
<section class="s-stat grain" data-screen-label="05 Stat">
<div class="topbar">
<div>— BY THE NUMBERS —</div>
<div>05 / 10</div>
<div>SECTION 02 / DATA</div>
</div>
<div class="stat">
<div class="num">63<sup>%</sup></div>
<div class="desc">
<h3>of customers<br/><span class="accent">recommend us</span> after onboarding.</h3>
<p>Net promoter scores climbed eighteen points after we shipped the redesigned first-run experience in March, the largest single-quarter jump on record for the product.</p>
<div class="source">SOURCE — INTERNAL NPS, Q1 2026</div>
</div>
</div>
<div class="ribbon">
<span>★ FOCUS</span>
<span>★ LEARN</span>
<span>★ SHIP</span>
<span>★ FOCUS</span>
<span>★ LEARN</span>
<span>★ SHIP</span>
</div>
</section>
<!-- ============ 06 — DENSE LIST ============ -->
<section class="s-platform grain" data-screen-label="06 Plan">
<div class="head">
<h2>THE FULL<br/>PLAN.</h2>
<div class="lede">Eight workstreams, costed and owned. Each links to a longer brief in the appendix; team leads are listed in the back of the book.</div>
</div>
<div class="body">
<div class="item">
<div class="n">01</div>
<div>
<h4>Onboarding refresh</h4>
<p>Rebuild the first-run experience with progressive disclosure and a single primary action per screen.</p>
</div>
</div>
<div class="item">
<div class="n">02</div>
<div>
<h4>Pricing simplification</h4>
<p>Collapse the seven plans into three. Move add-ons behind a clearer feature matrix.</p>
</div>
</div>
<div class="item">
<div class="n">03</div>
<div>
<h4>Mobile parity</h4>
<p>Bring the four most-used desktop flows to mobile by end of quarter, including offline drafts.</p>
</div>
</div>
<div class="item">
<div class="n">04</div>
<div>
<h4>Self-serve setup</h4>
<p>Reduce time-to-first-value from three days to thirty minutes for teams under fifty seats.</p>
</div>
</div>
<div class="item">
<div class="n">05</div>
<div>
<h4>Trust & security</h4>
<p>Ship audit logs, role-based access, and SSO for all paid tiers. SOC 2 Type II by year-end.</p>
</div>
</div>
<div class="item">
<div class="n">06</div>
<div>
<h4>Performance budget</h4>
<p>Cut median page load by forty percent. Set a hard ceiling and wire it into the release pipeline.</p>
</div>
</div>
<div class="item">
<div class="n">07</div>
<div>
<h4>Integrations push</h4>
<p>Native connectors for the top five tools customers ask for, plus a public API for the long tail.</p>
</div>
</div>
<div class="item">
<div class="n">08</div>
<div>
<h4>Brand refresh</h4>
<p>New marketing site, sharper category positioning, and a unified visual system across surfaces.</p>
</div>
</div>
</div>
</section>
<!-- ============ 07 — QUOTE ============ -->
<section class="s-quote grain" data-screen-label="07 Quote">
<div class="marks">"</div>
<div class="quote">
The new onboarding cut our setup time<br/>
from three days to thirty minutes —<br/>
<span class="em">we shipped the same week.</span>
</div>
<div class="attribution">
<div class="who">
<div class="avatar">M</div>
<div>
<div class="name">Maya Okonkwo</div>
<div class="role">— HEAD OF OPS, NORTH STAR LABS —</div>
</div>
</div>
<div class="stamp">★ Voice of the Customer ★</div>
</div>
</section>
<!-- ============ 08 — TIMELINE ============ -->
<section class="s-timeline grain" data-screen-label="08 Roadmap">
<div class="head">
<h2>THE<br/>ROADMAP.</h2>
<div class="sub">— a plan, on a clock —</div>
</div>
<div class="track"></div>
<div class="nodes">
<div class="node">
<div class="dot"></div>
<div class="when">MAY</div>
<h4>Kickoff</h4>
<p>Charter the workstreams, lock owners, and publish the shared scorecard.</p>
</div>
<div class="node alt">
<div class="dot"></div>
<div class="when">JUNE</div>
<h4>Beta opens</h4>
<p>Onboard the first ten design partners on the new core flow.</p>
</div>
<div class="node">
<div class="dot"></div>
<div class="when">AUGUST</div>
<h4>Launch</h4>
<p>Public release, marketing site refresh, and sales enablement complete.</p>
</div>
<div class="node alt">
<div class="dot"></div>
<div class="when">OCTOBER</div>
<h4>Scale</h4>
<p>Roll the changes to the long tail and retire the legacy paths for good.</p>
</div>
</div>
<div class="below">
<div class="kpi">
<div class="label">— TIME-TO-VALUE —</div>
<div class="v">30m</div>
</div>
<div class="kpi alt">
<div class="label">— ACTIVATION RATE —</div>
<div class="v">+24%</div>
</div>
<div class="kpi">
<div class="label">— REVENUE LIFT —</div>
<div class="v">$1.4M</div>
</div>
</div>
</section>
<!-- ============ 09 — TWO-COLUMN COMPARE ============ -->
<section class="s-compare grain" data-screen-label="09 Compare">
<div class="head">
<h2>WHERE<br/>WE LAND.</h2>
<div class="sub">A side-by-side of where the product is today and where this plan takes us by the end of the year.</div>
</div>
<div class="grid">
<div class="side left">
<div class="label">— TODAY —</div>
<h3>Capable, but cluttered.</h3>
<ul>
<li>Three-day median time-to-value for new teams.</li>
<li>Seven pricing plans with overlapping feature sets.</li>
<li>Mobile parity at sixty percent of desktop flows.</li>
<li>Onboarding NPS sits at forty-five points.</li>
</ul>
</div>
<div class="side right">
<div class="label">— END OF YEAR —</div>
<h3>Sharper, faster, fewer.</h3>
<ul>
<li>Thirty-minute self-serve setup, no human required.</li>
<li>Three pricing plans with a clear feature matrix.</li>
<li>Full mobile parity, plus offline drafts.</li>
<li>Onboarding NPS targeted at sixty-three points.</li>
</ul>
</div>
</div>
</section>
<!-- ============ 10 — CLOSE ============ -->
<section class="s-close grain" data-screen-label="10 Close">
<div class="frame"></div>
<div class="top">
<div>— END OF DECK —</div>
<div>★ THANK YOU ★</div>
<div>10 / 10</div>
</div>
<div class="center">
<div class="pre">over to you —</div>
<h1 style="font-size: 230px">QUESTIONS?</h1>
<div class="row">
<div class="cta">LET'S TALK</div>
<div class="url">team@company.com</div>
</div>
</div>
<div class="footrow">
<div class="signoff">
PREPARED BY <span class="b">THE PRODUCT TEAM</span><br/>
★ MAY 2026 ★ INTERNAL DRAFT
</div>
<div class="stamp">
<div class="big">END</div>
<div class="small">— V. 01 —</div>
</div>
</div>
</section>
</deck-stage>
</body>
</html>
MIT License
Copyright (c) 2026 Zara Zhang
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
{
"slug": "zhangzara-peoples-platform",
"name": "People's Platform (Block & Bold)",
"tagline": "Activist poster energy: blue, orange, red on cream, with Alfa Slab + Caveat Brush.",
"mood": [
"activist",
"loud",
"graphic",
"honest"
],
"occasion": [
"cultural commentary",
"manifesto",
"community / civic deck",
"design talk",
"campaign pitch",
"founder vision"
],
"tone": [
"punchy",
"direct",
"expressive",
"warm-bold"
],
"formality": "medium-low",
"density": "medium-high",
"palette": {
"blue": "#2C2CDC",
"orange": "#F2A03A",
"red": "#E83A2A",
"cream": "#F4E9D6",
"ink": "#0E0E14",
"description": "saturated political-poster palette: cobalt blue, signal orange, warning red, on warm cream with deep ink"
},
"typography": {
"display": "Alfa Slab One",
"secondary": "Archivo Narrow",
"script": "Caveat Brush",
"mono": "DM Mono",
"style": "heavy slab display + narrow grotesk + brush script + mono; protest-poster typographic stack"
},
"scheme": "light",
"best_for": "Anything that should feel honest, loud, and graphic: cultural commentary, manifestos, civic and community decks, design talks, campaign pitches. Excellent for founder-vision moments, mission statements, or any deck — including across industries — that wants protest-poster energy instead of corporate polish.",
"avoid_for": "Contexts where institutional restraint is the actual goal — the saturated political-poster palette commits hard to expressive energy.",
"slide_count": 10,
"navigation": "deck-stage runtime (arrow keys, space, PgUp/PgDn, Home/End)",
"source": "https://github.com/zarazhangrui/beautiful-html-templates/tree/main/templates/peoples-platform"
}