:root {
  --brand-orange: #ff4d00;
  --brand-gold: #ffb800;
  --brand-dark: #050505;
  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.15);
  --ease-industrial: cubic-bezier(0.19, 1, 0.22, 1);
}

/* --- GLOBAL & ACCESSIBILITY --- */
body {
  background-color: var(--brand-dark);
  color: #f0f0f0;
  font-family: "Outfit", sans-serif;
  overflow: hidden;
  margin: 0;
  height: 100vh;
  width: 100vw;
  line-height: 1.5;
}

/* Visible Focus for Keyboard Navigation */
*:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
.font-heading {
  font-family: "Space Grotesk", sans-serif;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    var(--brand-dark) 120%
  );
}

/* Neon Pillars */
.neon-pillar-left,
.neon-pillar-right {
  position: fixed;
  top: 15vh;
  bottom: 15vh;
  width: 2px;
  z-index: 20;
  opacity: 0.6;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--brand-orange),
    transparent
  );
  filter: drop-shadow(0 0 8px var(--brand-orange));
}
.neon-pillar-left {
  left: 40px;
}
.neon-pillar-right {
  right: 40px;
}

.ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 77, 0, 0.04) 0%,
    transparent 60%
  );
  transform: translate(-50%, -50%);
}

/* --- TYPOGRAPHY --- */
.text-gradient-gold {
  background: linear-gradient(180deg, #ffd700 0%, #ff8c00 45%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textBreath 5s ease-in-out infinite;
}

@keyframes textBreath {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 90, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(255, 110, 0, 0.75));
  }
}

/* --- FIRE CHANNEL --- */
.fire-channel {
  position: relative;
  width: 60px;
  height: 20px;
  margin: 20px 0;
}

.fire-channel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to top, rgba(255, 100, 0, 0.25), transparent);
  animation: lineFade 5s ease-in-out infinite;
}

@keyframes lineFade {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
}

.ember {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp ease-in-out infinite;
}

@keyframes floatUp {
  0% {
    bottom: 2px;
    opacity: 0;
    transform: translateX(-50%) scale(1);
  }
  20% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    bottom: 46px;
    opacity: 0;
    transform: translateX(-50%) scale(0.3);
  }
}

.ember:nth-child(1) {
  width: 3px;
  height: 3px;
  background: #ff8c00;
  animation-duration: 2.8s;
  animation-delay: 0s;
}
.ember:nth-child(2) {
  width: 2px;
  height: 2px;
  background: #ffd700;
  animation-duration: 3.2s;
  animation-delay: 1.1s;
}
.ember:nth-child(3) {
  width: 2px;
  height: 2px;
  background: #ff6a00;
  animation-duration: 2.5s;
  animation-delay: 2s;
}
.ember:nth-child(4) {
  width: 3px;
  height: 3px;
  background: #ffb300;
  animation-duration: 3.5s;
  animation-delay: 0.6s;
}
.ember:nth-child(5) {
  width: 2px;
  height: 2px;
  background: #ff4500;
  animation-duration: 2.9s;
  animation-delay: 1.7s;
}

/* --- LOGO BREATH --- */
.logo-breath {
  animation: logoBreath 5s ease-in-out infinite;
}

@keyframes logoBreath {
  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(255, 90, 0, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(255, 90, 0, 0.55));
  }
}

/* --- UI COMPONENTS --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-highlight);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.4s var(--ease-industrial),
    border-color 0.4s ease;
}

.glass-card:hover {
  border-color: rgba(255, 77, 0, 0.4);
  transform: translateY(-4px);
}

.browser-mockup {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.source-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* --- ANIMATION ENGINE --- */
.presentation-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.05) translateY(20px);
  filter: blur(12px);
  transition:
    opacity 0.8s var(--ease-industrial),
    transform 0.8s var(--ease-industrial),
    filter 0.8s var(--ease-industrial);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  filter: blur(0);
  z-index: 10;
}

/* Staggered Content Entry */
.slide.active > * {
  animation: fadeUp 0.8s var(--ease-industrial) forwards;
  opacity: 0;
  transform: translateY(30px);
}
.slide.active > *:nth-child(1) {
  animation-delay: 0.1s;
}
.slide.active > *:nth-child(2) {
  animation-delay: 0.2s;
}
.slide.active > *:nth-child(3) {
  animation-delay: 0.3s;
}

