/* ═══════════════════════════════════════════════════════════
   KPSC PRECISION ANALYST — PRESENTATION STYLES
   Palette: Indigo Ink + Saffron Gold
   Fonts: Cormorant Garamond (display) + Manrope (body) + Noto Sans Kannada
   ═══════════════════════════════════════════════════════════ */

:root {
  --indigo-deep:    #0E0620;
  --indigo-dark:    #1B0A3C;
  --indigo-mid:     #3D1E7C;
  --indigo-light:   #7B68EE;
  --indigo-pale:    #E8E0F0;
  --gold:           #F5A623;
  --gold-light:     #FFD700;
  --gold-pale:      #FFF3D0;
  --cream:          #F7F3EE;
  --cream-dark:     #EDE5D8;
  --ink:            #1A1025;
  --text-light:     #E8E0F0;
  --text-muted:     #9B8EC4;
  --white:          #FFFFFF;
  --slide-w:        100vw;
  --slide-h:        100vh;
  --transition:     0.65s cubic-bezier(0.77, 0, 0.175, 1);
}

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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--indigo-deep);
  font-family: 'Manrope', sans-serif;
  color: var(--text-light);
  cursor: default;
}

/* ─── PROGRESS BAR ─────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--indigo-light));
  width: 0%;
  z-index: 1000;
  transition: width 0.4s ease;
  box-shadow: 0 0 12px var(--gold);
}

/* ─── SLIDE COUNTER ─────────────────────────────────────── */
.slide-counter {
  position: fixed;
  top: 20px; right: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  z-index: 100;
  text-transform: uppercase;
}

/* ─── NAV CONTROLS ──────────────────────────────────────── */
.nav-controls {
  position: fixed;
  bottom: 32px; right: 32px;
  display: flex;
  gap: 10px;
  z-index: 100;
}

.nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(123, 104, 238, 0.4);
  background: rgba(27, 10, 60, 0.8);
  color: var(--indigo-light);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.nav-btn:hover {
  background: var(--indigo-mid);
  border-color: var(--indigo-light);
  color: var(--white);
  transform: scale(1.08);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* ─── SLIDE DOTS ────────────────────────────────────────── */
.slide-dots {
  position: fixed;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 100;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(123, 104, 238, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
  box-shadow: 0 0 8px var(--gold);
}

.dot:hover { background: var(--indigo-light); }

/* ─── PRESENTATION CONTAINER ────────────────────────────── */
.presentation {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* ─── BASE SLIDE ────────────────────────────────────────── */
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

/* ─── SLIDE INNER ───────────────────────────────────────── */
.slide-inner {
  width: 100%;
  max-width: 1100px;
  padding: 60px 80px;
  position: relative;
  z-index: 2;
}

/* ─── SLIDE LABEL ───────────────────────────────────────── */
.slide-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slide-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
}

.new-badge {
  color: var(--gold-light);
}

.new-badge::after {
  content: '★ NEW';
  font-size: 9px;
  background: var(--gold);
  color: var(--indigo-deep);
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
  font-weight: 800;
}

/* ─── SLIDE HEADINGS ────────────────────────────────────── */
.slide-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.slide-heading em {
  font-style: italic;
  color: var(--gold);
}

.slide-heading.dark {
  color: var(--indigo-deep);
}

.slide-heading.dark em {
  color: var(--indigo-mid);
}

/* ─── SLIDE NUMBER DISPLAY ──────────────────────────────── */
.slide-number-display {
  position: absolute;
  bottom: 40px; right: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(123, 104, 238, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.slide-number-display.dark {
  color: rgba(61, 30, 124, 0.08);
}

/* ─── KANNADA TEXT ──────────────────────────────────────── */
.kannada-text {
  font-family: 'Noto Sans Kannada', sans-serif;
}

/* ─── KANNADA WATERMARK ─────────────────────────────────── */
.kannada-watermark {
  position: absolute;
  top: 50%; left: -20px;
  transform: translateY(-50%);
  font-family: 'Noto Sans Kannada', sans-serif;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 700;
  color: rgba(123, 104, 238, 0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.kannada-watermark.right {
  left: auto;
  right: -20px;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE THEMES
   ═══════════════════════════════════════════════════════════ */

/* TITLE SLIDE */
.slide-title {
  background: var(--indigo-deep);
  justify-content: flex-start;
  align-items: center;
}

.slide-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(61, 30, 124, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(123, 104, 238, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 35%);
  z-index: 0;
}

.title-content {
  padding: 0 80px;
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.version-badge {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.display-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--text-light);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.display-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.title-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
}

.title-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.exam-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.exam-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-light);
  border: 1px solid rgba(123, 104, 238, 0.4);
  padding: 4px 10px;
  border-radius: 2px;
}

.title-lang {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

/* DARK SLIDE */
.slide-dark {
  background: var(--indigo-dark);
}

/* LIGHT SLIDE */
.slide-light {
  background: var(--cream);
}

.slide-light .slide-label {
  color: var(--indigo-mid);
}

.slide-light .slide-label::before {
  background: var(--indigo-mid);
}

/* ACCENT SLIDE */
.slide-accent {
  background: linear-gradient(135deg, var(--indigo-dark) 0%, #2A1060 100%);
}

/* CHAIN SLIDE */
.slide-chain {
  background: var(--indigo-deep);
  background-image: radial-gradient(circle at 50% 50%, rgba(61, 30, 124, 0.5) 0%, transparent 70%);
}

/* DEPTH SLIDE */
.slide-depth {
  background: linear-gradient(160deg, #0E0620 0%, #1B0A3C 60%, #2A1060 100%);
}

/* PROHIBITIONS SLIDE */
.slide-prohibitions {
  background: #0A0118;
}

/* CLOSING SLIDE */
.slide-closing {
  background: var(--indigo-deep);
  justify-content: flex-start;
  align-items: center;
}

.closing-content {
  padding: 0 80px;
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.closing-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 36px;
}

.closing-heading em {
  font-style: italic;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 2 — MANDATE GRID
   ═══════════════════════════════════════════════════════════ */
.mandate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.mandate-card {
  background: rgba(123, 104, 238, 0.08);
  border: 1px solid rgba(123, 104, 238, 0.2);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.3s ease;
}

.mandate-card:hover {
  border-color: rgba(123, 104, 238, 0.5);
}

.mandate-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.mandate-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}

.kannada-quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kannada-quote .kannada-text {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
}

.quote-translation {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 3 — ASSUMPTIONS
   ═══════════════════════════════════════════════════════════ */
.assumptions-block {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 32px;
  box-shadow: 0 4px 40px rgba(61, 30, 124, 0.12);
}

.block-title {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--indigo-mid);
  margin-bottom: 20px;
}

.assumption-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assumption-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.assumption-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--indigo-light);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}

.assumption-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #3A2A5A;
  font-weight: 400;
  padding-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 4 — CONSTRAINTS
   ═══════════════════════════════════════════════════════════ */
.constraints-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.constraint-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(123, 104, 238, 0.15);
  border-radius: 4px;
  padding: 14px 16px;
  transition: all 0.25s ease;
}

.constraint-item:hover {
  background: rgba(123, 104, 238, 0.1);
  border-color: rgba(123, 104, 238, 0.4);
}

.constraint-highlight {
  grid-column: 1 / -1;
  background: rgba(245, 166, 35, 0.08);
  border-color: rgba(245, 166, 35, 0.3);
}

.constraint-code {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--indigo-light);
  background: rgba(123, 104, 238, 0.15);
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  height: fit-content;
}

.constraint-code.gold {
  color: var(--gold);
  background: rgba(245, 166, 35, 0.15);
}

.constraint-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.constraint-item p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 5 — TAG GRID
   ═══════════════════════════════════════════════════════════ */
.tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.tag-card {
  border-radius: 4px;
  padding: 16px;
  border: 1px solid transparent;
  transition: transform 0.25s ease;
}

.tag-card:hover { transform: translateY(-2px); }

.tag-sthira    { background: rgba(100, 200, 120, 0.08); border-color: rgba(100, 200, 120, 0.25); }
.tag-chalana   { background: rgba(245, 166, 35, 0.08);  border-color: rgba(245, 166, 35, 0.25); }
.tag-parika    { background: rgba(123, 104, 238, 0.1);  border-color: rgba(123, 104, 238, 0.3); }
.tag-vastavamsha { background: rgba(180, 120, 255, 0.08); border-color: rgba(180, 120, 255, 0.25); }
.tag-sankhya   { background: rgba(255, 100, 100, 0.08); border-color: rgba(255, 100, 100, 0.25); }
.tag-nakshe    { background: rgba(80, 180, 220, 0.08);  border-color: rgba(80, 180, 220, 0.25); }

.tag-kannada {
  display: block;
  font-family: 'Noto Sans Kannada', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.tag-name {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.tag-card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.roi-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(123, 104, 238, 0.15);
  border-radius: 4px;
}

.roi {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 2px;
}

.roi-high   { background: rgba(100, 220, 100, 0.15); color: #7EE87E; }
.roi-medium { background: rgba(245, 166, 35, 0.15);  color: var(--gold); }
.roi-low    { background: rgba(150, 150, 150, 0.15); color: #999; }

.roi-sep { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   SLIDE 6 — REASONING CHAIN
   ═══════════════════════════════════════════════════════════ */
.chain-visual {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  overflow-x: auto;
  padding: 20px 0;
}

.chain-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  animation: chainReveal 0.5s ease forwards;
  opacity: 0;
}

.chain-node[data-delay="0"] { animation-delay: 0.1s; }
.chain-node[data-delay="1"] { animation-delay: 0.3s; }
.chain-node[data-delay="2"] { animation-delay: 0.5s; }
.chain-node[data-delay="3"] { animation-delay: 0.7s; }
.chain-node[data-delay="4"] { animation-delay: 0.9s; }

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

.chain-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(245, 166, 35, 0.5);
}

.chain-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.chain-desc {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  max-width: 100px;
  line-height: 1.4;
}

.chain-arrow {
  font-size: 20px;
  color: rgba(123, 104, 238, 0.5);
  flex-shrink: 0;
  padding: 0 8px;
  margin-bottom: 28px;
}

.chain-rules {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chain-rule {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(123, 104, 238, 0.15);
  border-radius: 4px;
  padding: 12px 16px;
}

.rule-icon { font-size: 16px; flex-shrink: 0; }

.chain-rule p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.chain-rule strong { color: var(--text-light); }
.chain-rule em { color: var(--gold); font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 7 — PROTOCOL STEPS
   ═══════════════════════════════════════════════════════════ */
.protocol-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.protocol-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(61, 30, 124, 0.06);
  border: 1px solid rgba(61, 30, 124, 0.2);
  border-radius: 4px;
  padding: 14px 16px;
  transition: all 0.25s ease;
}

.protocol-step:hover {
  background: rgba(61, 30, 124, 0.12);
  border-color: rgba(61, 30, 124, 0.4);
}

.step-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--indigo-mid);
  background: rgba(61, 30, 124, 0.12);
  border: 1px solid rgba(61, 30, 124, 0.3);
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  height: fit-content;
  margin-top: 2px;
}

.step-content strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #2A1A4A;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 11px;
  color: #6A5A8A;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 8 — TRIGGER WHEEL
   ═══════════════════════════════════════════════════════════ */
.trigger-wheel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trigger-item {
  background: rgba(123, 104, 238, 0.06);
  border: 1px solid rgba(123, 104, 238, 0.18);
  border-radius: 4px;
  padding: 16px 14px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: default;
}

.trigger-item:hover {
  background: rgba(123, 104, 238, 0.14);
  border-color: rgba(123, 104, 238, 0.4);
  transform: translateY(-2px);
}

.trigger-kannada {
  display: block;
  font-family: 'Noto Sans Kannada', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.trigger-en {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-light);
  margin-bottom: 8px;
}

.trigger-item p {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 9 — DEPTH LEVELS
   ═══════════════════════════════════════════════════════════ */
.depth-levels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.depth-level {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(123, 104, 238, 0.12);
  border-left: 3px solid var(--depth-color);
  border-radius: 0 4px 4px 0;
  padding: 14px 20px;
  transition: all 0.25s ease;
}

.depth-level:hover {
  background: rgba(255,255,255,0.06);
}

.depth-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--depth-color);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.depth-info {
  flex: 1;
}

.depth-info strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.depth-info p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.depth-bar {
  height: 3px;
  background: var(--depth-color);
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: width 0.8s ease;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 10 — SECTIONS GRID
   ═══════════════════════════════════════════════════════════ */
.sections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.section-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(61, 30, 124, 0.05);
  border: 1px solid rgba(61, 30, 124, 0.15);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 12px;
  color: #3A2A5A;
  transition: all 0.2s ease;
}

.section-item:hover {
  background: rgba(61, 30, 124, 0.1);
}

.section-mandatory {
  background: rgba(245, 166, 35, 0.06);
  border-color: rgba(245, 166, 35, 0.25);
}

.section-mandatory:hover {
  background: rgba(245, 166, 35, 0.12);
}

.sec-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--indigo-mid);
  flex-shrink: 0;
  width: 36px;
}

.sec-num.gold { color: var(--gold); }

.section-item em {
  font-style: italic;
  color: #8A7AAA;
  font-size: 11px;
}

.section-item strong {
  font-weight: 700;
  color: #B8860B;
}

.sections-note {
  font-size: 11px;
  color: #8A7AAA;
  font-style: italic;
  text-align: center;
  padding: 8px;
  border-top: 1px solid rgba(61, 30, 124, 0.1);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 11 — SUBJECTS GRID
   ═══════════════════════════════════════════════════════════ */
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.subject-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(123, 104, 238, 0.15);
  border-radius: 4px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s ease;
}

.subject-card:hover {
  background: rgba(123, 104, 238, 0.1);
  border-color: rgba(123, 104, 238, 0.35);
  transform: translateY(-1px);
}

.subject-highlight {
  background: rgba(245, 166, 35, 0.08);
  border-color: rgba(245, 166, 35, 0.3);
}

.subject-icon { font-size: 18px; }

.subject-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
}

.subject-card small {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
}

.grid-footer-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  background: rgba(245, 166, 35, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.footer-note {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 12 — CALIBRATION TESTS
   ═══════════════════════════════════════════════════════════ */
.tests-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.test-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(123, 104, 238, 0.2);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s ease;
}

.test-card:hover {
  border-color: rgba(123, 104, 238, 0.5);
  background: rgba(123, 104, 238, 0.08);
}

.test-new {
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.05);
}

.test-new:hover {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.1);
}

.test-number {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--indigo-light);
}

