项目文件夹

文件
wehub-resource-sync 070959e133
landing-page-staging / Deploy landing page to staging (push) Has been skipped
landing-page-ci / Validate landing page (push) Failing after 4s
visual-baseline / Capture visual baselines (push) Has been cancelled
bake-plugin-previews / Bake plugin previews (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:00:47 +08:00

757 行
38 KiB
HTML

<!DOCTYPE html>
<html lang="en" data-themes="tokyo-night,dracula,catppuccin-mocha,nord,corporate-clean">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Run a Live AI Product Demo like a Founding DevRel Lead - AI literacy</title>
<style>/* html-ppt :: shared webfonts (only families actually used by this deck) */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');
</style>
<style>/* html-ppt :: base.css — reset + shared tokens + layout primitives */
/* Default tokens. Themes in assets/themes/*.css override the :root block. */
:root {
--bg: #ffffff;
--bg-soft: #f7f7f8;
--surface: #ffffff;
--surface-2: #f2f2f4;
--border: rgba(0,0,0,.08);
--border-strong: rgba(0,0,0,.16);
--text-1: #111216;
--text-2: #55596a;
--text-3: #8a8f9e;
--accent: #3b6cff;
--accent-2: #2f9e8f;
--accent-3: #1d4ed8;
--good: #1aaf6c;
--warn: #f5a524;
--bad: #e0445a;
--grad: linear-gradient(135deg,var(--accent),var(--accent-3));
--grad-soft: linear-gradient(135deg,#eef2ff,#e8f0fe);
--radius: 18px;
--radius-sm: 12px;
--radius-lg: 26px;
--shadow: 0 10px 30px rgba(18,24,40,.08), 0 2px 6px rgba(18,24,40,.04);
--shadow-lg: 0 24px 60px rgba(18,24,40,.14), 0 6px 16px rgba(18,24,40,.06);
--font-sans: 'IBM Plex Sans',-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif;
--font-serif: Georgia,serif;
--font-mono: 'JetBrains Mono',SFMono-Regular,Menlo,monospace;
--font-display: var(--font-sans);
--letter-tight: -.03em;
--letter-normal: -.01em;
--ease: cubic-bezier(.16,1,.3,1);
}
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text-1);
font-family:var(--font-sans);font-weight:400;line-height:1.6;
-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
letter-spacing:var(--letter-normal)}
img,svg,video{max-width:100%;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
code,kbd,pre,samp{font-family:var(--font-mono)}
/* ================= SLIDE SYSTEM ================= */
.deck{position:relative;width:100vw;height:100vh;overflow:hidden;background:var(--bg)}
.slide{
position:absolute;inset:0;
display:flex;flex-direction:column;justify-content:center;
padding:72px 96px;
box-sizing:border-box;
opacity:0;pointer-events:none;
transition:opacity .5s var(--ease), transform .5s var(--ease);
transform:translateX(30px);
overflow:hidden;
}
.slide.is-active{opacity:1;pointer-events:auto;transform:translateX(0);z-index:2}
.slide.is-prev{transform:translateX(-30px)}
/* single-page standalone (used when a layout file is opened directly) */
body.single .slide{position:relative;width:100vw;height:100vh;opacity:1;transform:none;pointer-events:auto}
/* ================= TYPOGRAPHY ================= */
.eyebrow{font-size:13px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--text-3)}
.kicker{font-size:14px;font-weight:600;color:var(--accent);letter-spacing:.08em;text-transform:uppercase}
h1.title,.h1{font-family:var(--font-display);font-size:72px;line-height:1.05;font-weight:800;letter-spacing:var(--letter-tight);margin:0 0 18px;color:var(--text-1)}
h2.title,.h2{font-family:var(--font-display);font-size:54px;line-height:1.1;font-weight:700;letter-spacing:var(--letter-tight);margin:0 0 14px}
h3,.h3{font-size:32px;line-height:1.2;font-weight:600;letter-spacing:var(--letter-normal);margin:0 0 10px}
h4,.h4{font-size:22px;line-height:1.3;font-weight:600;margin:0 0 8px}
.lede{font-size:22px;line-height:1.55;color:var(--text-2);font-weight:400;max-width:62ch}
.dim{color:var(--text-2)}
.dim2{color:var(--text-3)}
.mono{font-family:var(--font-mono)}
.serif{font-family:var(--font-serif)}
.gradient-text{background:var(--grad);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent}
/* ================= LAYOUT PRIMITIVES ================= */
.stack>*+*{margin-top:14px}
.row{display:flex;gap:24px;align-items:center}
.row.wrap{flex-wrap:wrap}
.grid{display:grid;gap:24px}
.g2{grid-template-columns:repeat(2,1fr)}
.g3{grid-template-columns:repeat(3,1fr)}
.g4{grid-template-columns:repeat(4,1fr)}
.center{display:flex;align-items:center;justify-content:center;text-align:center}
.fill{flex:1}
.sp-t{padding-top:24px}.sp-b{padding-bottom:24px}
.mt-s{margin-top:8px}.mt-m{margin-top:18px}.mt-l{margin-top:32px}
.mb-s{margin-bottom:8px}.mb-m{margin-bottom:18px}.mb-l{margin-bottom:32px}
/* ================= CARDS ================= */
.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
padding:26px 28px;box-shadow:var(--shadow);position:relative;overflow:hidden}
.card-soft{background:var(--surface-2);border:1px solid var(--border)}
.card-outline{background:transparent;border:1.5px solid var(--border-strong);box-shadow:none}
.card-accent{background:var(--surface);border-top:3px solid var(--accent)}
.card-hover{transition:transform .3s var(--ease),box-shadow .3s var(--ease)}
.card-hover:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.pill{display:inline-block;padding:4px 12px;border-radius:999px;font-size:12px;font-weight:500;
background:var(--surface-2);color:var(--text-2);border:1px solid var(--border)}
.pill-accent{background:color-mix(in srgb,var(--accent) 12%,transparent);color:var(--accent);border-color:color-mix(in srgb,var(--accent) 28%,transparent)}
/* ================= BARS / DIVIDERS ================= */
.divider{height:1px;background:var(--border);width:100%}
.divider-accent{height:3px;width:72px;background:var(--accent);border-radius:2px}
/* ================= CHROME (header/footer/progress) ================= */
.deck-header{position:absolute;top:24px;left:40px;right:40px;display:flex;align-items:center;justify-content:space-between;
font-size:12px;color:var(--text-3);letter-spacing:.12em;text-transform:uppercase;z-index:10;pointer-events:none}
.deck-footer{position:absolute;bottom:44px;left:40px;right:40px;display:flex;align-items:center;justify-content:space-between;
font-size:12px;color:var(--text-3);z-index:10;pointer-events:none}
.slide-number::before{content:attr(data-current)}
.slide-number::after{content:" / " attr(data-total)}
.progress-bar{position:fixed;left:0;right:0;bottom:0;height:3px;background:transparent;z-index:20}
.progress-bar > span{display:block;height:100%;width:0;background:var(--accent);transition:width .3s var(--ease)}
/* ================= PRESENTER / OVERVIEW ================= */
.notes{display:none!important}
.notes-overlay{position:fixed;inset:auto 0 0 0;max-height:42vh;background:rgba(20,22,30,.95);color:#e8ebf4;
padding:20px 32px;font-size:16px;line-height:1.6;border-top:1px solid rgba(255,255,255,.1);transform:translateY(100%);
transition:transform .3s var(--ease);z-index:40;overflow:auto;font-family:var(--font-sans)}
.notes-overlay.open{transform:translateY(0)}
.overview{position:fixed;inset:0;background:rgba(10,12,18,.92);backdrop-filter:blur(12px);z-index:50;
display:none;padding:40px;overflow:auto}
.overview.open{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;align-content:start}
.overview .thumb{background:var(--surface);border:1px solid var(--border);border-radius:12px;
aspect-ratio:16/9;overflow:hidden;cursor:pointer;position:relative;color:var(--text-1);padding:16px;
font-size:11px;transition:transform .2s var(--ease)}
.overview .thumb:hover{transform:scale(1.04)}
.overview .thumb .n{position:absolute;top:8px;left:10px;font-weight:700;font-size:14px;color:var(--text-3)}
.overview .thumb .t{position:absolute;bottom:10px;left:14px;right:14px;font-weight:600;color:var(--text-1)}
/* ================= PRESENTER VIEW ================= */
/* Presenter view opens in a separate popup window (S key).
* All presenter styles are self-contained in the popup HTML generated by runtime.js.
* The audience window (this file) is NOT affected — it stays as normal deck view.
* Only the .notes class below is needed to hide speaker notes from audience. */
/* ================= UTILITY ================= */
.hidden{display:none!important}
.nowrap{white-space:nowrap}
.tr{text-align:right}.tc{text-align:center}.tl{text-align:left}
.uppercase{text-transform:uppercase;letter-spacing:.12em}
/* ================= PRINT ================= */
@media print{
.slide{position:relative;opacity:1!important;transform:none!important;page-break-after:always;height:100vh}
.deck-header,.deck-footer,.progress-bar,.notes-overlay,.overview{display:none!important}
}
</style>
<style data-theme="tokyo-night">/* theme: tokyo-night */
:root{
--bg:#1a1b26;--bg-soft:#16161e;--surface:#24283b;--surface-2:#2f334d;
--border:rgba(192,202,245,.12);--border-strong:rgba(192,202,245,.24);
--text-1:#c0caf5;--text-2:#a9b1d6;--text-3:#8089b8;
--accent:#7aa2f7;--accent-2:#bb9af7;--accent-3:#7dcfff;
--good:#9ece6a;--warn:#e0af68;--bad:#f7768e;
--grad:linear-gradient(135deg,#7aa2f7,#7dcfff);
--grad-soft:linear-gradient(135deg,#24283b,#2f334d);
--radius:12px;--radius-sm:8px;--radius-lg:20px;
--shadow:0 1px 0 rgba(192,202,245,.06) inset;
--shadow-lg:0 18px 44px rgba(0,0,0,.5);
--font-sans:'IBM Plex Sans',sans-serif;
}
</style>
<style>/* html-ppt :: animations.css
* Apply by adding class="anim-<name>" or data-anim="<name>".
* Durations are deliberately snappy; tweak --anim-dur per element.
*/
:root{--anim-dur:.7s;--anim-ease:cubic-bezier(.16,1,.3,1)}
/* ---------- FADE DIRECTIONALS ---------- */
@keyframes kf-fade-up{from{opacity:0;transform:translateY(32px)}to{opacity:1;transform:none}}
@keyframes kf-fade-down{from{opacity:0;transform:translateY(-32px)}to{opacity:1;transform:none}}
@keyframes kf-fade-left{from{opacity:0;transform:translateX(-40px)}to{opacity:1;transform:none}}
@keyframes kf-fade-right{from{opacity:0;transform:translateX(40px)}to{opacity:1;transform:none}}
.anim-fade-up{animation:kf-fade-up var(--anim-dur) var(--anim-ease) both}
.anim-fade-down{animation:kf-fade-down var(--anim-dur) var(--anim-ease) both}
.anim-fade-left{animation:kf-fade-left var(--anim-dur) var(--anim-ease) both}
.anim-fade-right{animation:kf-fade-right var(--anim-dur) var(--anim-ease) both}
/* ---------- RISE / DROP / ZOOM / BLUR / GLITCH ---------- */
@keyframes kf-rise{from{opacity:0;transform:translateY(60px) scale(.97);filter:blur(6px)}to{opacity:1;transform:none;filter:none}}
@keyframes kf-drop{from{opacity:0;transform:translateY(-60px) scale(.97)}to{opacity:1;transform:none}}
@keyframes kf-zoom{0%{opacity:0;transform:scale(.6)}60%{transform:scale(1.04)}100%{opacity:1;transform:scale(1)}}
@keyframes kf-blur{from{opacity:0;filter:blur(18px)}to{opacity:1;filter:none}}
@keyframes kf-glitch{0%{opacity:0;transform:translateX(0);clip-path:inset(0 0 0 0)}
20%{opacity:1;transform:translateX(-6px);clip-path:inset(20% 0 30% 0)}
40%{transform:translateX(4px);clip-path:inset(50% 0 10% 0)}
60%{transform:translateX(-3px);clip-path:inset(10% 0 60% 0)}
80%{transform:translateX(2px);clip-path:inset(0 0 0 0)}
100%{opacity:1;transform:none}}
.anim-rise-in{animation:kf-rise .9s var(--anim-ease) both}
.anim-drop-in{animation:kf-drop .8s var(--anim-ease) both}
.anim-zoom-pop{animation:kf-zoom .7s cubic-bezier(.22,1.3,.36,1) both}
.anim-blur-in{animation:kf-blur .8s var(--anim-ease) both}
.anim-glitch-in{animation:kf-glitch .8s steps(5,end) both}
/* ---------- TYPEWRITER ---------- */
.anim-typewriter{display:inline-block;overflow:hidden;white-space:nowrap;border-right:2px solid currentColor;
width:0;animation:kf-type 2.4s steps(40,end) forwards, kf-caret 1s step-end infinite}
@keyframes kf-type{to{width:100%}}
@keyframes kf-caret{50%{border-color:transparent}}
/* ---------- GLOW / SHIMMER / GRADIENT-FLOW ---------- */
@keyframes kf-neon{0%,100%{text-shadow:0 0 8px var(--accent),0 0 20px var(--accent)}
50%{text-shadow:0 0 16px var(--accent),0 0 40px var(--accent),0 0 80px var(--accent)}}
.anim-neon-glow{animation:kf-neon 2s ease-in-out infinite}
.anim-shimmer-sweep{position:relative;overflow:hidden}
.anim-shimmer-sweep::after{content:"";position:absolute;inset:0;
background:linear-gradient(110deg,transparent 40%,rgba(255,255,255,.55) 50%,transparent 60%);
transform:translateX(-100%);animation:kf-shimmer 2.4s var(--anim-ease) infinite}
@keyframes kf-shimmer{to{transform:translateX(100%)}}
.anim-gradient-flow{background:linear-gradient(90deg,var(--accent),var(--accent-2,var(--accent)),var(--accent-3,var(--accent)),var(--accent));
background-size:300% 100%;-webkit-background-clip:text;background-clip:text;color:transparent;-webkit-text-fill-color:transparent;
animation:kf-gradflow 4s linear infinite}
@keyframes kf-gradflow{to{background-position:300% 0}}
/* ---------- STAGGER LIST ---------- */
.anim-stagger-list > *{opacity:0;animation:kf-rise .65s var(--anim-ease) both}
.anim-stagger-list > *:nth-child(1){animation-delay:.05s}
.anim-stagger-list > *:nth-child(2){animation-delay:.15s}
.anim-stagger-list > *:nth-child(3){animation-delay:.25s}
.anim-stagger-list > *:nth-child(4){animation-delay:.35s}
.anim-stagger-list > *:nth-child(5){animation-delay:.45s}
.anim-stagger-list > *:nth-child(6){animation-delay:.55s}
.anim-stagger-list > *:nth-child(7){animation-delay:.65s}
.anim-stagger-list > *:nth-child(8){animation-delay:.75s}
.anim-stagger-list > *:nth-child(n+9){animation-delay:.85s}
/* ---------- COUNTER-UP (JS-driven, marker class only) ---------- */
.counter{font-variant-numeric:tabular-nums}
/* ---------- SVG PATH DRAW ---------- */
.anim-path-draw path,.anim-path-draw line,.anim-path-draw polyline,.anim-path-draw circle,.anim-path-draw rect{
stroke-dasharray:1000;stroke-dashoffset:1000;animation:kf-draw 2s var(--anim-ease) forwards}
@keyframes kf-draw{to{stroke-dashoffset:0}}
/* ---------- PARALLAX TILT (hover) ---------- */
.anim-parallax-tilt{transform-style:preserve-3d;transition:transform .4s var(--anim-ease)}
.anim-parallax-tilt:hover{transform:perspective(900px) rotateX(6deg) rotateY(-8deg) translateZ(10px)}
/* ---------- CARD FLIP 3D ---------- */
@keyframes kf-flip{from{transform:perspective(1200px) rotateY(-90deg);opacity:0}
to{transform:perspective(1200px) rotateY(0);opacity:1}}
.anim-card-flip-3d{animation:kf-flip .9s var(--anim-ease) both;transform-style:preserve-3d;backface-visibility:hidden}
/* ---------- CUBE ROTATE 3D ---------- */
@keyframes kf-cube{from{transform:perspective(1200px) rotateX(20deg) rotateY(-90deg) translateZ(-200px);opacity:0}
to{transform:perspective(1200px) rotateX(0) rotateY(0) translateZ(0);opacity:1}}
.anim-cube-rotate-3d{animation:kf-cube 1s var(--anim-ease) both}
/* ---------- PAGE TURN 3D ---------- */
@keyframes kf-pageturn{from{transform:perspective(1600px) rotateY(-85deg);transform-origin:left center;opacity:0}
to{transform:perspective(1600px) rotateY(0);opacity:1}}
.anim-page-turn-3d{animation:kf-pageturn 1s var(--anim-ease) both;transform-origin:left center}
/* ---------- PERSPECTIVE ZOOM ---------- */
@keyframes kf-pzoom{from{opacity:0;transform:perspective(1400px) translateZ(-400px) rotateX(12deg)}
to{opacity:1;transform:none}}
.anim-perspective-zoom{animation:kf-pzoom 1s var(--anim-ease) both}
/* ---------- MARQUEE SCROLL ---------- */
.anim-marquee-scroll{display:flex;gap:48px;white-space:nowrap;animation:kf-marquee 20s linear infinite}
@keyframes kf-marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
/* ---------- KEN BURNS ---------- */
@keyframes kf-kenburns{0%{transform:scale(1) translate(0,0)}100%{transform:scale(1.15) translate(-2%,-1%)}}
.anim-kenburns{animation:kf-kenburns 14s ease-in-out infinite alternate}
/* ---------- CONFETTI BURST (pseudo — pure CSS sparkles) ---------- */
.anim-confetti-burst{position:relative}
.anim-confetti-burst::before,.anim-confetti-burst::after{
content:"";position:absolute;top:50%;left:50%;width:8px;height:8px;border-radius:50%;
background:var(--accent);box-shadow:
20px -30px 0 var(--accent-2,var(--accent)),-25px -20px 0 var(--accent-3,var(--accent)),
30px 20px 0 var(--good,#1aaf6c),-30px 25px 0 var(--warn,#f5a524),
40px -10px 0 var(--bad,#e0445a),-45px 0 0 var(--accent),
10px 40px 0 var(--accent-2,var(--accent)),-15px -40px 0 var(--accent-3,var(--accent));
opacity:0;animation:kf-confetti 1.2s var(--anim-ease) forwards}
.anim-confetti-burst::after{animation-delay:.15s;transform:rotate(45deg)}
@keyframes kf-confetti{0%{opacity:0;transform:scale(.2)}30%{opacity:1}100%{opacity:0;transform:scale(2.2)}}
/* ---------- SPOTLIGHT ---------- */
@keyframes kf-spot{0%{clip-path:circle(0% at 50% 50%)}100%{clip-path:circle(140% at 50% 50%)}}
.anim-spotlight{animation:kf-spot 1.1s var(--anim-ease) both}
/* ---------- MORPH SHAPE (SVG) ---------- */
.anim-morph-shape path{animation:kf-morph 6s ease-in-out infinite alternate}
@keyframes kf-morph{0%{d:path("M60,120 Q120,20 180,120 T300,120")}
100%{d:path("M60,120 Q120,220 180,120 T300,120")}}
/* ---------- RIPPLE REVEAL ---------- */
@keyframes kf-ripple{0%{clip-path:circle(0% at 20% 80%);opacity:.4}
100%{clip-path:circle(160% at 20% 80%);opacity:1}}
.anim-ripple-reveal{animation:kf-ripple 1.2s var(--anim-ease) both}
/* reduced motion */
@media (prefers-reduced-motion: reduce){
[class*="anim-"]{animation:none!important;transition:none!important}
}
</style>
<style>/* tpl-presenter-mode-reveal · scoped styles
* Presenter-mode demo deck. Inherits tokens from active theme.
* Minimal overrides — focus is on content + notes structure.
*/
.tpl-presenter-mode-reveal .slide {
padding: 72px 96px;
}
.tpl-presenter-mode-reveal .kicker {
font-family: var(--font-mono, monospace);
font-size: 12px;
color: var(--accent, #7aa2f7);
letter-spacing: 0.16em;
text-transform: uppercase;
margin: 0 0 20px 0;
font-weight: 500;
}
.tpl-presenter-mode-reveal .h1 {
font-size: clamp(40px, 5.1vw, 70px);
line-height: 1.08;
letter-spacing: -0.03em;
font-weight: 700;
margin: 0 0 24px 0;
}
.tpl-presenter-mode-reveal .h2 {
font-size: clamp(32px, 3.6vw, 48px);
line-height: 1.12;
letter-spacing: -0.022em;
font-weight: 700;
margin: 0 0 28px 0;
}
.tpl-presenter-mode-reveal .lede {
font-size: 20px;
line-height: 1.55;
color: var(--text-2);
}
.tpl-presenter-mode-reveal .mono {
font-family: var(--font-mono, monospace);
font-size: 0.9em;
padding: 2px 8px;
border-radius: 4px;
background: color-mix(in srgb, var(--accent, #7aa2f7) 12%, transparent);
border: 1px solid color-mix(in srgb, var(--accent, #7aa2f7) 24%, transparent);
color: var(--accent, #7aa2f7);
}
.tpl-presenter-mode-reveal .accent {
color: var(--accent, #7aa2f7);
font-weight: 700;
}
/* footer meta stays quiet: no chip treatment down there */
.tpl-presenter-mode-reveal .deck-footer .mono {
background: transparent;
border: none;
padding: 0;
color: var(--text-3);
}
.tpl-presenter-mode-reveal .speaker {
display: flex;
align-items: center;
gap: 12px;
margin-top: 32px;
}
.tpl-presenter-mode-reveal .speaker .av {
width: 42px;
height: 42px;
border-radius: 50%;
background: var(--surface-2, rgba(255,255,255,0.06));
border: 1.5px solid var(--accent, #7aa2f7);
position: relative;
}
.tpl-presenter-mode-reveal .speaker .av::after {
content: "OD";
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-mono, monospace);
font-size: 13px;
font-weight: 700;
color: var(--accent, #7aa2f7);
}
.tpl-presenter-mode-reveal .speaker b {
display: block;
font-size: 16px;
}
.tpl-presenter-mode-reveal .speaker span {
font-size: 13px;
color: var(--text-3);
}
/* Agenda rows: hairline list, no boxed cards */
.tpl-presenter-mode-reveal .agenda-row {
display: grid;
grid-template-columns: 48px 1fr auto;
gap: 16px;
align-items: baseline;
padding: 16px 4px;
border-bottom: 1px solid var(--border, rgba(255,255,255,0.1));
max-width: 880px;
}
.tpl-presenter-mode-reveal .agenda-row:first-child {
border-top: 1px solid var(--border, rgba(255,255,255,0.1));
}
.tpl-presenter-mode-reveal .agenda-row .num {
font-family: var(--font-mono, monospace);
font-size: 14px;
color: var(--accent, #7aa2f7);
font-weight: 700;
}
.tpl-presenter-mode-reveal .agenda-row .t {
font-size: 19px;
font-weight: 500;
color: var(--text-1);
}
.tpl-presenter-mode-reveal .agenda-row .d {
font-family: var(--font-mono, monospace);
font-size: 12px;
color: var(--text-3);
}
/* Cards (kept only where hierarchy needs them: the 3-way contrast on Problem) */
.tpl-presenter-mode-reveal .card {
background: var(--surface, rgba(255,255,255,0.03));
border: 1px solid var(--border, rgba(255,255,255,0.1));
border-radius: 8px;
padding: 24px 26px;
box-shadow: none;
}
.tpl-presenter-mode-reveal .card-accent {
border-top: 2px solid var(--accent, #7aa2f7);
}
.tpl-presenter-mode-reveal .card h4 {
margin: 0 0 10px 0;
font-size: 18px;
color: var(--text-1);
}
.tpl-presenter-mode-reveal .card .dim {
color: var(--text-2);
font-size: 14px;
line-height: 1.6;
margin: 0;
}
/* Feature rows (presenter view features) */
.tpl-presenter-mode-reveal .feature-row {
display: flex;
gap: 14px;
padding: 14px 0;
border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
}
.tpl-presenter-mode-reveal .feature-row:last-child { border-bottom: none; }
.tpl-presenter-mode-reveal .feature-row .num {
font-size: 24px;
font-weight: 700;
line-height: 1;
flex-shrink: 0;
}
.tpl-presenter-mode-reveal .feature-row b {
display: block;
font-size: 17px;
margin-bottom: 4px;
color: var(--text-1);
}
.tpl-presenter-mode-reveal .feature-row .dim {
font-size: 14px;
color: var(--text-2);
line-height: 1.55;
margin: 0;
}
/* Step / rule numbers keep one voice: theme accent + mono. The old
* rainbow per-row palette (blue/green/orange/purple/red) was an AI tell. */
.tpl-presenter-mode-reveal .blue,
.tpl-presenter-mode-reveal .green,
.tpl-presenter-mode-reveal .orange,
.tpl-presenter-mode-reveal .purple { color: var(--accent, #7aa2f7); font-family: var(--font-mono, monospace); }
.tpl-presenter-mode-reveal .red { color: var(--accent, #7aa2f7); }
/* Rule rows (3 core principles): hairline list with accent left rule */
.tpl-presenter-mode-reveal .rule-row {
display: grid;
grid-template-columns: 56px 1fr;
gap: 20px;
align-items: start;
padding: 20px 0 20px 22px;
border-left: 2px solid var(--accent, #7aa2f7);
border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
margin-bottom: 0;
max-width: 920px;
}
.tpl-presenter-mode-reveal .rule-row:last-child { border-bottom: none; }
.tpl-presenter-mode-reveal .rule-row .num {
font-size: 26px;
font-weight: 700;
font-family: var(--font-mono, monospace);
line-height: 1.2;
}
.tpl-presenter-mode-reveal .rule-row b {
display: block;
font-size: 18px;
margin-bottom: 6px;
color: var(--text-1);
}
.tpl-presenter-mode-reveal .rule-row .dim {
font-size: 15px;
color: var(--text-2);
line-height: 1.6;
margin: 0;
}
/* Code block */
.tpl-presenter-mode-reveal .code-block {
background: var(--bg-soft, #16161e);
border: 1px solid var(--border, rgba(192,202,245,0.12));
border-radius: 8px;
max-width: 920px;
padding: 20px 26px;
font-family: var(--font-mono, "SF Mono", monospace);
font-size: 15px;
line-height: 1.8;
color: var(--text-1, #c0caf5);
white-space: pre-wrap;
text-align: left;
}
.tpl-presenter-mode-reveal .code-block .comment { color: var(--text-3, #6c75a6); }
.tpl-presenter-mode-reveal .code-block .cmd { color: var(--good, #9ece6a); font-weight: 600; }
.tpl-presenter-mode-reveal .code-block .flag { color: var(--accent, #7aa2f7); }
/* Stack helper */
.tpl-presenter-mode-reveal .stack > * + * { margin-top: 0; }
/* Grid helpers */
.tpl-presenter-mode-reveal .grid { display: grid; gap: 20px; }
.tpl-presenter-mode-reveal .grid.g2 { grid-template-columns: 1fr 1fr; }
.tpl-presenter-mode-reveal .grid.g3 { grid-template-columns: repeat(3, 1fr); }
.tpl-presenter-mode-reveal .mt-m { margin-top: 20px; }
.tpl-presenter-mode-reveal .mt-l { margin-top: 32px; }
.tpl-presenter-mode-reveal .mt-s { margin-top: 10px; }
.tpl-presenter-mode-reveal .tc { text-align: center; }
/* Closing line sits under a left-aligned code block; keep one alignment
* voice instead of a lone centered strip (alignment drift is an AI tell). */
.tpl-presenter-mode-reveal .code-block + .lede.tc {
text-align: left;
max-width: 920px;
font-size: 18px;
}
</style>
<style>
/* Static-preview fallback (runtime.js is absent — keep every slide visible) */
.deck{height:auto;min-height:100vh;overflow:visible}
.slide{position:relative;inset:auto;opacity:1;pointer-events:auto;transform:none;height:100vh;page-break-after:always}
.deck-header,.deck-footer,.slide-number,.progress-bar,.notes-overlay,.overview{pointer-events:none}
.notes{display:none!important}
</style></head>
<body class="tpl-presenter-mode-reveal">
<div class="deck">
<!-- ============ 1. COVER ============ -->
<section class="slide" data-title="Cover">
<p class="kicker">ai literacy / devrel enablement</p>
<h1 class="h1 anim-fade-up" data-anim="fade-up">Run a Live AI Product Demo<br><span style="color:var(--accent)">like a Founding DevRel Lead</span></h1>
<p class="lede mt-m">Press <span class="mono">S</span> for presenter view · <span class="mono">T</span> to switch themes · <span class="mono">← →</span> to navigate</p>
<div class="speaker">
<div class="av"></div>
<div><b>Open Design DevRel</b><span>github.com/nexu-io/open-design · 30 min session</span></div>
</div>
<div class="deck-footer">
<span class="mono">Apache-2.0 · Runs locally · BYOK · No sign-up</span>
<span class="slide-number" data-current="1" data-total="6"></span>
</div>
<aside class="notes">
<p>Hi everyone. This session is the playbook a founding DevRel lead uses to run a <strong>live AI product demo</strong> — not a recorded walkthrough, a real session where the prompt in front of the audience is theirs, and the output is a runnable file by the time we're done.</p>
<p>The deck itself is the proof point: it's built with presenter mode, so you're seeing the audience view while my screen carries the current slide, the next slide, the full script, and a timer — one Open Design plugin produced everything you're looking at.</p>
<p>Four facts to hold onto for the rest of this session: <strong>Apache-2.0 open source, runs locally, BYOK, no sign-up</strong>. That's what makes a live, unscripted demo safe to run in front of a room — no cloud dependency to go down mid-pitch.</p>
<p>30 minutes, five parts, questions welcome anytime. Let's go.</p>
</aside>
</section>
<!-- ============ 2. AGENDA ============ -->
<section class="slide" data-title="Agenda">
<p class="kicker">agenda</p>
<h2 class="h2">Five things on the agenda</h2>
<div class="stack mt-l">
<div class="agenda-row"><span class="num">01</span><span class="t">Why now · Live demos are outperforming decks in AI evaluations</span><span class="d">~5min</span></div>
<div class="agenda-row"><span class="num">02</span><span class="t">Workflow map · From a one-line prompt to a runnable file, live</span><span class="d">~6min</span></div>
<div class="agenda-row"><span class="num">03</span><span class="t">Pilot &amp; risk control · The 30-minute session format, and the fallback plan</span><span class="d">~8min</span></div>
<div class="agenda-row"><span class="num">04</span><span class="t">Live demo · Running this very deck in presenter mode</span><span class="d">~8min</span></div>
<div class="agenda-row"><span class="num">05</span><span class="t">ROI + rollout plan + Q&amp;A</span><span class="d">~3min</span></div>
</div>
<aside class="notes">
<p>Let's walk through today's agenda.</p>
<p>Part one is <strong>why now</strong> — buyers have started discounting recorded demos; a live one, run on the audience's own prompt, is what actually moves a deal forward.</p>
<p>Part two is the <strong>workflow map</strong>: the four beats that take a one-line prompt to a real, runnable deliverable while the room watches.</p>
<p>Part three covers <em>pilot format and risk control</em> — how we scope a 30-minute session, and what we do when the live prompt doesn't cooperate.</p>
<p>Part four is the live demo — though really it started on slide one: this deck was produced by Open Design, and I've had presenter mode on the whole time.</p>
<p>Then ROI, the rollout plan, and Q&amp;A.</p>
<p>OK, on to part one.</p>
</aside>
</section>
<!-- ============ 3. PROBLEM ============ -->
<section class="slide" data-title="Problem">
<p class="kicker">// part 01 · why now</p>
<h2 class="h2">Buyers stopped trusting canned demos —<br>they want <span class="accent">their own prompt, live</span>.</h2>
<div class="grid g3 mt-l">
<div class="card card-accent">
<h4>✅ What buyers expect</h4>
<p class="dim">A prompt from the room, not a rehearsed script — proof the tool works on their real problem, not a curated one.</p>
</div>
<div class="card card-accent">
<h4>❌ What kills a demo</h4>
<p class="dim">Pre-recorded video, no visible source, and no good answer when someone asks "what if I ask it X instead?"</p>
</div>
<div class="card card-accent">
<h4>💡 Open Design's answer</h4>
<p class="dim">Local, agent-native runtime — <strong>any prompt becomes a real, runnable file in the room, in minutes</strong>.</p>
</div>
</div>
<aside class="notes">
<p>Let's start with why this matters right now.</p>
<p>Look at the card on the left. Prospects have watched a dozen AI product videos this quarter alone. What actually changes a mind is watching the tool take <em>their</em> prompt, not a cherry-picked one — that's the bar now.</p>
<p>The middle card is the trap most demos fall into: a pre-recorded video, no source visible, and the moment someone asks "what if I typed something different" the whole thing falls apart because there's nothing live to show.</p>
<p>Which brings us to the right card — Open Design runs locally and reads full context live, so the agent can take any prompt from the audience and turn it into a real, editable file before the session ends. That's the demo we're about to run.</p>
<p>So what does that workflow actually look like, step by step? Next part.</p>
</aside>
</section>
<!-- ============ 4. SOLUTION ============ -->
<section class="slide" data-title="Presenter View">
<p class="kicker">// part 02 · workflow map</p>
<h2 class="h2">From a one-line prompt to a shipped file in <span class="accent">four beats</span></h2>
<div class="grid g2 mt-l">
<div>
<div class="feature-row"><span class="num blue"></span><div><b>Take the room's prompt</b><p class="dim">Ask the audience for a real ask — a landing page, a dashboard, a pitch deck — and type exactly what they say.</p></div></div>
<div class="feature-row"><span class="num green"></span><div><b>Lock the direction</b><p class="dim">One click sets palette, typography, and spacing so every following screen stays visually consistent.</p></div></div>
</div>
<div>
<div class="feature-row"><span class="num orange"></span><div><b>Generate on screen</b><p class="dim">The agent writes real, runnable files in the sandbox — the audience watches code compile, not a loading spinner.</p></div></div>
<div class="feature-row"><span class="num purple"></span><div><b>Hand it over, on the spot</b><p class="dim">Drop the file into a repo or a Slack channel before the session ends — no "we'll follow up" needed.</p></div></div>
</div>
</div>
<aside class="notes">
<p>This is the workflow map — four beats, and I run through all four live in every session.</p>
<p>Beat one, <strong>take the room's prompt</strong>. Not a warm-up example — the actual thing the audience says they need, typed verbatim.</p>
<p>Beat two, <strong>lock the direction</strong>. One click sets the palette, fonts, and spacing, so everything the agent generates after this stays visually consistent — no per-screen tuning live on stage.</p>
<p>Beat three, <strong>generate on screen</strong> — the moment that sells the room. The agent reads full context and writes real, runnable files in the sandbox, and the audience watches it happen in real time, not a spinner cutting to a finished screenshot.</p>
<p>Beat four, <strong>hand it over on the spot</strong>. The file goes to a repo or a Slack channel before we move to Q&amp;A — the prospect leaves with something real, not a follow-up email.</p>
<p>So how do we scope this as a repeatable pilot, and what's the fallback if the live prompt misbehaves? Next part.</p>
</aside>
</section>
<!-- ============ 5. SCRIPT ============ -->
<section class="slide" data-title="Script">
<p class="kicker">// part 03 · pilot &amp; risk control</p>
<h2 class="h2">Pilot format &amp; <span class="accent">risk controls</span></h2>
<div class="stack mt-l">
<div class="rule-row">
<span class="num red">01</span>
<div>
<b>🎯 <span class="accent">Pilot scope</span>: one session, one live prompt</b>
<p class="dim">30 minutes, one audience-chosen problem, one agent, one deliverable — repeatable across prospects, not a one-off show.</p>
</div>
</div>
<div class="rule-row">
<span class="num red">02</span>
<div>
<b>🛡️ <span class="accent">Risk control</span>: it runs without the internet</b>
<p class="dim">Local-first, so a flaky venue Wi-Fi never stalls the demo; a rehearsed backup prompt is ready if the live one runs long.</p>
</div>
</div>
<div class="rule-row">
<span class="num red">03</span>
<div>
<b>📊 <span class="accent">Success bar</span>: they can name the file</b>
<p class="dim">Pass/fail signal: can the audience say what got built and where it lives — a repo link, a preview URL — by the time we close?</p>
</div>
</div>
</div>
<aside class="notes">
<p>Now for the part that gets this funded internally — how we scope the pilot and control the risk of running it live.</p>
<p><strong>First, pilot scope</strong>. One session, 30 minutes, one problem the audience picks in the room — not five feature tours crammed into one slot. That's what makes it repeatable across ten prospects a month instead of a single showcase event.</p>
<p><strong>Second, risk control</strong>. Because Open Design runs locally, a bad venue Wi-Fi connection never stalls the live moment — the agent and sandbox are on the laptop. If the live prompt runs long, I have one rehearsed backup prompt ready that still lands inside the 30 minutes.</p>
<p><strong>Third, the success bar</strong> — and this is the metric that matters to a DevRel manager: can the audience, unprompted, say what file got built and where it lives? If yes, the session earned a follow-up meeting. If no, we adjust the pilot script, not the product.</p>
<p>Put those three together and you have a pilot you can run weekly, not once. Now, the numbers that make the case to fund it.</p>
</aside>
</section>
<!-- ============ 6. DEMO + CLOSING ============ -->
<section class="slide" data-title="Demo & Close">
<p class="kicker">// part 04-05 · roi + rollout</p>
<h2 class="h2">The numbers that get this <span class="accent">funded</span></h2>
<div class="code-block mt-m">
<span class="comment"># Get Open Design (macOS / Windows · Apache-2.0)</span>
<span class="cmd">open</span> <span class="flag">https://github.com/nexu-io/open-design</span>
<span class="comment"># 60K+ Stars · 300+ Contributors · 217+ Plugins · 129 Design Systems</span>
<span class="comment"># Cost per live session: $0 in API fees when run BYOK on the presenter's own key</span>
<span class="comment"># Keyboard shortcuts for this deck (presenter-mode demo)</span>
<span class="flag">S</span> <span class="comment">→ open presenter view</span>
<span class="flag">T</span> <span class="comment">→ switch theme (5 presets)</span>
<span class="flag">← →</span> <span class="comment">→ navigate slides</span>
<span class="flag">R</span> <span class="comment">→ reset timer</span>
</div>
<p class="lede mt-m tc"><strong>Rollout: 1 pilot session this week → 4 DevRel reps trained next sprint → weekly cadence.</strong> discord.gg/mHAjSMV6gz</p>
<div class="deck-footer">
<span class="mono">#thanks · Q&amp;A</span>
<span class="slide-number" data-current="6" data-total="6"></span>
</div>
<aside class="notes">
<p>Finally, the numbers and the rollout plan — what I need approved to keep running this every week.</p>
<p>Open Design is Apache-2.0, no sign-up, and BYOK — which matters for ROI, because a live demo session costs nothing beyond the presenter's own API key. Community context: 60K+ stars, 300+ contributors, 217+ Plugins, 129 Design Systems — this isn't a fringe tool the prospect has never heard of.</p>
<p>The keyboard shortcuts here are the exact ones I use live: <strong>S for presenter view, T to switch themes, arrow keys to navigate, R to reset the timer</strong>. Five themes ship by default, so the same deck reads right in a dark technical room or a bright executive briefing.</p>
<p>Rollout plan: <strong>one pilot session this week, four DevRel reps trained on the format next sprint, then a weekly cadence</strong> against the pipeline. That's the ask.</p>
<p>Remember — this deck is itself the proof: presenter mode, live script, theme switching, all generated HTML, produced the same way the demo will be run. Thank you — questions, go.</p>
</aside>
</section>
</div>
<div style="position:fixed;bottom:12px;left:12px;font-size:11px;font-family:var(--font-mono);color:var(--text-3);opacity:.7;z-index:100;pointer-events:none">
S presenter view · T theme · ← → navigate · F fullscreen · O overview · R reset timer
</div>
</body>
</html>