.slide.past {
  opacity: 0;
  transform: scale(0.95) translateY(-30px);
  filter: blur(10px);
}

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

/* Utility Animations */
.flow-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 2.5s ease-out forwards 0.5s;
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.roadmap-bar {
  width: 0;
  animation: fillBar 1.2s var(--ease-industrial) forwards 0.3s;
}
@keyframes fillBar {
  to {
    width: 100%;
  }
}

.market-circle {
  transform: scale(0);
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes popIn {
  to {
    transform: scale(1);
  }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  .slide,
  .slide.active,
  .market-circle,
  .roadmap-bar,
  .flow-line,
  .animate-float {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    width: auto !important;
    stroke-dashoffset: 0 !important;
  }
  .slide {
    display: none;
  }
  .slide.active {
    display: flex;
  }
}

/* --- CONTROLS --- */
.controls {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: white;
}
.nav-btn:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: black;
  transform: translateY(-2px);
}
.nav-btn:active {
  transform: translateY(0);
}
.progress-track {
  width: 160px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--brand-orange);
  width: 0%;
  transition: width 0.5s ease;
}

/* SR Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- SLIDE 3 ENHANCEMENTS --- */
.browser-tab-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  overflow: hidden;
}
.browser-tab {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.5;
}
.browser-tab.active-tab {
  opacity: 1;
}

.red-arrow {
  position: absolute;
  z-index: 30;
}

/* --- TEAM SLIDE --- */
.team-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-industrial),
    border-color 0.4s ease;
}
.team-card:hover {
  border-color: rgba(255, 77, 0, 0.4);
  transform: translateY(-4px);
}
.team-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.1);
}
.team-card-info {
  padding: 24px;
  text-align: center;
}

/* --- TAM ENHANCEMENTS --- */
.tam-legend {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}
.tam-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.tam-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* --- ROADMAP ENHANCEMENTS --- */
.roadmap-phase {
  position: relative;
  padding: 28px 32px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.roadmap-phase-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.roadmap-phase-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.roadmap-milestone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-family: monospace;
}
.roadmap-milestone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.roadmap-milestone-dot.done {
  background: var(--brand-orange);
  box-shadow: 0 0 10px var(--brand-orange);
}

/* --- VIDEO SHOWCASE SLIDE --- */
.video-view-toggle {
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 4px;
  gap: 0;
}

.view-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 100px;
  transition: color 0.4s ease;
  white-space: nowrap;
}

.view-btn.active {
  color: #fff;
}

.view-btn svg {
  transition: stroke 0.4s ease;
  stroke: rgba(255, 255, 255, 0.5);
}

.view-btn.active svg {
  stroke: var(--brand-orange);
}

.view-btn-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(50% - 4px);
  background: rgba(255, 77, 0, 0.15);
  border: 1px solid rgba(255, 77, 0, 0.4);
  border-radius: 100px;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
  pointer-events: none;
}

.video-view-toggle.wide .view-btn-slider {
  transform: translateX(100%);
}

.video-showcase-wrapper {
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.video-showcase-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 60px rgba(255, 77, 0, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.6);
  transition:
    width 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    height 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.6s ease;
}

.video-showcase-container.vertical {
  width: 280px;
  height: 500px;
}

.video-showcase-container.horizontal {
  width: 780px;
  height: 440px;
}

.showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  background: #000;
}

.showcase-video.active {
  opacity: 1;
  pointer-events: auto;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  z-index: 10;
  transition:
    opacity 0.4s ease,
    background 0.4s ease;
}

.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-overlay svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.video-play-overlay:hover svg {
  transform: scale(1.1);
}

/* --- HORIZONTAL TIMELINE ROADMAP --- */
.htl {
  position: relative;
  width: 100%;
}

.htl-track {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.htl-track-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    var(--brand-orange),
    rgba(255, 77, 0, 0.35) 60%,
    transparent 100%
  );
  filter: drop-shadow(0 0 8px rgba(255, 77, 0, 0.4));
  animation: htlFill 1.6s var(--ease-industrial) forwards 0.4s;
}

@keyframes htlFill {
  to {
    width: 42%;
  }
}

