/* Binarial Pitch Deck Stylesheet - Binarial Pure Glassmorphism */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg_canvas);
  color: var(--text_primary);
  font-family: var(--font_family);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  position: relative;
}

/* --- Pureza Tipográfica: No shadows/gradients in fonts --- */
h1, h2, h3, h4, h5, h6, p, span, button, div {
  text-shadow: none !important;
}

/* --- Tailwind CSS Utility Class Mappings --- */
.w-screen { width: 100vw; }
.h-screen { height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.text-center { text-align: center; }
.z-10 { z-index: 10; }
.text-10xl { font-size: 160px; line-height: 0.9; }
.text-base { font-size: 16px; }
.text-sm { font-size: 14px; }
.font-600 { font-weight: 600; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.uppercase { text-transform: uppercase; }
.mt-6 { margin-top: 24px; }
.select-none { user-select: none; }

/* --- Binarial Studio Card Style --- */
.binarial-studio-card, .binarial-pure-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-specular);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.97) translateY(10px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Orbes de luz de fondo para refracción del cristal */
.ambient-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31, 161, 132, 0.05) 0%, rgba(255,255,255,0) 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

/* Global Ambient background glows */
.ambient-glow {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.6;
}

.bg-glow-1 {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(31, 161, 132, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.bg-glow-2 {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(31, 161, 132, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Background Media & Fallbacks */
.slide-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  filter: brightness(1.02) contrast(0.98);
  transition: opacity 0.8s ease;
}

/* Floating Global Header */
.apple-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1100px;
  height: 52px;
  z-index: 100;
  border-radius: var(--glass_radius);
  border: 1px solid var(--border_specular);
  box-shadow: var(--glass_shadow);
  overflow: hidden;
}

.header-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg_glass_base);
  backdrop-filter: var(--glass_blur);
  -webkit-backdrop-filter: var(--glass_blur);
  z-index: -1;
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  width: 26px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-svg {
  width: 100%;
  height: 100%;
}

.logo-hex {
  fill: none;
  stroke: var(--text_primary);
  stroke-width: 13;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-dash {
  fill: none;
  stroke: var(--accent_brand);
  stroke-width: 13;
  stroke-linecap: round;
  transform-origin: 90px 60px;
  animation: dash-slide-in-out 4s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes dash-slide-in-out {
  0%, 100% {
    transform: translateX(0) scaleX(1);
  }
  40%, 60% {
    transform: translateX(-43px) scaleX(0.31);
  }
}

.header-title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text_primary);
}

.header-subtitle {
  font-weight: 400;
  font-size: 10px;
  color: var(--text_muted);
  letter-spacing: 1px;
  margin-left: 6px;
  border-left: 1px solid rgba(29, 29, 31, 0.1);
  padding-left: 10px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-progress {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: monospace;
}

.progress-current {
  color: var(--text_primary);
}

.progress-divider {
  color: var(--text_muted);
}

.progress-total {
  color: var(--text_muted);
}

.header-clock {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text_muted);
  font-family: monospace;
}

/* Floating Glass Dock (Controls) */
.apple-dock-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: none;
}

.apple-dock {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--bg_glass_base);
  border: 1px solid var(--border_specular);
  backdrop-filter: var(--glass_blur);
  -webkit-backdrop-filter: var(--glass_blur);
  border-radius: 30px;
  box-shadow: var(--glass_shadow);
}

.dock-btn {
  background: transparent;
  border: none;
  color: var(--text_primary);
  padding: 6px 12px;
  font-family: var(--font_family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  transition: var(--transition_smooth);
}

.dock-btn:hover {
  background: rgba(29, 29, 31, 0.04);
}

.dock-btn-icon {
  font-size: 12px;
}

.dock-divider {
  width: 1px;
  height: 16px;
  background: rgba(29, 29, 31, 0.08);
}

.dock-nav-arrows {
  display: flex;
  gap: 4px;
}

.dock-arrow-btn {
  background: transparent;
  border: none;
  color: var(--text_primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition_smooth);
}

.dock-arrow-btn:hover {
  background: rgba(29, 29, 31, 0.04);
}

/* Minimal navigation dots */
.apple-nav-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg_glass_base);
  border: 1px solid var(--border_specular);
  padding: 14px 6px;
  border-radius: 20px;
  backdrop-filter: var(--glass_blur);
  -webkit-backdrop-filter: var(--glass_blur);
  box-shadow: var(--glass_shadow);
}

.hud-dot-container {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.hud-dot-label {
  position: absolute;
  right: 28px;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text_muted);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.hud-dot-container:hover .hud-dot-label {
  opacity: 1;
  transform: translateX(0);
  color: var(--text_primary);
}

.hud-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text_muted);
  transition: var(--transition_smooth);
}

.hud-dot-container.active .hud-dot {
  background-color: var(--accent_brand);
  transform: scale(1.4);
}

.hud-dot-container:hover .hud-dot {
  background-color: var(--text_primary);
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg_canvas);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  width: 280px;
}

