:root {
    color-scheme: light;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Metropolis, 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
    background: #f3f3f3;
    color: #111111;
}

.lucy-landing {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
}

.lucy-landing__content {
    background: #f3f3f3;
    padding: 30px 22px 44px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 42vh;
}

.lucy-landing__brand {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
}

.lucy-landing__brand-mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.lucy-landing__brand-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
    padding-top: 2px;
}

.lucy-landing__brand-title {
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.lucy-landing__brand-subtitle {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #3c3c3c;
}

.lucy-landing__copy {
    max-width: 370px;
    margin: auto 0;
    padding-top: 65px !important;
    padding-left: 50px !important;
}

.lucy-landing__title {
    margin: 0;
    color: #000000;
    font-size: 36px;
    font-style: normal;
    line-height: 120%;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.lucy-landing__description {
    margin: 18px 0 0;
    max-width: 300px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: #4a4a4a;
}

.lucy-landing__actions {
    margin-top: 26px;
}

.lucy-landing__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    background: #06A1B6;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgb(67 181 200 / 0.22);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.lucy-landing__button:hover,
.lucy-landing__button:focus-visible {
    background: #36a9bc;
    box-shadow: 0 14px 30px rgb(67 181 200 / 0.28);
    transform: translateY(-1px);
    outline: none;
}

.lucy-landing__visual {
    position: relative;
    min-height: 58vh;

    overflow: hidden;
    background: linear-gradient(180deg, #2e8fb6 0%, #1c6b9e 36%, #11568e 100%);
}

.lucy-landing__art,
.lucy-landing__noise,
.lucy-landing__overlay,
.lucy-landing__overlay-secondary {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lucy-landing__art {
    width: 100%;
    height: 100%;
    z-index: 0;
}

.lucy-landing__art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lucy-landing__overlay {
    background: radial-gradient(circle at 50% 82%, rgb(7 54 106 / 0.82) 0%, rgb(7 54 106 / 0.8) 18%, rgb(7 54 106 / 0) 40%);
    z-index: 0;
}

.lucy-landing__overlay-secondary {
    background: linear-gradient(180deg, rgb(255 255 255 / 0.05) 0%, rgb(255 255 255 / 0) 28%, rgb(0 0 0 / 0.18) 100%);
    z-index: 0;
}

.lucy-landing__noise {
    opacity: 0.1;
    mix-blend-mode: soft-light;
    background-image: radial-gradient(rgb(255 255 255 / 0.9) 0.5px, transparent 0.8px);
    background-size: 4px 4px;
    z-index: 0;
}

.lucy-landing__welcome {
    position: absolute;
    right: 6.5%;
    top: 57%;
    transform: translateY(-50%);
    margin: 0;
    font-size: clamp(52px, 7vw, 86px);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: rgb(228 250 248 / 0.7);
    text-shadow: 0 1px 0 rgb(255 255 255 / 0.26), 0 18px 40px rgb(0 0 0 / 0.1);
    z-index: 1;
}

@media (min-width: 900px) {
    .lucy-landing {
        grid-template-columns: 37.5% 62.5%;
    }

    .lucy-landing__content,
    .lucy-landing__visual {
        min-height: 100vh;
    }

    .lucy-landing__visual {
        aspect-ratio: auto;
    }

    .lucy-landing__content {
        padding: 28px 36px 40px 58px;
    }

    .lucy-landing__copy {
        padding-top: 0;
        margin-top: 14vh;
    }

    .lucy-landing__title {
        font-size: 36px;
    }

    .lucy-landing__description {
        max-width: 348px;
        font-size: 16px;
    }

    .lucy-landing__welcome {
        right: 7.2%;
        top: 63%;
    }
}

@media (max-width: 899px) {
    .lucy-landing__welcome {
        left: 50%;
        right: auto;
        top: 72%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
}

