/* ===========================================
   SLIDES.CSS — KNVRTs Premium Slide System
   Variable bridge: source → theme tokens
   =========================================== */
.presentation-frame {
    /* Bridge source variables to theme tokens */
    --bg: var(--void, #050505);
    --surface: #0A0A0A;
    --border: #1F1F1F;
    --accent: var(--triage-green, #00FF41);
    --alert: var(--hemorrhage-red, #FF3B30);
    --text-primary: rgba(255,255,255,0.95);
    --text-secondary: rgba(255,255,255,0.55);
    --text-tertiary: rgba(255,255,255,0.3);
    --font-main: var(--gh-font-body, 'Inter', sans-serif);
    --font-mono: var(--gh-font-heading, 'Departure Mono', monospace);
}

/* ============================
   FRAME
============================ */
.presentation-frame {
    width: 100%;
    max-width: 1600px;
    height: 85vh;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.06);
    background: var(--surface);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* ============================
   SLIDE SYSTEM
============================ */
.slide-viewport {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 48px 1fr;
}

/* Each slide is a full-height layer */
.slide {
    display: none;
    width: 100%;
    height: 100%;
    grid-template-rows: 48px 1fr;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.slide.active {
    display: grid;
    opacity: 1;
    pointer-events: all;
}

/* ============================
   TOP BAR (shared)
============================ */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
}

.brand-mark {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.15);
    text-transform: uppercase;
}

.module-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}
/* ============================
   SPLIT GRID (shared)
============================ */
.split-grid {
    display: grid;
    grid-template-columns: 35% 1fr;
    height: 100%;
    overflow: hidden;
    min-height: 0; /* prevent grid blowout */
}

/* ============================
   LEFT PANEL (shared)
============================ */
.panel-left {
    padding: 40px 36px;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
    overflow-y: auto;
    min-height: 0;
}

.ambient-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4; /* Tasteful ambient presence */
    pointer-events: none;
    filter: none; /* Restore original colors and quality */
}

.pre-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.pre-title::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--accent);
    flex-shrink: 0;
}

.main-headline {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin: 0 0 28px 0;
}

.main-headline strong { font-weight: 500; }

.divider {
    width: 60px; height: 1px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 28px;
}

.editorial-body {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin: 0;
    font-weight: 300;
}

/* =============================================
   SLIDE 00 - DOSSIER CARD
============================================= */
.panel-right-dossier {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--bg);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.dossier-card {
    width: 100%;
    max-width: 600px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dossier-header {
    padding: 28px 40px;
    border-bottom: 1px dotted rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dossier-id {
    font-family: var(--font-mono);
    font-size: 13px;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.2em;
}

.dossier-status {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 6px 12px;
    border: 1px solid;
    letter-spacing: 0.1em;
}

.status-lost   { color: var(--alert);  background: rgba(255,59,48,0.1);   border-color: rgba(255,59,48,0.2); }
.status-won    { color: var(--accent);  background: rgba(0,255,0,0.1);     border-color: rgba(0,255,0,0.2); }
.status-pending{ color: #FF9F0A;        background: rgba(255,159,10,0.1);  border-color: rgba(255,159,10,0.2); }

.dossier-body { padding: 40px; display: flex; flex-direction: column; gap: 36px; }

.target-block { display: flex; flex-direction: column; gap: 6px; }

.block-lbl {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-tertiary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.block-val {
    font-size: 32px; font-weight: 500;
    letter-spacing: -0.02em; color: #FFF;
}

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

.meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px dotted rgba(255,255,255,0.1);
}

.meta-item { display: flex; flex-direction: column; gap: 6px; }

.meta-item .block-val {
    font-size: 16px;
    font-family: var(--font-mono);
    color: #FFF;
    letter-spacing: 0em;
}

/* =============================================
   SLIDE 01 - NATIVE SCORING SYSTEM
============================================= */
.panel-right-scoring {
    background: var(--bg);
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    min-height: 0;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    display: block;
}

/* SCOREBOARD (Native) */
.scoreboard {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.main-score-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 48px;
    border-right: 1px solid var(--border);
    width: fit-content;
}

.score-readout {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.main-score {
    font-family: var(--font-mono);
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--alert);
}

.score-denominator {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-tertiary);
}

.sub-score-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sub-scores {
    display: flex;
    gap: 48px;
    align-items: center;
    padding-left: 48px;
}

.sub-score-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub-score-val {
    font-family: var(--font-mono);
    font-size: 24px;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.sub-score-val .denom {
    font-size: 10px;
    color: var(--text-tertiary);
}

/* PROSPECT QUALITY (Native) */
.prospect-section {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    position: relative;
}

.grade-display {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-right: 1px solid var(--border);
    margin-right: 32px;
    padding-right: 32px;
}

.grade-large {
    font-family: var(--font-mono);
    font-size: 64px;
    font-weight: 500;
    color: var(--alert);
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 59, 48, 0.2);
}

.prospect-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.meta-val {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.5;
}

.accountability-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    padding: 6px 12px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 59, 48, 0.1);
    color: var(--alert);
    border: 1px solid rgba(255, 59, 48, 0.2);
    width: fit-content;
}

