:root {
  /* Dark Mode Wealth Color Palette */
  --bg-deep: #0B0F19;
  /* Deep space black */
  --bg-surface: #111827;
  /* Slightly lighter surface for cards */
  --bg-surface-light: #1F2937;
  /* Lighter surface for hover states */
  --accent-neon-green: #10B981;
  /* Primary money/action green */
  --accent-neon-green-hover: #34D399;
  /* Lighter green for hover */
  --accent-purple: #8B5CF6;
  /* High-tech AI purple accent */
  --accent-glow: rgba(16, 185, 129, 0.4);
  /* Green glow effect */
  --text-main: #F3F4F6;
  /* Off-white for readability */
  --text-muted: #9CA3AF;
  /* Gray for secondary text */

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sizing and Spacing */
  --max-width: 1100px;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
}

/* Base Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.text-center {
  text-align: center;
}

.text-green {
  color: var(--accent-neon-green);
}

.text-purple {
  color: var(--accent-purple);
}

.glow-text-green {
  text-shadow: 0 0 20px var(--accent-glow);
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: var(--spacing-lg);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Primary Conversion Button */
.cta-button {
  display: inline-block;
  background-color: var(--accent-neon-green);
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--accent-glow);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-button:hover {
  background-color: var(--accent-neon-green-hover);
  box-shadow: 0 0 30px rgba(52, 211, 153, 0.6);
  transform: translateY(-2px);
}

/* Button Pulse Animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.cta-button.animated {
  animation: pulseGlow 2s infinite;
}

/* Sub-Headline above CTA */
.cta-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--spacing-sm);
  display: block;
}

/* Layout Blocks */
.section {
  padding: var(--spacing-2xl) 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: var(--spacing-2xl);
}

/* Ambient Background Glow */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

/* Product Image Styling */
.product-mockup {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease;
}

.product-mockup:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }
}

/* VSL / Video Sales Letter Placeholders */
.vsl-placeholder {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: var(--bg-surface);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--spacing-xl) auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  cursor: pointer;
}

.vsl-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--accent-neon-green), transparent);
  animation: scanline 4s linear infinite;
  opacity: 0.3;
  z-index: 2;
}

@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(1600%);
  }
}

.vsl-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 25, 0.4);
  z-index: 1;
}

.vsl-play-btn {
  width: 80px;
  height: 80px;
  background: var(--accent-neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 30px var(--accent-glow);
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 3;
}

.vsl-play-btn::before {
  content: '';
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--bg-deep);
  margin-left: 5px;
}

.vsl-placeholder:hover .vsl-play-btn {
  transform: scale(1.1);
  background: var(--accent-neon-green-hover);
}

.vsl-status {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-neon-green);
  z-index: 3;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-neon-green);
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}