/* =========================
   TAKE PROFIT
   ========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    background:#fff;
    color:#000;
    -webkit-font-smoothing:antialiased;
    line-height:1.6;
}

.page{
    max-width:760px;
    margin:0 auto;
    padding:32px 24px 100px;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.logo{
    width:120px;
    margin-bottom:56px;
}

.eyebrow{
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#777;
    margin-bottom:28px;
}

h1{
    font-size:58px;
    line-height:1.05;
    font-weight:800;
    letter-spacing:-2px;
}

.subtitle{
    margin-top:32px;
    font-size:24px;
    color:#666;
}

.button{
    display:inline-block;
    margin-top:50px;
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:999px;
    font-weight:600;
    transition:.25s;
}

button[type="submit"]:hover{
    transform:translateY(-2px);
    opacity:.92;
}

/* FEATURES */

.features{
    display:grid;
    gap:24px;
    margin:80px 0;
}

.feature{
    border:1px solid #ececec;
    border-radius:24px;
    padding:42px 32px;
    transition:.25s;
}

.feature:hover{
    transform:translateY(-4px);
}

.feature h2{
    font-size:32px;
    line-height:1.2;
}

/* WAITLIST */

.waitlist{
    margin-top:120px;
}

.waitlist h2{
    font-size:42px;
    margin-bottom:12px;
}

.waitlist>p{
    color:#666;
    margin-bottom:32px;
}

form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

input,
select{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:16px;
    font-size:16px;
    background:#fff;
}

input:focus,
select:focus{
    outline:none;
    border-color:#000;
}

.section-title{
    font-weight:600;
    margin-top:10px;
    margin-bottom:4px;
}

.checkbox-grid{
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:20px;
    border:1px solid #ececec;
    border-radius:16px;
}

.checkbox-grid label{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:16px;
}

.beta{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
}

button[type="submit"]{
    background:#000;
    color:#fff;
    border:none;
    padding:18px;
    border-radius:16px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    margin-top:10px;
}

.small{
    text-align:center;
    margin-top:24px;
    font-size:14px;
    color:#777;
}

/* FOOTER */

footer{
    text-align:center;
    margin-top:140px;
    color:#777;
}

footer h3{
    color:#000;
    margin-bottom:8px;
}

footer p{
    margin-top:6px;
}

/* MOBILE */

@media(max-width:768px){

.logo{
    width:95px;
}

h1{
    font-size:42px;
}

.subtitle{
    font-size:20px;
}

.feature h2{
    font-size:26px;
}

.waitlist h2{
    font-size:34px;
}

.checkbox-grid{
    grid-template-columns:1fr;
}

}

.section-title span{
    color:#888;
    font-weight:400;
    font-size:15px;
}