/* ============================================================
   VynSure Technologies — Premium Dark Theme
   Design System: Colors, Typography, Components, Animations
   Inspired by Vercel, Linear, Stripe, Framer
   ============================================================ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
  /* Background */
  --vs-bg-primary: #08080d;
  --vs-bg-secondary: #0c0c14;
  --vs-bg-surface: #12121a;
  --vs-bg-card: #16162a;
  --vs-bg-card-hover: #1c1c36;
  --vs-bg-elevated: #1e1e3a;

  /* Brand Purple */
  --vs-purple-50: #f5f3ff;
  --vs-purple-100: #ede9fe;
  --vs-purple-200: #ddd6fe;
  --vs-purple-300: #c4b5fd;
  --vs-purple-400: #a78bfa;
  --vs-purple-500: #8b5cf6;
  --vs-purple-600: #7c3aed;
  --vs-purple-700: #6d28d9;
  --vs-purple-800: #5b21b6;

  /* Brand Blue */
  --vs-blue-50: #eff6ff;
  --vs-blue-100: #dbeafe;
  --vs-blue-200: #bfdbfe;
  --vs-blue-300: #93c5fd;
  --vs-blue-400: #60a5fa;
  --vs-blue-500: #3b82f6;
  --vs-blue-600: #2563eb;

  /* Text */
  --vs-text-primary: #f1f5f9;
  --vs-text-secondary: #94a3b8;
  --vs-text-tertiary: #64748b;
  --vs-text-muted: #475569;

  /* Borders */
  --vs-border: rgba(255, 255, 255, 0.06);
  --vs-border-hover: rgba(255, 255, 255, 0.12);
  --vs-border-purple: rgba(139, 92, 246, 0.25);
  --vs-border-blue: rgba(59, 130, 246, 0.2);

  /* Gradients */
  --vs-gradient-purple: linear-gradient(135deg, #7c3aed, #a855f7);
  --vs-gradient-blue: linear-gradient(135deg, #3b82f6, #60a5fa);
  --vs-gradient-mixed: linear-gradient(135deg, #7c3aed, #3b82f6);
  --vs-gradient-hero: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 58, 237, 0.15), transparent 70%);
  --vs-gradient-hero-blue: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(59, 130, 246, 0.08), transparent 60%);
  --vs-gradient-text: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 30%, #818cf8 60%, #60a5fa 100%);
  --vs-gradient-cta: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
  --vs-gradient-card-border: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.05));

  /* Glow Effects */
  --vs-glow-purple: 0 0 40px rgba(139, 92, 246, 0.2);
  --vs-glow-purple-strong: 0 0 60px rgba(139, 92, 246, 0.35);
  --vs-glow-blue: 0 0 40px rgba(59, 130, 246, 0.15);
  --vs-glow-button: 0 4px 30px rgba(124, 58, 237, 0.4);
  --vs-glow-card: 0 8px 40px rgba(0, 0, 0, 0.4);

  /* Glassmorphism */
  --vs-glass-bg: rgba(22, 22, 42, 0.6);
  --vs-glass-border: rgba(255, 255, 255, 0.08);
  --vs-glass-blur: blur(16px);

  /* Spacing */
  --vs-section-py: clamp(4rem, 8vw, 7rem);
  --vs-container-px: clamp(1.25rem, 4vw, 2rem);

  /* Radius */
  --vs-radius-sm: 8px;
  --vs-radius: 12px;
  --vs-radius-md: 16px;
  --vs-radius-lg: 20px;
  --vs-radius-xl: 24px;
  --vs-radius-full: 9999px;

  /* Transitions */
  --vs-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --vs-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --vs-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --vs-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --vs-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  --vs-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --vs-shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.6);
}


/* ─── Base Overrides for Dark Brand ─── */
html {
  scroll-behavior: smooth;
}

body, body.b, body.eh, body.b.eh {
  background-color: var(--vs-bg-primary) !important;
  color: var(--vs-text-secondary) !important;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--vs-text-primary) !important;
}


