:root {
  --bg-dark: #07070c;
  --text-main: #f8fafc;
  --accent: #9d80ff;
  --accent-glow: rgba(157, 128, 255, 0.4);
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── CINEMATIC VEIL (TRANSPARENCE ÉPURATION HAUT DÉBIT) ── */
#cinematic-veil {
  position: fixed;
  inset: 0;
  background-color: #06060a;
  z-index: 9995;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity;
}
#cinematic-veil.visible {
  opacity: 1;
  pointer-events: auto;
}
[data-theme="light"] #cinematic-veil {
  background-color: #f8fafc;
}

/* Fullpage Slide Snap Container */
.fp-wrapper {
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.fp-wrapper::-webkit-scrollbar {
  display: none;
}

/* Individual Fullscreen Slide - Strict 100vh Box Model */
.fp-slide {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 72px 50px 24px 32px;
  overflow: hidden;
}

/* ── STAGE SPOTLIGHT / AMBIENT LIGHT BLOOM (OPTIMISÉ 60-120FPS GPU) ── */
.slide-light-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(500px, 68vw, 850px);
  height: clamp(340px, 50vh, 550px);
  transform: translate3d(-50%, -50%, 0) scale(0.65);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(157, 128, 255, 0.18) 0%, rgba(124, 58, 237, 0.06) 45%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  will-change: transform, opacity;
}

.fp-slide.active .slide-light-aura {
  transform: translate3d(-50%, -50%, 0) scale(1.15);
  opacity: 1;
}

/* Light Mode Ambient Glow (Doux halo solaire violet pastel) */
[data-theme="light"] .slide-light-aura {
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.12) 0%, rgba(224, 231, 255, 0.15) 50%, transparent 70%);
}

/* The Content Wrapper */
.fp-content-wrap {
  width: 100%;
  max-width: 1140px;
  max-height: calc(100vh - 100px);
  max-height: calc(100dvh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* ── ULTRA-FLUID HARDWARE-ACCELERATED ENTRANCES (SANS BLUR, 120FPS SILKY) ── */
.fly-left, .fly-right, .fly-up, .fly-scale {
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.fp-slide.active .fly-left {
  animation: fastFlyLeft 0.44s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fp-slide.active .fly-right {
  animation: fastFlyRight 0.44s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fp-slide.active .fly-up {
  animation: fastFlyUp 0.42s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fp-slide.active .fly-scale {
  animation: fastFlyScale 0.46s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Optimized GPU Keyframes (translate3d, 0 jank) */
@keyframes fastFlyLeft {
  0% {
    opacity: 0;
    transform: translate3d(-38px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fastFlyRight {
  0% {
    opacity: 0;
    transform: translate3d(38px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fastFlyUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fastFlyScale {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Fast Tight Staggers */
.d-1 { animation-delay: 0.04s !important; }
.d-2 { animation-delay: 0.09s !important; }
.d-3 { animation-delay: 0.14s !important; }
.d-4 { animation-delay: 0.19s !important; }
.d-5 { animation-delay: 0.24s !important; }

/* Universal Headings & Subtitles */
.fp-slide .section-headline {
  font-size: clamp(20px, 3vh, 30px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center;
  margin: 0 0 6px 0 !important;
  letter-spacing: -0.02em;
}
.fp-slide .section-body {
  font-size: clamp(12.5px, 1.6vh, 14px) !important;
  line-height: 1.45 !important;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 16px auto !important;
  color: var(--text-muted);
}

/* ── REFINED ULTRA-THIN LATERAL LADDER (POINTS & DISCRETION) ── */
.fp-ladder {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 6px;
  user-select: none;
}

.ladder-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  text-align: center;
  opacity: 0.85;
}
.ladder-counter span.ladder-sep {
  opacity: 0.4;
  margin: 0 1px;
}

.ladder-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.ladder-rail::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12) 15%, rgba(255, 255, 255, 0.12) 85%, transparent);
  z-index: 1;
}

.ladder-dot {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.dot-point {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ladder-dot:hover .dot-point {
  transform: scale(1.3);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.ladder-dot.active .dot-point {
  transform: scale(1.45);
  background: #a855f7;
  background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
  box-shadow: 0 0 12px #9333ea, 0 0 18px rgba(168, 85, 247, 0.4);
  border: 1px solid #07070c;
}

.dot-label {
  position: absolute;
  right: 28px;
  background: rgba(12, 12, 20, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(157, 128, 255, 0.25);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(6px, 0, 0);
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.ladder-dot:hover .dot-label {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ladder-nav-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 8px;
  cursor: pointer;
  padding: 2px 4px;
  transition: transform 0.15s ease, color 0.15s ease;
}
.ladder-nav-btn:hover {
  color: var(--accent);
  transform: scale(1.25);
}

/* Light Mode Ladder */
[data-theme="light"] .ladder-rail::before {
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.15) 15%, rgba(15, 23, 42, 0.15) 85%, transparent);
}
[data-theme="light"] .dot-point {
  background: rgba(15, 23, 42, 0.25);
}
[data-theme="light"] .ladder-dot:hover .dot-point {
  background: rgba(15, 23, 42, 0.85);
}
[data-theme="light"] .ladder-dot.active .dot-point {
  background: #7c3aed;
  box-shadow: 0 0 10px #7c3aed;
  border-color: #ffffff;
}
[data-theme="light"] .dot-label {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(124, 58, 237, 0.25);
  color: #0f172a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .ladder-nav-btn {
  color: rgba(15, 23, 42, 0.35);
}

/* ── AMBIENT IDLE MICRO-ANIMATIONS (60-120FPS PURE GPU) ── */
@keyframes gentleFloatPhone {
  0%, 100% { transform: translate3d(0, -3px, 0); }
  50% { transform: translate3d(0, 4px, 0); }
}
@keyframes floatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -5px, 0); }
}
@keyframes floatB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 5px, 0); }
}
@keyframes ambientGlowPulse {
  0%, 100% { border-color: rgba(157, 128, 255, 0.25); box-shadow: 0 8px 24px rgba(157, 128, 255, 0.06); }
  50% { border-color: rgba(157, 128, 255, 0.55); box-shadow: 0 12px 36px rgba(157, 128, 255, 0.18); }
}
@keyframes waveBarBounce {
  0%, 100% { height: 4px; }
  50% { height: 16px; }
}
@keyframes typingDotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.25); }
}
@keyframes radarScan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
@keyframes orbBreathe {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(157, 128, 255, 0.25); }
  50% { opacity: 1; transform: scale(1.05); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 32px rgba(157, 128, 255, 0.45); }
}

/* ── MODERN CARD & CONTAINER AMBIENT MICRO-ANIMATIONS ── */
@keyframes cardFloatA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -4px, 0) rotate(-0.5deg); }
}
@keyframes cardFloatB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, 4px, 0) rotate(0.5deg); }
}
@keyframes cardGlowPulse {
  0%, 100% {
    border-color: rgba(157, 128, 255, 0.22);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 16px rgba(157, 128, 255, 0.08);
  }
  50% {
    border-color: rgba(157, 128, 255, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 28px rgba(157, 128, 255, 0.22);
  }
}
@keyframes emojiBob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.08); }
}
@keyframes iconShine {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(157, 128, 255, 0.2)); }
  50% { transform: scale(1.06); filter: drop-shadow(0 0 10px rgba(157, 128, 255, 0.6)); }
}
@keyframes visionAura {
  0%, 100% { border-left-color: var(--accent); box-shadow: 0 4px 20px rgba(157, 128, 255, 0.08); }
  50% { border-left-color: #f472b6; box-shadow: 0 6px 28px rgba(244, 114, 182, 0.2); }
}
@keyframes ctaCardPulse {
  0%, 100% { transform: scale(1) translate3d(0, 0, 0); }
  50% { transform: scale(1.006) translate3d(0, -3px, 0); }
}
/* Ambient float classes (Pure GPU 60-120fps) */
.idle-float-1 { will-change: transform; }
.idle-float-2 { will-change: transform; }

/* Continuous floating active state applied smoothly */
.idle-float-1.is-floating {
  animation: cardFloatA 4.4s ease-in-out infinite alternate !important;
  opacity: 1 !important;
}
.idle-float-2.is-floating {
  animation: cardFloatB 4.8s ease-in-out infinite alternate !important;
  opacity: 1 !important;
}
.idle-float-1.ambient-glow.is-floating {
  animation: cardFloatA 4.4s ease-in-out infinite alternate, cardGlowPulse 4s ease-in-out infinite !important;
  opacity: 1 !important;
}
.idle-float-2.ambient-glow.is-floating {
  animation: cardFloatB 4.8s ease-in-out infinite alternate, cardGlowPulse 4s ease-in-out infinite !important;
  opacity: 1 !important;
}
.ambient-glow.is-floating:not(.idle-float-1):not(.idle-float-2) {
  animation: cardGlowPulse 4s ease-in-out infinite !important;
  opacity: 1 !important;
}

/* Pause floating on hover for precise user interaction */
.is-floating:hover {
  animation-play-state: paused !important;
}

.vision-bar-fs { animation: visionAura 4.5s ease-in-out infinite; }
.cta-card-fs { animation: ctaCardPulse 5s ease-in-out infinite alternate; will-change: transform; }
.pers-icon { animation: emojiBob 3.6s ease-in-out infinite; display: inline-flex; }
.exp-icon-box { animation: iconShine 4s ease-in-out infinite; }

/* Micro-animations in cards */
.bubble-Dagja\ AI {
  animation: aiBubbleGlow 3.5s ease-in-out infinite alternate !important;
}
@keyframes aiBubbleGlow {
  0%, 100% { box-shadow: 0 2px 10px rgba(157, 128, 255, 0.15); border-color: rgba(157, 128, 255, 0.3); }
  50% { box-shadow: 0 4px 18px rgba(157, 128, 255, 0.35); border-color: rgba(157, 128, 255, 0.6); }
}
.pulse-badge {
  animation: pulseBadge 3s ease-in-out infinite;
  display: inline-block;
}
@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Interactive hover micro-lifts on all cards */
.comp-card-fs, .exp-card-fs, .soc-card-fs, .pers-card-fs, .cap-card-fs, .faq-item-fs {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.28s ease !important;
}
.comp-card-fs:hover, .exp-card-fs:hover, .soc-card-fs:hover, .cap-card-fs:hover {
  transform: translateY(-4px) scale(1.015) !important;
  border-color: rgba(157, 128, 255, 0.45) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 20px rgba(157, 128, 255, 0.15) !important;
  z-index: 4;
}
.pers-card-fs:hover {
  transform: translateY(-5px) scale(1.03) !important;
  border-color: rgba(157, 128, 255, 0.5) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(157, 128, 255, 0.2) !important;
  z-index: 4;
}

/* Perfectly Centered Phone Container */
.hero-device-col {
  overflow: visible !important;
  padding-top: 0 !important;
  position: relative;
}
.hero-phone-compact {
  margin: 0 auto !important;
  animation: gentleFloatPhone 4.5s ease-in-out infinite alternate !important;
  will-change: transform;
}

/* Live Audio Waveform in Slide 4 */
.audio-waveform {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 16px;
  margin-left: 6px;
  vertical-align: middle;
}
.wave-bar {
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: #34d399;
  animation: waveBarBounce 1.1s ease-in-out infinite;
}
.wave-bar:nth-child(1) { animation-delay: 0.1s; }
.wave-bar:nth-child(2) { animation-delay: 0.35s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.45s; }

/* Animated Live Radar in Slide 6 */
.cap-url-bar {
  position: relative;
  overflow: hidden;
}
.cap-url-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(157, 128, 255, 0.15), transparent);
  animation: radarScan 2.4s ease-in-out infinite;
}