.loading-iso {
  width: 60px;
  height: 46px;
  margin-bottom: 24px;
}

.loading-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--text_primary);
  margin-bottom: 24px;
}

.loading-bar-container {
  height: 2px;
  width: 100%;
  background: rgba(29, 29, 31, 0.05);
  border-radius: 1px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: var(--accent_brand);
  transition: width 0.3s ease;
}

/* Scroll snap slider base */
#presentation-container {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: transparent;
}

#presentation-container::-webkit-scrollbar {
  display: none;
}

.slide {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 80px 80px 80px;
  box-sizing: border-box;
  background-color: var(--bg_canvas);
}


/* ==========================================================================
   SLIDE 1: HERO
   ========================================================================== */

#gancho.slide {
  background-color: var(--bg_canvas);
}

.gancho-connecting-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.3);
  width: 500px;
  height: 500px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.02;
  fill: none;
  stroke: var(--text_primary);
  stroke-width: 1.5;
}

.gancho-glass-window {
  width: auto;
  min-width: 580px;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

#hero-metric {
  font-size: 96px !important;
  font-weight: 600;
  color: var(--text_primary);
  letter-spacing: -3px;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

.gancho-float-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent_brand);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 24px;
  z-index: 5;
  opacity: 0;
}


/* ==========================================================================
   SLIDE 2: TRACCIÓN
   ========================================================================== */

#origen.slide {
  background-color: var(--bg_canvas);
}

/* Fullscreen background video for Slide 2 */
.s2-bg-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  opacity: 0.35;
}

.s2-bg-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origen-grid-container {
  width: 100%;
  max-width: 1100px;
  height: 50%;
  display: flex;
  gap: 32px;
  position: relative;
  z-index: 5;
}

#origen-card-1, #origen-card-2 {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#origen-card-3 {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.origen-metric-value {
  font-weight: 600; /* Karla Semibold */
  font-size: 48px;
  color: var(--text_primary);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  white-space: nowrap;
}

.origen-metric-desc {
  font-size: 14px;
  color: var(--text_muted);
  line-height: 1.5;
  font-weight: 400;
}


/* ==========================================================================
   SLIDE 3: ESCALABILIDAD (TROO® & KAIOS)
   ========================================================================== */

.split-screen-container {
  width: 100%;
  height: 75%;
  display: flex;
  gap: 32px;
  position: relative;
  z-index: 5;
  max-width: 900px;
}

.split-panel {
  flex: 1;
  height: 100%;
}

.split-panel-header {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 32px;
}

.split-panel-title {
  font-size: 16px;
  font-weight: 600; /* Karla Semibold */
  letter-spacing: 1px;
  color: var(--text_primary);
}

.split-panel-body {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  height: calc(100% - 64px);
}

.split-panel .slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}


/* ==========================================================================
   SLIDE 4: EL MODELO (NUBIQ RIGHT PANEL)
   ========================================================================== */

.slide4-container {
  width: 100%;
  max-width: 900px;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 5;
}

.slide4-spacer-left {
  flex: 1.2;
}

.slide4-panel-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide4-compact-card {
  width: 100%;
  height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
}

.slide4-video-box {
  width: 100%;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.slide4-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide4-details-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 264px);
}

.slide4-badge-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text_primary);
  letter-spacing: -0.5px;
}


/* ==========================================================================
   SLIDE 5: VALIDACIÓN (TECNOLOGÍA DUAL)
   ========================================================================== */

#defensa.slide {
  background-color: var(--bg_canvas);
}

/* Grid of vector dashed lines on background */
.swarm-vector-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
}

.radar-slide-container {
  width: 100%;
  max-width: 900px;
  height: 100%;
  position: relative;
  z-index: 5;
}

.defensa-glass-header {
  position: absolute;
  top: 10px;
  left: 0;
  padding: 16px 28px;
}

.radar-title {
  font-size: 14px;
  font-weight: 600; /* Karla Semibold */
  letter-spacing: 3px;
  color: var(--text_primary);
  text-transform: uppercase;
}

.radar-visual-wrapper {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 60%;
  z-index: 2;
}


/* ==========================================================================
   SLIDE 6: EL CLÍMAX (BREO)
   ========================================================================== */

#climax.slide {
  background-color: var(--bg_canvas);
}

