/* Landing Page Specific Styles */
@keyframes float {

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

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

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.floating {
    animation: float 3s ease-in-out infinite;
}

#landing.view {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: pageEnter 0.5s ease-out;
}

.landing-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
    color: white;
    margin: 0 auto;
}

.logo-container {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-card {
    background: #1e293b;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Allow landing to be full-width on desktop if needed, 
   but since #app is capped at 600px, we adjust in layouts.css */
