/* OpenClaw Pharma Deck V4 — Image Thor + Pharma Scenarios */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #1a1a1e;
    --bg-card: rgba(255,255,255,0.04);
    --bg-card-hover: rgba(255,255,255,0.07);
    --text: #d4d4d8;
    --text-bright: #f0f0f2;
    --text-dim: rgba(255,255,255,0.38);
    --orange: #e8722a;
    --orange-dim: rgba(232,114,42,0.15);
    --green: #2ecc71;
    --green-dim: rgba(46,204,113,0.12);
    --red: #e74c3c;
    --red-dim: rgba(231,76,60,0.1);
    --yellow: #f1c40f;
    --yellow-dim: rgba(241,196,15,0.1);
    --blue: #3498db;
    --blue-dim: rgba(52,152,219,0.1);
    --pharma: #00a89d;
    --pharma-dim: rgba(0,168,157,0.12);
    --border: rgba(255,255,255,0.06);
    --border-orange: rgba(232,114,42,0.25);
    --border-green: rgba(46,204,113,0.2);
    --border-pharma: rgba(0,168,157,0.25);
    --radius: 16px;
    --radius-sm: 12px;
    --font: 'Noto Sans SC', 'Inter', system-ui, sans-serif;
    --max-w: 1200px;
}

html { font-size: 18px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow: hidden; height: 100vh; width: 100vw; -webkit-font-smoothing: antialiased; }

/* ═══ Chrome ═══ */
.progress-bar { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.03); z-index: 100; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--pharma), var(--orange)); transition: width .5s ease; }
.slide-counter { position: fixed; bottom: 24px; right: 32px; font-size: 14px; color: var(--text-dim); z-index: 90; }
.slide-counter .current { color: var(--pharma); font-weight: 600; }
.dot-nav { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 8px; z-index: 90; }
.dot-nav .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.1); cursor: pointer; transition: all .3s; border: none; padding: 0; }
.dot-nav .dot:hover { background: rgba(255,255,255,0.25); }
.dot-nav .dot.active { background: var(--pharma); height: 22px; border-radius: 4px; }

/* ═══ Layout ═══ */
.presentation { width: 100vw; height: 100vh; position: relative; overflow: hidden; }
.slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .5s ease, transform .5s ease; transform: translateY(18px); background: var(--bg); }
.slide.active { opacity: 1; visibility: visible; transform: translateY(0); }
.slide-content { max-width: var(--max-w); width: 100%; padding: 48px 72px; position: relative; z-index: 2; }
.slide-content.centered { text-align: center; }
.animate-in { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.slide.active .animate-in { opacity: 1; transform: translateY(0); }
.slide.active .delay-1 { transition-delay: .1s; }
.slide.active .delay-2 { transition-delay: .2s; }
.slide.active .delay-3 { transition-delay: .35s; }

/* ═══ Typography ═══ */
.badge { display: inline-block; padding: 6px 20px; border-radius: 100px; font-size: .7rem; font-weight: 600; letter-spacing: 1.5px; color: var(--orange); border: 1px solid var(--border-orange); background: var(--orange-dim); margin-bottom: 20px; }
.badge.warn { color: var(--red); border-color: rgba(231,76,60,0.25); background: var(--red-dim); }
.badge.pharma { color: var(--pharma); border-color: var(--border-pharma); background: var(--pharma-dim); }
.heading { font-size: 2rem; font-weight: 700; color: var(--text-bright); line-height: 1.35; margin-bottom: 28px; }
.heading-sub { font-size: .88rem; color: var(--text-dim); margin-top: 6px; margin-bottom: 14px; line-height: 1.5; }
.hero { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; color: var(--text-bright); line-height: 1.15; margin-bottom: 18px; }
.hero-sub { font-size: 1.15rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px; }
.meta { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: .78rem; color: var(--text-dim); }
.dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.orange { color: var(--orange); }
.green { color: var(--green); }
.red { color: var(--red); }
.teal { color: var(--pharma); }
.dim { color: var(--text-dim); font-size: .82rem; }

/* ═══ Cards ═══ */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: all .3s; }
.card:hover { background: var(--bg-card-hover); }
.card.action { border-color: var(--border-orange); }
.card.pharma-card { border-color: var(--border-pharma); }
.card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.card-num { font-size: 2rem; font-weight: 800; color: var(--orange); margin-bottom: 8px; }
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--text-bright); margin-bottom: 10px; }
.card-body { font-size: .85rem; color: var(--text-dim); line-height: 1.7; }
.card-source { margin-top: 12px; font-size: .7rem; color: rgba(255,255,255,0.25); }
.card-rule { margin-top: 12px; font-size: .78rem; color: rgba(0,168,157,0.85); }
.card-tag { margin-top: 12px; display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: .62rem; font-weight: 600; color: var(--orange); background: var(--orange-dim); }
.card-roi { margin-top: 14px; padding: 10px 14px; background: rgba(255,255,255,0.02); border-radius: var(--radius-sm); font-size: .75rem; color: var(--text-dim); line-height: 1.7; }
.roi-tag { display: inline-block; padding: 2px 8px; border-radius: 6px; font-size: .65rem; font-weight: 600; margin-right: 4px; background: var(--orange-dim); color: var(--orange); }
.roi-tag.green-tag { background: var(--green-dim); color: var(--green); }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }

.highlight-strip { display: flex; align-items: center; gap: 12px; padding: 16px 22px; margin-top: 20px; background: rgba(232,114,42,0.06); border: 1px solid rgba(232,114,42,0.12); border-radius: var(--radius-sm); font-size: .9rem; color: var(--text); }
.highlight-strip.green { background: var(--green-dim); border-color: var(--border-green); }
.hl-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ═══ S1: Analogy ═══ */
.analogy-row { display: flex; align-items: stretch; justify-content: center; gap: 0; margin-bottom: 20px; }
.analogy-card { flex: 1; max-width: 380px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.analogy-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-bright); margin-bottom: 14px; }
.analogy-card ul { list-style: none; padding: 0; }
.analogy-card li { font-size: .85rem; color: var(--text-dim); line-height: 1.8; padding-left: 20px; position: relative; }
.analogy-card li::before { content: '•'; position: absolute; left: 0; }
.analogy-old { border-color: rgba(255,255,255,0.08); }
.analogy-new { border-color: var(--border-pharma); background: var(--pharma-dim); }
.analogy-new li::before { color: var(--pharma); }
.analogy-icon { font-size: 2rem; margin-bottom: 10px; }
.analogy-vs { display: flex; align-items: center; padding: 0 18px; font-size: 1.2rem; font-weight: 800; color: var(--text-dim); }
.value-row { display: flex; gap: 14px; margin-top: 8px; }
.value-mini { flex: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 12px; text-align: center; }
.value-mini .value-icon { font-size: 1.4rem; margin-bottom: 6px; }
.value-mini strong { display: block; font-size: .82rem; color: var(--text-bright); margin-bottom: 2px; }
.value-mini span { font-size: .72rem; color: var(--text-dim); }

/* ═══ S2: Architecture ═══ */
.arch-flow { display: flex; align-items: stretch; justify-content: center; gap: 0; margin-bottom: 20px; }
.arch-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 18px; text-align: center; flex: 1; font-size: .88rem; color: var(--text-bright); font-weight: 600; line-height: 1.5; }
.arch-step .dim { display: block; font-weight: 400; font-size: .72rem; margin-top: 4px; }
.arch-step.active { border-color: var(--border-pharma); background: var(--pharma-dim); }
.arch-arrow { display: flex; align-items: center; padding: 0 8px; font-size: 1.2rem; color: var(--text-dim); }
.system-cards { display: flex; gap: 14px; margin-bottom: 12px; }
.sys-card { flex: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; text-align: center; }
.sys-card .sys-icon { font-size: 1.6rem; margin-bottom: 8px; }
.sys-card strong { display: block; font-size: .85rem; color: var(--text-bright); margin-bottom: 4px; }
.sys-card span { font-size: .72rem; color: var(--text-dim); }

/* ═══ S3: Thor — Image version ═══ */
.thor-hero-layout { display: flex; gap: 32px; align-items: flex-start; }
.thor-img-col { flex: 0 0 300px; }
.thor-img-frame { background: var(--bg-card); border: 1px solid var(--border-pharma); border-radius: var(--radius); padding: 8px; overflow: hidden; }
.thor-photo { width: 100%; border-radius: var(--radius-sm); display: block; }
.thor-img-caption { text-align: center; font-size: .82rem; font-weight: 700; color: var(--pharma); margin-top: 12px; letter-spacing: .5px; }

