/* ==========================================================================
   SNYPD STANDALONE DESIGN SYSTEM
   Combined Stylesheet (Navbar, Hero, Engine, Real Examples, Pricing, FAQ)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Core Base & Surfaces */
  --bg-pure: #030303;
  --bg-main: #030409;
  --bg-surface: #0a0c16;
  --bg-elevated: #111424;
  --bg-panel: #111111;
  --bg-card: rgba(20, 20, 22, 0.6);
  --bg-card-hover: rgba(30, 30, 34, 0.8);
  --bg-border: rgba(255, 255, 255, 0.08);
  
  /* Brand Accents */
  --purple: #A200FF;
  --purple-light: #C455FF;
  --purple-hover: #B533FF;
  --purple-glow: rgba(162, 0, 255, 0.3);
  --purple-dim: rgba(162, 0, 255, 0.1);
  --green: #00ff88;
  --teal: #35e7dc;
  
  /* Manual VS Side Colors */
  --manual-primary: #FF3333;
  --manual-dim: #331111;
  --manual-border: #2A1111;

  /* Typography Hierarchy */
  --text-100: #FFFFFF;
  --text-200: #F3F4F6;
  --text-300: #9CA3AF;
  --text-400: #6B7280;
  --text-dark: #444444;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  
  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Motion & Physics */
  --ease-fluid: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --time-fast: 0.3s;
  --time-med: 0.6s;
  --time-slow: 1.2s;
  
  /* Dashboard Mockup Colors */
  --dash-bg: #353535;
  --dash-sidebar: #1a1a1a;
  --dash-card: #222222;
  --dash-border: #2a2a2a;
  --dash-text: #ffffff;
  --dash-text-muted: #999999;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-pure);
  color: var(--text-200);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-pure); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-400); }

/* ==========================================================================
   1. FLOATING ISLAND NAVBAR
   ========================================================================== */
.snypd-island-nav-wrapper {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  font-family: var(--font-sans);
  pointer-events: none;
}

.snypd-island-nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 8px 0 24px;
  border-radius: 9999px;
  width: min(900px, calc(100% - 32px));
  background: rgba(12, 14, 22, 0.6);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 
    0 24px 48px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    inset 0 -1px 1px rgba(0, 0, 0, 0.5);
  transition: all 0.4s var(--ease-fluid);
}

.snypd-island__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.snypd-island__logo {
  font-family: var(--font-sans);
  font-size: 26px; 
  color: rgb(162, 0, 255);
  letter-spacing: 16px; 
  position: relative; 
  display: inline-block; 
  font-weight: 500; 
  margin-right: -16px; 
  text-transform: uppercase;
  text-decoration: none;
}

.snypd-island__logo::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  top: 50%;
  height: 2px;
  background-color: rgb(162, 0, 255);
  transform: translateY(-50%);
  pointer-events: none;
}

.snypd-island__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.snypd-island__link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 9999px;
  transition: all 0.2s ease;
  position: relative;
}

.snypd-island__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.snypd-island__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.snypd-island__login {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  transition: color 0.2s ease;
}

.snypd-island__login:hover {
  color: #fff;
}

.snypd-island__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #a435f0, #7b1fa2);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 
    0 8px 24px -8px rgba(164, 53, 240, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: all 0.3s var(--ease-fluid);
}

.snypd-island__btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #c471ed, #f64f59);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.snypd-island__btn span {
  position: relative;
  z-index: 2;
}

.snypd-island__btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 12px 32px -8px rgba(164, 53, 240, 0.8),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.snypd-island__btn:hover::before {
  opacity: 1;
}

.snypd-island__mobile-btn {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.snypd-mobile-menu {
  position: absolute;
  top: 76px;
  right: 16px;
  width: 240px;
  background: rgba(12, 14, 22, 0.95);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s var(--ease-fluid);
}

.snypd-mobile-menu.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.snypd-mobile__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}

.snypd-mobile__link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.snypd-mobile__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}

@media (max-width: 800px) {
  .snypd-island__links { display: none; }
  .snypd-island-nav { padding: 0 12px 0 20px; height: 60px; }
  .snypd-island__login { display: none; }
  .snypd-island__mobile-btn { display: flex; }
  .snypd-island__btn { height: 40px; padding: 0 16px; }
}

/* ==========================================================================
   2. HERO SECTION & 3D INTERACTIVE SHOWCASE STAGE
   ========================================================================== */
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top center, black 0%, transparent 70%);
}

.glow-blob {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.6;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.glow-blob-teal {
  top: 10%;
  left: 65%;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(53, 231, 220, 0.18) 0%, transparent 70%);
  filter: blur(90px);
  opacity: 0.5;
  animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow {
  0% { transform: translateX(-50%) scale(0.95); opacity: 0.45; }
  100% { transform: translateX(-50%) scale(1.1); opacity: 0.75; }
}

/* ==========================================================================
   CLEAN SNIPER COMMAND CENTER
   ========================================================================== */
.sniper-center-section {
  position: relative;
  z-index: 20;
  max-width: 900px;
  margin: 40px auto 80px auto;
  padding: 0 24px;
  text-align: center;
}

.sniper-command-bar {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.command-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(12, 14, 24, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(162, 0, 255, 0.3);
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(162, 0, 255, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 8px 8px 8px 18px;
  transition: all 0.3s var(--ease-fluid);
}

.command-input-wrapper:focus-within {
  border-color: rgba(162, 0, 255, 0.8);
  box-shadow: 
    0 24px 50px -10px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(162, 0, 255, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.search-icon {
  color: var(--purple-light);
  flex-shrink: 0;
}

.command-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #fff;
}

.command-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.command-snipe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple), #7b1fa2);
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(162, 0, 255, 0.4);
  transition: all 0.2s ease;
}

.command-snipe-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(162, 0, 255, 0.6);
}

.command-snipe-btn kbd {
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: #00ff88;
}

.command-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.filter-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4px 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover, .filter-pill.active {
  background: rgba(162, 0, 255, 0.15);
  border-color: rgba(162, 0, 255, 0.5);
  color: #fff;
  box-shadow: 0 0 12px rgba(162, 0, 255, 0.25);
}

/* ==========================================================================
   PINNED 400VH STORYTELLING SCROLL STAGE
   ========================================================================== */
.story-scroll-track {
  position: relative;
  width: 100%;
  height: 400vh; /* 4x Viewport height scroll runway */
  background: #030408;
}

.pinned-story-stage {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

/* Video Canvas Layer */
.story-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.story-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.02);
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(1.2) contrast(1.1);
  will-change: transform;
}

