/* ==========================================================================
   Scaling GTM Presentation — "White Editorial" Design System
   Inspired by slide 13. Clean, minimal, typographic.
   Optimized for 1920×1080 projection.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --bg: #FFFFFF;
    --text: #1A1A1A;
    --text-secondary: rgba(26, 26, 26, 0.6);
    --text-muted: rgba(26, 26, 26, 0.35);
    --accent: #FF6B00;
    --accent-coral: #FF4D6A;
    --border: rgba(26, 26, 26, 0.1);
    --border-strong: rgba(26, 26, 26, 0.2);
    --surface: #F8F8F8;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   3. Slide Base
   -------------------------------------------------------------------------- */
.slide {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.slide-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 120px;
    position: relative;
    z-index: 1;
}

.slide-content--centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --------------------------------------------------------------------------
   4. Progress Bar
   -------------------------------------------------------------------------- */
#progressBar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 9999;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   5. Slide Nav
   -------------------------------------------------------------------------- */
.slide-nav {
    position: fixed;
    bottom: 24px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9998;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.slide-nav:hover, .slide-nav.visible { opacity: 1; }

.slide-counter {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    border-color: var(--text);
    color: var(--text);
}

/* --------------------------------------------------------------------------
   6. Overlays
   -------------------------------------------------------------------------- */
.presenter-overlay {
    position: fixed;
    bottom: 24px;
    left: 32px;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 8px;
    padding: 16px 24px;
    z-index: 9998;
    display: none;
    max-width: 400px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.presenter-overlay.visible { display: block; }
.presenter-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
}
.presenter-text { line-height: 1.6; }

.help-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.help-overlay.visible { display: flex; }
.help-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 48px;
    max-width: 500px;
    width: 90%;
}
.help-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
}
.help-row {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.help-row kbd {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 6px;
}
.help-dismiss {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
}
.help-dismiss kbd {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1px 4px;
}

/* --------------------------------------------------------------------------
   7. Typography
   -------------------------------------------------------------------------- */
.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

.section-label--accent { color: var(--accent); }
.section-label--coral { color: var(--accent-coral); }

.slide-headline {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.1;
    color: var(--text);
    letter-spacing: -1px;
    margin-bottom: 32px;
}

.slide-subhead {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 700px;
}

.slide-source {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 40px;
}

.text-accent { color: var(--accent); }
.text-coral { color: var(--accent-coral); }

/* --------------------------------------------------------------------------
   8. Play Badge
   -------------------------------------------------------------------------- */
.bonus-badge {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent-coral);
    border-radius: 3px;
    padding: 2px 8px;
    margin-right: 8px;
    vertical-align: middle;
}

.play-badge {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   9. Hero Stat (big number + label)
   -------------------------------------------------------------------------- */
.hero-stat {
    margin: 48px 0;
}

.hero-stat__number {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 80px;
    color: var(--accent-coral);
    line-height: 1;
    letter-spacing: -2px;
}

.hero-stat__label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* --------------------------------------------------------------------------
   10. Person Card (Story slides)
   -------------------------------------------------------------------------- */
.person {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin: 32px 0;
}

.person__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.person__photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--surface);
    border: 2px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-secondary);
}

.person__info {
    flex: 1;
}

.person__name {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
    display: block;
}

.person__role {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--text-secondary);
    display: block;
    margin-top: 2px;
}

.person__context {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 12px;
}

/* --------------------------------------------------------------------------
   11. Stat Row (inline numbers)
   -------------------------------------------------------------------------- */
.stat-row {
    display: flex;
    gap: 48px;
    margin: 40px 0;
}

.stat-item {
    text-align: left;
}

.stat-item__number {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 40px;
    color: var(--text);
    line-height: 1;
}

.stat-item__number--accent { color: var(--accent-coral); }

.stat-item__label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 6px;
    display: block;
    max-width: 180px;
}

/* --------------------------------------------------------------------------
   12. Recipe Steps
   -------------------------------------------------------------------------- */
.recipe {
    margin: 40px 0;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}

.recipe__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text);
    margin-bottom: 24px;
}

.recipe-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.recipe-step__num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
    min-width: 28px;
    padding-top: 2px;
}

.recipe-step__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.recipe-step__text strong {
    color: var(--text);
    font-weight: 600;
}

.recipe-step__text code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--accent);
    background: rgba(255, 107, 0, 0.06);
    padding: 2px 6px;
    border-radius: 3px;
}

/* --------------------------------------------------------------------------
   13. Takeaway Box
   -------------------------------------------------------------------------- */
.takeaway {
    margin-top: 40px;
    padding: 24px 28px;
    border-left: 3px solid var(--accent);
    background: rgba(255, 107, 0, 0.03);
}

.takeaway__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.takeaway__text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--text);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   14. Divider
   -------------------------------------------------------------------------- */
.slide-divider {
    width: 60px;
    height: 1px;
    background: var(--border-strong);
    margin: 40px 0;
}

/* --------------------------------------------------------------------------
   15. Title Slide (Slide 1)
   -------------------------------------------------------------------------- */
.slide--title .s1-top-line {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.slide--title .s1-title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 56px;
    line-height: 1.1;
    color: var(--text);
    letter-spacing: -1.5px;
    max-width: 900px;
}

.slide--title .s1-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: var(--text-secondary);
    margin-top: 24px;
}

.slide--title .s1-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.slide--title .s1-author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.slide--title .s1-author-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    display: block;
}

.slide--title .s1-author-role {
    font-size: 14px;
    color: var(--text-secondary);
    display: block;
}

.slide--title .s1-poll {
    margin-top: 24px;
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   16. Moment Slide (Slide 2)
   -------------------------------------------------------------------------- */
.moment-hero {
    margin: 32px 0;
}

.moment-hero__number {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 72px;
    color: var(--text);
    line-height: 1;
}

.moment-hero__suffix {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 72px;
    color: var(--text-muted);
}

.moment-hero__context {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 12px;
}

.moment-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.moment-stat {
    flex: 1;
}

.moment-stat__num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 36px;
    color: var(--accent-coral);
    display: block;
}

.moment-stat__desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
    display: block;
}

.moment-stat__source {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* --------------------------------------------------------------------------
   17. Promise Slide (Slide 3)
   -------------------------------------------------------------------------- */
.promise-number {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 120px;
    color: var(--text);
    line-height: 1;
}

.promise-text {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.promise-list {
    margin-top: 48px;
    text-align: left;
    display: inline-block;
}

.promise-item {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--text-secondary);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.promise-item__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    min-width: 24px;
}

.promise-poll {
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 40px;
}

/* --------------------------------------------------------------------------
   18. Evidence Slide
   -------------------------------------------------------------------------- */
.evidence-hero {
    margin: 32px 0;
}

.evidence-hero__label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.evidence-hero__number {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 80px;
    color: var(--accent-coral);
    line-height: 1;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}

.evidence-item {
    padding-right: 24px;
}

.evidence-item + .evidence-item {
    padding-left: 24px;
    border-left: 1px solid var(--border);
}

.evidence-item__stat {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 32px;
    color: var(--text);
    display: block;
}

.evidence-item__label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    display: block;
}

