/* ═══════════════════════════════════════════════════════════
   VIBEXPERT LANDING PAGE — "Purple Violet Glow"
   Deep space + electric purple/violet
   ═══════════════════════════════════════════════════════════ */

/* Hide live activity notification on landing */
.about-us-page~.live-activity-notif,
body:not(.logged-in) .live-activity-notif {
    display: none !important;
}

/* ── CSS Variables ── */
:root {
    --bg-deep: #06050e;
    --bg-mid: #0a0818;
    --bg-card: #0f0c22;
    --purple: #a855f7;
    --violet: #7c3aed;
    --magenta: #c026d3;
    --cyan-accent: #00f5d4;
    --purple-glow: rgba(168, 85, 247, 0.25);
    --violet-glow: rgba(124, 58, 237, 0.20);
    --magenta-glow: rgba(192, 38, 211, 0.15);
    --text-bright: #ffffff;
    --text-body: #d0c8e8;
    --text-muted: #8878aa;
    --border-sub: rgba(168, 85, 247, 0.12);
    --border-hover: rgba(168, 85, 247, 0.5);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Orange Ghost Theme Colors */
    --orange-ghost-dark: #1a0800;
    --orange-ghost-medium: #ff6b00;
    --orange-ghost-light: #ff8c00;
    --orange-ghost-glow: rgba(255, 140, 0, 0.25);
    --orange-ghost-bg: rgba(255, 107, 0, 0.08);
    --orange-ghost-border: rgba(255, 140, 0, 0.3);
}

/* ── Global Landing Overrides ── */
.about-us-page {
    font-family: var(--font-body) !important;
    background: var(--bg-deep);
    color: var(--text-body);
    position: relative;
    overflow-x: hidden;
}

.about-us-page *,
.about-us-page *::before,
.about-us-page *::after {
    box-sizing: border-box;
}

.about-us-page h1,
.about-us-page h2,
.about-us-page h3,
.about-us-page h4 {
    font-family: var(--font-display) !important;
}

/* ── Background Layers ── */

/* Layer 1 — radial gradients on body */
.about-us-page {
    background-image:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(168, 85, 247, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 85% 110%, rgba(124, 58, 237, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(192, 38, 211, 0.06) 0%, transparent 50%);
}

/* Layer 2 — Drifting orbs */
.lp-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.lp-orb-1 {
    width: 700px;
    height: 700px;
    top: -200px;
    left: -150px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 70%);
    filter: blur(80px);
    animation: driftOrb1 18s ease-in-out infinite alternate;
}

.lp-orb-2 {
    width: 600px;
    height: 600px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.10), transparent 70%);
    filter: blur(100px);
    animation: driftOrb2 22s ease-in-out infinite alternate;
}

.lp-orb-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.08), transparent 70%);
    filter: blur(60px);
    animation: driftOrb3 15s ease-in-out infinite alternate;
}

@keyframes driftOrb1 {
    to {
        transform: translate(120px, 100px);
    }
}

@keyframes driftOrb2 {
    to {
        transform: translate(-80px, -120px);
    }
}

@keyframes driftOrb3 {
    to {
        transform: translate(-60px, 80px);
    }
}

/* Layer 3 — Dot grid */
.lp-dot-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(168, 85, 247, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Layer 4 — Particle canvas */
#lp-particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ── Scroll Progress ── */
.lp-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1001;
}

.lp-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--violet), var(--purple), var(--magenta));
    transition: width .1s;
}

/* ── Navbar ── */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 60px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6, 5, 14, 0.55);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(168, 85, 247, 0.08);
    transition: background .4s, border-color .4s;
}

.lp-nav.scrolled {
    background: rgba(6, 5, 14, 0.90);
    border-bottom-color: rgba(168, 85, 247, 0.18);
}

.lp-nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    background: linear-gradient(135deg, #c084fc, #a855f7, #7c3aed, #c026d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
    letter-spacing: 1.5px;
}

/* Hide nav links (only VibeXpert + Login) */
.lp-nav-links {
    list-style: none;
    display: none !important;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.lp-nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: .5px;
    position: relative;
    padding-bottom: 4px;
    transition: color .3s;
}

.lp-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--purple);
    box-shadow: 0 0 8px var(--purple);
    transition: width .3s;
}

.lp-nav-link:hover {
    color: var(--purple);
}

.lp-nav-link:hover::after {
    width: 100%;
}

.lp-nav-cta {
    padding: 10px 30px;
    border-radius: 100px;
    border: 1.5px solid var(--purple);
    background: transparent;
    color: var(--purple);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    overflow: hidden;
}

.lp-nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--purple), var(--violet));
    opacity: 0;
    transition: opacity .35s;
    z-index: -1;
}

.lp-nav-cta:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5), 0 0 60px rgba(124, 58, 237, 0.25);
    transform: translateY(-2px);
}

.lp-nav-cta:hover::before {
    opacity: 1;
}

/* Hamburger (mobile) */
.lp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.lp-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-body);
    border-radius: 2px;
    transition: all .3s;
}

/* Mobile menu overlay */
.lp-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(6, 5, 14, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.lp-mobile-menu.open {
    display: flex;
}

.lp-mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color .3s;
}

.lp-mobile-menu a:hover {
    color: var(--purple);
}

.lp-mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: var(--text-body);
    background: none;
    border: none;
    cursor: pointer;
}

/* ── Hero ── */
.lp-hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px;
    gap: 60px;
    overflow: hidden;
}

/* ── Neon 3D Tubes Cursor Canvas ── */
#tubes-cursor-canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    touch-action: none;
}

.lp-hero-content {
    flex: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
}

.lp-hero-visual {
    flex: 0 0 auto;
    display: none;
}

/* Badge */
.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 100px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.30);
    font-size: 13px;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideDown .7s ease forwards;
    position: relative;
    z-index: 2;
}

.lp-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.5);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(168, 85, 247, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hero Title: VibeXpert (main name) ── */
.lp-hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.4em;
    justify-content: center;
    flex-wrap: nowrap;
    position: relative;
    z-index: 2;
}

/* VibeXpert name line */
.lp-hero-name {
    display: block;
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 1.2rem;
    opacity: 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 20%, #a855f7 40%, #7c3aed 60%, #c026d3 80%, #f0abfc 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.6)) drop-shadow(0 0 80px rgba(124, 58, 237, 0.3));
    animation: heroNameIn 1s cubic-bezier(.16, 1, .3, 1) .2s forwards, shimmerGradient 4s ease-in-out infinite;
}

@keyframes heroNameIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
        filter: drop-shadow(0 0 0 rgba(168, 85, 247, 0)) blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.6)) drop-shadow(0 0 80px rgba(124, 58, 237, 0.3));
    }
}

@keyframes shimmerGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Feature words: Connect, Share, Vibe */
.ht-1 {
    color: #fff;
    display: inline;
    opacity: 0;
    animation: heroLineIn .8s cubic-bezier(.16, 1, .3, 1) .6s forwards;
}

.ht-2 {
    display: inline;
    opacity: 0;
    animation: heroLineIn .8s cubic-bezier(.16, 1, .3, 1) .8s forwards;
    background: linear-gradient(90deg, #c084fc, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.5));
}

.ht-3 {
    display: inline;
    opacity: 0;
    animation: heroLineIn .8s cubic-bezier(.16, 1, .3, 1) 1s forwards;
    background: linear-gradient(90deg, var(--magenta), #e879f9, #f0abfc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(192, 38, 211, 0.5));
}

@keyframes heroLineIn {
    from {
        opacity: 0;
        transform: translateY(60px) skewY(3deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) skewY(0deg);
    }
}

.lp-hero-sub {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: var(--text-body);
    max-width: 550px;
    line-height: 1.7;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeUp .8s 1.4s forwards;
    transform: translateY(20px);
    position: relative;
    z-index: 2;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp .8s 1.7s forwards;
    transform: translateY(20px);
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

/* ── Buttons ── */
.btn-primary {
    padding: 16px 44px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--purple), var(--violet), var(--magenta));
    background-size: 200% 200%;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.35), 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform .3s, box-shadow .3s;
    animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.55), 0 16px 48px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-ghost {
    padding: 16px 44px;
    border-radius: 100px;
    background: transparent;
    color: var(--text-body);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(168, 85, 247, 0.25);
    cursor: pointer;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: rgba(168, 85, 247, 0.06);
    transform: scale(0);
    transition: transform .4s;
}

.btn-ghost:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.btn-ghost:hover::before {
    transform: scale(1);
}

/* ── Phone Mockup (hidden in new design) ── */
.lp-phone {
    width: 240px;
    height: 480px;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #111130, #0a0a20);
    border: 2px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.1), 0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(168, 85, 247, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: perspective(800px) rotateY(-18deg) rotateX(5deg);
    animation: phoneFloat 5s ease-in-out infinite alternate;
    display: none;
}

@keyframes phoneFloat {
    0% {
        transform: perspective(800px) rotateY(-18deg) rotateX(5deg) translateY(0);
    }

    100% {
        transform: perspective(800px) rotateY(-12deg) rotateX(2deg) translateY(-16px);
    }
}

.lp-phone-notch {
    width: 80px;
    height: 6px;
    background: var(--bg-deep);
    border-radius: 0 0 10px 10px;
    margin: 0 auto 16px;
}

.lp-phone-inner {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-phone-post {
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.lp-phone-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    flex-shrink: 0;
}

.lp-phone-lines {
    flex: 1;
}

.lp-phone-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 6px;
}

.lp-phone-line.short {
    width: 60%;
}

.lp-phone-bubble {
    padding: 10px 14px;
    border-radius: 14px 14px 14px 4px;
    font-size: 11px;
    max-width: 80%;
    color: var(--text-body);
}

.lp-phone-bubble.sent {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.2);
    margin-left: auto;
    border-radius: 14px 14px 4px 14px;
}

.lp-phone-bubble.recv {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Sections ── */
.lp-section {
    position: relative;
    z-index: 1;
    padding: 100px 60px;
}

.lp-section.lp-section-compact {
    padding: 60px 60px 50px;
}

.lp-coverflow-container {
    padding-top: 60px;
}

.lp-container {
    max-width: 1100px;
    margin: 0 auto;
}

.lp-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    color: var(--text-bright);
    margin-bottom: .5rem;
}

.lp-section-accent {
    display: block;
    width: 60px;
    height: 4px;
    margin: 0 auto 3.5rem;
    background: linear-gradient(90deg, var(--purple), var(--magenta));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

/* ── "What is VibeXpert?" Flip Cards ── */
/* Hint text */
.lp-what-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.lp-what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Flip Wrapper */
.lp-what-flip-wrapper {
    perspective: 1000px;
    height: 260px;
}

/* Card — 3D Container */
.lp-what-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
        box-shadow 0.4s ease;
}

/* Glow on hover */
.lp-what-item:hover {
    box-shadow:
        0 0 25px rgba(168, 85, 247, 0.35),
        0 0 60px rgba(168, 85, 247, 0.15),
        0 0 100px rgba(124, 58, 237, 0.10),
        inset 0 0 30px rgba(168, 85, 247, 0.05);
}

