/* Landing Page — works within header/footer frame */

.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px;
    text-align: center;
    min-height: calc(100vh - 64px - 200px);
    animation: landingEntrance 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes landingEntrance {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.landing-logo {
    margin-bottom: 40px;
}

.landing-logo img {
    width: 280px;
    height: auto;
}

/* Title */
.landing-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A171B;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 500px;
    letter-spacing: 0.5px;
}

/* Buttons */
.landing-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 460px;
}

.landing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: #4752C4;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
    letter-spacing: 0.3px;
}

.landing-btn:hover {
    background: #3a44b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(71, 82, 196, 0.3);
}

.landing-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.landing-btn svg {
    flex-shrink: 0;
}

/* Footer (kept for standalone landing without global footer) */
.landing-footer {
    background: #4752C4;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.landing-footer p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.landing-copyright {
    margin-top: 16px !important;
    font-size: 13px !important;
    opacity: 0.7 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .landing-page {
        padding: 40px 20px 32px;
        min-height: calc(100vh - 64px - 160px);
    }
}

@media (max-width: 480px) {
    .landing-page {
        padding: 32px 16px 24px;
    }

    .landing-logo img {
        width: 220px;
    }

    .landing-title {
        font-size: 17px;
    }

    .landing-btn {
        font-size: 14px;
        padding: 16px 24px;
    }
}
