:root {
  /* Enjoyscreen Clone Theme */
  --bg-primary: #090014;
  /* Deep Purple Background */
  --bg-secondary: #13002b;
  --bg-card: rgba(30, 0, 60, 0.4);

  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-highlight: #d8b4fe;

  /* Neon Accents */
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-cyan: #06b6d4;

  --gradient-main: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --gradient-hover: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);

  --border-color: rgba(139, 92, 246, 0.2);
  --border-hover: rgba(139, 92, 246, 0.5);

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-pill: 9999px;

  --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 40%);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--accent-purple);
  border-radius: 4px;
}

/* ================================================
   GLOBAL SCROLL-REVEAL ANIMATIONS
   ================================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Slide from left */
.scroll-reveal.from-left {
  transform: translateX(-60px);
}

.scroll-reveal.from-left.revealed {
  transform: translateX(0);
}

/* Slide from right */
.scroll-reveal.from-right {
  transform: translateX(60px);
}

.scroll-reveal.from-right.revealed {
  transform: translateX(0);
}

/* Scale up */
.scroll-reveal.scale-up {
  transform: scale(0.85);
}

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

/* Stagger delays */
.scroll-reveal.delay-1 {
  transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
  transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
  transition-delay: 0.3s;
}

.scroll-reveal.delay-4 {
  transition-delay: 0.4s;
}

.scroll-reveal.delay-5 {
  transition-delay: 0.5s;
}

.scroll-reveal.delay-6 {
  transition-delay: 0.6s;
}

/* Section header shared styles */
.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

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

.highlight-pink {
  color: var(--accent-pink);
}

.highlight-cyan {
  color: var(--accent-cyan);
}

.highlight-green {
  color: #22c55e;
}

.zigzag-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-main);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================================
   GLASSMORPHISM UTILITY
   ================================================ */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* ================================================
   GLOBAL RESPONSIVE
   ================================================ */
@media (max-width: 968px) {
  .container {
    padding: 0 1.5rem;
  }

  .section-header-center {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

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

  .section-header-center {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-header-center h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-header-center h2 {
    font-size: 1.5rem;
  }
}

/* === FluidGlass.css === */
/* ================================================
   FLUID GLASS BACKGROUND — Unified Across Sections
   Wraps everything except Hero & Pricing.
   ================================================ */
.fluid-glass-wrapper {
    position: relative;
    background: #07060e;
    overflow: hidden;
    isolation: isolate;
}

/* ── Fixed animated layer behind all wrapped sections ── */
.fluid-glass-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* ── Glass orbs — large morphing blobs ── */
.fg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    will-change: transform;
    mix-blend-mode: screen;
}

.fg-orb--1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(139, 92, 246, 0.03) 60%, transparent 80%);
    top: 5%;
    left: -10%;
    animation: fgOrb1 20s ease-in-out infinite;
}

.fg-orb--2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.14) 0%, rgba(236, 72, 153, 0.02) 55%, transparent 80%);
    top: 25%;
    right: -8%;
    animation: fgOrb2 24s ease-in-out infinite;
}

.fg-orb--3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0.02) 50%, transparent 75%);
    top: 50%;
    left: 15%;
    animation: fgOrb3 18s ease-in-out infinite;
}

.fg-orb--4 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.02) 50%, transparent 75%);
    top: 70%;
    right: 5%;
    animation: fgOrb4 22s ease-in-out infinite;
}

.fg-orb--5 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: fgOrb5 26s ease-in-out infinite;
}

/* ── Neon light orbs — vibrant accent glows ── */
.fg-orb--neon-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.08) 0%, rgba(57, 255, 20, 0.02) 40%, transparent 70%);
    top: 12%;
    right: -5%;
    animation: fgNeon1 16s ease-in-out infinite alternate;
}

.fg-orb--neon-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, rgba(6, 182, 212, 0.015) 45%, transparent 70%);
    top: 40%;
    left: -8%;
    animation: fgNeon2 20s ease-in-out infinite alternate;
}

.fg-orb--neon-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, rgba(251, 191, 36, 0.01) 40%, transparent 65%);
    bottom: 20%;
    right: 10%;
    animation: fgNeon3 22s ease-in-out infinite alternate;
}

/* ── Animated glass panels — floating translucent rectangles ── */
.fg-panel {
    position: absolute;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.005) 100%);
    backdrop-filter: blur(1px);
    opacity: 0.5;
    will-change: transform;
}

.fg-panel--1 {
    width: 400px;
    height: 250px;
    top: 8%;
    right: 10%;
    transform: rotate(-8deg);
    animation: fgPanel1 30s ease-in-out infinite;
}