/* Flipped state */
.lp-what-item.flipped {
    transform: rotateY(180deg);
}

/* Shine sweep */
.lp-what-shine {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.lp-what-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(168, 85, 247, 0.12) 40%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(168, 85, 247, 0.12) 60%,
            transparent 80%);
    transition: left 0.6s ease;
}

.lp-what-item:hover .lp-what-shine::before {
    left: 130%;
}

/* Animated border glow */
.lp-what-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg,
            transparent 20%,
            rgba(168, 85, 247, 0.5) 40%,
            rgba(192, 38, 211, 0.5) 60%,
            transparent 80%);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: whatBorderGlow 3s linear infinite;
}

.lp-what-item:hover::before {
    opacity: 1;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Pulsing glow ring */
.lp-what-item::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 30px;
    background: transparent;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.0), 0 0 30px rgba(124, 58, 237, 0.0);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: whatPulseGlow 2s ease-in-out infinite;
}

.lp-what-item:hover::after {
    opacity: 1;
}

@keyframes whatPulseGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.2), 0 0 30px rgba(124, 58, 237, 0.1);
    }

    50% {
        box-shadow: 0 0 25px rgba(168, 85, 247, 0.4), 0 0 50px rgba(124, 58, 237, 0.2);
    }
}

/* Front Face */
.lp-what-front {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 32px;
    text-align: center;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.lp-what-item:hover .lp-what-front {
    border-color: rgba(168, 85, 247, 0.35);
    background: rgba(168, 85, 247, 0.04);
}

/* Back Face */
.lp-what-back {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.12), rgba(124, 58, 237, 0.06));
    border: 1px solid rgba(168, 85, 247, 0.3);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 32px;
    text-align: center;
}

/* Typography */
.lp-what-icon {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.lp-what-item:hover .lp-what-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 22px rgba(168, 85, 247, 0.7));
}

.lp-what-front h3,
.lp-what-back h3 {
    color: var(--text-bright);
    font-size: 1.3rem;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.lp-what-back h3 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}

.lp-what-back p {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 300px;
}

/* Background container */
.lp-what-card-bg {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lp-what-item:hover .lp-what-card-bg {
    opacity: 1;
}

/* Base particles */
.what-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lp-what-item:hover .what-particle {
    opacity: 1;
}

/* ── 1. CHAT (Real-Time Chat) — Cyan/Blue Bubbles ── */
[data-what-theme="chat"] .lp-what-card-bg {
    background:
        radial-gradient(ellipse at 25% 60%, rgba(6, 182, 212, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 35%, rgba(59, 130, 246, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(34, 211, 238, 0.06) 0%, transparent 60%);
}

[data-what-theme="chat"] .lp-what-item:hover {
    box-shadow:
        0 0 25px rgba(6, 182, 212, 0.3),
        0 0 60px rgba(59, 130, 246, 0.12),
        0 0 100px rgba(6, 182, 212, 0.08);
}

[data-what-theme="chat"] .lp-what-item:hover .lp-what-front {
    border-color: rgba(6, 182, 212, 0.35);
    background: rgba(6, 182, 212, 0.04);
}

[data-what-theme="chat"] .lp-what-item::before {
    background: linear-gradient(135deg, transparent 20%, rgba(6, 182, 212, 0.5) 40%, rgba(59, 130, 246, 0.5) 60%, transparent 80%);
    background-size: 300% 300%;
}

[data-what-theme="chat"] .what-p1 {
    width: 12px;
    height: 12px;
    background: rgba(6, 182, 212, 0.25);
    border: 1px solid rgba(6, 182, 212, 0.4);
    top: 18%;
    left: 12%;
    animation: chatBubble 3s ease-in-out infinite;
}

[data-what-theme="chat"] .what-p2 {
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.4);
    top: 65%;
    left: 78%;
    animation: chatBubble 3.5s ease-in-out infinite 0.5s;
}

[data-what-theme="chat"] .what-p3 {
    width: 10px;
    height: 10px;
    background: rgba(34, 211, 238, 0.2);
    border: 1px solid rgba(34, 211, 238, 0.35);
    top: 30%;
    left: 82%;
    animation: chatBubble 4s ease-in-out infinite 1s;
}

[data-what-theme="chat"] .what-p4 {
    width: 6px;
    height: 6px;
    background: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
    top: 78%;
    left: 25%;
    animation: chatBubble 2.8s ease-in-out infinite 0.3s;
}

[data-what-theme="chat"] .what-p5 {
    width: 14px;
    height: 14px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    top: 45%;
    left: 55%;
    animation: chatBubble 3.2s ease-in-out infinite 1.5s;
}

[data-what-theme="chat"] .what-p6 {
    width: 5px;
    height: 5px;
    background: rgba(34, 211, 238, 0.6);
    box-shadow: 0 0 6px rgba(34, 211, 238, 0.5);
    top: 12%;
    left: 60%;
    animation: chatBubble 4.5s ease-in-out infinite 0.8s;
}

@keyframes chatBubble {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-18px) scale(1.3);
        opacity: 0.9;
    }
}


/* ── 2. CREATIVE (Post Creation) — Rose/Magenta Sparks ── */
[data-what-theme="creative"] .lp-what-card-bg {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(236, 72, 153, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 70%, rgba(192, 38, 211, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(244, 114, 182, 0.06) 0%, transparent 60%);
}

[data-what-theme="creative"] .lp-what-item:hover {
    box-shadow:
        0 0 25px rgba(236, 72, 153, 0.3),
        0 0 60px rgba(192, 38, 211, 0.12),
        0 0 100px rgba(236, 72, 153, 0.08);
}

[data-what-theme="creative"] .lp-what-item:hover .lp-what-front {
    border-color: rgba(236, 72, 153, 0.35);
    background: rgba(236, 72, 153, 0.04);
}

[data-what-theme="creative"] .lp-what-item::before {
    background: linear-gradient(135deg, transparent 20%, rgba(236, 72, 153, 0.5) 40%, rgba(192, 38, 211, 0.5) 60%, transparent 80%);
    background-size: 300% 300%;
}

[data-what-theme="creative"] .what-p1 {
    width: 7px;
    height: 7px;
    background: rgba(236, 72, 153, 0.7);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
    top: 15%;
    left: 20%;
    animation: creativeSpark 2.5s ease-in-out infinite;
}

[data-what-theme="creative"] .what-p2 {
    width: 5px;
    height: 5px;
    background: rgba(244, 114, 182, 0.6);
    box-shadow: 0 0 8px rgba(244, 114, 182, 0.4);
    top: 70%;
    left: 75%;
    animation: creativeSpark 3s ease-in-out infinite 0.4s;
}

[data-what-theme="creative"] .what-p3 {
    width: 9px;
    height: 9px;
    background: rgba(192, 38, 211, 0.5);
    box-shadow: 0 0 12px rgba(192, 38, 211, 0.4);
    top: 35%;
    left: 85%;
    animation: creativeSpark 2.8s ease-in-out infinite 0.8s;
}

[data-what-theme="creative"] .what-p4 {
    width: 4px;
    height: 4px;
    background: rgba(236, 72, 153, 0.8);
    box-shadow: 0 0 6px rgba(236, 72, 153, 0.6);
    top: 80%;
    left: 35%;
    animation: creativeSpark 3.5s ease-in-out infinite 1.2s;
}

[data-what-theme="creative"] .what-p5 {
    width: 6px;
    height: 6px;
    background: rgba(244, 114, 182, 0.5);
    box-shadow: 0 0 10px rgba(244, 114, 182, 0.4);
    top: 50%;
    left: 15%;
    animation: creativeSpark 2.2s ease-in-out infinite 0.6s;
}

[data-what-theme="creative"] .what-p6 {
    width: 8px;
    height: 8px;
    background: rgba(192, 38, 211, 0.4);
    box-shadow: 0 0 14px rgba(192, 38, 211, 0.3);
    top: 25%;
    left: 50%;
    animation: creativeSpark 3.2s ease-in-out infinite 1s;
}

@keyframes creativeSpark {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.5;
    }

    25% {
        transform: translate(6px, -10px) scale(1.4) rotate(90deg);
        opacity: 0.9;
    }

    50% {
        transform: translate(-4px, -16px) scale(1.1) rotate(180deg);
        opacity: 0.7;
    }

    75% {
        transform: translate(8px, -6px) scale(1.3) rotate(270deg);
        opacity: 0.8;
    }
}


/* ── 3. CAMPUS (College Communities) — Emerald/Green Academic ── */
[data-what-theme="campus"] .lp-what-card-bg {
    background:
        radial-gradient(ellipse at 40% 30%, rgba(16, 185, 129, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 75%, rgba(52, 211, 153, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(5, 150, 105, 0.06) 0%, transparent 60%);
}

[data-what-theme="campus"] .lp-what-item:hover {
    box-shadow:
        0 0 25px rgba(16, 185, 129, 0.3),
        0 0 60px rgba(52, 211, 153, 0.12),
        0 0 100px rgba(16, 185, 129, 0.08);
}

[data-what-theme="campus"] .lp-what-item:hover .lp-what-front {
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.04);
}

[data-what-theme="campus"] .lp-what-item::before {
    background: linear-gradient(135deg, transparent 20%, rgba(16, 185, 129, 0.5) 40%, rgba(52, 211, 153, 0.5) 60%, transparent 80%);
    background-size: 300% 300%;
}

[data-what-theme="campus"] .what-p1 {
    width: 6px;
    height: 6px;
    background: rgba(16, 185, 129, 0.7);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    top: 20%;
    left: 15%;
    animation: campusFloat 3.5s ease-in-out infinite;
}

[data-what-theme="campus"] .what-p2 {
    width: 4px;
    height: 4px;
    background: rgba(52, 211, 153, 0.6);
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.4);
    top: 60%;
    left: 80%;
    animation: campusFloat 4s ease-in-out infinite 0.5s;
}

[data-what-theme="campus"] .what-p3 {
    width: 8px;
    height: 8px;
    background: rgba(5, 150, 105, 0.4);
    box-shadow: 0 0 12px rgba(5, 150, 105, 0.3);
    top: 35%;
    left: 85%;
    animation: campusFloat 3s ease-in-out infinite 1s;
}

[data-what-theme="campus"] .what-p4 {
    width: 5px;
    height: 5px;
    background: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    top: 75%;
    left: 30%;
    animation: campusFloat 3.8s ease-in-out infinite 0.7s;
}

[data-what-theme="campus"] .what-p5 {
    width: 3px;
    height: 3px;
    background: rgba(52, 211, 153, 0.7);
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.5);
    top: 12%;
    left: 55%;
    animation: campusFloat 4.2s ease-in-out infinite 1.3s;
}

[data-what-theme="campus"] .what-p6 {
    width: 7px;
    height: 7px;
    background: rgba(5, 150, 105, 0.35);
    box-shadow: 0 0 14px rgba(5, 150, 105, 0.3);
    top: 50%;
    left: 40%;
    animation: campusFloat 3.2s ease-in-out infinite 0.3s;
}

