/* Copyright The Awareness Company */
/* ============================================
   HYDRA Interactive Deck V2 - DYNAMIC VERSION
   The Awareness Company
   More vibrant, animated, and visually exciting
   ============================================ */

/* CSS Custom Properties (Official Brand Colors) */
:root {
  --primary-dark: #1c1d3a;      /* Navy */
  --background: #05061a;        /* Dark Navy */
  --primary-accent: #2196f3;    /* Blue */
  --secondary: #2e2c7a;         /* Purple */
  --highlight-accent: #e23f8f;  /* Pink */
  --tertiary-accent: #2e2c7a;   /* Purple */
  --success-accent: #10b981;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.75);
  --transition-speed: 0.5s;
  --slide-padding: 2.5rem;

  /* Gradient definitions */
  --gradient-primary: linear-gradient(135deg, var(--primary-accent), var(--highlight-accent));
  --gradient-accent: linear-gradient(135deg, var(--highlight-accent), var(--primary-accent));
  --gradient-dark: linear-gradient(180deg, var(--background) 0%, var(--primary-dark) 100%);
}

/* Typography Import */
@import url('https://fonts.googleapis.com/css2?family=Galada&family=Poppins:wght@300;400;600;700;800&display=swap');

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--background);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Animated Background Effects
   ============================================ */
.deck-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.deck-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(33, 150, 243, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(226, 63, 143, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(46, 44, 122, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: ambientPulse 8s ease-in-out infinite;
}

@keyframes ambientPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ============================================
   Slide Styles
   ============================================ */
.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
  background: transparent;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.slide.transitioning-out {
  opacity: 0;
  z-index: 5;
}

/* Slide Background with enhanced overlay */
.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.slide.active .slide-background {
  transform: scale(1);
}

.slide-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(3, 4, 16, 0.92) 0%, rgba(3, 4, 16, 0.7) 50%, rgba(3, 4, 16, 0.92) 100%),
    linear-gradient(to bottom, transparent 0%, rgba(33, 150, 243, 0.05) 100%);
}

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 94%;
  max-height: 92vh;
  padding: var(--slide-padding);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-accent) transparent;
}

.slide-content::-webkit-scrollbar {
  width: 4px;
}

.slide-content::-webkit-scrollbar-track {
  background: transparent;
}

.slide-content::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* ============================================
   Layout Variants
   ============================================ */
.centered-content {
  text-align: center;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split-layout.image-left {
  grid-template-columns: 1fr 1.1fr;
}

.split-layout.image-right {
  grid-template-columns: 1.1fr 1fr;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.four-quadrant {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

/* ============================================
   Typography - More Dynamic
   ============================================ */
.galada-font {
  font-family: 'Galada', cursive;
}

h1 {
  font-family: 'Galada', cursive;
  font-size: 3.5rem;
  font-weight: 400;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  filter: drop-shadow(0 4px 20px rgba(33, 150, 243, 0.4));
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--white);
}

p.highlight {
  font-weight: 600;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
}

p.tagline {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.emphasis {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.accent {
  color: var(--primary-accent);
  text-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
}

strong, .bold {
  font-weight: 700;
}

.text-small {
  font-size: 0.95rem;
}

.text-large {
  font-size: 1.25rem;
}

/* Glowing text effect */
.glow-text {
  text-shadow:
    0 0 10px rgba(33, 150, 243, 0.5),
    0 0 20px rgba(33, 150, 243, 0.3),
    0 0 40px rgba(33, 150, 243, 0.2);
}

/* ============================================
   Lists - Enhanced
   ============================================ */
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

ul li {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 2rem;
  position: relative;
}

ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(33, 150, 243, 0.6);
}

ul.no-bullets li::before {
  display: none;
}

ul.no-bullets li {
  padding-left: 0;
}

/* Nested lists */
ul ul {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  margin-left: 0.75rem;
}

ul ul li {
  font-size: 0.9rem;
}

ul ul li::before {
  width: 6px;
  height: 6px;
  background: var(--highlight-accent);
  box-shadow: 0 0 8px rgba(226, 63, 143, 0.6);
}

/* ============================================
   Images - Enhanced with glow
   ============================================ */
.slide-image {
  max-width: 100%;
  max-height: 45vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(33, 150, 243, 0.2),
    0 0 60px rgba(33, 150, 243, 0.1);
  object-fit: contain;
  border: 1px solid rgba(33, 150, 243, 0.2);
  transition: all 0.4s ease;
}

.slide-image:hover {
  box-shadow:
    0 12px 40px rgba(33, 150, 243, 0.3),
    0 0 80px rgba(33, 150, 243, 0.15);
  transform: translateY(-4px);
}

.slide-image.full-width {
  width: 100%;
  max-height: none;
}

.slide-image.rounded {
  border-radius: 20px;
}

.slide-image.small {
  max-height: 30vh;
}

.slide-image.large {
  max-height: 65vh;
  max-width: 100%;
}

.image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-caption {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* TACo Logo - Bottom Left */
.taco-logo-container {
  position: fixed;
  bottom: 0.5rem;
  left: 2rem;
  z-index: 99;
}

.taco-logo-container img {
  height: 150px;
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Mode Indicator */
.mode-indicator {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(33, 150, 243, 0.15);
  border: 1px solid rgba(33, 150, 243, 0.3);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-accent);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mode-indicator.visible {
  opacity: 1;
  visibility: visible;
}

/* Hidden slides */
.hidden-slide {
  display: none !important;
}

/* Hydra Logo on slides */
.hydra-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 30px rgba(33, 150, 243, 0.5));
  animation: logoPulse 3s ease-in-out infinite;
}

.hydra-logo.small {
  height: 55px;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(33, 150, 243, 0.5)); }
  50% { filter: drop-shadow(0 0 50px rgba(33, 150, 243, 0.8)); }
}

/* ============================================
   Cards & Boxes - Glassmorphism
   ============================================ */
.card {
  background: rgba(13, 14, 36, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: var(--primary-accent);
  box-shadow:
    0 8px 32px rgba(33, 150, 243, 0.2),
    inset 0 0 60px rgba(33, 150, 243, 0.03);
  transform: translateY(-4px);
}

.card:hover::before {
  opacity: 1;
}

.card h4 {
  margin-bottom: 0.5rem;
}

.card ul {
  margin-bottom: 0;
}

.card p {
  margin-bottom: 0.5rem;
}

.card.highlight-card {
  border-color: var(--highlight-accent);
  background: rgba(226, 63, 143, 0.08);
}

.card.highlight-card::before {
  background: var(--gradient-accent);
  opacity: 1;
}

/* Product Name Styling (HyGo, HyLive, HyAI) */
.product-name {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--highlight-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   What HYDRA Is - Slide 2 Styling
   ============================================ */
.what-hydra-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  height: 100%;
}

.what-hydra-text {
  text-align: left;
}

.what-hydra-text h2 {
  text-align: left;
}

.what-hydra-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alternatives-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .what-hydra-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .what-hydra-text {
    text-align: center;
  }

  .what-hydra-text h2 {
    text-align: center;
  }

  .alternatives-image {
    max-width: 400px;
  }
}

.problem-statement {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.problem-statement p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.problem-statement .emphasis {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-style: italic;
}

.hydra-transition {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 0.75rem 0;
}

.transition-arrow {
  font-size: 1.5rem;
  color: var(--primary-accent);
  animation: arrowPulse 2s ease-in-out infinite;
}

.transition-label {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--highlight-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0.5rem 1.5rem;
  border: 2px solid rgba(33, 150, 243, 0.3);
  border-radius: 8px;
  background-color: rgba(33, 150, 243, 0.08);
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

.solution-statement {
  max-width: 700px;
  margin: 0;
  text-align: left;
}

.solution-intro {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.solution-activities {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 50px;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 380px;
}

.activity-item:hover {
  background: rgba(33, 150, 243, 0.15);
  border-color: var(--primary-accent);
  transform: translateX(8px);
}

.activity-item:nth-child(2) {
  border-color: rgba(226, 63, 143, 0.2);
  background: rgba(226, 63, 143, 0.08);
}

.activity-item:nth-child(2):hover {
  background: rgba(226, 63, 143, 0.15);
  border-color: var(--highlight-accent);
}

.activity-item:nth-child(3) {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.08);
}

.activity-item:nth-child(3):hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--success-accent);
}

.activity-icon {
  font-size: 1.3rem;
  min-width: 30px;
  text-align: center;
}

.hydra-tagline {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--highlight-accent);
  letter-spacing: 0.05em;
  padding: 0.6rem 1.5rem;
  border-top: 1px solid rgba(226, 63, 143, 0.3);
  border-bottom: 1px solid rgba(226, 63, 143, 0.3);
  display: inline-block;
}