/* ─── Gradient Text Utility ─── */
.vs-gradient-text {
  background: var(--vs-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-gradient-text-purple {
  background: var(--vs-gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ─── Header ─── */
header, header.g {
  background: rgba(8, 8, 13, 0.8) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--vs-border);
  transition: var(--vs-transition);
}

header.hh.sm._k.dj.bl.ll,
header.hh {
  background: rgba(8, 8, 13, 0.95) !important;
  border-bottom-color: var(--vs-border-purple);
  box-shadow: 0 1px 30px rgba(139, 92, 246, 0.06);
}

/* Navigation links */
header nav a,
header .xl {
  color: var(--vs-text-secondary) !important;
  transition: var(--vs-transition-fast);
  position: relative;
}

header nav a:hover,
header .xl:hover {
  color: var(--vs-text-primary) !important;
}

header nav a.mk,
header .xl.mk {
  color: var(--vs-purple-400) !important;
}

/* Mobile menu background */
@media (max-width: 1023px) {
  header .d.hh {
    background: rgba(8, 8, 13, 0.98) !important;
    border: 1px solid var(--vs-border);
    border-radius: var(--vs-radius-md);
  }
}


/* ─── Hero Section ─── */
.vs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--vs-bg-primary);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 50px;
}

/* Grid overlay background */
.vs-hero-grid-bg {
  position: absolute;
  inset: 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: 50px 50px;
  background-position: center;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  z-index: 1;
}

/* Aurora ambient light effects */
.vs-aurora-1 {
  position: absolute;
  top: -10%;
  left: 10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: vs-aurora-move-1 20s infinite alternate ease-in-out;
}

.vs-aurora-2 {
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: vs-aurora-move-2 25s infinite alternate ease-in-out;
}

.vs-aurora-3 {
  position: absolute;
  top: 20%;
  right: 35%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* Stars background */
.vs-stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0.8px, transparent 0.8px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.vs-stars-2 {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.2px, transparent 1.2px);
  background-size: 130px 130px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  animation: vs-stars-twinkle 6s infinite alternate;
}

/* Container & layout */
.vs-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--vs-container-px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}

.vs-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  padding: 3rem 0;
}

.vs-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 5.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
  color: var(--vs-text-primary) !important;
}

.vs-hero p {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  color: var(--vs-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.vs-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: var(--vs-radius-full);
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  font-size: 0.875rem;
  color: var(--vs-purple-300);
  margin-bottom: 1.5rem;
  animation: vs-fadeInDown 0.6s ease-out;
  backdrop-filter: blur(4px);
}

.vs-hero-tagline::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vs-purple-400);
  animation: vs-pulse 2s ease-in-out infinite;
}

/* Floating Technology Icons */
.vs-floating-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 15, 27, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 3;
  animation: vs-float-slow 6s ease-in-out infinite;
}

/* Floating widgets / Illustration styles */
.vs-hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.vs-dashboard-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  z-index: 2;
}

