/* =================================
   ARCKANE - STYLE.CSS
   PART 1/3
================================= */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Inter",sans-serif;
}


:root{

    --primary:#4f7cff;
    --secondary:#8b5cf6;
    --background:#050816;
    --card:#0d1428;
    --text:#ffffff;
    --muted:#94a3b8;

}



html{

    scroll-behavior:smooth;

}



body{

    background:var(--background);
    color:white;
    overflow-x:hidden;

}




/* BACKGROUND */

.background{

    position:fixed;
    width:100%;
    height:100%;

    background:

    radial-gradient(
    circle at top left,
    rgba(79,124,255,.25),
    transparent 40%
    ),

    radial-gradient(
    circle at bottom right,
    rgba(139,92,246,.25),
    transparent 40%
    );

    z-index:-1;

}





/* HEADER */


header{

    width:100%;
    padding:25px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:fixed;
    top:0;

    z-index:999;

    transition:.3s;

}



header.scrolled{

    background:
    rgba(5,8,22,.85);

    backdrop-filter:blur(20px);

    border-bottom:
    1px solid rgba(255,255,255,.08);

}




.logo{

    font-size:32px;
    font-weight:900;
    letter-spacing:2px;

}



.logo span{

    color:var(--primary);

}





nav{

    display:flex;
    gap:35px;

}



nav a{

    color:white;
    text-decoration:none;

    font-weight:500;

    opacity:.8;

    transition:.3s;

}



nav a:hover{

    color:var(--primary);
    opacity:1;

}





.nav-buttons{

    display:flex;
    gap:15px;

}



.login,
.order{

    padding:12px 25px;

    border-radius:12px;

    text-decoration:none;

    cursor:pointer;

    transition:.3s;

}



.login{

    border:1px solid rgba(255,255,255,.15);

    color:white;

}



.order{

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );

    color:white;

}



.login:hover,
.order:hover{

    transform:translateY(-3px);

}







/* HERO */


.hero{

    min-height:100vh;

    padding:
    180px 8% 100px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:50px;

}





.hero-content{

    max-width:700px;

}





.badge{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:
    rgba(79,124,255,.15);

    color:#8db0ff;

    border:
    1px solid rgba(79,124,255,.3);

    margin-bottom:30px;

}





.hero h1{

    font-size:75px;

    line-height:1.05;

    font-weight:900;

}



.hero h1 span{

    background:
    linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
    );

    -webkit-background-clip:text;

    color:transparent;

}




.hero p{

    margin-top:30px;

    font-size:20px;

    line-height:1.7;

    color:var(--muted);

    max-width:600px;

}




.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}



.primary,
.secondary{

    padding:16px 35px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}



.primary{

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );

}



.secondary{

    border:
    1px solid rgba(255,255,255,.2);

}



.primary:hover,
.secondary:hover{

    transform:translateY(-5px);

}






.stats-mini{

    display:flex;

    gap:50px;

    margin-top:60px;

}



.stats-mini div{

    display:flex;

    flex-direction:column;

}



.stats-mini strong{

    font-size:30px;

}



.stats-mini span{

    color:var(--muted);

}






/* SERVER CARD */


.server-card{

    width:380px;

    background:
    rgba(13,20,40,.8);

    border:
    1px solid rgba(255,255,255,.1);

    border-radius:25px;

    padding:25px;

    backdrop-filter:blur(20px);

    box-shadow:
    0 30px 80px rgba(0,0,0,.4);

}



.server-top{

    display:flex;

    gap:8px;

}



.circle{

    width:12px;
    height:12px;

    border-radius:50%;

    background:#64748b;

}



.server-body{

    text-align:center;

    padding:40px 20px;

}



.server-icon{

    font-size:70px;

}



.server-body h3{

    margin-top:20px;

    font-size:25px;

}



.server-body p{

    color:var(--muted);

    margin-top:10px;

}



.server-status{

    margin-top:30px;

    padding:15px;

    border-radius:12px;

    background:
    rgba(34,197,94,.1);

    color:#4ade80;

}