.story-video-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(3, 4, 8, 0.4) 0%, rgba(3, 4, 8, 0.85) 65%, #030408 100%);
  z-index: 1;
}

.story-video-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
  z-index: 2;
}

/* Scroll Progress Indicators */
.story-progress-indicator {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 30;
}

.story-progress-bar {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.story-chapter-dots {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.story-chapter-dots .dot {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 4px 6px;
  border-radius: 6px;
}

.story-chapter-dots .dot.active {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
  transform: scale(1.15);
}

/* Lenis Smooth Scroll Base */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Narrative Story Chapters & Laser-Integrated Typography */
.story-chapter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -42%, 0) scale(0.96);
  width: min(920px, calc(100% - 48px));
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(8px);
  will-change: opacity, transform, filter;
  z-index: 20;
}

.story-chapter.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0) scale(1);
  filter: blur(0px);
}

.story-title {
  position: relative;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 35px rgba(162, 0, 255, 0.4), 0 0 70px rgba(53, 231, 220, 0.15);
  display: inline-block;
}

/* Horizontal Laser Sweep Under Heading */
.story-title::after {
  content: '';
  position: absolute;
  left: 5%;
  bottom: -10px;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #35e7dc, #df80ff, #ffffff, #df80ff, #35e7dc, transparent);
  box-shadow: 0 0 15px #35e7dc, 0 0 30px #df80ff, 0 0 45px #a200ff;
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.1);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.story-chapter.active .story-title::after {
  opacity: 1;
  transform: scaleX(1);
}

.story-sub {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 620px;
  margin: 0 auto 32px auto;
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.story-chapter:not(.active) .story-sub {
  opacity: 0;
  transform: translateY(10px);
}

.story-chapter.active .story-sub {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Mouse Cue */
.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 24px;
}

.scroll-mouse-icon {
  width: 18px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: #00ff88;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 10px); opacity: 0; }
}

/* Vault Mini Grid for Chapter 3 */
.vault-grid-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.vault-card-mini {
  background: rgba(12, 14, 24, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease;
}

.vault-card-mini:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(162, 0, 255, 0.5);
  box-shadow: 0 20px 40px -10px rgba(162, 0, 255, 0.3);
}

.vault-card-mini img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(3, 4, 9, 0.5);
}

.mini-info strong {
  font-size: 13px;
  color: #fff;
  display: block;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}