.fracture-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 0 40px;
}

.fracture-item {
    padding: 0;
}

.fracture-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fracture-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--alert);
}

.fracture-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.3;
}

.fracture-line {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.fracture-insight {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    border-left: 1px solid var(--accent);
    padding-left: 20px;
    max-width: 600px;
}

/* SLIDE 03 - PHASE ANALYSIS */
.phase-block {
    padding: 40px;
    overflow-y: auto;
    max-height: 100%;
    min-height: 0;
}

.phase-top {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    margin-bottom: 28px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.phase-score-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phase-score-val {
    font-family: var(--font-mono);
    font-size: 36px;
    line-height: 1;
}

.phase-score-meter {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.phase-score-meter-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    transition: width 0.8s ease, background 0.4s ease;
}

.phase-score-name {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.phase-desc-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phase-desc-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.phase-desc-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 4px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 24px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.impact-card-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.impact-card-label.good { color: var(--accent); }
.impact-card-label.bad { color: var(--alert); }

.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.impact-list li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.impact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.impact-card.good li::before { background: var(--accent); }
.impact-card.bad li::before { background: var(--alert); }

/* SLIDE 04 - ANNOTATED TRANSCRIPT */
.evidence-block {
    padding: 40px;
    overflow-y: auto;
    max-height: 100%;
    min-height: 0;
}

.evidence-phase {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    padding-bottom: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.evidence-lines {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.ev-line {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 8px 0;
    align-items: baseline;
}

.ev-meta {
    text-align: right;
}

.ev-time {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-tertiary);
    opacity: 0.5;
    display: block;
    margin-bottom: 2px;
}

.ev-speaker {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    display: block;
}

.ev-speaker.closer { color: var(--accent); }
.ev-speaker.prospect { color: var(--text-primary); opacity: 0.8; }

.ev-dialogue {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
}

.ev-dialogue em {
    color: var(--accent);
    font-style: italic;
}

.ev-annotation {
    margin: 16px 0 32px 124px;
    padding: 0 0 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.ev-annotation.good { border-left-color: var(--accent); }
.ev-annotation.error { border-left-color: var(--alert); }
.ev-annotation.warning { border-left-color: #F59E0B; }

.ev-ann-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.ev-ann-icon {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.ev-ann-icon svg {
    width: 14px;
    height: 14px;
}

.ev-ann-title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ev-annotation.good .ev-ann-icon,
.ev-annotation.good .ev-ann-title { color: var(--accent); }
.ev-annotation.error .ev-ann-icon,
.ev-annotation.error .ev-ann-title { color: var(--alert); }
.ev-annotation.warning .ev-ann-icon,
.ev-annotation.warning .ev-ann-title { color: #F59E0B; }

.score-status {
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid;
    border-radius: 4px;
}

.ev-ann-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
}

.ev-rewrite {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ev-rewrite-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ev-rewrite-label svg {
    width: 12px;
    height: 12px;
}

.ev-rewrite-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
}

/* CAROUSEL TRACKER - BOTTOM DOCK */
.carousel-tracker {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 24px; /* Increased gap for clarity without lines */
    padding: 8px 0;
    z-index: 100;
    background: none;
    backdrop-filter: none;
}

.tracker-zone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.1);
}

.tracker-bars {
    display: flex;
    gap: 5px;
    align-items: center;
}

.tracker-bar {
    width: 8px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    border-radius: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.tracker-bar.active {
    width: 32px;
}

/* Expanded Invisible Hit Box */
.tracker-bar::after {
    content: '';
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: -5px;
    right: -5px;
}

.tracker-bar:hover {
    background: rgba(255, 255, 255, 0.15);
}

.tracker-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.55);
    transition: none;
    will-change: width;
}

.tracker-fill.running {
    transition: width linear;
}

.slide-nav-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.slide-nav-btn:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.slide-nav-btn svg {
    width: 14px;
    height: 14px;
}

.slide-counter {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 8px;
    min-width: 40px;
    text-align: center;
}

.tracker-pause {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
    cursor: pointer;
    padding: 0;
    margin-left: 0;
    transition: color 0.3s ease;
}

.tracker-pause:hover { color: #fff; }

/* ============================================
   SLIDE 05 - PLAYBOOK SYSTEM
   Multi-archetype carousel.
   Each frame is a distinct visual module.
============================================ */
.pb-wrapper {
    padding: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05); /* Top lip highlight */
}

.pb-header-group { margin-bottom: 24px; }
.pb-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-tertiary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.pb-label::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}
.pb-title {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.pb-visual-stage {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.pb-stage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 8px;
    min-width: 0;
}
.pb-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    overflow-wrap: break-word;
}

/* --- Shared Primitives --- */
.pb-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

.pb-callout {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-left: 2px solid var(--accent);
    border-radius: 0 8px 8px 0;
    margin: 0;
}
.pb-callout.insight { background: linear-gradient(90deg, rgba(0, 255, 65, 0.05) 0%, transparent 100%); border-left-color: var(--accent); }
.pb-callout.urgent { background: linear-gradient(90deg, rgba(255, 59, 48, 0.05) 0%, transparent 100%); border-left-color: var(--alert); }
.pb-callout .co-icon { font-size: 18px; opacity: 0.8; }
.pb-callout .co-body { font-size: 13px; font-weight: 400; line-height: 1.6; color: var(--text-secondary); }
.pb-callout .co-body strong { 
    color: var(--text-primary); font-weight: 500; display: block; margin-bottom: 4px; 
    font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.05em; font-size: 11px;
}

.pb-script {
    margin: 0;
}
.pb-script-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pb-script-label::before { content: ''; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
.pb-script-body {
    padding: 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    font-weight: 300;
}

/* --- Archetype: TABLE --- */
.pb-table-wrap {
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}
.pb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.pb-table th {
    background: rgba(0, 0, 0, 0.3);
    text-align: left;
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pb-table tr {
    transition: background 0.2s ease;
}
.pb-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}
.pb-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.5;
}
.pb-table tr:last-child td { border-bottom: none; }

/* --- Archetype: GRAPH --- */
.pb-graph-container {
    height: 120px;
    margin: 0;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pb-graph-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.pb-graph-label-top {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; position: absolute;
    top: -10px; left: 0; color: var(--text-tertiary);
}
.pb-graph-label-bottom {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; position: absolute;
    bottom: 10px; right: 0; color: var(--alert);
}

/* --- Archetype: DEPOSIT PSYCHOLOGY --- */
.pb-tier-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}
.pb-tier-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex; flex-direction: column;
}
.pb-tier-card.active {
    border-color: rgba(0, 255, 65, 0.3);
    background: rgba(0, 255, 65, 0.05);
}
.pb-tier-card.faded { opacity: 0.4; }
.pb-tier-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 8px; display: block; text-transform: uppercase;
}
.pb-tier-card.active .pb-tier-label { color: var(--accent); }
.pb-tier-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px; display: block;
}
.pb-tier-card.active .pb-tier-title { color: var(--accent); }