.online{

    display:inline-block;

    width:10px;

    height:10px;

    background:#22c55e;

    border-radius:50%;

    margin-right:10px;

}
/* =================================
   SERVICES
================================= */


section{

    padding:100px 8%;

}



.title{

    text-align:center;

    max-width:800px;

    margin:auto;

}



.small{

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:15px;

}



.title h2{

    font-size:45px;

    font-weight:800;

}



.title p{

    color:var(--muted);

    margin-top:15px;

    font-size:18px;

}





/* SERVICE CARDS */


.services-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}



.service-card{

    background:
    rgba(13,20,40,.8);

    border:

    1px solid rgba(255,255,255,.08);

    padding:35px;

    border-radius:25px;

    transition:.4s;

    position:relative;

    overflow:hidden;

}



.service-card::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:
    var(--primary);

    filter:blur(70px);

    opacity:.2;

    top:-40px;

    right:-40px;

}



.service-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(79,124,255,.5);

}



.icon{

    font-size:50px;

    margin-bottom:25px;

}



.service-card h3{

    font-size:24px;

    margin-bottom:15px;

}



.service-card p{

    color:var(--muted);

    line-height:1.6;

}



.service-card span{

    display:inline-block;

    margin-top:25px;

    padding:8px 18px;

    border-radius:50px;

    background:
    rgba(34,197,94,.12);

    color:#4ade80;

    font-size:14px;

}



.service-card.coming span{

    background:
    rgba(245,158,11,.15);

    color:#fbbf24;

}





/* FEATURES */


.features{

    margin-top:60px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}



.feature{

    background:
    var(--card);

    padding:35px;

    border-radius:25px;

    border:
    1px solid rgba(255,255,255,.08);

    transition:.3s;

}



.feature:hover{

    transform:translateY(-8px);

}



.feature-icon{

    font-size:45px;

    margin-bottom:20px;

}



.feature h3{

    font-size:22px;

    margin-bottom:15px;

}



.feature p{

    color:var(--muted);

    line-height:1.6;

}





/* NUMBERS */


.numbers{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(200px,1fr));

    gap:30px;

    background:
    rgba(13,20,40,.7);

    border-top:
    1px solid rgba(255,255,255,.05);

    border-bottom:
    1px solid rgba(255,255,255,.05);

}



.number-box{

    text-align:center;

}



.number-box strong{

    display:block;

    font-size:50px;

    background:
    linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
    );

    -webkit-background-clip:text;

    color:transparent;

}



.number-box span{

    color:var(--muted);

    font-size:18px;

}






/* PRICING */


.pricing{

    margin-top:60px;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:30px;

}



.price-card{

    width:330px;

    background:
    rgba(13,20,40,.9);

    border-radius:25px;

    padding:40px;

    border:
    1px solid rgba(255,255,255,.08);

    position:relative;

    transition:.4s;

}



.price-card:hover{

    transform:
    translateY(-10px);

}



.price-card.popular{

    border-color:
    var(--primary);

    box-shadow:
    0 0 50px rgba(79,124,255,.2);

}



.popular-label{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    padding:8px 25px;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );

    border-radius:50px;

    font-size:13px;

}



.price-card h3{

    font-size:28px;

}



.price{

    margin:25px 0;

    font-size:55px;

    font-weight:900;

}



.price small{

    font-size:18px;

    color:var(--muted);

}



.price-card ul{

    list-style:none;

}



.price-card li{

    margin:15px 0;

    color:#cbd5e1;

}



.price-card li::before{

    content:"✓";

    color:#4ade80;

    margin-right:10px;

}



.price-card button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:14px;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );

    color:white;

    font-size:16px;

    cursor:pointer;

}





/* LOCATIONS */


.location-grid{

    margin-top:50px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}



.location-grid div{

    text-align:center;

    padding:35px;

    background:
    var(--card);

    border-radius:25px;

    font-size:40px;

}



.location-grid h3{

    margin-top:15px;

    font-size:22px;

}



