* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.splash {
    position: relative;
    height: 100vh;
    display: flex;
    overflow: hidden;
    background: #0a0a0a;
}

.vector-bg {
    position: absolute;
    width: 110%;
    height: 130%;
    object-fit: cover;
    z-index: 1;
}

.left-section {
    position: relative;
    z-index: 2;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.right-section {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 4rem 2rem 1rem;
    color: #0a0a0a;
}

.brand {
    width: 100%;
    display: flex;
    justify-content: center;
}

.brand__logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
}

.message {
    margin: auto;
}

.message__title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    color: #0a0a0a;
}

.message__subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0 0 3rem 0;
    line-height: 1.3;
    color: #fff;
}

.highlight {
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0a0a0a;
}

.contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__item {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.contact__item:hover {
    opacity: 0.7;
}

.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (min-width: 1280px) {
    .message {
        margin-top: 42vh
    }
}

@media (min-width: 769px) and (max-width: 1279px) {
    .vector-bg {
        margin-top: -20%;
    }

    .message {
        margin-left: 20%;

    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .splash {
        flex-direction: column;
    }

    .vector-bg {
        top: -5%;
    }

    .left-section {
        flex: 0 0 40%;
        padding: 1.5rem;
    }

    .right-section {
        flex: 1;
        padding: 1.5rem;
    }

    .brand__logo {
        max-width: 60vw;
    }

    .message__title {
        font-size: 2rem;
    }

    .message__subtitle {
        font-size: 1rem;
    }


    .highlight::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 429px) {

    .vector-bg {
        top: -5%;
    }

    .left-section {
        flex: 0 0 35%;
        padding: 1rem;
    }

    .right-section {
        padding: 1rem;
        margin-top: 80px;
    }

    .message__title {
        font-size: 1.6rem;
    }

    .message__subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .contact__item {
        font-size: 0.9rem;
    }

    .icon {
        width: 18px;
        height: 18px;
    }
}