/* Main glowing background behind dashboard */
.vs-dashboard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* Main Dashboard Window */
.vs-dashboard-main {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 20, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform: rotateY(-12deg) rotateX(12deg) rotateZ(1deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

.vs-dashboard-main:hover {
  transform: rotateY(-3deg) rotateX(3deg) rotateZ(0deg) translateY(-4px);
}

.vs-dashboard-header {
  height: 38px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  gap: 6px;
}

.vs-dashboard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.vs-dot-red { background: #ef4444; }
.vs-dot-yellow { background: #eab308; }
.vs-dot-green { background: #22c55e; }

.vs-dashboard-title {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--vs-text-secondary);
  margin-left: auto;
  margin-right: auto;
  opacity: 0.7;
}

.vs-dashboard-body {
  padding: 1.5rem;
  font-family: 'Inter', monospace;
  font-size: 0.8125rem;
  color: var(--vs-text-secondary);
  line-height: 1.6;
}

/* Code visual representation */
.vs-code-line {
  display: flex;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.vs-code-num {
  width: 24px;
  color: var(--vs-text-muted);
  font-size: 0.75rem;
}
.vs-code-text {
  flex-grow: 1;
  word-break: break-all;
}

/* Floating overlaps */
.vs-floating-card-1 {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 210px;
  padding: 1rem;
  background: rgba(22, 22, 38, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), var(--vs-glow-purple);
  z-index: 3;
  animation: vs-float-slow 6s ease-in-out infinite alternate;
}

.vs-floating-card-2 {
  position: absolute;
  bottom: -8%;
  left: -8%;
  width: 230px;
  padding: 1rem;
  background: rgba(10, 10, 18, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), var(--vs-glow-blue);
  z-index: 3;
  animation: vs-float-slow 7s ease-in-out infinite alternate-reverse;
  animation-delay: -2s;
}

/* Glowing horizon bar */
.vs-hero-horizon {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vs-purple-500), var(--vs-blue-500), var(--vs-purple-500), transparent);
  box-shadow: 
    0 -5px 25px rgba(139, 92, 246, 0.3),
    0 -15px 60px rgba(59, 130, 246, 0.2);
  pointer-events: none;
  z-index: 2;
}

/* Trusted by section at bottom of hero */
.vs-hero-trusted {
  width: 100%;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.vs-hero-trusted-title {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--vs-text-muted);
  font-weight: 700;
}

.vs-hero-trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 5vw, 4.5rem);
  flex-wrap: wrap;
  opacity: 0.45;
  transition: var(--vs-transition);
}

.vs-hero-trusted-logos:hover {
  opacity: 0.75;
}

.vs-hero-trusted-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vs-text-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Responsiveness overrides */
@media (max-width: 1024px) {
  .vs-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .vs-hero-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
  
  .vs-hero-container {
    min-height: auto;
  }
  
  .vs-hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .vs-hero-ctas {
    justify-content: center;
  }
  
  .vs-floating-card-1 {
    right: 5%;
  }
  
  .vs-floating-card-2 {
    left: 5%;
  }
  
  .vs-floating-icon {
    display: none; /* Hide floating abstract icons on tablet/mobile to keep it clean */
  }
  
  .vs-hero-trusted {
    margin-top: 3rem;
  }
}

/* Animations keys */
@keyframes vs-aurora-move-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.1); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

@keyframes vs-aurora-move-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 40px) scale(0.95); }
  100% { transform: translate(40px, -20px) scale(1.05); }
}

@keyframes vs-stars-twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@keyframes vs-float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}



/* ─── Buttons ─── */
.vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--vs-radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: var(--vs-transition);
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.vs-btn-primary {
  background: var(--vs-gradient-cta);
  color: #ffffff;
  box-shadow: var(--vs-glow-button);
}

.vs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 40px rgba(124, 58, 237, 0.55);
}

.vs-btn-primary:active {
  transform: translateY(0);
}

.vs-btn-secondary {
  background: transparent;
  color: var(--vs-text-primary);
  border: 1px solid var(--vs-border-hover);
}

.vs-btn-secondary:hover {
  border-color: var(--vs-purple-500);
  background: rgba(139, 92, 246, 0.08);
  color: var(--vs-purple-300);
}

.vs-btn-ghost {
  background: transparent;
  color: var(--vs-purple-400);
  padding: 0.5rem 1rem;
}

.vs-btn-ghost:hover {
  background: rgba(139, 92, 246, 0.08);
}

/* Existing button overrides (for contact form etc.) */
.lk.gh, .ek.jk.lk.gh,
button.vc.rg.lk.gh {
  background: var(--vs-gradient-cta) !important;
  border: none !important;
  box-shadow: var(--vs-glow-button) !important;
  transition: var(--vs-transition) !important;
  border-radius: var(--vs-radius-full) !important;
}

.lk.gh:hover, .ek.jk.lk.gh:hover,
button.vc.rg.lk.gh:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 40px rgba(124, 58, 237, 0.55) !important;
}


/* ─── Cards ─── */
.vs-card {
  background: var(--vs-bg-card);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-lg);
  padding: 2rem;
  transition: var(--vs-transition);
  position: relative;
  overflow: hidden;
}

.vs-card:hover {
  border-color: var(--vs-border-purple);
  background: var(--vs-bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--vs-glow-purple);
}

.vs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vs-purple-500), transparent);
  opacity: 0;
  transition: var(--vs-transition);
}

.vs-card:hover::before {
  opacity: 0.5;
}

/* Glass Card Variant */
.vs-glass-card {
  background: var(--vs-glass-bg);
  backdrop-filter: var(--vs-glass-blur);
  -webkit-backdrop-filter: var(--vs-glass-blur);
  border: 1px solid var(--vs-glass-border);
  border-radius: var(--vs-radius-lg);
  padding: 2rem;
  transition: var(--vs-transition);
}

