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

html{
    scroll-behavior:smooth;
}

.dashed{

    text-decoration:line-through;

    text-decoration-thickness:2px;

    opacity:.85;

}

body{

    font-family:Inter,sans-serif;

    background:#0b0b0b;

    color:white;

    overflow-x:hidden;

}

.text {
    font-family:'Manrope', sans-serif;
}

.container{

    width:min(1400px,92%);

    margin:auto;

}

/* ---------------- Header ---------------- */

header{

    top:0;

    left:0;

    width:100%;

    background:rgba(0,0,0);

    backdrop-filter:blur(16px);

    border-bottom:1px solid #222;

    z-index:1000;

}

.nav{

    height:86px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    width:210px;

}

nav{

    display:flex;

    gap:36px;

}

nav a{

    cursor:pointer;

    color:#DDD;

    transition:.25s;

    text-decoration:none;


}

nav a:hover{

    color:#FFC61A;

}

/* ---------------- Buttons ---------------- */

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    background:#FFC61A;

    color:black;

    font-weight:700;

    padding:14px 30px;

    border-radius:14px;

    transition:.25s;

}

.btn:hover{

    transform:translateY(-2px);

    box-shadow:0 15px 35px rgba(255,198,26,.25);

}

.ghost{

    background:transparent;

    color:white;

    border:1px solid #444;

}

/* ---------------- HERO ---------------- */

