/* ============================================
   AGENTIC AI PRESENTATION — DESIGN SYSTEM
   Palette: Indigo Ink + Acid Neon accents
   Fonts: Clash Display + Syne + Manrope
   ============================================ */

:root {
  --bg:        #0A0612;
  --bg-2:      #110920;
  --bg-card:   #160D2A;
  --bg-card-2: #1E1040;
  --purple-1:  #7B68EE;
  --purple-2:  #A78BFA;
  --purple-3:  #C4B5FD;
  --accent:    #CCFF00;
  --accent-2:  #FF3CAC;
  --text-1:    #F0EBF8;
  --text-2:    #C4B5FD;
  --text-3:    #8B7EC8;
  --border:    rgba(123,104,238,0.2);
  --border-2:  rgba(123,104,238,0.4);
  --glow:      rgba(123,104,238,0.15);
  --glow-2:    rgba(204,255,0,0.08);
  --radius:    16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text-1);
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ============ GRID BACKGROUND ============ */
.grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(123,104,238,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,104,238,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ============ ORBS ============ */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.orb-1 { width: 500px; height: 500px; background: rgba(123,104,238,0.18); top: -150px; right: -100px; animation: orbFloat 8s ease-in-out infinite; }
.orb-2 { width: 350px; height: 350px; background: rgba(204,255,0,0.06); bottom: -100px; left: -80px; animation: orbFloat 10s ease-in-out infinite reverse; }
.orb-3 { width: 250px; height: 250px; background: rgba(255,60,172,0.08); top: 50%; left: 40%; animation: orbFloat 12s ease-in-out infinite 2s; }
.orb-purple { width: 400px; height: 400px; background: rgba(123,104,238,0.12); top: -100px; right: -80px; animation: orbFloat 9s ease-in-out infinite; }
.orb-blue   { width: 400px; height: 400px; background: rgba(99,179,237,0.08); bottom: -80px; left: -60px; animation: orbFloat 11s ease-in-out infinite reverse; }
.orb-red    { width: 350px; height: 350px; background: rgba(255,60,172,0.1); top: -80px; right: -60px; animation: orbFloat 9s ease-in-out infinite; }

@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.05); }
  66%      { transform: translate(-20px,15px) scale(0.97); }
}

/* ============ PROGRESS BAR ============ */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 100;
  background: linear-gradient(90deg, var(--purple-1), var(--accent));
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 12px rgba(204,255,0,0.4);
}

/* ============ SLIDE COUNTER ============ */
.slide-counter {
  position: fixed; bottom: 32px; right: 80px; z-index: 100;
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--text-3); letter-spacing: 0.1em;
}
.slide-counter .sep { margin: 0 4px; color: var(--border-2); }

/* ============ NAV DOTS ============ */
.nav-dots {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 100;
}
.nav-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-3); cursor: pointer;
  transition: all 0.3s ease; border: none;
}
.nav-dot.active {
  background: var(--purple-2); width: 24px; border-radius: 3px;
  box-shadow: 0 0 8px var(--purple-1);
}
.nav-dot:hover { background: var(--purple-3); }

/* ============ ARROW BUTTONS ============ */
.arrow-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(123,104,238,0.1); border: 1px solid var(--border);
  color: var(--text-2); cursor: pointer; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; backdrop-filter: blur(8px);
}
.arrow-btn svg { width: 20px; height: 20px; }
.arrow-btn:hover { background: rgba(123,104,238,0.25); border-color: var(--purple-1); color: var(--text-1); box-shadow: 0 0 20px var(--glow); }
.arrow-btn:disabled { opacity: 0.2; cursor: not-allowed; }
.arrow-prev { left: 20px; }
.arrow-next { right: 20px; }

/* ============ SLIDES CONTAINER ============ */
.slides-container {
  width: 100vw; height: 100vh;
  position: relative;
}

/* ============ SLIDE BASE ============ */
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
  transform: translateX(60px);
  overflow: hidden;
}
.slide.active {
  opacity: 1; pointer-events: all; transform: translateX(0);
}
.slide.exit-left {
  opacity: 0; transform: translateX(-60px);
}

/* ============ SLIDE INNER ============ */
.slide-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px;
  padding: 40px 60px 60px;
  height: 100vh;
  display: flex; flex-direction: column;
}