@keyframes campusFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-14px) scale(1.25);
        opacity: 0.9;
    }
}

/* ── Key Feature Cards (5-card grid) ── */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    justify-items: center;
}

/* Center the last 2 cards */
.lp-features-grid .feature-card:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: end;
    margin-right: -14px;
}

.lp-features-grid .feature-card:nth-child(5) {
    grid-column: 2 / 3;
    justify-self: start;
    margin-left: -14px;
}

.feature-card {
    background: rgba(15, 12, 34, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.10);
    border-radius: 24px;
    padding: 40px 32px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color .4s, box-shadow .4s, transform .4s cubic-bezier(.34, 1.56, .64, 1);
    cursor: default;
    width: 100%;
    max-width: 380px;
}

.feature-card:hover {
    border-color: rgba(168, 85, 247, 0.40);
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.08),
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(168, 85, 247, 0.10);
    transform: translateY(-8px);
}

/* Shine overlay on hover */
.feature-card-shine {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.06) 0%, transparent 50%, rgba(192, 38, 211, 0.04) 100%);
    transition: opacity .4s;
}

.feature-card:hover .feature-card-shine {
    opacity: 1;
}

/* Top edge glow line */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Background glow blob per card */
.feature-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity .5s;
    top: -40px;
    right: -40px;
    pointer-events: none;
    z-index: 0;
}

.feature-card:hover .feature-card-glow {
    opacity: 1;
}

.feature-glow-violet {
    background: rgba(139, 92, 246, 0.15);
}

.feature-glow-purple {
    background: rgba(168, 85, 247, 0.15);
}

.feature-glow-magenta {
    background: rgba(192, 38, 211, 0.12);
}

/* Icon wrap — glowing gradient circle */
.feature-card .feature-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(124, 58, 237, 0.08));
    border: 1px solid rgba(168, 85, 247, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s, border-color .4s;
    box-shadow: 0 0 0 rgba(168, 85, 247, 0);
}

.feature-card .feature-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: var(--purple);
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.4));
    transition: filter .4s, color .4s;
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.12);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.35), 0 0 60px rgba(124, 58, 237, 0.15);
    border-color: rgba(168, 85, 247, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-card:hover .feature-icon-wrap svg {
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.6));
    color: #c084fc;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.35), 0 0 60px rgba(124, 58, 237, 0.15);
    }

    50% {
        box-shadow: 0 0 40px rgba(168, 85, 247, 0.50), 0 0 80px rgba(124, 58, 237, 0.25);
    }
}

/* Feature card title */
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: .6rem;
    position: relative;
    z-index: 2;
}

/* Feature description */
.feature-desc {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Feature bullet list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.feature-list li {
    color: var(--text-body);
    font-size: .88rem;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .3s;
}

.feature-card:hover .feature-list li {
    color: var(--text-bright);
}

.feature-bullet {
    color: var(--purple);
    font-size: .7rem;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
    flex-shrink: 0;
}

/* Premium badge for RealVibes */
.feature-premium-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    color: #fff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    z-index: 3;
    animation: premiumBadgeGlow 3s ease-in-out infinite alternate;
}

@keyframes premiumBadgeGlow {
    0% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    }

    100% {
        box-shadow: 0 0 30px rgba(192, 38, 211, 0.6), 0 0 60px rgba(168, 85, 247, 0.2);
    }
}

/* Premium card special border */
.feature-card-premium {
    border-color: rgba(192, 38, 211, 0.2);
}

.feature-card-premium:hover {
    border-color: rgba(192, 38, 211, 0.5);
    box-shadow:
        0 0 0 1px rgba(192, 38, 211, 0.1),
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(192, 38, 211, 0.12);
}

/* ══════════════════════════════════════════════════════════
   VIBESHOP — Love & Gift Theme Background
   ══════════════════════════════════════════════════════════ */

/* ── VibeShop Page ── */
.kf-vibeshop {
    background:
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255, 20, 80, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 75% 80%, rgba(255, 105, 135, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(200, 50, 100, 0.06) 0%, transparent 50%),
        linear-gradient(170deg, #0d050a 0%, #120818 30%, #1a0515 60%, #0a0410 100%);
}

/* ── Background Layer ── */
.vibeshop-bg-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* ── Warm Gradient Orbs ── */
.vs-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.vs-orb-1 {
    width: 600px;
    height: 600px;
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 20, 100, 0.18), rgba(255, 80, 130, 0.06), transparent 70%);
    animation: vsOrbDrift1 20s ease-in-out infinite alternate;
}

.vs-orb-2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    right: -8%;
    background: radial-gradient(circle, rgba(200, 50, 150, 0.15), rgba(255, 100, 180, 0.05), transparent 70%);
    animation: vsOrbDrift2 25s ease-in-out infinite alternate;
}

.vs-orb-3 {
    width: 350px;
    height: 350px;
    top: 40%;
    left: 55%;
    background: radial-gradient(circle, rgba(255, 150, 200, 0.10), transparent 70%);
    animation: vsOrbDrift3 18s ease-in-out infinite alternate;
}

@keyframes vsOrbDrift1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 80px) scale(1.15);
    }
}

@keyframes vsOrbDrift2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-70px, -90px) scale(1.1);
    }
}

@keyframes vsOrbDrift3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, 60px) scale(1.2);
    }
}

/* ── Floating Hearts ── */
.vs-heart {
    position: absolute;
    font-size: 24px;
    pointer-events: none;
    opacity: 0;
    animation: vsHeartFloat linear infinite;
}

.vs-heart-1 {
    left: 5%;
    font-size: 28px;
    animation-duration: 14s;
    animation-delay: 0s;
}

.vs-heart-2 {
    left: 15%;
    font-size: 22px;
    animation-duration: 16s;
    animation-delay: 2s;
}

.vs-heart-3 {
    left: 28%;
    font-size: 32px;
    animation-duration: 18s;
    animation-delay: 4s;
}

.vs-heart-4 {
    left: 42%;
    font-size: 20px;
    animation-duration: 13s;
    animation-delay: 1s;
}

.vs-heart-5 {
    left: 58%;
    font-size: 26px;
    animation-duration: 17s;
    animation-delay: 5s;
}

.vs-heart-6 {
    left: 72%;
    font-size: 30px;
    animation-duration: 15s;
    animation-delay: 3s;
}

.vs-heart-7 {
    left: 85%;
    font-size: 24px;
    animation-duration: 19s;
    animation-delay: 6s;
}

.vs-heart-8 {
    left: 93%;
    font-size: 18px;
    animation-duration: 12s;
    animation-delay: 1.5s;
}

@keyframes vsHeartFloat {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0) rotate(0deg) scale(0.5);
    }

    10% {
        opacity: 0.7;
        transform: translateX(-20px) rotate(-10deg) scale(0.8);
    }

    50% {
        opacity: 0.5;
        transform: translateX(30px) rotate(15deg) scale(1);
    }

    90% {
        opacity: 0.3;
        transform: translateX(-15px) rotate(-5deg) scale(0.9);
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(10px) rotate(10deg) scale(0.6);
    }
}

/* ── Floating Gifts ── */
.vs-gift {
    position: absolute;
    font-size: 30px;
    pointer-events: none;
    opacity: 0;
    animation: vsGiftFloat linear infinite;
}

.vs-gift-1 {
    left: 10%;
    font-size: 36px;
    animation-duration: 20s;
    animation-delay: 2s;
}

.vs-gift-2 {
    left: 30%;
    font-size: 28px;
    animation-duration: 22s;
    animation-delay: 5s;
}

.vs-gift-3 {
    left: 50%;
    font-size: 34px;
    animation-duration: 18s;
    animation-delay: 0s;
}

.vs-gift-4 {
    left: 70%;
    font-size: 26px;
    animation-duration: 24s;
    animation-delay: 7s;
}

.vs-gift-5 {
    left: 88%;
    font-size: 32px;
    animation-duration: 21s;
    animation-delay: 3s;
}

@keyframes vsGiftFloat {
    0% {
        bottom: -12%;
        opacity: 0;
        transform: translateX(0) rotate(0deg) scale(0.4);
    }

    8% {
        opacity: 0.6;
        transform: translateX(15px) rotate(5deg) scale(0.7);
    }

    30% {
        opacity: 0.45;
        transform: translateX(-25px) rotate(-8deg) scale(0.9);
    }

    60% {
        opacity: 0.35;
        transform: translateX(20px) rotate(10deg) scale(1);
    }

    100% {
        bottom: 115%;
        opacity: 0;
        transform: translateX(-10px) rotate(-5deg) scale(0.5);
    }
}

/* ── Sparkles ── */
.vs-sparkle {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    animation: vsSparkle ease-in-out infinite;
}

.vs-sparkle-1 {
    top: 12%;
    left: 8%;
    font-size: 18px;
    animation-duration: 3s;
    animation-delay: 0s;
}

.vs-sparkle-2 {
    top: 25%;
    left: 82%;
    font-size: 22px;
    animation-duration: 3.5s;
    animation-delay: 0.5s;
}

.vs-sparkle-3 {
    top: 45%;
    left: 18%;
    font-size: 16px;
    animation-duration: 4s;
    animation-delay: 1s;
}

.vs-sparkle-4 {
    top: 60%;
    left: 75%;
    font-size: 20px;
    animation-duration: 3.2s;
    animation-delay: 1.5s;
}

.vs-sparkle-5 {
    top: 78%;
    left: 40%;
    font-size: 24px;
    animation-duration: 3.8s;
    animation-delay: 2s;
}

.vs-sparkle-6 {
    top: 88%;
    left: 92%;
    font-size: 14px;
    animation-duration: 2.8s;
    animation-delay: 0.8s;
}

@keyframes vsSparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2) rotate(180deg);
    }
}

/* ── Bokeh Particles ── */
.vs-bokeh {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: vsBokeh ease-in-out infinite;
}

.vs-bokeh-1 {
    width: 8px;
    height: 8px;
    top: 10%;
    left: 20%;
    background: rgba(255, 100, 150, 0.5);
    animation-duration: 5s;
    animation-delay: 0s;
}

.vs-bokeh-2 {
    width: 12px;
    height: 12px;
    top: 30%;
    left: 70%;
    background: rgba(255, 180, 200, 0.4);
    animation-duration: 6s;
    animation-delay: 1s;
}

.vs-bokeh-3 {
    width: 6px;
    height: 6px;
    top: 50%;
    left: 15%;
    background: rgba(255, 120, 180, 0.6);
    animation-duration: 4.5s;
    animation-delay: 0.5s;
}

.vs-bokeh-4 {
    width: 10px;
    height: 10px;
    top: 65%;
    left: 85%;
    background: rgba(200, 80, 140, 0.45);
    animation-duration: 5.5s;
    animation-delay: 2s;
}

.vs-bokeh-5 {
    width: 14px;
    height: 14px;
    top: 20%;
    left: 55%;
    background: rgba(255, 150, 190, 0.35);
    animation-duration: 7s;
    animation-delay: 1.5s;
}