.htl-nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.htl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Dots */
.htl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.htl-dot.active-dot {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  box-shadow:
    0 0 16px rgba(255, 77, 0, 0.6),
    0 0 40px rgba(255, 77, 0, 0.15);
}

.htl-dot.htl-dot-dim {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.htl-dot-ping {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid var(--brand-orange);
  animation: htlPing 2.2s ease-out infinite;
}

@keyframes htlPing {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* Quarter label */
.htl-label {
  margin-top: 14px;
  margin-bottom: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
}

/* Cards */
.htl-card {
  position: relative;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 28px 24px 24px;
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  transition:
    border-color 0.4s ease,
    transform 0.5s var(--ease-industrial),
    box-shadow 0.4s ease;
}

.htl-card:hover {
  border-color: rgba(255, 77, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.htl-card-active {
  border-color: rgba(255, 77, 0, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 77, 0, 0.08),
    0 25px 60px rgba(0, 0, 0, 0.5);
}

.htl-card-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(255, 77, 0, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.htl-card-dim {
  background: rgba(14, 14, 14, 0.6);
  border-color: rgba(255, 255, 255, 0.04);
  border-style: dashed;
}

/* Badges */
.htl-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 100px;
}

.htl-badge-orange {
  background: rgba(255, 77, 0, 0.15);
  color: #ff8c42;
  border: 1px solid rgba(255, 77, 0, 0.3);
}

.htl-badge-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.htl-badge-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.htl-badge-purple {
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.25);
}

/* Smart Zooms Visual Styles */
.image-wrap {
  position: relative;
  width: 100%;
  height: 224px;
  background: #1a1a1a;
  overflow: hidden;
  border-radius: 16px;
}

.scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
}

.person {
  width: 120px;
  height: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.head {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #3a3a3a;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.body {
  width: 80px;
  height: 110px;
  background: #333;
  border-radius: 12px 12px 0 0;
}

.box-outer {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 144px;
  height: 180px;
  border: 1.5px solid rgba(249, 115, 22, 0.8);
  border-radius: 6px;
  animation: outerPulse 3s ease-in-out infinite;
}

.box-outer::before,
.box-outer::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #f97316;
  border-style: solid;
}
.box-outer::before {
  top: -1.5px;
  left: -1.5px;
  border-width: 2.5px 0 0 2.5px;
  border-radius: 3px 0 0 0;
}
.box-outer::after {
  bottom: -1.5px;
  right: -1.5px;
  border-width: 0 2.5px 2.5px 0;
  border-radius: 0 0 3px 0;
}

@keyframes outerPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.box-inner {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border: 2px solid #f97316;
  border-radius: 4px;
  box-shadow:
    0 0 12px rgba(249, 115, 22, 0.4),
    inset 0 0 12px rgba(249, 115, 22, 0.05);
  animation: innerPulse 3s ease-in-out infinite;
}

.box-inner::before,
.box-inner::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #f97316;
  border-style: solid;
}
.box-inner::before {
  top: -2px;
  left: -2px;
  border-width: 3px 0 0 3px;
  border-radius: 2px 0 0 0;
}
.box-inner::after {
  bottom: -2px;
  right: -2px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 2px 0;
}

@keyframes innerPulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.4);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.7);
  }
}

.zoom-label {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(20px);
  background: #f97316;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.ai-badge {
  position: absolute;
  top: 11px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #333;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #f97316;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f97316;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.zoom-pct {
  position: absolute;
  bottom: 11px;
  right: 14px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  opacity: 0.9;
  letter-spacing: -0.02em;
}

.zoom-pct span {
  font-size: 12px;
  color: #f97316;
  font-weight: 600;
  margin-left: 2px;
}

.scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.04) 3px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
}