.climax-container {
  width: 100%;
  max-width: 900px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.climax-left-video {
  width: 480px;
  height: 300px;
  z-index: 2;
}

.climax-left-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.climax-float-stat {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  display: flex;
  flex-direction: column;
}

.climax-float-left {
  left: 0;
  text-align: right;
}

.climax-float-right {
  right: 0;
  text-align: left;
}

.climax-stat-label {
  display: block;
  font-size: 26px;
  font-weight: 600; /* Karla Semibold */
  color: var(--text_primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.climax-stat-sublabel {
  display: block;
  font-size: 10px;
  color: var(--text_muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 8px;
}

.climax-pill-tag {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding: 8px 20px;
  border-radius: 30px !important;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.climax-pill-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent_brand);
  font-family: var(--font_family);
}

/* Dashboard Breo Neumorphic UI */
.system-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.metric-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.metric-label {
    font-size: 10.4px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text_primary);
}
.pill-track {
    width: 100%;
    height: 24px;
    background-color: var(--bg_canvas);
    border-radius: 12px;
    box-shadow: inset 3px 3px 6px rgba(163,177,198,0.3), inset -3px -3px 6px rgba(255,255,255,0.7);
    padding: 3px;
    box-sizing: border-box;
}
.pill-fill {
    height: 100%;
    background-color: var(--accent_brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10.4px;
    font-weight: bold;
    transition: width 1s ease-out;
}
.joint-metrics {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.joint-monitor {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: inset 4px 4px 8px rgba(163,177,198,0.3), inset -4px -4px 8px rgba(255,255,255,0.7);
}
.arc-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.arc-bg {
    fill: none;
    stroke: var(--bg_canvas);
    stroke-width: 10;
    filter: drop-shadow(2px 2px 3px rgba(163,177,198,0.3)) drop-shadow(-2px -2px 3px rgba(255,255,255,0.7));
}
.arc-value {
    fill: none;
    stroke: var(--text_primary);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 565;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 0.8s ease-out;
}
.arc-value-outer {
    fill: none;
    stroke: var(--text_muted);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 690;
    stroke-dashoffset: 400;
    opacity: 0.3;
}
.joint-data { text-align: center; z-index: 10; }
.joint-title { font-size: 10.4px; font-weight: 700; margin-bottom: 5px; color: var(--text_primary); }
.joint-stat { font-size: 10.4px; font-weight: 600; margin: 2px 0; }

/* ==========================================================================
   SLIDE 7: SOBERANÍA (CIERRE)
   ========================================================================== */

#cierre.slide {
  background-color: var(--bg_canvas);
}

.cierre-watermark-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(31, 161, 132, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: transform 2.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 2.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.cierre-container {
  width: 100%;
  max-width: 900px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

.cierre-logo-wrapper {
  width: 320px;
  height: auto;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.97);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.cierre-logo-wrapper svg {
  width: 100%;
  height: auto;
}

.cierre-logo-wrapper svg .logo-text-main {
  fill: var(--text_primary) !important;
}
.cierre-logo-wrapper svg .logo-hex {
  stroke: var(--text_primary) !important;
}
.cierre-logo-wrapper svg .logo-text-sub {
  fill: var(--accent_brand) !important;
}
.cierre-logo-wrapper svg .logo-text-reg {
  fill: var(--text_primary) !important;
}
.cierre-logo-wrapper svg .logo-dash {
  stroke: var(--accent_brand) !important;
}

.cierre-origin-tag {
  font-size: 13px;
  color: var(--text_muted);
  letter-spacing: 1.5px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 1s ease 0.3s, opacity 1s ease 0.3s;
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .slide {
    padding: 80px 40px;
  }
  
  .origen-grid-container {
    gap: 20px;
  }
  
  .origen-metric-value {
    font-size: 48px;
  }
  
  .climax-left-video {
    width: 400px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  body {
    overflow-y: auto;
  }
  
  #presentation-container {
    scroll-snap-type: none;
    overflow-y: visible;
    height: auto;
  }
  
  .slide {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 80px 20px;
    scroll-snap-align: none;
  }
  
  .apple-header {
    padding: 0 16px;
    height: 46px;
    width: calc(100% - 24px);
    top: 12px;
  }
  
  .apple-nav-dots,
  .header-subtitle {
    display: none !important;
  }
  
  .apple-dock-container {
    bottom: 12px;
  }
  
  .apple-dock {
    padding: 4px 10px;
  }

  /* Slide 1 Mobile */
  .text-10xl {
    font-size: 80px;
  }
  
  /* Slide 2 Mobile */
  .origen-grid-container {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
  }
  
  .binarial-pure-glass {
    width: 100% !important;
    height: auto;
    padding: 30px !important;
  }
  
  /* Slide 3 Mobile */
  .split-screen-container {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  
  .split-panel {
    height: auto;
  }
  
  .split-panel-body {
    height: 200px;
  }
  
  /* Slide 4 Mobile */
  .slide4-container {
    flex-direction: column;
  }
  
  .slide4-spacer-left {
    display: none;
  }
  
  .slide4-panel-right {
    width: 100%;
  }
  
  .slide4-compact-card {
    height: auto;
  }
  
  /* Slide 5 Mobile */
  .radar-visual-wrapper {
    height: 350px;
  }

  /* Slide 6 Mobile */
  .climax-container {
    flex-direction: column;
    height: auto;
    padding-top: 40px;
  }
  
  .climax-left-video {
    width: 100%;
    height: 220px;
  }
  
  .climax-float-stat {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    margin-top: 16px;
  }
}