@media (max-width: 768px) {
  .activity-item {
    min-width: auto;
    width: 100%;
    max-width: 350px;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
  }

  .problem-statement p {
    font-size: 1rem;
  }

  .solution-intro {
    font-size: 1.1rem;
  }

  .hydra-tagline {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
}

/* HyLive Feed Items */
.feed-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(13, 14, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feed-item:hover {
  background: rgba(33, 150, 243, 0.1);
  border-color: rgba(33, 150, 243, 0.3);
  transform: translateX(8px);
}

.feed-icon {
  font-size: 1.2rem;
  min-width: 28px;
  text-align: center;
}

.feed-item strong {
  color: var(--white);
}

/* Action Cards for Awareness to Action slide */
.action-cards {
  max-width: 900px;
  margin: 0 auto;
}

.action-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.action-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.action-card h4 {
  margin-bottom: 0.5rem;
  color: var(--white);
}

/* Learning Flow Steps for Learning Compounds slide */
.learning-flow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.learning-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(13, 14, 36, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.learning-step:hover {
  border-color: var(--primary-accent);
  transform: translateX(8px);
}

.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}

.step-content h4 {
  margin-bottom: 0.25rem;
  color: var(--white);
}

.step-content p {
  margin: 0;
  color: var(--text-muted);
}

/* Module Cards for HYDRA Modules slide */
.modules-grid {
  gap: 1.5rem;
}

.module-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.module-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.module-list {
  text-align: left;
  padding-left: 1.2rem;
}

.module-list li {
  margin-bottom: 0.3rem;
  padding-left: 0;
}

.module-list li::before {
  content: none;
}

/* Buyer Reality Slide Styling - Narrative Version */
.buyer-reality-narrative {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.buyer-reality-narrative p {
  margin-bottom: 1.5rem;
}

.buyer-reality-narrative .text-large {
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.leader-questions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 500px;
}

.leader-questions li {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--highlight-accent);
  padding: 0.75rem 1.5rem;
  background: rgba(226, 63, 143, 0.08);
  border: 1px solid rgba(226, 63, 143, 0.2);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.leader-questions li:hover {
  background: rgba(226, 63, 143, 0.15);
  border-color: rgba(226, 63, 143, 0.4);
  transform: translateY(-2px);
}

/* Buyer Reality Slide Styling - Grid Version (Legacy) */
.buyer-reality-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.reality-card {
  background: rgba(13, 14, 36, 0.7);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.reality-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.have-card {
  border-top: 4px solid var(--primary-accent);
}

.have-card:hover {
  border-color: rgba(33, 150, 243, 0.3);
  box-shadow: 0 10px 40px rgba(33, 150, 243, 0.15);
}

.struggle-card {
  border-top: 4px solid var(--highlight-accent);
}

.struggle-card:hover {
  border-color: rgba(226, 63, 143, 0.3);
  box-shadow: 0 10px 40px rgba(226, 63, 143, 0.15);
}

.reality-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.reality-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.reality-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.reality-chip {
  background: rgba(33, 150, 243, 0.15);
  border: 1px solid rgba(33, 150, 243, 0.3);
  color: var(--primary-accent);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.reality-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.divider-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1rem;
}

.struggle-list {
  text-align: left;
  padding-left: 0;
}

.struggle-list li {
  font-style: italic;
  color: var(--highlight-accent);
  padding-left: 0;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.struggle-list li::before {
  display: none;
}

@media (max-width: 900px) {
  .buyer-reality-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reality-divider {
    padding: 0.5rem 0;
  }
}

/* Team Views for One Shared Reality slide */
.team-views {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-view {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(13, 14, 36, 0.6);
  border-radius: 10px;
  border-left: 3px solid var(--primary-accent);
  transition: all 0.3s ease;
}

.team-view:hover {
  background: rgba(33, 150, 243, 0.1);
  transform: translateX(8px);
}

.team-view:nth-child(2) { border-left-color: var(--highlight-accent); }
.team-view:nth-child(3) { border-left-color: var(--secondary); }
.team-view:nth-child(4) { border-left-color: var(--success-accent); }
.team-view:nth-child(5) { border-left-color: var(--primary-accent); }

.team-label {
  font-weight: 600;
  color: var(--white);
  min-width: 90px;
  font-size: 0.95rem;
}

.team-sees {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.stat-box {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 20px rgba(33, 150, 243, 0.4));
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   Navigation Controls - Glowing
   ============================================ */
.nav-controls {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 1000;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.nav-controls:hover {
  opacity: 1;
}

.nav-btn {
  backdrop-filter: blur(10px);
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Home button - Blue */
.home-btn {
  background: rgba(33, 150, 243, 0.15);
  color: var(--primary-accent);
  border: 1px solid rgba(33, 150, 243, 0.3);
}
.home-btn:hover {
  background: var(--primary-accent);
  color: var(--white);
  border-color: var(--primary-accent);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
}

/* Prev button - Bright Purple */
.prev-btn {
  background: rgba(124, 77, 255, 0.2);
  color: #a78bfa;
  border: 1px solid rgba(167, 139, 250, 0.5);
}
.prev-btn:hover {
  background: #7c4dff;
  color: var(--white);
  border-color: #7c4dff;
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.6);
}

/* Next button - Pink */
.next-btn {
  background: rgba(226, 63, 143, 0.15);
  color: var(--highlight-accent);
  border: 1px solid rgba(226, 63, 143, 0.3);
}
.next-btn:hover {
  background: var(--highlight-accent);
  color: var(--white);
  border-color: var(--highlight-accent);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(226, 63, 143, 0.5);
}

/* Overview button - Blue */
.overview-btn {
  background: rgba(33, 150, 243, 0.15);
  color: var(--primary-accent);
  border: 1px solid rgba(33, 150, 243, 0.3);
}
.overview-btn:hover {
  background: var(--primary-accent);
  color: var(--white);
  border-color: var(--primary-accent);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
}

/* Fullscreen button - Teal */
.fullscreen-btn {
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.4);
}
.fullscreen-btn:hover {
  background: #14b8a6;
  color: var(--white);
  border-color: #14b8a6;
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.5);
}

.nav-btn:active {
  transform: scale(1.05);
}

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

/* ============================================
   Progress Bar - Hidden
   ============================================ */
.progress-bar {
  display: none;
}

/* ============================================
   Overview Grid - Enhanced
   ============================================ */
.overview-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 4, 16, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  padding: 2rem;
  overflow-y: auto;
  display: none;
}

.overview-grid.visible {
  display: block;
}

.overview-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.overview-slide {
  aspect-ratio: 16 / 9;
  background: rgba(13, 14, 36, 0.6);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.overview-slide:hover {
  border-color: var(--primary-accent);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.2);
}

.overview-slide.current {
  border-color: var(--highlight-accent);
  box-shadow: 0 0 0 2px var(--highlight-accent);
}

.overview-slide-number {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--gradient-primary);
  color: var(--background);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.overview-slide-title {
  font-size: 0.85rem;
  text-align: center;
  color: var(--white);
  line-height: 1.4;
}

.overview-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--highlight-accent);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(226, 63, 143, 0.4);
}

.overview-close:hover {
  transform: scale(1.1) rotate(90deg);
}

/* ============================================
   Help Overlay
   ============================================ */
.help-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 4, 16, 0.95);
  backdrop-filter: blur(20px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.help-overlay.visible {
  display: flex;
}

.help-content {
  background: rgba(13, 14, 36, 0.8);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  backdrop-filter: blur(20px);
}

.help-content h3 {
  text-align: center;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shortcut-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.shortcut-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shortcut-key {
  background: rgba(33, 150, 243, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.3);
  color: var(--primary-accent);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.9rem;
  min-width: 80px;
  text-align: center;
}

.shortcut-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.help-close {
  display: block;
  margin: 2rem auto 0;
  background: var(--gradient-primary);
  color: var(--background);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.help-close:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(33, 150, 243, 0.4);
}

/* ============================================
   Enhanced Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

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

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(33, 150, 243, 0.6);
  }
}

@keyframes textShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Animation Classes */
.slide.active .animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .animate-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .animate-slide-left {
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .animate-slide-right {
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .animate-scale {
  animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Stagger animations for lists */
.slide.active .stagger-item {
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .stagger-item:nth-child(1) { animation-delay: 0.1s; }
.slide.active .stagger-item:nth-child(2) { animation-delay: 0.2s; }
.slide.active .stagger-item:nth-child(3) { animation-delay: 0.3s; }
.slide.active .stagger-item:nth-child(4) { animation-delay: 0.4s; }
.slide.active .stagger-item:nth-child(5) { animation-delay: 0.5s; }
.slide.active .stagger-item:nth-child(6) { animation-delay: 0.6s; }
.slide.active .stagger-item:nth-child(7) { animation-delay: 0.7s; }
.slide.active .stagger-item:nth-child(8) { animation-delay: 0.8s; }
.slide.active .stagger-item:nth-child(9) { animation-delay: 0.9s; }
.slide.active .stagger-item:nth-child(10) { animation-delay: 1.0s; }

/* Content animation */
.slide.active .slide-content {
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Cover Slide Specific - More Dramatic
   ============================================ */
.cover-slide .slide-content {
  text-align: center;
}

.cover-slide h1 {
  font-size: 5rem;
  margin-bottom: 0.5rem;
}

.cover-slide h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--white), var(--primary-accent), var(--white));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cover-slide h3 {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Large Laptop / Small Desktop */
@media (min-width: 1600px) {
  .slide-content {
    max-width: 1300px;
  }

  h1 { font-size: 3.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }
  p { font-size: 1.1rem; }
  ul li { font-size: 1.05rem; }

  .cover-slide h1 { font-size: 5.5rem; }
  .cover-slide h2 { font-size: 1.8rem; }

  .cover-image-carousel {
    max-width: 50vw;
    height: 65vh;
  }
}

/* Large Desktop */
@media (min-width: 1920px) {
  :root {
    --slide-padding: 3.5rem;
  }

  .slide-content {
    max-width: 1600px;
  }

  h1 { font-size: 4.5rem; }
  h2 { font-size: 2.8rem; }
  h3 { font-size: 1.8rem; }
  h4, h5 { font-size: 1.3rem; }
  p { font-size: 1.25rem; }
  ul li { font-size: 1.15rem; }
  .cover-slide h1 { font-size: 6.5rem; }
  .cover-slide h2 { font-size: 2rem; }

  .cover-image-carousel {
    max-width: 55vw;
    height: 70vh;
  }

  .feature-card, .scenario-panel, .module-card {
    padding: 1.8rem;
  }

  .metric-card .metric-value, .result-metric .value {
    font-size: 3rem;
  }

  .split-layout {
    gap: 3rem;
  }
}

/* 4K Displays */
@media (min-width: 2560px) {
  :root {
    --slide-padding: 4rem;
  }

  .slide-content {
    max-width: 2000px;
  }

  h1 { font-size: 5.5rem; }
  h2 { font-size: 3.2rem; }
  h3 { font-size: 2.2rem; }
  h4, h5 { font-size: 1.5rem; }
  p { font-size: 1.4rem; }
  ul li { font-size: 1.3rem; }

  .cover-slide h1 { font-size: 8rem; }
  .cover-slide h2 { font-size: 2.5rem; }

  .cover-image-carousel {
    max-width: 60vw;
    height: 75vh;
  }

  .feature-card, .scenario-panel, .module-card {
    padding: 2.2rem;
  }

  .metric-card .metric-value, .result-metric .value {
    font-size: 3.5rem;
  }

  .split-layout {
    gap: 4rem;
  }

  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* Laptop */
@media (max-width: 1440px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.3rem; }
  p { font-size: 1rem; }
  ul li { font-size: 0.95rem; }

  .cover-slide h1 { font-size: 4.5rem; }
  .cover-slide h2 { font-size: 1.6rem; }
}

/* Tablet Landscape */
@media (max-width: 1280px) {
  :root {
    --slide-padding: 2rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }
  p { font-size: 0.95rem; }
  ul li { font-size: 0.9rem; }

  .cover-slide h1 { font-size: 3.5rem; }

  .split-layout {
    gap: 1.5rem;
  }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
  .split-layout,
  .split-layout.image-left,
  .split-layout.image-right {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .three-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .overview-grid-inner {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .cover-layout {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .cover-text {
    text-align: center;
    padding-left: 0;
  }

  .cover-text h2 {
    font-size: 2.2rem;
  }

  .cover-text h3 {
    font-size: 1.3rem;
  }

  .cover-image-carousel {
    max-width: 100%;
    height: 280px;
  }

  .carousel-indicators {
    bottom: -1.5rem;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  :root {
    --slide-padding: 1.5rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  p { font-size: 0.9rem; }
  ul li { font-size: 0.85rem; }

  .cover-slide h1 { font-size: 2.5rem; }
  .cover-slide h2 { font-size: 1.2rem; }
  .cover-slide h3 { font-size: 1rem; }

  .cover-layout {
    padding: 1.5rem;
  }

  .cover-text .hydra-logo {
    height: 70px;
  }

  .cover-text h2 {
    font-size: 1.6rem;
  }

  .cover-text h3 {
    font-size: 1.1rem;
  }

  .cover-image-carousel {
    height: 200px;
  }

  .nav-controls {
    bottom: 1.5rem;
    right: 1rem;
    gap: 0.4rem;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .taco-logo-container {
    bottom: 1rem;
    left: 1rem;
  }

  .taco-logo-container img {
    height: 100px;
  }

  .card {
    padding: 1rem;
  }

  .four-quadrant {
    grid-template-columns: 1fr;
  }

  .shortcut-list {
    grid-template-columns: 1fr;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  :root {
    --slide-padding: 1rem;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  p { font-size: 0.85rem; }
  ul li { font-size: 0.8rem; }

  .cover-slide h1 { font-size: 2rem; }
  .cover-slide h2 { font-size: 1rem; }

  .nav-controls {
    bottom: 1rem;
    gap: 0.3rem;
  }

  .nav-btn {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .taco-logo-container img {
    height: 80px;
  }

  .overview-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .help-content {
    padding: 1.5rem;
  }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body {
    background: white;
  }

  .slide {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    page-break-after: always;
    height: auto;
    min-height: 100vh;
    background: var(--background) !important;
  }

  .slide:last-child {
    page-break-after: avoid;
  }

  .nav-controls,
  .progress-bar,
  .overview-grid,
  .help-overlay,
  .taco-logo-container {
    display: none !important;
  }

  .slide-content {
    max-width: 100%;
    width: 100%;
  }

  .slide-background {
    opacity: 0.3;
  }

  h1, h2, h3, p, li {
    -webkit-text-fill-color: var(--white) !important;
    color: var(--white) !important;
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

.flex { display: flex; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ============================================
   HYDRA Modules Slide - 3 Column Layout
   ============================================ */
.modules-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.module-column {
  background: rgba(13, 14, 36, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.module-column:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.column-header {
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-header.strategic {
  border-bottom-color: rgba(33, 150, 243, 0.4);
}

.column-header.operational {
  border-bottom-color: rgba(226, 63, 143, 0.4);
}

.column-header.tactical {
  border-bottom-color: rgba(46, 44, 122, 0.5);
}

.column-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.column-header h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: none;
  -webkit-text-fill-color: var(--white);
}

.column-header.strategic h4 { color: var(--primary-accent); -webkit-text-fill-color: var(--primary-accent); }
.column-header.operational h4 { color: var(--highlight-accent); -webkit-text-fill-color: var(--highlight-accent); }
.column-header.tactical h4 { color: var(--secondary); -webkit-text-fill-color: #a78bfa; }

.column-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.column-modules {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mod-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: all 0.2s ease;
}

.mod-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

/* Strategic column items */
.module-column:nth-child(1) .mod-item {
  border-left: 3px solid var(--primary-accent);
}

.module-column:nth-child(1) .mod-item:hover {
  background: rgba(33, 150, 243, 0.12);
  border-color: rgba(33, 150, 243, 0.4);
}

/* Operational column items */
.module-column:nth-child(2) .mod-item {
  border-left: 3px solid var(--highlight-accent);
}

.module-column:nth-child(2) .mod-item:hover {
  background: rgba(226, 63, 143, 0.12);
  border-color: rgba(226, 63, 143, 0.4);
}

/* Tactical column items */
.module-column:nth-child(3) .mod-item {
  border-left: 3px solid var(--secondary);
}

.module-column:nth-child(3) .mod-item:hover {
  background: rgba(46, 44, 122, 0.2);
  border-color: rgba(46, 44, 122, 0.5);
}

/* Platform Add-ons Row */
.addons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.addons-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.addon-item {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  transition: all 0.2s ease;
}

.addon-item:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--success-accent);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .modules-grid-3col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .module-column {
    padding: 1.25rem;
  }

  .addons-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

/* ============================================
   Cover Slide - Enhanced Design
   ============================================ */
/* Cover Layout - Split Design */
.cover-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  height: 100%;
  width: 100%;
  padding: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cover-text {
  text-align: left;
  padding-left: 2rem;
}

.cover-text .hydra-logo {
  height: 50px;
  margin-bottom: 1.5rem;
  margin-left: 0;
  display: block;
  animation: logoPulse 3s ease-in-out infinite;
}

.cover-text h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-accent) 50%, var(--highlight-accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 5s linear infinite;
}

.cover-text h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary-accent);
  text-shadow: 0 0 30px rgba(33, 150, 243, 0.4);
  margin-bottom: 1.5rem;
}

.cover-text .tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 0.75rem 1.5rem;
  background: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 50px;
  display: inline-block;
}

.cover-images {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.cover-image-carousel {
  position: relative;
  width: 100%;
  max-width: min(800px, 45vw);
  height: min(600px, 65vh);
}

.cover-image-carousel .cover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.cover-image-carousel .cover-img.active {
  opacity: 1;
  transform: scale(1);
}

/* Hide carousel indicators */
.carousel-indicators {
  display: none;
}

.cover-image-stack .cover-img:hover {
  transform: scale(1.03);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(33, 150, 243, 0.3);
  border-color: var(--primary-accent);
}

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

/* Cover slide animated background orbs */
.cover-slide::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbFloat1 8s ease-in-out infinite;
  z-index: 0;
}

.cover-slide::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(226, 63, 143, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbFloat2 10s ease-in-out infinite;
  z-index: 0;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 20px) scale(1.05); }
  66% { transform: translate(25px, -30px) scale(0.9); }
}

/* Cover Stats */
.cover-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
}

.cover-stat {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cover-stat:hover {
  background: rgba(33, 150, 243, 0.15);
  border-color: var(--primary-accent);
  transform: translateY(-4px);
}

.cover-stat:nth-child(2) {
  border-color: rgba(226, 63, 143, 0.2);
  background: rgba(226, 63, 143, 0.08);
}

.cover-stat:nth-child(2):hover {
  background: rgba(226, 63, 143, 0.15);
  border-color: var(--highlight-accent);
}

.cover-stat:nth-child(3) {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.08);
}

.cover-stat:nth-child(3):hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--success-accent);
}

.cover-stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.cover-stat:nth-child(2) .cover-stat-value {
  background: linear-gradient(135deg, var(--highlight-accent), var(--primary-accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.cover-stat:nth-child(3) .cover-stat-value {
  background: linear-gradient(135deg, var(--success-accent), var(--primary-accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.cover-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .cover-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .cover-stat {
    width: 200px;
  }
}

/* ============================================
   CTA Slide - Final Slide Layout
   ============================================ */
.cta-slide .slide-content {
  max-width: 1200px;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-message {
  text-align: left;
}

.cta-message .hydra-logo {
  height: 45px;
  margin-bottom: 1.5rem;
  margin-left: 0;
  display: block;
}

.cta-message h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-taglines p {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.cta-taglines p.highlight {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.cta-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(13, 14, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-step:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

.step-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.step-info h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  text-transform: none;
  letter-spacing: 0;
}

.step-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.cta-investment {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 12px;
}

.inv-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.inv-item {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.inv-item strong {
  color: var(--white);
  margin-right: 0.25rem;
}

@media (max-width: 1024px) {
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-message {
    text-align: center;
  }

  .cta-message .hydra-logo {
    height: 80px;
  }

  .cta-message h2 {
    font-size: 1.6rem;
  }

  .cta-investment {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* ============================================
   Slide 23: HYDRA Output Flow - Animated
   ============================================ */
.hydra-output .output-flow {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 2rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.flow-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.flow-row.products {
  gap: 1rem;
}

.flow-card {
  padding: 1.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  min-width: 160px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.flow-card:hover {
  transform: translateY(-4px);
}

.flow-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.flow-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.flow-card p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  opacity: 0.8;
}

.flow-card.hygo {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.05));
  border: 2px solid var(--primary-accent);
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.2);
}

.flow-card.hygo:hover {
  box-shadow: 0 12px 40px rgba(33, 150, 243, 0.3);
}

.flow-card.hygo h3 {
  color: var(--primary-accent);
}

.flow-card.hylive {
  background: linear-gradient(135deg, rgba(226, 63, 143, 0.2), rgba(226, 63, 143, 0.05));
  border: 2px solid var(--highlight-accent);
  box-shadow: 0 8px 32px rgba(226, 63, 143, 0.2);
}

.flow-card.hylive:hover {
  box-shadow: 0 12px 40px rgba(226, 63, 143, 0.3);
}

.flow-card.hylive h3 {
  color: var(--highlight-accent);
}

.flow-card.hyai {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(226, 63, 143, 0.15));
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  box-shadow: 0 8px 32px rgba(46, 44, 122, 0.3);
}

.flow-card.hyai::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-accent), var(--highlight-accent));
  border-radius: 18px;
  z-index: -1;
}

.flow-card.hyai:hover {
  box-shadow: 0 12px 40px rgba(46, 44, 122, 0.4);
}

.flow-card.hyai h3 {
  background: linear-gradient(135deg, var(--primary-accent), var(--highlight-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.flow-arrow {
  font-size: 2rem;
  color: var(--primary-accent);
  animation: arrowPulseHorizontal 1.5s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes arrowPulseHorizontal {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

.flow-row.outputs {
  gap: 1.5rem;
}

.output-card {
  padding: 1.25rem 1.5rem;
  background: rgba(13, 14, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.output-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.output-card:nth-child(1) {
  border-top: 3px solid var(--primary-accent);
}

.output-card:nth-child(2) {
  border-top: 3px solid var(--highlight-accent);
}

.output-card:nth-child(3) {
  border-top: 3px solid var(--success-accent);
}

.output-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  background: none;
  -webkit-text-fill-color: var(--white);
  text-transform: none;
  letter-spacing: 0;
}

.output-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
}

.hydra-output .hydra-tagline {
  text-align: center;
  margin-top: 1.5rem;
}

/* Responsive for output flow */
@media (max-width: 900px) {
  .flow-row {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .flow-row.products {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  @keyframes arrowPulseHorizontal {
    0%, 100% { opacity: 0.5; transform: rotate(90deg) translateX(0); }
    50% { opacity: 1; transform: rotate(90deg) translateX(4px); }
  }

  .flow-card {
    min-width: 200px;
  }

  .output-card {
    min-width: 160px;
  }
}

/* ============================================
   PRODUCT DEPTH SLIDES
   Subtle blue tint to distinguish from main deck
   ============================================ */

/* Depth slide - subtle blue tint overlay */
.slide.depth-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.06) 0%, rgba(46, 44, 122, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
}

.slide.depth-slide .slide-content {
  position: relative;
  z-index: 2;
}

/* Depth slide cards have blue-tinted borders */
.depth-slide .card {
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.depth-slide .card:hover {
  border-color: rgba(33, 150, 243, 0.5);
}

/* Results/metrics bar */
.depth-slide .results-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.25rem 2rem;
  background: rgba(33, 150, 243, 0.08);
  border-radius: 12px;
  margin-top: 1.5rem;
}

.depth-slide .result-item {
  text-align: center;
}

.depth-slide .result-item .value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--highlight-accent);
}

.depth-slide .result-item .label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Footer tagline */
.depth-slide .slide-footer {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Timeline/Phase styling */
.depth-slide .timeline-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
}

.depth-slide .timeline-phase {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-top: 4px solid var(--primary-accent);
  position: relative;
}

.depth-slide .timeline-phase:nth-child(2) { border-top-color: var(--secondary); }
.depth-slide .timeline-phase:nth-child(3) { border-top-color: var(--highlight-accent); }
.depth-slide .timeline-phase:nth-child(4) { border-top-color: var(--success-accent); }

.depth-slide .timeline-phase h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.depth-slide .timeline-phase .weeks {
  font-size: 0.85rem;
  color: var(--primary-accent);
  margin-bottom: 1rem;
}

.depth-slide .timeline-phase ul {
  text-align: left;
  margin: 0;
  padding-left: 1.25rem;
}

.depth-slide .timeline-phase li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* Arrow between phases */
.depth-slide .timeline-phase::after {
  content: '→';
  position: absolute;
  right: -1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-accent);
}

.depth-slide .timeline-phase:last-child::after {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .depth-slide .timeline-flow {
    flex-direction: column;
  }

  .depth-slide .timeline-phase::after {
    display: none;
  }

  .depth-slide .results-bar {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

/* Image placeholder for depth slides */
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(46, 44, 122, 0.1) 100%);
  border: 2px dashed rgba(33, 150, 243, 0.4);
  border-radius: 16px;
  text-align: center;
  padding: 2rem;
}

.image-placeholder span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-accent);
  margin-bottom: 0.5rem;
}

.image-placeholder small {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Two-column grid for depth slide cards */
.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .two-column-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Journey/Timeline Story Layouts
   For product depth slides with visual flow
   ============================================ */

/* Journey Flow Container */
.journey-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.journey-stage {
  flex: 1;
  text-align: center;
  position: relative;
}

.journey-stage:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-accent);
  font-weight: 700;
}

.journey-header {
  background: linear-gradient(135deg, var(--primary-accent), var(--highlight-accent));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

/* Journey Content Columns */
.journey-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
}

.journey-content.five-col {
  grid-template-columns: repeat(5, 1fr);
}

.journey-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Mini Cards for Dense Content */
.mini-card {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--primary-accent);
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.mini-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--highlight-accent);
}

.mini-card h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-accent);
  margin-bottom: 0.5rem;
}

.mini-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mini-card li {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.15rem 0;
  padding-left: 0.75rem;
  position: relative;
}

.mini-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-accent);
}

/* Results Callout Box */
.results-callout {
  background: linear-gradient(135deg, rgba(226, 63, 143, 0.12), rgba(33, 150, 243, 0.08));
  border: 1px solid rgba(226, 63, 143, 0.25);
  border-radius: 12px;
  padding: 1rem;
}

.results-callout h5 {
  font-size: 0.8rem;
  color: var(--highlight-accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.results-callout .stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.results-callout .stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--highlight-accent);
}

.results-callout .stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Compact Image Placeholder */
.image-placeholder-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(46, 44, 122, 0.08) 100%);
  border: 1px dashed rgba(33, 150, 243, 0.3);
  border-radius: 10px;
  text-align: center;
  padding: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Five Column Grid */
.five-column {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

/* Industry Slides - Challenge/Solution Layout */
.challenge-solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.challenge-column, .solution-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.column-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-accent);
  margin-bottom: 0.5rem;
}

.column-title.challenge {
  color: var(--highlight-accent);
  border-bottom-color: var(--highlight-accent);
}

.column-title.solution {
  color: var(--primary-accent);
}

/* Industry Type Card */
.industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: var(--primary-accent);
  background: rgba(33, 150, 243, 0.05);
}

.industry-card h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.4rem;
}

.industry-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-card li {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0.1rem 0;
}

/* Infrastructure Top Grid */
.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.infrastructure-type {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--primary-accent);
  border-radius: 0 0 10px 10px;
  padding: 0.75rem;
  text-align: center;
}

.infrastructure-type h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.infrastructure-type ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.infrastructure-type li {
  font-size: 0.65rem;
  color: var(--text-muted);
  padding: 0.1rem 0;
}

/* Common Challenges Strip */
.challenges-strip {
  background: rgba(226, 63, 143, 0.08);
  border: 1px solid rgba(226, 63, 143, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.challenges-strip h5 {
  font-size: 0.75rem;
  color: var(--highlight-accent);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.challenges-strip p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* Solutions Grid (4 columns) */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.solution-box {
  background: rgba(33, 150, 243, 0.06);
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: 10px;
  padding: 0.75rem;
}

.solution-box h5 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-accent);
  margin-bottom: 0.4rem;
}

.solution-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-box li {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0.1rem 0;
}

/* Proven Results Strip */
.proven-strip {
  background: linear-gradient(135deg, rgba(226, 63, 143, 0.1), rgba(33, 150, 243, 0.1));
  border: 1px solid rgba(226, 63, 143, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  text-align: center;
}

.proven-strip h5 {
  font-size: 0.75rem;
  color: var(--highlight-accent);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.proven-strip p {
  font-size: 0.8rem;
  color: white;
  margin: 0;
}

.proven-strip strong {
  color: var(--highlight-accent);
}

/* Journey Responsive */
@media (max-width: 1280px) {
  .journey-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-content.five-col {
    grid-template-columns: repeat(3, 1fr);
  }

  .five-column {
    grid-template-columns: repeat(3, 1fr);
  }

  .infrastructure-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .journey-flow {
    flex-wrap: wrap;
  }

  .journey-stage:not(:last-child)::after {
    display: none;
  }

  .journey-content,
  .journey-content.five-col {
    grid-template-columns: 1fr;
  }

  .five-column {
    grid-template-columns: 1fr 1fr;
  }

  .infrastructure-grid {
    grid-template-columns: 1fr 1fr;
  }

  .challenge-solution-layout {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Visual Industry Slides - Hero Image Layouts
   ============================================ */

/* Industry Hero Slide */
.industry-hero-slide {
  position: relative;
}

.industry-hero-slide .slide-content {
  position: relative;
  z-index: 10;
}

/* Fix z-index when depth-slide and industry-hero-slide are combined */
.slide.depth-slide.industry-hero-slide::before {
  z-index: 0;
}

.industry-hero-slide .slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.industry-hero-slide .slide-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.industry-hero-slide .slide-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 6, 26, 0.9) 0%, rgba(28, 29, 58, 0.8) 50%, rgba(5, 6, 26, 0.92) 100%);
  z-index: 1;
}

/* Visual Grid Layout - Property Types */
.visual-property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.property-type-card {
  background: rgba(13, 14, 36, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(33, 150, 243, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.property-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.property-type-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-accent);
  box-shadow: 0 12px 32px rgba(33, 150, 243, 0.25);
}

.property-type-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.property-type-card .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 8px;
  font-size: 1rem;
}

.property-type-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-type-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}

.property-type-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-accent);
  font-size: 0.85rem;
}

/* Solutions Banner */
.solutions-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: rgba(33, 150, 243, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.25);
  border-radius: 20px;
  padding: 2rem;
}

.solution-item {
  text-align: center;
  padding: 1.25rem;
}

.solution-item h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 0.75rem;
}

.solution-item p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Infrastructure Visual Layout */
.infra-visual-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.infra-sectors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.infra-sector-card {
  background: rgba(13, 14, 36, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
}

.infra-sector-card.highlight {
  grid-column: span 2;
  border-color: var(--highlight-accent);
  background: linear-gradient(135deg, rgba(226, 63, 143, 0.12), rgba(33, 150, 243, 0.08));
}

.infra-sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-accent);
  border-radius: 14px 0 0 14px;
}

.infra-sector-card:hover {
  transform: translateX(4px);
  border-color: var(--primary-accent);
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.15);
}

.infra-sector-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.infra-sector-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infra-sector-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  line-height: 1.4;
}

/* Infrastructure Solutions Panel */
.infra-solutions-panel {
  background: rgba(13, 14, 36, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(33, 150, 243, 0.3);
  border-radius: 20px;
  padding: 2rem;
}

.infra-solutions-panel h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(33, 150, 243, 0.3);
}

.infra-solution-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.infra-solution-item:last-child {
  border-bottom: none;
}

.infra-solution-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-accent);
  margin-bottom: 0.5rem;
}