.card-footer {
  padding: 20px 24px 24px;
  text-align: center;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.card-sub {
  font-size: 13px;
  color: #666;
}

/* --- UI Screenshot Card --- */
.ui-screenshot-card {
  box-shadow:
    0 25px 60px -12px rgba(0, 0, 0, 0.7),
    0 0 40px -8px rgba(255, 77, 0, 0.08);
  transition:
    box-shadow 0.5s var(--ease-industrial),
    transform 0.5s var(--ease-industrial);
}
.ui-screenshot-card:hover {
  box-shadow:
    0 30px 80px -12px rgba(0, 0, 0, 0.8),
    0 0 60px -8px rgba(255, 77, 0, 0.15);
}

/* --- Fullscreen Image Lightbox --- */
.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition:
    background 0.4s ease,
    opacity 0.4s ease,
    backdrop-filter 0.4s ease;
}
.img-lightbox.active {
  pointer-events: auto;
  opacity: 1;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.lightbox-img {
  max-width: 94vw;
  max-height: 92vh;
  border-radius: 5px;
  object-fit: contain;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: scale(0.9);
  opacity: 0;
  transition:
    transform 0.5s var(--ease-industrial),
    opacity 0.4s ease;
}
.img-lightbox.active .lightbox-img {
  transform: scale(1);
  opacity: 1;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.3s ease 0.15s,
    transform 0.3s ease 0.15s,
    background 0.2s ease;
  line-height: 1;
  padding-bottom: 3px;
}
.img-lightbox.active .lightbox-close {
  opacity: 0.6;
  transform: translateY(0);
}
.lightbox-close:hover {
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.15);
}

/* ========================================
   BUSINESS MODEL SLIDE
   ======================================== */

/* --- Revenue Mix Bar --- */
.biz-revenue-bar-wrap {
  position: relative;
}

.biz-revenue-bar {
  display: flex;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.biz-bar-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: filter 0.3s ease;
}

.biz-bar-seg:hover {
  filter: brightness(1.25);
}

.biz-bar-sponsorship {
  background: linear-gradient(135deg, #ff4d00, #ff8c42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.biz-bar-saas {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.biz-bar-platform {
  background: linear-gradient(135deg, #cc0000, #ff4444);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.biz-bar-user {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.biz-bar-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
}

/* Animate the bar segments on slide entry */
.slide.active .biz-bar-seg {
  animation: bizBarGrow 1s var(--ease-industrial) forwards;
  transform-origin: left center;
  transform: scaleX(0);
}
.slide.active .biz-bar-seg:nth-child(1) {
  animation-delay: 0.4s;
}
.slide.active .biz-bar-seg:nth-child(2) {
  animation-delay: 0.55s;
}
.slide.active .biz-bar-seg:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes bizBarGrow {
  to {
    transform: scaleX(1);
  }
}

/* --- Pillar Cards --- */
.biz-pillar {
  position: relative;
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px 28px 28px;
  overflow: hidden;
  transition:
    border-color 0.4s ease,
    transform 0.5s var(--ease-industrial),
    box-shadow 0.4s ease;
}

.biz-pillar:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.biz-pillar-primary {
  border-color: rgba(255, 77, 0, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 77, 0, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.4);
}

.biz-pillar-primary:hover {
  border-color: rgba(255, 77, 0, 0.4);
  box-shadow:
    0 0 60px rgba(255, 77, 0, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.5);
}

/* Glow effect for primary pillar */
.biz-pillar-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(255, 77, 0, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: bizGlowPulse 4s ease-in-out infinite;
}

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

/* --- Icons --- */
.biz-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.biz-icon-sponsor {
  background: rgba(255, 77, 0, 0.12);
  border: 1px solid rgba(255, 77, 0, 0.25);
  color: #ff8c42;
}

.biz-icon-saas {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.biz-icon-user {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

/* --- Dividers --- */
.biz-pillar-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(255, 77, 0, 0.3), transparent);
}

.biz-divider-blue {
  background: linear-gradient(to right, rgba(59, 130, 246, 0.25), transparent);
}

.biz-divider-purple {
  background: linear-gradient(to right, rgba(168, 85, 247, 0.25), transparent);
}

/* --- Bullets --- */
.biz-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.biz-bullet-orange {
  background: var(--brand-orange);
  box-shadow: 0 0 8px rgba(255, 77, 0, 0.5);
}

.biz-bullet-blue {
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.biz-bullet-purple {
  background: #a855f7;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

/* --- Badges --- */
.biz-pillar-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.2);
}

.biz-badge-blue {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.18);
}

.biz-badge-purple {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.18);
}

/* ========================================
   PLATFORM TAGS (Go-to-Market slide)
   ======================================== */

.platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.platform-tag:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

.platform-tag svg {
  flex-shrink: 0;
}

