:root {
    --purple: rgba(115, 107, 255, 1);
}

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Regular.woff2") format("woff2");
    font-weight: 400;
}

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Medium.woff2") format("woff2");
    font-weight: 500;
}

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Semibold.woff2") format("woff2");
    font-weight: 600;
}

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Bold.woff2") format("woff2");
    font-weight: 700;
}

html,
body {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: "General Sans", Arial, sans-serif;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.split {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.start {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

nav {
    width: calc(100% - 140px);
    padding: 20px 40px;
    position: fixed;
    top: 30px;
    border-radius: 20px;
    box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.03);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo img {
    height: 45px;
    width: 45px;
}

.logo a {
    font-weight: 600;
    font-size: 24px;
}

section {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

#section-hero {
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.65), transparent 35%),
        linear-gradient(135deg, #f4efff 0%, #d7d2ff 45%, #9993ff 100%);
}

#section-hero>div {
    margin-top: 200px;
}

#img-hero-bottom {
    width: 700px;
    margin-top: 80px;
    max-width: calc(100% - 30px);
}

button {
    font-family: "General Sans", Arial, sans-serif;
    border-radius: 100px;
    font-weight: 500;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s all;
}

button:hover {
    filter: brightness(0.8);
}

.btn-purple {
    background-color: var(--purple);
    color: white;
}

.tag-purple {
    border: 2px solid var(--purple);
    color: var(--purple);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
}

h1 {
    font-size: 64px;
    font-weight: 600;
    margin: 15px;
    max-width: calc(100vw - 60px);
}

p {
    font-size: 20px;
    font-weight: 400;
    margin: 0px;
    max-width: 700px;
    line-height: 28px;
}

#button-apple {
    cursor: pointer;
    width: 150px;
    transition: 0.3s all;
}

#button-apple:hover {
    filter: brightness(0.8);
}

#section-features {
    padding: 80px;
    gap: 50px;
    margin-bottom: 280px;
}

.feature {
    gap: 50px;
}

.feature img {
    max-width: 40vw;
}

.feature-text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    max-width: 1200px;
    text-wrap: wrap;
}

.feature-text ul {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding-left: 0px;
}

.feature-text li {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 8px;
}

.feature-text ul img {
    width: 22px;
    height: 22px;
}

.feature-text p {
    text-align: left;
}

.feature-text a {
    color: rgba(92, 92, 92, 1);
    font-weight: 600;
    font-size: 16px;
}

.feature-text h2 {
    font-size: 52px;
    font-weight: 600;
    text-align: left;
    margin: 10px 0px;
}

footer {
    background:
        radial-gradient(circle at 82% 78%, rgba(96, 88, 220, 0.45), transparent 32%),
        linear-gradient(135deg, #171537 0%, #252254 45%, #0f0e25 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-cta {
    background: linear-gradient(135deg,
            #6f63ff 0%,
            #4d49a8 45%,
            #19183c 100%);
    width: calc(100% - 200px);
    border-radius: 20px;
    padding: 50px;
    max-height: calc(330px - 100px);
    transform: translateY(-30px);
}

.footer-cta>div {
    text-align: left;
}

.footer-cta>img {
    height: 560px;
    transform: translateY(-110px);
}

.footer-cta a {
    font-weight: 600;
    font-size: 16px;
}

.footer-cta h2 {
    font-weight: 600;
    font-size: 52px;
    margin: 15px 0px;
}

.footer-cta #button-apple {
    margin-top: 50px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 160px);
    margin-bottom: 30px;
}

.privacy-policy {
    cursor: pointer;
}

@media (max-width: 768px) {
    #section-hero h1 {
        font-size: 20px;
    }

    #section-hero p {
        font-size: 12px;
        line-height: 150%;
    }

    #tag-purple {
        font-size: 14px;
    }

    nav {
        padding: 10px 20px;
        width: calc(100% - 60px);
    }

    #section-features {
        padding: 80px 20px;
        gap: 50px;
        margin-bottom: 280px;
    }

    .feature {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .feature > div > img {
        width: 100%!important;
        max-width: none;
    }

    .footer-cta {
        display: none;
    }

    #section-features {
        margin-bottom: 0px;
    }

    footer {
        padding-top: 30px;
    }

    .footer-bottom {
        display: flex;
        align-items: start;
        justify-content: start;
        flex-direction: column;
        text-align: left;
        width: calc(100% - 40px);
        gap: 15px;
    }
}