/* Animated CTA Orb */
.cta-orb-fs {
  animation: orbBreathe 3.5s ease-in-out infinite alternate !important;
}

/* Phone Chat Typing Indicator Bubble */
.typing-indicator-box {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 4px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
}
.typing-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: typingDotPulse 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

.fp-slide.active .hero-fb-1 {
  animation: gentleFloatBadge1 4.2s ease-in-out infinite 0.5s;
}
.fp-slide.active .hero-fb-2 {
  animation: gentleFloatBadge2 4.6s ease-in-out infinite 1s;
}

/* Interactive Live Status Dot */
.live-dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
  margin-right: 4px;
  animation: greenPulse 2s ease-in-out infinite;
}

/* Fine, Refined Glow on Hero Button */
.btn-primary-fine {
  background: var(--accent-gradient) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 2px 10px rgba(157, 128, 255, 0.22) !important;
  transition: all 0.25s ease !important;
}
.btn-primary-fine:hover {
  box-shadow: 0 4px 18px rgba(157, 128, 255, 0.38) !important;
  transform: translateY(-1px) !important;
}

/* ── CTA ORB: CLEAN PROMINENT LOGO ── */
.cta-orb-fs {
  width: 64px !important;
  height: 64px !important;
  margin: 0 auto 16px auto !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(157, 128, 255, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(157, 128, 255, 0.25) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  opacity: 1 !important;
  visibility: visible !important;
  animation: orbBreathe 3.5s ease-in-out infinite alternate !important;
}
.cta-orb-fs img {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  display: block !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
[data-theme="light"] .cta-orb-fs {
  background: #ffffff !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15) !important;
}

/* ── PERSONALITIES: STRICT NO-SCROLLBAR GRID FIT FOR PC ── */
.pers-track-fs {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 1040px !important;
  overflow: visible !important;
  padding: 0 !important;
}
.pers-card-fs {
  flex: none !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 12px 10px !important;
}

/* ── CHAT BUBBLE SEQUENTIAL ENTRANCE ANIMATIONS ── */
.fp-slide.active .chat-bubble-anim-1 {
  animation: messagePopIn 0.35s ease-out 0.2s forwards;
}
.fp-slide.active .chat-bubble-anim-2 {
  animation: messagePopIn 0.35s ease-out 0.45s forwards;
}
.fp-slide.active .chat-bubble-anim-3 {
  animation: messagePopIn 0.35s ease-out 0.7s forwards;
}
.fp-slide.active .chat-bubble-anim-4 {
  animation: messagePopIn 0.35s ease-out 0.95s forwards;
}

/* ── LAYOUTS ── */

/* SLIDE 1: HERO */
.hero-layout-fs {
  overflow: visible;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
  width: 100%;
}
.hero-layout-fs h1 {
  font-size: clamp(26px, 4.2vh, 44px);
  line-height: 1.12;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}
.hero-layout-fs .hero-sub {
  font-size: clamp(12.5px, 1.7vh, 14.5px);
  line-height: 1.5;
  max-width: 480px;
  margin: 0 0 16px 0;
  color: var(--text-muted);
}
.hero-phone-compact {
  width: clamp(200px, 22vw, 235px);
  height: clamp(310px, 42vh, 375px);
  border: 7px solid #1c1c2e !important;
  border-radius: 28px !important;
  margin: 0 auto;
}
.hero-phone-compact .phone-screen {
  padding: 10px 10px 8px 10px !important;
}
.hero-phone-compact .phone-statusbar {
  margin-bottom: 6px !important;
}
.hero-phone-compact .phone-chat-header {
  margin-bottom: 8px !important;
  padding-bottom: 6px !important;
}
.hero-phone-compact .phone-messages {
  padding: 4px 6px !important;
  gap: 7px !important;
}
.hero-phone-compact .pm {
  font-size: 9px !important;
  padding: 5px 9px !important;
}
.badge-compact {
  padding: 6px 12px !important;
  font-size: 11px !important;
  border-radius: 12px !important;
}
.badge-compact .float-badge-title {
  font-size: 11px !important;
}
.badge-compact .float-badge-sub {
  font-size: 9.5px !important;
}
.hero-mobile-social-card {
  display: none;
}

/* SLIDE 2: COMPARISON */
.comp-grid-fs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 920px;
}
.comp-card-fs {
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
}
.comp-card-fs .bubble {
  font-size: 11.5px;
  padding: 7px 12px;
  margin-bottom: 8px;
  border-radius: 10px;
  line-height: 1.4;
}
.comp-card-fs .compare-label {
  font-size: 11px;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 700;
}

/* SLIDE 3: EXPERIENCE */
.exp-grid-fs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 980px;
}
.exp-card-fs {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
}
.exp-card-fs .exp-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.exp-card-fs .exp-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.exp-card-fs .exp-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 3px 0;
}
.exp-card-fs .exp-desc {
  font-size: 11.5px;
  line-height: 1.4;
  margin: 0;
  color: var(--text-muted);
}