.evidence-item__source {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* --------------------------------------------------------------------------
   19. Pivot Slide (White wake-up — same design as current slide 13)
   -------------------------------------------------------------------------- */
.pivot-question {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 72px;
    color: var(--text);
    line-height: 1.1;
}

.pivot-stat {
    margin: 48px 0;
}

.pivot-stat__number {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 80px;
    color: var(--accent-coral);
    line-height: 1;
}

.pivot-stat__desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.pivot-context {
    font-weight: 500;
    font-size: 22px;
    color: var(--text-secondary);
    margin-top: 40px;
}

.pivot-prompt {
    font-weight: 500;
    font-size: 20px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 24px;
}

/* --------------------------------------------------------------------------
   20. Risk Grid
   -------------------------------------------------------------------------- */
.risk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 40px;
}

.risk-item {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
}

.risk-item:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.risk-item h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 6px;
}

.risk-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   21. MetadataONE Reveal
   -------------------------------------------------------------------------- */
.reveal-lines {
    margin: 40px 0;
}

.reveal-line {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 8px 0;
}

.reveal-line--emphasis {
    font-weight: 600;
    color: var(--text);
    font-size: 24px;
    margin-top: 16px;
}

.reveal-logo {
    margin-top: 48px;
}

.reveal-logo__meta {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--text);
}

.reveal-logo__one {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--accent);
}

.reveal-tagline {
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* --------------------------------------------------------------------------
   22. Demo CTA
   -------------------------------------------------------------------------- */
.demo-cta {
    margin-top: 48px;
}

.demo-cta__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--text);
    margin-bottom: 20px;
}

.demo-cta__btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background: var(--accent);
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.demo-cta__btn:hover {
    opacity: 0.85;
    color: #fff;
}

.demo-cta__note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* --------------------------------------------------------------------------
   23. Playbook
   -------------------------------------------------------------------------- */
.playbook {
    margin-top: 32px;
}

.playbook-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.playbook-step:last-child { border-bottom: none; }

.playbook-step__num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
    min-width: 28px;
    padding-top: 4px;
}

.playbook-step__time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    min-width: 60px;
    padding-top: 5px;
}

.playbook-step__body h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
    margin-bottom: 4px;
}

.playbook-step__body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.playbook-step--highlight {
    background: rgba(255, 107, 0, 0.04);
    margin: 0 -28px;
    padding: 20px 28px;
    border-radius: 8px;
    border-bottom: none;
}

.playbook-total {
    margin-top: 32px;
    font-size: 18px;
    color: var(--text-secondary);
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.playbook-total strong {
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   24. Close Slide
   -------------------------------------------------------------------------- */
.close-callback {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.close-headline {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: var(--text);
    line-height: 1.1;
}

.close-headline .text-accent { color: var(--accent); }

.close-sub {
    font-size: 22px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.close-tags {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.close-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 6px 14px;
}

.close-speaker {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.close-speaker__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.close-speaker__name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    display: block;
}

.close-speaker__role {
    font-size: 14px;
    color: var(--text-secondary);
    display: block;
}

.close-qr {
    margin-top: 32px;
}

.close-qr img {
    width: 100px;
    height: 100px;
}

.close-qr__label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

.close-questions {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text);
    margin-top: 32px;
}

/* --------------------------------------------------------------------------
   25. Inline Equation (Play 2 style)
   -------------------------------------------------------------------------- */
.equation {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.equation__block {
    text-align: center;
}

.equation__num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 48px;
    color: var(--text);
    display: block;
}

.equation__label {
    font-size: 14px;
    color: var(--text-secondary);
    display: block;
    margin-top: 4px;
}

.equation__op {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    color: var(--text-muted);
}

.equation__block--result .equation__num {
    color: var(--accent-coral);
}

/* --------------------------------------------------------------------------
   26. Before/After Transform
   -------------------------------------------------------------------------- */
.transform {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 32px 0;
}

.transform__before,
.transform__after {
    text-align: center;
}

.transform__time {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 36px;
    display: block;
}

.transform__before .transform__time { color: var(--text-muted); }
.transform__after .transform__time { color: var(--accent-coral); }

.transform__label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    display: block;
}

.transform__arrow {
    font-size: 24px;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   27. Supporting Stats Bar
   -------------------------------------------------------------------------- */
.supporting-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.supporting-stat {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   28. Story Slide Context Text
   -------------------------------------------------------------------------- */
.story-context {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 16px 0;
}

.story-quote {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-muted);
    font-style: italic;
    margin: 16px 0;
}

/* --------------------------------------------------------------------------
   29. Resource Cards (in-slide)
   -------------------------------------------------------------------------- */
.resource-row {
    display: flex;
    gap: 24px;
    margin: 24px 0;
}

.resource-card-inline {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
}

.resource-card-inline__header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.resource-card-inline__author {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.resource-card-inline__handle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
}

.resource-card-inline__metric {
    margin-left: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--accent-coral);
    font-weight: 700;
}

.resource-card-inline__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.resource-card-inline__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   30. Resource Preview Grid (slide 21)
   -------------------------------------------------------------------------- */
.resource-preview {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.resource-preview__item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 6px;
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   31. Audience Slides (slides 2-3)
   -------------------------------------------------------------------------- */
.audience-collage {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    margin: 16px 0;
}

.audience-segments {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.audience-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.audience-segment__num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 28px;
    color: var(--accent-coral);
}

.audience-segment__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 24px 0;
    max-width: 1000px;
}

.logo-wall__item {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   32. Avatar Narration Widget (bottom-right, minimizable, lip-sync)
   -------------------------------------------------------------------------- */
.avatar-widget {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0 80px 80px 0;
    padding: 10px 24px 10px 10px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    animation: slideInFromLeft 0.6s ease-out forwards;
    transition: box-shadow 0.2s, opacity 0.3s;
}
@keyframes slideInFromLeft {
    from { transform: translateY(-50%) translateX(-100%); }
    to { transform: translateY(-50%) translateX(0); }
}
.avatar-widget:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.14);
}
.avatar-widget.minimized {
    opacity: 0; pointer-events: none;
    animation: slideOutToLeft 0.3s ease-in forwards;
}
@keyframes slideOutToLeft {
    to { transform: translateY(-50%) translateX(-100%); opacity: 0; }
}

.avatar-widget__face {
    position: relative; cursor: pointer; flex-shrink: 0;
    width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
    border: 3px solid var(--accent);
}
.avatar-widget__img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.avatar-widget.playing .avatar-widget__face {
    border-color: var(--accent-coral);
    animation: pulse-border 1.5s ease-in-out infinite;
}

.avatar-widget__video {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover;
    display: none; border-radius: 50%;
}

.avatar-widget__minimize {
    position: absolute; top: -6px; right: 8px; z-index: 2;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--surface); border: 1px solid var(--border);
    font-size: 14px; line-height: 1; cursor: pointer; color: var(--text);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.2s;
}
.avatar-widget:hover .avatar-widget__minimize { opacity: 1; }
.avatar-widget__minimize:hover { background: #eee; }

.avatar-widget__info {
    display: flex; flex-direction: column; gap: 4px;
}
.avatar-widget__label {
    font-family: 'JetBrains Mono', monospace; font-size: 15px;
    font-weight: 700; color: var(--text); letter-spacing: 0.02em;
}
.avatar-widget__status {
    font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-muted);
}

