:root{

    --primary:#6ab0de;

    --primary-dark:#4e97cf;

    --bg:#f8fafc;

    --surface:#ffffff;

    --text:#111827;

    --text-dim:#6b7280;

    --border:#e5e7eb;

    --radius:24px;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    font-family:
        Mulish,
        sans-serif;

    background:var(--bg);

    color:var(--text);

}

section{

    padding:
        96px
        24px;

}

.container{

    width:100%;

    max-width:1200px;

    margin:0 auto;

}



/* HEADER */

.site-header{

    position:sticky;

    top:0;

    z-index:100;

    background:
        rgba(
            248,
            250,
            252,
            .92
        );

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid
        var(--border);

}

.header-inner{

    height:80px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.header-logo{

    text-decoration:none;

    color:var(--text);

    font-weight:800;

    font-size:20px;

}

.header-nav{

    display:flex;

    gap:32px;

}

.header-nav a{

    text-decoration:none;

    color:var(--text-dim);

}

.header-actions{

    display:flex;

    gap:12px;

    align-items:center;

}

.header-login{

    text-decoration:none;

    color:var(--text);

}

.header-register{

    text-decoration:none;

    background:var(--primary);

    color:#fff;

    padding:12px 18px;

    border-radius:999px;

    font-weight:700;

    transition:.2s;

}

.header-register:hover{

    background:var(--primary-dark);

}



/* HERO */

#hero{

    display:flex;

    align-items:center;

    min-height:auto;

    padding-top:48px;

}

.hero-layout{

    display:grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap:60px;

    align-items:center;

}

.hero-content{

    max-width:520px;

}

.hero-logo{

    height:160px;

    width:auto;

    margin-bottom:24px;

}

.hero-badge{

    display:inline-block;

    padding:
        8px
        14px;

    border-radius:999px;

    background:#eaf4fb;

    color:var(--primary-dark);

    font-weight:700;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:56px;

    line-height:1.1;

    margin-bottom:24px;

}

.hero-content p{

    font-size:20px;

    color:var(--text-dim);

    line-height:1.7;

    margin-bottom:32px;

}

.hero-actions{

    display:flex;

    gap:16px;

}

.hero-actions a{

    text-decoration:none;

    padding:
        14px
        24px;

    border-radius:16px;

    font-weight:700;

    transition:.2s;

}

.hero-actions a:first-child{

    background:var(--primary);

    color:#fff;

}

.hero-actions a:first-child:hover{

    background:var(--primary-dark);

}



/* MOCKUP */

.hero-preview{

    height:520px;

    padding:24px;

    border-radius:32px;

    background:#fff;

    border:
        1px solid
        var(--border);

    display:flex;

    align-items:center;

    justify-content:center;

}

.mockup-window{

    width:100%;

    height:100%;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    border:
        1px solid
        var(--border);

}

.mockup-top{

    height:56px;

    display:flex;

    align-items:center;

    gap:8px;

    padding:0 20px;

    border-bottom:
        1px solid
        var(--border);

}

.mockup-top span{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#d1d5db;

}

.mockup-body{

    display:flex;

    height:100%;

}

.mockup-sidebar{

    width:90px;

    border-right:
        1px solid
        var(--border);

    padding:20px;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.mockup-sidebar div{

    height:12px;

    background:#e5e7eb;

    border-radius:999px;

}

.mockup-content{

    flex:1;

    padding:24px;

}

.mockup-card{

    height:120px;

    background:#eef5fb;

    border-radius:18px;

}

.mockup-row{

    display:grid;

    grid-template-columns:
        1fr
        1fr;

    gap:20px;

    margin-top:20px;

}



/* RESPONSIVE */

@media (max-width:900px){

    .header-nav{

        display:none;

    }

    .header-inner{

        padding-left:12px;

        padding-right:12px;

    }

    .hero-layout{

        grid-template-columns:1fr;

        gap:40px;

    }

    .hero-content{

        order:1;

    }

    .hero-preview{

        order:2;

        height:320px;

        margin-top:40px;

    }

    .hero-content h1{

        font-size:42px;

    }

    .hero-logo{

        height:120px;

    }

    #hero{

        padding-top:32px;

    }

}