.vs-bokeh-6 {
    width: 7px;
    height: 7px;
    top: 80%;
    left: 35%;
    background: rgba(255, 90, 130, 0.5);
    animation-duration: 4s;
    animation-delay: 3s;
}

.vs-bokeh-7 {
    width: 9px;
    height: 9px;
    top: 40%;
    left: 90%;
    background: rgba(255, 200, 220, 0.4);
    animation-duration: 6.5s;
    animation-delay: 0.8s;
}

.vs-bokeh-8 {
    width: 11px;
    height: 11px;
    top: 75%;
    left: 60%;
    background: rgba(220, 100, 160, 0.5);
    animation-duration: 5.2s;
    animation-delay: 2.5s;
}

@keyframes vsBokeh {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5) translateY(0);
        filter: blur(2px);
    }

    50% {
        opacity: 1;
        transform: scale(1.5) translateY(-20px);
        filter: blur(1px);
    }
}

/* ── Ribbon Streamers ── */
.vs-ribbon {
    position: absolute;
    pointer-events: none;
    border-radius: 50px;
    opacity: 0.15;
}

.vs-ribbon-1 {
    width: 200px;
    height: 3px;
    top: 20%;
    left: -5%;
    background: linear-gradient(90deg, transparent, rgba(255, 100, 150, 0.6), rgba(255, 180, 200, 0.4), transparent);
    animation: vsRibbonDrift 12s ease-in-out infinite;
    transform: rotate(-15deg);
}

.vs-ribbon-2 {
    width: 160px;
    height: 2px;
    top: 55%;
    right: -3%;
    background: linear-gradient(90deg, transparent, rgba(200, 80, 140, 0.5), rgba(255, 150, 190, 0.3), transparent);
    animation: vsRibbonDrift 15s ease-in-out infinite;
    animation-delay: 3s;
    transform: rotate(10deg);
}

.vs-ribbon-3 {
    width: 180px;
    height: 2px;
    bottom: 25%;
    left: 10%;
    background: linear-gradient(90deg, transparent, rgba(255, 120, 170, 0.5), rgba(220, 100, 160, 0.3), transparent);
    animation: vsRibbonDrift 18s ease-in-out infinite;
    animation-delay: 6s;
    transform: rotate(-8deg);
}

@keyframes vsRibbonDrift {
    0% {
        transform: translateX(-100%) rotate(-15deg);
        opacity: 0;
    }

    20% {
        opacity: 0.2;
    }

    80% {
        opacity: 0.15;
    }

    100% {
        transform: translateX(calc(100vw + 100%)) rotate(-15deg);
        opacity: 0;
    }
}

/* ── VibeShop Title Glow ── */
.vs-title-glow {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 25%, #e91e72 50%, #ff6090 75%, #ff8ab5 100%) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 0 40px rgba(255, 64, 129, 0.5)) drop-shadow(0 0 80px rgba(233, 30, 114, 0.25));
    animation: vsShimmer 4s ease-in-out infinite;
}

@keyframes vsShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ── VibeShop Subtitle ── */
.vs-subtitle {
    color: #ff8ab5 !important;
    text-shadow: 0 0 20px rgba(255, 100, 150, 0.3);
}

/* ── VibeShop Description ── */
.vs-desc strong {
    color: #ff6b9d;
    text-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}

/* ── VibeShop Feature Items ── */
.vs-feature-item {
    border-color: rgba(255, 64, 129, 0.15) !important;
    background: rgba(255, 64, 129, 0.03) !important;
}

.vs-feature-item:hover {
    border-color: rgba(255, 64, 129, 0.35) !important;
    background: rgba(255, 64, 129, 0.08) !important;
    box-shadow: 0 0 30px rgba(255, 64, 129, 0.1);
}

.vs-feature-item strong {
    color: #ff8ab5 !important;
}

/* ── VibeShop Badge Override ── */
.kf-vibeshop .kf-badge {
    background: rgba(255, 64, 129, 0.08);
    border-color: rgba(255, 64, 129, 0.30);
    color: #ff6b9d;
}

.kf-vibeshop .kf-badge-icon {
    filter: drop-shadow(0 0 8px rgba(255, 64, 129, 0.5));
}

/* ── Why Grid (magnetic hover) ── */
/* Hint text */
.lp-why-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.lp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Flip Wrapper — sets perspective */
.lp-why-flip-wrapper {
    perspective: 1000px;
    height: 220px;
}

/* The card itself — 3D transform container */
.lp-why-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
        box-shadow 0.4s ease;
}

/* Glow on hover */
.lp-why-item:hover {
    box-shadow:
        0 0 20px rgba(168, 85, 247, 0.35),
        0 0 60px rgba(168, 85, 247, 0.15),
        0 0 100px rgba(124, 58, 237, 0.10),
        inset 0 0 30px rgba(168, 85, 247, 0.05);
}

/* Flipped state */
.lp-why-item.flipped {
    transform: rotateY(180deg);
}

/* Shine sweep effect */
.lp-why-shine {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.lp-why-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(168, 85, 247, 0.12) 40%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(168, 85, 247, 0.12) 60%,
            transparent 80%);
    transition: left 0.6s ease;
}

.lp-why-item:hover .lp-why-shine::before {
    left: 130%;
}

/* Animated border glow */
.lp-why-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg,
            transparent 20%,
            rgba(168, 85, 247, 0.5) 40%,
            rgba(192, 38, 211, 0.5) 60%,
            transparent 80%);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlowRotate 3s linear infinite;
}

.lp-why-item:hover::before {
    opacity: 1;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Pulsing glow ring around the card on hover */
.lp-why-item::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    background: transparent;
    box-shadow:
        0 0 15px rgba(168, 85, 247, 0.0),
        0 0 30px rgba(124, 58, 237, 0.0);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: pulseGlow 2s ease-in-out infinite;
}

.lp-why-item:hover::after {
    opacity: 1;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow:
            0 0 15px rgba(168, 85, 247, 0.2),
            0 0 30px rgba(124, 58, 237, 0.1);
    }

    50% {
        box-shadow:
            0 0 25px rgba(168, 85, 247, 0.4),
            0 0 50px rgba(124, 58, 237, 0.2);
    }
}

/* ── Front Face ── */
.lp-why-front {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 28px;
    text-align: center;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.lp-why-item:hover .lp-why-front {
    border-color: rgba(168, 85, 247, 0.35);
    background: rgba(168, 85, 247, 0.04);
}

/* ── Back Face ── */
.lp-why-back {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.12), rgba(124, 58, 237, 0.06));
    border: 1px solid rgba(168, 85, 247, 0.3);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 28px;
    text-align: center;
}

/* ── Typography inside cards ── */
.lp-why-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.lp-why-item:hover .lp-why-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.7));
}

.lp-why-front h4,
.lp-why-back h4 {
    color: var(--text-bright);
    font-size: 1.15rem;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.lp-why-back h4 {
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
}

.lp-why-back p {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

/* ═══════════════════════════════════════════════
   UNIQUE PER-CARD BACKGROUND EFFECTS
   Each card has a unique hover background
   ═══════════════════════════════════════════════ */

/* Background container (inside each card) */
.lp-why-card-bg {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lp-why-item:hover .lp-why-card-bg {
    opacity: 1;
}

/* Base floating particles */
.why-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lp-why-item:hover .why-particle {
    opacity: 1;
}

/* ── 1. SHIELD (Safe & Secure) — Emerald/Teal Glow ── */
[data-card-theme="shield"] .lp-why-card-bg {
    background: radial-gradient(ellipse at 30% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

[data-card-theme="shield"] .lp-why-item:hover {
    box-shadow:
        0 0 25px rgba(16, 185, 129, 0.3),
        0 0 60px rgba(16, 185, 129, 0.12),
        0 0 100px rgba(6, 182, 212, 0.08);
}

[data-card-theme="shield"] .lp-why-item:hover .lp-why-front {
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.04);
}

[data-card-theme="shield"] .lp-why-item::before {
    background: linear-gradient(135deg, transparent 20%, rgba(16, 185, 129, 0.5) 40%, rgba(6, 182, 212, 0.5) 60%, transparent 80%);
    background-size: 300% 300%;
}

[data-card-theme="shield"] .why-p1 {
    width: 6px;
    height: 6px;
    background: rgba(16, 185, 129, 0.7);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    top: 20%;
    left: 15%;
    animation: shieldFloat1 3s ease-in-out infinite;
}

[data-card-theme="shield"] .why-p2 {
    width: 4px;
    height: 4px;
    background: rgba(6, 182, 212, 0.6);
    box-shadow: 0 0 6px rgba(6, 182, 212, 0.5);
    top: 60%;
    left: 75%;
    animation: shieldFloat2 4s ease-in-out infinite 0.5s;
}

[data-card-theme="shield"] .why-p3 {
    width: 8px;
    height: 8px;
    background: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
    top: 35%;
    left: 85%;
    animation: shieldFloat1 3.5s ease-in-out infinite 1s;
}

[data-card-theme="shield"] .why-p4 {
    width: 5px;
    height: 5px;
    background: rgba(52, 211, 153, 0.5);
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.4);
    top: 75%;
    left: 30%;
    animation: shieldFloat2 2.8s ease-in-out infinite 0.3s;
}

[data-card-theme="shield"] .why-p5 {
    width: 3px;
    height: 3px;
    background: rgba(6, 182, 212, 0.7);
    box-shadow: 0 0 6px rgba(6, 182, 212, 0.5);
    top: 15%;
    left: 55%;
    animation: shieldFloat1 4.2s ease-in-out infinite 0.7s;
}

[data-card-theme="shield"] .why-p6 {
    width: 7px;
    height: 7px;
    background: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
    top: 50%;
    left: 40%;
    animation: shieldFloat2 3.2s ease-in-out infinite 1.2s;
}

@keyframes shieldFloat1 {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-12px) scale(1.3);
        opacity: 1;
    }
}

@keyframes shieldFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(8px, -10px) scale(1.2);
        opacity: 0.9;
    }
}


