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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#080808;
    color:white;
    overflow-x:hidden;
}

.bg-glow{
    position:fixed;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;
    opacity:.12;
}

.glow-1{
    background:#ffffff;
    top:-120px;
    left:-120px;
}

.glow-2{
    background:#8b8b8b;
    right:-120px;
    top:300px;
}

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 8%;
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(14px);
    background:rgba(8,8,8,.75);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:1.35rem;
    font-weight:800;
}

.logo img{
    width:42px;
    height:42px;
}

nav{
    display:flex;
    gap:34px;
}

nav a{
    color:#c4c4c4;
    text-decoration:none;
    transition:.2s;
}

nav a:hover{
    color:white;
}

.nav-buttons{
    display:flex;
    gap:12px;
}

a {
    border:none;
    font-weight: 10;
    font-size: 15px;
    cursor:pointer;
    transition:.25s;
    font-family:'Inter',sans-serif;
    text-decoration:none;
    display:inline-block;
}
button,

a.primary-btn,
a.secondary-btn,
a.ghost-btn{
    border:none;
    cursor:pointer;
    transition:.25s;
    font-family:'Inter',sans-serif;
    text-decoration:none;
    display:inline-block;
}

.primary-btn{
    background:linear-gradient(135deg,#ffffff,#d7d7d7);
    color:black;
    padding:13px 20px;
    border-radius:14px;
    font-weight:700;
}

.primary-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(255,255,255,.12);
}

.secondary-btn,
.ghost-btn{
    background:rgba(255,255,255,.04);
    color:white;
    border:1px solid rgba(255,255,255,.08);
    padding:13px 20px;
    border-radius:14px;
}

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    align-items:center;
    gap:70px;
    padding:80px 8%;
}

.hero-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);
    color:#b7b7b7;
    margin-bottom:28px;
}

.hero h1{
    font-size:5.5rem;
    line-height:.95;
    letter-spacing:-4px;
    margin-bottom:26px;
}

.hero p{
    color:#a5a5a5;
    font-size:1.08rem;
    line-height:1.8;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:36px;
}

.hero-btn{
    padding:16px 28px;
}

.hero-stats{
    display:flex;
    gap:50px;
    margin-top:65px;
}

.hero-stats h2{
    font-size:2rem;
}

.hero-stats span{
    color:#8f8f8f;
}

.panel-card{
    background:linear-gradient(180deg,#171717,#0d0d0d);
    border:1px solid rgba(255,255,255,.08);
    border-radius:32px;
    overflow:hidden;
    box-shadow:
        0 30px 80px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.04);
}

.panel-top{
    padding:20px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.dots{
    display:flex;
    gap:10px;
}

.dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#676767;
}

.panel-label{
    color:#8d8d8d;
    font-size:.9rem;
}

.panel-content{
    padding:32px;
}

.resource-section{
    padding:16px;
    background:#0f0f0f;
    border-radius:16px;
}

.resource-section h4{
    color:#a0a0a0;
    font-size:.9rem;
    margin-bottom:16px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.resource-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.04);
    color:#d0d0d0;
}

.resource-row:last-child{
    border-bottom:none;
}

.resource-row span{
    color:#8d8d8d;
    font-size:.95rem;
}

.resource-row strong{
    color:#ffffff;
    font-weight:600;
}



section{
    padding:120px 8%;
}

.section-header{
    margin-bottom:60px;
}

.section-header span{
    color:#8e8e8e;
    font-size:.8rem;
    letter-spacing:2px;
}

.section-header h2{
    font-size:3rem;
    margin-top:14px;
    letter-spacing:-2px;
}

.feature-grid,
.faq-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.feature-card,
.faq-card{
    background:linear-gradient(180deg,#121212,#0d0d0d);
    border:1px solid rgba(255,255,255,.06);
    border-radius:28px;
    padding:36px;
}

.feature-icon{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    margin-bottom:24px;
    font-size:1.4rem;
}

.feature-card h3,
.faq-card h3{
    margin-bottom:16px;
}

.feature-card p,
.faq-card p{
    color:#9d9d9d;
    line-height:1.7;
}

.plans-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:28px;
    align-items:stretch;
}

.plan-card{
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(180deg,#161616,#0d0d0d);
    border:1px solid rgba(255,255,255,.07);
    border-radius:32px;
    padding:42px;
    transition:.35s;
}

.plan-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top,
    rgba(255,255,255,.08),
    transparent 55%);
    pointer-events:none;
}

.plan-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,255,255,.15);
}

.featured-plan{
    border:1px solid rgba(255,255,255,.22);
    background:
        linear-gradient(180deg,#202020,#0e0e0e);
    box-shadow:
        0 20px 60px rgba(255,255,255,.08);
}

.popular-badge{
    position:absolute;
    top:18px;
    right:18px;
    background:white;
    color:black;
    padding:8px 14px;
    border-radius:999px;
    font-size:.75rem;
    font-weight:700;
}

.plan-top{
    margin-bottom:34px;
}

.plan-top h3{
    font-size:1.5rem;
    margin-bottom:18px;
}

.price{
    font-size:4.2rem;
    font-weight:800;
    letter-spacing:-3px;
}

.price span{
    font-size:1rem;
    color:#8f8f8f;
    margin-left:6px;
    font-weight:400;
    letter-spacing:0.5px;
}

.price-per-gb{
    font-size:.85rem;
    color:#7d7d7d;
    margin-top:8px;
    font-weight:600;
    letter-spacing:0.5px;
}

.plan-card ul{
    list-style:none;
    margin-bottom:34px;
}

.plan-card li{
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    color:#bebebe;
}

.full-btn{
    width:100%;
    padding:16px;
}

.pterodactyl-section{
    position:relative;
}

.ptero-wrapper{
    display:flex;
    justify-content:center;
}

.ptero-card{
    width:100%;
    max-width:900px;
    background:
        linear-gradient(180deg,#161616,#0e0e0e);
    border:1px solid rgba(255,255,255,.08);
    border-radius:34px;
    padding:50px;
    text-align:center;
}

.ptero-card h3{
    font-size:2rem;
    margin-bottom:22px;
}

.ptero-card p{
    color:#a2a2a2;
    line-height:1.9;
    max-width:700px;
    margin:auto;
}

.ptero-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:18px;
    margin-top:40px;
}

.ptero-features div{
    background:#111;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:18px;
}

.footer{
    padding:50px 8%;
    border-top:1px solid rgba(255,255,255,.06);
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer p{
    color:#8d8d8d;
    margin-top:10px;
}

.footer-links{
    display:flex;
    gap:24px;
}

.footer-links a{
    text-decoration:none;
    color:#bdbdbd;
}

@media(max-width:1100px){

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

    .hero h1{
        font-size:4rem;
    }

    nav,
    .nav-buttons{
        display:none;
    }

}

@media(max-width:700px){

    .hero h1{
        font-size:3rem;
    }

    .hero-stats{
        flex-direction:column;
        gap:24px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .footer{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

}