*{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% 15%,rgba(0,255,208,.13),transparent 35%),
        radial-gradient(circle at 92% 14%,rgba(0,168,255,.16),transparent 38%),
        radial-gradient(circle at 50% 100%,rgba(74,144,255,.08),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}
.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}
.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);
}

/* 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% 45%,rgba(0,168,255,.10),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 NEW */
.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,.68),rgba(2,5,11,.96)),
        url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?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 72% 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,.16),transparent 45%,rgba(0,0,0,.36));
    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,.92),transparent 82%);
    z-index:-2;
}
.hero-grid{
    display:grid;
    grid-template-columns:1fr .95fr;
    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 h3{
    color:#00ffd0;
    font-family:"Orbitron",sans-serif;
    font-size:23px;
    margin-bottom:8px;
}
.metric p{
    margin:0;
    color:#aeb7c2;
    font-size:12px;
    line-height:1.5;
}

/* NEW VISUAL: CLOUD SYNC ORBIT */
.cloud-command{
    position:relative;
    min-height:700px;
}
.orbit-panel{
    position:absolute;
    top:0;
    right:0;
    width:610px;
    min-height:570px;
    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;
}
.orbit-panel::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;
}
.orbit-head{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:34px;
}
.orbit-head small{
    color:#00ffd0;
    font-size:12px;
    font-weight:900;
    letter-spacing:1px;
}
.orbit-head h3{
    font-family:"Orbitron",sans-serif;
    font-size:30px;
    margin-top:8px;
}
.orbit-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);
}
.cloud-orbit-stage{
    position:relative;
    z-index:2;
    height:310px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.sync-ring{
    position:absolute;
    width:340px;
    height:340px;
    border-radius:50%;
    border:1px dashed rgba(0,255,200,.28);
    animation:spin 24s linear infinite;
}
.sync-ring.two{
    width:250px;
    height:250px;
    border-color:rgba(0,168,255,.24);
    animation-duration:16s;
    animation-direction:reverse;
}
.cloud-core-new{
    position:relative;
    width:190px;
    height:190px;
    border-radius:50%;
    background:
        radial-gradient(circle at 50% 35%,rgba(0,255,208,.22),transparent 45%),
        linear-gradient(145deg,rgba(0,255,200,.13),rgba(0,120,255,.08)),
        #06101a;
    border:1px solid rgba(0,255,200,.28);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    box-shadow:0 0 75px rgba(0,255,200,.24),inset 0 0 35px rgba(0,255,200,.035);
    transform:perspective(900px) rotateY(-10deg) rotateX(4deg);
}
.cloud-core-new b{
    font-size:48px;
    margin-bottom:10px;
}
.cloud-core-new span{
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
}
.orbit-dot{
    position:absolute;
    width:58px;
    height:58px;
    border-radius:18px;
    background:#0a131d;
    border:1px solid rgba(0,255,208,.22);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    box-shadow:0 0 28px rgba(0,255,208,.10);
}
.orbit-dot.d1{top:12px;left:50%;transform:translateX(-50%)}
.orbit-dot.d2{right:48px;top:128px}
.orbit-dot.d3{bottom:28px;right:140px}
.orbit-dot.d4{left:58px;top:128px}
.orbit-stats{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-top:34px;
}
.orbit-stats div{
    background:#0a111b;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:20px;
}
.orbit-stats small{
    display:block;
    color:#8e98a3;
    font-size:11px;
    margin-bottom:8px;
}
.orbit-stats strong{
    display:block;
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:19px;
}
.backup-card{
    position:absolute;
    left:0;
    bottom:24px;
    width:395px;
    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);
}
.backup-card strong{
    display:block;
    font-family:"Orbitron",sans-serif;
    font-size:19px;
    color:#00ffd0;
    margin-bottom:8px;
}
.backup-card p{
    color:#aeb7c2;
    font-size:13px;
    line-height:1.7;
    margin-bottom:14px;
}
.backup-flow{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:8px;
}
.backup-flow span{
    height:34px;
    border-radius:12px;
    background:rgba(0,255,208,.08);
    border:1px solid rgba(0,255,208,.14);
    color:#dffff8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:900;
}

/* 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;
}

/* PRODUCT ROWS KEEP */
.storage-products-list{
    display:flex;
    flex-direction:column;
    gap:26px;
    margin-top:60px;
    perspective:1600px;
}
.storage-row{
    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;
}
.storage-row::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(74,144,255,.30),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;
}
.storage-row::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;
}
.storage-row: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);
}
.storage-row:hover::before{opacity:.72}
.storage-row:hover::after{left:115%;opacity:1}
.storage-row.popular{
    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-badge{
    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);
}
.storage-name{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:18px;
    transform:translateZ(22px);
}
.storage-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);
}
.storage-icon::after{
    content:"";
    position:absolute;
    right:9px;
    bottom:9px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 16px #00ff88;
}
.storage-name h3{
    font-family:"Orbitron",sans-serif;
    font-size:24px;
    line-height:1.08;
    letter-spacing:-.5px;
    margin-bottom:8px;
}
.storage-name span{
    display:block;
    color:#98a4b1;
    font-size:14px;
    line-height:1.55;
    max-width:360px;
}
.storage-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);
}
.storage-spec::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,255,208,.075),transparent 58%);
    opacity:.9;
    pointer-events:none;
}
.storage-row:hover .storage-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);
}
.storage-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;
}
.storage-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;
}
.storage-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);
}
.storage-price small{
    font-family:"Inter",sans-serif;
    font-size:13px;
    font-weight:700;
    color:#8d98a5;
}
.storage-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);
}
.storage-btn:hover{
    transform:translateY(-3px) scale(1.02) translateZ(26px);
    letter-spacing:.35px;
    box-shadow:0 0 48px rgba(0,255,208,.36);
}