/* Restore button (minimized state) */
.avatar-widget__restore {
    position: fixed; top: 50%; left: 12px; z-index: 1000; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
    border: 2px solid var(--accent); background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12); cursor: pointer;
    opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.2s;
    padding: 0;
}
.avatar-widget__restore.visible { opacity: 1; pointer-events: auto; }
.avatar-widget__restore:hover { transform: scale(1.1); }
.avatar-widget__restore-img { width: 100%; height: 100%; object-fit: cover; }

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 106, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(255, 77, 106, 0); }
}

/* --------------------------------------------------------------------------
   33. API & MCP Grid (slides 24-25)
   -------------------------------------------------------------------------- */
.api-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.api-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.api-card--highlight {
    border-color: var(--accent-orange);
    background: rgba(255, 107, 0, 0.04);
}

.api-card__name {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.api-card--highlight .api-card__name {
    color: var(--accent-orange);
}

.api-card__desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* MCP Avatar (slide 23) */
.mcp-hero-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 20px;
}

.mcp-explanation {
    flex: 1;
}

.mcp-avatar {
    flex: 0 0 180px;
    text-align: center;
}

.mcp-avatar__img {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid var(--border);
}

.mcp-avatar__caption {
    display: block;
    margin-top: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   34. Playbook Cards (slides 12-16)
   -------------------------------------------------------------------------- */
.playbook-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.playbook-meta__item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    background: var(--surface);
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.playbook-meta__item:first-child {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 107, 0, 0.05);
}

.recipe-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.recipe-step__body {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}

.recipe-step__body strong {
    font-weight: 700;
    color: var(--accent);
}

.recipe-step__body code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    background: var(--surface);
    padding: 2px 6px;
    border-radius: 3px;
}

.playbook-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.playbook-footer__tools {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.playbook-footer__source {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   35. Promise list highlight variant
   -------------------------------------------------------------------------- */
.promise-item--highlight {
    border-color: var(--accent);
    background: rgba(255, 107, 0, 0.04);
}

.promise-item--highlight .promise-item__num {
    background: var(--accent);
    color: #fff;
}

/* --------------------------------------------------------------------------
   36. Slide Content Fade-In Animation (CSS-driven, replaces GSAP)
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.slide-content > .fade-in-up {
    animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: calc(var(--stagger, 0) * 0.08s);
}

/* --------------------------------------------------------------------------
   37. Singularity Timeline (animated)
   -------------------------------------------------------------------------- */
.timeline-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 20px auto 0;
    height: 160px;
}

.timeline-track {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
}

.timeline-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--text-muted), var(--accent), var(--accent-coral));
    animation: timelineFill 2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes timelineFill {
    to { width: 100%; }
}

.timeline-dot {
    position: absolute;
    top: 22px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--border);
    opacity: 0;
    animation: dotAppear 0.3s ease-out forwards;
    z-index: 2;
    transform: translateX(-50%);
}

.timeline-dot--now {
    width: 22px;
    height: 22px;
    top: 19px;
    background: var(--accent-coral);
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--accent-coral), 0 0 20px rgba(255, 77, 106, 0.4);
    animation: dotAppear 0.3s ease-out forwards, pulseNow 2s ease-in-out infinite;
}