.infra-solution-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Hero Image Container */
.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  height: 160px;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(5, 6, 26, 0.95), transparent);
}

.hero-image-container .hero-title {
  position: absolute;
  bottom: 1.25rem;
  left: 2rem;
  z-index: 2;
}

.hero-image-container .hero-title h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-image-container .hero-title p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive for Visual Industry Slides */
@media (max-width: 1280px) {
  .visual-property-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-banner {
    grid-template-columns: repeat(2, 1fr);
  }

  .infra-visual-layout {
    grid-template-columns: 1fr;
  }

  .infra-sectors {
    grid-template-columns: repeat(3, 1fr);
  }

  .infra-sector-card.highlight {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .visual-property-grid {
    grid-template-columns: 1fr;
  }

  .solutions-banner {
    grid-template-columns: 1fr;
  }

  .infra-sectors {
    grid-template-columns: 1fr 1fr;
  }

  .infra-sector-card.highlight {
    grid-column: span 2;
  }
}

/* ============================================
   Scenario Layout - 3-Panel Customer View
   Challenge | Solution | Results
   ============================================ */

.scenario-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 2rem;
  height: 100%;
  align-items: stretch;
}

.scenario-panel {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.scenario-panel.challenge {
  border-top: 4px solid #E23F8F;
}

.scenario-panel.solution {
  border-top: 4px solid var(--primary-accent);
}

.scenario-panel.results {
  border-top: 4px solid #2196F3;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.08), rgba(46, 44, 122, 0.05));
}

.panel-header {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario-panel.challenge .panel-header {
  color: #E23F8F;
}

.scenario-panel.solution .panel-header {
  color: var(--primary-accent);
}

.scenario-panel.results .panel-header {
  color: #2196F3;
}

.scenario-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scenario-item:last-child {
  border-bottom: none;
}

.scenario-item h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.35rem 0;
}

.scenario-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.result-metric {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.result-metric:last-child {
  border-bottom: none;
}

.result-metric .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2196F3;
  white-space: nowrap;
}

.result-metric .label {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Responsive for Scenario Layout */
@media (max-width: 1280px) {
  .scenario-layout {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .scenario-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .scenario-panel {
    padding: 1.25rem;
  }
}

/* ============================================
   Slide-Specific Color Themes (Brand Colors)
   Navy: #1C1D3A | Dark Navy: #05061A
   Blue: #2196F3 | Purple: #2E2C7A | Pink: #E23F8F
   ============================================ */

/* Slide 23: Security - Blue Theme */
#slide-23 .scenario-panel.solution {
  border-top-color: #2196F3;
}
#slide-23 .scenario-panel.solution .panel-header {
  color: #2196F3;
}
#slide-23 .scenario-item h5 {
  color: #64B5F6;
}
#slide-23 .scenario-panel.results {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.08), rgba(46, 44, 122, 0.05));
}
#slide-23 .result-metric .value {
  color: #2196F3;
}

