/* Variables */
:root {
    --primary: #FF4B72;
    --secondary: #6B48FF;
    --accent-teal: #00F5FF;
    --text-light: #FFFFFF;
    --text-muted: #E2D9FF;
    --bg-dark: #0f0c29;
    --glass-bg: rgba(255, 255, 255, 0.04);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

/* Hardware Accelerated Aurora Backgrounds */
.aurora-bg-1, .aurora-bg-2 {
    position: fixed; border-radius: 50%; filter: blur(100px); z-index: -1; pointer-events: none;
    will-change: transform;
}
.aurora-bg-1 {
    top: -20%; left: -10%; width: 60vw; height: 60vw;
    background: rgba(107, 72, 255, 0.25); animation: float 15s infinite alternate;
}
.aurora-bg-2 {
    bottom: -20%; right: -10%; width: 50vw; height: 50vw;
    background: rgba(255, 75, 114, 0.15); animation: float 20s infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(10vw, 10vh, 0); }
}

/* Wrapper */
.landing-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* Added huge padding bottom so content clears the fixed button */
    padding: 40px 20px 180px 20px;
}

/* Mobile First Layout (Stacked naturally) */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* Adjusted height to account for the fixed bottom button */
    min-height: 85vh; 
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 3.2rem; font-weight: 800; text-align: center; margin-bottom: 30px;
    background: linear-gradient(135deg, #fff, #b99dff, #fff); background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}

@keyframes shine { to { background-position: 200% center; } }

/* Hardware Acceleration Fix for Video Tearing */
.video-wrapper {
    position: relative;
    width: 100%; max-width: 320px;
    margin-bottom: 30px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
}

.video-wrapper::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle at 50% 50%, rgba(107, 72, 255, 0.4) 0%, rgba(0,0,0,0) 60%);
    z-index: -1; filter: blur(50px);
}

.video-wrapper video {
    width: 100%; border-radius: 35px; border: 6px solid #14142B;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Scroll Prompt */
.scroll-prompt {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-muted); cursor: pointer; transition: color 0.3s;
}
.scroll-prompt:hover { color: var(--accent-teal); }
.scroll-prompt span { font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.scroll-prompt svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2; animation: bounce 2s infinite; }

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* Content Section (Bubbles) */
.content-section {
    width: 100%;
    display: flex; justify-content: center;
    margin-top: 20px;
    z-index: 2;
}

.glass-panel {
    width: 100%; max-width: 500px;
    padding: 30px 20px;
    background: var(--glass-bg);
    border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.features-list { display: flex; flex-direction: column; gap: 15px; }
.feature-bubble {
    display: flex; align-items: flex-start; gap: 15px; padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05);
}
.check-icon { width: 24px; height: 24px; stroke: var(--primary); stroke-width: 3; fill: none; flex-shrink: 0; filter: drop-shadow(0 0 5px rgba(255, 75, 114, 0.5)); }
.feature-bubble span,
.feature-bubble span a {
    font-size: 1.05rem;
    color: #F4EEFF;
    line-height: 1.4;
}

.feature-bubble span a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* In-flow Footer Logo */
.footer-logo {
    margin-top: 50px;
    font-size: 1.2rem; font-weight: 800; letter-spacing: 2px; color: rgba(255,255,255,0.4);
    text-align: center; width: 100%;
}

/* =========================================
   2026 Premium Sticky Bottom CTA
   ========================================= */
.fixed-bottom-wrapper {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    padding: 20px 20px 35px 20px;
    /* Gradient fade to ensure text behind the button is masked cleanly */
    background: linear-gradient(to top, rgba(15, 12, 41, 0.98) 20%, rgba(15, 12, 41, 0) 100%);
    z-index: 100;
    display: flex; justify-content: center;
    pointer-events: none; /* Allows scrolling through the transparent part */
}

.fixed-bottom-wrapper .cta-button {
    pointer-events: auto; /* Re-enables clicks specifically for the button */
    display: inline-block; width: 100%; max-width: 400px; text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-light); text-decoration: none; padding: 22px 30px; border-radius: 60px;
    font-size: 1.25rem; font-weight: 700; 
    /* Massive premium glow effect */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(107, 72, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.fixed-bottom-wrapper .cta-button:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 35px rgba(107, 72, 255, 0.7); 
}

/* Desktop Magic Layout */@media (min-width: 960px) {
    .landing-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 28px;
        min-height: auto;
        padding: 40px 40px 140px 40px;
    }

    .hero-section {
        width: 100%;
        max-width: 900px;
        min-height: auto;
        align-items: center;
    }

    .main-title {
        font-size: 4rem;
        text-align: center;
    }

    .scroll-prompt {
        display: none;
    }

    .content-section {
        width: 100%;
        margin-top: 0;
    }

    .glass-panel {
        max-width: 900px;
        padding: 40px;
    }

    .footer-logo {
        position: static;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 50px;
    }

    .fixed-bottom-wrapper .cta-button {
        max-width: 450px;
    }
}
/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 18px 20px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}/* Hero Description Typography */
.hero-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 680px;
    margin: 0 auto 35px auto;
    text-align: center;
    padding: 0 10px;
}

.hero-description p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Adjusting size for desktop */
@media (min-width: 960px) {
    .hero-description p {
        font-size: 1.25rem;
    }
}
.hero-section > p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto 34px auto;
    position: relative;
    z-index: 2;
    font-size: 0;
}

.hero-section > p > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #F8F4FF;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-section > p > a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32), 0 0 24px rgba(107, 72, 255, 0.25);
}

@media (max-width: 640px) {
    .hero-section > p {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
    }

    .hero-section > p > a {
        width: 100%;
    }
}

.real-life-panel {
    position: relative;
    overflow: hidden;
    padding: 42px;
    background:
        radial-gradient(circle at top left, rgba(107, 72, 255, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 75, 114, 0.12), transparent 32%),
        rgba(255, 255, 255, 0.045);
}

.real-life-panel h2 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: 1.7rem;
    line-height: 1.15;
}

.real-life-panel p {
    max-width: 760px;
    margin: 0;
    color: #EEE8FF;
    font-size: 1.08rem;
    line-height: 1.65;
}

.real-life-panel p + p {
    margin-top: 16px;
}

.content-section:nth-of-type(7) .glass-panel {
    position: relative;
    overflow: hidden;
    padding: 42px;
    background:
        radial-gradient(circle at top left, rgba(0, 245, 255, 0.11), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 75, 114, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.045);
}

.content-section:nth-of-type(7) .glass-panel h2 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: 1.7rem;
    line-height: 1.15;
}

.content-section:nth-of-type(7) .glass-panel p {
    max-width: 760px;
    margin: 0;
    color: #EEE8FF;
    font-size: 1.08rem;
    line-height: 1.65;
}

.content-section:nth-of-type(7) .glass-panel p + p {
    margin-top: 16px;
}

@media (max-width: 640px) {
    .real-life-panel {
        padding: 28px 22px;
    }

    .real-life-panel h2 {
        font-size: 1.35rem;
        line-height: 1.2;
    }

    .real-life-panel p {
        font-size: 1rem;
        line-height: 1.55;
    }
}