/* NEW FEATURE BLOCKS */
.cloud-blueprint{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    align-items:stretch;
}
.blueprint-main{
    position:relative;
    overflow:hidden;
    min-height:520px;
    border-radius:42px;
    padding:54px;
    background:
        radial-gradient(circle at 20% 10%,rgba(0,255,208,.15),transparent 36%),
        radial-gradient(circle at 90% 30%,rgba(0,168,255,.12),transparent 36%),
        #050b13;
    border:1px solid rgba(0,255,208,.12);
}
.blueprint-main h2{
    font-family:"Orbitron",sans-serif;
    font-size:52px;
    line-height:1.1;
    margin-bottom:22px;
}
.blueprint-main h2 span{color:#00ffd0}
.blueprint-main p{
    color:#bfc6cf;
    font-size:16px;
    line-height:1.9;
    max-width:740px;
}
.blueprint-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-top:34px;
}
.blueprint-chip{
    padding:20px;
    border-radius:20px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.065);
}
.blueprint-chip strong{
    display:block;
    color:#00ffd0;
    font-family:"Orbitron",sans-serif;
    font-size:18px;
    margin-bottom:8px;
}
.blueprint-chip span{
    color:#aeb7c2;
    font-size:13px;
    line-height:1.6;
}
.blueprint-side{
    display:grid;
    gap:24px;
}
.cloud-feature-card{
    position:relative;
    overflow:hidden;
    padding:34px;
    border-radius:28px;
    background:#091018;
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;
}
.cloud-feature-card:hover{
    transform:translateY(-8px);
    border-color:#00ffd0;
    box-shadow:0 0 35px rgba(0,255,200,.08);
}
.cloud-feature-card b{
    display:flex;
    width:58px;
    height:58px;
    border-radius:18px;
    background:rgba(0,255,208,.08);
    border:1px solid rgba(0,255,208,.18);
    align-items:center;
    justify-content:center;
    font-size:27px;
    margin-bottom:20px;
}
.cloud-feature-card h3{
    font-family:"Orbitron",sans-serif;
    font-size:20px;
    margin-bottom:12px;
}
.cloud-feature-card p{
    color:#b8b8b8;
    font-size:13px;
    line-height:1.8;
}
.workflow{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}
.step-card{
    position:relative;
    overflow:hidden;
    padding:30px;
    border-radius:28px;
    background:#091018;
    border:1px solid rgba(255,255,255,.06);
}
.step-card span{
    display:block;
    color:#00ffd0;
    font-family:"Orbitron",sans-serif;
    font-size:32px;
    margin-bottom:18px;
}
.step-card h3{
    font-family:"Orbitron",sans-serif;
    font-size:19px;
    margin-bottom:12px;
}
.step-card p{
    color:#b8b8b8;
    font-size:13px;
    line-height:1.8;
}
.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;
}

/* FOOTER */
.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){
    .storage-row{grid-template-columns:1.35fr repeat(3,.9fr) .78fr .8fr}
    .storage-row .storage-spec:nth-of-type(4),
    .storage-row .storage-spec:nth-of-type(5){display:none}
}
@media(max-width:1450px){
    .hero-grid,.cloud-blueprint{grid-template-columns:1fr}
    .cloud-command{height:730px}
}
@media(max-width:1300px){
    .hero h1{font-size:56px}
    .hero-metrics,.orbit-stats,.blueprint-grid,.workflow{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:1200px){
    .desktop-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}
    .royal-logo strong{font-size:18px}
    .royal-logo span{font-size:10px}
    .nav-inner{height:74px}
    .footer-top,.footer-links-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:1180px){
    .storage-row{grid-template-columns:1fr 1fr}
    .storage-name{grid-column:1/-1}
    .storage-row .storage-spec:nth-of-type(4),
    .storage-row .storage-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,.blueprint-main h2,.cta h2{font-size:38px}
    .hero p{font-size:16px}
    .hero-grid{padding:70px 0 70px;gap:40px}
    .hero-metrics,.orbit-stats,.storage-row,.blueprint-grid,.workflow,.footer-top,.footer-links-grid{grid-template-columns:1fr}
    .cloud-command{height:auto;display:grid;gap:22px}
    .orbit-panel,.backup-card{position:relative;width:100%;left:auto;right:auto;top:auto;bottom:auto}
    .orbit-panel{min-height:auto;padding:26px}
    .cloud-orbit-stage{height:280px}
    .sync-ring{width:260px;height:260px}
    .sync-ring.two{width:190px;height:190px}
    .cloud-core-new{width:150px;height:150px}
    .orbit-dot{display:none}
    .storage-products-list{gap:18px;margin-top:38px}
    .storage-row{padding:24px;border-radius:28px}
    .storage-name{align-items:flex-start}
    .storage-icon{width:58px;height:58px;border-radius:19px;font-size:26px}
    .storage-name h3{font-size:21px}
    .storage-name span{max-width:none;font-size:13px}
    .storage-spec{text-align:left;padding:15px 16px}
    .storage-price{text-align:center;font-size:42px;padding-top:8px}
    .storage-btn{width:100%}
    .popular-badge{right:22px;font-size:11px;padding:8px 14px}
    .blueprint-main,.cta{padding:35px}
    .cta{display:block}
    .cta .btn-main{display:inline-flex;margin-top:24px}
    .footer-bottom{flex-direction:column;align-items:flex-start}
}