/* ============ SLIDE HEADER ============ */
.slide-header {
  margin-bottom: 32px;
}
.slide-num-tag {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 8px;
}
.slide-title {
  font-family: 'Clash Display', sans-serif; font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: var(--text-1); line-height: 1.1;
  margin-bottom: 8px;
}
.slide-subtitle {
  font-size: 15px; color: var(--text-3); font-weight: 400;
}

/* ============================================================
   SLIDE 1 — TITLE
   ============================================================ */
.slide-title-slide {
  background: var(--bg);
}
.title-content {
  position: relative; z-index: 2;
  max-width: 620px; padding: 60px;
}
.title-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(204,255,0,0.3);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
  background: rgba(204,255,0,0.05);
}
.title-main {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700; line-height: 0.95;
  margin-bottom: 24px;
}
.title-main .line-1 {
  display: block; font-size: clamp(56px, 7vw, 96px);
  background: linear-gradient(135deg, #E8E0F0 0%, #A78BFA 50%, #7B68EE 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-main .line-2 {
  display: block; font-size: clamp(40px, 5vw, 68px);
  color: var(--text-2);
}
.title-main .line-3 {
  display: block; font-size: clamp(40px, 5vw, 68px);
  color: var(--text-3);
}
.title-sub {
  font-size: 16px; line-height: 1.7; color: var(--text-3);
  max-width: 480px; margin-bottom: 40px;
}
.title-stats-row {
  display: flex; align-items: center; gap: 0;
}
.ts-item { display: flex; flex-direction: column; gap: 4px; padding: 0 24px; }
.ts-item:first-child { padding-left: 0; }
.ts-num {
  font-family: 'Clash Display', sans-serif; font-size: 28px; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--purple-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ts-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }
.ts-divider { width: 1px; height: 40px; background: var(--border); }

/* Title Visual */
.title-visual {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px; z-index: 1;
}
.neural-ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--border);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.ring-outer { width: 380px; height: 380px; animation: ringRotate 20s linear infinite; border-color: rgba(123,104,238,0.2); }
.ring-mid   { width: 280px; height: 280px; animation: ringRotate 15s linear infinite reverse; border-color: rgba(167,139,250,0.3); border-style: dashed; }
.ring-inner { width: 180px; height: 180px; animation: ringRotate 10s linear infinite; border-color: rgba(123,104,238,0.4); }
@keyframes ringRotate { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.neural-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  animation: corePulse 3s ease-in-out infinite;
}
@keyframes corePulse { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.1); } }

.node {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--purple-2); box-shadow: 0 0 12px var(--purple-1);
  animation: nodePulse 2s ease-in-out infinite;
}
.n1 { top: 10%; left: 50%; animation-delay: 0s; }
.n2 { top: 25%; right: 8%; animation-delay: 0.3s; }
.n3 { top: 70%; right: 12%; animation-delay: 0.6s; }
.n4 { bottom: 10%; left: 50%; animation-delay: 0.9s; }
.n5 { top: 70%; left: 8%; animation-delay: 1.2s; }
.n6 { top: 25%; left: 12%; animation-delay: 1.5s; }
@keyframes nodePulse { 0%,100% { opacity:0.6; transform:scale(1); } 50% { opacity:1; transform:scale(1.4); } }

.conn {
  position: absolute; background: linear-gradient(90deg, transparent, var(--purple-1), transparent);
  height: 1px; transform-origin: left center;
  animation: connPulse 3s ease-in-out infinite;
}
.c1 { width: 120px; top: 22%; left: 18%; transform: rotate(30deg); animation-delay: 0s; }
.c2 { width: 100px; top: 65%; left: 20%; transform: rotate(-30deg); animation-delay: 1s; }
.c3 { width: 110px; top: 45%; right: 15%; transform: rotate(15deg); animation-delay: 2s; }
@keyframes connPulse { 0%,100% { opacity:0.2; } 50% { opacity:0.7; } }