/* SLIDE 4: SOCIAL NETWORK */
.social-grid-fs {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 16px;
  width: 100%;
  max-width: 1040px;
}
.soc-card-fs {
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.soc-card-fs .soc-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.soc-card-fs .soc-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px 0;
}
.soc-card-fs .soc-desc {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0 0 10px 0;
}
.soc-card-fs.featured {
  background: linear-gradient(135deg, rgba(157, 128, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(157, 128, 255, 0.25);
}

/* SLIDE 5: 20 PERSONALITIES */
.pers-track-fs {
  display: flex;
  gap: 14px;
  width: 100%;
  max-width: 1080px;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pers-card-fs {
  flex: 1;
  min-width: 180px;
  max-width: 210px;
  padding: 14px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  text-align: center;
}
.pers-card-fs .pers-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 auto 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.pers-card-fs .pers-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.pers-card-fs .pers-tagline {
  font-size: 10px;
  color: var(--accent);
  margin-bottom: 8px;
}
.pers-card-fs .pers-bubble {
  font-size: 10.5px;
  line-height: 1.35;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 6px 8px;
  font-style: italic;
}

/* SLIDE 6: CAPABILITIES */
.cap-grid-fs {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 1040px;
}
.cap-card-fs {
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cap-card-fs .cap-icon {
  font-size: 22px;
  margin-bottom: 8px;
}
.cap-card-fs .cap-title {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cap-card-fs .cap-desc {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cap-card-fs .cap-tag {
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 8px;
  background: rgba(157, 128, 255, 0.1);
  color: var(--accent);
  border-radius: 10px;
  align-self: flex-start;
}

/* SLIDE 7: VISION & FAQ */
.vision-bar-fs {
  width: 100%;
  max-width: 820px;
  background: rgba(157, 128, 255, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 16px;
  text-align: left;
}
.vision-bar-fs p {
  margin: 0;
  font-size: 13.5px;
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.45;
}
.vision-bar-fs span.author-tag {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
  margin-left: 6px;
}

[data-theme="light"] .vision-bar-fs {
  background: rgba(124, 58, 237, 0.06) !important;
  border-left-color: #7c3aed !important;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.06) !important;
}
[data-theme="light"] .vision-bar-fs p {
  color: #0f172a !important;
  font-weight: 500 !important;
}
[data-theme="light"] .vision-bar-fs span.author-tag {
  color: #7c3aed !important;
  font-weight: 700 !important;
}

.faq-container-fs {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item-fs {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  background: var(--bg-card);
  overflow: hidden;
}
.faq-item-fs .faq-q {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item-fs .faq-a {
  padding: 0 16px 10px 16px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
  display: none;
}
.faq-item-fs.active .faq-a {
  display: block;
}

/* SLIDE 8: FINAL CTA & COMPACT FOOTER */
.cta-card-fs {
  background: linear-gradient(135deg, rgba(157, 128, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(157, 128, 255, 0.25);
  border-radius: 20px;
  padding: 24px 32px;
  text-align: center;
  width: 100%;
  max-width: 840px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  margin: auto 0;
}
.cta-orb-fs {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(157, 128, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(157, 128, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: orbBreathe 3.5s ease-in-out infinite alternate;
}
.cta-orb-fs img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.cta-card-fs h2 {
  font-size: clamp(22px, 3.4vh, 32px);
  margin: 0 0 6px 0;
}
.cta-card-fs p {
  font-size: 13px;
  max-width: 560px;
  margin: 0 auto 16px auto;
  color: var(--text-muted);
}
.footer-row-fs {
  width: 100%;
  max-width: 1100px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
}
.footer-row-fs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-row-fs a:hover {
  color: var(--accent);
}

[data-theme="light"] .cta-card-fs {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, #ffffff 100%) !important;
  border-color: rgba(124, 58, 237, 0.2) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06) !important;
}
[data-theme="light"] .cta-card-fs h2 {
  color: #0f172a !important;
}
[data-theme="light"] .footer-row-fs {
  border-top-color: rgba(15, 23, 42, 0.08) !important;
  color: #64748b !important;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .fp-slide {
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100vh !important;
    max-height: 100dvh !important;
    padding: 56px 14px 14px 14px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    justify-content: center !important;
  }

  .fp-content-wrap {
    width: 100% !important;
    max-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }

  .fp-slide .section-headline {
    font-size: clamp(16px, 2.6vh, 20px) !important;
    line-height: 1.2 !important;
    margin: 0 0 3px 0 !important;
    text-align: center !important;
  }
  .fp-slide .section-body {
    font-size: clamp(10.5px, 1.5vh, 12px) !important;
    line-height: 1.35 !important;
    margin: 0 auto 8px auto !important;
    max-width: 360px !important;
    text-align: center !important;
  }

  .fp-ladder {
    right: 4px !important;
    padding: 6px 2px !important;
    transform: translateY(-50%) scale(0.8) !important;
    z-index: 999 !important;
  }
  .dot-label {
    display: none !important;
  }

  .hero-layout-fs {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 6px !important;
    width: 100% !important;
    overflow: visible !important;
  }
  .hero-layout-fs h1 {
    font-size: clamp(18px, 3vh, 23px) !important;
    line-height: 1.15 !important;
    margin: 0 0 4px 0 !important;
  }
  .hero-layout-fs .hero-sub {
    font-size: clamp(10.5px, 1.4vh, 11.5px) !important;
    line-height: 1.35 !important;
    max-width: 310px !important;
    margin: 0 auto 8px auto !important;
  }
  .hero-ctas {
    gap: 8px !important;
    margin-bottom: 4px !important;
    display: flex !important;
    justify-content: center !important;
  }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary {
    padding: 6px 14px !important;
    font-size: 11.5px !important;
  }
  .hero-trust {
    font-size: 9.5px !important;
    margin: 0 !important;
  }
  .hero-brand-badge {
    margin-bottom: 6px !important;
  }

  .hero-phone-compact, .hero-fb-1, .hero-fb-2 {
    display: none !important;
  }

  .hero-device-col {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 6px !important;
    padding-top: 0 !important;
  }

  @keyframes floatTiltMobile {
    0% {
      transform: perspective(700px) rotateY(-4deg) rotateX(4deg) rotateZ(-1.5deg) translate3d(0, 0, 0);
    }
    50% {
      transform: perspective(700px) rotateY(-2deg) rotateX(6deg) rotateZ(-0.8deg) translate3d(0, 5px, 0);
    }
    100% {
      transform: perspective(700px) rotateY(-5deg) rotateX(3deg) rotateZ(-2deg) translate3d(0, -2px, 0);
    }
  }

  .hero-mobile-social-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    background: rgba(18, 18, 30, 0.92) !important;
    border: 1px solid rgba(157, 128, 255, 0.35) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 24px rgba(157, 128, 255, 0.16) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    text-align: left !important;
    animation: floatTiltMobile 5s ease-in-out infinite alternate !important;
    transform-origin: center center !important;
  }

  .hm-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding-bottom: 7px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 7px !important;
  }

  .hm-avatars {
    display: flex !important;
    align-items: center !important;
  }

  .hm-avatar {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    border: 1.5px solid #0d0d18 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 8.5px !important;
    font-weight: 700 !important;
    color: #fff !important;
  }

  .hm-group-info {
    flex: 1 !important;
  }

  .hm-group-name {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.2 !important;
  }

  .hm-group-status {
    font-size: 9px !important;
    color: var(--text-muted) !important;
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
  }

  .hm-live-pill {
    font-size: 9px !important;
    font-weight: 600 !important;
    color: #34d399 !important;
    background: rgba(52, 211, 153, 0.12) !important;
    border: 1px solid rgba(52, 211, 153, 0.25) !important;
    padding: 2px 7px !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  .hm-chat-stream {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-bottom: 7px !important;
  }

  .hm-msg {
    padding: 6px 10px !important;
    border-radius: 10px !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    max-width: 95% !important;
  }

  .hm-msg-user {
    background: rgba(255, 255, 255, 0.08) !important;
    align-self: flex-start !important;
    color: #e2e8f0 !important;
  }

  .hm-msg-author {
    display: block !important;
    font-size: 8.5px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 1px !important;
  }

  .hm-msg-ai {
    background: rgba(157, 128, 255, 0.15) !important;
    border: 1px solid rgba(157, 128, 255, 0.3) !important;
    align-self: flex-start !important;
    color: #ffffff !important;
  }

  .hm-msg-ai-pill {
    display: inline-block !important;
    font-size: 8.5px !important;
    font-weight: 700 !important;
    color: var(--accent) !important;
    margin-bottom: 1px !important;
  }

  .hm-card-footer {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    flex-wrap: wrap !important;
  }

  .hm-tag {
    font-size: 8.5px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    padding: 2px 5px !important;
    color: var(--text-muted) !important;
  }

  [data-theme="light"] .hero-mobile-social-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(124, 58, 237, 0.2) !important;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1) !important;
  }
  [data-theme="light"] .hm-group-name {
    color: #0f172a !important;
  }
  [data-theme="light"] .hm-msg-user {
    background: rgba(15, 23, 42, 0.05) !important;
    color: #1e293b !important;
  }
  [data-theme="light"] .hm-msg-ai {
    background: rgba(124, 58, 237, 0.08) !important;
    border-color: rgba(124, 58, 237, 0.25) !important;
    color: #0f172a !important;
  }
  [data-theme="light"] .hm-tag {
    background: rgba(124, 58, 237, 0.06) !important;
    border-color: rgba(124, 58, 237, 0.15) !important;
    color: #475569 !important;
  }

  .comp-grid-fs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 480px !important;
  }
  .comp-card-fs {
    padding: 8px 10px !important;
    border-radius: 12px !important;
  }
  .compare-label {
    font-size: 8.5px !important;
    padding: 2px 6px !important;
    margin-bottom: 6px !important;
  }
  .comp-card-fs .bubble {
    font-size: 9px !important;
    padding: 4px 6px !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
  }

  .exp-grid-fs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 480px !important;
  }
  .exp-card-fs {
    padding: 8px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }
  .exp-icon-box {
    width: 24px !important;
    height: 24px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }
  .exp-badge {
    font-size: 7.5px !important;
    margin-bottom: 1px !important;
  }
  .exp-title {
    font-size: 10.5px !important;
    margin-bottom: 2px !important;
  }
  .exp-desc {
    font-size: 8px !important;
    line-height: 1.25 !important;
  }

  .social-grid-fs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 480px !important;
  }
  .soc-card-fs {
    padding: 8px 10px !important;
    border-radius: 12px !important;
  }
  .soc-card-fs.featured {
    grid-column: span 2 !important;
  }
  .soc-icon {
    font-size: 15px !important;
    margin-bottom: 3px !important;
  }
  .soc-title {
    font-size: 11px !important;
    margin-bottom: 2px !important;
  }
  .soc-desc {
    font-size: 8px !important;
    line-height: 1.25 !important;
    margin-bottom: 3px !important;
  }
  .social-card-tag {
    font-size: 7.5px !important;
    padding: 2px 5px !important;
  }

  .pers-track-fs {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 480px !important;
    overflow: visible !important;
    padding: 0 !important;
  }
  .pers-card-fs {
    padding: 6px 8px !important;
    border-radius: 10px !important;
  }
  .pers-card-fs:nth-child(1),
  .pers-card-fs:nth-child(2),
  .pers-card-fs:nth-child(3) {
    grid-column: span 2 !important;
  }
  .pers-card-fs:nth-child(4),
  .pers-card-fs:nth-child(5) {
    grid-column: span 3 !important;
  }
  .pers-icon {
    width: 22px !important;
    height: 22px !important;
    font-size: 12px !important;
    margin-bottom: 3px !important;
  }
  .pers-name {
    font-size: 9.5px !important;
    margin-bottom: 1px !important;
  }
  .pers-tagline {
    font-size: 7.5px !important;
    margin-bottom: 3px !important;
  }
  .pers-bubble {
    font-size: 7.5px !important;
    line-height: 1.2 !important;
    padding: 3px 5px !important;
  }

  .cap-grid-fs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 480px !important;
  }
  .cap-card-fs {
    padding: 8px 10px !important;
    border-radius: 12px !important;
  }
  .cap-icon {
    font-size: 15px !important;
    margin-bottom: 3px !important;
  }
  .cap-title {
    font-size: 10.5px !important;
    margin-bottom: 2px !important;
  }
  .cap-desc {
    font-size: 8px !important;
    line-height: 1.25 !important;
  }
  .cap-tag {
    font-size: 7px !important;
    margin-top: 3px !important;
  }

  .vision-bar-fs {
    padding: 5px 10px !important;
    font-size: 9.5px !important;
    line-height: 1.35 !important;
    margin-bottom: 6px !important;
  }
  .faq-container-fs {
    gap: 5px !important;
    width: 100% !important;
    max-width: 480px !important;
  }
  .faq-item-fs .faq-q {
    padding: 6px 10px !important;
    font-size: 10.5px !important;
  }
  .faq-item-fs .faq-a {
    padding: 0 10px 5px 10px !important;
    font-size: 9px !important;
    line-height: 1.35 !important;
  }

  .cta-card-fs {
    padding: 14px 12px !important;
    border-radius: 16px !important;
    max-width: 420px !important;
    margin: auto 0 !important;
  }
  .cta-orb-fs {
    width: 46px !important;
    height: 46px !important;
    margin: 0 auto 6px auto !important;
  }
  .cta-orb-fs img {
    width: 32px !important;
    height: 32px !important;
  }
  .cta-card-fs h2 {
    font-size: clamp(17px, 2.7vh, 21px) !important;
    margin: 0 0 3px 0 !important;
  }
  .cta-card-fs p {
    font-size: 10px !important;
    margin: 0 auto 8px auto !important;
    line-height: 1.35 !important;
  }
  .cta-card-fs .btn-primary {
    padding: 7px 18px !important;
    font-size: 11.5px !important;
    margin-bottom: 4px !important;
  }
  .footer-row-fs {
    padding-top: 6px !important;
    font-size: 9px !important;
    gap: 4px !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-row-fs a {
    font-size: 9px !important;
  }
}