/* ── 2. ELECTRIC (Lightning Fast) — Orange/Yellow Sparks ── */
[data-card-theme="electric"] .lp-why-card-bg {
    background: radial-gradient(ellipse at 50% 50%, rgba(251, 191, 36, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(245, 158, 11, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(252, 211, 77, 0.08) 0%, transparent 40%);
}

[data-card-theme="electric"] .lp-why-item:hover {
    box-shadow:
        0 0 25px rgba(251, 191, 36, 0.3),
        0 0 60px rgba(245, 158, 11, 0.15),
        0 0 100px rgba(251, 191, 36, 0.08);
}

[data-card-theme="electric"] .lp-why-item:hover .lp-why-front {
    border-color: rgba(251, 191, 36, 0.35);
    background: rgba(251, 191, 36, 0.04);
}

[data-card-theme="electric"] .lp-why-item::before {
    background: linear-gradient(135deg, transparent 20%, rgba(251, 191, 36, 0.5) 40%, rgba(245, 158, 11, 0.5) 60%, transparent 80%);
    background-size: 300% 300%;
}

[data-card-theme="electric"] .why-p1 {
    width: 2px;
    height: 16px;
    background: linear-gradient(to bottom, rgba(251, 191, 36, 0.9), transparent);
    border-radius: 1px;
    top: 10%;
    left: 25%;
    animation: sparkDrop 1.2s ease-in infinite;
}

[data-card-theme="electric"] .why-p2 {
    width: 2px;
    height: 12px;
    background: linear-gradient(to bottom, rgba(252, 211, 77, 0.8), transparent);
    border-radius: 1px;
    top: 5%;
    left: 60%;
    animation: sparkDrop 1.5s ease-in infinite 0.3s;
}

[data-card-theme="electric"] .why-p3 {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(245, 158, 11, 0.7), transparent);
    border-radius: 1px;
    top: 8%;
    left: 80%;
    animation: sparkDrop 1s ease-in infinite 0.6s;
}

[data-card-theme="electric"] .why-p4 {
    width: 5px;
    height: 5px;
    background: rgba(251, 191, 36, 0.8);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6), 0 0 20px rgba(251, 191, 36, 0.3);
    top: 40%;
    left: 15%;
    animation: sparkPulse 0.8s ease-in-out infinite;
}

[data-card-theme="electric"] .why-p5 {
    width: 4px;
    height: 4px;
    background: rgba(252, 211, 77, 0.7);
    box-shadow: 0 0 8px rgba(252, 211, 77, 0.5);
    top: 65%;
    left: 70%;
    animation: sparkPulse 1.1s ease-in-out infinite 0.4s;
}

[data-card-theme="electric"] .why-p6 {
    width: 3px;
    height: 3px;
    background: rgba(245, 158, 11, 0.9);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
    top: 80%;
    left: 45%;
    animation: sparkPulse 0.6s ease-in-out infinite 0.2s;
}

@keyframes sparkDrop {
    0% {
        transform: translateY(0) scaleY(1);
        opacity: 0.9;
    }

    60% {
        transform: translateY(50px) scaleY(0.5);
        opacity: 0.4;
    }

    100% {
        transform: translateY(80px) scaleY(0);
        opacity: 0;
    }
}

@keyframes sparkPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(2);
        opacity: 1;
    }
}


/* ── 3. RAINBOW (Express Yourself) — Multi-color Paint ── */
[data-card-theme="rainbow"] .lp-why-card-bg {
    background:
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 50% 70%, rgba(34, 197, 94, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 25%, rgba(59, 130, 246, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 35% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(251, 191, 36, 0.06) 0%, transparent 40%);
    animation: rainbowShift 4s ease-in-out infinite;
}

[data-card-theme="rainbow"] .lp-why-item:hover {
    box-shadow:
        0 0 20px rgba(239, 68, 68, 0.15),
        0 0 40px rgba(34, 197, 94, 0.10),
        0 0 60px rgba(59, 130, 246, 0.10),
        0 0 80px rgba(168, 85, 247, 0.08);
}

[data-card-theme="rainbow"] .lp-why-item:hover .lp-why-front {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.03);
}

[data-card-theme="rainbow"] .lp-why-item::before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(251, 191, 36, 0.3) 25%, rgba(34, 197, 94, 0.3) 50%, rgba(59, 130, 246, 0.3) 75%, rgba(168, 85, 247, 0.3) 100%);
    background-size: 300% 300%;
}

[data-card-theme="rainbow"] .why-p1 {
    width: 8px;
    height: 8px;
    background: rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
    top: 15%;
    left: 20%;
    animation: paintFloat 3s ease-in-out infinite;
}

[data-card-theme="rainbow"] .why-p2 {
    width: 6px;
    height: 6px;
    background: rgba(251, 191, 36, 0.6);
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
    top: 70%;
    left: 15%;
    animation: paintFloat 3.5s ease-in-out infinite 0.5s;
}

[data-card-theme="rainbow"] .why-p3 {
    width: 7px;
    height: 7px;
    background: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
    top: 25%;
    left: 80%;
    animation: paintFloat 2.8s ease-in-out infinite 1s;
}

[data-card-theme="rainbow"] .why-p4 {
    width: 5px;
    height: 5px;
    background: rgba(59, 130, 246, 0.7);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
    top: 60%;
    left: 75%;
    animation: paintFloat 4s ease-in-out infinite 1.5s;
}

[data-card-theme="rainbow"] .why-p5 {
    width: 9px;
    height: 9px;
    background: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
    top: 45%;
    left: 50%;
    animation: paintFloat 3.2s ease-in-out infinite 0.8s;
}

[data-card-theme="rainbow"] .why-p6 {
    width: 4px;
    height: 4px;
    background: rgba(236, 72, 153, 0.7);
    box-shadow: 0 0 6px rgba(236, 72, 153, 0.5);
    top: 80%;
    left: 50%;
    animation: paintFloat 2.5s ease-in-out infinite 0.3s;
}

@keyframes paintFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    25% {
        transform: translate(10px, -8px) scale(1.4);
        opacity: 0.9;
    }

    50% {
        transform: translate(-5px, -15px) scale(1.1);
        opacity: 0.7;
    }

    75% {
        transform: translate(8px, 5px) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes rainbowShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(30deg);
    }
}


/* ── 4. COSMOS (Dark/Light Mode) — Starfield + Moonlight ── */
[data-card-theme="cosmos"] .lp-why-card-bg {
    background:
        radial-gradient(ellipse at 75% 20%, rgba(147, 197, 253, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 25% 75%, rgba(99, 102, 241, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(192, 132, 252, 0.05) 0%, transparent 60%);
}

[data-card-theme="cosmos"] .lp-why-item:hover {
    box-shadow:
        0 0 25px rgba(147, 197, 253, 0.2),
        0 0 60px rgba(99, 102, 241, 0.12),
        0 0 100px rgba(147, 197, 253, 0.06);
}

[data-card-theme="cosmos"] .lp-why-item:hover .lp-why-front {
    border-color: rgba(147, 197, 253, 0.3);
    background: rgba(99, 102, 241, 0.04);
}

[data-card-theme="cosmos"] .lp-why-item::before {
    background: linear-gradient(135deg, transparent 20%, rgba(147, 197, 253, 0.4) 40%, rgba(99, 102, 241, 0.4) 60%, transparent 80%);
    background-size: 300% 300%;
}

/* Twinkling Stars */
.why-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lp-why-item:hover .why-star {
    opacity: 1;
}

[data-card-theme="cosmos"] .why-s1 {
    top: 12%;
    left: 22%;
    animation: twinkle 1.5s ease-in-out infinite;
}

[data-card-theme="cosmos"] .why-s2 {
    top: 30%;
    left: 68%;
    animation: twinkle 2s ease-in-out infinite 0.3s;
    box-shadow: 0 0 4px #fff;
}

[data-card-theme="cosmos"] .why-s3 {
    top: 55%;
    left: 85%;
    animation: twinkle 1.8s ease-in-out infinite 0.7s;
}

[data-card-theme="cosmos"] .why-s4 {
    top: 72%;
    left: 35%;
    animation: twinkle 2.2s ease-in-out infinite 1s;
    box-shadow: 0 0 6px rgba(147, 197, 253, 0.8);
}

[data-card-theme="cosmos"] .why-s5 {
    top: 18%;
    left: 90%;
    animation: twinkle 1.3s ease-in-out infinite 0.5s;
}

[data-card-theme="cosmos"] .why-p1 {
    width: 4px;
    height: 4px;
    background: rgba(147, 197, 253, 0.5);
    box-shadow: 0 0 8px rgba(147, 197, 253, 0.4);
    top: 20%;
    left: 10%;
    animation: cosmicDrift 5s ease-in-out infinite;
}

[data-card-theme="cosmos"] .why-p2 {
    width: 3px;
    height: 3px;
    background: rgba(192, 132, 252, 0.6);
    box-shadow: 0 0 6px rgba(192, 132, 252, 0.4);
    top: 65%;
    left: 55%;
    animation: cosmicDrift 6s ease-in-out infinite 1s;
}

[data-card-theme="cosmos"] .why-p3 {
    width: 5px;
    height: 5px;
    background: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
    top: 40%;
    left: 75%;
    animation: cosmicDrift 4.5s ease-in-out infinite 0.5s;
}

[data-card-theme="cosmos"] .why-p4 {
    width: 3px;
    height: 3px;
    background: rgba(147, 197, 253, 0.6);
    box-shadow: 0 0 8px rgba(147, 197, 253, 0.5);
    top: 80%;
    left: 20%;
    animation: cosmicDrift 5.5s ease-in-out infinite 1.5s;
}

[data-card-theme="cosmos"] .why-p5 {
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
    top: 10%;
    left: 45%;
    animation: cosmicDrift 3.5s ease-in-out infinite 0.8s;
}

[data-card-theme="cosmos"] .why-p6 {
    width: 4px;
    height: 4px;
    background: rgba(192, 132, 252, 0.4);
    box-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
    top: 55%;
    left: 30%;
    animation: cosmicDrift 4s ease-in-out infinite 2s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.8);
    }
}

@keyframes cosmicDrift {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }

    33% {
        transform: translate(8px, -12px);
        opacity: 0.8;
    }

    66% {
        transform: translate(-6px, 8px);
        opacity: 0.6;
    }
}


/* ── 5. RIPPLE (Mobile Optimized) — Cyan Wave Rings ── */
[data-card-theme="ripple"] .lp-why-card-bg {
    background:
        radial-gradient(ellipse at 40% 50%, rgba(6, 182, 212, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 40%, rgba(34, 211, 238, 0.08) 0%, transparent 45%);
}

[data-card-theme="ripple"] .lp-why-item:hover {
    box-shadow:
        0 0 25px rgba(6, 182, 212, 0.3),
        0 0 60px rgba(34, 211, 238, 0.12),
        0 0 100px rgba(6, 182, 212, 0.06);
}

[data-card-theme="ripple"] .lp-why-item:hover .lp-why-front {
    border-color: rgba(6, 182, 212, 0.35);
    background: rgba(6, 182, 212, 0.04);
}

[data-card-theme="ripple"] .lp-why-item::before {
    background: linear-gradient(135deg, transparent 20%, rgba(6, 182, 212, 0.5) 40%, rgba(34, 211, 238, 0.5) 60%, transparent 80%);
    background-size: 300% 300%;
}

[data-card-theme="ripple"] .why-p1 {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(6, 182, 212, 0.4);
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rippleWave 2.5s ease-out infinite;
}

[data-card-theme="ripple"] .why-p2 {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(34, 211, 238, 0.3);
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rippleWave 2.5s ease-out infinite 0.5s;
}

[data-card-theme="ripple"] .why-p3 {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(6, 182, 212, 0.25);
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rippleWave 2.5s ease-out infinite 1s;
}

[data-card-theme="ripple"] .why-p4 {
    width: 4px;
    height: 4px;
    background: rgba(6, 182, 212, 0.7);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
    top: 20%;
    left: 25%;
    animation: cyanFloat 3s ease-in-out infinite;
}

[data-card-theme="ripple"] .why-p5 {
    width: 3px;
    height: 3px;
    background: rgba(34, 211, 238, 0.6);
    box-shadow: 0 0 6px rgba(34, 211, 238, 0.4);
    top: 75%;
    left: 70%;
    animation: cyanFloat 3.5s ease-in-out infinite 0.8s;
}

[data-card-theme="ripple"] .why-p6 {
    width: 5px;
    height: 5px;
    background: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
    top: 30%;
    left: 80%;
    animation: cyanFloat 4s ease-in-out infinite 1.2s;
}

@keyframes rippleWave {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.6;
        border-width: 2px;
    }

    100% {
        width: 160px;
        height: 160px;
        opacity: 0;
        border-width: 0.5px;
    }
}

