/* =========================================
   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;

    color: #B8B6B1;

    text-decoration: none;

    font-size: 14px;

    padding: 5px 0;

    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%;
}


/* =========================================
   SHARED
   ========================================= */

main{
    width: 100%;

    overflow: hidden;
}

section{
    position: relative;
}

.sectionLabel{
    color: #777571;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.sectionText{
    max-width: 560px;
}

.sectionText p{
    margin-bottom: 25px;

    color: #999792;

    font-size: 17px;

    line-height: 1.8;
}

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

    color: #D0CEC8;
}

.largeSectionTitle{
    max-width: 750px;

    margin-top: 25px;

    color: #F1F0ED;

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

    font-weight: 400;

    line-height: 1;

    letter-spacing: -3px;
}


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

#homeintro{
    min-height: 100vh;

    padding:
        100px 8vw;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.80) 0%,
            rgba(0,0,0,0.58) 45%,
            rgba(0,0,0,0.25) 100%
        ),
        url("Videosandphotos/backgroundphoto2.png") center/cover no-repeat;
}

#introtext{
    max-width: 800px;
}

#heroeyebrow{
    margin-bottom: 25px;

    color: #8F8D89;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 4px;
}

#homeintrotext{
    color: #F1F0ED;

    font-size:
        clamp(42px, 6vw, 60px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -3px;
}

#herosubheading{
    margin-top: 10px;

    color: #D7C09D;

    font-family:
        "Playfair Display",
        serif;

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

    font-weight: 400;

    line-height: 1;
}

#herotagline{
    max-width: 520px;

    margin-top: 25px;

    color: #B4B2AD;

    font-size: 17px;

    line-height: 1.6;
}

#SignUpbutton{
    display: inline-flex;

    align-items: center;

    gap: 22px;

    margin-top: 32px;

    padding:
        16px 21px;

    color: #111;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    background:
        #F1F0ED;

    border-radius: 8px;

    box-shadow:
        0 0 25px
        rgba(241,240,237,0.12);

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

#SignUpbutton span{
    font-size: 22px;

    transition:
        transform 0.3s ease;
}

#SignUpbutton:hover{
    transform:
        translateY(-3px);

    background:
        #FFF;

    box-shadow:
        0 0 35px
        rgba(241,240,237,0.25),

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

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


/* =========================================
   WHAT IS SERVICE PRICE
   ========================================= */

#whatserviceprice{
    min-height: 80vh;

    padding:
        130px 8vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

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

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

.whatSPGrid{
    margin-top: 60px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10vw;
}

.whatSPGrid h2{
    max-width: 650px;

    color: #F1F0ED;

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

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -3px;
}


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

#theproblem{
    min-height: 75vh;

    padding:
        130px 8vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

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

.problemGrid{
    margin-top: 60px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10vw;
}

.problemGrid h2{
    max-width: 600px;

    color: #F1F0ED;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(50px, 5vw, 75px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;
}


/* =========================================
   WHY IT MATTERS
   ========================================= */

#whymatters{
    padding:
        130px 8vw;

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

    background:
        #090909;
}

#consequenceCards{
    margin-top: 70px;

    display: grid;

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

    gap: 25px;
}

.consequenceCard{
    min-height: 320px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.012)
        );

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

    border-radius: 18px;

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

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

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

.consequenceCard > span{
    color: #686662;

    font-size: 11px;

    letter-spacing: 2px;
}

.consequenceCard h3{
    margin-bottom: 18px;

    color: #F1F0ED;

    font-size: 28px;

    font-weight: 400;

    letter-spacing: -1px;
}

.consequenceCard p{
    color: #85837F;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   PROOF
   ========================================= */

#proofofproblem{
    padding:
        130px 8vw
        100px;

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

    background:
        radial-gradient(
            circle at 50% 0%,
            #151515 0%,
            #080808 55%,
            #060606 100%
        );
}

#proofintro{
    max-width: 850px;
}

#proofintro h2{
    margin-top: 25px;

    color: #F1F0ED;

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

    font-weight: 400;

    line-height: 1;

    letter-spacing: -3px;
}

#proofintro p{
    max-width: 600px;

    margin-top: 25px;

    color: #85837F;

    font-size: 17px;

    line-height: 1.7;
}

#proofcards{
    margin-top: 65px;

    display: grid;

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

    gap: 25px;
}

.proofcard{
    min-height: 370px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.012)
        );

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

    border-radius: 18px;

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

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

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

.cardtop{
    display: flex;

    justify-content: space-between;
}

