/* GENERAL STYLES */

body {
    margin: 0;
    background-color: #0C0810;
}

a {
    color: inherit;
    text-decoration: none;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}



/* HEADER */

header {
    position: fixed;
    padding: 24px 80px;
    width: calc(100% - 160px);
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 999;
}

header.scrolled {
    background-color: #0C0810;
}

.header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header a {
    font-family: "M PLUS 1", sans-serif;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-links p {
    font-size: 13.5px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFFFFF;
}

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-ctas a {
    border-radius: 75px;
    padding: 14px 24px;
}

.nav-ctas p {
    font-size: 13.5px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.secondary-cta {
    border: 1.5px solid #FFFFFF;
    color: #FFFFFF;
}

.secondary-cta:hover,
.primary-cta:hover {
    transition: 1s ease-in-out;
    border: 1.5px solid #FFFFFF;
    background-color: #FFFFFF;
    color: #3F008B;
}

.primary-cta {
    background-color: #3F008B;
    border: 1.5px solid #3F008B;
    color: #FFFFFF;
}

/* Hamburger hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 32px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile menu */
@media (max-width: 1080px) {
    .hamburger {
        display: flex;
        z-index: 1001; /* above menu */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        background: #0C0810;
        position: absolute;
        top: 100%;
        right: 0;
        width: 50%;
        min-width: 220px;
        padding: 24px;
    }

    .nav-ctas {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        background: #0C0810;
        position: absolute;
        top: 160px;
        right: 0;
        width: 50%;
        min-width: 220px;
        padding: 24px;
    }

    .nav-open .nav-links,
    .nav-open .nav-ctas {
        display: flex;
    }

    /* animate hamburger to X */
    .nav-open .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(8.5px, 8.5px);
    }
    .nav-open .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .nav-open .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 1080px) {
    header {
        padding: 20px 24px;
        width: calc(100% - 48px);
    }

    .logo img {
        height: 36px;
    }

    .nav-links p {
        font-size: 12.5px;
    }

    .nav-ctas a {
        border-radius: 60px;
        padding: 12px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-ctas p {
        font-size: 12.5px;
    }

    .secondary-cta {
        border: 1px solid #FFFFFF;
    }

    .secondary-cta:hover,
    .primary-cta:hover {
        border: 1px solid #FFFFFF;
    }

    .primary-cta {
        border: 1px solid #3F008B;
    }
}




/* HERO SECTION */

section.hero-section {
    height: 100vh;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
}

.herosection {
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    overflow: hidden;
}

.mainhero {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mainhero-texts {
    font-family: "Space Grotesk", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mainhero-texts h1 {
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 68px;
    background: linear-gradient(90deg, #F5F2F9 0%, #C4C2C8 48.33%, #F3F3F3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mainhero-texts .mh-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #89868C;
}

.mainhero-ctas {
    font-family: "Space Grotesk", sans-serif;
    display: flex;
    align-items: center;
    gap: 28px;
}

.mainhero-ctas a {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #FFFFFF;
    padding: 14px 24px;
    border-radius: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.mainhero-ctas img {
    width: 24px;
    height: auto;
}

.hero-maincta {
    background-color: #FFFFFF;
    color: #433D48;
}

.clipped-div {
    font-family: "Outfit", sans-serif;
    width: 337px;
    height: 114px;
    background-color: #201925;
    color: white;
    display: flex;
    align-items: center;
    clip-path: url(#headerShape);
    -webkit-clip-path: url(#headerShape);
    position: relative;
}

.installed-num {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    left: 28px;
}

.downloads-number {
    position: relative;
    width: fit-content;
}

.in-img img {
    height: 40px;
    width: auto;
}
.in-texts h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 111%; /* 35.073px */
    letter-spacing: -0.379px;
}

.in-texts span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.238px;
    color: #89868C;
}

.install-link {
    position: absolute;
    top: -6px;
    right: -6px;
}

.install-link img {
    width: 48px;
    height: auto;
}

.hero-mainimg {
    max-width: 500px;
    width: 100%;
}

.hero-mainimg img {
    width: 100%;
    height: auto;
}

/* .herodeco1 {
    width: 423px;
    height: 427.631px;
    flex-shrink: 0;
    border-radius: 427.631px;
    opacity: 0.56;
    background: #3F008B;
    filter: blur(344.6465148925781px);
    top: -70px;
    right: -190px;
}

.herodeco2 {
    width: 423px;
    height: 427.631px;
    flex-shrink: 0;
    border-radius: 427.631px;
    opacity: 0.62;
    background: #3F008B;
    filter: blur(344.6465148925781px);
    bottom: -4px;
    left: -150px;
} */

@media (max-width: 1080px) {
    section.hero-section {
        padding: 0 24px;
        height: fit-content;
    }

    .herosection {
        margin-top: 148px;
        flex-direction: column;
        gap: 60px;
    }

    .mainhero {
        max-width: 800px;
        width: 100%;
        gap: 28px;
    }

    .mainhero-texts {
        font-family: "Space Grotesk", sans-serif;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mainhero-texts h1 {
        font-size: 48px;
        line-height: 60px;
    }

    .mainhero-texts .mh-text {
        font-size: 16px;
        line-height: normal;
    }

    .mainhero-ctas {
        gap: 20px;
    }

    .mainhero-ctas a {
        gap: 8px;
        padding: 12px 20px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        line-height: normal;
        letter-spacing: auto;
    }

    .mainhero-ctas img {
        width: 20px;
        height: auto;
    }

    .clipped-div {
        width: 260px;
        height: 88px;
        background-color: #201925;
        color: white;
        display: flex;
        align-items: center;
        clip-path: url(#headerShape);
        -webkit-clip-path: url(#headerShape);
        position: relative;
        border-radius: 24px;
    }

    .installed-num {
        gap: 12px;
        top: 4px;
        left: 24px;
    }

    .in-img img {
        height: 32px;
        width: auto;
    }

    .in-texts h4 {
        font-size: 24px;
    }

    .in-texts span {
        font-size: 14px;
        letter-spacing: 0px;
    }

    .install-link img {
        width: 40px;
        height: auto;
    }

    .hero-mainimg {
        max-width: 540px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .mainhero-ctas {
        flex-direction: column;
        gap: 16px;
    }

    .mainhero-ctas a {
        display: flex;
        justify-content: center;
        padding: 10px 0;
        width: 100%;
    }
}

@media (max-width: 380px) {
    .herosection {
        margin-top: 128px;
        gap: 60px;
    }

    .mainhero-texts h1 {
        font-size: 44px;
        line-height: normal;
    }
}



/* BENEFITS SECTION */

section.gpt-benefits {
    font-family: "Space Grotesk", sans-serif;
    padding: 100px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.gptbenefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.gptb-head {
    display: flex;
    justify-content: center;
}

.gptb-head h2 {
    text-align: center;
    font-size: 58px;
    font-style: normal;
    font-weight: 500;
    line-height: 68px;
    background: linear-gradient(90deg, #F5F2F9 0%, #C4C2C8 48.33%, #F3F3F3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 600px;
}

.gptb-body {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.indv-benefit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 54px;
}

.indvbenefit-img {
    max-width: 560px;
    width: 100%;
}

.indvbenefit-img img {
    width: 100%;
}

.indvbenefit-texts {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.indvbenefit-texts h3 {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    background: linear-gradient(90deg, #F5F2F9 0%, #C4C2C8 48.33%, #F3F3F3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.indvbenefit-texts p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #89868C;
}

.indvbenefit-texts a {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #FFFFFF;
    padding: 14px 24px;
    border-radius: 20px;
    width: fit-content;
}

.benefit-cta img {
    width: 24px;
    height: auto;
}

.benefit-cta {
    background-color: #FFFFFF;
}

.benefit-cta p {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #433D48;
}

.alternate {
    display: flex;
    flex-direction: row-reverse;
}

@media (max-width: 1080px) {
    section.gpt-benefits {
        padding: 80px 24px;
    }

    .gptbenefits {
        gap: 48px;
    }

    .gptb-head h2 {
        font-size: 44px;
        line-height: normal;
        max-width: 800px;
    }

    .gptb-body {
        gap: 48px;
    }

    .indv-benefit {
        flex-direction: column;
        gap: 36px;
    }

    .indvbenefit-img {
        max-width: 640px;
        width: 100%;
    }

    .indvbenefit-img img {
        width: 100%;
    }

    .indvbenefit-texts {
        max-width: 640px;
        gap: 16px;
    }

    .indvbenefit-texts h3 {
        font-size: 32px;
        line-height: normal;
    }

    .indvbenefit-texts p {
        font-size: 16px;
        line-height: normal;
    }

    .indvbenefit-texts a {
        gap: 8px;
        padding: 12px 24px;
    }

    .benefit-cta img {
        width: 20px;
    }

    .benefit-cta p {
        font-size: 14px;
        line-height: normal;
        letter-spacing: 0.2px;
    }

    .alternate {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    .gptb-head h2 {
        font-size: 40px;
    }
}



/* WHY GPT-INVESTOR */

section.why-gptinvestor {
    font-family: "Space Grotesk", sans-serif;
    padding: 60px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.whygptinvestor {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.wgi-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.wgi-head h2 {
    text-align: center;
    font-size: 58px;
    font-style: normal;
    font-weight: 500;
    line-height: 68px;
    background: linear-gradient(90deg, #F5F2F9 0%, #C4C2C8 48.33%, #F3F3F3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 600px;
}

.wgi-head p {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    background: linear-gradient(90deg, #F5F2F9 0%, #C4C2C8 48.33%, #F3F3F3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wgi-texts h4 {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    background: linear-gradient(90deg, #F5F2F9 0%, #C4C2C8 48.33%, #F3F3F3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1080px) {
    section.why-gptinvestor {
        padding: 32px 24px;
    }

    .whygptinvestor {
        gap: 48px;
    }

    .wgi-head {
        gap: 10px;
    }

    .wgi-head h2 {
        font-size: 44px;
        line-height: 54px;
        max-width: 600px;
    }

    .wgi-head p {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }

    .wgi-texts h4 {
        font-size: 28px;
        line-height: normal;
    }
}

@media (max-width: 380px) {
    .wgi-head h2 {
        font-size: 40px;
    }
}



/* KEY FEATURES */

section.key-features {
    font-family: "M PLUS 1", sans-serif;
    padding: 60px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.keyfeatures {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.keyfeatures-head h2 {
    font-family: "Space Grotesk", sans-serif;
    text-align: center;
    font-size: 58px;
    font-style: normal;
    font-weight: 500;
    line-height: 68px;
    background: linear-gradient(90deg, #F5F2F9 0%, #C4C2C8 48.33%, #F3F3F3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.keyfeatures-body {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 40px;
}

.indv-feature {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #201925;
    border-radius: 18px;
    padding: 32px;
}

.indv-feature img {
    width: 28px;
    height: auto;
    padding: 18px;
    background-color: #3F008B;
    border-radius: 50px;
}

.indv-feature h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 106%; /* 29.68px */
    text-transform: capitalize;
}

.indv-feature p {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%;
    color: #89868C;
}

@media (max-width: 1080px) {
    section.key-features {
        padding: 48px 24px;
    }

    .keyfeatures {
        gap: 48px;
    }

    .keyfeatures-head h2 {
        font-size: 44px;
        line-height: normal;
    }

    .keyfeatures-body {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 24px;
    }

    .indv-feature {
        gap: 16px;
        border-radius: 14px;
        padding: 24px;
    }

    .indv-feature img {
        width: 24px;
        padding: 12px;
    }

    .indv-feature h4 {
        font-size: 24px;
    }

    .indv-feature p {
        font-size: 15px;
        line-height: 150%;
    }
}

@media (max-width: 720px) {
    .keyfeatures-body {
        display: grid;
        grid-template-columns: repeat(1, auto);
        gap: 24px;
    }
}

@media (max-width: 380px) {
    .keyfeatures-head h2 {
        font-size: 40px;
    }
}



/* FOOTER */

footer.footer {
    margin-top: 40px;
    padding: 60px 80px 24px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.footer-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.footer-card {
    border-radius: 32px;
    background-color: #19121F;
    box-shadow: 0px 16px 37.8px 0px rgba(0, 0, 0, 0.17);
    max-width: 1200px;
    width: 100%;
    padding: 60px 60px 0 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    overflow: hidden;
}

.footer-maintexts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 580px;
    width: 100%;
}

.footer-maintexts h4 {
    color: #F0F0F0;
    font-family: 'Cabin', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize;
}

.footer-maintexts .footermainpara {
    color: #FFF;
    font-family: "M PLUS 1", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%;
}

.footer-mainimg {
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 2;
    bottom: -4px;
}

.footer-mainimg img {
    width: 100%;
}

.footer-ground p {
    font-family: "M PLUS 1", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%;
    color: #89868C;
    text-align: center;
}

.fdeco {
    position: absolute;
}

.floatingdeco1 {
    top: -180px;
    left: -74px;
    width: 274.824px;
    height: 280.135px;
    flex-shrink: 0;
    border-radius: 280.135px;
    background: #3F008B;
    filter: blur(132.7654266357422px);
}

.floatingdeco2 {
    bottom: -140px;
    right: 280px;
    width: 274.824px;
    height: 280.135px;
    flex-shrink: 0;
    border-radius: 280.135px;
    background: #3F008B;
    filter: blur(132.7654266357422px);
    z-index: 1;
}

@media (max-width: 1080px) {
    footer.footer {
        margin: 0;
        padding: 48px 24px 24px 24px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-main {
        gap: 48px;
    }

    .footer-card {
        border-radius: 24px;
        max-width: 1200px;
        width: calc(100% - 48px);
        padding: 40px 24px 0 24px;
        position: relative;
        flex-direction: column;
        gap: 40px;
    }

    .footer-maintexts {
        gap: 16px;
        max-width: 600px;
    }

    .footer-maintexts h4 {
        font-size: 28px;
    }

    .footer-maintexts .footermainpara {
        font-size: 14px;
        line-height: 150%;
    }

    .footer-mainimg {
        max-width: 400px;
        width: 100%;
        position: relative;
        z-index: 2;
        bottom: -4px;
    }

    .footer-ground p {
        font-size: 14px;
        line-height: 150%;
    }
}