@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    height: 7px;
    width: 7px;
  }
  *::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #0F1024;
  }
  
  *::-webkit-scrollbar-track:hover {
    background-color: #0F1024;
  }
  
  *::-webkit-scrollbar-track:active {
    background-color: #0F1024;
  }
  
  *::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #171E33;
  }
  
  *::-webkit-scrollbar-thumb:hover {
    background-color: #171E33;
  }
  
  *::-webkit-scrollbar-thumb:active {
    background-color: #171E33;
  }
  
body {
    font-family: "Inter", sans-serif;
    background: #0F1024;
    width: 100%;
    height: 100vh;
    color: white;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
}

header ul {
    display: flex;
    align-items: center;
    gap: 4rem;
    list-style: none;
}

header ul a {
    color: #a9b1cc;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
}

header ul a:hover {
    color: #357eff;
}

header .btn {
    padding: .5rem 1rem;
    background-color: #171E33;
    border-radius: .5rem;
    text-decoration: none;
    color: #357eff;
    font-size: 18px;
    font-weight: 500;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section .title {
    margin-top: 52px;
    text-align: center;
    font-size: 56px;
    line-height: 72px;
    font-weight: 500;
}

section .title .text-underline {
    position: relative;
}

section .title .text-underline::after {
    content: '';
    position: absolute;
    bottom: -.325rem;
    left: 3rem;
    right: -.5rem;
    height: .75rem;
    z-index: -1;
    background-image: url(https://inverse.sh/assets/images/underline.svg);
    background-repeat: no-repeat;
}

.text-styled {
    background: linear-gradient(91deg, #8C5EFF 0%, #4954FF 54.288846254348755%, #11C9FF 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 58px;
    font-weight: 600;
}

section .sub-title {
    text-align: center;
    margin-top: 2rem;
    font-size: 20px;
    font-weight: 500;
    max-width: 660px;
    display: inline-flex;
    color: #a9b1cc;
    line-height: 25px;
}

section .buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

section .buttons .btn1 {
    border-radius: .5rem;
    background: linear-gradient(132deg, #8C5EFF 0%, #4954FF 54.29%, #11C9FF 100%);
    padding: 12px 36px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: white;
    text-decoration: none;
    transition: all .3s;
}

section .buttons .btn2 {
    border-radius: .5rem;
    padding: 12px 36px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: white;
    border: #11C9FF solid 1px;
    text-decoration: none;
    transition: all .3s;
}

.bg::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 100%;
    max-width: 904px;
    max-height: 300px;
    z-index: 1;
    background: linear-gradient(130deg, #8C5EFF 0%, #4954FF 54.29%, #11C9FF 100%);
    filter: blur(212px);
}

section#pricing {
    margin-top: 2.5rem;
    background-color: #0F1024;
    min-height: 500px;
    width: 100%;
    z-index: 100;
    color: white; 
}

section .cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem;
    width: 90%;
}

section .card {
    width: 100%;
    background-color: #171E33;
    border-radius: .5rem;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

section .card .card-title {
    font-size: 36px;
    font-weight: 700;
    color: #a9b1cc;
    text-align: center;
}

section .card .line {
    width: 100%;
    height: 1px;
    background: linear-gradient(91deg, #8C5EFF 0%, #4954FF 54.288846254348755%, #11C9FF 100%);
    margin: 1rem 0;
}

section .card .price {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}

section .card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

section .card ul li {
    font-size: 15px;
    font-weight: 500;
    color: #a9b1cc;
}

section .card .btn {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    width: 100%;
    border-radius: .5rem;
    background: linear-gradient(132deg, #8C5EFF 0%, #4954FF 54.29%, #11C9FF 100%);
    padding: .5rem 1rem;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: white;
    text-decoration: none;
    transition: all .3s;
}

section .card .btn:hover {
    transform: scale(1.05);
}

footer {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    user-select: none;
}

footer .items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .item {
    display: flex;
    align-items: center;
    gap: .5rem;
}

footer .item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

footer .copyright {
    text-align: center;
}

footer .copyright span {
    font-size: 14px;
}

footer span, footer a {
    color: #a9b1cc;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
}

footer a:hover {
    color: #357eff;
}

@media screen and (max-width: 800px) {
    header .invisible {
        display: none;
    }

    header ul {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }

    header ul a {
        font-size: 16px;
        margin: 0.5rem 0;
    }

    header .btn {
        font-size: 16px;
        padding: 0.5rem 1rem;
    }

    section .title {
        font-size: 40px;
        line-height: 56px;
        margin-top: 32px;
    }

    section .sub-title {
        margin: auto;
        font-size: 16px;
        line-height: 22px;
        max-width: 90%;
        margin-top: 1.5rem;
    }

    section .buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    section .buttons .btn1, 
    section .buttons .btn2 {
        padding: 10px 30px;
        font-size: 16px;
    }

    section .cards {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
    }

    section .card {
        width: 90%;
    }

    section .card .card-title {
        font-size: 28px;
    }

    section .card .price {
        font-size: 40px;
    }

    section .card ul li {
        font-size: 14px;
    }

    footer {
        padding: 1rem;
    }

    footer .items {
        flex-direction: column;
        gap: 1rem;
    }

    footer .item img {
        width: 30px;
        height: 30px;
    }

    footer span, footer a {
        font-size: 14px;
    }
}