/* =========================================================
   VV SafeRoute — Scale.com-inspired Dark Theme
   Minimal, premium, monochrome with subtle blue accent
   ========================================================= */

/* ── GPU Acceleration & Performance Optimizations ── */
/* Force compositor layer for all animated elements — eliminates jank */
body.vv-scale *,
body.vv-scale *::before,
body.vv-scale *::after {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Animated elements get will-change for GPU compositing */
body.vv-scale .orbital-ring,
body.vv-scale .orbital-item,
body.vv-scale .orbital-item img,
body.vv-scale .hero-back,
body.vv-scale .hero-hud,
body.vv-scale .hero-plexus,
body.vv-scale .hero-edges,
body.vv-scale .hero-segmentation,
body.vv-scale .hero-depth-map,
body.vv-scale .hero-optflow,
body.vv-scale .hero-keypoints,
body.vv-scale .hero-exit-logo,
body.vv-scale .ai-pulse-dot,
body.vv-scale .feature-card,
body.vv-scale .reveal,
body.vv-scale [class*="float"],
body.vv-scale [class*="spin"],
body.vv-scale [class*="pulse"],
body.vv-scale [class*="orbit"] {
  will-change: transform, opacity;
  transform: translateZ(0);
}

/* Contain layout/paint for sections — prevents reflow cascade */
body.vv-scale section,
body.vv-scale .section,
body.vv-scale [class*="-section"] {
  contain: layout style;
}

/* Skip rendering for off-screen sections — massive scroll performance boost */
body.vv-scale .turnkey-get,
body.vv-scale .difference-section,
body.vv-scale .contact-section,
body.vv-scale .footer-section,
body.vv-scale [class*="package-section"],
body.vv-scale [class*="security-section"],
body.vv-scale [class*="infrastructure-section"] {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* Backdrop-filter elements get their own compositor layer */
body.vv-scale [style*="backdrop-filter"],
body.vv-scale .nav-bar,
body.vv-scale [class*="glass"],
body.vv-scale [class*="blur"] {
  will-change: backdrop-filter;
  transform: translateZ(0);
}

/* ── AI Pulse Dot ── */
body.vv-scale .ai-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
  animation: aiPulse 2s ease-in-out infinite;
  flex-shrink: 0;
  will-change: opacity, box-shadow;
  transform: translateZ(0);
}
@keyframes aiPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(0, 255, 136, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 16px rgba(0, 255, 136, 0.9); }
}

/* ── Hero AI Badge ── */
body.vv-scale .hero-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 100px;
  background: rgba(0, 255, 136, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.vv-scale .ai-badge-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(0, 255, 136, 0.9);
  white-space: nowrap;
}