.vs-glass-card:hover {
  border-color: var(--vs-border-purple);
  box-shadow: var(--vs-glow-purple);
}

/* Override existing card styles */
.sg.oi.pi, .sg.vk.rm.xm,
.sg.vk {
  background: var(--vs-bg-card) !important;
  border: 1px solid var(--vs-border) !important;
  border-radius: var(--vs-radius-lg) !important;
  transition: var(--vs-transition) !important;
}

.sg.oi.pi:hover, .sg.vk.rm.xm:hover,
.sg.vk:hover {
  border-color: var(--vs-border-purple) !important;
  background: var(--vs-bg-card-hover) !important;
  transform: translateY(-4px);
  box-shadow: var(--vs-glow-purple) !important;
}

/* Service cards */
.sg.oi.pi.zq {
  background: var(--vs-bg-card) !important;
  border: 1px solid var(--vs-border) !important;
  border-radius: var(--vs-radius-lg) !important;
  padding: 2rem !important;
  transition: var(--vs-transition) !important;
  position: relative;
  overflow: hidden;
}

.sg.oi.pi.zq:hover {
  border-color: var(--vs-border-purple) !important;
  background: var(--vs-bg-card-hover) !important;
  transform: translateY(-4px);
  box-shadow: var(--vs-glow-purple) !important;
}

.sg.oi.pi.zq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vs-gradient-mixed);
  opacity: 0;
  transition: var(--vs-transition);
}

.sg.oi.pi.zq:hover::before {
  opacity: 1;
}


/* ─── Section Styling ─── */
.vs-section {
  padding: var(--vs-section-py) 0;
  position: relative;
}

.vs-section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.vs-section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.vs-section-title p {
  font-size: 1.125rem;
  color: var(--vs-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Override existing section backgrounds */
section.i.pg.fh.rm,
section.pg.fh,
.fh.rm {
  background: var(--vs-bg-secondary) !important;
}

section.ji.gp.uq,
section.lj,
.ji.gp {
  background: var(--vs-bg-primary) !important;
}

section.gj {
  background: var(--vs-bg-primary) !important;
}

/* Section separator glow */
.vs-section-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vs-purple-600), transparent);
  opacity: 0.3;
}


/* ─── Feature Icons ─── */
.vs-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vs-radius);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.2);
  flex-shrink: 0;
}

/* Override existing icon containers */
.tc.wf.xf.cf.ae.cd.rg {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1)) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
}


/* ─── Form Inputs ─── */
.vs-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--vs-bg-card);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius);
  color: var(--vs-text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  transition: var(--vs-transition);
  outline: none;
}

.vs-input:focus {
  border-color: var(--vs-purple-500);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.vs-input::placeholder {
  color: var(--vs-text-muted);
}

/* Override existing form inputs */
input.vd.ph.sg, textarea.vd.ph.sg {
  background: var(--vs-bg-card) !important;
  border: 1px solid var(--vs-border) !important;
  border-radius: var(--vs-radius) !important;
  color: var(--vs-text-primary) !important;
  transition: var(--vs-transition) !important;
}

input.vd.ph.sg:focus, textarea.vd.ph.sg:focus {
  border-color: var(--vs-purple-500) !important;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
  outline: none !important;
}

input.vd.ph.sg::-moz-placeholder, textarea.vd.ph.sg::-moz-placeholder {
  color: var(--vs-text-muted) !important;
}

input.vd.ph.sg::placeholder, textarea.vd.ph.sg::placeholder {
  color: var(--vs-text-muted) !important;
}


/* ─── Blog Cards ─── */
.sg.vk.rm.xm .yh {
  background: var(--vs-bg-card) !important;
}

.sg.vk.rm.xm img.w-full {
  border-radius: var(--vs-radius-lg) var(--vs-radius-lg) 0 0;
}


/* ─── Contact Section ─── */
.animate_top.w-full.mn\/5.to\/3.vk.sg,
.animate_top.w-full.nn\/5.vo\/3.vk.sg {
  background: var(--vs-bg-card) !important;
  border: 1px solid var(--vs-border) !important;
  border-radius: var(--vs-radius-lg) !important;
}

/* Contact info section */
section#support {
  background: var(--vs-bg-secondary) !important;
}

