/* ============================================================================
   LANDING.CSS - Only loaded on landing.html
   ============================================================================ */

.landing-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.landing-hero {
    max-width: 600px;
    text-align: center;
}

.landing-title {
    font-size: 3.5em;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.landing-subtitle {
    font-size: 1.3em;
    color: #4a5568;
    margin-bottom: 40px;
    font-weight: 500;
}

.landing-story {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #4a5568;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.landing-story p {
    margin-bottom: 15px;
    font-size: 16px;
}

.landing-story p:last-child {
    margin-bottom: 0;
}

.landing-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.landing-actions .btn {
    flex: 1;
    min-width: 200px;
}

.landing-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-label {
    font-size: 0.95em;
    color: #4a5568;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
    .landing-title {
        font-size: 2.5em;
    }

    .landing-actions .btn {
        width: 100%;
    }
}