@keyframes cyanFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-10px) scale(1.3);
        opacity: 0.9;
    }
}


/* ── 6. GOLDEN (100% Free) — Gold Sparkle Celebration ── */
[data-card-theme="golden"] .lp-why-card-bg {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(251, 191, 36, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(217, 119, 6, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
}

[data-card-theme="golden"] .lp-why-item:hover {
    box-shadow:
        0 0 25px rgba(251, 191, 36, 0.3),
        0 0 60px rgba(217, 119, 6, 0.15),
        0 0 100px rgba(251, 191, 36, 0.08);
}

[data-card-theme="golden"] .lp-why-item:hover .lp-why-front {
    border-color: rgba(251, 191, 36, 0.35);
    background: rgba(251, 191, 36, 0.04);
}

[data-card-theme="golden"] .lp-why-item::before {
    background: linear-gradient(135deg, transparent 20%, rgba(251, 191, 36, 0.5) 40%, rgba(217, 119, 6, 0.5) 60%, transparent 80%);
    background-size: 300% 300%;
}

[data-card-theme="golden"] .why-p1 {
    width: 6px;
    height: 6px;
    background: rgba(251, 191, 36, 0.8);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    top: 15%;
    left: 20%;
    animation: goldenRise 2.5s ease-out infinite;
}

[data-card-theme="golden"] .why-p2 {
    width: 4px;
    height: 4px;
    background: rgba(252, 211, 77, 0.7);
    box-shadow: 0 0 8px rgba(252, 211, 77, 0.5);
    top: 80%;
    left: 65%;
    animation: goldenRise 3s ease-out infinite 0.4s;
}

[data-card-theme="golden"] .why-p3 {
    width: 5px;
    height: 5px;
    background: rgba(217, 119, 6, 0.6);
    box-shadow: 0 0 12px rgba(217, 119, 6, 0.4);
    top: 60%;
    left: 15%;
    animation: goldenRise 2.8s ease-out infinite 0.8s;
}

[data-card-theme="golden"] .why-p4 {
    width: 3px;
    height: 3px;
    background: rgba(251, 191, 36, 0.9);
    box-shadow: 0 0 6px rgba(251, 191, 36, 0.7);
    top: 40%;
    left: 80%;
    animation: goldenRise 3.2s ease-out infinite 1.2s;
}

[data-card-theme="golden"] .why-p5 {
    width: 7px;
    height: 7px;
    background: rgba(252, 211, 77, 0.5);
    box-shadow: 0 0 14px rgba(252, 211, 77, 0.4);
    top: 75%;
    left: 40%;
    animation: goldenRise 2.2s ease-out infinite 0.6s;
}

[data-card-theme="golden"] .why-p6 {
    width: 4px;
    height: 4px;
    background: rgba(245, 158, 11, 0.7);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
    top: 25%;
    left: 55%;
    animation: goldenSparkle 1.5s ease-in-out infinite;
}

@keyframes goldenRise {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-25px) scale(1.2) rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-50px) scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

@keyframes goldenSparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
        box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
    }

    50% {
        transform: scale(1.8) rotate(90deg);
        opacity: 1;
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
    }
}

/* ── Testimonials Marquee — Dynamic Background ── */
.lp-testi-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg,
            var(--bg-deep) 0%,
            rgba(15, 12, 34, 1) 15%,
            rgba(20, 15, 45, 1) 50%,
            rgba(15, 12, 34, 1) 85%,
            var(--bg-deep) 100%);
}

/* Background Layer */
.testi-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Dynamic gradient overlay (JS-driven) */
.testi-gradient-overlay {
    position: absolute;
    inset: 0;
    transition: background 0.8s ease;
    z-index: 0;
}

/* Floating Orbs */
.testi-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    transition: transform 1s ease-out;
}

.testi-orb-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.14) 0%, transparent 70%);
    animation: testiOrbDrift1 16s ease-in-out infinite alternate;
}

.testi-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.12) 0%, transparent 70%);
    animation: testiOrbDrift2 20s ease-in-out infinite alternate;
}

.testi-orb-3 {
    width: 350px;
    height: 350px;
    top: 40%;
    left: 60%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.10) 0%, transparent 70%);
    animation: testiOrbDrift3 14s ease-in-out infinite alternate;
}

.testi-orb-4 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 30%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    animation: testiOrbDrift1 18s ease-in-out infinite alternate-reverse;
}

@keyframes testiOrbDrift1 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 50px);
    }
}

@keyframes testiOrbDrift2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-60px, -70px);
    }
}

@keyframes testiOrbDrift3 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-40px, 30px);
    }
}

/* Floating Sparkles */
.testi-sparkle {
    position: absolute;
    color: rgba(168, 85, 247, 0.4);
    font-size: 12px;
    pointer-events: none;
    z-index: 1;
}

.testi-sp-1 {
    top: 8%;
    left: 10%;
    animation: sparkleFloat 6s ease-in-out infinite;
}

.testi-sp-2 {
    top: 15%;
    right: 15%;
    animation: sparkleFloat 7s ease-in-out infinite 1s;
    color: rgba(192, 38, 211, 0.35);
    font-size: 10px;
}

.testi-sp-3 {
    top: 75%;
    left: 20%;
    animation: sparkleFloat 5s ease-in-out infinite 2s;
    color: rgba(124, 58, 237, 0.4);
    font-size: 14px;
}

.testi-sp-4 {
    top: 85%;
    right: 25%;
    animation: sparkleFloat 8s ease-in-out infinite 0.5s;
    font-size: 8px;
}

.testi-sp-5 {
    top: 30%;
    left: 45%;
    animation: sparkleFloat 6.5s ease-in-out infinite 3s;
    color: rgba(139, 92, 246, 0.3);
    font-size: 16px;
}

.testi-sp-6 {
    top: 60%;
    right: 10%;
    animation: sparkleFloat 5.5s ease-in-out infinite 1.5s;
    color: rgba(192, 38, 211, 0.3);
}

.testi-sp-7 {
    top: 45%;
    left: 5%;
    animation: sparkleFloat 7.5s ease-in-out infinite 2.5s;
    font-size: 11px;
}

.testi-sp-8 {
    top: 90%;
    left: 70%;
    animation: sparkleFloat 6s ease-in-out infinite 4s;
    color: rgba(124, 58, 237, 0.35);
    font-size: 9px;
}

@keyframes sparkleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-15px) rotate(45deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-25px) rotate(90deg);
        opacity: 0.5;
    }

    75% {
        transform: translateY(-10px) rotate(135deg);
        opacity: 0.8;
    }
}

/* Marquee Container */
.lp-marquee-outer {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    position: relative;
    z-index: 2;
}

.lp-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.lp-marquee-outer:hover .lp-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Testimonial Cards — Glowing Borders ── */
.lp-testi-card {
    min-width: 320px;
    padding: 30px;
    background: rgba(15, 12, 34, 0.85);
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: 20px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Animated border glow on hover */
.lp-testi-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg,
            transparent 20%,
            rgba(168, 85, 247, 0.6) 35%,
            rgba(192, 38, 211, 0.5) 50%,
            rgba(124, 58, 237, 0.6) 65%,
            transparent 80%);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: testiCardBorderGlow 3s linear infinite;
}

.lp-testi-card:hover::before {
    opacity: 1;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shine sweep on hover */
.lp-testi-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(168, 85, 247, 0.08) 45%,
            rgba(255, 255, 255, 0.10) 50%,
            rgba(168, 85, 247, 0.08) 55%,
            transparent 70%);
    z-index: 1;
    pointer-events: none;
    transition: left 0.7s ease;
}

.lp-testi-card:hover::after {
    left: 130%;
}

/* Card hover effects */
.lp-testi-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 0 20px rgba(168, 85, 247, 0.25),
        0 0 50px rgba(168, 85, 247, 0.10),
        0 0 80px rgba(124, 58, 237, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(20, 16, 45, 0.95);
}

/* Pulsing outer glow ring */
.lp-testi-card:hover {
    animation: testiCardPulse 2s ease-in-out infinite;
}

@keyframes testiCardPulse {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(168, 85, 247, 0.25),
            0 0 50px rgba(168, 85, 247, 0.10),
            0 20px 60px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow:
            0 0 30px rgba(168, 85, 247, 0.35),
            0 0 70px rgba(168, 85, 247, 0.15),
            0 0 100px rgba(192, 38, 211, 0.08),
            0 20px 60px rgba(0, 0, 0, 0.4);
    }
}

/* Card content */
.lp-testi-avatar {
    font-size: 2.5rem;
    margin-bottom: .75rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.3));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.lp-testi-card:hover .lp-testi-avatar {
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.5));
    transform: scale(1.1);
}

.lp-testi-text {
    color: var(--text-body);
    font-size: .9rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.lp-testi-card:hover .lp-testi-text {
    color: var(--text-bright);
}

.lp-testi-author {
    font-family: var(--font-display);
    color: var(--purple);
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: text-shadow 0.3s ease;
}

.lp-testi-card:hover .lp-testi-author {
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.lp-testi-college {
    color: var(--text-muted);
    font-size: .8rem;
    margin-bottom: .5rem;
    position: relative;
    z-index: 2;
}

.lp-testi-stars {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
    position: relative;
    z-index: 2;
    transition: text-shadow 0.3s ease;
}

.lp-testi-card:hover .lp-testi-stars {
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6), 0 0 30px rgba(251, 191, 36, 0.3);
}

/* ── CTA ── */
.lp-cta {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 140px 40px;
    overflow: hidden;
}

.lp-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(192, 38, 211, 0.08) 40%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: ctaPulse 4s ease-in-out infinite alternate;
}

@keyframes ctaPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.lp-cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.lp-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ── Footer ── */
.lp-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(168, 85, 247, 0.08);
    padding: 4rem 60px 1.5rem;
}

.lp-footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.lp-footer-brand h3 {
    font-size: 1.4rem;
    color: var(--purple);
    margin-bottom: .75rem;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.lp-footer-brand p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

.lp-footer-socials {
    display: flex;
    gap: .75rem;
    margin-top: 1rem;
}

.lp-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all .3s;
}

.lp-social:hover {
    border-color: var(--purple);
    transform: translateY(-3px);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.25);
}