/* Slide 24: Energy & Water - Purple Theme */
#slide-24 .scenario-panel.solution {
  border-top-color: #2E2C7A;
}
#slide-24 .scenario-panel.solution .panel-header {
  color: #7C7AE6;
}
#slide-24 .scenario-item h5 {
  color: #9E9CE6;
}
#slide-24 .scenario-panel.results {
  background: linear-gradient(135deg, rgba(46, 44, 122, 0.12), rgba(33, 150, 243, 0.05));
}
#slide-24 .result-metric .value {
  color: #7C7AE6;
}

/* Slide 25: Workforce - Pink Theme */
#slide-25 .scenario-panel.solution {
  border-top-color: #E23F8F;
}
#slide-25 .scenario-panel.solution .panel-header {
  color: #E23F8F;
}
#slide-25 .scenario-item h5 {
  color: #F48FB1;
}
#slide-25 .scenario-panel.results {
  background: linear-gradient(135deg, rgba(226, 63, 143, 0.08), rgba(46, 44, 122, 0.05));
}
#slide-25 .result-metric .value {
  color: #E23F8F;
}

/* Slide 26: Sustainability - Blue/Purple Gradient Theme */
#slide-26 .scenario-panel.solution {
  border-top-color: #2196F3;
}
#slide-26 .scenario-panel.solution .panel-header {
  color: #2196F3;
}
#slide-26 .scenario-item h5 {
  color: #64B5F6;
}
#slide-26 .scenario-panel.results {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.08), rgba(226, 63, 143, 0.05));
}
#slide-26 .result-metric .value {
  color: #2196F3;
}

