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

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg-dark: #000000;
  --bg-card: #08080c;
  --bg-card-hover: #0e0e15;
  --border-color: rgba(255, 255, 255, 0.05);
  --border-color-hover: rgba(255, 255, 255, 0.12);
  
  --accent-gold: #ffb700;
  --accent-blue: #2563eb;
  
  /* Remapped old variables to new brand colors so existing classes inherit automatically */
  --accent-purple: var(--accent-gold);
  --accent-pink: #ffd166;
  --accent-cyan: var(--accent-blue);
  
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-yellow: var(--accent-gold);
  
  --gradient-primary: linear-gradient(135deg, var(--accent-gold) 0%, #ffd166 100%);
  --gradient-dark: linear-gradient(180deg, #0e0e15 0%, #040406 100%);
  --gradient-glow: radial-gradient(circle, rgba(255, 183, 0, 0.12) 0%, transparent 70%);
  
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #4b5563;
  
  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  
  --glow-purple: 0 0 35px rgba(255, 183, 0, 0.25);
  --glow-pink: 0 0 35px rgba(255, 209, 102, 0.15);
  --glow-cyan: 0 0 35px rgba(37, 99, 235, 0.25);
  --glow-green: 0 0 30px rgba(16, 185, 129, 0.2);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & GLOBAL STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1b1b26;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2b2b3a;
}

/* --- BACKGROUND STYLING --- */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  background-position: center center;
  z-index: -3;
  pointer-events: none;
}

.bg-glow-orb-1 {
  position: fixed;
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
  filter: blur(100px);
  animation: floatOrb 25s infinite alternate ease-in-out;
}

.bg-glow-orb-2 {
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.06) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
  filter: blur(100px);
  animation: floatOrb 30s infinite alternate-reverse ease-in-out;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8%, 8%) scale(1.15); }
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.text-gradient-cyan {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(12, 12, 17, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
}

.section-padding {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

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

.badge-glow {
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.15); }
  100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.35); }
}

/* --- BUTTON STYLES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  box-shadow: var(--glow-purple);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.45);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: white;
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 8px;
}

/* --- STICKY NAVIGATION BAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(6, 6, 9, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.8rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.50rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: inline-block;
  box-shadow: var(--glow-pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: rgba(6, 6, 9, 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-color);
  z-index: 99;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}

.mobile-menu.open {
  height: calc(100vh - 70px);
  padding: 2rem 1.5rem;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mobile-links a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.mobile-links a:hover {
  color: white;
  padding-left: 0.5rem;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding: 10rem 0 6rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero {
    padding: 8rem 0 4rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .hero-content {
    align-items: center;
  }
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

.hero-subheadline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .hero-subheadline {
    font-size: 1rem;
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust-platforms {
  display: flex;
  gap: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  font-family: var(--font-heading);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Beautiful Interactive CSS Mockup representing a video editor's workspace */
.mockup-container {
  width: 100%;
  max-width: 480px;
  height: 380px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(217, 70, 239, 0.1) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--glow-purple);
  position: relative;
}