.hero{

    width:100%;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

        padding:120px 4vw 120px;


    background:

        radial-gradient(circle at top,#262626 0%,transparent 65%),

        #0b0b0b;

}

.hero-content{

    width:min(1800px,96vw);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.hero-logo{

    width:min(1100px,100vw);

    margin-bottom:28px;

}

.tag{

    display:inline-block;

    padding:10px 22px;

    border:1px solid #FFC61A;

    border-radius:999px;

    color:#FFC61A;

    font-size:.8rem;

    letter-spacing:2px;

}

h1{

    margin-top:32px;

    font-size:clamp(5rem,9vw,8rem);

    line-height:.90;

    letter-spacing:-5px;

    font-weight:900;

}

h1 span{

    color:#FFC61A;

}

.hero p{

    margin-top:42px;

    max-width:720px;

    color:#B8B8B8;

    font-size:1.2rem;

    line-height:1.9;

}

.actions{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:45px;

}

/* ---------------- Features ---------------- */

.features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:120px;

    align-items:center;

    padding:180px 0;

}

.eyebrow{

    color:#FFC61A;

    font-size:.8rem;

    letter-spacing:3px;

    margin-bottom:22px;

}

h2{

    font-size:4rem;

    margin-bottom:28px;

}

.text p{

    color:#BBB;

    line-height:1.9;

}

ul{

    margin-top:30px;

    padding-left:20px;

}

li{

    color:#BBB;

    margin-bottom:18px;

}

.phone{

    display:flex;

    justify-content:center;

}

.phone img{

    width:100%;

    max-width:380px;

}

/* ---------------- Footer ---------------- */

footer{

    padding:60px 0;

    border-top:1px solid #222;

    color:#666;

    text-align:center;

}

/* ---------------- Mobile ---------------- */

@media (max-width:900px){

.nav{

    height:auto;

    padding:18px 0;

    display:flex;

    flex-direction:column;

    align-items:center;

}

.logo{

    width:190px;

}

nav{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:28px;

    flex-wrap:wrap;

}

nav a{

    font-size:.95rem;
    font-weight:600;


}


.btn{

    display:none;

}

.hero{

    min-height:auto;

    padding:80px 24px 100px;

}

h1{

    font-size:3.8rem;

    letter-spacing:-3px;

}

.hero p{

    font-size:1.05rem;

}

.actions{

    flex-direction:column;

    align-items:center;

}

.actions .btn{

    display:flex;

    width:100%;

    max-width:320px;

}

.features{

    grid-template-columns:1fr;

    text-align:center;

}

.phone{

    margin-top:60px;

}

ul{

    list-style-position:inside;

    padding-left:0;

}

}



/* ---------------- Build Log ---------------- */

.blog{

    padding-top:180px;

    padding-bottom:120px;

    background:
        radial-gradient(circle at top,#262626 0%,transparent 65%),
        #0b0b0b;

}

.blog-header{

    text-align:center;

    max-width:900px;

    margin:0 auto 120px;

    padding:0 24px;

}

.blog-header h1{

    margin-top:28px;

}

.blog-header p{

    max-width:700px;

    margin:40px auto;

    color:#B8B8B8;

    font-size:1.15rem;

    line-height:1.9;

}

.featured{

    background:#141414;

    border:1px solid #252525;

    border-radius:22px;

    padding:48px;

    margin-bottom:80px;

}

.featured-label{

    color:#FFC61A;

    letter-spacing:2px;

    font-size:.8rem;

    margin-bottom:18px;

}

.featured h2{

    font-size:2.5rem;

    margin-bottom:12px;

}

.meta{

    color:#777;

    margin-bottom:30px;

}

.featured p{

    color:#BBB;

    line-height:1.9;

    margin-bottom:30px;

}

.read-more{

    color:#FFC61A;

    text-decoration:none;

    font-weight:600;

}

.posts h3{

    font-size:2rem;

    margin-bottom:40px;

}

.post{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    padding:28px 0;

    border-bottom:1px solid #222;

}

.post h4{

    font-size:1.25rem;

    margin-bottom:10px;

}

.post p{

    color:#999;

}

.post span{

    color:#777;

    white-space:nowrap;

}

@media(max-width:900px){

.featured{

    padding:32px;

}

.post{

    flex-direction:column;

    gap:12px;

}

}







/* ---------------- ARTICLE ---------------- */

.article{

    padding-top:80px;
    padding-bottom:120px;

    background:
        radial-gradient(circle at top,#262626 0%,transparent 65%),
        #0b0b0b;

}

.article-container{

    width:min(760px,92%);
    margin:auto;

}

.article-header{

    margin-bottom:70px;

}

.build-log{

    color:#FFC61A;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;

}

.build-date{

    color:#777;
    font-size:.95rem;
    margin-bottom:34px;

}

.article-header h1{

    font-size:clamp(3rem,6vw,5rem);
    line-height:1;
    margin:0;

}

.article-content{

    margin-top:70px;

    color:#D6D6D6;

    font-size:1.15rem;

    line-height:2;

}

.article-content p{

    margin-bottom:34px;

}

.article-content strong{

    color:white;

}

.signature{

    margin-top:90px;

    padding-top:40px;

    border-top:1px solid #222;

}

.signature em{

    display:block;

    color:#888;

    margin-bottom:10px;

}

.signature strong{

    color:#FFC61A;

    font-weight:700;

}

@media(max-width:900px){

.article{

    padding-top:80px;

}

.article-header h1{

    font-size:2.6rem;

}

.article-content{

    font-size:1.05rem;

}

}


/* ---------------- END OF ARTICLE ---------------- */











.blog{

    padding:80px 0 120px;

    background:
        radial-gradient(circle at top,#262626 0%,transparent 65%),
        #0b0b0b;

}

.blog-container{

    width:min(820px,92%);

    margin:auto;

}

.blog-header{

    margin-bottom:90px;

}

.blog-header .eyebrow{

    color:#FFC61A;

    font-size:.8rem;

    letter-spacing:2px;

    margin-bottom:18px;

}

.blog-header h1{

    font-size:clamp(3rem,7vw,5rem);

    line-height:1;

    margin-bottom:24px;

}

.blog-header p{

    max-width:620px;

    color:#999;

    line-height:1.9;

    font-size:1.1rem;

}

.post{

    padding:55px 0;

    border-top:1px solid #222;

}

.post:last-child{

    border-bottom:1px solid #222;

}

.post-log{

    color:white;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:8px;

}

.post-date{

    color:#666;

    margin-bottom:20px;

    font-size:.95rem;

}

.post h2{

    margin:0 0 18px;

    font-size:2rem;

    line-height:1.2;

}

.post h2 a{

    color:white;

    text-decoration:none;

    transition:.25s;

}

.post h2 a:hover{

    color:#FFC61A;

}

.post p{

    color:#AAA;

    line-height:1.9;

    margin-bottom:26px;

}

.read{

    display:inline-block;

    color:#FFC61A;

    text-decoration:none;

    font-weight:600;

    transition:.25s;

}

.read:hover{

    transform:translateX(4px);

}

.coming{

    color:#666;

    font-style:italic;

}

@media(max-width:900px){

.post h2{

    font-size:1.7rem;

}

}