/* --- Archetype: CHECKLIST --- */
.pb-checklist {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pb-check-group-header {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    padding: 16px 0 8px 0;
    text-transform: uppercase;
}
.pb-check-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    align-items: center;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
}
.pb-check-item:hover {
    background: rgba(255, 255, 255, 0.04);
}
.pb-check-box {
    width: 16px; height: 16px; border: 1px solid var(--text-tertiary); border-radius: 4px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.pb-check-item.checked {
    border-color: rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.02);
}
.pb-check-item.checked .pb-check-box {
    background: var(--accent); border-color: var(--accent);
}
.pb-check-item.checked .pb-check-box::after {
    content: ''; width: 8px; height: 8px; background: #000; border-radius: 2px;
}
.pb-check-text { font-size: 14px; font-weight: 300; color: var(--text-secondary); transition: all 0.3s ease; }
.pb-check-item.checked .pb-check-text { 
    color: rgba(255,255,255,0.3); 
    text-decoration: line-through; 
    text-decoration-color: rgba(0,255,65,0.4);
}


/* --- Big Quote --- */
.pb-quote-large {
    text-align: center;
    padding: 16px 0;
    max-width: 90%;
    margin: 0 auto;
}
.pb-quote-text {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
}
.pb-quote-author {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* PROTOCOL ANIMATIONS */
@keyframes protocolPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}
/* CONVERGENCE STAGE 3 - FORENSIC UI MODULE */
@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(6px); filter: blur(2px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes targetPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; box-shadow: 0 0 0 transparent; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; box-shadow: 0 0 10px var(--accent); }
}

/* TRACKER POSITIONS */

/* Expert Slide Specific Animations */
@keyframes labSlowSpin { 100% { transform: rotate(360deg); } }
@keyframes labReverseSpin { 100% { transform: rotate(-360deg); } }
@keyframes labPulseDot { 0%, 100% { box-shadow: 0 0 8px rgba(255,59,48,0.5); opacity: 0.7; } 50% { box-shadow: 0 0 20px rgba(255,59,48,0.9); opacity: 1; } }
@keyframes tapeRecBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes tapeCountUp { 0% { content: '0000'; } 100% { content: '2847'; } }
@keyframes edgeScanLine { 0% { top: 0%; } 100% { top: 100%; } }
@keyframes edgeFadeStagger1 { 0% { opacity: 0; transform: translateY(4px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes edgeFadeStagger2 { 0% { opacity: 0; transform: translateY(4px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes edgeFadeStagger3 { 0% { opacity: 0; transform: translateY(4px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes labScannerDrop { 0% { top: -10%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 110%; opacity: 0; } }

/* Protocol Slide Specific Animations */
@keyframes pulseFast { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes slideInFromRight { 0% { transform: translateX(20px); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }

