:root {
  --bg-cream: #F7F6F3;
  --bg-dark: #1a1a1a;
  --green: #00D26A;
  --green-dim: rgba(0, 210, 106, 0.15);
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-gray: #666666;
  --text-muted: #999999;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-code: 'JetBrains Mono', monospace;
}

/* ============================================
   Reveal.js Overrides
   ============================================ */

.reveal {
  font-family: var(--font-main);
}

.reveal .slides {
  text-align: left;
}

.reveal .slides > section {
  padding: 80px 100px;
  box-sizing: border-box;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.reveal h1, .reveal h2, .reveal h3, .reveal h4 {
  font-family: var(--font-main);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  margin: 0;
}

.reveal p {
  margin: 0;
}

.green { color: var(--green); }

/* Slide backgrounds */
.slide-light { background: var(--bg-cream); color: var(--text-dark); }
.slide-dark { background: var(--bg-dark); color: var(--text-light); }

/* ============================================
   Animations
   ============================================ */

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

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0) rotate(-180deg); }
  70% { transform: scale(1.2) rotate(10deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes flipIn {
  from { opacity: 0; transform: perspective(400px) rotateY(-90deg); }
  to { opacity: 1; transform: perspective(400px) rotateY(0deg); }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 210, 106, 0.8);
    transform: scale(1.1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 10px rgba(0, 210, 106, 0.5); }
  50% { text-shadow: 0 0 20px rgba(0, 210, 106, 0.8), 0 0 30px rgba(0, 210, 106, 0.6); }
}

@keyframes boxGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 210, 106, 0.6), 0 0 60px rgba(0, 210, 106, 0.4);
  }
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Animation classes */
.slide-in-left {
  animation: slideInLeft 0.6s ease-out both;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out both;
}

.slide-in-bottom {
  animation: slideInBottom 0.6s ease-out both;
}

.scale-in {
  animation: scaleIn 0.5s ease-out both;
}

.bounce-in {
  animation: bounceIn 0.8s ease-out both;
}

.pop-in {
  animation: popIn 0.5s ease-out both;
}

.flip-in {
  animation: flipIn 0.6s ease-out both;
}

.float-in {
  animation: floatIn 0.6s ease-out both;
}

.fade-in-delay {
  animation: fadeUp 0.6s ease-out 0.3s both;
}

.fade-in-up {
  animation: fadeUp 0.6s ease-out both;
}

.pulse-on-appear {
  animation: fadeUp 0.5s ease-out, pulse 2s ease-in-out 0.5s infinite;
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

.pulse-icon {
  animation: pulse 2s ease-in-out infinite;
}

.pulse-arrow {
  animation: fadeUp 0.4s ease-out both, pulse 1.5s ease-in-out infinite;
}

.pulse-dot {
  animation: pulse 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.glow-text {
  animation: glow 2s ease-in-out infinite;
}

.glow-box {
  animation: boxGlow 2s ease-in-out infinite;
}

.tag-pop {
  animation: popIn 0.4s ease-out both;
}

.score-animate {
  animation: popIn 0.3s ease-out both;
}

/* Delay utilities */
[data-delay="0.1"] { animation-delay: 0.1s; }
[data-delay="0.2"] { animation-delay: 0.2s; }
[data-delay="0.3"] { animation-delay: 0.3s; }
[data-delay="0.4"] { animation-delay: 0.4s; }
[data-delay="0.5"] { animation-delay: 0.5s; }
[data-delay="0.6"] { animation-delay: 0.6s; }
[data-delay="0.7"] { animation-delay: 0.7s; }
[data-delay="0.8"] { animation-delay: 0.8s; }
[data-delay="0.9"] { animation-delay: 0.9s; }
[data-delay="1.0"] { animation-delay: 1.0s; }
[data-delay="1.1"] { animation-delay: 1.1s; }

/* Particle backgrounds */
.particles-bg {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.reveal section.present > * {
  animation: fadeUp 0.5s ease-out both;
}

.reveal section.present > *:nth-child(1) { animation-delay: 0s; }
.reveal section.present > *:nth-child(2) { animation-delay: 0.1s; }
.reveal section.present > *:nth-child(3) { animation-delay: 0.15s; }
.reveal section.present > *:nth-child(4) { animation-delay: 0.2s; }

/* ============================================
   SLIDE 1: Title
   ============================================ */

.slide-title {
  position: relative;
}

.slide-title .title-content {
  max-width: 700px;
}

.slide-title h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.slide-title .subtitle {
  font-size: 28px;
  color: var(--text-gray);
}

.slide-title .olly-logo {
  margin-bottom: 40px;
}

.slide-title .decorative-lines {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: 
    linear-gradient(135deg, transparent 45%, rgba(0, 210, 106, 0.12) 46%, rgba(0, 210, 106, 0.12) 48%, transparent 49%),
    linear-gradient(135deg, transparent 55%, rgba(0, 210, 106, 0.08) 56%, rgba(0, 210, 106, 0.08) 58%, transparent 59%),
    linear-gradient(135deg, transparent 65%, rgba(0, 210, 106, 0.05) 66%, rgba(0, 210, 106, 0.05) 68%, transparent 69%);
  pointer-events: none;
}

/* ============================================
   SLIDE 2: Problem
   ============================================ */

.slide-light h2 {
  font-size: 48px;
  margin-bottom: 60px;
}

.stats-row {
  display: flex;
  gap: 100px;
  margin-bottom: 60px;
}

.stat-card {
  background: white;
  padding: 40px 50px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.stat-num {
  display: block;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
  font-variant-numeric: tabular-nums;
  transition: transform 0.1s ease-out;
}

.stat-num[data-target] {
  animation: counterPulse 1.5s ease-out;
}

@keyframes counterPulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.stat-label {
  display: block;
  font-size: 24px;
  color: var(--text-gray);
  margin-top: 8px;
}

.punchline {
  font-size: 36px;
  line-height: 1.4;
}

/* ============================================
   SLIDE 3: Shift
   ============================================ */

/* ============================================
   SLIDE 3: Realization (new design)
   ============================================ */

.realization-layout {
  display: flex;
  gap: 60px;
  align-items: stretch;
  width: 100%;
}

.realization-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.realization-left h2 {
  font-size: 48px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.ai-tools-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: white;
  border-radius: 16px;
  font-size: 22px;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  border-left: 4px solid var(--text-muted);
}

.tool-item::after {
  content: '✓';
  position: absolute;
  right: 28px;
  color: #bbb;
  font-size: 22px;
  font-weight: 600;
}

.tool-item.fade {
  opacity: 0.85;
}

.tool-icon {
  font-size: 28px;
}

.realization-text {
  font-size: 26px;
  line-height: 1.6;
  margin-top: auto;
}

.realization-text .dim {
  color: var(--text-muted);
}

.realization-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.question-box {
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 24px;
  padding: 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.question-label {
  font-size: 14px;
  color: var(--green);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.question-box h3 {
  font-size: 36px;
  line-height: 1.3;
  margin: 0;
}

.question-box em {
  color: var(--green);
  font-style: normal;
}

.metrics-focus {
  background: rgba(0, 210, 106, 0.06);
  border: 3px solid var(--green);
  border-radius: 24px;
  padding: 40px;
}

.metrics-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 600;
}

.metric-tags {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.metric-tag {
  font-family: var(--font-code);
  font-size: 18px;
  font-weight: 600;
  background: var(--green);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 10px;
}

.metrics-insight {
  font-size: 22px;
  margin: 0;
  font-weight: 500;
}

/* Keep old classes for backward compat */
.arrow {
  font-size: 60px;
  color: var(--green);
}

.insight {
  font-size: 32px;
}

/* ============================================
   SLIDE 4: Vision
   ============================================ */

.slide-vision {
  background: linear-gradient(135deg, #F7F6F3 0%, #FFFFFF 100%);
  color: var(--text-dark);
  align-items: center;
  text-align: center;
  position: relative;
  overflow: visible;
}

.vision-header {
  margin-bottom: 60px;
  text-align: center;
}

.vision-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.vision-subtitle {
  font-size: 24px;
  color: var(--text-gray);
  font-weight: 300;
  font-style: italic;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.vision-card {
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #00a854);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 210, 106, 0.15);
}

.vision-card:hover::before {
  transform: scaleX(1);
}

.vision-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 210, 106, 0.1), rgba(0, 210, 106, 0.05));
  position: relative;
}

.vision-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--green), #00a854);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
}

.vision-icon {
  font-size: 48px;
  line-height: 1;
}

.vision-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--text-dark);
}

.vision-card h3 .highlight {
  color: var(--green);
  font-weight: 700;
}

.vision-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-gray);
  font-weight: 400;
}

