/* Homepage landing — centered, symmetrical layout */

/* Brighter background */
.landing-page .background-video {
    filter: brightness(1.25) saturate(1.1);
}

.landing-page .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.landing-page .hero-background {
    opacity: 0.25;
}

.landing-page .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    gap: 0.25rem;
}

.landing-page .hero-logo {
    margin-bottom: 1rem;
}

.landing-page .hero-title {
    font-size: clamp(1rem, 3vw, 1.65rem);
    letter-spacing: 0.14em;
    line-height: 1.45;
    margin: 0 0 2rem;
    max-width: 22em;
}

.landing-page .hero-title .title-line {
    display: block;
}

.landing-page .portal-links {
    margin-top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.landing-page .main-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    max-width: 512px;
    margin: 0 auto;
}

.landing-page .portal-link {
    flex: 0 0 156px;
    width: 156px;
    min-height: 88px;
    aspect-ratio: unset;
    padding: 1.25rem 1rem;
}

.landing-page .portal-link i {
    margin-bottom: 0.65rem;
}

@media (max-width: 540px) {
    .landing-page .main-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 320px;
        gap: 0.75rem;
    }

    .landing-page .portal-link {
        flex: unset;
        width: 100%;
        min-height: 82px;
    }

    /* Center the 5th button on its own row */
    .landing-page .portal-link:nth-child(5) {
        grid-column: 1 / -1;
        width: 50%;
        justify-self: center;
    }

    .landing-page .hero-title {
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 380px) {
    .landing-page .main-links {
        max-width: 280px;
    }

    .landing-page .portal-link:nth-child(5) {
        width: 56%;
    }
}