section#support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vs-purple-600), transparent);
  opacity: 0.3;
}

/* Social media link buttons */
.c.tc.wf.xf.ie.ld.rg.ml.il.tl {
  border: 1px solid var(--vs-border) !important;
  transition: var(--vs-transition) !important;
}

.c.tc.wf.xf.ie.ld.rg.ml.il.tl:hover {
  border-color: var(--vs-purple-500) !important;
  background: rgba(139, 92, 246, 0.1) !important;
}

.c.tc.wf.xf.ie.ld.rg.ml.il.tl svg {
  fill: var(--vs-text-secondary);
  transition: var(--vs-transition);
}

.c.tc.wf.xf.ie.ld.rg.ml.il.tl:hover svg {
  fill: var(--vs-purple-400);
}


/* ─── Footer ─── */
.vs-footer {
  background: var(--vs-bg-primary);
  border-top: 1px solid var(--vs-border);
  padding: 4rem 0 2rem;
}

.vs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.vs-footer-brand p {
  color: var(--vs-text-secondary);
  margin-top: 1rem;
  line-height: 1.7;
}

.vs-footer h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vs-text-primary) !important;
  margin-bottom: 1.25rem;
}

.vs-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-footer ul li {
  margin-bottom: 0.75rem;
}

.vs-footer ul li a {
  color: var(--vs-text-secondary);
  text-decoration: none;
  transition: var(--vs-transition-fast);
  font-size: 0.9375rem;
}

.vs-footer ul li a:hover {
  color: var(--vs-purple-400);
}

.vs-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--vs-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.vs-footer-bottom p {
  color: var(--vs-text-muted);
  font-size: 0.875rem;
}

.vs-footer-socials {
  display: flex;
  gap: 0.75rem;
}

.vs-footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--vs-radius-sm);
  border: 1px solid var(--vs-border);
  color: var(--vs-text-secondary);
  transition: var(--vs-transition);
}

.vs-footer-socials a:hover {
  border-color: var(--vs-purple-500);
  color: var(--vs-purple-400);
  background: rgba(139, 92, 246, 0.08);
}

.vs-footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Override existing footer bottom */
footer .bh.ch.pm {
  background: var(--vs-bg-primary) !important;
  border-top: 1px solid var(--vs-border) !important;
}

@media (max-width: 768px) {
  .vs-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .vs-footer-grid {
    grid-template-columns: 1fr;
  }
  .vs-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ─── Back to Top Button ─── */
button.xc.wf.xf.ie.ld.vg {
  background: var(--vs-gradient-cta) !important;
  border: none !important;
  box-shadow: var(--vs-glow-button) !important;
  border-radius: var(--vs-radius) !important;
  transition: var(--vs-transition) !important;
}

button.xc.wf.xf.ie.ld.vg:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 40px rgba(124, 58, 237, 0.55) !important;
}

button.xc.wf.xf.ie.ld.vg svg {
  fill: #ffffff;
}


/* ─── Products Section ─── */
.vs-product-card {
  background: var(--vs-bg-card);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  transition: var(--vs-transition);
  position: relative;
  overflow: hidden;
}

.vs-product-card:hover {
  border-color: var(--vs-border-purple);
  box-shadow: var(--vs-glow-purple);
}

.vs-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vs-gradient-mixed);
  opacity: 0.6;
}

.vs-product-logo {
  width: 100px;
  height: 100px;
  border-radius: var(--vs-radius-lg);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.vs-product-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.vs-product-info p {
  color: var(--vs-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vs-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--vs-radius-full);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .vs-product-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }
}


/* ─── FAQ Accordion ─── */
.vs-faq-item {
  background: var(--vs-bg-card);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--vs-transition);
}

.vs-faq-item:hover {
  border-color: var(--vs-border-hover);
}

.vs-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--vs-text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: var(--vs-transition);
}

.vs-faq-question:hover {
  color: var(--vs-purple-300);
}

.vs-faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--vs-text-muted);
}

.vs-faq-item.active .vs-faq-question svg {
  transform: rotate(180deg);
  color: var(--vs-purple-400);
}

.vs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.vs-faq-item.active .vs-faq-answer {
  max-height: 500px;
}

.vs-faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--vs-text-secondary);
  line-height: 1.7;
}