.vision-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 40px;
  border-top: 2px solid rgba(0, 210, 106, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

.vision-logo {
  display: flex;
  align-items: center;
}

.vision-tagline {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-dark);
}

.vision-tagline .green {
  font-weight: 700;
  font-size: 32px;
}

/* Enhanced animations for vision cards */
@keyframes cardPulse {
  0%, 100% {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  }
  50% {
    box-shadow: 0 12px 50px rgba(0, 210, 106, 0.12);
  }
}

.vision-card-1:hover {
  animation: cardPulse 2s ease-in-out infinite;
}

.vision-card-2:hover {
  animation: cardPulse 2s ease-in-out 0.3s infinite;
}

.vision-card-3:hover {
  animation: cardPulse 2s ease-in-out 0.6s infinite;
}

/* Old classes kept for backward compatibility */
.olly-intro {
  text-align: center;
  margin-bottom: 80px;
}

.olly-slide {
  align-items: center;
  text-align: center;
}

.olly-logo-large {
  margin-bottom: 16px;
}

.tagline {
  font-size: 28px;
  color: var(--text-gray);
}

.capabilities-row {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.cap-item {
  text-align: center;
}

.cap-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.cap-item p {
  font-size: 22px;
  color: var(--text-gray);
  max-width: 200px;
}

/* ============================================
   SLIDE 5: Three Problems
   ============================================ */

.problems-row {
  display: flex;
  gap: 30px;
}

.problem-card {
  flex: 1;
  padding: 40px;
  border-radius: 20px;
}

.problem-card.dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.prob-num {
  font-family: var(--font-code);
  font-size: 16px;
  color: var(--green);
  opacity: 0.6;
  margin-bottom: 8px;
}

.problem-num {
  font-family: var(--font-code);
  font-size: 20px;
  color: var(--green);
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
}

.problem-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.problem-card > p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  line-height: 1.4;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags span {
  font-family: var(--font-code);
  font-size: 13px;
  background: var(--green-dim);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 6px;
}

/* ============================================
   SLIDE 6: Architecture
   ============================================ */

.slide-dark h2 {
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 50px;
}

.arch-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
}

.arch-column {
  flex-shrink: 0;
}

.arch-column h3 {
  font-size: 22px;
  color: var(--green);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.arch-left {
  width: 220px;
}

.arch-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arch-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  border-left: 3px solid rgba(0, 210, 106, 0.3);
  transition: all 0.3s ease;
}

.arch-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--green);
  transform: translateX(5px);
}

.arch-center {
  width: 260px;
}

.arch-knowledge {
  background: linear-gradient(135deg, rgba(0, 210, 106, 0.15), rgba(0, 210, 106, 0.08));
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
}

.arch-knowledge h3 {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 700;
}

.arch-knowledge p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.arch-right {
  width: 280px;
}

.arch-agents {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arch-agent {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border-left: 2px solid rgba(0, 210, 106, 0.4);
  transition: all 0.3s ease;
}

.arch-agent:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--green);
  transform: translateX(3px);
}

.arch-agent-more {
  padding: 12px 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  text-align: center;
}

.arch-output {
  width: 200px;
}

.arch-result {
  background: linear-gradient(135deg, rgba(0, 210, 106, 0.2), rgba(0, 210, 106, 0.1));
  border: 3px solid var(--green);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
}

.result-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.arch-result h3 {
  font-size: 24px;
  color: var(--green);
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
}

.arch-arrow {
  font-size: 36px;
  color: var(--green);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Old flow styles kept for compatibility */
.flow-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
}

.flow-step {
  display: flex;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  align-items: flex-start;
}

.flow-step.highlight {
  background: rgba(0, 210, 106, 0.12);
  border: 2px solid var(--green);
}

.flow-label {
  font-family: var(--font-code);
  font-size: 14px;
  color: var(--green);
  min-width: 90px;
  padding-top: 3px;
}

.flow-content {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.flow-code {
  font-family: var(--font-code);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  line-height: 1.6;
}

.flow-arrow {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.25);
  padding-left: 52px;
}

/* ============================================
   SLIDE 7: Evals
   ============================================ */

.eval-container {
  max-width: 700px;
}

.eval-prompt {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 30px;
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--text-light);
}

.rubric {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px 28px;
}

.rubric-row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  align-items: center;
}

.rubric-row:last-child {
  border-bottom: none;
}

.rubric-row .score {
  font-family: var(--font-code);
  font-weight: 600;
  font-size: 18px;
  min-width: 80px;
}

.rubric-row.plus .score { color: var(--green); }
.rubric-row.minus .score { color: #ff6b6b; }

.insight.light {
  color: rgba(255,255,255,0.9);
  font-size: 28px;
  margin-top: 40px;
}

/* ============================================
   SLIDE 8: Demo
   ============================================ */

.demo-slide {
  align-items: center;
  text-align: center;
}

.demo-slide h2.green {
  font-size: 64px;
  margin-bottom: 50px;
}

.demo-terminal {
  background: var(--bg-dark);
  border-radius: 20px;
  overflow: hidden;
  width: 800px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.terminal-bar {
  background: #2a2a2a;
  padding: 16px 20px;
  display: flex;
  gap: 10px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.terminal-body {
  padding: 50px;
  text-align: left;
}

.terminal-body p {
  font-family: var(--font-code);
  font-size: 24px;
  color: var(--green);
  line-height: 1.5;
}

.terminal-typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3s steps(80, end) 0.5s both;
}

.terminal-cursor {
  display: inline-block;
  width: 3px;
  height: 28px;
  background: var(--green);
  margin-left: 5px;
  animation: blink 1s step-end infinite;
}

/* ============================================
   SLIDE 9: Results
   ============================================ */

.results-row {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.result-card {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.result-metric {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.result-desc {
  font-size: 20px;
  color: var(--text-gray);
}

.result-card.quote p {
  font-size: 22px;
  color: var(--text-gray);
  font-style: italic;
  line-height: 1.5;
}

.result-source {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 16px;
}

.metrics-pills {
  display: flex;
  gap: 16px;
}

.pill {
  font-family: var(--font-code);
  font-size: 16px;
  background: var(--green-dim);
  color: var(--green);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
}

/* ============================================
   SLIDE 10: Vision
   ============================================ */

.timeline-row {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
  position: relative;
  padding-left: 20px;
}

.timeline-row::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  width: 500px;
  height: 3px;
  background: linear-gradient(90deg, var(--text-muted), var(--green), var(--green));
}

.tl-step {
  position: relative;
  min-width: 200px;
}

.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.tl-dot.dim { background: #ccc; }
.tl-dot.active { 
  background: var(--green);
  box-shadow: 0 0 30px rgba(0, 210, 106, 0.5);
}
.tl-dot.future { 
  background: linear-gradient(135deg, var(--green), #00a854);
  box-shadow: 0 0 40px rgba(0, 210, 106, 0.4);
}

.tl-step h4 {
  font-size: 24px;
  margin-bottom: 8px;
}

.tl-step p {
  font-size: 18px;
  color: var(--text-gray);
}

.vision-statement {
  font-size: 36px;
}

/* ============================================
   SLIDE 11: CTA
   ============================================ */

.cta-slide {
  align-items: center;
  text-align: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-tagline {
  font-size: 28px;
  color: var(--text-gray);
  margin-bottom: 50px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  padding: 20px 50px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn.primary {
  background: var(--green);
  color: var(--text-dark);
}

.btn.secondary {
  background: transparent;
  border: 3px solid var(--text-dark);
  color: var(--text-dark);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 210, 106, 0.3);
}

.questions {
  font-size: 28px;
  color: var(--text-gray);
}

.questions-large {
  font-size: 64px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 60px;
}

/* ============================================
   Sponsor Logos
   ============================================ */

.sponsor-logos {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  gap: 20px;
  align-items: center;
  z-index: 100;
}

.sponsor-logo {
  height: 90px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sponsor-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ============================================
   Chart Container
   ============================================ */

.chart-container {
  background: white;
  border-radius: 24px;
  padding: 40px;
  margin: 40px auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#metricsChart {
  width: 100% !important;
  height: 100% !important;
  max-height: 320px;
}

/* ============================================
   Enhanced Visual Effects
   ============================================ */

.typewriter-code {
  display: block;
  overflow: hidden;
}

.problem-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 210, 106, 0.2);
}

.result-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
}

/* Responsive improvements */
@media (max-width: 1600px) {
  .stats-row {
    gap: 60px;
  }

  .problems-row {
    gap: 20px;
  }

  .problem-card {
    padding: 30px;
  }
}
