/* Refined Landing Page Styles - Signature Warm Aesthetic */

#landing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: #f5f1ed;
    /* Match app-primary background */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #3d3d3d;
    font-family: 'Azeret Mono', monospace;
    /* Consistent with app.js */
}

/* Background Aura Effect - Signature Colors */
#landing-aura {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #fcf7f2 0%, #f5f1ed 100%);
}

.aura-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    mix-blend-mode: multiply;
    animation: moveBlob 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #ff9a6c;
    /* signature orange */
    top: -150px;
    left: -100px;
}

.blob-2 {
    width: 450px;
    height: 450px;
    background: #ff6b9d;
    /* signature pink */
    bottom: -100px;
    right: -50px;
    animation-delay: -7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #ffa07a;
    /* signature peach */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseBlob 18s infinite alternate ease-in-out;
}

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

    100% {
        transform: translate(60px, 120px) scale(1.3);
    }
}

@keyframes pulseBlob {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Swiper Container */
#landing-swiper {
    flex: 1;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    width: 400%;
}

.landing-slide {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
    box-sizing: border-box;
}

.slide-content {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 4rem 2rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 12px 48px rgba(255, 154, 108, 0.15);
    animation: slideUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.landing-slide h1,
.landing-slide h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ff9a6c 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-slide p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #5d5d5d;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Pagination Dots */
#landing-pagination {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 154, 108, 0.2);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dot.active {
    background: #ff6b9d;
    width: 32px;
    border-radius: 6px;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ff9a6c 0%, #ff6b9d 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.3);
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:active {
    transform: scale(0.96);
}

.cta-button:hover {
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.5);
    transform: translateY(-2px);
}