.thor-profile-col { flex: 1; min-width: 0; }
.thor-info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 14px; }
.thor-info-badge { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--pharma); margin-bottom: 10px; }
.thor-info-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.thor-info-card p { font-size: .82rem; color: var(--text-dim); line-height: 1.6; }
.thor-traits { display: flex; gap: 10px; margin-bottom: 14px; }
.thor-trait { flex: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; }
.thor-trait strong { display: block; font-size: .82rem; color: var(--text-bright); margin-bottom: 4px; }
.thor-trait span { font-size: .72rem; color: var(--text-dim); }
.thor-story-strip { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: rgba(232,114,42,0.06); border: 1px solid rgba(232,114,42,0.12); border-radius: var(--radius-sm); font-size: .85rem; color: var(--text); }

/* ═══ S4/S5: Scenario Demo ═══ */
.scenario-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tab { padding: 8px 18px; border-radius: 100px; font-size: .78rem; font-weight: 600; color: var(--text-dim); background: var(--bg-card); border: 1px solid var(--border); cursor: pointer; transition: all .2s; }
.tab:hover { background: var(--bg-card-hover); color: var(--text); }
.tab.active { color: var(--pharma); border-color: var(--border-pharma); background: var(--pharma-dim); }

.scenario-demo { display: flex; gap: 16px; }
.demo-chat-full { flex: 1.2; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; max-height: 52vh; }
.chat-header-bar { display: flex; align-items: center; gap: 10px; padding: 10px 18px; border-bottom: 1px solid var(--border); }
.chat-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-pharma); }
.chat-name-bar { font-weight: 700; font-size: .85rem; color: var(--text-bright); }
.chat-status-bar { font-size: .7rem; color: var(--pharma); margin-left: auto; }
.chat-shell-full { flex: 1; overflow-y: auto; position: relative; }
.chat-launch { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 24px; text-align: center; height: 100%; }
.chat-launch h3 { font-size: 1.05rem; color: var(--text-bright); margin-bottom: 8px; }
.chat-launch p { font-size: .82rem; color: var(--text-dim); margin-bottom: 16px; }
.btn-launch { padding: 10px 28px; border-radius: 100px; font-size: .85rem; font-weight: 700; color: var(--bg); background: var(--pharma); border: none; cursor: pointer; transition: all .2s; }
.btn-launch:hover { background: #00bfb0; transform: translateY(-1px); }
.chat-messages { padding: 14px 18px; display: flex; flex-direction: column; gap: 8px; }
.msg { padding: 10px 14px; border-radius: var(--radius-sm); font-size: .82rem; line-height: 1.55; max-width: 88%; animation: msgIn .3s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.msg-user { background: rgba(0,168,157,0.12); border: 1px solid var(--border-pharma); color: var(--text-bright); align-self: flex-end; }
.msg-system { background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: var(--text-dim); font-style: italic; font-size: .75rem; }
.msg-bot { background: rgba(232,114,42,0.1); border: 1px solid var(--border-orange); color: var(--text-bright); }
.typing-indicator { display: flex; gap: 4px; padding: 10px 14px; }
.typing-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-dim); animation: typeBounce .6s ease-in-out infinite; }
.typing-dot:nth-child(2) { animation-delay: .15s; }
.typing-dot:nth-child(3) { animation-delay: .3s; }
@keyframes typeBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

