html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'IBM Plex Sans', sans-serif;
    overflow: hidden;
}

body {
    background: linear-gradient(60deg, #021C3A 28.31%, #0A4968 88.01%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/landing-background-greyed.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.7;
}

.radial-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1.5;
    background: radial-gradient(52.19% 100% at 50% 0%, #000 0%, rgba(0, 0, 0, 0.00) 95.31%);
    transform: rotate(270deg);
    left: -35%;
    pointer-events: none;
}

.grid-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-square {
    position: absolute;
    width: 96px;
    height: 96px;
    border-right: 1px solid #D0D5DD;
    border-bottom: 1px solid #D0D5DD;
    opacity: 0.1;
}

.whiteish {
    background-color: #F2F4F7;
    opacity: 0.07 !important;
}

.logo-container {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

    .logo-container img {
        width: 216px;
    }

.center-content {
    position: relative;
    z-index: 3;
    color: #F7F8F9;
    text-align: center;
    max-width: 934px;
    padding: 0 20px;
    animation: slideFadeIn 1s ease forwards;
    opacity: 0;
}

    .center-content h1 {
        font-size: 40px;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .center-content .highlight {
        color: #CCF8F5;
    }

    .center-content p {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 32px;
    }

.button-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    animation: slideFadeIn 1.5s ease forwards;
    opacity: 0;
}


.button {
    padding: 13px 16px 10px 16px;
    border-radius: 30px;
    outline: 1.5px solid #CCF8F5;
    color: #E9FCFB;
    font-weight: 600;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

    .button:hover {
        background: rgba(204, 248, 245, 0.1);
    }

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

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

@media (max-width: 768px) {
    .center-content h1 {
        font-size: 24px;
        line-height: 1.4;
    }

    .center-content p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .button-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }

    .button {
        width: 90%;
        text-align: center;
    }

    /*    .logo-container img {
                width: 160px;
            }*/
}