.fg-panel--2 {
    width: 350px;
    height: 200px;
    top: 35%;
    left: 5%;
    transform: rotate(5deg);
    animation: fgPanel2 28s ease-in-out infinite;
}

.fg-panel--3 {
    width: 300px;
    height: 180px;
    top: 60%;
    right: 15%;
    transform: rotate(-3deg);
    animation: fgPanel3 32s ease-in-out infinite;
}

.fg-panel--4 {
    width: 280px;
    height: 160px;
    bottom: 15%;
    left: 20%;
    transform: rotate(7deg);
    animation: fgPanel4 25s ease-in-out infinite;
}

/* ── Flowing light streaks ── */
.fg-streak {
    position: absolute;
    height: 1px;
    border-radius: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1), transparent);
    opacity: 0.4;
}

.fg-streak--1 {
    width: 60%;
    top: 18%;
    left: -10%;
    transform: rotate(-3deg);
    animation: fgStreak1 15s ease-in-out infinite;
}

.fg-streak--2 {
    width: 50%;
    top: 45%;
    right: -10%;
    transform: rotate(2deg);
    animation: fgStreak2 18s ease-in-out infinite;
}

.fg-streak--3 {
    width: 55%;
    top: 75%;
    left: 5%;
    transform: rotate(-1deg);
    animation: fgStreak3 20s ease-in-out infinite;
}

/* ── Global noise overlay ── */
.fg-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* ================================================
   ORB ANIMATIONS — slow, organic, morphing
   ================================================ */
@keyframes fgOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(80px, 60px) scale(1.1);
    }

    50% {
        transform: translate(30px, 120px) scale(0.95);
    }

    75% {
        transform: translate(-50px, 40px) scale(1.05);
    }
}

@keyframes fgOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-60px, 80px) scale(1.08);
    }

    50% {
        transform: translate(-100px, 30px) scale(0.92);
    }

    75% {
        transform: translate(-30px, -40px) scale(1.04);
    }
}

@keyframes fgOrb3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(60px, -50px) scale(1.12);
    }

    66% {
        transform: translate(-40px, 60px) scale(0.9);
    }
}

@keyframes fgOrb4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-70px, -30px) scale(1.06);
    }

    66% {
        transform: translate(30px, 50px) scale(0.95);
    }
}

@keyframes fgOrb5 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(60px, -40px) scale(1.1);
    }
}

/* ── Panel float animations ── */
@keyframes fgPanel1 {

    0%,
    100% {
        transform: rotate(-8deg) translate(0, 0);
    }

    50% {
        transform: rotate(-5deg) translate(20px, 30px);
    }
}

@keyframes fgPanel2 {

    0%,
    100% {
        transform: rotate(5deg) translate(0, 0);
    }

    50% {
        transform: rotate(8deg) translate(-15px, -25px);
    }
}

@keyframes fgPanel3 {

    0%,
    100% {
        transform: rotate(-3deg) translate(0, 0);
    }

    50% {
        transform: rotate(-6deg) translate(30px, 15px);
    }
}

@keyframes fgPanel4 {

    0%,
    100% {
        transform: rotate(7deg) translate(0, 0);
    }

    50% {
        transform: rotate(4deg) translate(-20px, 20px);
    }
}

/* ── Streak flow animations ── */
@keyframes fgStreak1 {

    0%,
    100% {
        opacity: 0.2;
        transform: rotate(-3deg) translateX(0);
    }

    50% {
        opacity: 0.5;
        transform: rotate(-3deg) translateX(80px);
    }
}

@keyframes fgStreak2 {

    0%,
    100% {
        opacity: 0.15;
        transform: rotate(2deg) translateX(0);
    }

    50% {
        opacity: 0.4;
        transform: rotate(2deg) translateX(-60px);
    }
}

@keyframes fgStreak3 {

    0%,
    100% {
        opacity: 0.2;
        transform: rotate(-1deg) translateX(0);
    }

    50% {
        opacity: 0.45;
        transform: rotate(-1deg) translateX(50px);
    }
}

/* ── Neon orb breathing animations ── */
@keyframes fgNeon1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    100% {
        transform: translate(-40px, 30px) scale(1.15);
        opacity: 0.55;
    }
}

@keyframes fgNeon2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }

    100% {
        transform: translate(50px, -35px) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes fgNeon3 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }

    100% {
        transform: translate(-30px, -25px) scale(1.2);
        opacity: 0.45;
    }
}

/* ================================================
   Ensure all wrapped sections sit above the BG
   ================================================ */
.fluid-glass-wrapper>*:not(.fluid-glass-bg) {
    position: relative;
    z-index: 1;
}

