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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,system-ui,sans-serif;
    color:#111827;
    background:#fff;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    display:block;
}

.container{
    width:min(1240px,calc(100% - 48px));
    margin:auto;
}
.header{

    position:sticky;

    top:0;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.82);

    border-bottom:1px solid #edf2f7;

}


.header .container{

    height:76px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}


.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:22px;

    font-weight:700;

}


.logo img{

    width:34px;

    height:34px;

}
.nav{

    display:flex;

    gap:34px;

}

.nav a{

    color:#4b5563;

    transition:.2s;

}
.nav a:hover{

    color:#111827;

}

.header-actions{

    display:flex;

    align-items:center;

    gap:14px;

}
.btn{
	cursor: pointer;
    padding:11px 18px;

    border-radius:12px;

    font-weight:600;

    transition:.2s;

}
.btn-primary{

    background:#111827;

    color:#fff;

}
.btn-primary:hover{

    transform:translateY(-1px);

}
.btn-text:hover{

    background:#f5f5f5;

}
.hero{
    padding:96px 0 120px;
}
.hero-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:80px;

    align-items:center;

}
.hero h1{

    font-size: 34px;

    line-height:1.05;

    font-weight:800;

    margin:20px 0;

    letter-spacing: 2px;

}
.hero p{

    font-size:20px;

    color:#6b7280;

    line-height:1.7;

    max-width:620px;

}
.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}
.btn-secondary{

    background:#fff;

    border:1px solid #e5e7eb;

}
.hero-card{

    background:#111827;

    border-radius:24px;

    padding:28px;

    color:white;

    box-shadow:0 40px 80px rgba(0,0,0,.18);

}
.hero-card-header{

    font-weight:700;

    margin-bottom:20px;

}
.hero-card pre{

    font-size:15px;

    line-height:1.8;

    overflow:auto;

}
 