/* Remove decorative elements from Industry slides (Property/Infrastructure) */
#slide-11a .property-type-card::before,
#slide-11b .property-type-card::before {
  display: none;
}

/* Remove blue overlay from Industry slides during transitions */
#slide-11a.depth-slide::before,
#slide-11b.depth-slide::before {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  content: none !important;
}

/* Remove blue border from cards on Industry slides */
#slide-11a .property-type-card,
#slide-11b .property-type-card {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Remove blue from solutions banner on Industry slides */
#slide-11a .solutions-banner,
#slide-11b .solutions-banner {
  background: rgba(28, 29, 58, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Remove blue styling from Learning Compounds slide */
#slide-19 .slide-image {
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#slide-19 .learning-step {
  border-color: rgba(255, 255, 255, 0.1);
}

#slide-19 .learning-step:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .result-metric {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* ============================================
   Use Case Label (top-left positioning)
   Brand Colors: Blue #2196F3, Pink #E23F8F
   ============================================ */
.use-case-label {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(226, 63, 143, 0.1));
  border: 1px solid rgba(33, 150, 243, 0.4);
  color: #FFFFFF;
  z-index: 10;
}

/* Slide-specific use case label colors */
#slide-23 .use-case-label {
  border-color: rgba(33, 150, 243, 0.5);
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(46, 44, 122, 0.1));
}
#slide-24 .use-case-label {
  border-color: rgba(46, 44, 122, 0.5);
  background: linear-gradient(135deg, rgba(46, 44, 122, 0.2), rgba(33, 150, 243, 0.1));
}
#slide-25 .use-case-label {
  border-color: rgba(226, 63, 143, 0.5);
  background: linear-gradient(135deg, rgba(226, 63, 143, 0.2), rgba(46, 44, 122, 0.1));
}
#slide-26 .use-case-label {
  border-color: rgba(33, 150, 243, 0.5);
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(226, 63, 143, 0.1));
}