.new-label { color: var(--gold) !important; }

.test-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.2;
}

.test-question {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.test-action {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  padding-top: 8px;
  border-top: 1px solid rgba(123, 104, 238, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 13 — PROHIBITIONS
   ═══════════════════════════════════════════════════════════ */
.prohibitions-container {
  height: 340px;
  overflow: hidden;
  position: relative;
}

.prohibitions-container::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, #0A0118);
  pointer-events: none;
}

.prohibitions-scroll {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: scrollProhibitions 20s linear infinite;
  animation-play-state: running;
}

.prohibitions-scroll:hover {
  animation-play-state: paused;
}

@keyframes scrollProhibitions {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.prohibition-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255, 80, 80, 0.12);
  border-left: 3px solid rgba(255, 80, 80, 0.4);
  border-radius: 0 4px 4px 0;
  padding: 10px 14px;
}

.p-num {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 100, 100, 0.7);
  flex-shrink: 0;
  width: 36px;
  letter-spacing: 0.05em;
}

.prohibition-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 14 — DEPLOY STEPS
   ═══════════════════════════════════════════════════════════ */
.deploy-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.deploy-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.deploy-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}

.deploy-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 4px;
}

.deploy-step strong {
  color: var(--text-light);
  font-weight: 600;
}

.closing-mandate {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.closing-mandate .kannada-text {
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
}

.mandate-translation {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.closing-tags { margin-top: 0; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .slide-inner { padding: 40px 40px; }
  .title-content { padding: 0 40px; }
  .closing-content { padding: 0 40px; }
  .mandate-grid { grid-template-columns: 1fr; }
  .constraints-grid { grid-template-columns: 1fr; }
  .tag-grid { grid-template-columns: repeat(2, 1fr); }
  .trigger-wheel { grid-template-columns: repeat(2, 1fr); }
  .tests-layout { grid-template-columns: 1fr; }
  .subjects-grid { grid-template-columns: repeat(2, 1fr); }
  .protocol-steps { grid-template-columns: 1fr; }
  .sections-grid { grid-template-columns: 1fr; }
  .chain-visual { flex-wrap: wrap; justify-content: center; }
  .chain-arrow { display: none; }
}

@media (max-width: 600px) {
  .slide-inner { padding: 24px 20px; }
  .title-content { padding: 0 20px; }
  .closing-content { padding: 0 20px; }
  .tag-grid { grid-template-columns: 1fr; }
  .trigger-wheel { grid-template-columns: repeat(2, 1fr); }
  .subjects-grid { grid-template-columns: 1fr 1fr; }
  .slide-number-display { font-size: 80px; }
  .nav-controls { bottom: 16px; right: 16px; }
  .slide-dots { bottom: 20px; }
}