@keyframes dotAppear {
    from { opacity: 0; transform: scale(0.3); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulseNow {
    0%, 100% { box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--accent-coral), 0 0 20px rgba(255, 77, 106, 0.4); }
    50% { box-shadow: 0 0 0 3px #fff, 0 0 0 8px var(--accent-coral), 0 0 40px rgba(255, 77, 106, 0.6); }
}

.timeline-label {
    position: absolute;
    top: 48px;
    left: 50%;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    transform: translateX(-50%);
    opacity: 0;
    animation: dotAppear 0.3s ease-out forwards;
}

.timeline-label--now {
    color: var(--accent-coral);
    font-size: 12px;
    font-weight: 700;
}

.timeline-year {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.timeline-speed {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 8px;
}

.timeline-speed__bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.timeline-speed__fill {
    width: 40px;
    background: var(--surface);
    border-radius: 4px;
    overflow: hidden;
    height: 60px;
    display: flex;
    align-items: flex-end;
}

.timeline-speed__inner {
    width: 100%;
    background: var(--accent);
    border-radius: 4px;
    animation: barGrow 1.5s ease-out forwards;
    animation-delay: 1.5s;
}

@keyframes barGrow {
    from { height: 0; }
}

.timeline-speed__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--text-muted);
}

/* Jensen quote callout */
.jensen-quote {
    background: var(--surface);
    border-left: 4px solid var(--accent-coral);
    padding: 16px 20px;
    margin-top: 16px;
    max-width: 800px;
}

.jensen-quote__text {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

.jensen-quote__attr {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   37a. Slide 3 — Singularity Background
   -------------------------------------------------------------------------- */
.slide--singularity {
    position: relative;
    overflow: hidden;
}

.singularity-bg {
    position: absolute;
    inset: 0;
    background: url('images/singularity-bg.jpg') center center / cover no-repeat;
    opacity: 0.12;
    filter: blur(2px) saturate(0.6);
    z-index: 0;
}

.slide--singularity .slide-content {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   37b. Slide 3 — Acceleration Grid & FOMO callouts
   -------------------------------------------------------------------------- */
.acceleration-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 12px;
    align-items: start;
}

.acceleration-grid__timeline {
    display: flex;
    flex-direction: column;
}

.acceleration-arrow {
    position: relative;
    margin-top: -8px;
}

.acceleration-curve {
    width: 100%;
    height: 70px;
}

.acceleration-curve__path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawCurve 2s ease-out 1s forwards;
}

@keyframes drawCurve {
    to { stroke-dashoffset: 0; }
}

.acceleration-arrow__label {
    position: absolute;
    right: 0;
    bottom: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fomo-callouts {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
}

.fomo-callout {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    animation: fadeSlideIn 0.5s ease-out backwards;
}

.fomo-callout:nth-child(1) { animation-delay: 0.8s; }
.fomo-callout:nth-child(2) { animation-delay: 1.0s; }
.fomo-callout:nth-child(3) { animation-delay: 1.2s; }
.fomo-callout:nth-child(4) { animation-delay: 1.6s; }
.fomo-callout:nth-child(5) { animation-delay: 1.8s; }
.fomo-callout:nth-child(6) { animation-delay: 2.0s; }

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.fomo-callout--bad {
    background: rgba(255, 77, 106, 0.06);
    color: rgba(26, 26, 26, 0.5);
    text-decoration: line-through;
    border: 1px solid rgba(255, 77, 106, 0.15);
}

.fomo-callout--bad .fomo-callout__icon {
    color: var(--accent-coral);
    font-weight: 700;
    font-size: 14px;
}

.fomo-callout--good {
    background: rgba(255, 107, 0, 0.06);
    color: var(--text);
    font-weight: 600;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.fomo-callout--good .fomo-callout__icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

.slide-body--bold {
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   38. Playbook layout with illustration (2-column)
   -------------------------------------------------------------------------- */
.playbook-split {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.playbook-split__steps {
    flex: 1;
}

.playbook-split__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.playbook-split__visual img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
}

.playbook-split__caption {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   39. Logo collage (real logos)
   -------------------------------------------------------------------------- */
.logo-collage {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.logo-collage__item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 16px 12px;
    min-height: 64px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.logo-collage__item:nth-child(7n) {
    border-right: none;
}

.logo-collage__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(255, 107, 0, 0.08);
    z-index: 1;
}

.logo-collage__item img {
    max-width: 80px;
    max-height: 32px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-collage__item:hover img {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   40. Face heart mosaic
   -------------------------------------------------------------------------- */
.face-heart {
    display: flex;
    justify-content: center;
    margin: 8px auto 0;
}

.face-heart__mosaic {
    display: grid;
    grid-template-columns: repeat(28, 1fr);
    gap: 2px;
    width: 720px;
    height: 620px;
    clip-path: path('M360 590 C360 590 38 400 38 225 C38 105 132 26 226 26 C290 26 338 73 360 105 C382 73 430 26 494 26 C588 26 682 105 682 225 C682 400 360 590 360 590 Z');
}

.face-heart__mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

/* Interactive face cells */
.face-cell {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.3s ease;
    cursor: pointer;
}

.face-cell--loaded {
    opacity: 1;
    transform: scale(1);
}

.face-cell:hover {
    transform: scale(3);
    z-index: 100;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--accent), 0 8px 24px rgba(0,0,0,0.35);
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.face-cell:hover img {
    border-radius: 50%;
}

.face-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.face-cell__initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.02em;
}

/* Tooltip */
.face-tooltip {
    position: absolute;
    background: var(--text);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
    z-index: 100;
}

.face-tooltip.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.face-tooltip span {
    font-size: 10px;
    opacity: 0.7;
}

/* Keep old grid styles for backwards compat */
.face-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}

.face-grid__item {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* --------------------------------------------------------------------------
   41. Slide visual accent (per-slide illustrations)
   -------------------------------------------------------------------------- */
.slide-visual {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    opacity: 0.12;
    pointer-events: none;
}

.slide-visual--inline {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    opacity: 1;
    margin: 16px auto;
    display: block;
}

/* --------------------------------------------------------------------------
   42. MetadataONE comprehensive slide
   -------------------------------------------------------------------------- */
.agent-roster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.agent-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    text-align: center;
}

.agent-card__photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.agent-card--highlight {
    border-color: var(--accent);
    background: rgba(255, 107, 0, 0.03);
}

.agent-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.agent-card__name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
}

.agent-card__role {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.agent-card__desc {
    font-size: 10px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    margin-top: 16px;
    min-height: 80px;
}

.testimonial-slide {
    display: none;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    animation: fadeInTestimonial 0.6s ease;
}

.testimonial-slide.active {
    display: flex;
}

@keyframes fadeInTestimonial {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.testimonial-slide__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.testimonial-slide__logo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--text);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-slide__content {
    flex: 1;
}

.testimonial-slide__quote {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    margin: 0 0 6px;
    font-style: italic;
}

.testimonial-slide__author {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.compliance-row {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.compliance-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.compliance-badge--secure {
    border-color: #22c55e;
    color: #16a34a;
    background: rgba(34, 197, 94, 0.06);
}

/* --------------------------------------------------------------------------
   43. Evolution visual (PPTX → website)
   -------------------------------------------------------------------------- */
.evolution-row {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    margin: 20px 0;
}

.evolution-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    min-width: 160px;
}

.evolution-stage--final {
    border-color: var(--accent);
    background: rgba(255, 107, 0, 0.04);
}

.evolution-stage__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}

.evolution-stage__desc {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

.evolution-arrow {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   44. Presenter Timer Widget
   -------------------------------------------------------------------------- */
.presenter-timer {
    position: fixed;
    top: 16px;
    right: 200px;
    z-index: 9000;
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(26, 26, 26, 0.9);
    color: #fff;
    border-radius: 8px;
    padding: 6px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    backdrop-filter: blur(8px);
    user-select: none;
}
.presenter-timer.visible { display: flex; }

.presenter-timer__slide-time {
    display: flex;
    align-items: center;
    gap: 6px;
}
.presenter-timer__slide-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
}
.presenter-timer__slide-countdown {
    font-weight: 700;
    font-size: 16px;
    min-width: 36px;
    text-align: center;
}
.presenter-timer__slide-countdown.over { color: #FF4D6A; }
.presenter-timer__slide-countdown.warning { color: #f59e0b; }
.presenter-timer__slide-countdown.ok { color: #22c55e; }

.presenter-timer__divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
}

.presenter-timer__total {
    display: flex;
    align-items: center;
    gap: 6px;
}
.presenter-timer__total-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
}
.presenter-timer__total-clock {
    font-weight: 700;
    font-size: 16px;
    min-width: 54px;
}
.presenter-timer__total-clock.over { color: #FF4D6A; }
.presenter-timer__budget {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}

/* --------------------------------------------------------------------------
   45. Animated SVG Art — Floating Orbs (transition/section slides)
   -------------------------------------------------------------------------- */
.slide-art {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    pointer-events: none;
    opacity: 0.12;
    overflow: hidden;
}
.slide-art--left {
    right: auto;
    left: 0;
}
.slide-art--bottom {
    top: auto;
    bottom: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}
.orb--1 {
    width: 200px; height: 200px;
    background: var(--accent);
    top: 20%; left: 10%;
    animation: orbFloat1 8s ease-in-out infinite;
}
.orb--2 {
    width: 150px; height: 150px;
    background: var(--accent-coral);
    top: 50%; left: 50%;
    animation: orbFloat2 10s ease-in-out infinite;
}
.orb--3 {
    width: 120px; height: 120px;
    background: #6366f1;
    top: 10%; left: 60%;
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -30px) scale(1.15); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, 40px) scale(1.05); }
    75% { transform: translate(-30px, -10px) scale(0.95); }
}

/* Animated network graph for tech slides */
.network-art {
    position: absolute;
    top: 0; right: 0;
    width: 320px; height: 320px;
    pointer-events: none;
    opacity: 0.08;
}
.network-art svg { width: 100%; height: 100%; }
.network-art .node {
    fill: var(--accent);
    animation: nodePulse 3s ease-in-out infinite;
}
.network-art .node:nth-child(2) { animation-delay: 0.5s; }
.network-art .node:nth-child(3) { animation-delay: 1s; }
.network-art .node:nth-child(4) { animation-delay: 1.5s; }
.network-art .edge {
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-dasharray: 8 4;
    animation: edgeDash 2s linear infinite;
}

@keyframes nodePulse {
    0%, 100% { r: 6; opacity: 0.6; }
    50% { r: 10; opacity: 1; }
}
@keyframes edgeDash {
    to { stroke-dashoffset: -24; }
}

/* Animated data stream for playbook transition */
.data-stream {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    height: 3px;
    overflow: hidden;
    pointer-events: none;
}
.data-stream__bar {
    position: absolute;
    height: 100%;
    width: 60px;
    border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: streamFlow 3s linear infinite;
}
.data-stream__bar:nth-child(2) { animation-delay: 1s; width: 40px; }
.data-stream__bar:nth-child(3) { animation-delay: 2s; width: 80px; }

@keyframes streamFlow {
    0% { left: -80px; }
    100% { left: 100%; }
}

/* Animated warning pulse for risk slides */
.risk-pulse {
    position: absolute;
    top: 60px;
    right: 60px;
    width: 80px;
    height: 80px;
    pointer-events: none;
}
.risk-pulse__ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent-coral);
    border-radius: 50%;
    animation: riskRing 2s ease-out infinite;
}
.risk-pulse__ring:nth-child(2) { animation-delay: 0.6s; }
.risk-pulse__ring:nth-child(3) { animation-delay: 1.2s; }
.risk-pulse__dot {
    position: absolute;
    top: 50%; left: 50%;
    width: 12px; height: 12px;
    margin: -6px 0 0 -6px;
    background: var(--accent-coral);
    border-radius: 50%;
}

@keyframes riskRing {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* --------------------------------------------------------------------------
   JENSEN VIDEO LAYOUT (Slide 4)
   -------------------------------------------------------------------------- */
.jensen-video-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    margin-top: 16px;
}
.jensen-video-layout__video { width: 100%; }
.jensen-video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.08);
}
.jensen-video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.jensen-video-layout__quote {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.jensen-agi-def {
    margin-top: 8px;
    padding: 10px 14px;
    background: var(--surface);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-secondary);
}
/* --------------------------------------------------------------------------
   JENSEN HERO (Slide 4 - quote styling)
   -------------------------------------------------------------------------- */
.jensen-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}
.jensen-hero__quote {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    max-width: 700px;
    margin: 0;
    border: none;
    padding: 0;
}
.jensen-hero__attr {
    font-size: 16px;
    opacity: 0.7;
    text-align: center;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   OUTCOME ILLUSTRATIONS (Playbook slides)
   -------------------------------------------------------------------------- */
.outcome-illustration {
    background: var(--surface);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Video Channels (Slide 8 - HeyGen) */
.outcome-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.outcome-channel {
    background: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid var(--border);
}
.outcome-channel__header {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.outcome-channel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #0A66C2;
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}
.outcome-channel__icon--email {
    background: #1A1A1A;
}
.outcome-channel__icon--web {
    background: var(--accent);
}
.outcome-channel__preview {
    display: flex;
    align-items: center;
    gap: 10px;
}
.avatar-preview {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}
.avatar-preview__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avatar-preview__fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}
.avatar-preview__video:not([src]),
.avatar-preview__video[src=""] {
    display: none;
}
.avatar-preview__video:not([src]) + .avatar-preview__fallback,
.avatar-preview__video[src=""] + .avatar-preview__fallback {
    display: block;
}
.outcome-channel__caption {
    font-size: 12px;
    opacity: 0.6;
}

/* Pipeline (Slide 9 - Inbound-to-Outbound) */
.pipeline-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}
.pipeline-stage {
    text-align: center;
    padding: 12px 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    min-width: 90px;
}
.pipeline-stage__icon {
    font-size: 22px;
    display: block;
    margin-bottom: 4px;
}
.pipeline-stage__label {
    font-size: 12px;
    font-weight: 700;
    display: block;
}
.pipeline-stage__detail {
    font-size: 10px;
    opacity: 0.5;
    display: block;
}
.pipeline-stage--in { border-color: #0A66C2; }
.pipeline-stage--process { border-color: var(--accent); }
.pipeline-stage--out { border-color: #22C55E; }
.pipeline-arrow {
    font-size: 18px;
    opacity: 0.3;
    font-weight: 700;
}
.pipeline-metrics {
    text-align: center;
    font-size: 13px;
}
.pipeline-metric {
    margin-bottom: 4px;
}

/* Outbound Engine (Slide 11 - $10M) */
.outbound-engine {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
}
.outbound-engine__header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.5;
    margin-bottom: 12px;
}
.outbound-engine__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}
.outbound-stat {
    text-align: center;
    padding: 8px;
    background: var(--surface);
    border-radius: 8px;
}
.outbound-stat__num {
    font-size: 18px;
    font-weight: 800;
    display: block;
}
.outbound-stat__label {
    font-size: 10px;
    opacity: 0.5;
    display: block;
}
.outbound-stat--highlight {
    background: rgba(255, 107, 0, 0.08);
}
.outbound-stat--highlight .outbound-stat__num {
    color: var(--accent);
}
.outbound-engine__flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
}
.outbound-flow-step {
    padding: 4px 8px;
    background: var(--surface);
    border-radius: 6px;
}
.outbound-flow-step--active {
    background: var(--accent);
    color: #fff;
}
.outbound-flow-arrow {
    opacity: 0.3;
}

/* SEO Results (Slide 12 - Programmatic SEO) */
.seo-results {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
}
.seo-results__header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.5;
    margin-bottom: 8px;
}
.seo-results__chart {
    margin-bottom: 12px;
}
.seo-chart {
    width: 100%;
    height: auto;
}
.seo-results__metrics {
    display: flex;
    gap: 16px;
    font-size: 12px;
}
.seo-results__metrics span {
    opacity: 0.7;
}
.seo-results__metrics strong {
    color: var(--accent);
}

/* Email Factory (Slide 13 - Cold Email) */
.email-factory {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.email-agent {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    width: 180px;
}
.email-agent__icon {
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}
.email-agent-arrow {
    opacity: 0.3;
    font-size: 14px;
}
.email-factory__result {
    margin-top: 8px;
    text-align: center;
    font-size: 13px;
    padding: 10px 16px;
    background: rgba(255, 107, 0, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 0, 0.15);
}

/* Vibe Coding Screenshots (Slide 14) */
.vibe-screenshots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vibe-screenshot {
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    border: 1px solid var(--border);
}
.vibe-screenshot__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.4;
    margin-bottom: 4px;
}
.vibe-screenshot__frame {
    border-radius: 6px;
    overflow: hidden;
}
.resources-preview {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.resources-preview__row {
    height: 10px;
    background: var(--surface);
    border-radius: 4px;
}
.resources-preview__row:nth-child(odd) {
    width: 90%;
}

/* Karpathy Card (Slides 15-16) */
.karpathy-card {
    text-align: center;
}
.karpathy-card__photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.15);
}
.karpathy-card__name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
}
.karpathy-card__role {
    display: block;
    font-size: 12px;
    opacity: 0.5;
}

/* Council Visual (Slide 15) */
.council-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.council-model {
    padding: 8px 12px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}
.council-model--chair {
    border-color: var(--accent);
    background: rgba(255, 107, 0, 0.04);
}
.council-arrow {
    text-align: center;
    opacity: 0.3;
    font-size: 16px;
    margin: 6px 0;
}
.council-result {
    text-align: center;
    padding: 8px 16px;
    background: rgba(255, 107, 0, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 0, 0.15);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
}