/* === AnimatedBackground.css === */
/* ================================================
   ANIMATED BACKGROUND — Floating Orbs & Particles
   ================================================ */

.animated-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* ================================================
   FLOATING ORBS — Large, soft, glowing blobs
   ================================================ */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: orbFloat 20s ease-in-out infinite;
    will-change: transform, opacity;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: 10%;
    left: -5%;
    animation-duration: 22s;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
    top: 40%;
    right: -5%;
    animation-duration: 18s;
    animation-delay: 3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    bottom: 15%;
    left: 20%;
    animation-duration: 25s;
    animation-delay: 6s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    top: 60%;
    left: 60%;
    animation-duration: 20s;
    animation-delay: 9s;
}

.orb-5 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    top: 5%;
    right: 25%;
    animation-duration: 24s;
    animation-delay: 12s;
}

@keyframes orbFloat {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.8);
    }

    15% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
        transform: translate(60px, -40px) scale(1.2);
    }

    85% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translate(-30px, 30px) scale(0.8);
    }
}

/* ================================================
   FLOATING PARTICLES — Small, rising dots
   ================================================ */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    opacity: 0;
    animation: particleRise linear infinite;
    will-change: transform, opacity;
}

.p-1 {
    left: 8%;
    bottom: -5%;
    animation-duration: 12s;
    animation-delay: 0s;
    width: 2px;
    height: 2px;
}

.p-2 {
    left: 15%;
    bottom: -5%;
    animation-duration: 15s;
    animation-delay: 2s;
    width: 3px;
    height: 3px;
    background: rgba(139, 92, 246, 0.5);
}

.p-3 {
    left: 25%;
    bottom: -5%;
    animation-duration: 11s;
    animation-delay: 4s;
    width: 2px;
    height: 2px;
}

.p-4 {
    left: 35%;
    bottom: -5%;
    animation-duration: 14s;
    animation-delay: 1s;
    width: 4px;
    height: 4px;
    background: rgba(236, 72, 153, 0.4);
}

.p-5 {
    left: 45%;
    bottom: -5%;
    animation-duration: 16s;
    animation-delay: 5s;
    width: 2px;
    height: 2px;
}

.p-6 {
    left: 55%;
    bottom: -5%;
    animation-duration: 13s;
    animation-delay: 3s;
    width: 3px;
    height: 3px;
    background: rgba(6, 182, 212, 0.4);
}

.p-7 {
    left: 65%;
    bottom: -5%;
    animation-duration: 17s;
    animation-delay: 7s;
    width: 2px;
    height: 2px;
}

.p-8 {
    left: 75%;
    bottom: -5%;
    animation-duration: 12s;
    animation-delay: 6s;
    width: 3px;
    height: 3px;
    background: rgba(139, 92, 246, 0.4);
}

.p-9 {
    left: 85%;
    bottom: -5%;
    animation-duration: 15s;
    animation-delay: 2s;
    width: 2px;
    height: 2px;
}

.p-10 {
    left: 92%;
    bottom: -5%;
    animation-duration: 14s;
    animation-delay: 8s;
    width: 3px;
    height: 3px;
}

.p-11 {
    left: 20%;
    bottom: -5%;
    animation-duration: 18s;
    animation-delay: 10s;
    width: 2px;
    height: 2px;
    background: rgba(236, 72, 153, 0.3);
}

.p-12 {
    left: 50%;
    bottom: -5%;
    animation-duration: 20s;
    animation-delay: 12s;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.3);
}

@keyframes particleRise {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }

    10% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-110vh) translateX(30px);
    }
}

/* ================================================
   LIGHT STREAKS — Subtle horizontal sweeps
   ================================================ */
.streak {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(139, 92, 246, 0.15) 30%,
            rgba(236, 72, 153, 0.12) 70%,
            transparent 100%);
    opacity: 0;
    animation: streakSweep 10s ease-in-out infinite;
    will-change: transform, opacity;
}

.streak-1 {
    top: 30%;
    left: -100%;
    width: 60%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.streak-2 {
    top: 65%;
    right: -100%;
    width: 50%;
    animation-delay: 5s;
    animation-duration: 14s;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(6, 182, 212, 0.1) 30%,
            rgba(139, 92, 246, 0.08) 70%,
            transparent 100%);
}

@keyframes streakSweep {
    0% {
        opacity: 0;
        transform: translateX(0);
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translateX(200%);
    }
}

/* ================================================
   Performance — Reduce motion for accessibility
   ================================================ */
@media (prefers-reduced-motion: reduce) {

    .orb,
    .particle,
    .streak {
        animation: none;
        opacity: 0;
    }
}