/* ─── Turfify Product Page Specifics ─── */
.vs-turfify-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #040408;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 50px;
}

/* Stadium lights simulation */
.vs-stadium-light-left {
  position: absolute;
  top: -15%;
  left: -5%;
  width: 500px;
  height: 600px;
  background: radial-gradient(ellipse at top left, rgba(52, 211, 153, 0.15) 0%, transparent 70%);
  transform: rotate(-15deg);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.vs-stadium-light-right {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 500px;
  height: 600px;
  background: radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  transform: rotate(15deg);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

/* Field inspired lines & grid */
.vs-field-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(52, 211, 153, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 211, 153, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.vs-field-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(52, 211, 153, 0.03);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Emerald mesh aurora */
.vs-aurora-emerald {
  position: absolute;
  top: 25%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 75%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: vs-aurora-move-1 25s infinite alternate ease-in-out;
}

/* Sports icons badges */
.vs-sports-badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 25, 20, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(52, 211, 153, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 3;
  font-size: 1.125rem;
  animation: vs-float-slow 6s ease-in-out infinite;
}

/* Smartphone illustration */
.vs-phone-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9/19;
  z-index: 2;
  margin: 0 auto;
}

.vs-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 480px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.vs-phone-body {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border: 10px solid #1a1a24;
  border-radius: 40px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.8),
    0 0 0 2px rgba(255, 255, 255, 0.05),
    inset 0 0 4px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Speaker notch */
.vs-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 18px;
  background: #1a1a24;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

/* Inside simulated app screens */
.vs-phone-screen {
  flex-grow: 1;
  background: #06090d;
  padding: 24px 14px 14px;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.vs-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.vs-app-loc {
  font-size: 0.6875rem;
  color: var(--vs-text-secondary);
}

.vs-app-search {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.6875rem;
  color: var(--vs-text-muted);
  text-align: left;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vs-app-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 0.75rem;
  text-align: left;
}

.vs-app-card-img {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #0f1c1a, #0b1a2d);
  border-radius: 8px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.vs-app-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.vs-app-card-meta {
  font-size: 0.625rem;
  color: var(--vs-text-secondary);
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

.vs-app-btn {
  background: #10b981;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  border-radius: 6px;
  margin-top: 6px;
}

/* Floating overlay widgets */
.vs-phone-widget {
  position: absolute;
  padding: 8px 12px;
  background: rgba(10, 20, 15, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(52, 211, 153, 0.1);
  z-index: 3;
}

.vs-widget-booking {
  top: 8%;
  left: -22%;
  width: 150px;
  animation: vs-float-slow 5s ease-in-out infinite alternate;
}

.vs-widget-availability {
  top: 30%;
  right: -24%;
  width: 160px;
  animation: vs-float-slow 6s ease-in-out infinite alternate-reverse;
  animation-delay: -1s;
}

.vs-widget-match {
  bottom: 12%;
  left: -24%;
  width: 160px;
  animation: vs-float-slow 7s ease-in-out infinite alternate;
  animation-delay: -2s;
}

.vs-widget-ai {
  bottom: 28%;
  right: -22%;
  width: 155px;
  animation: vs-float-slow 5.5s ease-in-out infinite alternate-reverse;
  animation-delay: -3s;
}

/* Trusted rating and stats styles */
.vs-trust-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.vs-avatar-group {
  display: flex;
  align-items: center;
}

.vs-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #040408;
  margin-left: -8px;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: #fff;
  font-weight: 700;
}

.vs-avatar:first-child {
  margin-left: 0;
}

/* Quick features list under hero content */
.vs-hero-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  max-width: 500px;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.vs-hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--vs-text-secondary);
}

.vs-hero-feature-item svg {
  color: #10b981;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .vs-turfify-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .vs-hero-features-list {
    margin-left: auto;
    margin-right: auto;
  }
  
  .vs-trust-row {
    justify-content: center;
  }
  
  .vs-widget-booking { left: 2%; }
  .vs-widget-availability { right: 2%; }
  .vs-widget-match { left: 2%; }
  .vs-widget-ai { right: 2%; }
  
  .vs-sports-badge {
    display: none;
  }
}


.vs-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vs-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.vs-screenshot-placeholder {
  aspect-ratio: 9/16;
  max-height: 400px;
  background: var(--vs-bg-card);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--vs-text-muted);
  gap: 0.75rem;
  transition: var(--vs-transition);
}

.vs-screenshot-placeholder:hover {
  border-color: var(--vs-border-purple);
}

.vs-screenshot-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.vs-benefit-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--vs-bg-card);
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius-md);
  transition: var(--vs-transition);
}