.location-grid p{

    font-size:15px;

    color:var(--muted);

    margin-top:10px;

}
/* =================================
   FAQ
================================= */


.faq-container{

    max-width:900px;

    margin:60px auto 0;

    display:flex;

    flex-direction:column;

    gap:20px;

}



.faq{

    background:
    rgba(13,20,40,.8);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:20px;

    overflow:hidden;

}



.question{

    padding:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

}



.question span{

    font-size:25px;

    color:var(--primary);

}



.answer{

    max-height:0;

    overflow:hidden;

    padding:0 25px;

    color:var(--muted);

    line-height:1.6;

    transition:.4s;

}



.faq.active .answer{

    max-height:150px;

    padding-bottom:25px;

}





/* =================================
   CONTACT
================================= */


.contact-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    background:

    linear-gradient(
    135deg,
    rgba(79,124,255,.15),
    rgba(139,92,246,.15)
    );

    border:

    1px solid rgba(255,255,255,.1);

    padding:60px;

    border-radius:35px;

}



.contact-box h2{

    font-size:40px;

    margin:15px 0;

}



.contact-box p{

    color:var(--muted);

}



.contact-buttons{

    display:flex;

    gap:20px;

}



.contact-buttons a{

    padding:15px 30px;

    border-radius:15px;

    background:
    var(--primary);

    color:white;

    text-decoration:none;

    transition:.3s;

}



.contact-buttons a:hover{

    transform:translateY(-5px);

}





/* =================================
   FOOTER
================================= */


footer{

    padding:70px 8% 30px;

    border-top:

    1px solid rgba(255,255,255,.08);

}



.footer-main{

    display:grid;

    grid-template-columns:

    2fr 1fr 1fr 1fr;

    gap:40px;

}



.footer-brand p{

    color:var(--muted);

    margin-top:20px;

    max-width:350px;

    line-height:1.6;

}



.footer-column{

    display:flex;

    flex-direction:column;

    gap:15px;

}



.footer-column h3{

    margin-bottom:10px;

}



.footer-column a{

    color:var(--muted);

    text-decoration:none;

    transition:.3s;

}



.footer-column a:hover{

    color:white;

}



.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:

    1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    color:var(--muted);

}





/* =================================
   ANIMATIONS
================================= */


.hidden{

    opacity:0;

    transform:
    translateY(40px);

}



.show{

    opacity:1;

    transform:
    translateY(0);

    transition:
    .8s ease;

}





/* =================================
   RESPONSIVE MOBILE
================================= */


@media(max-width:1100px){


    nav{

        display:none;

    }



    .hero{


        flex-direction:column;

        text-align:center;


    }



    .hero h1{

        font-size:55px;

    }



    .hero p{

        margin-left:auto;

        margin-right:auto;

    }



    .hero-buttons{

        justify-content:center;

    }



    .stats-mini{

        justify-content:center;

    }



}





@media(max-width:800px){


header{

    padding:20px 5%;

}



.logo{

    font-size:25px;

}



.nav-buttons .login{

    display:none;

}



.hero{

    padding-left:5%;

    padding-right:5%;

}



.hero h1{

    font-size:42px;

}



.hero p{

    font-size:16px;

}



.server-card{

    width:100%;

}



.stats-mini{

    flex-direction:column;

    gap:25px;

}



section{

    padding:70px 5%;

}



.title h2{

    font-size:32px;

}



.contact-box{

    flex-direction:column;

    padding:35px;

    text-align:center;

}



.contact-buttons{

    flex-direction:column;

    width:100%;

}



.footer-main{

    grid-template-columns:1fr;

}



.footer-bottom{

    flex-direction:column;

    gap:15px;

}


}




/* =================================
   SCROLLBAR
================================= */


::-webkit-scrollbar{

    width:10px;

}



::-webkit-scrollbar-track{

    background:#050816;

}



::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
    var(--primary),
    var(--secondary)
    );

    border-radius:20px;

}




/* =================================
   SELECTION
================================= */


::selection{

    background:var(--primary);

    color:white;

}