.mockup-workspace {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border-radius: 19px;
  overflow: hidden;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.mockup-dots {
  display: flex;
  gap: 0.35rem;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-dot.active {
  background: var(--accent-purple);
}

.mockup-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mockup-editor {
  flex-grow: 1;
  display: grid;
  grid-template-rows: 1.2fr 0.8fr;
  gap: 1rem;
}

.mockup-preview-window {
  background: #060609;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-video-clip {
  width: 80%;
  height: 70%;
  border-radius: 8px;
  background: linear-gradient(45deg, #180d2b 0%, #2f123f 100%);
  border: 1px dashed rgba(139, 92, 246, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mockup-video-clip::before {
  content: 'VIRAL_CLIP_01.MP4';
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-purple);
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
}

.mockup-overlay-preset {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(6, 6, 9, 0.8);
  border: 1px solid var(--accent-pink);
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
  font-size: 0.6rem;
  color: var(--accent-pink);
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: 0 0 10px rgba(217, 70, 239, 0.3);
  animation: pulseBorder 1.5s infinite alternate;
}

@keyframes pulseBorder {
  0% { box-shadow: 0 0 5px rgba(217, 70, 239, 0.2); }
  100% { box-shadow: 0 0 15px rgba(217, 70, 239, 0.5); }
}

.mockup-waveform-sec {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem;
}

.mockup-waveform-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
}

.mockup-waveform-name {
  color: var(--text-secondary);
  font-weight: 500;
}

.mockup-waveform-time {
  color: var(--accent-cyan);
  font-weight: 600;
}

.mockup-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 25px;
}

.mockup-bar {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.mockup-bar.active {
  background: linear-gradient(180deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
}

.floating-badge {
  position: absolute;
  background: rgba(12, 12, 17, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color-hover);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: all var(--transition-normal);
}

.floating-badge:hover {
  transform: translateY(-5px);
  border-color: var(--accent-purple);
}

.badge-1 {
  top: -20px;
  right: -20px;
}

.badge-2 {
  bottom: 20px;
  left: -40px;
}

@media (max-width: 576px) {
  .floating-badge {
    display: none;
  }
}

.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon.purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
}

.badge-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.badge-value {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* --- STATS BAR --- */
.stats-bar {
  background: rgba(12, 12, 17, 0.5);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
  backdrop-filter: blur(10px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- PROBLEM SECTION --- */
.problem {
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-red);
  opacity: 0.6;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.2);
  background: var(--bg-card-hover);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- WHAT'S INSIDE (FEATURE GRID) --- */
.features {
  background: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.25rem;
  transition: all var(--transition-normal);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-purple);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.05);
  background: var(--bg-card-hover);
}

.feature-card.highlight::before {
  content: 'HOT';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: var(--font-heading);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--glow-purple);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- BEFORE VS AFTER --- */
.comparison {
  background: rgba(12, 12, 17, 0.3);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

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

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comparison-card.before {
  border-color: rgba(239, 68, 68, 0.15);
}

.comparison-card.after {
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.03);
}

.comparison-card.after::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  border-radius: 20px;
  pointer-events: none;
}

.comparison-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.comparison-label {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
}

.comparison-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.before .comparison-tag {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.after .comparison-tag {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.comparison-item-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

.before .comparison-item-text {
  text-decoration: line-through;
  opacity: 0.7;
}

.after .comparison-item-text {
  color: white;
}

.comparison-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.before .comparison-check {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
}

.after .comparison-check {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
}

/* --- PRICING SECTION --- */
.pricing {
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  align-items: stretch;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.popular {
  border: 1px solid transparent;
  background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--gradient-primary);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: var(--glow-purple);
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .pricing-card.popular {
    transform: none;
  }
}

.pricing-card.popular:hover {
  box-shadow: 0 0 45px rgba(139, 92, 246, 0.4);
}

.pricing-popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: var(--glow-pink);
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  min-height: 44px;
}

.pricing-price-container {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-divider {
  height: 1px;
  background: var(--border-color);
  margin-bottom: 2rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-feature-icon {
  color: var(--accent-purple);
  flex-shrink: 0;
}

.pricing-card.popular .pricing-feature-icon {
  color: var(--accent-pink);
}

.pricing-btn {
  width: 100%;
}

/* --- EARN WHILE YOU SHARE (AFFILIATE) --- */
.affiliate {
  position: relative;
}

.affiliate-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .affiliate-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.affiliate-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.affiliate h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
  .affiliate h2 {
    font-size: 2rem;
  }
}

.affiliate p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.affiliate-perks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.affiliate-perk-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.affiliate-perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.affiliate-perk-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Calculator Style */
.calculator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.calculator-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.calculator-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.calculator-slider-container {
  margin-bottom: 2.5rem;
}

.calculator-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.calculator-val-display {
  color: var(--accent-cyan);
  font-size: 1.25rem;
}

/* Custom styled range input */
.calculator-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1b1b26;
  outline: none;
  transition: background 0.3s ease;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 4px solid var(--bg-card);
  cursor: pointer;
  box-shadow: var(--glow-cyan);
  transition: transform 0.1s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calculator-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 4px solid var(--bg-card);
  cursor: pointer;
  box-shadow: var(--glow-cyan);
  transition: transform 0.1s ease;
}

.calculator-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.calculator-results {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.calculator-earnings-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
  line-height: 1;
  text-shadow: var(--glow-cyan);
}

.calculator-earnings-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- FAQ SECTION --- */
.faq {
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--bg-card-hover);
}

.faq-item.active {
  border-color: var(--accent-purple);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.03);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
}

.faq-icon-wrapper {
  color: var(--text-secondary);
  transition: transform var(--transition-normal), color var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(180deg);
  color: var(--accent-purple);
}

.faq-answer-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- FINAL CTA SECTION --- */
.cta-section {
  position: relative;
  text-align: center;
  padding: 10rem 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
  filter: blur(50px);
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section h2 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .cta-section h2 {
    font-size: 2.25rem;
  }
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

@media (max-width: 576px) {
  .cta-desc {
    font-size: 1.1rem;
  }
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    padding: 0 2rem;
  }
}

.cta-urgency {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-pink);
  border-radius: 50%;
  display: inline-block;
  box-shadow: var(--glow-pink);
  animation: pulsePink 1.5s infinite alternate;
}