.vs-benefit-card:hover {
  border-color: var(--vs-border-purple);
  transform: translateY(-2px);
}

.vs-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--vs-radius);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(52, 211, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.vs-cta-section {
  background: var(--vs-bg-secondary);
  padding: var(--vs-section-py) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.vs-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 60%);
  pointer-events: none;
}


/* ─── Keyframe Animations ─── */
@keyframes vs-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vs-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vs-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes vs-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes vs-slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes vs-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes vs-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.2); }
  50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.4); }
}

@keyframes vs-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes vs-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes vs-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animation utility classes */
.vs-animate-fade-up {
  animation: vs-fadeInUp 0.6s ease-out forwards;
}

.vs-animate-fade-in {
  animation: vs-fadeIn 0.5s ease-out forwards;
}

.vs-animate-slide-left {
  animation: vs-slideInLeft 0.6s ease-out forwards;
}

.vs-animate-slide-right {
  animation: vs-slideInRight 0.6s ease-out forwards;
}

.vs-animate-float {
  animation: vs-float 6s ease-in-out infinite;
}

.vs-animate-glow {
  animation: vs-glow 3s ease-in-out infinite;
}

/* Staggered animation delays */
.vs-delay-100 { animation-delay: 0.1s; }
.vs-delay-200 { animation-delay: 0.2s; }
.vs-delay-300 { animation-delay: 0.3s; }
.vs-delay-400 { animation-delay: 0.4s; }
.vs-delay-500 { animation-delay: 0.5s; }
.vs-delay-600 { animation-delay: 0.6s; }


/* ─── Scroll Reveal (Intersection Observer) ─── */
.vs-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vs-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ─── Responsive Container ─── */
.vs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--vs-container-px);
}

.vs-container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--vs-container-px);
}

.vs-container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--vs-container-px);
}


/* ─── Utility Classes ─── */
.vs-text-gradient {
  background: var(--vs-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-border-glow {
  border: 1px solid var(--vs-border-purple);
  box-shadow: var(--vs-glow-purple);
}

.vs-divider {
  height: 1px;
  background: var(--vs-border);
  margin: 2rem 0;
}

.vs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--vs-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.vs-badge-purple {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--vs-purple-300);
}

.vs-badge-blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--vs-blue-300);
}

.vs-badge-green {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: #34d399;
}

.vs-text-center { text-align: center; }
.vs-text-left { text-align: left; }
.vs-mt-0 { margin-top: 0; }
.vs-mb-1 { margin-bottom: 0.5rem; }
.vs-mb-2 { margin-bottom: 1rem; }
.vs-mb-3 { margin-bottom: 1.5rem; }
.vs-mb-4 { margin-bottom: 2rem; }
.vs-mb-6 { margin-bottom: 3rem; }
.vs-mb-8 { margin-bottom: 4rem; }
.vs-pt-header { padding-top: 5rem; }


/* ─── Dark mode image shapes override ─── */
.b img[src*="shape-"],
.eh img[src*="shape-"] {
  opacity: 0.3;
}

/* Hide hero image in dark theme (we use gradient bg instead) */
section.gj img[src="images/hero.png"] {
  opacity: 0.15;
  mix-blend-mode: luminosity;
}

/* Fix shape overlays to be more subtle */
section img[src*="shape-12"],
section img[src*="shape-13"],
section img[src*="shape-15"],
section img[src*="shape-16"],
section img[src*="shape-18"] {
  opacity: 0.08 !important;
}


/* ─── Scrollbar Styling ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--vs-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--vs-bg-elevated);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--vs-purple-700);
}


/* ─── Selection Color ─── */
::selection {
  background: rgba(139, 92, 246, 0.3);
  color: var(--vs-text-primary);
}

::-moz-selection {
  background: rgba(139, 92, 246, 0.3);
  color: var(--vs-text-primary);
}