/* AutoResearch Loop (Slide 16) */
.autoresearch-loop {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.autoresearch-step {
    display: flex;
    align-items: center;
    gap: 10px;
}
.autoresearch-step__round {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.5;
    width: 55px;
    flex-shrink: 0;
}
.autoresearch-bar {
    height: 28px;
    background: linear-gradient(90deg, var(--surface) 0%, rgba(255, 107, 0, 0.15) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: width 0.8s ease;
}
.autoresearch-bar--final {
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1) 0%, var(--accent) 100%);
    color: #fff;
}

/* --------------------------------------------------------------------------
   RISK ITEM HOVER EFFECTS (Slides 18-19)
   -------------------------------------------------------------------------- */
.risk-item--hoverable {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.risk-item--hoverable:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
.risk-item__hover-detail {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: inherit;
    padding: 16px;
    border: 2px solid var(--accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 20;
    overflow-y: auto;
    font-size: 12px;
    line-height: 1.5;
}
.risk-item--hoverable:hover .risk-item__hover-detail {
    display: block;
}
.risk-example-label {
    font-weight: 700;
    color: var(--accent);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   METADATAONE SHOWCASE (Slide 20)
   -------------------------------------------------------------------------- */
.metadataone-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}
.metadataone-showcase__product {
    width: 100%;
    max-width: 720px;
}
.metadataone-product-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
}
.agent-mini-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.agent-mini {
    text-align: center;
    width: 70px;
}
.agent-mini img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    display: block;
    margin: 0 auto 4px;
}
.agent-mini span {
    display: block;
    font-size: 11px;
    font-weight: 600;
}
.agent-mini__role {
    font-size: 9px !important;
    opacity: 0.5;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   SLIDE 8: HeyGen Process Animation
   -------------------------------------------------------------------------- */
.heygen-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
}
.heygen-process__step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--border);
    width: 100%;
}
.heygen-process__step--engine {
    background: rgba(255,107,0,0.04);
    border-color: var(--accent);
}
.heygen-process__icon { font-size: 18px; }
.heygen-process__label { font-size: 12px; font-weight: 600; }
.heygen-process__detail { font-size: 10px; opacity: 0.6; display: block; }
.heygen-process__arrow { text-align: center; opacity: 0.3; font-size: 14px; }
.heygen-process__outputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    width: 100%;
}
.heygen-output {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: var(--surface);
    border-radius: 6px;
    border: 1px solid var(--border);
    font-size: 10px;
    line-height: 1.3;
}
.heygen-output__icon {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    flex-shrink: 0;
}
.heygen-process__result {
    text-align: center;
    padding: 8px;
    background: rgba(255,107,0,0.06);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    width: 100%;
    margin-top: 4px;
}
.heygen-process__step--animate {
    opacity: 0;
    transform: translateY(8px);
    animation: fadeSlideUp 0.4s ease forwards;
    animation-delay: calc(var(--delay) * 0.2s + 0.5s);
}
@keyframes fadeSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   SLIDE 9: Pipeline Flow Animation
   -------------------------------------------------------------------------- */
.pipeline-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
}
.pipeline-flow__box {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    text-align: center;
    width: 100%;
}
.pipeline-flow__box--trigger { border-left: 3px solid #0A66C2; }
.pipeline-flow__box--process { border-left: 3px solid var(--text-muted); }
.pipeline-flow__box--output { border-left: 3px solid var(--accent); background: rgba(255,107,0,0.04); }
.pipeline-flow__num {
    display: inline-block;
    width: 18px; height: 18px; line-height: 18px;
    border-radius: 50%;
    background: var(--text); color: #fff;
    font-size: 10px; font-weight: 700; text-align: center;
    margin-right: 6px;
}
.pipeline-flow__sub { display: block; font-size: 10px; opacity: 0.5; margin-top: 2px; }
.pipeline-flow__connector { text-align: center; opacity: 0.3; font-size: 14px; }
.pipeline-flow__row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; width: 100%; }
.pipeline-flow__metrics {
    display: flex; justify-content: space-between; width: 100%;
    padding: 8px 12px; background: rgba(255,107,0,0.06); border-radius: 8px;
    font-size: 11px; margin-top: 4px;
}
.pipeline-flow__stage--animate {
    opacity: 0; transform: translateY(8px);
    animation: fadeSlideUp 0.4s ease forwards;
    animation-delay: calc(var(--delay) * 0.2s + 0.5s);
}

/* --------------------------------------------------------------------------
   SLIDE 10: Website Scroll Frame
   -------------------------------------------------------------------------- */