.demo-workflow-panel { flex: 0.8; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; max-height: 52vh; }
.wf-header { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--pharma); margin-bottom: 14px; }
.wf-pipeline { display: flex; flex-direction: column; gap: 0; flex: 1; overflow-y: auto; }
.wf-node { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: var(--radius-sm); font-size: .78rem; color: var(--text-dim); transition: all .3s; }
.wf-node.active { background: var(--pharma-dim); color: var(--pharma); font-weight: 600; }
.wf-node.done { color: var(--green); }
.wf-node-icon { font-size: 1rem; flex-shrink: 0; }
.wf-node-label { font-size: .75rem; }
.wf-line { width: 2px; height: 8px; background: rgba(255,255,255,0.06); margin-left: 19px; transition: background .3s; }
.wf-line.active { background: var(--pharma); }
.wf-summary { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.wf-summary-label { font-size: .65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.wf-summary-status { font-size: .78rem; color: var(--pharma); font-weight: 600; margin-top: 4px; }

/* ═══ Pillar + Compare ═══ */
.pillar-row { display: flex; gap: 14px; margin-bottom: 20px; }
.pillar-card { flex: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; }
.pillar-card .pillar-icon { font-size: 1.6rem; margin-bottom: 8px; }
.pillar-card strong { display: block; font-size: .88rem; color: var(--text-bright); margin-bottom: 4px; }
.pillar-card span { font-size: .72rem; color: var(--text-dim); }
.compare-board { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare-head { padding: 16px 22px; border-bottom: 1px solid var(--border); }
.compare-head h3 { font-size: 1rem; font-weight: 700; color: var(--text-bright); }
.compare-grid { display: grid; grid-template-columns: .8fr 1fr 1fr; }
.compare-col { display: flex; flex-direction: column; }
.compare-col span, .compare-col strong { padding: 11px 18px; font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
.compare-col strong { font-weight: 700; color: var(--text-bright); }
.compare-col-label span { color: var(--text); font-weight: 500; }
.compare-col-weak span, .compare-col-weak strong { color: var(--text-dim); }
.compare-col-strong { background: rgba(0,168,157,0.04); }
.compare-col-strong span { color: var(--pharma); font-weight: 500; }
.compare-col-strong strong { color: var(--pharma); }

/* ═══ Lobster timeline ═══ */
.lobster-timeline { display: flex; align-items: stretch; justify-content: center; gap: 0; margin-bottom: 20px; }
.lobster-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 18px; text-align: center; min-width: 210px; max-width: 280px; flex: 1; }
.lobster-card.dead { border-color: rgba(231,76,60,0.2); background: var(--red-dim); }
.lobster-card.alive { border-color: var(--border-green); background: var(--green-dim); }
.lobster-card.future { border-color: var(--border-pharma); background: var(--pharma-dim); }
.lobster-emoji { font-size: 2.6rem; margin-bottom: 10px; }
.lobster-name { font-size: 1.3rem; font-weight: 800; color: var(--text-bright); margin-bottom: 6px; }
.lobster-status { font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.lobster-status.alive-tag { color: var(--pharma); }
.lobster-status.sick-tag { color: var(--orange); }
.lobster-story { font-size: .82rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 14px; }
.lobster-lesson { font-size: .78rem; color: var(--text); padding: 10px 14px; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); }
.lobster-arrow { display: flex; align-items: center; padding: 0 14px; font-size: 1.8rem; color: var(--text-dim); }

/* ═══ CEO Intel ═══ */
.ceo-intel-v2 { display: flex; gap: 28px; align-items: flex-start; }
.ceo-screenshot-col { flex: 0 0 48%; }
.ceo-digest-col { flex: 1; min-width: 0; }
.ceo-digest-header { display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; color: var(--pharma); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.ceo-digest-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 8px; }
.ceo-digest-num { flex-shrink: 0; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; background: var(--pharma-dim); color: var(--pharma); font-weight: 800; font-size: .82rem; border-radius: 50%; margin-top: 2px; }
.ceo-digest-item strong { color: var(--text-bright); font-size: .85rem; display: block; margin-bottom: 2px; }
.ceo-digest-item p { color: var(--text-dim); font-size: .75rem; line-height: 1.4; margin: 0; }
.intel-icon { font-size: 1.8rem; }
.intel-action { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--orange-dim); border: 1px solid var(--border-orange); border-radius: var(--radius-sm); }
.intel-action-label { font-size: .82rem; font-weight: 700; color: var(--orange); white-space: nowrap; }
.intel-action-text { font-size: .82rem; color: var(--text-bright); line-height: 1.5; }
.screenshot-frame { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px; text-align: center; }
.screenshot-img { width: 100%; border-radius: var(--radius-sm); display: block; }
.screenshot-caption { font-size: .65rem; color: var(--text-dim); margin-top: 8px; }

/* ═══ Lesson layout ═══ */
.lesson-layout { display: flex; gap: 24px; align-items: flex-start; }
.lesson-evidence { flex: 0 0 44%; display: flex; flex-direction: column; gap: 10px; }
.lesson-takeaways { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.lesson-item { display: flex; gap: 12px; align-items: flex-start; }
.lesson-dot { flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%; margin-top: 5px; }
.lesson-dot.orange { background: var(--orange); }
.lesson-dot.green { background: var(--green); }
.lesson-dot.teal-dot { background: var(--pharma); }
.lesson-item strong { display: block; font-size: .88rem; margin-bottom: 4px; }
.lesson-item p { font-size: .82rem; color: var(--text-dim); line-height: 1.6; margin: 0; }
.lesson-fixes { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.lesson-fixes span { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: .72rem; background: var(--pharma-dim); color: var(--pharma); border: 1px solid var(--border-pharma); }
.evidence-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 6px; }
.evidence-card.alert { border-color: rgba(231,76,60,0.45); }
.evidence-card.cost { border-color: rgba(232,114,42,0.35); }
.evidence-card-img { cursor: zoom-in; border-radius: 10px; overflow: hidden; transition: all .3s ease; }
.evidence-card-img img { width: 100%; display: block; border-radius: 8px; max-height: 22vh; object-fit: cover; }
.evidence-card-img.zoomed { position: fixed; top: 5vh; left: 5vw; width: 90vw; height: 90vh; z-index: 999; background: rgba(0,0,0,0.92); border-radius: 16px; padding: 20px; display: flex; align-items: center; justify-content: center; cursor: zoom-out; }
.evidence-card-img.zoomed img { width: auto; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; }

/* ═══ ROI ═══ */
.roi-cards { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 24px; }
.roi-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; text-align: center; min-width: 240px; }
.roi-card.highlight { border-color: var(--border-green); background: var(--green-dim); }
.roi-card-title { font-size: .88rem; color: var(--text-dim); margin-bottom: 10px; font-weight: 500; }
.roi-card-value { font-size: 1.8rem; font-weight: 900; color: var(--text-bright); margin-bottom: 10px; }
.roi-card-value.green { color: var(--green); }
.roi-card-detail { font-size: .78rem; color: var(--text-dim); line-height: 1.7; text-align: left; }
.roi-arrow-block { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 8px; }
.roi-arrow-icon { font-size: 2rem; color: var(--text-dim); }
.roi-arrow-text { font-size: .72rem; color: var(--text-dim); text-align: center; line-height: 1.4; }

/* ═══ Flow ═══ */
.flow-3 { display: flex; align-items: stretch; justify-content: center; gap: 0; }
.flow-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; min-width: 200px; flex: 1; }
.flow-step.active { border-color: var(--border-pharma); background: var(--pharma-dim); }
.flow-badge { font-size: .65rem; font-weight: 700; color: var(--pharma); letter-spacing: 2px; margin-bottom: 10px; }
.flow-title { font-size: 1.2rem; font-weight: 700; color: var(--text-bright); margin-bottom: 10px; }
.flow-desc { font-size: .82rem; color: var(--text-dim); line-height: 1.6; }
.flow-output { margin-top: 12px; padding: 8px 12px; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); font-size: .72rem; color: var(--text-dim); line-height: 1.6; }
.flow-output span { color: var(--pharma); font-weight: 700; }
.flow-arrow { display: flex; align-items: center; padding: 0 8px; font-size: 1.3rem; color: var(--text-dim); }

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
    .slide-content { padding: 36px 40px; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .flow-3, .arch-flow { flex-direction: column; align-items: center; gap: 12px; }
    .flow-arrow, .arch-arrow { transform: rotate(90deg); }
    .lobster-timeline { flex-direction: column; align-items: center; gap: 12px; }
    .lobster-arrow { transform: rotate(90deg); padding: 8px 0; }
    .roi-cards { flex-direction: column; gap: 12px; }
    .ceo-intel-v2 { flex-direction: column; }
    .analogy-row { flex-direction: column; align-items: center; gap: 12px; }
    .analogy-vs { padding: 8px 0; }
    .value-row { flex-wrap: wrap; }
    .system-cards { flex-direction: column; }
    .pillar-row { flex-wrap: wrap; }
    .thor-hero-layout { flex-direction: column; align-items: center; }
    .thor-img-col { flex: none; width: 100%; max-width: 320px; }
    .thor-traits { flex-direction: column; }
    .compare-grid { grid-template-columns: 1fr; }
    .scenario-demo { flex-direction: column; }
    .lesson-layout { flex-direction: column; }
    .lesson-evidence { flex: none; width: 100%; flex-direction: row; }
}
@media (max-width: 768px) {
    html { font-size: 16px; }
    .slide-content { padding: 24px 18px; }
    .dot-nav { display: none; }
}