.mini-pricing {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.mini-profit {
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-mono, monospace);
  color: #00ff88;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

@media (max-width: 768px) {
  .story-progress-indicator {
    display: none;
  }
  .vault-grid-mini {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-section {
  position: relative;
  z-index: 10;
  padding-top: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-fluid) 0.1s forwards;
}

.hero-title span {
  background: linear-gradient(to right, #fff, #df80ff, #bf00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-fluid) 0.2s forwards;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-fluid) 0.3s forwards;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 40px rgba(162, 0, 255, 0.4);
}

.btn-primary:hover {
  background: var(--purple-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(162, 0, 255, 0.6);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-100);
  border: 1px solid var(--bg-border);
}

.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: rgba(255,255,255,0.2);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-star {
  filter: none !important;
  color: #fbbf24 !important;
  width: 18px !important;
  height: 18px !important;
  display: inline-block !important;
  margin: 0 !important;
}

.app-reveal-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(100px) scale(0.95);
  animation: appReveal 1.2s var(--ease-fluid) 0.5s forwards;
  perspective: 1000px;
}

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

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

.app-window {
  width: 100%;
  height: 700px;
  background: var(--dash-bg);
  border-radius: 12px;
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.9),
    0 0 0 1px #444,
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  position: relative;
}

.snypd-logo {
  position: relative;
  font-family: var(--font-mono);
  color: var(--purple);
  font-weight: 700;
  letter-spacing: 6px;
  display: inline-block;
  font-size: 16px;
}
.snypd-logo::after {
  content: '';
  position: absolute;
  left: -5px; right: 0px; top: 50%;
  height: 2px;
  background: var(--purple);
  transform: translateY(-50%);
}

.dash-sidebar {
  width: 260px;
  background: var(--dash-sidebar);
  border-right: 1px solid var(--dash-border);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}

.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.hamburger { width: 24px; height: 24px; background: #2a2a2a; border: 1px solid #333; border-radius: 4px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 3px; }
.hamburger div { width: 12px; height: 1px; background: #888; }
.sidebar-status { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--dash-text-muted); margin-bottom: 24px; font-family: var(--font-mono); }
.status-dot-grey { width: 6px; height: 6px; background: #555; border-radius: 50%; }
.sidebar-sep { height: 1px; background: var(--dash-border); margin-bottom: 24px; }
.nav-items { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.nav-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 6px; font-size: 13px; color: var(--dash-text-muted); cursor: default; }
.nav-item.active { background: #2a2a2a; color: var(--dash-text); position: relative; }
.nav-item.active::before { content: ''; position: absolute; left: -20px; top: 0; bottom: 0; width: 3px; background: var(--purple); }
.nav-icon { width: 16px; height: 16px; opacity: 0.7; }
.sidebar-bottom { display: flex; flex-direction: column; gap: 16px; margin-top: auto; }
.plan-info { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--dash-text-muted); }
.plan-badge { border: 1px solid var(--dash-border); padding: 4px 8px; border-radius: 4px; }
.btn-upgrade { background: var(--purple); color: #fff; border: none; border-radius: 6px; padding: 12px; font-size: 13px; font-weight: 600; text-align: center; cursor: default; }

.dash-main { flex: 1; display: flex; flex-direction: column; position: relative; }
.dash-header { padding: 32px 40px; display: flex; justify-content: space-between; align-items: center; }
.dash-content { padding: 0 40px; flex: 1; }
.engine-card { background: var(--dash-card); border: 1px solid #1a1a1a; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; flex-direction: column; overflow: hidden; }
.engine-controls { display: flex; align-items: center; padding: 16px 20px; border-bottom: 1px solid #1a1a1a; gap: 12px; }
.status-badge { display: flex; align-items: center; gap: 8px; padding: 6px 10px; background: #2a2a2a; border-radius: 4px; font-size: 11px; color: #bbb; }
.status-badge.active { color: var(--green); }
.status-dot-green { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); }
.engine-actions { margin-left: auto; display: flex; gap: 8px; }
.btn-running { background: var(--purple); color: white; border: none; padding: 8px 16px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.btn-stop { background: #2a2a2a; color: white; border: none; padding: 8px 16px; border-radius: 4px; font-size: 12px; font-weight: 600; }

.feed-container { display: flex; flex-direction: column; padding: 8px; background: #1e1e1e; min-height: 200px; position: relative; }
.feed-item { position: relative; display: flex; align-items: center; padding: 12px; border-radius: 8px; background: transparent; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); gap: 16px; border: 1px solid transparent; border-bottom: 1px solid #2a2a2a; cursor: pointer; }
.feed-item:last-child { border-bottom: 1px solid transparent; }
.feed-item:hover { background: #252525; transform: scale(1.02); box-shadow: 0 12px 30px rgba(0,0,0,0.5); border: 1px solid rgba(162, 0, 255, 0.3); z-index: 10; }
.feed-action { position: absolute; right: 16px; top: 50%; transform: translateY(-50%) translateX(10px); opacity: 0; background: var(--purple); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 100px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 15px rgba(162, 0, 255, 0.4); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.feed-item:hover .feed-action { opacity: 1; transform: translateY(-50%) translateX(0); }
.feed-img { width: 60px; height: 60px; border-radius: 6px; background-size: cover; background-position: center; background-color: #111; flex-shrink: 0; }
.feed-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.feed-title-row { display: flex; justify-content: space-between; align-items: center; }
.feed-title { font-size: 14px; font-weight: 700; color: #fff; }
.feed-price { font-size: 15px; font-weight: 700; color: #fff; }
.feed-meta { font-size: 11px; color: #888; }

.fade-out-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 300px; background: linear-gradient(to bottom, transparent, var(--bg-pure) 80%); z-index: 50; pointer-events: none; }

/* ==========================================================================
   3. THE ENGINE / REFRESH LOOP VS BOARD
   ========================================================================== */
.ambient-system { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ambient-system::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(162, 0, 255, 0.05), transparent 70%); }
.circuit-grid { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at 50% 30%, black, transparent 80%); -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black, transparent 80%); transform: perspective(1000px) rotateX(60deg) translateY(-100px) scale(2); transform-origin: top center; animation: grid-move 20s linear infinite; }
@keyframes grid-move { 0% { transform: perspective(1000px) rotateX(60deg) translateY(0px) scale(2); } 100% { transform: perspective(1000px) rotateX(60deg) translateY(60px) scale(2); } }
.dust { position: absolute; width: 2px; height: 2px; background: var(--purple); border-radius: 50%; opacity: 0; animation: float-dust 10s infinite linear; }
@keyframes float-dust { 0% { transform: translateY(100vh) translateX(0); opacity: 0; } 20% { opacity: 0.5; } 80% { opacity: 0.5; } 100% { transform: translateY(-10vh) translateX(50px); opacity: 0; } }

.ultra-section { position: relative; z-index: 10; padding: 160px 24px; min-height: 100vh; display: flex; flex-direction: column; align-items: center; }
.intro-group { text-align: center; max-width: 800px; margin-bottom: 60px; }
.eyebrow-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(162, 0, 255, 0.05); border: 1px solid rgba(162, 0, 255, 0.2); border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: 0.2em; color: var(--purple); text-transform: uppercase; margin-bottom: 32px; box-shadow: 0 0 20px rgba(162, 0, 255, 0.1); }
.eyebrow-pill .dot { width: 6px; height: 6px; background: var(--purple); border-radius: 50%; box-shadow: 0 0 10px var(--purple); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }
.super-headline { font-size: clamp(48px, 6vw, 80px); font-weight: 900; line-height: 1; letter-spacing: -0.04em; color: var(--text-100); margin-bottom: 32px; text-wrap: balance; }
.super-headline span { background: linear-gradient(135deg, #FFF 20%, var(--purple) 100%); -webkit-background-clip: text; color: transparent; }
.sub-headline { font-size: 20px; line-height: 1.6; color: var(--text-300); font-weight: 400; max-width: 640px; margin: 0 auto; }

.timeline-group { display: flex; align-items: center; justify-content: center; width: 100%; max-width: 900px; margin-bottom: 100px; position: relative; }
.t-node { display: flex; flex-direction: column; align-items: center; gap: 16px; position: relative; z-index: 2; }
.t-icon-box { width: 64px; height: 64px; background: var(--bg-surface); border: 1px solid var(--border-strong); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--text-300); transition: all var(--time-med) var(--ease-fluid); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.t-node.active .t-icon-box { background: var(--bg-panel); border-color: var(--purple); color: var(--purple); box-shadow: 0 10px 30px rgba(162, 0, 255, 0.2), inset 0 0 20px rgba(162, 0, 255, 0.1); transform: translateY(-4px); }
.t-icon-box svg { width: 28px; height: 28px; stroke-width: 1.5; }
.t-label { font-size: 14px; font-weight: 700; color: var(--text-300); letter-spacing: 0.05em; text-transform: uppercase; }
.t-node.active .t-label { color: var(--text-100); }
.t-path-container { flex: 1; height: 64px; position: relative; display: flex; align-items: center; margin: 0 -16px; margin-top: -32px; z-index: 1; }
.t-path-svg { width: 100%; height: 100%; overflow: visible; }
.t-path-base { stroke: var(--border-strong); stroke-width: 2; fill: none; stroke-dasharray: 6 6; }
.t-path-flow { stroke: var(--purple); stroke-width: 3; fill: none; stroke-dasharray: 100 1000; stroke-linecap: round; animation: path-flow 3s infinite linear; filter: drop-shadow(0 0 8px var(--purple)); }
@keyframes path-flow { 0% { stroke-dashoffset: 1100; } 100% { stroke-dashoffset: 0; } }

.board-wrapper { width: 100%; max-width: 1200px; perspective: 2000px; margin: 0 auto; position: relative; }
.vs-board { display: flex; width: 100%; background: #000; border: 1px solid var(--border-subtle); border-radius: 32px; transform: rotateX(var(--rX, 0deg)) rotateY(var(--rY, 0deg)); transform-style: preserve-3d; transition: transform 0.1s linear, box-shadow 0.1s linear; box-shadow: calc(var(--rY, 0) * -1px) calc(var(--rX, 0) * 1px + 40px) 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05) inset; position: relative; overflow: hidden; }
.vs-board::after { content: ''; position: absolute; inset: 0; background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.03), transparent 40%); pointer-events: none; z-index: 100; }

.vs-badge-container { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) translateZ(40px); width: 80px; height: 80px; z-index: 50; display: flex; align-items: center; justify-content: center; transform-style: preserve-3d; }
.vs-badge-core { width: 64px; height: 64px; background: var(--bg-pure); border: 1px solid var(--border-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; font-style: italic; color: var(--text-dark); box-shadow: 0 0 0 12px #000; position: relative; z-index: 2; transition: all var(--time-med) var(--ease-fluid); }
.vs-badge-ring { position: absolute; inset: -10px; border-radius: 50%; border: 1px dashed var(--border-strong); animation: spin-ring 10s linear infinite; z-index: 1; }
.vs-badge-ring.reverse { inset: -20px; border: 1px solid rgba(255,255,255,0.05); border-top-color: var(--text-dark); animation: spin-ring 15s linear infinite reverse; }
@keyframes spin-ring { 100% { transform: rotate(360deg); } }

.board-side { flex: 1; padding: 80px 48px; display: flex; flex-direction: column; gap: 40px; position: relative; transition: filter var(--time-slow) var(--ease-fluid), opacity var(--time-slow) var(--ease-fluid); }
.vs-board:hover .board-side { filter: grayscale(100%) brightness(0.3); opacity: 0.4; }
.vs-board .board-side:hover { filter: grayscale(0%) brightness(1); opacity: 1; }
.board-side.snypd:hover ~ .vs-badge-container .vs-badge-core { color: var(--purple); border-color: var(--purple); box-shadow: 0 0 30px rgba(162,0,255,0.3), 0 0 0 12px #000; text-shadow: 0 0 10px var(--purple); }

.side-header { display: flex; align-items: center; gap: 16px; }
.sh-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.sh-text { display: flex; flex-direction: column; }
.sh-text span:first-child { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; color: var(--text-dark); text-transform: uppercase; }
.sh-text span:last-child { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--text-200); }

.board-side.manual { background: var(--bg-surface); border-right: 1px solid var(--border-subtle); }
.manual .sh-icon { background: var(--bg-card); border: 1px solid var(--border-strong); color: var(--text-300); }
.board-side.manual::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(0,0,0,0.1), rgba(0,0,0,0.1) 1px, transparent 1px, transparent 2px); pointer-events: none; z-index: 1; opacity: 0.5; }
.board-side.snypd { background: var(--bg-pure); }
.snypd .sh-icon { background: rgba(162, 0, 255, 0.1); border: 1px solid var(--purple); color: var(--purple); box-shadow: 0 0 20px rgba(162, 0, 255, 0.2); }
.snypd .sh-text span:last-child { color: var(--text-100); }

.card-stack { display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 2; }
.action-card { background: var(--bg-panel); border: 1px solid var(--border-strong); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; gap: 16px; transition: transform var(--time-fast) var(--ease-spring), border-color var(--time-fast); transform-style: preserve-3d; }
.board-side:hover .action-card { transform: translateZ(20px); }
.board-side.snypd:hover .action-card { border-color: rgba(162, 0, 255, 0.3); background: rgba(255,255,255,0.02); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.ac-header { display: flex; justify-content: space-between; align-items: center; }
.ac-title { display: flex; align-items: center; gap: 12px; }
.ac-title svg { width: 20px; height: 20px; color: var(--text-300); }
.snypd .action-card .ac-title svg { color: var(--purple); }
.ac-title strong { font-size: 18px; font-weight: 700; color: var(--text-200); }
.snypd .ac-title strong { color: var(--text-100); }
.ac-desc { font-size: 15px; line-height: 1.5; color: var(--text-300); }

.micro-ui { width: 100%; height: 80px; background: var(--bg-pure); border: 1px solid var(--border-subtle); border-radius: 12px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.ui-spinner { width: 30px; height: 30px; border: 3px solid var(--border-strong); border-top-color: var(--text-300); border-radius: 50%; animation: spin 1s infinite linear; }
.ui-scroll-list { width: 100%; padding: 10px; display: flex; flex-direction: column; gap: 8px; animation: scroll-up 4s infinite linear; }
.ui-scroll-item { width: 100%; height: 24px; background: var(--bg-card); border-radius: 6px; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; opacity: 0.5; }
.ui-scroll-item::after { content: 'SOLD'; font-size: 9px; font-weight: 800; color: var(--manual-primary); }
.ui-error-badge { background: rgba(255, 51, 51, 0.1); border: 1px solid rgba(255, 51, 51, 0.2); color: var(--manual-primary); padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; font-family: var(--font-mono); display: flex; align-items: center; gap: 8px; }
.ui-error-badge::before { content: '!'; width: 14px; height: 14px; background: var(--manual-primary); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; }
@keyframes scroll-up { 0% { transform: translateY(20px); } 100% { transform: translateY(-40px); } }

.ui-terminal { width: 100%; height: 100%; padding: 16px; font-family: var(--font-mono); font-size: 12px; color: var(--purple); display: flex; flex-direction: column; justify-content: center; background: rgba(162, 0, 255, 0.02); }
.type-line { display: flex; align-items: center; gap: 8px; }
.type-line::before { content: '>'; color: var(--text-dark); }
.cursor { display: inline-block; width: 6px; height: 12px; background: var(--purple); animation: blink 1s infinite; }
.text-type { white-space: nowrap; overflow: hidden; border-right: 2px solid transparent; animation: typing 3s steps(30, end) infinite; }
.ui-radar-box { width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(162,0,255,0.1), transparent 70%); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.radar-grid { width: 200%; height: 200%; background-image: linear-gradient(var(--border-strong) 1px, transparent 1px), linear-gradient(90deg, var(--border-strong) 1px, transparent 1px); background-size: 20px 20px; opacity: 0.3; }
.radar-sweep { position: absolute; width: 100px; height: 100px; border-radius: 50%; background: conic-gradient(transparent 270deg, rgba(162,0,255,0.8) 360deg); animation: radar-spin 2s linear infinite; border: 1px solid rgba(162,0,255,0.5); }
.radar-dot { position: absolute; width: 6px; height: 6px; background: #FFF; border-radius: 50%; box-shadow: 0 0 10px #FFF, 0 0 20px var(--purple); animation: dot-ping 2s infinite; }
.radar-dot.d1 { top: 20%; left: 30%; animation-delay: 0.5s; }
.radar-dot.d2 { bottom: 30%; right: 20%; animation-delay: 1.5s; }
.ui-match-card { background: var(--bg-panel); border: 1px solid var(--purple); border-radius: 8px; padding: 10px 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 4px 20px rgba(162,0,255,0.2); animation: pop-in-out 4s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.mc-img { width: 32px; height: 32px; background: #222; border-radius: 4px; }
.mc-lines { display: flex; flex-direction: column; gap: 6px; }
.mc-l1 { width: 60px; height: 6px; background: #FFF; border-radius: 3px; }
.mc-l2 { width: 40px; height: 6px; background: var(--text-dark); border-radius: 3px; }
.mc-badge { margin-left: auto; background: var(--purple); color: #FFF; font-size: 9px; font-weight: 800; padding: 4px 8px; border-radius: 4px; text-transform: uppercase; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes typing { 0% { width: 0; } 50%, 100% { width: 100%; } }
@keyframes radar-spin { 100% { transform: rotate(360deg); } }
@keyframes dot-ping { 0% { transform: scale(0); opacity: 1; } 50% { transform: scale(2); opacity: 0; } 100% { transform: scale(0); opacity: 0; } }
@keyframes pop-in-out { 0%, 10%, 100% { transform: translateY(20px); opacity: 0; } 20%, 90% { transform: translateY(0); opacity: 1; } }

/* ==========================================================================
   4. REAL EXAMPLES / PROOF SECTION
   ========================================================================== */
.section-proof { position: relative; padding: 160px 24px 100px; min-height: 100vh; display: flex; flex-direction: column; align-items: center; isolation: isolate; }
.section-proof::before { content: ''; position: absolute; top: 20%; left: 50%; transform: translate(-50%, -50%); width: 1000px; height: 1000px; background: radial-gradient(circle, rgba(162, 0, 255, 0.04) 0%, transparent 60%); z-index: -2; pointer-events: none; }
.ambient-mesh { position: absolute; top: -50%; left: -50%; right: -50%; bottom: -50%; z-index: -1; pointer-events: none; opacity: 0.4; background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-40 0a40 40 0 1 0 80 0a40 40 0 1 0-80 0' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E"); background-size: 120px 120px; mask-image: radial-gradient(circle at center, black 10%, transparent 60%); -webkit-mask-image: radial-gradient(circle at center, black 10%, transparent 60%); animation: rotate-mesh 180s linear infinite; }
@keyframes rotate-mesh { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.proof-container { width: 100%; max-width: 1280px; position: relative; z-index: 10; }
.intro-block { max-width: 760px; margin-bottom: 64px; }
.pill-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-strong); border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--text-100); text-transform: uppercase; margin-bottom: 24px; backdrop-filter: blur(10px); }
.pill-kicker svg { width: 14px; height: 14px; color: var(--purple); }
.title-main { font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1.05; color: var(--text-100); letter-spacing: -0.03em; margin-bottom: 24px; }
.title-main span { color: var(--text-300); }
.desc-sub { font-size: 18px; color: var(--text-300); line-height: 1.6; max-width: 680px; }

.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: stretch; }
.focus-stage { position: relative; background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: 32px; overflow: hidden; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 40px 100px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1); display: flex; flex-direction: column; --mx: 0; --my: 0; }
.focus-stage::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(800px circle at calc(50% + var(--mx) * 100%) calc(50% + var(--my) * 100%), rgba(162, 0, 255, 0.08), transparent 50%); pointer-events: none; z-index: 0; transition: background 0.3s ease; }
.stage-loader { position: absolute; inset: 0; background: rgba(8, 8, 8, 0.8); backdrop-filter: blur(10px); z-index: 100; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--time-med) var(--ease-fluid); }
.stage-loader.active { opacity: 1; pointer-events: all; }
.loader-ring { width: 40px; height: 40px; border: 2px solid var(--border-strong); border-top-color: var(--purple); border-radius: 50%; animation: spin 1s linear infinite; }
.stage-topbar { position: relative; z-index: 10; padding: 24px 32px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-subtle); }
.mac-dots { display: flex; gap: 8px; }
.mac-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.status-text { font-size: 13px; font-weight: 600; color: var(--text-300); letter-spacing: 0.02em; }
.asset-visual { position: relative; z-index: 1; height: 380px; display: flex; align-items: center; justify-content: center; padding: 40px; overflow: hidden; }
.asset-halo { position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%); filter: blur(40px); transform: translate(calc(var(--mx) * -30px), calc(var(--my) * -30px)); transition: transform 0.1s linear; }
.asset-image-box { position: relative; width: 100%; height: 100%; border-radius: 20px; display: flex; align-items: center; justify-content: center; transform: translate(calc(var(--mx) * 20px), calc(var(--my) * 20px)) scale(1.05); transition: transform 0.1s linear; box-shadow: 0 20px 50px rgba(0,0,0,0.5); background-size: cover; background-position: center; background-color: #111; }
.asset-data { position: relative; z-index: 10; padding: 32px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4)); flex: 1; display: flex; flex-direction: column; }
.data-badges { display: flex; gap: 8px; margin-bottom: 20px; }
.d-badge { padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--text-200); background: rgba(255,255,255,0.05); border: 1px solid var(--border-strong); }
.d-badge.hot { background: var(--purple-glow); color: var(--purple-light); border-color: rgba(162, 0, 255, 0.3); }
.data-title { font-size: 32px; font-weight: 800; color: var(--text-100); line-height: 1.1; margin-bottom: 16px; transform: translate(calc(var(--mx) * 5px), calc(var(--my) * 5px)); transition: transform 0.1s linear; }
.data-price { font-size: 48px; font-weight: 900; color: var(--text-100); letter-spacing: -0.04em; margin-bottom: 32px; display: flex; align-items: baseline; gap: 16px; }
.data-price .market { font-size: 16px; font-weight: 500; color: var(--text-400); text-decoration: line-through; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: auto; }
.stat-box { background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 16px; transition: background var(--time-fast); }
.stat-box:hover { background: rgba(255,255,255,0.04); }
.stat-label { display: block; font-size: 11px; font-weight: 600; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.stat-val { display: block; font-size: 15px; font-weight: 700; color: var(--text-100); }

.queue-list { display: flex; flex-direction: column; gap: 20px; }
.queue-card { background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: 24px; padding: 20px; display: flex; gap: 20px; cursor: pointer; transition: all var(--time-fast) var(--ease-fluid); position: relative; overflow: hidden; }
.queue-card:hover { background: var(--bg-card-hover); border-color: rgba(162, 0, 255, 0.4); transform: translateX(-8px); box-shadow: 10px 20px 40px rgba(0,0,0,0.4); }
.queue-card.active { border-color: var(--purple); background: rgba(162, 0, 255, 0.05); }
.queue-card.active::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--purple); }
.qc-thumb { width: 80px; height: 80px; background-color: #111; background-size: cover; background-position: center; border: 1px solid var(--border-subtle); border-radius: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform var(--time-fast) var(--ease-spring); }
.queue-card:hover .qc-thumb { transform: scale(1.05) rotate(-2deg); border-color: var(--purple-glow); }
.qc-content { display: flex; flex-direction: column; justify-content: center; flex: 1; }
.qc-top { display: flex; justify-content: space-between; margin-bottom: 8px; }
.qc-label { font-size: 11px; font-weight: 700; color: var(--purple-light); letter-spacing: 0.05em; text-transform: uppercase; }
.qc-title { font-size: 15px; font-weight: 700; color: var(--text-200); line-height: 1.3; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.qc-meta { font-size: 12px; color: var(--text-400); font-weight: 500; }

.ticker-band { position: absolute; bottom: 0; left: 0; right: 0; height: 50px; background: rgba(0,0,0,0.8); border-top: 1px solid var(--border-strong); display: flex; align-items: center; overflow: hidden; backdrop-filter: blur(10px); }
.ticker-band::before, .ticker-band::after { content: ''; position: absolute; top: 0; bottom: 0; width: 150px; z-index: 2; pointer-events: none; }
.ticker-band::before { left: 0; background: linear-gradient(90deg, var(--bg-pure), transparent); }
.ticker-band::after { right: 0; background: linear-gradient(-90deg, var(--bg-pure), transparent); }
.ticker-content { display: flex; width: max-content; animation: ticker-slide 30s linear infinite; }
.ticker-item { font-size: 13px; font-weight: 600; color: var(--text-300); padding: 0 30px; display: flex; align-items: center; gap: 12px; }
.ticker-item span { color: var(--text-100); }
.ticker-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--purple); }
@keyframes ticker-slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================================================
   5. PRICING SECTION
   ========================================================================== */
.snypd-pricing {
  position: relative;
  width: 100%;
  padding: 160px 0;
  background: var(--bg-pure);
  font-family: var(--font-sans);
  overflow: hidden;
}

.snypd-pricing__glow-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.snypd-pricing__glow-1 { position: absolute; top: 10%; left: 15%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(139, 92, 255, 0.15) 0%, transparent 60%); filter: blur(60px); }
.snypd-pricing__glow-2 { position: absolute; bottom: 10%; right: 15%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(53, 231, 220, 0.1) 0%, transparent 60%); filter: blur(60px); }
.snypd-pricing__inner { position: relative; z-index: 2; width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.snypd-pricing__header { text-align: center; margin-bottom: 72px; }
.snypd-pricing__eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 100px; background: rgba(139, 92, 255, 0.08); border: 1px solid rgba(139, 92, 255, 0.15); color: #d7c5ff; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 24px; }
.snypd-pricing__eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 12px var(--purple); }
.snypd-pricing__title { font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin: 0; color: var(--text-100); }
.snypd-pricing__subtitle { max-width: 580px; margin: 20px auto 0; color: var(--text-300); font-size: 18px; line-height: 1.6; font-weight: 400; }
.snypd-pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.snypd-pricing__card { position: relative; display: flex; flex-direction: column; border-radius: 20px; padding: 40px 32px; background: var(--bg-card); border: 1px solid var(--border-subtle); box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.03), 0 12px 32px rgba(0, 0, 0, 0.4); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); transition: all 0.4s var(--ease-fluid); }
.snypd-pricing__card:hover { transform: translateY(-6px); background: var(--bg-card-hover); border-color: var(--border-strong); box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06), 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 255, 0.05); }
.snypd-pricing__card--pro { background: linear-gradient(180deg, rgba(22, 24, 36, 0.8) 0%, rgba(14, 16, 24, 0.95) 100%) padding-box, linear-gradient(135deg, rgba(139, 92, 255, 0.5), rgba(53, 231, 220, 0.3)) border-box; border: 1px solid transparent; box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(139, 92, 255, 0.12); transform: scale(1.04); z-index: 10; }
.snypd-pricing__card--pro:hover { transform: scale(1.04) translateY(-6px); background: linear-gradient(180deg, rgba(26, 28, 42, 0.9) 0%, rgba(14, 16, 24, 0.95) 100%) padding-box, linear-gradient(135deg, rgba(139, 92, 255, 0.8), rgba(53, 231, 220, 0.5)) border-box; box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12), 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 80px rgba(139, 92, 255, 0.2); }
.snypd-pricing__topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; min-height: 28px; }
.snypd-pricing__name { font-size: 20px; font-weight: 600; color: var(--text-100); margin: 0; }
.snypd-pricing__badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 6px; background: rgba(139, 92, 255, 0.15); border: 1px solid rgba(139, 92, 255, 0.3); color: #d7c5ff; }
.snypd-pricing__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.snypd-pricing__amount { font-size: 44px; font-weight: 800; letter-spacing: -0.04em; color: var(--text-100); line-height: 1; }
.snypd-pricing__period { font-size: 15px; color: var(--text-300); font-weight: 500; }
.snypd-pricing__blurb { font-size: 14px; color: var(--text-300); line-height: 1.5; margin: 0 0 32px 0; min-height: 42px; }
.snypd-pricing__features { list-style: none; padding: 0; margin: 0 0 40px 0; flex-grow: 1; display: flex; flex-direction: column; gap: 14px; }
.snypd-pricing__features li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 500; color: #e2e8f0; line-height: 1.4; }
.snypd-pricing__features svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--teal); margin-top: 1px; }
.snypd-pricing__cta { display: flex; align-items: center; justify-content: center; width: 100%; height: 48px; border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.3s var(--ease-fluid); cursor: pointer; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); color: var(--text-100); }
.snypd-pricing__cta:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.15); }
.snypd-pricing__card--pro .snypd-pricing__cta { background: var(--text-100); color: #030409; border: none; box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15); }
.snypd-pricing__card--pro .snypd-pricing__cta:hover { background: #f1f5f9; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25); }
.snypd-pricing__current-badge { display: none; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 6px; background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); color: #34d399; }
.snypd-pricing__card.is-current .snypd-pricing__current-badge { display: inline-block; }
.snypd-pricing__card.is-current { border-color: rgba(16, 185, 129, 0.4); box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 0 0 1px rgba(16, 185, 129, 0.2), 0 20px 40px rgba(0, 0, 0, 0.4); }
.snypd-pricing__current { display: none; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; padding: 16px 32px; border-radius: 12px; background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.2); color: #e2e8f0; font-size: 14px; font-weight: 500; }
.snypd-pricing__current.is-visible { display: inline-flex; left: 50%; transform: translateX(-50%); position: relative; }
.snypd-pricing__current strong { color: #34d399; font-weight: 700; }
.snypd-pricing__current a { color: #fff; text-decoration: underline; font-weight: 600; text-underline-offset: 4px; }
.snypd-pricing__current a:hover { color: #34d399; }
.snypd-pricing__note { text-align: center; margin-top: 40px; font-size: 13px; color: rgba(255, 255, 255, 0.4); }

/* ==========================================================================
   6. FAQ SECTION & SUPPORT
   ========================================================================== */
.faq-section { max-width: 1000px; margin: 0 auto; position: relative; isolation: isolate; padding: 160px 24px; }
.faq-section::before { content: ''; position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 600px; background: radial-gradient(circle, rgba(162, 0, 255, 0.05) 0%, transparent 70%); z-index: -1; pointer-events: none; }
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-title { font-size: clamp(36px, 4vw, 56px); font-weight: 800; line-height: 1.1; color: var(--text-100); letter-spacing: -0.03em; margin-bottom: 20px; }
.faq-title span { color: var(--text-300); }
.faq-subtitle { font-size: 18px; color: var(--text-300); max-width: 600px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: 20px; overflow: hidden; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: all 0.3s var(--ease-fluid); }
.faq-item:hover { background: var(--bg-card-hover); border-color: rgba(162, 0, 255, 0.4); box-shadow: 0 10px 40px rgba(0,0,0,0.5); transform: translateY(-2px); }
.faq-item.active { border-color: var(--purple); background: rgba(162, 0, 255, 0.05); }
.faq-question { width: 100%; text-align: left; background: transparent; border: none; padding: 28px 32px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 18px; font-weight: 600; color: var(--text-100); font-family: var(--font-sans); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease-fluid); flex-shrink: 0; margin-left: 20px; }
.faq-icon svg { width: 12px; height: 12px; color: var(--text-200); transition: transform 0.3s var(--ease-fluid); }
.faq-item:hover .faq-icon, .faq-item.active .faq-icon { background: var(--purple); border-color: var(--purple); }
.faq-item.active .faq-icon svg { transform: rotate(45deg); }
.faq-answer-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease-fluid); }
.faq-item.active .faq-answer-wrapper { grid-template-rows: 1fr; }
.faq-answer { overflow: hidden; }
.faq-answer-inner { padding: 0 32px 32px 32px; color: var(--text-300); font-size: 16px; line-height: 1.6; }
.faq-answer-inner strong { color: var(--text-100); font-weight: 600; }
.faq-cta { margin-top: 60px; text-align: center; padding: 40px; background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); border-radius: 24px; }
.faq-cta h3 { font-size: 24px; font-weight: 700; color: var(--text-100); margin-bottom: 12px; }
.faq-cta p { color: var(--text-400); margin-bottom: 24px; }

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.snypd-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 24px;
  text-align: center;
  color: var(--text-400);
  font-size: 14px;
  background: var(--bg-pure);
}
.snypd-footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.snypd-footer__links a {
  color: var(--text-300);
  text-decoration: none;
  transition: color 0.2s;
}
.snypd-footer__links a:hover { color: #fff; }

/* ==========================================================================
   8. MEDIA QUERIES (GLOBAL RESPONSIVE)
   ========================================================================== */
@media (max-width: 1100px) {
  .snypd-pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .focus-stage { min-height: 700px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vs-board { flex-direction: column; transform: none !important; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
  .board-side { padding: 40px 24px; }
  .board-side.manual { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .vs-badge-container { transform: translate(-50%, -50%) !important; }
  .timeline-group { display: none; }
}

@media (max-width: 768px) {
  .snypd-pricing__grid { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .hero-title { font-size: 48px; }
  .btn-group { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .section-proof { padding: 120px 16px 80px; }
  .title-main { font-size: 36px; }
  .asset-visual { height: 250px; }
  .data-title { font-size: 24px; }
  .data-price { font-size: 36px; }
  .faq-question { font-size: 16px; padding: 24px; }
  .faq-answer-inner { padding: 0 24px 24px 24px; font-size: 15px; }
}

/* ================================================================
   SNYPD DEFECT 1 — HORIZONTAL OVERFLOW DEFENSE
   ================================================================ */

html {
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

#page-wrapper {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  overflow-x: clip;
}

img,
video,
canvas,
svg,
iframe {
  max-width: 100%;
}

[style*="width: 100vw"],
[style*="width:100vw"],
[style*="width : 100vw"] {
  width: 100% !important;
  max-width: 100vw !important;
}

[style*="min-width: 100vw"],
[style*="min-width:100vw"],
[style*="min-width : 100vw"] {
  min-width: 100% !important;
}

[style*="max-width: 100vw"],
[style*="max-width:100vw"],
[style*="max-width : 100vw"] {
  max-width: 100% !important;
}

/* ================================================================
   SNYPD DEFECT 2 — DUPLICATE HERO BREAKPOINT COLLISION
   ================================================================ */

@media screen and (max-width: 991px) {
  .hero-desktop {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .hero-mobile {
    display: none !important;
  }
}

/* ================================================================
   SNYPD DEFECT 3 — MOBILE NAVBAR VISIBILITY (CUSTOM ISLAND NAV)
   ================================================================ */

#snypdMobileToggle,
.snypd-island__mobile-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 2100;
  cursor: pointer;
}

#snypdMobileMenu,
.snypd-mobile-menu {
  z-index: 3000;
  max-width: 100vw;
  overflow-x: hidden;
}

#snypdMobileMenu a,
.snypd-mobile-menu a {
  visibility: visible !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}

/* ================================================================
   SNYPD DEFECT 4 — IX2 PRE-HIDE TRAP & VISIBILITY OVERRIDE
   ================================================================ */
html.w-mod-js *:not(.w-mod-ix3),
html.w-mod-js *:not(.w-mod-ix) {
  opacity: 1 !important;
  visibility: visible !important;
}

html.w-mod-js .heading_h3,
html.w-mod-js .heading_h2,
html.w-mod-js .heading_h1,
html.w-mod-js .paragraph,
html.w-mod-js .text-block,
html.w-mod-js [class*="heading"],
html.w-mod-js [class*="text"] {
  opacity: 1 !important;
  visibility: visible !important;
  display: revert !important;
}

[data-wf--hidden],
.w--hidden,
[style*="visibility: hidden"],
[style*="visibility:hidden"],
[style*="opacity: 0"],
[style*="opacity:0"] {
  visibility: visible !important;
  opacity: 1 !important;
}

/* ================================================================
   SNYPD DEFECT 5 — CROPPED LIVE-FIND PREVIEW CARDS
   ================================================================ */
.w-dyn-item,
.w-dyn-list,
.collection-list-wrapper,
[class*="card"],
[class*="Card"],
[class*="find"],
[class*="proof"],
[class*="item"] {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.w-dyn-item img,
[class*="card"] img,
[class*="find"] img,
[class*="proof"] img {
  width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: cover;
}

.w-dyn-item p,
.w-dyn-item h3,
.w-dyn-item h4,
[class*="card"] p,
[class*="card"] h3,
[class*="card"] h4,
[class*="find"] p,
[class*="proof"] p {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  max-height: none !important;
  display: block !important;
}

/* ================================================================
   SNYPD FINAL POLISH — MOBILE CONVERSION HARDENING
   ================================================================ */

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

/* ---------------------------------------------------------------
   Mobile navbar / island menu final state
   --------------------------------------------------------------- */

#snypdMobileToggle,
.snypd-island__mobile-btn {
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

#snypdMobileMenu,
.snypd-mobile-menu {
  max-height: calc(100vh - 88px);
  max-height: calc(100dvh - 88px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}

#snypdMobileMenu a,
.snypd-mobile-menu a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  #snypdMobileMenu:not(.active),
  .snypd-mobile-menu:not(.active) {
    display: none !important;
  }

  #snypdMobileMenu.active,
  .snypd-mobile-menu.active {
    display: flex !important;
    flex-direction: column;
  }
}

@media screen and (min-width: 992px) {
  #snypdMobileToggle,
  .snypd-island__mobile-btn {
    display: none !important;
  }

  #snypdMobileMenu,
  .snypd-mobile-menu {
    display: none !important;
  }
}

/* ---------------------------------------------------------------
   Engine / Refresh Loop visibility
   --------------------------------------------------------------- */

.board-wrapper,
.vs-board,
.board-side,
.card-stack,
.action-card,
.ui-radar-box,
.ui-terminal,
.ui-spinner,
.ui-match-card {
  max-width: 100%;
  visibility: visible;
}

.board-wrapper,
.vs-board {
  width: 100%;
}

.board-side {
  min-height: 120px;
}

.card-stack {
  min-height: 88px;
}

.action-card {
  min-height: 48px;
}

.ui-radar-box,
.ui-terminal,
.ui-spinner,
.ui-match-card {
  min-height: 28px;
}

/* ---------------------------------------------------------------
   Proof stage / live-find cards
   --------------------------------------------------------------- */

.section-proof,
.focus-stage,
.asset-image-box,
.queue-list,
.stat-box {
  max-width: 100%;
  overflow: visible;
}

.asset-image-box {
  min-height: 220px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.data-title,
.data-price,
.stat-box {
  overflow-wrap: anywhere;
}

.queue-list {
  width: 100%;
}

/* Prevent interactive sections from reintroducing horizontal overflow */
#boardWrapper,
#proofSection,
#focusStage,
#queueList {
  max-width: 100%;
}
