:root{
    --orange-200: #ffa229;
    --orange-400: #FF9100;
    --dark-600: #331C02;
    --dark-800: #0F0800;
    --dark-800-a: #0f0800b0;
    --light: #FFFDF8;
    --light-a: rgba(255, 254, 250, 0.8);
    --headings: "Roboto Serif", serif;
    --content: "Bricolage Grotesque", sans-serif;
    --gradient: linear-gradient(225deg, rgba(255,145,0,1) 0%, rgba(219,0,233,1) 100%);
}
/***GLOBAL***/
*{
    box-sizing: border-box;
}
html{
    margin: 0;
    padding: 0;
}
body{
    margin: 0;
    padding: 0;
    background-color: var(--dark-800);
}
h1{
    font-size: clamp(4.75rem, 5vw, 6.25rem);
    font-weight: 500;
    line-height: 100%;
}
h2{
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 500;
    line-height: 100%;
}
h3{
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 400;
}
h4{
    font-size: clamp(1rem, 5vw, 1.5rem);
    font-weight: 400;
}
h1, h2{
    font-family: var(--headings);
    margin: 0;
    z-index: 1;
}
h3,h4,p,a,li{
    font-family: var(--content);
    text-decoration: none;
    margin: 0;
    z-index: 1;
}
.logo{
    width: 130px;
    height: auto;
}
.chip{
    background-color: var(--dark-600);
    color: var(--orange-400);
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    width: min-content;
    text-wrap: nowrap;
    border-radius: 4px;
    z-index: 1;
}
.max-screen{
    max-width: 1440px;
    margin: auto;
    padding: 48px 5%;
    display: flex;
    flex-direction: column;
    gap: 42px;
    overflow: hidden;
}
.max-screen-blog{
    max-width: 720px;
    margin: auto;
    padding: 32px 5%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
}
span{
    display: flex;
}
.btn{
    padding: 8px 24px;
    border-radius: 100px;
    font-size: clamp(1rem, 5vw, 1.5rem);
    white-space: nowrap;
    width: min-content;
    display: flex;
    gap: 8px;
}
.orange{
    background-color: var(--orange-400);
    color: var(--dark-800);
}
.orange-stroke{
    background-color: var(--dark-800);
    border: 1px solid var(--orange-400);
    color: var(--orange-400);
}
.orange-stroke:hover{
    background-color: var(--dark-600);
}
.black-stroke{
    background-color: var(--orange-400);
    border: 1px solid var(--dark-800);
    color: var(--dark-800);
}
.black-stroke:hover{
    background-color: var(--orange-200);
}
hr{
    width: 100%;
    height: 1px;
    opacity: 0.1;
}
.text-block{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.text-link{
    color: var(--orange-400)
}
.text-link:hover{
    color: var(--orange-200)
}
/***NAVBAR***/
header{
    z-index: 100;
    background-color: var(--dark-800-a);
    position: sticky;
    border-bottom: 1px solid var(--dark-600);
    top: 0;
    left: 0;
    backdrop-filter: blur(30px);
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 2% !important;
    flex-direction: row !important;
}
.menu{
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.menu .active{
    color: var(--orange-200);
}
.menu-btn{
    color: var(--light);
    padding: 4px 8px;
}
.menu-btn:hover{
    color: var(--orange-200);
}
.header-button{
    color: var(--dark-800);
    background-color: var(--orange-400);
    padding: 8px 16px;
    border-radius: 100px;
}
.header-button:hover{
    background-color: var(--orange-200);
}

/***HERO***/
#hero{
    position: relative;
}
#hero h1, 
#hero h3{
    color: var(--light);
}
#hero video{
    z-index: 0;
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    top: 50%;
    width: 620px
}
.cta{
    display: flex;
    gap: 16px;
}
.:hover{
    background-color: var(--orange-200);
}
/***PRIZE***/
#prize{
    display: flex;
    justify-content: center;
    padding: 8px 5%;
    gap: 8px;
    overflow: hidden;
}
#prize p{
    display: flex;
    align-items: center;
    text-wrap: nowrap;
    gap: 4px;
}

/***EXPLAINER***/
#explainer{
    align-items: center;
}
#explainer h2,
#explainer h3{
    color: var(--light);
    text-align: center;
}
.features{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.features article{
    background-color: var(--dark-600);
    color: var(--orange-400);
    padding: 24px;
    border-radius: 8px;
    font-size: clamp(1rem, 5vw, 1.5rem);
}
.features img{
    background-color: var(--orange-400);
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: 100px;
    margin-bottom: 12px;
}

/***ROOTSTOCK***/
#rootstock .max-screen{
    position: relative;
}
#rootstock video{
    z-index: 0;
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    top: 50%;
    width: 480px;
}

/***CHAT***/
#chat{
    align-items: center;
}
#chat h2,
#chat h3{
    color: var(--light);
    text-align: center;
}
.bubble-wrap{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.top,
.bottom{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.bubble{
    border-width: 1px 1px 1px 4px;
    border-style: solid;
    border-color: var(--orange-400);
    border-radius: 4px;
    padding: 16px;
    display: flex;
    gap: 8px;
}
.bubble p{
    color: var(--orange-400);
}
.bubble img{
    background-color: var(--dark-600);
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: 100px;
}

/***SOCIALS***/
#socials .max-screen{
    align-items: center;
}
#socials h2,
#socials h3{
    text-align: center;
}