.lp-footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--magenta);
}

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

.lp-footer-col li {
    margin-bottom: .5rem;
}

.lp-footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .3s;
}

.lp-footer-col a:hover {
    color: var(--purple);
}

.lp-footer-col p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: .3rem;
}

.lp-footer-bottom {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(168, 85, 247, 0.08);
    text-align: center;
    color: var(--text-muted);
    font-size: .85rem;
}

/* ── Scroll Reveal ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

[data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal]:nth-child(2) {
    transition-delay: .1s;
}

[data-reveal]:nth-child(3) {
    transition-delay: .2s;
}

[data-reveal]:nth-child(4) {
    transition-delay: .3s;
}

/* ── Floating Sparkles (decorative) ── */
.lp-hero-content::before {
    content: '✦';
    position: absolute;
    top: 15%;
    left: 5%;
    font-size: 1.5rem;
    color: rgba(168, 85, 247, 0.3);
    animation: sparkleFloat 6s ease-in-out infinite, sparklePulse 3s ease-in-out infinite;
    pointer-events: none;
}

.lp-hero-content::after {
    content: '✦';
    position: absolute;
    bottom: 30%;
    right: 8%;
    font-size: 1rem;
    color: rgba(192, 38, 211, 0.3);
    animation: sparkleFloat 8s ease-in-out infinite reverse, sparklePulse 2.5s ease-in-out infinite 1s;
    pointer-events: none;
}

@keyframes sparkleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes sparklePulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .lp-hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 24px 60px;
    }

    .lp-hero-visual {
        display: none;
    }

    .lp-hero-title {
        font-size: clamp(1.4rem, 6vw, 2.2rem);
        flex-wrap: nowrap;
    }

    .lp-hero-name {
        font-size: clamp(3.5rem, 18vw, 6rem);
    }

    .lp-hero-sub {
        max-width: 100%;
    }

    .lp-hero-btns {
        justify-content: center;
    }

    .lp-what-grid {
        grid-template-columns: 1fr;
    }

    .lp-what-flip-wrapper {
        height: 240px;
    }

    .lp-features-grid {
        grid-template-columns: 1fr;
    }

    .lp-features-grid .feature-card:nth-child(4),
    .lp-features-grid .feature-card:nth-child(5) {
        grid-column: auto;
        justify-self: center;
        margin: 0;
    }

    .feature-card {
        max-width: 100%;
    }

    .lp-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-why-grid {
        grid-template-columns: 1fr;
    }

    .lp-why-flip-wrapper {
        height: 200px;
    }

    .lp-nav {
        padding: 0 24px;
    }

    .lp-nav-links {
        display: none !important;
    }

    .lp-hamburger {
        display: none;
    }

    .lp-section {
        padding: 80px 24px;
    }

    .lp-footer {
        padding: 3rem 24px 1.5rem;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
    }

    .lp-badge {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .lp-stats-row {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   KEY FEATURE PAGES — One Feature Per Page
   ═══════════════════════════════════════════════════════════ */

.kf-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 40px;
}

/* ── Ghost Mode Theme ── */
.kf-ghost-mode {
    background: var(--orange-ghost-dark);
    background-image:
        radial-gradient(ellipse 60% 50% at 25% 30%, var(--orange-ghost-bg) 0%, transparent 60%),
        radial-gradient(ellipse 80% 40% at 75% 70%, rgba(255, 107, 0, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 50% 50%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
}

/* ── Ghost Background Layer ── */
.ghost-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* VHS Scanlines */
.ghost-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            var(--orange-ghost-bg) 2px,
            var(--orange-ghost-bg) 4px);
    z-index: 5;
    animation: ghostScanDrift 8s linear infinite;
}

@keyframes ghostScanDrift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 100px;
    }
}

/* Spectral Orbs */
.ghost-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.ghost-orb-1 {
    width: 500px;
    height: 500px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, var(--orange-ghost-glow), transparent 70%);
    animation: ghostFloat1 20s ease-in-out infinite alternate;
}

.ghost-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -60px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08), transparent 70%);
    animation: ghostFloat2 25s ease-in-out infinite alternate;
}

.ghost-orb-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 60%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.06), transparent 70%);
    animation: ghostFloat3 18s ease-in-out infinite alternate;
}

@keyframes ghostFloat1 {
    to {
        transform: translate(80px, 100px) scale(1.1);
    }
}

@keyframes ghostFloat2 {
    to {
        transform: translate(-60px, -80px) scale(0.9);
    }
}

@keyframes ghostFloat3 {
    to {
        transform: translate(-50px, 50px) scale(1.15);
    }
}

/* VHS Horizontal Glitch Bar */
.ghost-vhs-bar {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--orange-ghost-medium) 20%, var(--orange-ghost-light) 50%, var(--orange-ghost-medium) 80%, transparent 100%);
    top: 30%;
    z-index: 6;
    animation: vhsBarScan 6s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes vhsBarScan {
    0% {
        top: -5%;
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    50% {
        top: 105%;
        opacity: 0.3;
    }

    51% {
        opacity: 0;
        top: -5%;
    }

    100% {
        opacity: 0;
        top: -5%;
    }
}

/* Floating Ghost Entities */
.ghost-entity {
    position: absolute;
    font-size: 50px;
    opacity: 0.08;
    z-index: 2;
    filter: blur(1px);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.ghost-entity-1 {
    top: 15%;
    left: 8%;
    font-size: 60px;
    animation: ghostDrift1 14s ease-in-out infinite alternate;
    opacity: 0.07;
}

.ghost-entity-2 {
    bottom: 20%;
    right: 10%;
    font-size: 45px;
    animation: ghostDrift2 18s ease-in-out infinite alternate;
    opacity: 0.06;
}

.ghost-entity-3 {
    top: 40%;
    right: 20%;
    font-size: 35px;
    animation: ghostDrift3 12s ease-in-out infinite alternate;
    opacity: 0.08;
}

.ghost-entity-4 {
    bottom: 30%;
    left: 15%;
    font-size: 40px;
    animation: ghostDrift4 16s ease-in-out infinite alternate;
    opacity: 0.05;
}

@keyframes ghostDrift1 {
    to {
        transform: translate(30px, 40px) rotate(15deg);
        opacity: 0.12;
    }
}

@keyframes ghostDrift2 {
    to {
        transform: translate(-40px, -30px) rotate(-10deg);
        opacity: 0.10;
    }
}

@keyframes ghostDrift3 {
    to {
        transform: translate(20px, -25px) rotate(8deg);
        opacity: 0.12;
    }
}

@keyframes ghostDrift4 {
    to {
        transform: translate(-25px, 35px) rotate(-12deg);
        opacity: 0.09;
    }
}

/* Ghost Grid */
.ghost-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(circle, var(--orange-ghost-bg) 1px, transparent 1px);
    background-size: 50px 50px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
}

/* ── Glowing Ghost Cursor Follower ── */
.ghost-cursor-follower {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 120px;
    z-index: 8;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: transform;
}

.ghost-cursor-follower.ghost-cursor-visible {
    opacity: 1;
}

/* Outer ambient glow */
.ghost-cursor-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.35) 0%, rgba(255, 140, 0, 0.15) 30%, rgba(255, 107, 0, 0.06) 55%, transparent 75%);
    filter: blur(12px);
    animation: ghostGlowPulse 3s ease-in-out infinite;
}

@keyframes ghostGlowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* Ghost SVG */
.ghost-cursor-svg {
    width: 100px;
    height: 120px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 179, 71, 0.7)) drop-shadow(0 0 40px rgba(255, 140, 0, 0.4)) drop-shadow(0 0 70px rgba(255, 107, 0, 0.2));
    animation: ghostSvgFloat 4s ease-in-out infinite;
}

@keyframes ghostSvgFloat {

    0%,
    100% {
        filter: drop-shadow(0 0 15px rgba(255, 179, 71, 0.7)) drop-shadow(0 0 40px rgba(255, 140, 0, 0.4)) drop-shadow(0 0 70px rgba(255, 107, 0, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(255, 200, 100, 0.8)) drop-shadow(0 0 50px rgba(255, 160, 30, 0.5)) drop-shadow(0 0 90px rgba(255, 120, 0, 0.25));
    }
}

/* Hide on mobile / touch devices */
@media (hover: none),
(max-width: 768px) {
    .ghost-cursor-follower {
        display: none !important;
    }
}

/* ── Ghost Mode Content ── */
.kf-content {
    position: relative;
    z-index: 10;
    max-width: 620px;
    text-align: center;
}

.kf-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px 6px 12px;
    border-radius: 100px;
    background: var(--orange-ghost-bg);
    border: 1px solid var(--orange-ghost-border);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.kf-badge.revealed {
    opacity: 1;
    transform: translateY(0);
}

.kf-badge-icon {
    font-size: 18px;
}

.kf-badge-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--orange-ghost-light);
    text-transform: uppercase;
}

.kf-ghost-mode .kf-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--orange-ghost-light) 0%, var(--orange-ghost-medium) 30%, #ffb347 50%, var(--orange-ghost-light) 70%, #ff9500 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px var(--orange-ghost-glow));
    animation: ghostTitleShimmer 5s ease-in-out infinite;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s 0.15s ease, transform 0.8s 0.15s ease;
}

.kf-ghost-mode .kf-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.kf-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 500;
    color: var(--orange-ghost-medium);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s 0.25s ease, transform 0.8s 0.25s ease;
}

.kf-subtitle.revealed {
    opacity: 1;
    transform: translateY(0);
}

.kf-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(200, 230, 220, 0.75);
    line-height: 1.75;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s 0.35s ease, transform 0.8s 0.35s ease;
}

.kf-desc.revealed {
    opacity: 1;
    transform: translateY(0);
}

.kf-ghost-mode .kf-desc strong {
    color: var(--orange-ghost-light);
    font-weight: 700;
}

/* ── Feature Items ── */
.kf-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s 0.45s ease, transform 0.8s 0.45s ease;
}

.kf-features-list.revealed {
    opacity: 1;
    transform: translateY(0);
}

.kf-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    background: var(--orange-ghost-bg);
    border: 1px solid var(--orange-ghost-border);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.kf-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.25) 60%,
            transparent 70%);
    transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    transform: skewX(-25deg);
}

.kf-feature-item:hover::before {
    left: 150%;
}

.kf-feature-item:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: var(--orange-ghost-light);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 8px 30px var(--orange-ghost-glow),
        0 16px 60px rgba(255, 107, 0, 0.15),
        0 0 0 1px rgba(255, 140, 0, 0.2);
}

.kf-feature-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
}

.kf-feature-item:hover .kf-feature-icon {
    transform: scale(1.15) rotate(3deg);
    filter: drop-shadow(0 0 8px var(--orange-ghost-light));
}

.kf-feature-item strong {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--orange-ghost-light);
    display: block;
    margin-bottom: 4px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
}

.kf-feature-item:hover strong {
    color: #fff;
    transform: translateX(2px);
}

.kf-feature-item p {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: rgba(200, 230, 220, 0.6);
    line-height: 1.5;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
}