.cardtop span{
    color: #686662;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.proofcard h3{
    margin-top: 30px;

    color: #F0EFEC;

    font-size: 26px;

    font-weight: 400;

    line-height: 1.2;

    letter-spacing: -0.7px;
}

.proofcard p{
    margin-top: 20px;

    color: #85837F;

    font-size: 15px;

    line-height: 1.7;
}

.cardbottom{
    padding-top: 18px;

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

    color: #777571;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

#proofmore{
    margin-top: 35px;

    color: #777571;

    font-size: 13px;

    text-align: center;
}


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

#howitworks{
    padding:
        130px 8vw;

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

    background:
        #080808;
}

#methodSteps{
    margin-top: 70px;

    display: grid;

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

    gap: 25px;
}

.methodStep{
    padding:
        35px 0;

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

.methodStep > span{
    display: block;

    margin-bottom: 60px;

    color: #686662;

    font-size: 11px;

    letter-spacing: 2px;
}

.methodStep h3{
    margin-bottom: 18px;

    color: #F1F0ED;

    font-size: 25px;

    font-weight: 400;

    letter-spacing: -0.7px;
}

.methodStep p{
    max-width: 320px;

    color: #85837F;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   BUILT FOR YOUR MARKET
   ========================================= */

#builtformarket{
    min-height: 80vh;

    padding:
        130px 8vw;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

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

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

.marketContent{
    width: 100%;
}

.marketContent h2{
    margin-top: 25px;

    color: #F1F0ED;

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

    font-weight: 400;

    line-height: 1;

    letter-spacing: -4px;
}

.marketContent > p{
    margin-top: 20px;

    color: #85837F;

    font-size: 19px;
}

#marketFormula{
    margin-top: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;
}

#marketFormula div{
    padding:
        17px 22px;

    color: #D8D6D1;

    font-size: 10px;

    letter-spacing: 2px;

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

    border-radius: 8px;

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

#marketFormula span{
    color: #686662;

    font-size: 20px;
}


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

#homefinalcta{
    min-height: 75vh;

    padding:
        120px 8vw;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

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

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

#homefinalcta p{
    color: #85837F;

    font-size: 18px;
}

#homefinalcta h2{
    margin-top: 10px;

    color: #F1F0ED;

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

    font-weight: 400;

    line-height: 1;

    letter-spacing: -4px;
}

#proofcta{
    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;
}

#proofcta: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);
}

#proofcta span{
    font-size: 24px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}

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


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

@media (max-width: 900px){

    #whatserviceprice,
    #theproblem,
    #whymatters,
    #proofofproblem,
    #howitworks,
    #builtformarket,
    #homefinalcta{
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .whatSPGrid,
    .problemGrid{
        grid-template-columns: 1fr;

        gap: 50px;
    }

    #consequenceCards,
    #proofcards,
    #methodSteps{
        grid-template-columns: 1fr;
    }

    .proofcard{
        min-height: 300px;
    }

}


/* =========================================
   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;
    }


    /* HERO */

    #homeintro{
        min-height: 100vh;

        padding:
            100px 25px;

        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,0.85),
                rgba(0,0,0,0.45)
            ),
            url("Videosandphotos/backgroundphoto2.png") center/cover no-repeat;
    }

    #homeintrotext{
        font-size:
            clamp(45px, 13vw, 65px);

        letter-spacing: -2.5px;
    }

    #herosubheading{
        font-size: 40px;
    }

    #herotagline{
        font-size: 15px;
    }


    /* SECTIONS */

    #whatserviceprice,
    #theproblem,
    #whymatters,
    #proofofproblem,
    #howitworks,
    #builtformarket,
    #homefinalcta{
        padding:
            90px 25px;
    }

    .whatSPGrid,
    .problemGrid{
        margin-top: 45px;
    }

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

    .problemGrid h2{
        font-size: 50px;
    }

    .largeSectionTitle{
        font-size: 50px;
    }


    /* CARDS */

    .consequenceCard{
        min-height: 280px;
    }

    .proofcard{
        min-height: 330px;
    }


    /* MARKET */

    .marketContent h2{
        font-size: 55px;

        letter-spacing: -3px;
    }

    #marketFormula{
        gap: 10px;

        margin-top: 50px;
    }

    #marketFormula div{
        padding:
            12px 14px;

        font-size: 8px;
    }

    #marketFormula span{
        font-size: 14px;
    }


    /* CTA */

    #homefinalcta{
        min-height: 65vh;
    }

    #homefinalcta h2{
        font-size: 58px;

        letter-spacing: -3px;
    }

}