.website-scroll-frame {
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.08);
    width: 100%;
}
.website-scroll-frame__bar {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 12px; background: #f0f0f0; border-bottom: 1px solid #e0e0e0;
}
.website-scroll-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.website-scroll-url {
    margin-left: 8px; font-size: 11px;
    font-family: 'JetBrains Mono', monospace; opacity: 0.5;
}
.website-scroll-frame__viewport { height: 360px; overflow: hidden; position: relative; }
.website-scroll-frame__viewport--static { height: auto; overflow: visible; }
.website-scroll-img { width: 100%; display: block; animation: scrollWebsite 12s ease-in-out infinite; }
.website-scroll-img--static { animation: none; width: 100%; max-width: none; margin: 0; }
@keyframes scrollWebsite {
    0%, 10% { transform: translateY(0); }
    40%, 60% { transform: translateY(-40%); }
    90%, 100% { transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   SLIDE 11: Claude Cowork Visual
   -------------------------------------------------------------------------- */
.cowork-visual { width: 100%; }
.cowork-visual__browser {
    border-radius: 10px; overflow: hidden;
    border: 1px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.cowork-visual__bar {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 12px; background: #f0f0f0; border-bottom: 1px solid #e0e0e0;
}
.cowork-visual__title {
    margin-left: 8px; font-size: 11px; font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}
.cowork-visual__screen {
    padding: 12px; background: #1a1a1a; min-height: 160px;
}
.cowork-flow {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.cowork-flow__step {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px; background: rgba(255,255,255,0.06);
    border-radius: 6px; border: 1px solid rgba(255,255,255,0.1);
    color: #e0e0e0; font-size: 11px; font-weight: 500; width: 80%;
}
.cowork-flow__step--result {
    background: rgba(255,107,0,0.15); border-color: var(--accent);
    color: var(--accent); font-weight: 700;
}
.cowork-flow__icon { font-size: 14px; }
.cowork-flow__arrow { text-align: center; opacity: 0.3; color: #666; font-size: 12px; }
.cowork-flow__step--animate {
    opacity: 0; transform: translateY(6px);
    animation: fadeSlideUp 0.4s ease forwards;
    animation-delay: calc(var(--delay) * 0.3s + 0.5s);
}
.cowork-visual__stats {
    display: flex; gap: 8px; justify-content: center; margin-top: 10px;
}
.cowork-visual__stats .outbound-stat { flex: 1; text-align: center; }

/* --------------------------------------------------------------------------
   SLIDE 12: SEO Content Factory
   -------------------------------------------------------------------------- */
.seo-factory { padding: 10px; }
.seo-factory__engine { margin-bottom: 10px; }
.seo-factory__header {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; opacity: 0.5; margin-bottom: 6px;
}
.seo-factory__flow {
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.seo-factory__node {
    padding: 8px 12px; background: var(--surface); border-radius: 8px;
    border: 1px solid var(--border); font-size: 11px; text-align: center; line-height: 1.3;
}
.seo-factory__node--engine { background: rgba(255,107,0,0.04); border-color: var(--accent); }
.seo-factory__arrow { opacity: 0.3; font-size: 14px; }
.seo-factory__chart { margin: 10px 0; }
.seo-factory__chart-label {
    font-size: 10px; font-weight: 600; opacity: 0.5; text-transform: uppercase; margin-bottom: 2px;
}
.seo-factory__table { width: 100%; border-collapse: collapse; font-size: 10px; margin: 8px 0; }
.seo-factory__table th, .seo-factory__table td {
    padding: 4px 6px; text-align: left; border-bottom: 1px solid var(--border);
}
.seo-factory__table-head th {
    font-weight: 700; text-transform: uppercase; font-size: 9px;
    letter-spacing: 0.04em; opacity: 0.5;
}
.seo-rank { font-weight: 700; }
.seo-rank--top { color: var(--accent); }
.seo-rank--mid { color: var(--text); }
.seo-trend-up { color: #22c55e; font-weight: 700; }
.seo-factory__metrics { display: flex; gap: 12px; font-size: 11px; }

/* --------------------------------------------------------------------------
   SLIDE 13: Email Machine
   -------------------------------------------------------------------------- */
.email-machine { padding: 10px; }
.email-machine__header {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; opacity: 0.5; margin-bottom: 8px;
}
.email-machine__agents {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.email-machine__agent {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px; background: var(--surface); border-radius: 8px;
    border: 1px solid var(--border); width: 100%; font-size: 12px; line-height: 1.3;
}
.email-machine__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.email-machine__sub { font-size: 10px; opacity: 0.5; }
.email-machine__connector { text-align: center; opacity: 0.3; font-size: 14px; }
.email-machine__output {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 6px; margin-top: 8px; width: 100%;
}
.email-machine__stat {
    text-align: center; padding: 8px; background: rgba(255,107,0,0.06);
    border-radius: 6px; font-size: 11px; line-height: 1.3;
}
.email-machine__agent--animate {
    opacity: 0; transform: translateY(6px);
    animation: fadeSlideUp 0.4s ease forwards;
    animation-delay: calc(var(--delay) * 0.2s + 0.5s);
}

/* --------------------------------------------------------------------------
   SLIDE 14: Vibe Coding Screenshots
   -------------------------------------------------------------------------- */
.vibe-talk-preview {
    background: #1a1a1a; border-radius: 6px; padding: 16px;
    color: #fff; text-align: center; min-height: 100px;
    display: flex; align-items: center; justify-content: center;
}
.vibe-talk-preview__slide {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.vibe-talk-preview__title { font-size: 14px; font-weight: 700; color: var(--accent); }
.vibe-talk-preview__sub { font-size: 10px; opacity: 0.5; }
.vibe-talk-preview__dots { display: flex; gap: 4px; margin-top: 6px; }
.vibe-talk-preview__dots span {
    width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3);
}
.vibe-talk-preview__dots span:first-child { background: var(--accent); }
.vibe-resources-preview {
    background: #f8f8f8; border-radius: 6px; padding: 10px; min-height: 100px;
}
.vibe-resources-preview__search {
    padding: 6px 10px; background: #fff; border: 1px solid #e0e0e0;
    border-radius: 4px; font-size: 10px; opacity: 0.5; margin-bottom: 8px;
}
.vibe-resources-preview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.vibe-resources-card {
    padding: 6px 8px; background: #fff; border: 1px solid #e8e8e8;
    border-radius: 4px; font-size: 9px; font-weight: 600; text-align: center;
}

/* --------------------------------------------------------------------------
   SLIDE 15: Karpathy Headline Row + Council Debate
   -------------------------------------------------------------------------- */
.karpathy-headline-row {
    display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.karpathy-headline-photo {
    width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--accent);
}
.karpathy-headline-name { display: block; font-size: 14px; font-weight: 700; }
.karpathy-headline-role { display: block; font-size: 11px; opacity: 0.5; }
.council-debate { padding: 10px; }
.council-debate__question {
    padding: 10px 14px; background: var(--surface); border-radius: 8px;
    border: 1px solid var(--border); font-size: 12px; font-style: italic; margin-bottom: 8px;
}
.council-debate__q-label {
    display: block; font-size: 9px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--accent); font-style: normal; margin-bottom: 2px;
}
.council-debate__models { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 6px; }
.council-debate__model {
    padding: 6px 8px; background: #fff; border-radius: 6px;
    border: 1px solid var(--border); font-size: 10px;
}
.council-debate__model--chair {
    border-color: var(--accent); background: rgba(255,107,0,0.04);
}
.council-debate__model-name { display: block; font-weight: 700; font-size: 10px; margin-bottom: 2px; }
.council-debate__model-take { font-size: 9px; opacity: 0.6; font-style: italic; }
.council-debate__arrow { text-align: center; font-size: 11px; opacity: 0.4; margin: 4px 0; }
.council-debate__result {
    padding: 10px; background: rgba(255,107,0,0.06); border-radius: 8px;
    border: 1px solid rgba(255,107,0,0.15); font-size: 11px; line-height: 1.4;
}
.council-debate__result-label {
    display: block; font-size: 9px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--accent); margin-bottom: 2px;
}
.council-debate__model--animate {
    opacity: 0; transform: translateY(6px);
    animation: fadeSlideUp 0.4s ease forwards;
    animation-delay: calc(var(--delay) * 0.3s + 0.5s);
}

/* --------------------------------------------------------------------------
   SLIDE 16: Conversion Boost + Callout
   -------------------------------------------------------------------------- */
.conversion-boost {
    margin-top: 12px; padding: 10px; background: var(--surface);
    border-radius: 8px; border: 1px solid var(--border);
}
.conversion-boost__header {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; opacity: 0.5; margin-bottom: 8px;
}
.conversion-boost__bars { display: flex; flex-direction: column; gap: 6px; }
.conversion-boost__bar { display: flex; align-items: center; gap: 8px; }
.conversion-boost__label { font-size: 10px; font-weight: 600; width: 40px; flex-shrink: 0; }
.conversion-boost__fill {
    height: 26px; border-radius: 4px;
    display: flex; align-items: center; justify-content: flex-end;
    padding-right: 8px; font-size: 12px; font-weight: 700;
}
.conversion-boost__fill--before { background: #e0e0e0; color: var(--text); }
.conversion-boost__fill--after { background: var(--accent); color: #fff; }
.conversion-boost__lift {
    display: block; text-align: center; font-size: 13px;
    font-weight: 800; color: var(--accent); margin-top: 6px;
}
.autoresearch-callout {
    text-align: center; font-size: 16px; font-weight: 700;
    margin-top: 16px; padding: 12px 20px;
    background: rgba(255,107,0,0.04); border-radius: 10px;
    border: 1px solid rgba(255,107,0,0.12);
}

/* --------------------------------------------------------------------------
   SLIDE 18/19: Hover Hint
   -------------------------------------------------------------------------- */
.risk-item__hover-hint {
    display: block; font-size: 9px; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--accent); opacity: 0.7;
    margin-top: 4px; font-weight: 600;
}
.risk-item--hoverable:hover .risk-item__hover-hint { display: none; }

/* --------------------------------------------------------------------------
   SLIDE 20: MetadataONE Two-Column Layout
   -------------------------------------------------------------------------- */
.metadataone-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
    align-items: center; margin-top: 12px;
}
.metadataone-layout__left { display: flex; flex-direction: column; }
.metadataone-layout__left .compliance-row { flex-wrap: wrap; gap: 8px; }
.metadataone-layout__left .agent-mini-row { justify-content: flex-start; }
.metadataone-layout__right .metadataone-product-img {
    width: 100%; border-radius: 16px;
    box-shadow: 0 16px 64px rgba(0,0,0,0.12); border: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   SLIDE 6: Logo Mosaic
   -------------------------------------------------------------------------- */
.logo-mosaic-wrapper {
    position: relative; margin-top: 16px; overflow: hidden;
    border-radius: 12px; border: 1px solid var(--border);
    background: #fafafa; max-height: 320px;
}
.logo-mosaic {
    display: flex; flex-wrap: wrap; gap: 0; padding: 6px;
    justify-content: center; align-items: center;
}
.logo-mosaic__item {
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    position: relative; transition: transform 0.2s ease;
}
.logo-mosaic__item img {
    width: 28px; height: 28px; object-fit: contain; border-radius: 4px;
    filter: grayscale(0.3); opacity: 0.8; transition: all 0.2s ease;
}
.logo-mosaic__item:hover img { filter: grayscale(0); opacity: 1; }
.logo-mosaic__item--fallback img { display: none; }
.logo-mosaic__item--fallback .logo-mosaic__initial { display: flex; }
.logo-mosaic__initial {
    display: none; width: 28px; height: 28px; border-radius: 4px;
    background: var(--surface); border: 1px solid var(--border);
    font-size: 12px; font-weight: 700; color: var(--text);
    align-items: center; justify-content: center;
}
.logo-mosaic__magnifier {
    position: absolute; width: 120px; height: 120px; border-radius: 50%;
    border: 3px solid var(--accent); background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15); pointer-events: none;
    display: none; z-index: 10; overflow: hidden;
    transform: translate(-50%, -50%);
}
.logo-mosaic__magnifier.active { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.logo-mosaic__magnifier .magnified-logo {
    width: 60px; height: 60px; object-fit: contain;
}
.logo-mosaic__magnifier .magnified-name {
    width: 100%; text-align: center; font-size: 10px; font-weight: 700;
    color: var(--text); margin-top: 2px;
}
.logo-mosaic__tooltip {
    position: absolute; background: #1a1a1a; color: #fff;
    padding: 6px 12px; border-radius: 6px; font-size: 11px; font-weight: 600;
    pointer-events: none; display: none; z-index: 11; white-space: nowrap;
    transform: translate(-50%, -100%); margin-top: -8px;
}
.logo-mosaic__tooltip.active { display: block; }

/* --------------------------------------------------------------------------
   SLIDE 14: A→B Transition (PPTX → Web App)
   -------------------------------------------------------------------------- */
.vibe-ab-transition {
    display: flex; align-items: center; gap: 8px;
    padding: 10px; height: 100%;
}
.vibe-ab__before, .vibe-ab__after {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.vibe-ab__label {
    font-size: 9px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text); opacity: 0.5;
}
.vibe-ab__label--accent { color: var(--accent); opacity: 1; }
.vibe-ab__arrow {
    font-size: 24px; font-weight: 300; color: var(--accent); flex-shrink: 0;
    animation: pulseArrow 2s ease-in-out infinite;
}
@keyframes pulseArrow {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
}
.vibe-ab__desc { font-size: 10px; opacity: 0.5; text-align: center; }
.vibe-ab__screenshot {
    width: 100%; border-radius: 8px; border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1); margin: 4px 0;
}
.vibe-pptx-mockup {
    width: 100%; background: #f0f0f0; border-radius: 6px;
    border: 1px solid #ddd; overflow: hidden;
}
.vibe-pptx__titlebar {
    display: flex; align-items: center; gap: 6px;
    padding: 4px 8px; background: #e8e8e8; border-bottom: 1px solid #ddd;
}
.vibe-pptx__dot { width: 6px; height: 6px; border-radius: 50%; }
.vibe-pptx__name { font-size: 9px; opacity: 0.5; }
.vibe-pptx__slide {
    padding: 16px 12px; text-align: center; background: #fff;
    margin: 8px; border-radius: 2px; border: 1px solid #e0e0e0;
}
.vibe-pptx__title { display: block; font-size: 12px; font-weight: 700; color: #333; }
.vibe-pptx__sub { display: block; font-size: 9px; opacity: 0.4; margin-top: 4px; }
.vibe-pptx__author { display: block; font-size: 8px; opacity: 0.3; margin-top: 8px; }
.vibe-pptx__thumbs { display: flex; gap: 4px; padding: 6px 8px; }
.vibe-pptx__thumb {
    flex: 1; height: 14px; background: #ddd; border-radius: 2px;
}
.vibe-webapp-mockup {
    width: 100%; border-radius: 8px; overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.vibe-webapp__bar {
    display: flex; align-items: center; gap: 4px;
    padding: 4px 8px; background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.vibe-webapp__url {
    font-size: 9px; opacity: 0.5; margin-left: 4px;
    background: #fff; padding: 2px 8px; border-radius: 3px;
    border: 1px solid var(--border); flex: 1;
}
.vibe-webapp__screen {
    padding: 16px; background: #1a1a1a; text-align: center; color: #fff;
}
.vibe-webapp__hero {
    font-size: 14px; font-weight: 800; color: var(--accent); margin-bottom: 8px;
}
.vibe-webapp__features {
    display: flex; gap: 8px; justify-content: center;
}
.vibe-webapp__features span {
    font-size: 9px; padding: 3px 8px; background: rgba(255,107,0,0.15);
    border-radius: 4px; color: var(--accent); font-weight: 600;
}

/* --------------------------------------------------------------------------
   SLIDE 17: Stat Grid
   -------------------------------------------------------------------------- */
.stat-grid-4 {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px;
}
.stat-card {
    padding: 24px 20px; background: var(--surface); border-radius: 12px;
    border: 1px solid var(--border); text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.stat-card__number {
    font-size: 42px; font-weight: 800; color: var(--text); line-height: 1;
}
.stat-card__number--accent { color: var(--accent); }
.stat-card__label {
    font-size: 15px; opacity: 0.7; line-height: 1.4; max-width: 260px;
}
.stat-card__source {
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em;
    opacity: 0.35; font-weight: 600; margin-top: 4px;
}