/* ============================================================
   SLIDE 2 — WHAT IS AGENTIC AI
   ============================================================ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  flex: 1; align-items: start;
}
.definition-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  margin-bottom: 20px;
  display: flex; gap: 16px; align-items: flex-start;
}
.def-icon { width: 40px; height: 40px; flex-shrink: 0; }
.def-text { font-size: 15px; line-height: 1.7; color: var(--text-2); }
.def-text strong { color: var(--text-1); }

.key-traits { display: flex; flex-direction: column; gap: 12px; }
.trait {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-2); line-height: 1.5;
}
.trait strong { color: var(--text-1); }
.trait-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 5px;
  box-shadow: 0 0 8px rgba(204,255,0,0.5);
}

.evolution-chart {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.evo-title {
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 20px;
}
.evo-steps { display: flex; flex-direction: column; gap: 16px; }
.evo-step { display: flex; flex-direction: column; gap: 6px; }
.evo-bar {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--bg-card-2), var(--purple-1));
  transition: width 1s ease;
}
.active-step .evo-bar {
  background: linear-gradient(90deg, var(--purple-1), var(--accent));
  box-shadow: 0 0 12px rgba(204,255,0,0.3);
}
.evo-label { display: flex; justify-content: space-between; align-items: center; }
.evo-era { font-size: 13px; font-weight: 600; color: var(--text-2); }
.active-step .evo-era { color: var(--accent); }
.evo-year { font-size: 11px; color: var(--text-3); }
.evo-desc { font-size: 12px; color: var(--text-3); }

/* ============================================================
   SLIDE 3 — HOW IT WORKS
   ============================================================ */
.loop-diagram {
  position: relative; flex: 1;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.loop-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 2;
}
.loop-core {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
  border: 2px solid var(--purple-1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(123,104,238,0.3), inset 0 0 20px rgba(123,104,238,0.1);
  animation: corePulse 3s ease-in-out infinite;
}
.lc-label { font-family: 'Clash Display', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-1); }
.lc-sub { font-size: 10px; color: var(--text-3); letter-spacing: 0.1em; }

.loop-steps {
  position: relative; width: 600px; height: 320px;
}
.loop-step {
  position: absolute; width: 160px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.loop-step:hover { border-color: var(--purple-1); box-shadow: 0 0 20px var(--glow); }
.ls-top    { top: 0; left: 50%; transform: translateX(-50%); }
.ls-right  { top: 50%; right: 0; transform: translateY(-50%); }
.ls-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.ls-left   { top: 50%; left: 0; transform: translateY(-50%); }

.ls-icon { width: 32px; height: 32px; margin-bottom: 8px; }
.ls-num { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: 0.2em; margin-bottom: 4px; }
.ls-name { font-family: 'Clash Display', sans-serif; font-size: 16px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.ls-desc { font-size: 11px; color: var(--text-3); line-height: 1.5; }

.tools-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; padding-top: 16px;
}
.tool-chip {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 16px;
  font-size: 13px; color: var(--text-2);
  transition: all 0.3s;
}
.tool-chip:hover { border-color: var(--purple-1); color: var(--text-1); background: var(--bg-card-2); }

/* ============================================================
   SLIDE 4 — KEY COMPONENTS
   ============================================================ */
.components-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  flex: 1;
}
.comp-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: all 0.3s ease; cursor: default;
  position: relative; overflow: hidden;
}
.comp-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(123,104,238,0.05), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.comp-card:hover { border-color: var(--purple-1); transform: translateY(-3px); box-shadow: 0 8px 30px var(--glow); }
.comp-card:hover::before { opacity: 1; }
.cc-icon { width: 48px; height: 48px; margin-bottom: 12px; }
.cc-name { font-family: 'Clash Display', sans-serif; font-size: 17px; font-weight: 600; color: var(--text-1); margin-bottom: 8px; }
.cc-desc { font-size: 12px; color: var(--text-3); line-height: 1.6; margin-bottom: 12px; }
.cc-tag { font-size: 10px; color: var(--purple-2); font-family: 'Syne', sans-serif; letter-spacing: 0.05em; }

/* ============================================================
   SLIDE 5 — COMPARISON TABLE
   ============================================================ */
