/* =========================================
   RESET
   ========================================= */

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;

    background: #060606;

    color: #F1F0ED;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    overflow-x: hidden;
}


/* =========================================
   NAVIGATION
   ========================================= */

nav{
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 72px;

    padding: 0 35px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    background:
        rgba(5,5,5,0.42);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);
}

#nametransit{
    display: flex;

    align-items: center;

    text-decoration: none;
}

#name{
    color: #F1F0ED;

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    font-weight: 500;
}

nav ul{
    display: flex;

    align-items: center;

    gap: 28px;

    list-style: none;
}

nav ul li{
    list-style: none;
}

nav ul a{
    position: relative;

    padding: 5px 0;

    color: #B8B6B1;

    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.3s ease;
}

nav ul a::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: #F1F0ED;

    transition:
        width 0.3s ease;
}

nav ul a:hover{
    color: #F1F0ED;
}

nav ul a:hover::after{
    width: 100%;
}


/* =========================================
   GENERAL
   ========================================= */

main{
    width: 100%;

    overflow: hidden;
}

section{
    position: relative;

    border-top:
        1px solid
        rgba(255,255,255,0.06);
}

.sectionLabel{
    color: #777571;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.aboutGrid{
    margin-top: 60px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10vw;
}

.aboutGrid h2{
    max-width: 650px;

    color: #F1F0ED;

    font-size:
        clamp(45px, 5vw, 70px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -3px;
}

.aboutGrid h3{
    max-width: 600px;

    margin-top: 25px;

    color: #D7C09D;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(30px, 3vw, 45px);

    font-weight: 400;

    line-height: 1.1;
}

.aboutText{
    max-width: 560px;
}

.aboutText p{
    margin-bottom: 25px;

    color: #999792;

    font-size: 17px;

    line-height: 1.8;
}

.aboutText p:last-child{
    margin-bottom: 0;

    color: #D0CEC8;
}

.aboutText strong{
    color: #F1F0ED;

    font-weight: 500;
}

.sectionTitle{
    max-width: 800px;

    margin-top: 25px;

    color: #F1F0ED;

    font-size:
        clamp(48px, 5vw, 72px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -3px;
}


/* =========================================
   ABOUT HERO
   ========================================= */

#aboutHero{
    min-height: 100vh;

    padding:
        160px 8vw
        120px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        radial-gradient(
            circle at 75% 30%,
            #191919 0%,
            #090909 45%,
            #060606 100%
        );
}

#aboutHero h1{
    max-width: 1000px;

    margin-top: 30px;

    color: #F1F0ED;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(55px, 7vw, 95px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -4px;
}

#aboutHero > p{
    max-width: 650px;

    margin-top: 35px;

    color: #999792;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================
   THE PROBLEM
   ========================================= */

#aboutProblem{
    min-height: 85vh;

    padding:
        130px 8vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        #080808;
}


/* =========================================
   OUR BELIEF
   ========================================= */

#ourbelief{
    min-height: 85vh;

    padding:
        130px 8vw;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #171717 0%,
            #080808 65%
        );
}

.beliefContent{
    max-width: 900px;

    width: 100%;
}

.beliefContent h2{
    margin-top: 25px;

    color: #F1F0ED;

    font-size:
        clamp(55px, 6vw, 85px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -4px;
}

.beliefContent > p{
    max-width: 650px;

    margin:
        25px auto 0;

    color: #92908B;

    font-size: 17px;

    line-height: 1.7;
}

.beliefStatement{
    max-width: 500px;

    margin:
        60px auto 0;

    padding: 30px;

    display: flex;

    flex-direction: column;

    gap: 12px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 15px;

    background:
        rgba(255,255,255,0.025);
}

.beliefStatement span{
    color: #777571;

    font-size: 9px;

    letter-spacing: 3px;
}

.beliefStatement strong{
    color: #D7C09D;

    font-family:
        "Playfair Display",
        serif;

    font-size: 30px;

    font-weight: 400;
}


/* =========================================
   HOW IT WORKS
   ========================================= */

#aboutHow{
    padding:
        130px 8vw;

    background:
        #070707;
}

#aboutSteps{
    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.aboutStep{
    min-height: 350px;

    padding:
        30px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.16);

    transition:
        border-color 0.3s ease;
}

.aboutStep:hover{
    border-color:
        rgba(255,255,255,0.4);
}

.aboutStep > span{
    display: block;

    margin-bottom: 70px;

    color: #686662;

    font-size: 11px;

    letter-spacing: 2px;
}

.aboutStep h3{
    margin-bottom: 18px;

    color: #F1F0ED;

    font-size: 27px;

    font-weight: 400;

    letter-spacing: -1px;
}