/* ── AI Live Stats Section ── */
body.vv-scale .ai-live-stats {
  background: var(--s-black);
  padding: 80px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
body.vv-scale .ai-stats-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
body.vv-scale .ai-stats-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  flex: 1;
}
body.vv-scale .ai-status-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #00ff88;
  padding: 4px 12px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 100px;
  background: rgba(0, 255, 136, 0.05);
}
body.vv-scale .ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
body.vv-scale .ai-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
body.vv-scale .ai-stat-card:hover {
  border-color: rgba(0, 255, 136, 0.2);
  background: rgba(0, 255, 136, 0.02);
}
body.vv-scale .ai-stat-icon {
  color: rgba(0, 255, 136, 0.6);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
body.vv-scale .ai-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
body.vv-scale .ai-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}
body.vv-scale .ai-stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Neural Network Visualization ── */
body.vv-scale .ai-neural-viz {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
body.vv-scale .ai-neural-viz svg {
  width: 100%;
  height: 120px;
  display: block;
}
body.vv-scale .ai-neural-label {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* ── Fixed AI Status Bar ── */
body.vv-scale .ai-status-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: rgba(8, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 255, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 9999;
  font-size: 12px;
  font-weight: 500;
}
body.vv-scale .ai-status-left {
  display: flex;
  align-items:  center;
  gap: 10px;
}
body.vv-scale .ai-status-label {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}
body.vv-scale .ai-status-state {
  color: #00ff88;
  font-weight: 600;
  letter-spacing: 1px;
}
body.vv-scale .ai-status-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
body.vv-scale .ai-status-counter {
  color: #fff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
body.vv-scale .ai-status-counter-label {
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  body.vv-scale .ai-stats-grid { grid-template-columns: repeat(2, 1fr); }
  body.vv-scale .ai-status-bar { font-size: 10px; padding: 0 12px; }
  body.vv-scale .ai-status-counter-label { display: none; }
  body.vv-scale .ai-badge-text { font-size: 11px; }
  body.vv-scale .ai-stats-header h2 { font-size: 22px; }
  body.vv-scale .ai-stat-number { font-size: 28px; }
}

:root {
  --s-black: #050709;
  --s-void: #050505;
  --s-ink: #0a0a0a;
  --s-surface: #111111;
  --s-surface-2: #1a1a1a;
  --s-line: #1f1f1f;
  --s-line-bright: #2a2a2a;
  --s-text: #ffffff;
  --s-muted: #9aa3ad;
  --s-dim: #555555;
  --s-accent: #6b9eff;
  --s-accent-dim: rgba(107, 158, 255, 0.15);
  --s-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ── */
body.vv-scale {
  background: var(--s-black);
  color: var(--s-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

body.vv-scale::before { display: none; }

/* Fix: smooth scroll conflicts with GSAP ScrollTrigger pinning */
html.vv-scroll-fix { scroll-behavior: auto !important; }

/* ── Progress bar ── */
body.vv-scale .progress span {
  background: var(--s-accent);
  box-shadow: 0 0 12px rgba(107, 158, 255, 0.5);
}

/* ── Header — solid black stripe ── */
body.vv-scale .site-header {
  color: var(--s-text);
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 100;
}
body.vv-scale .site-header.scrolled {
  background: #000;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.vv-scale .header-inner {
  height: 64px;
}
body.vv-scale .brand img {
  filter: brightness(0) invert(1);
  width: 32px;
  height: 32px;
}
body.vv-scale .brand-wordmark strong {
  color: var(--s-text);
  font-size: 14px;
  font-weight: 600;
}
body.vv-scale .brand-wordmark small {
  color: var(--s-dim);
  font-size: 10px;
}
body.vv-scale .brand-rule {
  background: var(--s-line-bright);
}

body.vv-scale .desktop-nav {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  gap: 0;
}
body.vv-scale .desktop-nav a {
  color: var(--s-muted);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 0;
  background: transparent;
}
body.vv-scale .desktop-nav a:hover,
body.vv-scale .desktop-nav a.active {
  color: var(--s-text);
  background: transparent;
}

body.vv-scale .icon-button {
  color: var(--s-text);
  background: transparent;
  border: none;
}
body.vv-scale .menu-button span {
  background: var(--s-text);
}

body.vv-scale .header-contact {
  background: var(--s-text);
  color: var(--s-black);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
}

/* ── Buttons ── */
body.vv-scale .button {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.3s var(--s-ease);
}
body.vv-scale .button-white {
  background: var(--s-text);
  color: var(--s-black);
  box-shadow: none;
}
body.vv-scale .button-white:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}
body.vv-scale .button-outline,
body.vv-scale .button-outline-white {
  background: transparent;
  color: var(--s-text);
  border: 1px solid var(--s-line-bright);
}
body.vv-scale .button-outline:hover,
body.vv-scale .button-outline-white:hover {
  border-color: var(--s-text);
  background: rgba(255, 255, 255, 0.05);
}
body.vv-scale .button-dark {
  background: var(--s-surface-2);
  color: var(--s-text);
  border: 1px solid var(--s-line-bright);
}
body.vv-scale .button-dark:hover {
  background: var(--s-line-bright);
}
body.vv-scale .button-large {
  padding: 14px 28px;
  font-size: 15px;
}

/* ── Hero ── */
body.vv-scale .hero,
body.vv-scale .hero-tactical {
  background: var(--s-black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Murli V Tech logo — appears during cinematic exit */
body.vv-scale .hero-exit-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  /* No CSS transition — JS drives this per-frame via ScrollTrigger for smoothness */
  will-change: transform, opacity;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
}
body.vv-scale .hero-exit-logo img {
  width: 280px;
  max-width: 35vw;
  height: auto;
  display: block;
  margin: 0 auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* Drop shadow only — blur/brightness controlled by JS per-frame */
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
  will-change: opacity;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
body.vv-scale .hero-tactical {
  display: block;
  min-height: auto;
  overflow: visible;
  background: var(--s-black);
}
body.vv-scale .hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
body.vv-scale .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}
body.vv-scale .hero-gradient,
body.vv-scale .hero-vignette,
body.vv-scale .hero-orb,
body.vv-scale .hero-grid,
body.vv-scale .road-lane {
  display: none;
}

/* ── HERO 3D TACTICAL SCENE ── */
body.vv-scale .hero-tactical {
  background: var(--s-black);
  padding: 0;
  position: relative;
  display: block;
  min-height: auto;
  overflow: visible;
}
body.vv-scale .hero-sticky-wrap {
  position: relative;
  top: 0;
  height: calc(100vh - 65px);
  margin-top: 65px;
  display: block;
  overflow: hidden;
  padding: 0;
  background: transparent;
}
body.vv-scale .hero-scroll-spacer {
  height: 0;
}
body.vv-scale .hero-scene-3d {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh - 65px);
  perspective: 1400px;
  -webkit-perspective: 1400px;
  perspective-origin: 50% 45%;
  margin: 0;
  max-width: none;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: scale(1);
  transform-origin: center center;
  background: transparent;
  z-index: 1;
  will-change: transform, opacity;
  contain: layout style;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
body.vv-scale .hero-camera {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  contain: layout style;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateX(0deg) rotateY(0deg);
  will-change: transform;
  backface-visibility: hidden;
}
body.vv-scale .hero-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
}
body.vv-scale .hero-back {
  transform: translateZ(0px);
  opacity: 0;
  contain: layout style paint;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
body.vv-scale .hero-frame {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  position: relative;
  background: rgba(15, 18, 24, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ── Floating glass card layers (2.5D parallax panels) ── */
body.vv-scale .hero-glass-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
body.vv-scale .hero-glass-card-inner {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 220px;
  background: rgba(15, 18, 24, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}
body.vv-scale .hero-glass-card-2 .hero-glass-card-inner {
  top: auto;
  bottom: 8%;
  right: auto;
  left: 5%;
  width: 220px;
}
body.vv-scale .hero-glass-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body.vv-scale .hero-glass-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #47a6ff;
  box-shadow: 0 0 8px rgba(71, 166, 255, 0.6);
}
body.vv-scale .hero-glass-card-dot-amber {
  background: #f5a623;
  box-shadow: 0 0 8px rgba(245, 166, 35, 0.6);
}
body.vv-scale .hero-glass-card-title {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
body.vv-scale .hero-glass-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.vv-scale .hero-glass-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
body.vv-scale .hero-glass-card-row span:last-child {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
body.vv-scale .hero-glass-card-bar {
  margin-top: 6px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
body.vv-scale .hero-glass-card-bar-fill {
  height: 100%;
  background: #47a6ff;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(71, 166, 255, 0.5);
}
body.vv-scale .hero-glass-card-bar-amber {
  background: #f5a623;
  box-shadow: 0 0 6px rgba(245, 166, 35, 0.5);
}
body.vv-scale .hero-brackets,
body.vv-scale .hero-markers-top,
body.vv-scale .hero-markers-left {
  position: absolute;
  pointer-events: none;
}
body.vv-scale .hero-brackets { top:0; left:0; width:100%; height:100%; }
body.vv-scale .hero-markers-top { top:-12px; left:0; width:100%; height:20px; }
body.vv-scale .hero-markers-left { top:0; left:-12px; width:20px; height:100%; }
body.vv-scale .hero-media {
  transform: translateZ(0px);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  contain: layout style paint;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
body.vv-scale .hero-screen {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 80px 20px rgba(0,0,0,0.6);
  isolation: isolate;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  contain: layout style paint;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
body.vv-scale .hero-video-3d {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0px;
  transition: border-radius 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-filter: contrast(1.1) saturate(1.2) brightness(1.0);
  filter: contrast(1.1) saturate(1.2) brightness(1.0);
  transform: translateZ(0);
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
body.vv-scale .hero-edges {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  transform: translateZ(0px);
  transform-style: preserve-3d;
  contain: layout style paint;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  isolation: isolate;
}
body.vv-scale .hero-video-edge {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0px;
  transition: border-radius 0.3s ease;
  will-change: border-radius;
}
body.vv-scale .hero-edge-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0px;
  transition: border-radius 0.3s ease;
  will-change: border-radius, transform;
  /* Real Sobel edge detection — white outlines on transparent background */
  /* No CSS filters needed — edges are extracted in canvas */
  mix-blend-mode: screen;
}

/* ── CV Analysis Layers (between media and HUD) ── */
body.vv-scale .hero-segmentation,
body.vv-scale .hero-depth-map,
body.vv-scale .hero-optflow,
body.vv-scale .hero-keypoints {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  will-change: transform, opacity;
  transform: translateZ(0px);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
  isolation: isolate;
}
body.vv-scale .hero-seg-svg,
body.vv-scale .hero-depth-svg,
body.vv-scale .hero-optflow-svg,
body.vv-scale .hero-kp-svg {
  width: 100%;
  height: 100%;
  display: block;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  shape-rendering: geometricPrecision;
  vector-effect: non-scaling-stroke;
}
/* Segmentation — translucent region tints */
body.vv-scale .hero-segmentation {
  mix-blend-mode: screen;
}
/* Depth map — gradient heatmap */
body.vv-scale .hero-depth-map {
  mix-blend-mode: screen;
}
/* Optical flow — motion vectors */
body.vv-scale .hero-optflow {
  mix-blend-mode: screen;
}
/* Keypoints — feature markers */
body.vv-scale .hero-keypoints {
  mix-blend-mode: screen;
}

body.vv-scale .hero-hud {
  transform: translateZ(0px);
  opacity: 0;
  contain: layout style paint;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
body.vv-scale .hero-hud-svg {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(15, 18, 24, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
body.vv-scale .hero-hud-svg svg {
  width: 100%;
  height: 100%;
  contain: layout style paint;
}
body.vv-scale .hero-connectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
body.vv-scale .hero-connector {
  position: absolute;
  width: 600px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.6) 0px, rgba(255,255,255,0.6) 5px, transparent 5px, transparent 10px);
  transform: rotateY(90deg);
  transform-origin: left center;
}
body.vv-scale .hero-connector-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.15);
  top: -4px;
  animation: connectorPulse 3s ease-in-out infinite;
}
body.vv-scale .hero-connector-front { left: -4px; }
body.vv-scale .hero-connector-back { right: -4px; animation-delay: 1.5s; }
body.vv-scale .hero-inner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 30px 60px;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(0,0,0,0.6) 85%, rgba(0,0,0,0.95) 100%);
  transition: opacity 0.1s linear;
}
body.vv-scale .hero-inner-overlay .hero-copy {
  pointer-events: auto;
}
body.vv-scale .hero-inner-overlay .hero-actions {
  pointer-events: auto;
}
/* Hero depth labels — same as tactical */
body.vv-scale .hero-depth-labels {
  position: absolute;
  bottom: 20px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s linear;
}
body.vv-scale .hero-depth-label {
  display: flex;
  align-items: center;
  gap: 14px;
}
body.vv-scale .hero-depth-line {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
body.vv-scale .hero-depth-text {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}
body.vv-scale .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(107, 158, 255, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
body.vv-scale .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
  z-index: 1;
}
body.vv-scale .hero-tactical::before,
body.vv-scale .hero-tactical::after {
  display: none;
}
body.vv-scale .hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-top: 80px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
body.vv-scale .hero-visual,
body.vv-scale .hero-photo,
body.vv-scale .hero-photo img,
body.vv-scale .hero-photo-shade,
body.vv-scale .hero-photo-glow,
body.vv-scale .phone-device,
body.vv-scale .floating-card,
body.vv-scale .hero-proof,
body.vv-scale .hero-script-image,
body.vv-scale .visual-backdrop {
  display: none !important;
}
body.vv-scale .hero-copy {
  max-width: 900px;
}
body.vv-scale .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--s-accent);
  margin-bottom: 10px;
  backdrop-filter: none;
}
body.vv-scale .hero-badge span:last-child {
  color: var(--s-muted);
}
body.vv-scale .hero h1 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--s-text);
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  margin-bottom: 10px;
}
body.vv-scale .hero h1 span {
  color: var(--s-text);
  display: block;
  text-shadow: none;
}
body.vv-scale .hero-copy > p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--s-muted);
  max-width: 560px;
  margin-bottom: 14px;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}
body.vv-scale .hero-actions {
  gap: 12px;
}
body.vv-scale .hero-trust {
  color: var(--s-dim);
  font-size: 12px;
  margin-top: 10px;
  border-left: none;
  padding-left: 0;
}

/* ── Rotating words section (Scale-style) ── */
.scale-rotating-words {
  padding: 120px 0;
  text-align: center;
  background: var(--s-black);
  border-top: 1px solid var(--s-line);
}
.scale-rotating-words .scale-stat-line {
  font-size: 14px;
  color: var(--s-muted);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.scale-rotating-words .scale-stat-line strong {
  color: var(--s-text);
}
.scale-rotating-words-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.scale-rotating-word {
  font-size: clamp(40px, 8vw, 120px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--s-text);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--s-ease), transform 0.6s var(--s-ease);
  position: absolute;
}
.scale-rotating-word.is-active {
  opacity: 1;
  transform: translateY(0);
}
.scale-rotating-words-track {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ── Sections general ── */
body.vv-scale .section {
  background: var(--s-black);
  color: var(--s-text);
  border-top: 1px solid var(--s-line);
  padding: 120px 0;
}
body.vv-scale .section-dark,
body.vv-scale .human-gap,
body.vv-scale .cinematic,
body.vv-scale .validation {
  background: var(--s-black);
  color: var(--s-text);
}
body.vv-scale h2 {
  color: var(--s-text);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
body.vv-scale h2 span {
  color: var(--s-text);
}
body.vv-scale h3 {
  color: var(--s-text);
  font-weight: 600;
  letter-spacing: -0.02em;
}
body.vv-scale p {
  color: var(--s-muted);
  font-size: 17px;
  line-height: 1.6;
}
body.vv-scale .eyebrow-dark,
body.vv-scale .eyebrow-light {
  color: var(--s-dim);
  font-family: Inter, sans-serif;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

/* ── Audience strip ── */
body.vv-scale .audience-strip {
  background: var(--s-black);
  border-top: 1px solid var(--s-line);
  border-bottom: 1px solid var(--s-line);
  padding: 40px 0;
}
body.vv-scale .audience-item {
  border-right: 1px solid var(--s-line);
  color: var(--s-muted);
  padding: 16px;
}
body.vv-scale .audience-item:hover {
  background: rgba(255, 255, 255, 0.02);
}
body.vv-scale .audience-item strong {
  color: var(--s-text);
  font-size: 14px;
}
body.vv-scale .audience-item small {
  color: var(--s-dim);
}
body.vv-scale .audience-item svg {
  stroke: var(--s-dim);
}

/* ── Technology ── */
body.vv-scale .technology {
  background: var(--s-black);
}
body.vv-scale .tech-copy h2 {
  color: var(--s-text);
}
body.vv-scale .tech-copy p {
  color: var(--s-muted);
}
body.vv-scale .text-button {
  color: var(--s-accent);
  font-size: 15px;
  font-weight: 500;
}
body.vv-scale .text-button:hover {
  color: var(--s-text);
}
body.vv-scale .feature-card {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  color: var(--s-text);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.35s cubic-bezier(0.2, 0.72, 0.2, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}
body.vv-scale .feature-card:hover {
  background: var(--s-surface-2);
  border-color: var(--s-line-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
body.vv-scale .feature-icon {
  background: var(--s-surface-2);
  color: var(--s-accent);
}

/* ── ACTEDS stack — show the exact provided glass-stack PNG on a white card ── */
body.vv-scale .acted-exact-art,
body.vv-scale .acted-exact-art img {
  display: block !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
body.vv-scale .acted-stack {
  background: transparent;
  border: none;
  border-radius: 0;
  height: auto;
  min-height: 540px;
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  box-shadow: none;
}
body.vv-scale .acted-stack::before { display: none; }
body.vv-scale .acted-exact-art {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(100%, 560px);
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
body.vv-scale .acted-exact-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
body.vv-scale .acted-stack .glass-layer {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 56% !important;
  height: 11.5% !important;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 28px !important;
  color: transparent !important;
  font-size: 0;
  text-shadow: none !important;
  box-shadow: none !important;
  backdrop-filter: none;
  z-index: 4;
  cursor: pointer;
  transition: all 0.3s var(--s-ease);
}
body.vv-scale .acted-stack .glass-layer:hover,
body.vv-scale .acted-stack .glass-layer:focus-visible {
  background: rgba(0, 0, 0, 0.02) !important;
  outline: 1px solid rgba(80, 150, 235, 0.25);
  outline-offset: 4px;
}
body.vv-scale .acted-stack .layer-1{top:12% !important}
body.vv-scale .acted-stack .layer-2{top:32% !important}
body.vv-scale .acted-stack .layer-3{top:52% !important}
body.vv-scale .acted-stack .layer-4{top:72% !important}
body.vv-scale .acted-stack .layer-5{top:90% !important}
body.vv-scale .stack-mark {
  display: block !important;
  position: absolute;
  top: 460px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 6;
}
body.vv-scale .stack-mark strong {
  color: var(--s-text) !important;
  font-size: 22px;
  letter-spacing: 0.1em;
}
body.vv-scale .stack-mark small {
  color: var(--s-dim) !important;
  display: block;
  margin-top: 6px;
}
@media (max-width: 900px) {
  body.vv-scale .acted-stack { height: auto; min-height: 420px; }
  body.vv-scale .acted-exact-art { width: min(100%, 620px); }
}
@media (max-width: 640px) {
  body.vv-scale .acted-stack { min-height: 340px; }
  body.vv-scale .acted-stack .glass-layer { width: 64%; height: 10.5%; }
}

/* ── Human gap / cinematic ── */
body.vv-scale .human-gap {
  background: var(--s-black);
  padding: 140px 0;
  text-align: center;
}
body.vv-scale .human-gap::before { display: none; }
body.vv-scale .human-glow { display: none; }
body.vv-scale .human-inner {
  max-width: 800px;
  margin: 0 auto;
}
body.vv-scale .human-inner h2 {
  font-size: clamp(36px, 5vw, 64px);
}
body.vv-scale .principle-card {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  color: var(--s-text);
  backdrop-filter: none;
  border-radius: 16px;
  padding: 24px;
}
body.vv-scale .principle-line {
  background: var(--s-accent);
}
body.vv-scale .cinematic {
  background: var(--s-black);
  padding: 140px 0;
  text-align: center;
}
body.vv-scale .cinematic::before { display: none; }
body.vv-scale .cinematic-bg { display: none; }
body.vv-scale .cinematic-vignette { display: none; }
body.vv-scale .cinematic-inner h2 {
  font-size: clamp(36px, 5vw, 64px);
}
body.vv-scale .cinematic-inner h2 em {
  color: var(--s-accent);
  font-style: normal;
}

/* ── How it works ── */
body.vv-scale .how {
  background: var(--s-black);
}
body.vv-scale .how-card {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  color: var(--s-text);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.35s cubic-bezier(0.2, 0.72, 0.2, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.35s ease;
}
body.vv-scale .how-card:hover {
  border-color: var(--s-line-bright);
  background: var(--s-surface-2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
body.vv-scale .how-card span {
  color: var(--s-dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}
body.vv-scale .how-card strong {
  color: var(--s-text);
  font-size: 18px;
}
body.vv-scale .how-card small {
  color: var(--s-muted);
}

/* ── Solutions ── */
body.vv-scale .solutions {
  background: var(--s-black);
}
body.vv-scale .solution-card {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  color: var(--s-text);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.35s cubic-bezier(0.2, 0.72, 0.2, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.35s ease;
}
body.vv-scale .solution-card.featured {
  border-color: var(--s-line-bright);
  background: var(--s-surface-2);
}
body.vv-scale .solution-card:hover {
  border-color: var(--s-line-bright);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}
body.vv-scale .solution-index {
  color: var(--s-dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
body.vv-scale .solution-index span {
  color: var(--s-accent);
}
body.vv-scale .solution-card h3 {
  color: var(--s-text);
}
body.vv-scale .solution-card p {
  color: var(--s-muted);
}
body.vv-scale .card-link {
  color: var(--s-accent);
}

/* ── Turnkey ── */
body.vv-scale .turnkey {
  background: var(--s-black);
}
body.vv-scale .turnkey table {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  border-radius: 12px;
  color: var(--s-text);
}
body.vv-scale .turnkey th {
  background: var(--s-surface-2);
  color: var(--s-muted);
  border-bottom: 1px solid var(--s-line);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
body.vv-scale .turnkey td {
  border-bottom: 1px solid var(--s-line);
  color: var(--s-muted);
}
body.vv-scale .turnkey td strong {
  color: var(--s-text);
}
body.vv-scale .turnkey .check { color: #4ade80; }
body.vv-scale .turnkey .cross { color: #ef4444; }
body.vv-scale .turnkey .highlight {
  background: rgba(107, 158, 255, 0.05);
}

/* ── Platform / console ── */
body.vv-scale .platform {
  background: var(--s-black);
  color: var(--s-text);
}
body.vv-scale .platform-shell {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  box-shadow: none;
}
body.vv-scale .platform-sidebar {
  background: var(--s-ink);
  border-right: 1px solid var(--s-line);
}
body.vv-scale .platform-main {
  background: var(--s-black);
}
body.vv-scale .platform-toolbar button,
body.vv-scale .platform-toolbar select {
  background: var(--s-surface);
  color: var(--s-text);
  border: 1px solid var(--s-line);
}
body.vv-scale .platform-stats > div,
body.vv-scale .platform-chart,
body.vv-scale .platform-alert-row > div,
body.vv-scale .platform-table,
body.vv-scale .platform-alerts article,
body.vv-scale .vehicle-grid-mini > div,
body.vv-scale .usage-card,
body.vv-scale .key-card,
body.vv-scale .platform-feature {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  color: var(--s-text);
}
body.vv-scale .platform-stats strong,
body.vv-scale .platform-toolbar strong {
  color: var(--s-text);
}
body.vv-scale .platform-stats small,
body.vv-scale .platform-stats span,
body.vv-scale .chart-axis,
body.vv-scale .platform-alert-row small,
body.vv-scale .vehicle-grid-mini span,
body.vv-scale .usage-card span,
body.vv-scale .key-card span {
  color: var(--s-dim);
}
body.vv-scale .platform-tab {
  color: var(--s-muted);
}
body.vv-scale .platform-tab:hover,
body.vv-scale .platform-tab.active {
  background: var(--s-surface-2);
  color: var(--s-text);
}
body.vv-scale .tag-green { background: rgba(74, 222, 128, 0.1); color: #4ade80; }
body.vv-scale .tag-amber { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
body.vv-scale .tag-blue { background: rgba(107, 158, 255, 0.1); color: var(--s-accent); }
body.vv-scale .tag-red { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
body.vv-scale .chart-line-main { stroke: var(--s-accent); }
body.vv-scale .chart-line-muted { stroke: var(--s-line-bright); }
body.vv-scale .usage-track { background: var(--s-line); }
body.vv-scale .usage-track span { background: var(--s-accent); }

/* ── API docs ── */
body.vv-scale .api-docs {
  background: var(--s-black);
}
body.vv-scale .api-code-panel,
body.vv-scale .api-code-grid,
body.vv-scale .api-endpoint,
body.vv-scale .api-playground {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  border-radius: 16px;
  color: var(--s-text);
}
body.vv-scale .api-tabs {
  border-bottom: 1px solid var(--s-line);
}
body.vv-scale .api-tab {
  color: var(--s-muted);
  background: transparent;
}
body.vv-scale .api-tab.active {
  color: var(--s-text);
  border-bottom: 2px solid var(--s-text);
}
body.vv-scale .code-block {
  background: var(--s-ink);
  color: var(--s-text);
  border: 1px solid var(--s-line);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
body.vv-scale .c-comment { color: var(--s-dim); }
body.vv-scale .c-keyword { color: var(--s-accent); }
body.vv-scale .c-string { color: #4ade80; }
body.vv-scale .c-number { color: #f59e0b; }
body.vv-scale .api-endpoint {
  background: var(--s-surface-2);
}
body.vv-scale .api-endpoint code {
  color: var(--s-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
body.vv-scale #playgroundOutput {
  background: var(--s-ink);
  border: 1px solid var(--s-line);
  color: var(--s-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ── Validation ── */
body.vv-scale .validation {
  background: var(--s-black);
}
body.vv-scale .measure-card,
body.vv-scale .scenario-card {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  color: var(--s-text);
  border-radius: 16px;
}
body.vv-scale .measure-card:hover,
body.vv-scale .scenario-card:hover {
  border-color: var(--s-line-bright);
}
body.vv-scale .measure-value {
  color: var(--s-accent);
}

/* ── Pricing ── */
body.vv-scale .pricing {
  background: var(--s-black);
}
body.vv-scale .price-card {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  color: var(--s-text);
  border-radius: 20px;
  transition: transform 0.35s cubic-bezier(0.2, 0.72, 0.2, 1), border-color 0.3s ease, box-shadow 0.35s ease;
}
body.vv-scale .price-card:hover {
  border-color: var(--s-line-bright);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}
body.vv-scale .price-card h3 {
  color: var(--s-text);
}
body.vv-scale .price-kicker {
  color: var(--s-dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
body.vv-scale .price-badge {
  background: var(--s-accent-dim);
  color: var(--s-accent);
  border-color: rgba(107, 158, 255, 0.2);
}
body.vv-scale .price-line {
  border-bottom-color: var(--s-line);
}
body.vv-scale .price-line strong {
  color: var(--s-text);
}
body.vv-scale .price-line span {
  color: var(--s-muted);
}
body.vv-scale .price-card p,
body.vv-scale .price-card li {
  color: var(--s-muted);
  border-bottom-color: var(--s-line);
}
body.vv-scale .price-card li b {
  color: var(--s-text);
}
body.vv-scale .price-card .button {
  background: var(--s-surface-2);
  color: var(--s-text);
  border: 1px solid var(--s-line-bright);
}
body.vv-scale .price-card .button:hover {
  background: var(--s-text);
  color: var(--s-black);
}
body.vv-scale .pricing-note {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  color: var(--s-text);
}
body.vv-scale .pricing-note span {
  color: var(--s-muted);
}
body.vv-scale .pricing-note-mark {
  background: var(--s-accent-dim);
  color: var(--s-accent);
}
body.vv-scale .currency-switcher {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
}
body.vv-scale .currency-btn {
  color: var(--s-muted);
}
body.vv-scale .currency-btn.active {
  background: var(--s-text);
  color: var(--s-black);
}

/* ── Company ── */
body.vv-scale .company {
  background: var(--s-black);
}
body.vv-scale .company-card {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  color: var(--s-text);
  border-radius: 20px;
}
body.vv-scale .company-logo-box {
  background: var(--s-surface-2);
  border: 1px solid var(--s-line);
}
body.vv-scale .company-links a {
  color: var(--s-accent);
}

/* ── Contact ── */
body.vv-scale .contact {
  background: var(--s-black);
  padding: 140px 0;
  text-align: center;
}
body.vv-scale .contact::before { display: none; }
body.vv-scale .contact h2 {
  font-size: clamp(36px, 5vw, 64px);
}
body.vv-scale .contact-card {
  background: var(--s-surface);
  border: 1px solid var(--s-line);
  backdrop-filter: none;
  color: var(--s-text);
}
body.vv-scale .contact-form-open {
  background: var(--s-text);
  color: var(--s-black);
  border: none;
}
body.vv-scale .contact-form-open:hover {
  background: #e0e0e0;
}

/* ── Modals ── */
body.vv-scale .modal-overlay,
body.vv-scale .modal-backdrop,
body.vv-scale #filmModal,
body.vv-scale #formModal,
body.vv-scale #authModal,
body.vv-scale #infoModal,
body.vv-scale #searchModal,
body.vv-scale .modal {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(12px);
}
body.vv-scale .modal-card,
body.vv-scale .modal-panel,
body.vv-scale .search-panel,
body.vv-scale .info-panel,
body.vv-scale .film-panel,
body.vv-scale .form-panel,
body.vv-scale .live-auth-card {
  background: var(--s-surface) !important;
  border: 1px solid var(--s-line) !important;
  color: var(--s-text);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
body.vv-scale .modal h2,
body.vv-scale .modal h3,
body.vv-scale .modal-card h2,
body.vv-scale .modal-panel h2,
body.vv-scale .modal-panel h3,
body.vv-scale .modal-kicker {
  color: var(--s-text) !important;
}
body.vv-scale .modal p,
body.vv-scale .modal-card p,
body.vv-scale .modal-panel p,
body.vv-scale .modal small,
body.vv-scale .modal label,
body.vv-scale .modal-panel small,
body.vv-scale .modal-panel label {
  color: var(--s-muted);
}
body.vv-scale .modal input,
body.vv-scale .modal textarea,
body.vv-scale .modal select,
body.vv-scale .modal-card input,
body.vv-scale .modal-card textarea,
body.vv-scale .modal-card select,
body.vv-scale .modal-panel input,
body.vv-scale .modal-panel textarea,
body.vv-scale .modal-panel select {
  background: var(--s-ink);
  border: 1px solid var(--s-line);
  color: var(--s-text);
  border-radius: 10px;
}
body.vv-scale .modal input:focus,
body.vv-scale .modal textarea:focus,
body.vv-scale .modal select:focus,
body.vv-scale .modal-card input:focus,
body.vv-scale .modal-card textarea:focus,
body.vv-scale .modal-card select:focus {
  border-color: var(--s-accent);
  outline: none;
}
body.vv-scale .auth-mode,
body.vv-scale .auth-switch {
  color: var(--s-accent);
}
body.vv-scale .auth-error {
  color: #ef4444;
}
body.vv-scale .auth-submit {
  background: var(--s-text);
  color: var(--s-black);
}
body.vv-scale .modal-close {
  color: var(--s-muted);
  background: transparent;
}

/* ── Footer ── */
body.vv-scale .footer,
body.vv-scale .site-footer {
  background: var(--s-black) !important;
  border-top: 1px solid var(--s-line);
  color: var(--s-dim) !important;
  padding: 60px 0 40px;
}
body.vv-scale .footer strong,
body.vv-scale .footer b,
body.vv-scale .footer h3,
body.vv-scale .footer h4 {
  color: var(--s-text) !important;
}
body.vv-scale .footer a,
body.vv-scale .footer p,
body.vv-scale .footer span,
body.vv-scale .footer li {
  color: var(--s-dim) !important;
}
body.vv-scale .footer a:hover {
  color: var(--s-text) !important;
}

/* ── Mobile panel ── */
body.vv-scale .mobile-panel {
  background: var(--s-black);
  border-left: 1px solid var(--s-line);
  backdrop-filter: blur(20px);
}
body.vv-scale .mobile-panel a {
  color: var(--s-text);
  border-bottom: 1px solid var(--s-line);
}
body.vv-scale .mobile-panel a:hover {
  color: var(--s-accent);
}

/* ── SDK demo — Professional enterprise dashboard styling ── */
body.vv-scale .sdk-demo {
  background: linear-gradient(180deg, #0c0e11 0%, #08090b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.03);
}

/* Header */
body.vv-scale .sdk-demo .playground-head {
  margin-bottom: 24px;
}
body.vv-scale .sdk-demo .playground-head .eyebrow-dark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #00ff88;
  margin-bottom: 10px;
}
body.vv-scale .sdk-demo .playground-head h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
body.vv-scale .sdk-demo .playground-head p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 600px;
}
body.vv-scale .sdk-demo .playground-head p strong {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* Controls */
body.vv-scale .sdk-demo-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
body.vv-scale .sdk-scenario-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
body.vv-scale .sdk-scenario-btn {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}
body.vv-scale .sdk-scenario-btn:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
body.vv-scale .sdk-scenario-btn.active {
  color: #00ff88;
  background: rgba(0,255,136,0.08);
  border-color: rgba(0,255,136,0.25);
  box-shadow: 0 0 12px rgba(0,255,136,0.1);
}
body.vv-scale .sdk-demo-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
body.vv-scale .sdk-demo-actions .button {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
}
body.vv-scale .playground-status {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-left: 4px;
}

/* Grid layout */
body.vv-scale .sdk-demo-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  body.vv-scale .sdk-demo-grid { grid-template-columns: 1fr; }
}

/* EPS Display */
body.vv-scale .sdk-eps-display {
  background: linear-gradient(180deg, #0a0c0f 0%, #060709 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.vv-scale .sdk-eps-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
}
body.vv-scale .sdk-eps-number {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1.5px;
  line-height: 1;
  font-family: 'SF Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}
body.vv-scale .sdk-eps-phase {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #00ff88;
  padding: 4px 12px;
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 100px;
  background: rgba(0,255,136,0.05);
  align-self: flex-start;
  transition: all 0.3s ease;
}

/* EPS progress bar */
body.vv-scale .sdk-eps-bar {
  height: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 4px;
}
body.vv-scale .sdk-eps-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00ff88 0%, #eab308 40%, #f0883e 60%, #ef4444 80%, #ff0000 100%);
  border-radius: 100px;
  transition: width 0.5s var(--s-ease);
}

/* EPS meta */
body.vv-scale .sdk-eps-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
body.vv-scale .sdk-eps-meta strong {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* Thresholds */
body.vv-scale .sdk-eps-thresholds {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
body.vv-scale .sdk-eps-thresholds .th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: 'SF Mono', ui-monospace, monospace;
  display: flex;
  align-items: center;
  gap: 6px;
}
body.vv-scale .sdk-eps-thresholds .th::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
body.vv-scale .sdk-eps-thresholds .th-alert { color: rgba(234,179,8,0.6); }
body.vv-scale .sdk-eps-thresholds .th-alert::before { background: #eab308; }
body.vv-scale .sdk-eps-thresholds .th-high { color: rgba(240,136,62,0.6); }
body.vv-scale .sdk-eps-thresholds .th-high::before { background: #f0883e; }
body.vv-scale .sdk-eps-thresholds .th-emerg { color: rgba(239,68,68,0.6); }
body.vv-scale .sdk-eps-thresholds .th-emerg::before { background: #ef4444; }
body.vv-scale .sdk-eps-thresholds .th-fail { color: rgba(255,0,0,0.6); }
body.vv-scale .sdk-eps-thresholds .th-fail::before { background: #ff0000; }

/* Chart */
body.vv-scale .sdk-chart {
  background: linear-gradient(180deg, #0a0c0f 0%, #060709 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
body.vv-scale .sdk-chart-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
  text-transform: uppercase;
}
body.vv-scale .sdk-chart svg {
  width: 100%;
  height: 200px;
  flex: 1;
}

/* Log */
body.vv-scale .sdk-log {
  background: #060709;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  font-family: 'SF Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 1.8;
  max-height: 240px;
  overflow-y: auto;
}
body.vv-scale .sdk-log::-webkit-scrollbar { width: 4px; }
body.vv-scale .sdk-log::-webkit-scrollbar-track { background: transparent; }
body.vv-scale .sdk-log::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 100px; }
body.vv-scale .playground-placeholder {
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

/* ── Scrollbar ── */
body.vv-scale::-webkit-scrollbar { width: 6px; }
body.vv-scale::-webkit-scrollbar-track { background: var(--s-black); }
body.vv-scale::-webkit-scrollbar-thumb { background: var(--s-line-bright); border-radius: 3px; }

/* ── Selection ── */
body.vv-scale ::selection {
  background: rgba(107, 158, 255, 0.3);
  color: var(--s-text);
}

/* ── Reveal animation ── */
body.vv-scale .reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--s-ease), transform 0.8s var(--s-ease);
}
body.vv-scale .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: transform 0.35s cubic-bezier(0.2, 0.72, 0.2, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  body.vv-scale .desktop-nav { display: none; }
  body.vv-scale .hero h1 { font-size: 44px; }
  body.vv-scale .hero-copy > p { font-size: 17px; }
  body.vv-scale .section { padding: 80px 0; }
  body.vv-scale .pricing-grid { grid-template-columns: 1fr; }
  body.vv-scale .price-card { min-height: auto; }
}

/* ═══════════════════════════════════════════════════════════
   AI VIDEO TRACKING — Scale-style integrated section
   ═══════════════════════════════════════════════════════════ */

/* Scroll Vision — big video, Plexus + contours animate on scroll */
body.vv-scale .scroll-vision-section {
  background: #000;
  position: relative;
}
body.vv-scale .scroll-vision-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.vv-scale .scroll-vision-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  max-width: 1600px;
  margin: 0 auto;
}
body.vv-scale .scroll-vision-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.1);
}

/* HUD overlay — Plexus + contours, opacity driven by scroll */
body.vv-scale .scroll-vision-hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s linear;
  mix-blend-mode: screen;
}
body.vv-scale .scroll-vision-hud svg {
  width: 100%;
  height: 100%;
}

/* Scroll progress bar */
body.vv-scale .scroll-vision-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  overflow: hidden;
}
body.vv-scale .scroll-vision-progress-bar {
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.6);
  border-radius: 1px;
  transition: width 0.1s linear;
}

/* Scroll label */
body.vv-scale .scroll-vision-label {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

/* Scroll spacer */
body.vv-scale .scroll-vision-spacer {
  height: 200vh;
}

/* Responsive */
@media (max-width: 720px) {
  body.vv-scale .scroll-vision-progress { width: 120px; }
  body.vv-scale .scroll-vision-label { font-size: 9px; }
}




/* 3D Tactical View — three-tier Z-axis command platform */
body.vv-scale .tactical-section {
  background: #000;
  border-top: 1px solid var(--s-line);
  padding: 0;
  position: relative;
}
body.vv-scale .tactical-sticky-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
body.vv-scale .tactical-scroll-spacer {
  height: 150vh;
}
body.vv-scale .tactical-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(107,158,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
body.vv-scale .tactical-head {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 10;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
body.vv-scale .tactical-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--s-text);
  margin: 16px 0 20px;
  line-height: 1.05;
}
body.vv-scale .tactical-head h2 span {
  color: var(--s-dim);
  font-weight: 400;
}
body.vv-scale .tactical-head p {
  font-size: 17px;
  color: var(--s-dim);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* 3D scene — starts full-width edge-to-edge, shrinks on scroll */
body.vv-scale .tactical-scene {
  position: relative;
  width: 100vw;
  height: 100vh;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  margin: 0 auto;
  max-width: none;
  transform-style: preserve-3d;
  transform: scale(1);
  transform-origin: center center;
}

/* Camera — the tilt: rotateY(-20deg) rotateX(5deg) + auto-drift */
body.vv-scale .tactical-camera {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotateX(0deg) rotateY(0deg);
}

/* Layers — 16:9 aspect ratio, positioned in lower-center */
body.vv-scale .tactical-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 45vw;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  max-height: 70vh;
  margin-left: -40vw;
  margin-top: 5vh;
  transform-style: preserve-3d;
  transition: none;
}

/* Tier 1: Backplate (Z +150px) — transparent frame */
body.vv-scale .tactical-back {
  transform: translateZ(0px);
}
body.vv-scale .tactical-frame {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
body.vv-scale .tactical-markers-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
}
body.vv-scale .tactical-markers-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
}
/* FUI corner brackets */
body.vv-scale .tactical-brackets {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Depth connector lines — dashed lines through Z-space connecting layers */
body.vv-scale .tactical-connectors {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 340px;
  margin-left: -300px;
  margin-top: -170px;
  transform-style: preserve-3d;
  pointer-events: none;
}
body.vv-scale .tactical-connector {
  position: absolute;
  width: 600px; /* spans full Z depth: +300 to -300 */
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.6) 0px,
    rgba(255,255,255,0.6) 5px,
    transparent 5px,
    transparent 10px
  );
  transform: rotateY(90deg); /* point back into the screen along Z-axis */
  transform-origin: left center;
}
/* Endpoint dots at front (HUD) and back (backplate) of each connector */
body.vv-scale .tactical-connector-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.15);
  top: -4px;
  animation: connectorPulse 3s ease-in-out infinite;
}
body.vv-scale .tactical-connector-front {
  left: -4px; /* front end — touches HUD layer */
}
body.vv-scale .tactical-connector-back {
  right: -4px; /* back end — touches backplate layer */
  animation-delay: 1.5s;
}
@keyframes connectorPulse {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 4px rgba(255,255,255,0.3); }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(255,255,255,0.6); }
}

/* Tier 2: Media (Z 0px) — 100% opaque video, no filters */
body.vv-scale .tactical-media {
  transform: translateZ(0px);
}
body.vv-scale .tactical-screen {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 50px rgba(0,0,0,0.8);
  isolation: isolate; /* edge detection screen-blend stays within this container only */
}
body.vv-scale .tactical-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: translateY(0vh);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-filter: contrast(1.1) saturate(1.2) brightness(1.0);
  filter: contrast(1.1) saturate(1.2) brightness(1.0);
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* Edge detection overlay — SVG filter outputs transparent bg, no blend mode needed */
body.vv-scale .tactical-edges {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  will-change: transform, opacity;
  transform: translateZ(0px);
  transform-style: preserve-3d;
}
body.vv-scale .tactical-video-edge {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: translateY(0vh);
  /* Real Sobel edge detection — white outlines on transparent background */
  mix-blend-mode: screen;
}

/* Tier 3: Topographic HUD (Z -150px) — Plexus + contours, screen blend */
body.vv-scale .tactical-hud {
  transform: translateZ(0px);
}
body.vv-scale .tactical-hud-svg {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  overflow: hidden;
}
body.vv-scale .tactical-hud-svg svg {
  width: 100%;
  height: 100%;
}

/* Depth labels */
body.vv-scale .tactical-depth-labels {
  max-width: 800px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.vv-scale .tactical-depth-label {
  display: flex;
  align-items: center;
  gap: 14px;
}
body.vv-scale .tactical-depth-line {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
body.vv-scale .tactical-depth-text {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  body.vv-scale .tactical-scene { height: 100vh; }
  body.vv-scale .tactical-head h2 { font-size: 32px; }
  /* Smoother hero on mobile — less aggressive 3D, GPU-accelerated */
  body.vv-scale .hero-scene-3d {
    perspective: 1400px;
    -webkit-perspective: 1400px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  body.vv-scale .hero-camera {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  body.vv-scale .hero-layer {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  body.vv-scale .hero-back,
  body.vv-scale .hero-hud,
  body.vv-scale .hero-connectors {
    backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* ── Performance: GPU acceleration for 3D layers ── */
body.vv-scale .hero-back,
body.vv-scale .hero-hud,
body.vv-scale .hero-connectors,
body.vv-scale .hero-media {
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ── Orbital Carousel — radial image orbit with pause-on-hover ── */
body.vv-scale .orbital-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 700px;
  margin: 60px auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The rotating ring */
body.vv-scale .orbital-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: orbitalSpin 60s linear infinite;
  will-change: transform;
}

@keyframes orbitalSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Counter-rotation keeps images and labels upright while ring spins */
@keyframes orbitalCounterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Each item — uniform size, clean rounded thumbnails */
body.vv-scale .orbital-item {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(18, 20, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  transform-origin: center center;
  will-change: transform;
  /* Counter-rotate the entire box to keep it perfectly upright while ring spins */
  animation: orbitalCounterSpin 60s linear infinite;
}

body.vv-scale .orbital-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  will-change: transform;
}

body.vv-scale .orbital-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 6px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.vv-scale .orbital-item:hover {
  border-color: rgba(71, 166, 255, 0.5);
  box-shadow: 0 14px 56px rgba(71, 166, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 100;
}

body.vv-scale .orbital-item:hover .orbital-item-label {
  opacity: 1;
  transform: translateY(0);
}

/* Center content — big headline + CTA like the reference */
body.vv-scale .orbital-center {
  position: relative;
  width: 340px;
  text-align: center;
  z-index: 10;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

body.vv-scale .orbital-center-num {
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  font-size: 12px;
  color: rgba(71, 166, 255, 0.85);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.8;
}

body.vv-scale .orbital-center h4 {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

body.vv-scale .orbital-gradient-word {
  background: linear-gradient(90deg, #47a6ff 0%, #f5a623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.vv-scale .orbital-center p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin: 0 auto 20px;
  max-width: 300px;
}

body.vv-scale .orbital-center small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  margin-bottom: 24px;
}

body.vv-scale .orbital-center-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #fff;
  color: #000;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

body.vv-scale .orbital-center-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18);
}

/* Pause ring on hover — handled by JS for reliability */
body.vv-scale .orbital-ring.orbital-paused {
  animation-play-state: paused;
}
body.vv-scale .orbital-ring.orbital-paused .orbital-item {
  animation-play-state: paused;
}

/* Mobile responsive */
@media (max-width: 768px) {
  body.vv-scale .orbital-carousel {
    width: 100%;
    max-width: 400px;
    height: 420px;
    margin: 40px auto 30px;
  }
  body.vv-scale .orbital-item { width: 80px; height: 80px; border-radius: 12px; }
  body.vv-scale .orbital-item-label { font-size: 9px; padding: 6px 4px 5px; }
  body.vv-scale .orbital-center { width: 220px; }
  body.vv-scale .orbital-center h4 { font-size: 26px; }
  body.vv-scale .orbital-center p { font-size: 12px; max-width: 200px; }
  body.vv-scale .orbital-center-cta { padding: 10px 18px; font-size: 12px; }
}

@media (max-width: 400px) {
  body.vv-scale .orbital-carousel {
    max-width: 340px;
    height: 360px;
  }
  body.vv-scale .orbital-item { width: 66px; height: 66px; }
  body.vv-scale .orbital-center { width: 190px; }
  body.vv-scale .orbital-center h4 { font-size: 22px; }
}

/* ── The Package section — white background, black text ── */
body.vv-scale .turnkey-get {
  background: #ffffff;
  color: #000000;
  padding: 80px 24px 80px;
  margin: 0;
  border-radius: 0;
}

body.vv-scale .turnkey-get .turnkey-section-label {
  color: rgba(0, 0, 0, 0.5);
}

body.vv-scale .turnkey-get h3 {
  color: #000000;
}

/* Orbital items on white background */
body.vv-scale .turnkey-get .orbital-item {
  background: rgba(245, 245, 247, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

body.vv-scale .turnkey-get .orbital-item:hover {
  border-color: rgba(71, 166, 255, 0.5);
  box-shadow: 0 14px 56px rgba(71, 166, 255, 0.2);
}

body.vv-scale .turnkey-get .orbital-item-label {
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

/* Center content on white background */
body.vv-scale .turnkey-get .orbital-center-num {
  color: rgba(71, 166, 255, 0.9);
}

body.vv-scale .turnkey-get .orbital-center h4 {
  color: #000000;
}

body.vv-scale .turnkey-get .orbital-gradient-word {
  background: linear-gradient(90deg, #47a6ff 0%, #f5a623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.vv-scale .turnkey-get .orbital-center p {
  color: rgba(0, 0, 0, 0.55);
}

body.vv-scale .turnkey-get .orbital-center small {
  color: rgba(0, 0, 0, 0.4);
}

body.vv-scale .turnkey-get .orbital-center-cta {
  background: #000000;
  color: #ffffff;
}

body.vv-scale .turnkey-get .orbital-center-cta:hover {
  background: #222222;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