/* ============================================
   Security Intelligence Flow - Animated Diagram
   ============================================ */
.intel-flow-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 500px;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(5, 6, 26, 0.8), rgba(28, 29, 58, 0.6));
  border: 1px solid rgba(33, 150, 243, 0.2);
  overflow: hidden;
}

#intel-flow-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Security Flow Diagram - Full Width Clean Layout */
.security-flow-diagram {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(5, 6, 26, 0.9), rgba(28, 29, 58, 0.7));
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: 16px;
}

.security-flow-diagram canvas {
  display: block;
  width: 100%;
  height: auto;
}

/* Flow Stages - Positioned over canvas */
.flow-stages {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 0 60px 30px;
  pointer-events: none;
}

.flow-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 140px;
}

.flow-stage .stage-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.flow-stage .stage-icon svg {
  width: 28px;
  height: 28px;
}

.flow-stage h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.flow-stage p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Stage-specific colors - Security Operations Flow */
/* 1. DETECTION - Blue (Cameras, Drones, Sensors) */
.stage-data .stage-icon {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.4);
}
.stage-data h4 { color: #2196f3; }

/* 2. INTELLIGENCE - Purple (AI Analysis & Correlation) */
.stage-process .stage-icon {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}
.stage-process h4 { color: #a78bfa; }

/* 3. DISPATCH - Pink (Alerts & Task Assignment) */
.stage-action .stage-icon {
  background: linear-gradient(135deg, #e23f8f, #d81b60);
  color: white;
  box-shadow: 0 4px 20px rgba(226, 63, 143, 0.4);
}
.stage-action h4 { color: #e23f8f; }

/* 4. RESPONSE - Orange (Blue Force & Ground Teams) */
.stage-insight .stage-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}
.stage-insight h4 { color: #f59e0b; }

/* 5. CLOSURE - Green (Resolution & Audit Trail) */
.stage-analytics .stage-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}
.stage-analytics h4 { color: #10b981; }

/* Intel Main Layout - 3 Column */
.intel-main-layout {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

/* Challenges Column (Left) */
.intel-challenges {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 1rem;
}

.intel-challenges h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ef4444;
  margin-bottom: 0.75rem;
  text-align: center;
  font-weight: 600;
}

.challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  padding: 0.4rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.challenge-item:last-child {
  margin-bottom: 0;
}

.challenge-icon {
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.challenge-item strong {
  display: block;
  font-size: 0.7rem;
  color: #fca5a5;
  font-weight: 600;
}

.challenge-item p {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}

/* Solutions Column (Right) */
.intel-solutions {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 1rem;
}

.intel-solutions h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #10b981;
  margin-bottom: 0.75rem;
  text-align: center;
  font-weight: 600;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  padding: 0.4rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.solution-item:last-child {
  margin-bottom: 0;
}

.solution-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.solution-item strong {
  display: block;
  font-size: 0.7rem;
  color: #6ee7b7;
  font-weight: 600;
}

.solution-item p {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}

/* Flow Center */
.intel-flow-center {
  display: flex;
  flex-direction: column;
}

.intel-flow-center .intel-flow-container {
  flex: 1;
  margin-bottom: 0.5rem;
}

/* Flow Labels */
.flow-labels {
  display: flex;
  justify-content: space-around;
  padding: 0 2rem;
}

.flow-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flow-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: currentColor;
  color: #fff;
  border-radius: 50%;
  font-size: 0.6rem;
}

/* Intel Stats Row */
.intel-stats-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.intel-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem 1rem;
  background: rgba(13, 14, 36, 0.6);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 10px;
  min-width: 100px;
  transition: all 0.3s ease;
}

.intel-stat:hover {
  border-color: rgba(33, 150, 243, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.15);
}

.intel-stat .stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-accent), var(--highlight-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intel-stat .stat-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.15rem;
  text-align: center;
}

/* Security Flow Slide Label */
#slide-security-flow .use-case-label {
  border-color: rgba(33, 150, 243, 0.5);
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(226, 63, 143, 0.1));
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .intel-flow-container {
    height: 400px;
  }

  .flow-stages {
    padding: 0 30px 20px;
  }

  .flow-stage {
    width: 100px;
  }

  .flow-stage .stage-icon {
    width: 40px;
    height: 40px;
  }

  .flow-stage .stage-icon svg {
    width: 22px;
    height: 22px;
  }

  .flow-stage h4 {
    font-size: 0.7rem;
  }

  .flow-stage p {
    font-size: 0.65rem;
  }

  .intel-stats-row {
    gap: 1rem;
  }

  .intel-stat {
    min-width: 110px;
    padding: 0.75rem 1rem;
  }

  .intel-stat .stat-value {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .intel-flow-container {
    height: 300px;
  }

  .flow-stages {
    display: none;
  }

  .intel-stats-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   Mobile Scrollable Mode - Simplified View
   Streamlined for mobile reading
   ============================================ */
@media (max-width: 768px) {
  /* Enable scrolling */
  html, body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  /* Scrollable container */
  .deck-container {
    width: 100%;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .deck-container::before {
    display: none;
  }

  /* Slides stack vertically - compact height */
  .slide {
    position: relative !important;
    width: 100%;
    min-height: auto !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
    display: block;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(33, 150, 243, 0.15);
  }

  .slide.transitioning-out {
    opacity: 1 !important;
  }

  /* Slide content - compact */
  .slide-content {
    max-height: none !important;
    height: auto !important;
    overflow: visible;
    width: 100%;
    padding: 1rem !important;
    display: block !important;
  }

  /* Hide navigation */
  .nav-container, .nav-btn, .slide-indicator,
  .keyboard-hint, .progress-bar, .overview-grid,
  .mode-indicator, .help-overlay {
    display: none !important;
  }

  /* ===== TYPOGRAPHY - Mobile Sizes ===== */
  h1 { font-size: 1.4rem !important; }
  h2 { font-size: 1.2rem !important; margin-bottom: 0.75rem !important; }
  h3 { font-size: 1rem !important; }
  h4 { font-size: 0.9rem !important; }
  p { font-size: 0.85rem !important; line-height: 1.5 !important; margin-bottom: 0.5rem !important; }
  ul li { font-size: 0.85rem !important; margin-bottom: 0.3rem !important; }

  /* ===== COVER SLIDE ===== */
  .cover-slide {
    min-height: 70vh !important;
    padding: 2rem 0 !important;
  }

  .cover-layout {
    flex-direction: column !important;
    gap: 1.5rem !important;
    padding: 1rem !important;
    height: auto !important;
  }

  .cover-text {
    text-align: center;
    padding: 0 !important;
    width: 100% !important;
    flex: none !important;
  }

  .cover-text h2 { font-size: 1.1rem !important; }
  .cover-text h3 { font-size: 0.95rem !important; }
  .cover-text .tagline { font-size: 0.9rem !important; margin-top: 0.75rem !important; }

  /* Logo - properly sized */
  .hydra-logo {
    max-width: 160px !important;
    width: 160px !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block;
  }

  .cover-images, .cover-image-carousel {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    height: auto !important;
  }

  .cover-img {
    max-width: 100% !important;
    height: auto !important;
  }

  .carousel-indicators { display: none !important; }

  /* ===== DISABLE ALL ANIMATIONS ===== */
  .animate-fade-up, .animate-slide-left, .animate-slide-right, .stagger-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* ===== GRID LAYOUTS - Stack Vertically ===== */
  .split-layout, .split-layout.image-left, .split-layout.image-right {
    display: block !important;
  }

  .split-layout > div {
    width: 100% !important;
    margin-bottom: 1rem;
  }

  .four-quadrant, .two-column, .three-column, .modules-grid-3col {
    display: block !important;
  }

  .four-quadrant > *, .two-column > *, .three-column > *, .modules-grid-3col > * {
    margin-bottom: 0.75rem;
  }

  /* ===== CARDS - Compact ===== */
  .card {
    padding: 0.75rem !important;
    margin-bottom: 0.75rem;
  }

  .card h4 { font-size: 0.9rem !important; }
  .card ul { padding-left: 1rem; }
  .card li { font-size: 0.8rem !important; }

  /* ===== IMAGES - Responsive ===== */
  .slide-image, .alternatives-image, .image-container img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 0.5rem 0;
  }

  .image-container {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ===== HIDE NON-ESSENTIAL CONTENT ===== */
  .slide-background { display: none !important; }
  .hero-image-container { display: none !important; }
  .carousel-indicators { display: none !important; }

  /* ===== PROPERTY/INFRASTRUCTURE SLIDES ===== */
  /* Simplify segment blocks - show as compact list */
  .depth-slide .slide-content > div[style*="display: flex"][style*="gap"] {
    display: block !important;
    max-height: none !important;
  }

  /* Segment blocks - smaller */
  .stagger-item[style*="border-radius: 14px"],
  .stagger-item[style*="border-radius: 12px"] {
    padding: 0.75rem !important;
    margin-bottom: 0.5rem;
    flex: none !important;
    width: 100% !important;
  }

  .stagger-item[style*="border-radius"] > div[style*="font-size: 2.75rem"],
  .stagger-item[style*="border-radius"] > div[style*="font-size: 2.5rem"] {
    font-size: 1.5rem !important;
    margin-bottom: 0.25rem !important;
  }

  .stagger-item[style*="border-radius"] > div[style*="font-weight: 700"] {
    font-size: 0.9rem !important;
  }

  .stagger-item[style*="border-radius"] > div[style*="opacity: 0.7"] {
    display: none !important;
  }

  .stagger-item[style*="border-radius"] > div[style*="color: #64b5f6"],
  .stagger-item[style*="border-radius"] > div[style*="color: #f06fac"] {
    font-size: 0.8rem !important;
  }

  /* What HYDRA Does section - compact */
  .stagger-item[style*="padding: 1.75rem 3rem"],
  .stagger-item[style*="padding: 1.5rem 3rem"] {
    padding: 1rem !important;
  }

  .stagger-item[style*="padding: 1.75rem 3rem"] > div[style*="display: flex"],
  .stagger-item[style*="padding: 1.5rem 3rem"] > div[style*="display: flex"] {
    display: block !important;
    gap: 0 !important;
  }

  .stagger-item[style*="padding: 1.75rem 3rem"] > div[style*="display: flex"] > div,
  .stagger-item[style*="padding: 1.5rem 3rem"] > div[style*="display: flex"] > div {
    display: inline-block;
    width: 48%;
    vertical-align: top;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .stagger-item[style*="padding: 1.75rem 3rem"] > div[style*="display: flex"] > div > div[style*="font-size: 2.5rem"],
  .stagger-item[style*="padding: 1.5rem 3rem"] > div[style*="display: flex"] > div > div[style*="font-size: 2.25rem"] {
    font-size: 1.25rem !important;
  }

  /* ===== MODULES SLIDE ===== */
  .module-column {
    padding: 0.75rem !important;
    margin-bottom: 0.75rem;
  }

  .column-header {
    padding: 0.75rem !important;
  }

  .column-header .column-icon { font-size: 1.5rem !important; }
  .column-header h4 { font-size: 1rem !important; }
  .column-header .column-subtitle { font-size: 0.8rem !important; }

  .column-modules { padding: 0.5rem !important; }
  .mod-item { font-size: 0.85rem !important; padding: 0.4rem !important; }

  /* Platform Add-ons - hide on mobile */
  .addons-row {
    display: none !important;
  }

  /* ===== JOURNEY/TIMELINE ===== */
  .journey-content, .journey-content.five-col {
    display: block !important;
  }

  .journey-stage, .journey-content > * {
    margin-bottom: 0.75rem;
  }

  .timeline-flow { flex-direction: column !important; }
  .timeline-phase::after { display: none !important; }

  /* ===== SCENARIO/CTA LAYOUTS ===== */
  .scenario-layout, .cta-layout, .solutions-grid {
    display: block !important;
  }

  .scenario-layout > *, .cta-layout > *, .solutions-grid > * {
    margin-bottom: 0.75rem;
  }

  /* ===== MISC ADJUSTMENTS ===== */
  .highlight { font-size: 0.9rem !important; }
  .text-large { font-size: 0.95rem !important; }

  /* Activity items */
  .activity-item {
    min-width: auto !important;
    width: 100% !important;
    padding: 0.5rem !important;
    font-size: 0.85rem !important;
  }

  /* Flow rows */
  .flow-row { flex-direction: column !important; gap: 0.5rem !important; }

  /* Buyer reality */
  .buyer-reality-grid { display: block !important; }
  .leader-questions li { font-size: 0.9rem !important; }

  /* Stats rows */
  .cover-stats, .intel-stats-row {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  /* Hide decorative elements */
  .slide::after { display: none; }
}

/* ===== EXTRA SMALL SCREENS ===== */
@media (max-width: 480px) {
  .slide { padding: 1rem 0; }
  .slide-content { padding: 0.75rem !important; }

  h1 { font-size: 1.2rem !important; }
  h2 { font-size: 1rem !important; }
  h3 { font-size: 0.9rem !important; }
  p, ul li { font-size: 0.8rem !important; }

  .hydra-logo {
    max-width: 120px !important;
    width: 120px !important;
  }

  .cover-slide { min-height: 60vh !important; }
  .cover-text h2 { font-size: 1rem !important; }
  .cover-text .tagline { font-size: 0.85rem !important; }

  /* Even more compact cards */
  .card { padding: 0.5rem !important; }
  .module-column { padding: 0.5rem !important; }

  /* Hide more non-essential on very small screens */
  .what-hydra-visual { display: none !important; }
}

/* ===== OVERRIDE INLINE STYLES ON MOBILE ===== */
@media (max-width: 768px) {
  /* Force all flex containers with inline gap to stack */
  [style*="display: flex"][style*="gap"] {
    flex-direction: column !important;
    gap: 0.5rem !important;
    max-height: none !important;
    height: auto !important;
  }

  /* Reset flex:1 on children */
  [style*="flex: 1"] {
    flex: none !important;
    width: 100% !important;
  }

  /* Reset max-height constraints */
  [style*="max-height"] {
    max-height: none !important;
  }

  /* Reset height:100% on slide content */
  [style*="height: 100%"] {
    height: auto !important;
  }

  /* Reset vh units */
  [style*="vh"] {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }

  /* Inline-styled fonts - scale down */
  [style*="font-size: 2.75rem"] { font-size: 1.5rem !important; }
  [style*="font-size: 2.5rem"] { font-size: 1.25rem !important; }
  [style*="font-size: 2.4rem"] { font-size: 1.2rem !important; }
  [style*="font-size: 2.25rem"] { font-size: 1.1rem !important; }
  [style*="font-size: 2.2rem"] { font-size: 1.1rem !important; }
  [style*="font-size: 1.5rem"] { font-size: 1rem !important; }
  [style*="font-size: 1.3rem"] { font-size: 0.95rem !important; }
  [style*="font-size: 1.25rem"] { font-size: 0.9rem !important; }
  [style*="font-size: 1.2rem"] { font-size: 0.85rem !important; }
  [style*="font-size: 1.15rem"] { font-size: 0.85rem !important; }
  [style*="font-size: 1.1rem"] { font-size: 0.8rem !important; }
  [style*="font-size: 1.05rem"] { font-size: 0.8rem !important; }
  [style*="font-size: 1rem"] { font-size: 0.8rem !important; }

  /* Reduce padding on inline padded elements */
  [style*="padding: 1.75rem"] { padding: 0.75rem !important; }
  [style*="padding: 1.5rem"] { padding: 0.75rem !important; }
  [style*="padding: 1.25rem"] { padding: 0.5rem !important; }
  [style*="padding: 2rem 4rem"] { padding: 1rem !important; }
  [style*="padding: 1.25rem 6rem"] { padding: 0.75rem 1rem !important; }

  /* Grid gap reductions */
  [style*="gap: 4rem"] { gap: 0.75rem !important; }
  [style*="gap: 3rem"] { gap: 0.5rem !important; }
  [style*="gap: 2rem"] { gap: 0.5rem !important; }
  [style*="gap: 1.5rem"] { gap: 0.5rem !important; }
  [style*="gap: 1.25rem"] { gap: 0.5rem !important; }

  /* Hide hero image containers with inline height */
  [style*="height: 16vh"],
  [style*="height: 14vh"] {
    display: none !important;
  }

  /* Simplify the segment rows in Property/Infrastructure slides */
  #slide-11a .slide-content > div[style*="display: flex"],
  #slide-11b .slide-content > div[style*="display: flex"] {
    flex-wrap: wrap !important;
  }

  /* Only show first 3 segments on mobile */
  #slide-11a .slide-content > div[style*="display: flex"] > .stagger-item:nth-child(n+4):not(:last-child),
  #slide-11b .slide-content > div[style*="flex-direction: column"] > div > .stagger-item:nth-child(n+3) {
    display: none !important;
  }

  /* Simpler segment display */
  .depth-slide .stagger-item[style*="border-radius"] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 0.75rem 1rem !important;
    gap: 0.75rem;
  }

  .depth-slide .stagger-item[style*="border-radius"] > div:first-child {
    margin-bottom: 0 !important;
    flex-shrink: 0;
  }
}