.kf-feature-item:hover p {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(1px);
}

/* ── Ghost Mode Responsive ── */
@media (max-width: 768px) {
    .kf-page {
        padding: 80px 24px;
    }

    .kf-features-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ghost-entity {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .kf-page {
        padding: 70px 18px;
        min-height: auto;
    }

    .kf-content {
        max-width: 100%;
    }

    .kf-feature-item {
        padding: 12px;
    }

    .kf-feature-item strong {
        font-size: 13px;
    }

    .kf-feature-item p {
        font-size: 11.5px;
    }
}

/* ═══════════════════════════════════════════════════════════
   3D COVERFLOW GALLERY — Inside Landing Page
   ═══════════════════════════════════════════════════════════ */

/* ── Coverflow Description ── */
.lp-coverflow-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-body);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

/* ── Card Text Overlays ── */
.cf-overlay-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 16px 22px !important;
    background: linear-gradient(to top, rgba(6, 5, 14, 0.92) 0%, rgba(6, 5, 14, 0.6) 60%, transparent 100%) !important;
}

.cf-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 4px 0 2px;
    line-height: 1.2;
}

.cf-card-desc {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* ── Coverflow Lightbox / Modal ── */
.cf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cf-lightbox-open {
    opacity: 1;
    visibility: visible;
}

.cf-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 5, 14, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
}

.cf-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    width: 90%;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    border: 2px solid rgba(168, 85, 247, 0.4);
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.15),
        0 0 40px rgba(168, 85, 247, 0.3),
        0 0 80px rgba(124, 58, 237, 0.15),
        0 40px 100px rgba(0, 0, 0, 0.6);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cf-lightbox-open .cf-lightbox-content {
    transform: scale(1) translateY(0);
}

.cf-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.3);
    background: rgba(6, 5, 14, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-body);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s;
}

.cf-lightbox-close:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: var(--purple);
    color: #fff;
    transform: rotate(90deg);
}

.cf-lightbox-img {
    width: 100%;
    height: auto;
    max-height: 55vh;
    object-fit: cover;
    display: block;
}

.cf-lightbox-info {
    padding: 20px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cf-lightbox-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.30);
    color: #e9d5ff;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    align-self: flex-start;
}

.cf-lightbox-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 4px 0 0;
    line-height: 1.3;
}

.cf-lightbox-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 480px) {
    .cf-lightbox-content {
        max-width: 340px;
        border-radius: 18px;
    }

    .cf-lightbox-title {
        font-size: 18px;
    }

    .cf-lightbox-desc {
        font-size: 13px;
    }

    .cf-lightbox-info {
        padding: 16px 18px 22px;
    }
}

/* ═══════════════════════════════════════
   3D COVERFLOW GALLERY
   ═══════════════════════════════════════ */

.coverflow-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    user-select: none;
    -webkit-user-select: none;
}

.coverflow-viewport {
    perspective: 1200px;
    perspective-origin: 50% 45%;
    overflow: visible;
    position: relative;
    cursor: grab;
    touch-action: pan-y;
}

.coverflow-viewport:active {
    cursor: grabbing;
}

.coverflow-scene {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
    transform-style: preserve-3d;
}

/* ── Coverflow Card ── */
.coverflow-card {
    position: absolute;
    width: 280px;
    height: 400px;
    transition:
        transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.5s ease,
        filter 0.5s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
}

.coverflow-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(168, 85, 247, 0.08);
    transition: box-shadow 0.7s cubic-bezier(0.23, 1, 0.32, 1), border 0.5s ease;
    border: 3px solid transparent;
}

.coverflow-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* ── Active Card Glow Border ── */
.coverflow-card.cf-active .coverflow-card-inner {
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 0 0 3px rgba(168, 85, 247, 0.8),
        0 0 30px rgba(168, 85, 247, 0.5),
        0 0 60px rgba(124, 58, 237, 0.3),
        0 0 100px rgba(192, 38, 211, 0.15),
        0 30px 80px rgba(0, 0, 0, 0.6);
    animation: coverflowGlowPulse 3s ease-in-out infinite;
}

@keyframes coverflowGlowPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 3px rgba(168, 85, 247, 0.8),
            0 0 30px rgba(168, 85, 247, 0.5),
            0 0 60px rgba(124, 58, 237, 0.3),
            0 0 100px rgba(192, 38, 211, 0.15),
            0 30px 80px rgba(0, 0, 0, 0.6);
    }

    50% {
        box-shadow:
            0 0 0 3px rgba(192, 38, 211, 0.9),
            0 0 40px rgba(192, 38, 211, 0.6),
            0 0 80px rgba(168, 85, 247, 0.35),
            0 0 120px rgba(124, 58, 237, 0.2),
            0 30px 80px rgba(0, 0, 0, 0.6);
    }
}

/* Active card hover zoom */
.coverflow-card.cf-active .coverflow-card-inner img {
    transform: scale(1.03);
}

/* ── Dynamic Background System for Coverflow Cards ── */
.coverflow-wrapper {
    position: relative;
}

/* Dynamic background container */
.coverflow-dynamic-bg {
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    z-index: -1;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.coverflow-dynamic-bg.active {
    opacity: 1;
}

/* Card 1: Home - Campus/Community Theme */
.coverflow-dynamic-bg[data-card="0"] {
    background:
        radial-gradient(ellipse 120% 80% at 30% 20%, rgba(168, 85, 247, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 70% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(192, 38, 211, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(124, 58, 237, 0.05) 100%);
}

/* Card 2: Vibe Chats - Communication/Connection Theme */
.coverflow-dynamic-bg[data-card="1"] {
    background:
        radial-gradient(ellipse 100% 70% at 25% 30%, rgba(0, 245, 212, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 90% 50% at 75% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 70% 30% at 45% 85%, rgba(124, 58, 237, 0.10) 0%, transparent 40%),
        linear-gradient(225deg, rgba(0, 245, 212, 0.02) 0%, rgba(168, 85, 247, 0.04) 100%);
}

/* Card 3: RealVibes - Premium/Viral Theme */
.coverflow-dynamic-bg[data-card="2"] {
    background:
        radial-gradient(ellipse 110% 75% at 35% 25%, rgba(192, 38, 211, 0.20) 0%, transparent 55%),
        radial-gradient(ellipse 85% 55% at 65% 75%, rgba(168, 85, 247, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 65% 35% at 50% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, rgba(192, 38, 211, 0.05) 0%, rgba(168, 85, 247, 0.03) 100%);
}

/* Card 4: Vibers - Network/Social Theme */
.coverflow-dynamic-bg[data-card="3"] {
    background:
        radial-gradient(ellipse 105% 65% at 40% 35%, rgba(139, 92, 246, 0.16) 0%, transparent 50%),
        radial-gradient(ellipse 95% 45% at 60% 65%, rgba(0, 245, 212, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 75% 25% at 30% 80%, rgba(168, 85, 247, 0.10) 0%, transparent 40%),
        linear-gradient(315deg, rgba(139, 92, 246, 0.04) 0%, rgba(0, 245, 212, 0.03) 100%);
}

/* Card 5: VibeShop - Rewards/Achievement Theme */
.coverflow-dynamic-bg[data-card="4"] {
    background:
        radial-gradient(ellipse 115% 70% at 45% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 55% 80%, rgba(192, 38, 211, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 25% 60%, rgba(168, 85, 247, 0.09) 0%, transparent 45%),
        linear-gradient(270deg, rgba(255, 215, 0, 0.04) 0%, rgba(192, 38, 211, 0.03) 100%);
}

/* Animated floating particles for each theme */
.coverflow-dynamic-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px, 90px 90px;
    animation: floatParticles 20s linear infinite;
}

@keyframes floatParticles {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-30px, -30px) rotate(360deg);
    }
}

/* ── Card Overlay (label) ── */
.coverflow-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    background: linear-gradient(to top, rgba(6, 5, 14, 0.85) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.coverflow-card.cf-active .coverflow-card-overlay {
    opacity: 1;
}

.coverflow-card-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.35);
    color: #e9d5ff;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ── Card Reflection ── */
.coverflow-card-reflection {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(to bottom, rgba(168, 85, 247, 0.06), transparent);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
    transform: scaleY(-1) rotateX(180deg);
    opacity: 0.3;
    pointer-events: none;
}

.coverflow-card.cf-active .coverflow-card-reflection {
    opacity: 0.5;
}

/* ── Shimmer effect on cards ── */
.coverflow-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            transparent 30%,
            rgba(255, 255, 255, 0.08) 45%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.08) 55%,
            transparent 70%);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.coverflow-card.cf-active .coverflow-card-inner::after {
    opacity: 1;
    animation: cardShimmer 4s ease-in-out infinite;
}

@keyframes cardShimmer {
    0% {
        background-position: 200% 200%;
    }

    100% {
        background-position: -100% -100%;
    }
}

/* ── Navigation Controls ── */
.coverflow-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 20;
}

.coverflow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(168, 85, 247, 0.30);
    background: rgba(168, 85, 247, 0.06);
    color: var(--text-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.coverflow-btn svg {
    width: 20px;
    height: 20px;
}

.coverflow-btn:hover {
    background: rgba(168, 85, 247, 0.20);
    border-color: var(--purple);
    color: var(--purple);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
}

.coverflow-btn:active {
    transform: scale(0.95);
}

/* ── Navigation Dots ── */
.coverflow-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.coverflow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(168, 85, 247, 0.20);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 0;
}

.coverflow-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    transition: border-color 0.4s ease;
}

.coverflow-dot.active {
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    width: 28px;
    border-radius: 100px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5), 0 0 30px rgba(192, 38, 211, 0.25);
}

.coverflow-dot.active::after {
    border-color: rgba(168, 85, 247, 0.4);
    border-radius: 100px;
    inset: -4px;
}

.coverflow-dot:hover:not(.active) {
    background: rgba(168, 85, 247, 0.40);
    transform: scale(1.2);
}

/* ═══════════════════════════════════════
   COVERFLOW GALLERY — RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
    .coverflow-scene {
        height: 420px;
    }

    .coverflow-card {
        width: 240px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .coverflow-scene {
        height: 380px;
    }

    .coverflow-card {
        width: 200px;
        height: 290px;
    }

    .coverflow-btn {
        width: 40px;
        height: 40px;
    }

    .coverflow-btn svg {
        width: 16px;
        height: 16px;
    }

    .coverflow-nav {
        margin-top: 35px;
        gap: 14px;
    }

    .cf-card-title {
        font-size: 14px;
    }

    .cf-card-desc {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .coverflow-scene {
        height: 340px;
    }

    .coverflow-card {
        width: 180px;
        height: 260px;
    }

    .coverflow-card-inner {
        border-radius: 14px;
    }

    .lp-coverflow-desc {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }

    .coverflow-nav {
        margin-top: 25px;
        gap: 10px;
    }

    .coverflow-dot.active {
        width: 22px;
    }

    .cf-card-title {
        font-size: 13px;
    }

    .cf-card-desc {
        font-size: 10.5px;
    }
}