@keyframes pulsePink {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; }
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0;
  background: #040406;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 2rem;
  width: 100%;
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- HIGH-END UI ANIMATIONS & lead magnet STYLES --- */

/* Live Clippers Bar */
.live-clippers-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
}

.live-clippers-bar:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

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

@keyframes pulseGreen {
  0% { transform: scale(0.85); opacity: 0.6; box-shadow: 0 0 5px var(--accent-green); }
  100% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 15px var(--accent-green); }
}

/* Rotating Neon Border Override for Popular Card */
.pricing-card.popular {
  border: none !important;
  background: var(--bg-card);
  z-index: 1;
}

.pricing-card.popular::after {
  content: '';
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  right: -1.5px;
  bottom: -1.5px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-cyan), var(--accent-purple));
  background-size: 300% 300%;
  border-radius: 20px;
  z-index: -2;
  animation: rotateBorder 8s linear infinite;
  opacity: 0.85;
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: var(--bg-card);
  border-radius: 19px;
  z-index: -1;
  transition: background var(--transition-normal);
}

.pricing-card.popular:hover::before {
  background: var(--bg-card-hover);
}

@keyframes rotateBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Tilt and Scale transformations for pricing cards */
.pricing-grid {
  perspective: 1200px;
}

.pricing-card {
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02) translateZ(10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(139, 92, 246, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
}

.pricing-card.popular:hover {
  transform: translateY(-12px) scale(1.04) translateZ(15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(139, 92, 246, 0.3), 0 0 90px rgba(217, 70, 239, 0.15);
}

/* Problem cards enhanced transition */
.problem-grid {
  perspective: 1000px;
}

.problem-card {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card:hover {
  transform: translateY(-5px) translateZ(5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(239, 68, 68, 0.08);
}

/* Feature cards enhanced transition */
.feature-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(139, 92, 246, 0.08);
}

/* Urgency Countdown timer styles */
.urgency-timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: rgba(217, 70, 239, 0.04);
  border: 1px dashed rgba(217, 70, 239, 0.25);
  padding: 0.65rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  animation: timerPulse 2s infinite alternate ease-in-out;
}

@keyframes timerPulse {
  0% { border-color: rgba(217, 70, 239, 0.2); background: rgba(217, 70, 239, 0.02); }
  100% { border-color: rgba(217, 70, 239, 0.45); background: rgba(217, 70, 239, 0.06); }
}

.timer-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-pink);
  letter-spacing: 0.1em;
}

.timer-clock {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: white;
}

.timer-clock span {
  color: var(--accent-pink);
  text-shadow: 0 0 10px rgba(217, 70, 239, 0.3);
}

/* Background particle animation */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-purple);
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.5px);
  animation: floatUp 16s linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(105vh) translateX(0); opacity: 0; }
  10% { opacity: 0.2; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-5vh) translateX(60px); opacity: 0; }
}

/* Native Checkout Loader */
.checkout-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 6, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-loader-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.checkout-loader-box {
  background: #0a0a0f;
  border: 1px solid var(--border-color-hover);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), var(--glow-purple);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.checkout-loader-overlay.active .checkout-loader-box {
  transform: scale(1);
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.05);
  border-top: 4px solid var(--accent-purple);
  border-radius: 50%;
  animation: spin 0.9s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.checkout-loader-box h3 {
  font-size: 1.3rem;
  color: white;
  font-family: var(--font-heading);
}

.checkout-loader-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Toast Social Proof Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(139, 92, 246, 0.05);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transform: translateY(100px) scale(0.9);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  pointer-events: none;
  max-width: 320px;
}

.toast-notification.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  box-shadow: var(--glow-pink);
}

.toast-body {
  display: flex;
  flex-direction: column;
}

.toast-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  line-height: 1.35;
}

.toast-desc {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 0.1rem;
}

@media (max-width: 576px) {
  .toast-notification {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}



/* --- OVERHAULED FEATURES GRID SYSTEM --- */
.features-grid-overhaul {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .features-grid-overhaul {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.vault-pillar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.vault-pillar:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--bg-card-hover);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.25rem;
}

.pillar-icon {
  font-size: 1.5rem;
}

.pillar-header h3 {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: white;
}

body.light-mode .pillar-header h3 {
  color: #0f172a;
}

/* Pillar 1: Core Cards */
.pillar-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  justify-content: center;
}

.pillar-card {
  display: flex;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 16px;
  transition: all var(--transition-normal);
}

body.light-mode .pillar-card {
  background: rgba(15, 23, 42, 0.015);
}

.pillar-card:hover {
  transform: translateY(-3px);
}

.pillar-card.highlight-blue:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.12);
}

.pillar-card.highlight-gold:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(255, 183, 0, 0.12);
}