.aboutStep p{
    max-width: 340px;

    color: #85837F;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   WHY WE BUILT IT
   ========================================= */

#whybuilt{
    min-height: 85vh;

    padding:
        130px 8vw;

    display: flex;

    align-items: center;

    background:
        radial-gradient(
            circle at 80% 50%,
            #151515 0%,
            #070707 60%
        );
}


/* =========================================
   WHAT SERVICE PRICE ISN'T
   ========================================= */

#notserviceprice{
    padding:
        130px 8vw;

    background:
        #090909;
}

#notCards{
    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.notCard{
    min-height: 300px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border:
        1px solid
        rgba(255,255,255,0.09);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.01)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.notCard:hover{
    transform:
        translateY(-6px);

    border-color:
        rgba(255,255,255,0.23);
}

.notCard > span{
    color: #686662;

    font-size: 10px;

    letter-spacing: 2px;
}

.notCard h3{
    margin-bottom: 18px;

    color: #F1F0ED;

    font-size: 25px;

    font-weight: 400;

    line-height: 1.15;
}

.notCard p{
    color: #85837F;

    font-size: 15px;

    line-height: 1.7;
}

#notConclusion{
    margin-top: 55px;

    color: #D7C09D;

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    text-align: center;
}


/* =========================================
   WHO IT'S FOR
   ========================================= */

#whoitsfor{
    padding:
        130px 8vw;

    background:
        #070707;
}

#audienceCards{
    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.audienceCard{
    min-height: 300px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border:
        1px solid
        rgba(255,255,255,0.09);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.025);
}

.audienceCard > span{
    color: #686662;

    font-size: 10px;

    letter-spacing: 2px;
}

.audienceCard h3{
    margin-top: 40px;

    color: #F1F0ED;

    font-size: 27px;

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -1px;
}

.audienceCard p{
    color: #85837F;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   FINAL CTA
   ========================================= */

#aboutCTA{
    min-height: 75vh;

    padding:
        120px 8vw;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #181818 0%,
            #070707 65%
        );
}

#aboutCTA p{
    color: #85837F;

    font-size: 18px;
}

#aboutCTA h2{
    max-width: 900px;

    margin-top: 10px;

    color: #F1F0ED;

    font-size:
        clamp(50px, 6vw, 85px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -4px;
}

#aboutCTAButton{
    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 35px;

    padding:
        16px 22px;

    color: #F1F0ED;

    text-decoration: none;

    font-size: 16px;

    border:
        1px solid
        rgba(235,230,220,0.45);

    border-radius: 8px;

    background:
        rgba(255,255,255,0.015);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

#aboutCTAButton:hover{
    background:
        rgba(255,255,255,0.05);

    border-color:
        rgba(245,240,230,0.8);

    transform:
        translateY(-2px);

    box-shadow:
        0 0 25px
        rgba(255,255,255,0.07),

        0 12px 35px
        rgba(0,0,0,0.3);
}

#aboutCTAButton span{
    font-size: 24px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}

#aboutCTAButton:hover span{
    transform:
        translateX(5px);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px){

    .aboutGrid{
        grid-template-columns: 1fr;

        gap: 50px;
    }

    #aboutSteps,
    #notCards,
    #audienceCards{
        grid-template-columns: 1fr;
    }

    .aboutStep{
        min-height: 280px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px){

    nav{
        height: 65px;

        padding:
            0 20px;
    }

    #name{
        font-size: 21px;
    }

    nav ul{
        gap: 18px;
    }

    nav ul a{
        font-size: 12px;
    }


    #aboutHero,
    #aboutProblem,
    #ourbelief,
    #aboutHow,
    #whybuilt,
    #notserviceprice,
    #whoitsfor,
    #aboutCTA{

        padding:
            90px 25px;
    }


    #aboutHero{
        min-height: 100vh;
    }

    #aboutHero h1{
        font-size:
            clamp(48px, 13vw, 65px);

        letter-spacing: -2.5px;
    }

    #aboutHero > p{
        font-size: 15px;
    }


    .aboutGrid{
        margin-top: 45px;
    }

    .aboutGrid h2{
        font-size: 48px;
    }

    .aboutGrid h3{
        font-size: 35px;
    }

    .aboutText p{
        font-size: 15px;
    }


    .beliefContent h2{
        font-size: 55px;

        letter-spacing: -3px;
    }

    .beliefContent > p{
        font-size: 15px;
    }

    .beliefStatement strong{
        font-size: 26px;
    }


    .sectionTitle{
        font-size: 50px;

        letter-spacing: -2px;
    }


    .aboutStep{
        min-height: 280px;
    }


    #aboutCTA h2{
        font-size: 58px;

        letter-spacing: -3px;
    }

}