.elementor-2622 .elementor-element.elementor-element-c5178a3{--display:flex;}.elementor-2622 .elementor-element.elementor-element-c5178a3:not(.elementor-motion-effects-element-type-background), .elementor-2622 .elementor-element.elementor-element-c5178a3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#050505;}/* Start custom CSS for html, class: .elementor-element-1435b54 */:root {
  --color-bg: #050505;
  --color-bg-alt: #0a0a0a;
  --color-primary: #8b5cf6;
  --color-secondary: #3b82f6;
  --color-text: #ffffff;
  --color-text-muted: #9ca3af;
  --color-text-dim: #6b7280;
  --color-border: rgba(255, 255, 255, 0.1);
  --gradient-primary: linear-gradient(to right, #8b5cf6, #3b82f6);
  --gradient-text: linear-gradient(to right, #a78bfa, #3b82f6);
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10; /* Above photos */
  pointer-events: auto;
}

/* Background Effects */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(88, 28, 135, 0.15) 0%,
    rgba(30, 58, 138, 0.15) 50%,
    #050505 100%
  );
}

.bg-glow-purple {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: rgba(139, 92, 246, 0.2);
  filter: blur(120px);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.2;
}

/* ============ BACKGROUND PHOTOS ============ */
.bg-photos {
  position: fixed;
  inset: 0;
  z-index: 1; /* Above background, below container */
  pointer-events: none;
  overflow: hidden;
}

.bg-photo {
  position: absolute;
  overflow: hidden;
  pointer-events: auto; /* Enable hover on individual photos */
}

.bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.3;
  transition:
    filter 0.5s ease,
    opacity 0.5s ease,
    transform 0.5s ease;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 70%
  );
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.bg-photo:hover img {
  filter: grayscale(0%);
  opacity: 0.8; /* Slightly more visible on hover */
  transform: scale(1.1);
}

/* Photo Positions - Replicated from Root LP */
.bg-photo-1 {
  top: 5%;
  left: 5%;
  width: 280px;
  height: 210px;
  transform: rotate(-5deg);
}
.bg-photo-2 {
  top: 8%;
  right: 8%;
  width: 260px;
  height: 190px;
  transform: rotate(8deg);
}
.bg-photo-3 {
  top: 35%;
  left: -2%;
  width: 300px;
  height: 230px;
  transform: rotate(3deg);
}
.bg-photo-4 {
  top: 38%;
  right: -2%;
  width: 320px;
  height: 240px;
  transform: rotate(-4deg);
}
.bg-photo-5 {
  bottom: 15%;
  left: 10%;
  width: 250px;
  height: 190px;
  transform: rotate(-7deg);
}
.bg-photo-6 {
  bottom: 10%;
  right: 15%;
  width: 240px;
  height: 180px;
  transform: rotate(6deg);
}

@media (max-width: 1024px) {
  .bg-photos {
    display: none;
  }
}

/* Progress Bar */
.progress-container {
  margin: 2rem 0;
}

.progress-wrapper {
  width: 100%;
  height: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.5s ease;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.progress-text {
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Headers */
.upsell-header {
  padding: 4rem 0 2rem;
}

.upsell-congrats {
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.upsell-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.upsell-title u {
  text-decoration-color: var(--color-primary);
}

/* VSL Player */
.vsl-section {
  margin-bottom: 4rem;
}

.vsl-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 25px 80px -12px rgba(139, 92, 246, 0.25);
}

/* Checkout Section */
.checkout-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 4rem;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.125rem;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
  box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.39);
  margin-top: 2rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(139, 92, 246, 0.23);
}

/* Glassmorphism Content */
.glass-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.content-subheadline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.content-body {
  font-size: 1.125rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.content-body p + p {
  margin-top: 1rem;
}/* End custom CSS */