.pillar-card-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.pillar-card-content h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

body.light-mode .pillar-card-content h4 {
  color: #0f172a;
}

.pillar-card-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Pillar 2: Sub Bonus Grid */
.pillar-grid-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 576px) {
  .pillar-grid-sub {
    grid-template-columns: 1fr;
  }
}

.sub-pack-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all var(--transition-normal);
}

body.light-mode .sub-pack-card {
  background: rgba(15, 23, 42, 0.015);
}

.sub-pack-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(255, 183, 0, 0.1);
}

.sub-pack-icon {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.sub-pack-card h4 {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

body.light-mode .sub-pack-card h4 {
  color: #0f172a;
}

.sub-pack-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Pillar 3: Specs List */
.specs-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  height: 100%;
  justify-content: center;
}

.specs-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.spec-bullet {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

body.light-mode .spec-bullet {
  background: rgba(15, 23, 42, 0.02);
}

.spec-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.spec-text strong {
  font-size: 0.95rem;
  color: white;
}

body.light-mode .spec-text strong {
  color: #0f172a;
}

.spec-text span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* --- DYNAMIC SCROLL PROGRESS BAR --- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* --- MOTION TYPOGRAPHY: CINEMATIC TEXT MASK --- */
.text-mask-trigger {
  display: flex;
  flex-direction: column;
}

.text-mask-line {
  display: block;
  overflow: hidden;
  line-height: 1.15;
  padding-bottom: 0.12em;
}

.text-mask-line span {
  display: block;
  transform: translateY(110%);
  animation: slideUpMask 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}

.text-mask-line:nth-child(1) span { animation-delay: 0.08s; }
.text-mask-line:nth-child(2) span { animation-delay: 0.22s; }
.text-mask-line:nth-child(3) span { animation-delay: 0.36s; }

@keyframes slideUpMask {
  0% { transform: translateY(110%); }
  100% { transform: translateY(0); }
}

/* --- HERO MOCKUP WORKSPACE OVERHAUL --- */
.mockup-editor {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 0.85rem !important;
  height: auto !important;
}

@media (max-width: 576px) {
  .mockup-editor {
    grid-template-columns: 1fr !important;
  }
  .mockup-chat-panel {
    display: none !important;
  }
}

.mockup-main-panel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mockup-chat-panel {
  background: rgba(255, 255, 255, 0.008);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.mockup-chat-header {
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem;
  font-size: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  text-align: center;
}

.mockup-chat-messages {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: hidden;
  flex-grow: 1;
  max-height: 200px;
  position: relative;
}

.chat-msg {
  font-size: 0.65rem;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  opacity: 0;
  transform: translateY(12px);
  animation: chatEntry 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes chatEntry {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.chat-user {
  color: var(--accent-blue);
  font-weight: 700;
  font-family: var(--font-heading);
}

.chat-text {
  color: var(--text-secondary);
}

/* --- CARD METALLIC GLARE & REFLECTIVE SHINE --- */
.pricing-card {
  position: relative;
  overflow: hidden;
}

.card-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at -50% -50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  z-index: 5;
  pointer-events: none;
  transition: background 0.15s ease;
}

/* --- DYNAMIC LOGO BUBBLES FLOAT ANIMATION --- */
.logo-bubble-1 {
  animation: logoBubbleFloat 3.5s infinite ease-in-out;
  transform-origin: center center;
}

.logo-bubble-2 {
  animation: logoBubbleFloat 2.8s infinite ease-in-out 0.8s;
  transform-origin: center center;
}

.logo-bubble-3 {
  animation: logoBubbleFloat 4s infinite ease-in-out 0.4s;
  transform-origin: center center;
}

@keyframes logoBubbleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-16px) scale(1.15); opacity: 1; fill: var(--accent-blue); }
  100% { transform: translateY(-32px) scale(0); opacity: 0; }
}

/* --- SLOW DRIFT BACKGROUND GRID MOVEMENT --- */
.bg-grid {
  animation: gridPanDrift 80s linear infinite;
  will-change: background-position;
}

@keyframes gridPanDrift {
  0% { background-position: 0 0; }
  100% { background-position: 240px 240px; }
}

/* --- NAVIGATION LINKS SLIDING UNDERLINE --- */
.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* --- CALCULATOR EARNINGS POP PULSE --- */
.calculator-earnings-num.pulse {
  animation: popValuePulse 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popValuePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); color: var(--accent-gold); text-shadow: var(--glow-purple); }
  100% { transform: scale(1); }
}

/* --- DIVERSE SCROLL REVEAL STRUCTURES --- */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-rotate {
  opacity: 0;
  transform: translateY(40px) rotateX(8deg);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-rotate.revealed {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}