.comparison-table {
  flex: 1; display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.ct-header, .ct-row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
}
.ct-header {
  background: var(--bg-card-2); padding: 14px 20px;
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3);
  border-bottom: 1px solid var(--border);
}
.ct-row {
  padding: 14px 20px; border-bottom: 1px solid rgba(123,104,238,0.08);
  transition: background 0.2s;
}
.ct-row:last-child { border-bottom: none; }
.ct-row:hover { background: rgba(123,104,238,0.05); }
.ct-feature { font-size: 14px; color: var(--text-2); font-weight: 500; }
.ct-trad, .ct-agent { display: flex; align-items: center; }

.badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 500;
}
.badge.bad  { background: rgba(255,60,172,0.1); color: #FF6EB4; border: 1px solid rgba(255,60,172,0.2); }
.badge.good { background: rgba(204,255,0,0.08); color: var(--accent); border: 1px solid rgba(204,255,0,0.2); }

.vs-callout {
  margin-top: 16px; padding: 14px 20px;
  background: rgba(123,104,238,0.08); border: 1px solid var(--border);
  border-radius: var(--radius-sm); display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-2);
}
.vs-callout strong { color: var(--text-1); }

/* ============================================================
   SLIDE 6 — USE CASES
   ============================================================ */
.use-cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  flex: 1;
}
.uc-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.uc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity 0.3s;
}
.uc-healthcare::after { background: linear-gradient(90deg, #7B68EE, #A78BFA); }
.uc-finance::after    { background: linear-gradient(90deg, #CCFF00, #7B68EE); }
.uc-software::after   { background: linear-gradient(90deg, #FF3CAC, #7B68EE); }
.uc-customer::after   { background: linear-gradient(90deg, #7B68EE, #CCFF00); }
.uc-telecom::after    { background: linear-gradient(90deg, #A78BFA, #FF3CAC); }
.uc-marketing::after  { background: linear-gradient(90deg, #CCFF00, #FF3CAC); }
.uc-card:hover { border-color: var(--purple-1); transform: translateY(-3px); box-shadow: 0 8px 24px var(--glow); }
.uc-card:hover::after { opacity: 1; }

.uc-icon { font-size: 28px; }
.uc-industry { font-family: 'Clash Display', sans-serif; font-size: 16px; font-weight: 600; color: var(--text-1); }
.uc-items { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.uc-item { font-size: 12px; color: var(--text-3); padding-left: 12px; position: relative; line-height: 1.4; }
.uc-item::before { content: '→'; position: absolute; left: 0; color: var(--purple-2); font-size: 10px; top: 1px; }
.uc-stat { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.05em; }

/* ============================================================
   SLIDE 7 — REAL-WORLD EXAMPLES
   ============================================================ */
.examples-list { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.ex-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  display: grid; grid-template-columns: 120px 1fr auto;
  align-items: center; gap: 24px;
  transition: all 0.3s;
}
.ex-card:hover { border-color: var(--purple-1); box-shadow: 0 4px 20px var(--glow); }
.ex-logo {
  font-family: 'Clash Display', sans-serif; font-size: 15px; font-weight: 700;
  padding: 10px 14px; border-radius: var(--radius-sm); text-align: center;
}
.ex-openai    { background: rgba(255,255,255,0.05); color: #E8E0F0; border: 1px solid rgba(255,255,255,0.1); }
.ex-salesforce{ background: rgba(0,161,224,0.1); color: #60C8F0; border: 1px solid rgba(0,161,224,0.2); }
.ex-microsoft { background: rgba(0,120,212,0.1); color: #60A0E0; border: 1px solid rgba(0,120,212,0.2); }
.ex-google    { background: rgba(66,133,244,0.1); color: #80B0F8; border: 1px solid rgba(66,133,244,0.2); }
.ex-product { font-family: 'Clash Display', sans-serif; font-size: 16px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; }
.ex-desc { font-size: 13px; color: var(--text-3); line-height: 1.5; }
.ex-impact {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--accent); white-space: nowrap; text-align: right;
  padding: 6px 12px; background: rgba(204,255,0,0.06);
  border: 1px solid rgba(204,255,0,0.15); border-radius: 100px;
}

/* ============================================================
   SLIDE 8 — BENEFITS
   ============================================================ */
.benefits-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; flex: 1; }
.big-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.bsc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  text-align: center; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.bsc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.bsc-1::before { background: linear-gradient(90deg, var(--purple-1), var(--accent)); }
.bsc-2::before { background: linear-gradient(90deg, var(--accent), var(--purple-2)); }
.bsc-3::before { background: linear-gradient(90deg, var(--purple-2), var(--accent-2)); }
.bsc-4::before { background: linear-gradient(90deg, var(--accent-2), var(--purple-1)); }
.bsc:hover { border-color: var(--purple-1); transform: translateY(-2px); box-shadow: 0 8px 24px var(--glow); }
.bsc-num {
  font-family: 'Clash Display', sans-serif; font-size: 40px; font-weight: 700;
  background: linear-gradient(135deg, var(--text-1), var(--purple-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.bsc-label { font-size: 13px; font-weight: 600; color: var(--text-2); margin: 6px 0 4px; }
.bsc-sub { font-size: 11px; color: var(--text-3); }

.benefit-bars {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.bb-title {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3);
  margin-bottom: 4px;
}
.bb-item { display: flex; flex-direction: column; gap: 6px; }
.bb-label { font-size: 13px; color: var(--text-2); }
.bb-bar-wrap { position: relative; }
.bb-bar {
  height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, var(--purple-1), var(--accent));
  width: var(--w); position: relative;
  animation: barGrow 1.5s ease forwards;
  box-shadow: 0 0 8px rgba(123,104,238,0.3);
}
.bb-bar span {
  position: absolute; right: -28px; top: -4px;
  font-size: 11px; color: var(--text-3);
}
@keyframes barGrow { from { width: 0; } to { width: var(--w); } }

/* ============================================================
   SLIDE 9 — CHALLENGES
   ============================================================ */
.challenges-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; flex: 1; }
.ch-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.ch-category {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.ch-technical .ch-category { color: var(--accent-2); }
.ch-ethical .ch-category { color: var(--purple-2); }
.ch-items { display: flex; flex-direction: column; gap: 16px; }
.ch-item { display: flex; gap: 14px; align-items: flex-start; }
.ch-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.ch-warn { background: rgba(255,60,172,0.1); border: 1px solid rgba(255,60,172,0.2); }
.ch-eth  { background: rgba(123,104,238,0.1); border: 1px solid var(--border); }
.ch-name { font-size: 14px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.ch-detail { font-size: 12px; color: var(--text-3); line-height: 1.5; }
.ch-callout {
  margin-top: 16px; padding: 14px 20px;
  background: rgba(255,60,172,0.06); border: 1px solid rgba(255,60,172,0.15);
  border-radius: var(--radius-sm); display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-2);
}
.ch-callout strong { color: var(--text-1); }

/* ============================================================
   SLIDE 10 — TIMELINE
   ============================================================ */
.timeline {
  position: relative; flex: 1;
  display: flex; flex-direction: column; gap: 0;
  padding: 0 60px;
}
.tl-line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--purple-1), var(--accent), var(--purple-2), var(--accent));
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(123,104,238,0.4);
}
.tl-item {
  display: flex; align-items: center; position: relative;
  margin-bottom: 20px;
}
.tl-left  { justify-content: flex-end; padding-right: calc(50% + 30px); }
.tl-right { justify-content: flex-start; padding-left: calc(50% + 30px); }
.tl-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--bg);
  box-shadow: 0 0 12px rgba(204,255,0,0.5);
  z-index: 2;
}
.tl-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  max-width: 340px; transition: all 0.3s;
}
.tl-card:hover { border-color: var(--purple-1); box-shadow: 0 4px 20px var(--glow); }
.tl-year {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.15em; margin-bottom: 4px;
}
.tl-title { font-family: 'Clash Display', sans-serif; font-size: 16px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; }
.tl-desc { font-size: 12px; color: var(--text-3); line-height: 1.6; }

/* ============================================================
   SLIDE 11 — MARKET INFOGRAPHIC
   ============================================================ */
.infographic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px; flex: 1;
}
.ig-big {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.ig-market { grid-column: 1; grid-row: 1; }
.ig-donut-wrap { grid-column: 2; grid-row: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; align-items: center; }
.ig-stats-col { grid-column: 1; grid-row: 2; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; justify-content: space-around; }
.ig-sectors { grid-column: 2; grid-row: 2; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }

.ig-label { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.ig-value { font-family: 'Clash Display', sans-serif; font-size: 52px; font-weight: 700; line-height: 1; background: linear-gradient(135deg, var(--text-1), var(--purple-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ig-sub { font-size: 13px; color: var(--text-3); margin-bottom: 16px; }
.ig-growth-bar { position: relative; height: 8px; background: var(--bg-card-2); border-radius: 4px; overflow: visible; }
.igb-fill { height: 100%; width: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--purple-1), var(--accent)); box-shadow: 0 0 12px rgba(204,255,0,0.3); animation: barGrow 2s ease forwards; }
.igb-label { position: absolute; right: 0; top: -20px; font-size: 11px; color: var(--accent); font-weight: 700; }

.ig-donut-label { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.ig-donut { width: 120px; height: 120px; }
.ig-donut-legend { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; width: 100%; }
.idl-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-3); }
.idl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.ig-stat-item { text-align: center; }
.ig-stat-num { font-family: 'Clash Display', sans-serif; font-size: 36px; font-weight: 700; background: linear-gradient(135deg, var(--accent), var(--purple-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ig-stat-label, .ig-stat-num-sub { font-size: 12px; color: var(--text-3); }

.ig-sectors-title { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.ig-sector-bar { display: grid; grid-template-columns: 110px 1fr 36px; align-items: center; gap: 10px; margin-bottom: 10px; }
.isb-label { font-size: 12px; color: var(--text-2); }
.isb-track { height: 6px; background: var(--bg-card-2); border-radius: 3px; overflow: hidden; }
.isb-fill { height: 100%; width: var(--w); border-radius: 3px; background: linear-gradient(90deg, var(--purple-1), var(--purple-2)); animation: barGrow 1.5s ease forwards; }
.isb-pct { font-size: 11px; color: var(--text-3); text-align: right; }

/* ============================================================
   SLIDE 12 — THANK YOU
   ============================================================ */
.slide-thankyou {
  background: var(--bg);
}
.ty-content {
  position: relative; z-index: 2;
  max-width: 580px; padding: 60px;
}
.ty-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(204,255,0,0.3);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
  background: rgba(204,255,0,0.05);
}
.ty-heading {
  font-family: 'Clash Display', sans-serif; font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; line-height: 1.1; margin-bottom: 20px; color: var(--text-1);
}
.ty-heading span {
  background: linear-gradient(135deg, var(--purple-2), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ty-sub { font-size: 15px; color: var(--text-3); line-height: 1.7; margin-bottom: 28px; }
.ty-sub em { color: var(--purple-2); font-style: normal; }
.ty-quote {
  background: var(--bg-card); border-left: 3px solid var(--purple-1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin-bottom: 28px;
  display: flex; gap: 12px; align-items: flex-start;
}
.ty-quote-mark { font-family: 'Clash Display', sans-serif; font-size: 40px; color: var(--purple-1); line-height: 0.8; }
.ty-quote-text { font-size: 15px; color: var(--text-2); line-height: 1.6; font-style: italic; }
.ty-stats-final { display: flex; gap: 0; margin-bottom: 24px; }
.tsf-item { display: flex; flex-direction: column; gap: 4px; padding: 0 20px; border-right: 1px solid var(--border); }
.tsf-item:first-child { padding-left: 0; }
.tsf-item:last-child { border-right: none; }
.tsf-n { font-family: 'Clash Display', sans-serif; font-size: 24px; font-weight: 700; background: linear-gradient(135deg, var(--accent), var(--purple-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tsf-l { font-size: 11px; color: var(--text-3); }
.ty-sources { font-size: 10px; color: var(--text-3); opacity: 0.6; }

.ty-visual {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  width: 380px; height: 380px; z-index: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .slide-inner { padding: 30px 40px 50px; }
  .title-content { padding: 40px; }
  .title-visual { display: none; }
  .ty-visual { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .components-grid { grid-template-columns: repeat(2, 1fr); }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .infographic-grid { grid-template-columns: 1fr; }
  .ig-donut-wrap { grid-column: 1; grid-row: 2; }
  .ig-stats-col { grid-column: 1; grid-row: 3; }
  .ig-sectors { grid-column: 1; grid-row: 4; }
}