.content {
    display: flex;
    flex-direction: column;
}

.intro {
    display: flex;
    flex-direction: column;
    gap: 160px;
    padding: 100px 120px;
    margin-bottom: 110px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url("../../assets/images/snowflake_intro_bg.webp") no-repeat top center / 100% auto;
    color: var(--white);
}

.intro-header-wrapper {
    max-width: 688px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.intro-header-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.intro-header-title {
    font-size: 77px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.intro-header-logo {
    width: 354px;
    height: 84px;
    aspect-ratio: 59/14;
}

.intro-header-description-wrapper {
    max-width: 380px;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.intro-header-description-text {
    font-size: 20px;
    line-height: 140%;
}

.intro-header-description-wrapper .light-button {
    max-width: 276px;
    font-size: 15px;
    line-height: 20px;
    padding: 10px 8px;
    gap: 8px;
}

.intro-benefits {
    display: flex;
    gap: 135px;
}

.intro-benefits-title {
    flex: 0 0 600px;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

.intro-benefits-content {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.intro-benefits-text {
    font-size: 20px;
    line-height: 140%;
}

.available-data,
.who-this-is-for {
    display: flex;
    gap: 30px;
    padding: 40px 120px;
}

.who-this-is-for {
    margin-bottom: 110px;
}

.available-data-image,
.who-this-is-for-image {
    width: 585px;
    height: 585px;
}

.available-data-image img,
.who-this-is-for-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.available-data-text,
.who-this-is-for-text {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.available-data-description,
.who-this-is-for-description,
.who-this-is-for-warning-text {
    color: var(--dark-60);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.who-this-is-for-warning-text {
    line-height: 140%;
}

.available-data-list,
.who-this-is-for-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding-left: 0;
}

.available-data-list li,
.who-this-is-for-list li {
    position: relative;
    padding-left: 32px;
    font-size: 20px;
    line-height: normal;
    color: var(--dark-100);
}

.available-data-list li::before,
.who-this-is-for-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--dark-100);
    font-size: 20px;
    font-weight: 700;
}

.how-it-works {
    color: var(--white);
    padding: 100px 120px;
    background:
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
            url("../../assets/images/snowflake_intro_bg.webp") bottom / cover no-repeat;
    background-position: 100% 79%;
}

.how-it-works-title {
    text-align: center;
    font-size: 20px;
    line-height: 140%;
}

.how-it-works-text {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

@media screen and (max-width: 960px) {
    .intro {
        background:
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                url("../../assets/images/snowflake_intro_bg.webp") no-repeat top center / cover;
        padding: 64px 40px;
        margin-bottom: 36px;
        gap: 100px;
    }

    .intro-header-title-wrapper {
        max-width: 571px;
    }

    .intro-header-title {
        font-size: 48px;
    }

    .intro-header-logo {
        width: 219px;
        height: 52px;
        aspect-ratio: 219/52;
    }

    .intro-benefits {
        flex-direction: column;
        gap: 16px;
    }

    .intro-benefits-title {
        flex: unset;
        font-size: 34px;
    }

    .available-data,
    .who-this-is-for {
        flex-direction: column;
        padding: 64px 40px;
    }

    .who-this-is-for {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 34px;
    }

    .available-data-image,
    .who-this-is-for-image {
        width: 688px;
        height: 688px;
    }

    .how-it-works {
        padding: 100px 40px;
    }

    .how-it-works-text {
        font-size: 34px;
    }
}

@media screen and (max-width: 590px) {
    .intro {
        padding: 64px 16px;
        margin-bottom: 11px;
        gap: 75px;
    }

    .intro-header-description-text {
        font-size: 16px;
    }

    .intro-benefits-text {
        font-size: 16px;
    }

    .available-data,
    .who-this-is-for {
        padding: 64px 16px;
    }

    .who-this-is-for {
        margin-bottom: 11px;
    }

    .available-data-image,
    .who-this-is-for-image {
        width: 100%;
        height: 343px;
    }

    .available-data-description,
    .who-this-is-for-description {
        font-size: 16px;
    }

    .how-it-works {
        padding: 75px 16px;
    }

    .how-it-works-text {
        font-size: 20px;
    }
}
