*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    background:#02050b;
    color:#fff;
    font-family:"Inter",sans-serif;
    overflow-x:hidden;
    padding-top:114px;
}
a{text-decoration:none;color:inherit}
.container{width:92%;max-width:1580px;margin:auto}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 10% 12%,rgba(0,255,208,.13),transparent 35%),
        radial-gradient(circle at 88% 18%,rgba(0,168,255,.16),transparent 38%),
        radial-gradient(circle at 50% 100%,rgba(126,87,255,.09),transparent 44%);
    z-index:-4;
}
body::after{
    content:"";
    position:fixed;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
    background-size:74px 74px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.88),transparent 84%);
    z-index:-3;
}

/* HEADER */
.royal-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(1,5,10,.78);
    backdrop-filter:blur(24px);
    border-bottom:1px solid rgba(255,255,255,.06);
}
.header-glow{
    position:absolute;
    top:-120px;
    left:8%;
    width:420px;
    height:220px;
    background:rgba(0,255,200,.12);
    filter:blur(90px);
    pointer-events:none;
}
.header-topbar{
    height:36px;
    background:rgba(7,15,24,.72);
    border-bottom:1px solid rgba(255,255,255,.045);
    position:relative;
    z-index:2;
}
.topbar-inner{
    height:36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.topbar-left{
    display:flex;
    align-items:center;
    gap:9px;
    color:#aeb7c2;
    font-size:12px;
    font-weight:600;
}
.live-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 14px #00ff88;
}
.topbar-left span:not(.live-dot){color:#4b5662}
.topbar-right{display:flex;align-items:center;gap:18px}
.topbar-right a{color:#8e99a5;font-size:12px;transition:.3s}
.topbar-right a:hover{color:#00ffd0}
.nav-inner{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
.royal-logo{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:260px;
}
.logo-mark{
    width:48px;
    height:48px;
    border-radius:16px;
    background:linear-gradient(135deg,rgba(0,255,200,.22),rgba(0,168,255,.12));
    border:1px solid rgba(0,255,200,.30);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00ffd0;
    font-family:"Orbitron",sans-serif;
    font-weight:900;
    font-size:16px;
    box-shadow:0 0 25px rgba(0,255,200,.15);
}
.royal-logo strong{
    display:block;
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:22px;
    letter-spacing:1px;
    line-height:1;
}
.royal-logo span{
    display:block;
    color:#89939f;
    font-size:11px;
    margin-top:6px;
    letter-spacing:1px;
    text-transform:uppercase;
}
.main-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
}
.main-menu>a{
    color:#c9d0d8;
    font-size:14px;
    font-weight:700;
    transition:.3s;
    position:relative;
}
.main-menu>a:hover,.main-menu>a.active{color:#00ffd0}
.main-menu>a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-12px;
    width:0;
    height:2px;
    background:#00ffd0;
    box-shadow:0 0 15px #00ffd0;
    transition:.3s;
}
.main-menu>a:hover::after,.main-menu>a.active::after{width:100%}
.nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:240px;
    justify-content:flex-end;
}
.login-link{color:#9ba5b0;font-size:14px;font-weight:700;transition:.3s}
.login-link:hover{color:#00ffd0}
.client-panel-btn{
    padding:14px 24px;
    border-radius:15px;
    background:linear-gradient(90deg,#00ffd0,#00a8ff);
    color:black;
    font-size:14px;
    font-weight:900;
    box-shadow:0 0 30px rgba(0,255,200,.25);
    transition:.3s;
}
.client-panel-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 45px rgba(0,255,200,.35);
}

/* MOBILE HEADER */
.mobile-menu-btn{
    display:none;
    width:48px;
    height:48px;
    border:1px solid rgba(0,255,208,.22);
    border-radius:16px;
    background:rgba(0,255,208,.07);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    box-shadow:0 0 24px rgba(0,255,208,.10);
}
.mobile-menu-btn span{
    width:22px;
    height:2px;
    border-radius:99px;
    background:#00ffd0;
    box-shadow:0 0 12px rgba(0,255,208,.65);
    transition:.3s;
}
.mobile-menu-btn.is-open span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.mobile-menu-btn.is-open span:nth-child(2){opacity:0}
.mobile-menu-btn.is-open span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(8px);
    z-index:9998;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}
.mobile-menu-overlay.is-open{opacity:1;visibility:visible}
.mobile-drawer{
    position:fixed;
    top:0;
    right:0;
    width:min(410px,92vw);
    height:100vh;
    z-index:9999;
    padding:22px;
    background:
        radial-gradient(circle at 80% 0%,rgba(0,255,208,.14),transparent 34%),
        radial-gradient(circle at 0% 48%,rgba(0,168,255,.12),transparent 35%),
        linear-gradient(180deg,rgba(7,16,26,.97),rgba(2,5,11,.98));
    border-left:1px solid rgba(0,255,208,.18);
    box-shadow:-35px 0 90px rgba(0,0,0,.55),0 0 70px rgba(0,255,208,.10);
    transform:translateX(105%);
    transition:.42s cubic-bezier(.2,.8,.2,1);
    overflow-y:auto;
}
.mobile-drawer.is-open{transform:translateX(0)}
.mobile-drawer-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:20px;
}
.mobile-logo{min-width:0}
.mobile-logo .logo-mark{width:44px;height:44px;border-radius:15px}
.mobile-logo strong{font-size:17px}
.mobile-logo span{font-size:10px}
.mobile-close{
    width:42px;
    height:42px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.09);
    background:rgba(255,255,255,.04);
    color:#fff;
    font-size:18px;
    font-weight:900;
    cursor:pointer;
}
.mobile-status{
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 15px;
    border-radius:18px;
    background:rgba(0,255,136,.07);
    border:1px solid rgba(0,255,136,.14);
    color:#d5ffe8;
    font-size:13px;
    font-weight:800;
    margin-bottom:18px;
}
.mobile-status span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 14px #00ff88;
}
.mobile-links{display:grid;gap:10px}
.mobile-link{
    position:relative;
    overflow:hidden;
    display:block;
    padding:16px 17px;
    border-radius:19px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.07);
    transition:.25s;
}
.mobile-link::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,255,208,.10),transparent 58%);
    opacity:0;
    transition:.25s;
}
.mobile-link b,.mobile-link small{position:relative;z-index:2;display:block}
.mobile-link b{
    font-family:"Orbitron",sans-serif;
    color:#fff;
    font-size:14px;
    margin-bottom:5px;
}
.mobile-link small{color:#94a0ad;font-size:12px;line-height:1.4}
.mobile-link:hover,.mobile-link.active{
    border-color:rgba(0,255,208,.38);
    transform:translateX(-4px);
    box-shadow:0 0 30px rgba(0,255,208,.08);
}
.mobile-link:hover::before,.mobile-link.active::before{opacity:1}
.mobile-link.active b{color:#00ffd0}
.mobile-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:18px;
    padding-bottom:24px;
}
.mobile-primary,.mobile-secondary{
    height:52px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:950;
}
.mobile-primary{
    background:linear-gradient(90deg,#00ffd0,#00a8ff);
    color:#00110f;
    box-shadow:0 0 30px rgba(0,255,208,.24);
}
.mobile-secondary{
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    background:rgba(255,255,255,.035);
}

/* HERO */
.hero{
    position:relative;
    min-height:96vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(2,5,11,.98),rgba(2,5,11,.72),rgba(2,5,11,.96)),
        url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=2200&auto=format&fit=crop");
    background-size:cover;
    background-position:center;
    z-index:-4;
}
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 70% 30%,rgba(0,255,208,.22),transparent 34%),
        radial-gradient(circle at 18% 78%,rgba(0,168,255,.17),transparent 38%),
        linear-gradient(90deg,rgba(0,0,0,.20),transparent 45%,rgba(0,0,0,.35));
    z-index:-3;
}
.hero-lines{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.034) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.034) 1px,transparent 1px);
    background-size:78px 78px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.9),transparent 82%);
    z-index:-2;
}
.hero-grid{
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:74px;
    align-items:center;
    padding:105px 0 95px;
}
.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:999px;
    background:rgba(0,255,200,.08);
    border:1px solid rgba(0,255,200,.18);
    color:#00ffd0;
    font-size:12px;
    font-weight:900;
    letter-spacing:1px;
    margin-bottom:30px;
    box-shadow:inset 0 0 22px rgba(0,255,200,.035);
    text-transform:uppercase;
}
.badge::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 14px #00ff88;
}
.hero h1{
    font-family:"Orbitron",sans-serif;
    font-size:82px;
    line-height:.98;
    font-weight:900;
    letter-spacing:-2px;
    margin-bottom:30px;
}
.hero h1 span{
    color:#00ffd0;
    text-shadow:0 0 38px rgba(0,255,200,.55);
}
.hero p{
    max-width:860px;
    color:#c7ced6;
    font-size:18px;
    line-height:1.9;
    margin-bottom:38px;
}
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:42px;
}
.btn-main,.btn-outline{
    padding:18px 38px;
    border-radius:16px;
    font-weight:900;
    font-size:15px;
    transition:.3s;
}
.btn-main{
    background:linear-gradient(90deg,#00ffd0,#00a8ff);
    color:#000;
    box-shadow:0 0 35px rgba(0,255,200,.30);
}
.btn-main:hover,.btn-outline:hover{transform:translateY(-4px)}
.btn-outline{
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(12px);
}
.hero-metrics{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}
.metric{
    position:relative;
    overflow:hidden;
    padding:22px;
    border-radius:20px;
    background:rgba(8,14,24,.84);
    border:1px solid rgba(255,255,255,.07);
    backdrop-filter:blur(14px);
}
.metric::after{
    content:"";
    position:absolute;
    right:-35px;
    top:-35px;
    width:90px;
    height:90px;
    background:rgba(0,255,200,.10);
    filter:blur(25px);
}
.metric h3{
    position:relative;
    z-index:2;
    color:#00ffd0;
    font-family:"Orbitron",sans-serif;
    font-size:23px;
    margin-bottom:8px;
}
.metric p{
    position:relative;
    z-index:2;
    margin:0;
    color:#aeb7c2;
    font-size:12px;
    line-height:1.5;
}

/* NEW VPS HERO VISUAL */
.vps-control{
    position:relative;
    min-height:700px;
}
.vps-hypervisor{
    position:absolute;
    top:0;
    right:0;
    width:610px;
    min-height:560px;
    padding:34px;
    border-radius:42px;
    background:
        linear-gradient(145deg,rgba(4,10,18,.96),rgba(2,5,11,.97)),
        radial-gradient(circle at 50% 0%,rgba(0,255,200,.20),transparent 42%);
    border:1px solid rgba(0,255,200,.18);
    box-shadow:0 45px 130px rgba(0,0,0,.55),0 0 90px rgba(0,255,200,.16);
    backdrop-filter:blur(18px);
    overflow:hidden;
}
.vps-hypervisor::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size:55px 55px;
    opacity:.16;
    pointer-events:none;
}
.hyper-head{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:34px;
}
.hyper-head small{
    color:#00ffd0;
    font-size:12px;
    font-weight:900;
    letter-spacing:1px;
}
.hyper-head h3{
    font-family:"Orbitron",sans-serif;
    font-size:30px;
    margin-top:8px;
}
.hyper-status{
    color:#00ff88;
    font-size:12px;
    font-weight:900;
    padding:9px 14px;
    border-radius:999px;
    background:rgba(0,255,136,.08);
    border:1px solid rgba(0,255,136,.16);
}
.hyper-visual{
    position:relative;
    z-index:2;
    height:300px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.hyper-orbit{
    position:absolute;
    width:335px;
    height:335px;
    border-radius:50%;
    border:1px dashed rgba(0,255,200,.25);
    animation:spin 24s linear infinite;
}
.vm-grid{
    width:290px;
    height:290px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    transform:perspective(900px) rotateY(-10deg) rotateX(4deg);
}
.vm-node{
    border-radius:28px;
    background:
        linear-gradient(145deg,rgba(0,255,200,.13),rgba(0,120,255,.08)),
        #06101a;
    border:1px solid rgba(0,255,200,.23);
    box-shadow:0 0 55px rgba(0,255,200,.12),inset 0 0 35px rgba(0,255,200,.035);
    position:relative;
    padding:18px;
}
.vm-node::before{
    content:"";
    position:absolute;
    left:18px;
    top:18px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 14px #00ff88;
}
.vm-node strong{
    position:absolute;
    left:18px;
    bottom:18px;
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:15px;
}
.hyper-stats{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-top:34px;
}
.hyper-stats div{
    background:#0a111b;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:20px;
}
.hyper-stats small{
    display:block;
    color:#8e98a3;
    font-size:11px;
    margin-bottom:8px;
}
.hyper-stats strong{
    display:block;
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:19px;
}
.deploy-card{
    position:absolute;
    left:0;
    bottom:24px;
    width:390px;
    padding:22px;
    border-radius:30px;
    background:rgba(6,12,22,.88);
    border:1px solid rgba(0,255,200,.16);
    backdrop-filter:blur(18px);
    box-shadow:0 30px 90px rgba(0,0,0,.42),0 0 55px rgba(0,255,200,.11);
}
.deploy-card strong{
    display:block;
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:19px;
    margin-bottom:8px;
}
.deploy-card p{
    color:#aeb7c2;
    font-size:13px;
    line-height:1.7;
    margin:0 0 14px;
}
.deploy-progress{
    height:9px;
    border-radius:999px;
    overflow:hidden;
    background:rgba(255,255,255,.08);
}
.deploy-progress span{
    display:block;
    width:82%;
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg,#00ffd0,#00a8ff);
    box-shadow:0 0 18px rgba(0,255,208,.38);
}

/* SECTIONS */
.section{padding:118px 0}
.section-header{text-align:center;margin-bottom:68px}
.section-title{
    font-family:"Orbitron",sans-serif;
    font-size:58px;
    line-height:1.1;
    margin-bottom:20px;
}
.section-title span{color:#00ffd0}
.section-sub{
    max-width:940px;
    margin:auto;
    color:#b8b8b8;
    font-size:17px;
    line-height:1.9;
}
.benefits{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:14px;
    margin-bottom:38px;
}
.benefit-box{
    position:relative;
    overflow:hidden;
    padding:18px;
    border-radius:20px;
    background:rgba(8,14,24,.84);
    border:1px solid rgba(255,255,255,.07);
}
.benefit-box small{
    display:block;
    color:#8e98a3;
    font-size:11px;
    margin-bottom:8px;
    text-transform:uppercase;
    font-weight:800;
}
.benefit-box h4{
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:16px;
}

/* PREMIUM VPS PRODUCT ROWS */
.vps-products{
    display:flex;
    flex-direction:column;
    gap:26px;
    perspective:1600px;
}
.vps-card{
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:1.45fr repeat(5,.82fr) .7fr .82fr;
    align-items:center;
    gap:18px;
    padding:30px 26px;
    border-radius:34px;
    background:
        linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.018)),
        radial-gradient(circle at 2% 0%,rgba(0,255,208,.16),transparent 34%),
        radial-gradient(circle at 96% 20%,rgba(0,168,255,.13),transparent 34%),
        #07101a;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 28px 90px rgba(0,0,0,.40),inset 0 0 0 1px rgba(255,255,255,.025);
    transform-style:preserve-3d;
    transition:.42s cubic-bezier(.2,.8,.2,1);
    isolation:isolate;
}
.vps-card::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:36px;
    padding:1px;
    background:linear-gradient(135deg,rgba(0,255,208,.75),rgba(0,168,255,.20),rgba(126,87,255,.28),rgba(0,255,208,.50));
    -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:.22;
    transition:.42s;
    pointer-events:none;
    z-index:-1;
}
.vps-card::after{
    content:"";
    position:absolute;
    top:-120%;
    left:-35%;
    width:32%;
    height:260%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.16),transparent);
    transform:rotate(22deg);
    opacity:0;
    transition:.75s;
    pointer-events:none;
}
.vps-card:hover{
    transform:translateY(-7px) scale(1.006);
    border-color:rgba(0,255,208,.36);
    box-shadow:0 42px 120px rgba(0,0,0,.54),0 0 60px rgba(0,255,208,.12),inset 0 0 0 1px rgba(255,255,255,.04);
}
.vps-card:hover::before{opacity:.72}
.vps-card:hover::after{left:115%;opacity:1}
.vps-card.popular-row{
    border-color:rgba(0,255,208,.38);
    background:
        linear-gradient(180deg,rgba(0,255,208,.085),rgba(255,255,255,.018)),
        radial-gradient(circle at 2% 0%,rgba(0,255,208,.28),transparent 35%),
        radial-gradient(circle at 96% 20%,rgba(0,168,255,.22),transparent 36%),
        #07101a;
    box-shadow:0 38px 120px rgba(0,0,0,.48),0 0 72px rgba(0,255,208,.14);
}
.popular{
    position:absolute;
    top:-1px;
    right:30px;
    z-index:4;
    padding:10px 18px;
    border-radius:0 0 18px 18px;
    background:linear-gradient(90deg,#00ffd0,#00a8ff);
    color:#00110f;
    font-size:12px;
    font-weight:950;
    letter-spacing:.4px;
    box-shadow:0 0 30px rgba(0,255,208,.28),inset 0 -1px 0 rgba(255,255,255,.28);
}
.vps-name{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:18px;
    transform:translateZ(22px);
}
.vps-icon{
    position:relative;
    width:66px;
    height:66px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
    background:linear-gradient(135deg,rgba(0,255,208,.18),rgba(0,168,255,.10));
    border:1px solid rgba(0,255,208,.28);
    box-shadow:0 0 36px rgba(0,255,208,.14),inset 0 0 24px rgba(0,255,208,.045);
}
.vps-icon::after{
    content:"";
    position:absolute;
    right:9px;
    bottom:9px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 16px #00ff88;
}
.vps-name h3{
    font-family:"Orbitron",sans-serif;
    font-size:24px;
    line-height:1.08;
    letter-spacing:-.5px;
    margin-bottom:8px;
}
.vps-name span{
    display:block;
    color:#98a4b1;
    font-size:14px;
    line-height:1.55;
    max-width:360px;
}
.vps-spec{
    position:relative;
    z-index:2;
    overflow:hidden;
    padding:18px 16px;
    border-radius:19px;
    background:#0a131d;
    border:1px solid rgba(255,255,255,.06);
    text-align:center;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.015);
    transition:.3s;
    transform:translateZ(14px);
}
.vps-spec::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,255,208,.075),transparent 58%);
    opacity:.9;
    pointer-events:none;
}
.vps-card:hover .vps-spec{
    border-color:rgba(0,255,208,.16);
    box-shadow:0 0 22px rgba(0,255,208,.045),inset 0 0 0 1px rgba(255,255,255,.025);
}
.vps-spec small{
    position:relative;
    z-index:2;
    display:block;
    color:#8b97a4;
    font-size:10px;
    font-weight:900;
    margin-bottom:9px;
    text-transform:uppercase;
    letter-spacing:.6px;
}
.vps-spec strong{
    position:relative;
    z-index:2;
    display:block;
    color:#fff;
    font-size:15px;
    font-weight:950;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.vps-price{
    position:relative;
    z-index:2;
    font-family:"Orbitron",sans-serif;
    font-size:42px;
    font-weight:900;
    color:#00ffd0;
    text-shadow:0 0 26px rgba(0,255,208,.42);
    white-space:nowrap;
    transform:translateZ(24px);
}
.vps-price span{
    font-family:"Inter",sans-serif;
    font-size:13px;
    font-weight:700;
    color:#8d98a5;
}
.vps-btn{
    position:relative;
    z-index:2;
    height:56px;
    border-radius:17px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(90deg,#00ffd0,#00a8ff);
    color:#00110f;
    font-size:15px;
    font-weight:950;
    box-shadow:0 0 32px rgba(0,255,208,.23);
    transition:.3s;
    transform:translateZ(26px);
}
.vps-btn:hover{
    transform:translateY(-3px) scale(1.02) translateZ(26px);
    letter-spacing:.35px;
    box-shadow:0 0 48px rgba(0,255,208,.36);
}

/* OS STRIP */
.os-strip{
    margin-top:32px;
    padding:22px;
    border-radius:28px;
    background:rgba(0,255,208,.055);
    border:1px solid rgba(0,255,208,.14);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}
.os-strip strong{
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:18px;
}
.os-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.os-list span{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.07);
    color:#d7dee7;
    font-size:13px;
    font-weight:800;
}

/* FEATURE SECTIONS */
.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}
.why-card{
    position:relative;
    overflow:hidden;
    padding:34px;
    border-radius:28px;
    background:#091018;
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;
}
.why-card::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    right:-100px;
    top:-100px;
    background:radial-gradient(circle,rgba(0,255,200,.10),transparent 65%);
}
.why-card:hover{
    transform:translateY(-8px);
    border-color:#00ffd0;
    box-shadow:0 0 35px rgba(0,255,200,.08);
}
.why-icon{
    position:relative;
    z-index:2;
    width:60px;
    height:60px;
    border-radius:18px;
    background:rgba(0,255,200,.08);
    border:1px solid rgba(0,255,200,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}
.why-card h3{
    position:relative;
    z-index:2;
    font-family:"Orbitron",sans-serif;
    font-size:20px;
    margin-bottom:14px;
}
.why-card p{
    position:relative;
    z-index:2;
    color:#b8b8b8;
    font-size:13px;
    line-height:1.8;
}
.power-box{
    position:relative;
    overflow:hidden;
    border-radius:42px;
    padding:76px;
    background:
        radial-gradient(circle at 12% 20%,rgba(0,255,200,.13),transparent 35%),
        radial-gradient(circle at 92% 20%,rgba(0,120,255,.14),transparent 35%),
        #050b13;
    border:1px solid rgba(0,255,200,.12);
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:62px;
    align-items:center;
}
.power-content h2{
    font-family:"Orbitron",sans-serif;
    font-size:54px;
    line-height:1.1;
    margin-bottom:24px;
}
.power-content h2 span{color:#00ffd0}
.power-content p{
    color:#bfc6cf;
    font-size:16px;
    line-height:1.9;
    margin-bottom:28px;
}
.power-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}
.power-list div{
    padding:16px;
    border-radius:16px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.06);
    color:#d8dde3;
    font-size:13px;
    font-weight:700;
}
.terminal-card{
    position:relative;
    min-height:420px;
    border-radius:34px;
    background:#07101a;
    border:1px solid rgba(0,255,208,.18);
    box-shadow:0 0 60px rgba(0,255,200,.13),0 35px 95px rgba(0,0,0,.38);
    overflow:hidden;
    padding:28px;
}
.terminal-head{
    display:flex;
    gap:8px;
    margin-bottom:26px;
}
.terminal-head span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#00ffd0;
    box-shadow:0 0 12px rgba(0,255,208,.6);
}
.terminal-lines{
    display:grid;
    gap:14px;
    font-family:"Orbitron",sans-serif;
    font-size:13px;
}
.terminal-lines div{
    padding:14px;
    border-radius:14px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.06);
    color:#bffef1;
}
.terminal-lines b{color:#00ffd0}

/* CTA + FOOTER */
.cta{
    padding:75px;
    border-radius:36px;
    background:radial-gradient(circle at 80% 50%,rgba(0,255,200,.10),transparent 40%),#091018;
    border:1px solid rgba(0,255,200,.14);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}
.cta h2{
    font-family:"Orbitron",sans-serif;
    font-size:50px;
    line-height:1.1;
    margin-bottom:18px;
}
.cta h2 span{color:#00ffd0}
.cta p{
    color:#b9b9b9;
    line-height:1.8;
    max-width:760px;
}
.royal-footer{
    position:relative;
    overflow:hidden;
    padding:90px 0 35px;
    background:
        radial-gradient(circle at 15% 20%,rgba(0,255,200,.08),transparent 30%),
        radial-gradient(circle at 85% 0%,rgba(0,120,255,.08),transparent 35%),
        #02050a;
    border-top:1px solid rgba(255,255,255,.06);
}
.footer-glow{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(0,255,200,.10);
    filter:blur(150px);
    left:-180px;
    bottom:-220px;
}
.footer-top{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.3fr .9fr;
    gap:50px;
    align-items:center;
    margin-bottom:70px;
    padding-bottom:55px;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.footer-brand h3{
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:30px;
    margin-bottom:20px;
}
.footer-brand p,.footer-newsletter p,.contact-line{
    color:#aeb6bf;
    font-size:14px;
    line-height:1.9;
}
.footer-status{
    margin-top:24px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:999px;
    background:rgba(0,255,136,.07);
    border:1px solid rgba(0,255,136,.14);
    color:#d5ffe8;
    font-size:13px;
    font-weight:700;
}
.footer-status span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 14px #00ff88;
}
.footer-newsletter{
    padding:34px;
    border-radius:28px;
    background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012));
    border:1px solid rgba(255,255,255,.06);
}
.footer-newsletter h4{
    font-family:"Orbitron",sans-serif;
    font-size:24px;
    margin-bottom:14px;
}
.footer-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px}
.footer-actions a{
    padding:14px 22px;
    border-radius:14px;
    font-size:14px;
    font-weight:800;
}
.footer-actions a:first-child{background:linear-gradient(90deg,#00ffd0,#00a8ff);color:black}
.footer-actions a:last-child{border:1px solid rgba(255,255,255,.10);color:white}
.footer-links-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr 1.2fr;
    gap:40px;
    margin-bottom:60px;
}
.footer-links-grid h4{
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:17px;
    margin-bottom:22px;
}
.footer-links-grid a{
    display:block;
    color:#a7afb8;
    font-size:14px;
    margin-bottom:14px;
    transition:.3s;
}
.footer-links-grid a:hover{color:#00ffd0;transform:translateX(4px)}
.payment-badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px}
.payment-badges span{
    padding:8px 12px;
    border-radius:10px;
    background:#091018;
    border:1px solid rgba(255,255,255,.07);
    color:#d4d4d4;
    font-size:12px;
    font-weight:800;
}
.footer-bottom{
    position:relative;
    z-index:2;
    padding-top:28px;
    border-top:1px solid rgba(255,255,255,.06);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}
.footer-bottom p,.footer-bottom a{color:#7f8790;font-size:13px}
.footer-bottom div{display:flex;gap:20px;flex-wrap:wrap}
.footer-bottom a:hover{color:#00ffd0}

@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}

@media(max-width:1500px){
    .vps-card{
        grid-template-columns:1.35fr repeat(3,.9fr) .78fr .8fr;
    }
    .vps-card .vps-spec:nth-of-type(4),
    .vps-card .vps-spec:nth-of-type(5){display:none}
}
@media(max-width:1450px){
    .hero-grid,.power-box{grid-template-columns:1fr}
    .vps-control{height:720px}
    .vps-hypervisor{right:0}
}
@media(max-width:1300px){
    .hero h1{font-size:56px}
    .hero-metrics,.hyper-stats,.power-list{grid-template-columns:repeat(2,1fr)}
    .benefits{grid-template-columns:repeat(3,1fr)}
    .why-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:1200px){
    .main-menu{display:none}
    .mobile-menu-btn{display:flex}
    .nav-actions{min-width:auto}
    .login-link,.client-panel-btn{display:none}
    .royal-logo{min-width:auto}
    .footer-top,.footer-links-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:1180px){
    .vps-card{
        grid-template-columns:1fr 1fr;
        gap:14px;
    }
    .vps-name{grid-column:1/-1}
    .vps-card .vps-spec:nth-of-type(4),
    .vps-card .vps-spec:nth-of-type(5){display:block}
}
@media(max-width:768px){
    body{padding-top:74px}
    .header-topbar{display:none}
    .royal-header{background:rgba(1,5,10,.90)}
    .nav-inner{height:74px}
    .logo-mark{width:44px;height:44px;border-radius:15px}
    .royal-logo strong{font-size:16px}
    .royal-logo span{display:none}
    .mobile-drawer{width:92vw;padding:18px}
    .mobile-link{padding:15px}
    .mobile-link b{font-size:13px}
    .hero h1,.section-title,.power-content h2,.cta h2{font-size:38px}
    .hero p{font-size:16px}
    .hero-grid{padding:70px 0 70px;gap:40px}
    .hero-metrics,.hyper-stats,.benefits,.vps-card,.power-list,.why-grid,.footer-top,.footer-links-grid{grid-template-columns:1fr}
    .vps-control{height:auto;display:grid;gap:22px}
    .vps-hypervisor,.deploy-card{position:relative;width:100%;left:auto;right:auto;top:auto;bottom:auto}
    .vps-hypervisor{min-height:auto;padding:26px}
    .hyper-visual{height:245px}
    .vm-grid{width:230px;height:230px}
    .vps-card{padding:24px;border-radius:28px}
    .vps-name{align-items:flex-start}
    .vps-icon{width:58px;height:58px;border-radius:19px;font-size:26px}
    .vps-name h3{font-size:21px}
    .vps-name span{max-width:none;font-size:13px}
    .vps-spec{text-align:left;padding:15px 16px}
    .vps-price{text-align:center;font-size:42px;padding-top:8px}
    .vps-btn{width:100%}
    .popular{right:22px;font-size:11px;padding:8px 14px}
    .power-box,.cta{padding:35px}
    .cta{display:block}
    .cta .btn-main{display:inline-flex;margin-top:24px}
    .footer-bottom{flex-direction:column;align-items:flex-start}
}