/* YouTube — red tint */
.platform-tag-yt {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.25);
  color: #ff6060;
}

/* TikTok — dark with dual accent */
.platform-tag-tt {
  background: rgba(255, 0, 79, 0.08);
  border-color: rgba(255, 0, 79, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* Instagram — purple-pink gradient tint */
.platform-tag-ig {
  background: linear-gradient(
    135deg,
    rgba(253, 85, 0, 0.08),
    rgba(200, 55, 171, 0.08)
  );
  border-color: rgba(200, 55, 171, 0.25);
  color: rgba(255, 180, 220, 0.85);
}

/* Twitter / X — white on near-black */
.platform-tag-x {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   FOLLOWER GROWTH CHART SLIDE
   ======================================== */

.growth-chart-wrap {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: 1fr auto;
  gap: 0;
  height: 420px;
}

/* Y-axis */
.growth-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 12px;
  grid-row: 1;
  grid-column: 1;
}

.growth-y-axis span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

/* Chart area */
.growth-chart-area {
  position: relative;
  grid-row: 1;
  grid-column: 2;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
}

.growth-grid,
.growth-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.growth-grid {
  z-index: 0;
}

.growth-svg {
  z-index: 1;
}

/* Line draw animation */
.growth-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.growth-line-glow {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.growth-area {
  opacity: 0;
}

.slide.active .growth-line {
  animation: growthDraw 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.3s;
}

.slide.active .growth-line-glow {
  animation: growthDraw 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.3s;
}

.slide.active .growth-area {
  animation: growthFadeIn 1.5s ease forwards 0.8s;
}

@keyframes growthDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes growthFadeIn {
  to {
    opacity: 1;
  }
}

/* Data dots */
.growth-dot {
  opacity: 0;
  transform-origin: center;
}

.slide.active .growth-dot-1 {
  animation: dotPop 0.4s ease forwards 0.4s;
}
.slide.active .growth-dot-2 {
  animation: dotPop 0.4s ease forwards 0.8s;
}
.slide.active .growth-dot-3 {
  animation: dotPop 0.4s ease forwards 1.2s;
}
.slide.active .growth-dot-4 {
  animation: dotPop 0.4s ease forwards 1.6s;
}
.slide.active .growth-dot-5 {
  animation: dotPop 0.5s ease forwards 2s;
}

@keyframes dotPop {
  0% {
    opacity: 0;
    r: 0;
  }
  60% {
    r: 7;
  }
  100% {
    opacity: 1;
    r: 4;
  }
}

/* Pulse ring on latest data point */
.growth-pulse {
  opacity: 0;
}

.slide.active .growth-pulse {
  animation: growthPulseRing 2s ease-out infinite 2.2s;
}

@keyframes growthPulseRing {
  0% {
    r: 6;
    opacity: 0.8;
    stroke-width: 2;
  }
  100% {
    r: 24;
    opacity: 0;
    stroke-width: 0.5;
  }
}

/* Callout */
.growth-callout {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
}

.slide.active .growth-callout {
  animation: calloutSlideIn 0.6s ease forwards 2.2s;
}

@keyframes calloutSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.growth-callout-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 77, 0, 0.25);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 20px rgba(255, 77, 0, 0.08),
    0 8px 30px rgba(0, 0, 0, 0.5);
}

/* X-axis */
.growth-x-axis {
  grid-row: 2;
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0;
}

.growth-x-axis span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   BEFORE / AFTER VIDEO COMPARISON SLIDER
   ============================================================ */
.ba-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  cursor: col-resize;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 80px rgba(255, 77, 0, 0.08);
  user-select: none;
  -webkit-user-select: none;
}

.ba-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}

.ba-video-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider line + handle */
.ba-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  will-change: left;
}

.ba-slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 12px rgba(255, 77, 0, 0.4);
}

.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 77, 0, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 20px rgba(255, 77, 0, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s ease;
}

.ba-container:active .ba-slider-handle {
  transform: translate(-50%, -50%) scale(1.15);
}

/* Labels */
.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 16px;
  border-radius: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
  pointer-events: none;
}

.ba-label-before {
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-label-after {
  right: 16px;
  background: rgba(255, 77, 0, 0.2);
  color: #ff4d00;
  border: 1px solid rgba(255, 77, 0, 0.3);
}