/***FOOTER***/
footer{
    border-top: 1px solid var(--orange-200);
}
footer .max-screen{
    flex-direction: row !important;
    color: var(--orange-400);
    font-family: var(--content);
    justify-content: space-between;
    text-align: right;
}
footer .links{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
/***BLOG***/
#blog h1,
#blog h3{
    color: var(--light);
}
.blog-hero h1{
    margin-bottom: 32px;
}
.blog-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card{
    background-color: var(--dark-800-a);
    background: var(--gradient);
    height: 420px;
    width: 100%;
    padding: 2px;
    border-radius: 8px;
}
.blog-wrapper{
    background-color: var(--dark-800);
    border-radius: 6px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.blog-wrapper img{
    width: 100%;
    height: 50%;
}
.blogcard-text{
    padding: 16px;
}
.blogcard-text .info{
    color: var(--orange-200);
    margin-bottom: 16px;
}
.blogcard-text h2{
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 16px;
}
.blogcard-text .excerpt{
    color: var(--light);
    font-size: 1rem;
    font-weight: 200;
}
.blog-card:hover .blog-wrapper{
    background-color: var(--dark-600);
    transition: all 500ms ease-in-out;
}
.blog-card:hover .blog-wrapper img {
    transform: scale(1.02);
    transition: all 300ms ease-in-out;
}
/***ENTRY***/
#entry img{
    border-radius: 8px;
}
.blog-top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.blog-info{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.blog-chip{
    background-color: var(--dark-600);
    color: var(--orange-200);
    font-weight: 200;
    padding: 4px 6px;
    border-radius: 2px;
}
.blog-date{
    color: var(--light);
    font-weight: 200;
}
.blog-back{
    display: flex;
    flex-direction: row;
    color: var(--light);
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--light);
    opacity: 0.6;
}
.blog-back img{
    width: 20px;
}
.blog-back:hover{
    opacity: 1;
    transition: all 200ms ease-in;
    background-color: rgba(255, 253, 248, 0.2);
}
#entry article{
    color: var(--light);
}
#entry article h1{
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 32px;
}
#entry article h2{
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 24px;
    margin-top: 48px;
}
#entry article h3{
    font-size: clamp(1rem, 5vw, 1.2rem);
    font-weight: 500;
    padding-bottom: 16px;
}
#entry article p{
    margin-bottom: 16px;
    font-weight: 300;
}
#entry article a{
    color: var(--orange-200);
    text-decoration: underline;
}
#blog-audio{
    background-color: var(--dark-600);
    border: 1px solid var(--orange-200);
    border-radius: 8px;
    padding: 16px;
    color: var(--orange-200);
}
#blog-audio audio{
    width: 100%;
    height: 40px;
    filter: invert(100%);
}
/***FORM***/
.whitelist-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 32px;
    padding: 64px 16px;
}
.whitelist-form img{
    width: 100%;
    max-width: 280px;
}
form{
    width: 100%;
    max-width: 1024px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.whitelist-form h1,
.whitelist-form h2{
    color: var(--light);
}
.whitelist-form h1{
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    width: 100%;
}
.whitelist-form h2{
    font-size: clamp(1.25rem, 5vw, 2rem);
    font-weight: 200;
    width: 100%;
}
.step{
    display: flex;
    background-color: var(--dark-600);
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
}
.number{
    display: flex;
    font-family: var(--headings);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--orange-400);
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}
.form-section{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
label{
    font-family: var(--content);
    font-size: 1.25rem;
    color: var(--light);
    font-weight: 200;
}
.label-container{
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.label-container p{
    background-color: var(--orange-400);
    color: var(--dark-800);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 100;
    font-size: 0.75rem;
    height: min-content;
}
input{
    font-family: var(--content);
    font-size: clamp(1rem, 5vw, 1.5rem);
    padding: 8px;
    background-color: var(--dark-800-a);
    border: 1px solid var(--orange-200);
    border-radius: 4px;
    opacity: 0.4;
    color: var(--orange-400);
}
input:hover{
    opacity: 0.7;
}
input::placeholder{
    color: rgba(255, 162, 41, 0.4);
}
form small{
    color: var(--orange-400);
    font-family: var(--content);
    font-weight: 200;
}
form button{
    cursor: pointer;
}
.form-section small{
    opacity: 0.5;
}
/***SCREEN TABLET LARGE***/
@media screen and (max-width: 1024px) {
    #hero video{
        right: -5%;
        opacity: 0.6;
    }
    #rootstock video{
        right: -5%;
        opacity: 0.6;
    }
    .bubble-wrap{
        width: 1100px;
    }
    .top{
        animation: top-move 20s linear 0s infinite alternate;
    }
    .bottom{
        transform: translateX(-64px);
        animation: bottom-move 20s linear 0s infinite alternate;
    }
    @keyframes top-move {
        from{
            transform: translateX(64px);
        }
        to{
            transform: translateX(-64px);
        }
    }
    @keyframes bottom-move {
        from{
            transform: translateX(-64px);
        }
        to{
            transform: translateX(64px);
        }
    }
}

/***SCREEN TABLET SHORT***/
@media screen and (max-width: 768px){
    .hide{
        display: none;
    }
    #hero video{
        right: -15%;
        opacity: 0.6;
    }
    #rootstock video{
        right: -10%;
        opacity: 0.3;
    }
    footer .max-screen{
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
}
@media screen and (max-width: 431px) {
    .cta{
        justify-content: center;
    }
    #hero video{
        width: 720px;
        right: -50%;
        opacity: 0.3;
    }
    #rootstock video{
        opacity: 0.1;
    }
    .features{
        grid-template-columns: 1fr;
    }
    #prize p{
        animation: prize 10s linear 0s infinite alternate;
    }
    @keyframes prize {
        from{
            transform: translateX(64px);
        }
        to{
            transform: translateX(-64px);
        }
    }
    .blog-grid{
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
