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

html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    font-family:"Segoe UI",Inter,Arial,sans-serif;
    color:white;
    background:
    radial-gradient(circle at 75% 20%,rgba(73,174,255,.22),transparent 26%),
    radial-gradient(circle at 15% 75%,rgba(46,125,255,.15),transparent 30%),
    linear-gradient(120deg,#020711,#071426 50%,#02050c);
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
    background-size:80px 80px;
    opacity:.18;
    pointer-events:none;
}

:root{
    --blue:#49AEFF;
    --blue2:#76C7FF;
    --text2:#D2E4FF;
    --muted:#8EA7C8;
    --success:#2EFFAF;
    --border:1px solid rgba(120,190,255,.20);
    --shadow:0 30px 90px rgba(0,0,0,.38);
    --glow:0 0 45px rgba(70,170,255,.25);
}

.aion-page{
    position:relative;
    z-index:2;
    min-height:100vh;
    padding:30px 60px;
}

.topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    position:relative;
    z-index:20;
}

.brand-logo{
    display:block;
    color:white;
    text-decoration:none;
    font-size:34px;
    letter-spacing:16px;
    font-weight:300;
}

.brand-subtitle{
    margin-top:6px;
    color:var(--text2);
    font-size:14px;
}

.nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav a,
.nav-dropdown button{
    color:white;
    background:none;
    border:none;
    text-decoration:none;
    letter-spacing:2px;
    font-size:13px;
    font-family:inherit;
    cursor:pointer;
    opacity:.9;
}

.nav a:hover,
.nav-dropdown button:hover{
    color:#66bdff;
}

.nav-dropdown{
    position:relative;
}

.nav-menu{
    position:absolute;
    top:36px;
    left:50%;
    transform:translateX(-50%) translateY(10px);
    min-width:250px;
    padding:16px;
    border-radius:20px;
    background:rgba(6,18,38,.90);
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
    backdrop-filter:blur(22px);
    display:flex;
    flex-direction:column;
    gap:10px;
    opacity:0;
    pointer-events:none;
    transition:.25s ease;
    z-index:80;
}

.nav-dropdown:hover .nav-menu{
    opacity:1;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
}

.nav-menu a{
    padding:11px 12px;
    border-radius:12px;
    white-space:nowrap;
    font-size:12px;
}

.nav-menu a:hover{
    background:rgba(80,170,255,.10);
}

.contact-btn,
.meet-btn,
.aion-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    color:white;
    text-decoration:none;
    border-radius:999px;
    border:1px solid rgba(95,180,255,.42);
    background:rgba(255,255,255,.035);
    box-shadow:0 0 28px rgba(70,170,255,.25);
}

.contact-btn{
    padding:15px 30px;
    font-size:13px;
    letter-spacing:2px;
}

.meet-btn{
    margin-top:55px;
    padding:22px 42px;
    font-size:28px;
}

.contact-btn span,
.status-dot,
.online i{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#4eb4ff;
    box-shadow:0 0 12px #4eb4ff,0 0 25px #4eb4ff;
}

.hero{
    min-height:calc(100vh - 180px);
    display:grid;
    grid-template-columns:1fr 520px;
    align-items:center;
    gap:60px;
    position:relative;
}

.hero-left{
    max-width:720px;
    position:relative;
    z-index:5;
}

.hero-left h1{
    font-size:clamp(78px,8vw,142px);
    letter-spacing:clamp(10px,1.25vw,20px);
    font-weight:200;
    animation:aionBreath 5s infinite ease-in-out;
}

.hero-left h2{
    margin-top:14px;
    font-size:26px;
    font-weight:300;
    color:var(--text2);
}

.intro{
    margin-top:55px;
    font-size:23px;
    line-height:1.7;
    color:rgba(225,238,255,.92);
}

.divider{
    width:70px;
    height:2px;
    background:var(--blue);
    margin:55px 0;
    box-shadow:0 0 18px var(--blue);
}

.claim{
    font-size:20px;
    line-height:2;
    letter-spacing:3px;
}

.claim strong{
    color:var(--blue2);
}

.hero-right{
    position:relative;
    min-height:620px;
}

.orb{
    position:absolute;
    top:0;
    right:70px;
    width:310px;
    height:310px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid rgba(120,205,255,.18);
    background:radial-gradient(circle,rgba(90,180,255,.07),transparent 70%);
    box-shadow:0 0 90px rgba(60,150,255,.25);
    animation:orbPulse 6s infinite ease-in-out;
}

.orb-ring{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(90,180,255,.18);
}

.r1{width:300px;height:300px;animation:orbRotate 28s linear infinite;}
.r2{width:250px;height:250px;animation:orbRotateReverse 23s linear infinite;}
.r3{width:200px;height:200px;animation:orbRotate 18s linear infinite;}
.r4{width:150px;height:150px;animation:orbRotateReverse 14s linear infinite;}
.r5{width:92px;height:92px;animation:orbRotate 10s linear infinite;}

.orb-core{
    position:relative;
    z-index:3;
    width:112px;
    height:112px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:28px;
    letter-spacing:4px;
    background:rgba(4,15,32,.62);
    border:1px solid rgba(130,215,255,.32);
    box-shadow:0 0 35px rgba(70,170,255,.45),inset 0 0 30px rgba(70,170,255,.18);
}

.bars{
    position:absolute;
    top:215px;
    right:0;
    display:flex;
    align-items:flex-end;
    gap:8px;
}

.bars span{
    width:10px;
    background:#3da4ff;
    box-shadow:0 0 15px #3da4ff;
    animation:barLife 2.8s infinite ease-in-out;
}

.bars span:nth-child(1){height:40px;}
.bars span:nth-child(2){height:70px;animation-delay:.2s;}
.bars span:nth-child(3){height:100px;animation-delay:.4s;}
.bars span:nth-child(4){height:130px;animation-delay:.6s;}
.bars span:nth-child(5){height:170px;animation-delay:.8s;}

.system-card,
.product-panel{
    background:linear-gradient(180deg,rgba(18,35,66,.64),rgba(6,14,28,.58));
    border:var(--border);
    border-radius:28px;
    box-shadow:var(--shadow),var(--glow);
    backdrop-filter:blur(20px);
}

.system-card{
    position:absolute;
    top:300px;
    right:40px;
    width:430px;
    padding:35px;
}

.system-card h3{
    margin-bottom:22px;
    letter-spacing:2px;
    font-size:24px;
    font-weight:300;
}

.system-row{
    display:flex;
    justify-content:space-between;
    padding:13px 0;
    color:#dce6ff;
    border-bottom:1px solid rgba(255,255,255,.04);
}

.system-row b{
    color:#7dcbff;
}

.card-line{
    height:1px;
    background:rgba(255,255,255,.08);
    margin:28px 0;
}

.system-card ul{
    list-style:none;
    display:grid;
    gap:14px;
}

.system-card li::before{
    content:"•";
    color:#48a9ff;
    margin-right:12px;
}

.status,
.online{
    display:flex;
    align-items:center;
    gap:12px;
    letter-spacing:2px;
}

.online{
    margin-top:20px;
}

.inner-shell{
    width:100%;
    max-width:1280px;
    margin:90px auto 0;
    padding:0 30px;
}

.inner-hero{
    padding:70px 0 50px;
    border-bottom:1px solid rgba(120,190,255,.16);
}

.page-kicker{
    display:block;
    color:var(--blue2);
    letter-spacing:4px;
    font-size:13px;
    text-transform:uppercase;
}

.inner-hero h1{
    margin-top:18px;
    font-size:clamp(54px,7vw,110px);
    font-weight:200;
    letter-spacing:8px;
    line-height:1;
}

.inner-hero p{
    margin-top:20px;
    max-width:760px;
    font-size:24px;
    line-height:1.55;
    color:rgba(225,238,255,.86);
}

.product-grid{
    margin-top:46px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.product-panel{
    min-height:250px;
    padding:32px;
}

.product-panel h2{
    font-size:26px;
    font-weight:300;
    margin-bottom:20px;
}

.product-panel p{
    color:rgba(225,238,255,.78);
    line-height:1.65;
    font-size:16px;
}

.aion-footer{
    width:calc(100% - 120px);
    margin:60px auto 30px;
    padding-top:18px;
    border-top:1px solid rgba(120,190,255,.15);
    display:flex;
    justify-content:space-between;
    gap:20px;
    color:#c5d6f6;
    font-size:13px;
    letter-spacing:2px;
}

.aion-particle{
    position:fixed;
    width:2px;
    height:2px;
    border-radius:50%;
    background:#47aeff;
    box-shadow:0 0 12px #47aeff;
    z-index:1;
    pointer-events:none;
    animation:particleFloat 9s infinite ease-in-out;
}

@keyframes aionBreath{
    0%,100%{text-shadow:0 0 18px rgba(255,255,255,.45);}
    50%{text-shadow:0 0 35px rgba(255,255,255,.8),0 0 70px rgba(65,160,255,.55);}
}

@keyframes orbPulse{
    0%,100%{box-shadow:0 0 25px rgba(45,150,255,.35),inset 0 0 25px rgba(45,150,255,.15);}
    50%{box-shadow:0 0 70px rgba(45,150,255,.65),inset 0 0 45px rgba(45,150,255,.25);}
}

@keyframes orbRotate{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

@keyframes orbRotateReverse{
    from{transform:rotate(360deg);}
    to{transform:rotate(0deg);}
}

@keyframes barLife{
    0%,100%{opacity:.35;transform:scaleY(.72);}
    50%{opacity:1;transform:scaleY(1);}
}

@keyframes particleFloat{
    0%{transform:translateY(0) scale(1);}
    50%{transform:translateY(-28px) scale(1.8);}
    100%{transform:translateY(0) scale(1);}
}

@media(max-width:1200px){
    .hero{
        grid-template-columns:1fr;
    }

    .nav{
        display:none;
    }

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

@media(max-width:900px){
    .aion-page{
        padding:25px;
    }

    .brand-logo{
        font-size:26px;
        letter-spacing:10px;
    }

    .contact-btn{
        display:none;
    }

    .hero-left h1{
        font-size:72px;
    }

    .orb{
        position:relative;
        right:auto;
        margin:40px auto;
    }

    .bars{
        display:none;
    }

    .system-card{
        position:relative;
        top:auto;
        right:auto;
        width:100%;
    }

    .aion-footer{
        width:calc(100% - 50px);
        flex-direction:column;
    }
}

/*------------------------------------------------*/
/* BLOCCO 17 - VAULT WALLET REAL PAGE */
/*------------------------------------------------*/

.wallet-shell{
    margin-top:46px;
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:26px;
}

.wallet-card-main{
    padding:34px;
    border-radius:32px;
    background:
    radial-gradient(circle at 90% 10%, rgba(73,174,255,.24), transparent 34%),
    linear-gradient(180deg, rgba(18,35,66,.72), rgba(6,14,28,.62));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
    backdrop-filter:blur(22px);
}

.wallet-label{
    color:var(--muted);
    letter-spacing:3px;
    font-size:13px;
}

.wallet-balance{
    margin-top:16px;
    font-size:76px;
    font-weight:200;
    letter-spacing:2px;
}

.wallet-balance span{
    font-size:24px;
    color:var(--blue2);
}

.wallet-actions{
    margin-top:34px;
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.wallet-action{
    padding:14px 22px;
    border-radius:999px;
    border:1px solid rgba(120,190,255,.22);
    background:rgba(255,255,255,.045);
    color:white;
    text-decoration:none;
    letter-spacing:1px;
    font-size:13px;
}

.wallet-action:hover{
    background:rgba(73,174,255,.13);
}

.wallet-chart{
    margin-top:36px;
    height:260px;
    border-radius:26px;
    border:1px solid rgba(120,190,255,.16);
    background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(73,174,255,.16), transparent 35%);
    background-size:42px 42px,42px 42px,100% 100%;
    position:relative;
    overflow:hidden;
}

.wallet-chart::before{
    content:"";
    position:absolute;
    left:4%;
    right:4%;
    bottom:25%;
    height:4px;
    border-radius:999px;
    background:linear-gradient(90deg,#2E7DFF,#49AEFF,#76C7FF);
    box-shadow:0 0 28px rgba(73,174,255,.8);
    transform:skewY(-8deg);
}

.wallet-chart::after{
    content:"";
    position:absolute;
    left:8%;
    right:10%;
    bottom:25%;
    height:120px;
    background:linear-gradient(180deg,rgba(73,174,255,.20),transparent);
    clip-path:polygon(0 80%,18% 65%,34% 72%,52% 38%,70% 48%,100% 10%,100% 100%,0 100%);
}

.wallet-side{
    display:grid;
    gap:22px;
}

.wallet-mini{
    padding:26px;
    border-radius:28px;
    background:linear-gradient(180deg,rgba(18,35,66,.64),rgba(6,14,28,.58));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
    backdrop-filter:blur(20px);
}

.wallet-mini h2{
    font-size:22px;
    font-weight:300;
    margin-bottom:18px;
}

.asset-row,
.movement-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.055);
}

.asset-row:last-child,
.movement-row:last-child{
    border-bottom:none;
}

.asset-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.asset-icon{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(73,174,255,.16);
    border:1px solid rgba(120,190,255,.22);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#76C7FF;
}

.asset-sub{
    margin-top:3px;
    font-size:12px;
    color:var(--muted);
}

.asset-value{
    text-align:right;
}

.asset-value span{
    display:block;
    margin-top:3px;
    font-size:12px;
    color:var(--success);
}

.wallet-feed{
    margin-top:26px;
    padding:26px;
    border-radius:28px;
    border:1px solid rgba(120,190,255,.16);
    background:rgba(255,255,255,.035);
}

.wallet-feed h2{
    font-size:22px;
    font-weight:300;
    margin-bottom:18px;
}

.feed-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.055);
    color:rgba(225,238,255,.82);
}

.feed-item:last-child{
    border-bottom:none;
}

.feed-item span{
    color:var(--muted);
    font-size:12px;
}

@media(max-width:1000px){
    .wallet-shell{
        grid-template-columns:1fr;
    }

    .wallet-balance{
        font-size:54px;
    }
}


/*=========================================================
BLOCCO 18B
AION FINANCIAL IDENTITY
=========================================================*/

.bank-shell{
    margin-top:50px;
    display:flex;
    flex-direction:column;
    gap:28px;
}

.bank-identity-card{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;

    padding:42px;

    border-radius:34px;

    background:
    radial-gradient(circle at 85% 15%,
    rgba(73,174,255,.20),
    transparent 32%),

    linear-gradient(
    180deg,
    rgba(18,35,66,.74),
    rgba(6,14,28,.62));

    border:var(--border);

    box-shadow:
    var(--shadow),
    var(--glow);

    backdrop-filter:blur(24px);

}

.bank-label{

    display:block;

    color:var(--blue2);

    letter-spacing:4px;

    font-size:12px;

    margin-bottom:14px;

}

.bank-identity-left h2{

    font-size:52px;

    font-weight:200;

    letter-spacing:3px;

    margin-bottom:18px;

}

.bank-identity-left p{

    max-width:720px;

    font-size:18px;

    line-height:1.8;

    color:rgba(225,238,255,.82);

}

.bank-badges{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:34px;

}

.bank-badges span{

    padding:10px 18px;

    border-radius:999px;

    background:rgba(73,174,255,.10);

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

    color:#9fd8ff;

    font-size:12px;

    letter-spacing:2px;

}

.trust-score{

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    border-radius:30px;

    background:

    linear-gradient(

    180deg,

    rgba(73,174,255,.12),

    rgba(255,255,255,.02));

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

}

.trust-score label{

    color:var(--muted);

    letter-spacing:3px;

    font-size:12px;

}

.trust-score strong{

    margin-top:12px;

    font-size:82px;

    font-weight:200;

    color:white;

}

.trust-score span{

    margin-top:8px;

    color:var(--success);

    letter-spacing:2px;

}

.bank-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:26px;

}

.bank-panel{

    padding:32px;

    border-radius:30px;

    background:

    linear-gradient(

    180deg,

    rgba(18,35,66,.66),

    rgba(6,14,28,.58));

    border:var(--border);

    box-shadow:

    var(--shadow),

    var(--glow);

    backdrop-filter:blur(20px);

}

.bank-panel h2{

    font-size:26px;

    font-weight:300;

    margin-bottom:24px;

    letter-spacing:1px;

}

.bank-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:16px 0;

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

}

.bank-row:last-child{

    border-bottom:none;

}

.bank-row span{

    color:rgba(225,238,255,.78);

}

.bank-row b{

    color:white;

    font-weight:400;

}

.bank-card-visual{

    height:220px;

    border-radius:26px;

    padding:28px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    background:

    radial-gradient(

    circle at 85% 15%,

    rgba(140,215,255,.35),

    transparent 30%),

    linear-gradient(

    135deg,

    #187DFF,

    #06111F);

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

    box-shadow:

    0 0 40px rgba(73,174,255,.28);

}

.bank-card-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.bank-card-chip{

    width:48px;

    height:34px;

    border-radius:8px;

    background:rgba(255,255,255,.30);

}

.bank-card-number{

    font-size:24px;

    letter-spacing:5px;

}

.bank-card-bottom{

    display:flex;

    justify-content:space-between;

    color:rgba(255,255,255,.82);

    letter-spacing:2px;

    font-size:13px;

}

.bank-stat-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.bank-stat-grid div{

    padding:20px;

    border-radius:20px;

    background:rgba(255,255,255,.04);

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

}

.bank-stat-grid label{

    display:block;

    color:var(--muted);

    font-size:11px;

    letter-spacing:2px;

}

.bank-stat-grid strong{

    display:block;

    margin-top:12px;

    font-size:32px;

    font-weight:250;

}

.bank-stat-grid span{

    display:block;

    margin-top:8px;

    color:var(--success);

}

@media(max-width:1200px){

.bank-identity-card{

grid-template-columns:1fr;

}

.bank-grid{

grid-template-columns:1fr;

}

}

@media(max-width:700px){

.bank-identity-left h2{

font-size:38px;

}

.trust-score strong{

font-size:58px;

}

.bank-stat-grid{

grid-template-columns:1fr;

}

.bank-card-number{

font-size:18px;

letter-spacing:3px;

}

}


/*------------------------------------------------*/
/* BLOCCO 18C - BANK DYNAMIC ENGINE */
/*------------------------------------------------*/

.bank-dynamic-chart{
    grid-column:1 / -1;
    padding:32px;
    border-radius:30px;
    background:linear-gradient(180deg,rgba(18,35,66,.66),rgba(6,14,28,.58));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
    backdrop-filter:blur(20px);
}

.bank-dynamic-chart h2{
    font-size:26px;
    font-weight:300;
    margin-bottom:24px;
}

.bank-chart-bars{
    height:260px;
    display:flex;
    align-items:flex-end;
    gap:14px;
    padding:24px;
    border-radius:24px;
    background:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size:42px 42px;
    border:1px solid rgba(120,190,255,.14);
}

.bank-chart-bars span{
    flex:1;
    min-width:10px;
    border-radius:999px 999px 0 0;
    background:linear-gradient(180deg,#76C7FF,#187DFF);
    box-shadow:0 0 20px rgba(73,174,255,.55);
    height:20%;
    transition:height 1.2s ease;
}

.bank-live-indicator{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    color:#9fd8ff;
    letter-spacing:2px;
    font-size:12px;
}

.bank-live-indicator::before{
    content:"";
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--success);
    box-shadow:0 0 14px var(--success);
}


/*------------------------------------------------*/
/* BLOCCO 18D - BANK DATA FEED + STATUS */
/*------------------------------------------------*/

.bank-data-feed{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.bank-feed-card{
    padding:26px;
    border-radius:28px;
    background:linear-gradient(180deg,rgba(18,35,66,.66),rgba(6,14,28,.58));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
    backdrop-filter:blur(20px);
}

.bank-feed-card h2{
    font-size:22px;
    font-weight:300;
    margin-bottom:18px;
}

.bank-feed-line{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:13px 0;
    border-bottom:1px solid rgba(255,255,255,.055);
}

.bank-feed-line:last-child{
    border-bottom:none;
}

.bank-feed-line span{
    color:rgba(225,238,255,.72);
}

.bank-feed-line b{
    font-weight:400;
}

.bank-positive{
    color:var(--success);
}

.bank-warning{
    color:#ffcc55;
}

.bank-danger{
    color:#ff4a6a;
}

@media(max-width:1000px){
    .bank-data-feed{
        grid-template-columns:1fr;
    }
}


/*=========================================================
BLOCCO 19
AION ACCOUNT DASHBOARD
=========================================================*/

.account-shell{
    margin-top:50px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
}

.account-hero-card{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:1.4fr .6fr;
    gap:36px;
    padding:42px;
    border-radius:34px;
    background:
    radial-gradient(circle at 88% 18%,rgba(73,174,255,.22),transparent 34%),
    linear-gradient(180deg,rgba(18,35,66,.74),rgba(6,14,28,.62));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
    backdrop-filter:blur(24px);
}

.account-identity h2{
    font-size:52px;
    font-weight:200;
    letter-spacing:3px;
    margin-bottom:18px;
}

.account-identity p{
    max-width:760px;
    font-size:18px;
    line-height:1.8;
    color:rgba(225,238,255,.82);
}

.account-avatar{
    display:flex;
    align-items:center;
    justify-content:center;
}

.avatar-orb{
    width:190px;
    height:190px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    letter-spacing:6px;
    font-size:34px;
    border:1px solid rgba(120,190,255,.24);
    background:radial-gradient(circle,rgba(73,174,255,.18),rgba(3,9,20,.72));
    box-shadow:0 0 70px rgba(73,174,255,.30), inset 0 0 40px rgba(73,174,255,.16);
}

.account-panel{
    padding:32px;
    border-radius:30px;
    background:linear-gradient(180deg,rgba(18,35,66,.66),rgba(6,14,28,.58));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
    backdrop-filter:blur(20px);
}

.account-panel h2{
    font-size:26px;
    font-weight:300;
    margin-bottom:24px;
}

.account-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.055);
}

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

.account-row span{
    color:rgba(225,238,255,.76);
}

.account-row b{
    font-weight:400;
    color:white;
}

.account-status{
    color:var(--success) !important;
}

.account-grid-mini{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.account-stat{
    padding:20px;
    border-radius:22px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(120,190,255,.14);
}

.account-stat label{
    display:block;
    color:var(--muted);
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:12px;
}

.account-stat strong{
    display:block;
    font-size:32px;
    font-weight:250;
}

.account-stat span{
    display:block;
    margin-top:8px;
    color:var(--success);
}

@media(max-width:1000px){
    .account-shell,
    .account-hero-card{
        grid-template-columns:1fr;
    }

    .account-identity h2{
        font-size:38px;
    }
}


/*=========================================================
BLOCCO 20
DEVICE ECOSYSTEM
=========================================================*/

.device-shell{

margin-top:50px;

display:grid;

grid-template-columns:330px 1fr;

gap:28px;

}

.device-sidebar{

padding:30px;

border-radius:30px;

background:linear-gradient(180deg,
rgba(18,35,66,.66),
rgba(6,14,28,.58));

border:var(--border);

box-shadow:var(--shadow),var(--glow);

}

.device-sidebar h2{

font-size:24px;

font-weight:300;

margin-bottom:24px;

}

.device-list{

display:grid;

gap:12px;

}

.device-item{

padding:16px 18px;

border-radius:18px;

background:rgba(255,255,255,.04);

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

cursor:pointer;

transition:.25s;

}

.device-item:hover{

background:rgba(73,174,255,.10);

transform:translateX(8px);

}

.device-item.active{

background:rgba(73,174,255,.16);

border-color:#69beff;

}

.device-main{

display:grid;

gap:24px;

}

.device-card{

padding:34px;

border-radius:30px;

background:linear-gradient(180deg,
rgba(18,35,66,.66),
rgba(6,14,28,.58));

border:var(--border);

box-shadow:var(--shadow),var(--glow);

}

.device-card h2{

font-size:34px;

font-weight:250;

margin-bottom:24px;

}

.device-status{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:18px;

}

.device-status div{

padding:22px;

border-radius:22px;

background:rgba(255,255,255,.04);

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

}

.device-status label{

display:block;

font-size:11px;

letter-spacing:2px;

color:var(--muted);

margin-bottom:10px;

}

.device-status strong{

font-size:30px;

font-weight:250;

}

.device-network{

height:420px;

border-radius:30px;

position:relative;

background:

radial-gradient(circle,
rgba(73,174,255,.08),
transparent 70%);

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

overflow:hidden;

}

.network-core{

position:absolute;

left:50%;

top:50%;

transform:translate(-50%,-50%);

width:130px;

height:130px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#071322;

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

box-shadow:0 0 40px rgba(73,174,255,.35);

letter-spacing:4px;

}

.node{

position:absolute;

width:90px;

height:90px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:rgba(73,174,255,.12);

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

}

.node::after{

content:"";

position:absolute;

width:8px;

height:8px;

border-radius:50%;

background:#2EFFAF;

bottom:10px;

box-shadow:0 0 12px #2EFFAF;

}

.n1{top:30px;left:50%;transform:translateX(-50%);}
.n2{right:60px;top:160px;}
.n3{right:120px;bottom:50px;}
.n4{left:120px;bottom:50px;}
.n5{left:60px;top:160px;}

@media(max-width:1100px){

.device-shell{

grid-template-columns:1fr;

}

.device-status{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.device-status{

grid-template-columns:1fr;

}

}


/*=========================================================
BLOCCO 21
AION MEMORY
=========================================================*/

.memory-shell{

margin-top:50px;

display:grid;

grid-template-columns:340px 1fr;

gap:28px;

}

.memory-sidebar{

padding:30px;

border-radius:30px;

background:linear-gradient(
180deg,
rgba(18,35,66,.66),
rgba(6,14,28,.58));

border:var(--border);

box-shadow:var(--shadow),var(--glow);

}

.memory-sidebar h2{

font-size:24px;

font-weight:300;

margin-bottom:24px;

}

.memory-menu{

display:grid;

gap:12px;

}

.memory-menu div{

padding:16px 18px;

border-radius:18px;

background:rgba(255,255,255,.04);

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

transition:.25s;

cursor:pointer;

}

.memory-menu div:hover{

background:rgba(73,174,255,.10);

transform:translateX(6px);

}

.memory-menu .active{

background:rgba(73,174,255,.16);

border-color:#69beff;

}

.memory-main{

display:grid;

gap:24px;

}

.memory-card{

padding:34px;

border-radius:30px;

background:linear-gradient(
180deg,
rgba(18,35,66,.66),
rgba(6,14,28,.58));

border:var(--border);

box-shadow:var(--shadow),var(--glow);

}

.memory-card h2{

font-size:32px;

font-weight:250;

margin-bottom:22px;

}

.memory-timeline{

position:relative;

padding-left:40px;

display:grid;

gap:28px;

}

.memory-timeline::before{

content:"";

position:absolute;

left:10px;

top:0;

bottom:0;

width:2px;

background:linear-gradient(
180deg,
#49AEFF,
transparent);

}

.memory-event{

position:relative;

padding:20px 24px;

border-radius:22px;

background:rgba(255,255,255,.04);

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

}

.memory-event::before{

content:"";

position:absolute;

left:-36px;

top:28px;

width:18px;

height:18px;

border-radius:50%;

background:#49AEFF;

box-shadow:0 0 18px #49AEFF;

}

.memory-date{

display:block;

margin-bottom:8px;

font-size:12px;

letter-spacing:2px;

color:var(--blue2);

}

.memory-title{

font-size:22px;

font-weight:300;

margin-bottom:10px;

}

.memory-text{

line-height:1.7;

color:rgba(225,238,255,.78);

}

.memory-stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:18px;

}

.memory-stat{

padding:22px;

border-radius:22px;

background:rgba(255,255,255,.04);

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

}

.memory-stat label{

display:block;

font-size:11px;

letter-spacing:2px;

color:var(--muted);

margin-bottom:12px;

}

.memory-stat strong{

display:block;

font-size:34px;

font-weight:250;

}

.memory-stat span{

display:block;

margin-top:8px;

color:var(--success);

}

@media(max-width:1100px){

.memory-shell{

grid-template-columns:1fr;

}

.memory-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.memory-stats{

grid-template-columns:1fr;

}

}


/*=========================================================
BLOCCO 22
AI.OS DASHBOARD
=========================================================*/

.aios-shell{
    margin-top:50px;
    display:grid;
    grid-template-columns:360px 1fr;
    gap:28px;
}

.aios-sidebar{
    padding:30px;
    border-radius:30px;
    background:linear-gradient(180deg,rgba(18,35,66,.66),rgba(6,14,28,.58));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
}

.aios-sidebar h2{
    font-size:24px;
    font-weight:300;
    margin-bottom:24px;
}

.aios-module-list{
    display:grid;
    gap:12px;
}

.aios-module{
    padding:16px 18px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(120,190,255,.12);
    transition:.25s;
}

.aios-module:hover{
    background:rgba(73,174,255,.10);
    transform:translateX(6px);
}

.aios-module.active{
    background:rgba(73,174,255,.16);
    border-color:#69beff;
}

.aios-main{
    display:grid;
    gap:24px;
}

.aios-card{
    padding:34px;
    border-radius:30px;
    background:linear-gradient(180deg,rgba(18,35,66,.66),rgba(6,14,28,.58));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
}

.aios-card h2{
    font-size:32px;
    font-weight:250;
    margin-bottom:22px;
}

.aios-status-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.aios-stat{
    padding:22px;
    border-radius:22px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(120,190,255,.12);
}

.aios-stat label{
    display:block;
    font-size:11px;
    letter-spacing:2px;
    color:var(--muted);
    margin-bottom:12px;
}

.aios-stat strong{
    display:block;
    font-size:34px;
    font-weight:250;
}

.aios-stat span{
    display:block;
    margin-top:8px;
    color:var(--success);
}

.aios-brain-map{
    min-height:460px;
    border-radius:30px;
    border:1px solid rgba(120,190,255,.14);
    background:
    radial-gradient(circle at 50% 50%,rgba(73,174,255,.12),transparent 38%),
    radial-gradient(circle at 20% 20%,rgba(73,174,255,.08),transparent 26%),
    radial-gradient(circle at 80% 78%,rgba(46,125,255,.10),transparent 28%);
    position:relative;
    overflow:hidden;
}

.aios-core{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:150px;
    height:150px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    letter-spacing:4px;
    background:#071322;
    border:1px solid rgba(120,190,255,.30);
    box-shadow:0 0 55px rgba(73,174,255,.38);
}

.aios-node{
    position:absolute;
    width:120px;
    min-height:76px;
    padding:14px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:rgba(73,174,255,.10);
    border:1px solid rgba(120,190,255,.18);
    color:rgba(225,238,255,.88);
    font-size:13px;
    line-height:1.35;
}

.aios-node::after{
    content:"";
    position:absolute;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#2EFFAF;
    bottom:8px;
    box-shadow:0 0 12px #2EFFAF;
}

.a1{top:32px;left:50%;transform:translateX(-50%);}
.a2{top:110px;right:60px;}
.a3{right:70px;bottom:95px;}
.a4{bottom:32px;left:50%;transform:translateX(-50%);}
.a5{left:70px;bottom:95px;}
.a6{top:110px;left:60px;}

.aios-log{
    display:grid;
    gap:14px;
}

.aios-log-row{
    display:grid;
    grid-template-columns:150px 1fr 120px;
    gap:18px;
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.055);
}

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

.aios-log-row span{
    color:var(--blue2);
    letter-spacing:1px;
    font-size:13px;
}

.aios-log-row p{
    color:rgba(225,238,255,.78);
    line-height:1.55;
}

.aios-log-row b{
    text-align:right;
    color:var(--success);
    font-weight:400;
}

@media(max-width:1100px){
    .aios-shell{
        grid-template-columns:1fr;
    }

    .aios-status-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .aios-status-grid{
        grid-template-columns:1fr;
    }

    .aios-log-row{
        grid-template-columns:1fr;
    }

    .aios-log-row b{
        text-align:left;
    }
}


/*=========================================================
BLOCCO 23
AION RESEARCH
=========================================================*/

.research-shell{
    margin-top:50px;
    display:grid;
    grid-template-columns:1fr;
    gap:28px;
}

.research-hero-card{
    padding:42px;
    border-radius:34px;
    background:
    radial-gradient(circle at 85% 15%,rgba(73,174,255,.22),transparent 34%),
    linear-gradient(180deg,rgba(18,35,66,.74),rgba(6,14,28,.62));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
}

.research-hero-card h2{
    font-size:46px;
    font-weight:200;
    margin-bottom:18px;
}

.research-hero-card p{
    max-width:850px;
    color:rgba(225,238,255,.82);
    line-height:1.75;
    font-size:18px;
}

.research-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.research-card{
    padding:30px;
    border-radius:30px;
    background:linear-gradient(180deg,rgba(18,35,66,.66),rgba(6,14,28,.58));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
}

.research-card span{
    display:block;
    color:var(--blue2);
    letter-spacing:3px;
    font-size:12px;
    margin-bottom:14px;
}

.research-card h2{
    font-size:26px;
    font-weight:300;
    margin-bottom:16px;
}

.research-card p{
    color:rgba(225,238,255,.78);
    line-height:1.65;
}

.research-paper-list{
    display:grid;
    gap:16px;
}

.research-paper{
    padding:24px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(120,190,255,.14);
}

.research-paper label{
    display:block;
    color:var(--muted);
    letter-spacing:2px;
    font-size:11px;
    margin-bottom:10px;
}

.research-paper h3{
    font-size:22px;
    font-weight:300;
    margin-bottom:10px;
}

.research-paper p{
    color:rgba(225,238,255,.76);
    line-height:1.6;
}

@media(max-width:1000px){
    .research-grid{
        grid-template-columns:1fr;
    }

    .research-hero-card h2{
        font-size:34px;
    }
}


/*=========================================================
BLOCCO 24
AION DEVELOPER CENTER
=========================================================*/

.dev-shell{
    margin-top:50px;
    display:grid;
    gap:28px;
}

.dev-hero{
    padding:44px;
    border-radius:34px;
    background:
    radial-gradient(circle at 85% 15%,rgba(73,174,255,.22),transparent 34%),
    linear-gradient(180deg,rgba(18,35,66,.74),rgba(6,14,28,.62));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
}

.dev-hero h2{
    font-size:48px;
    font-weight:200;
    margin-bottom:18px;
}

.dev-hero p{
    max-width:900px;
    line-height:1.75;
    color:rgba(225,238,255,.82);
    font-size:18px;
}

.dev-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.dev-card{
    padding:30px;
    border-radius:30px;
    background:linear-gradient(180deg,rgba(18,35,66,.66),rgba(6,14,28,.58));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
    transition:.25s;
}

.dev-card:hover{
    transform:translateY(-8px);
    border-color:#69beff;
}

.dev-card span{
    display:block;
    color:var(--blue2);
    font-size:12px;
    letter-spacing:3px;
    margin-bottom:12px;
}

.dev-card h2{
    font-size:28px;
    font-weight:300;
    margin-bottom:16px;
}

.dev-card p{
    color:rgba(225,238,255,.78);
    line-height:1.65;
}

.dev-sdk-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.dev-sdk{
    padding:24px;
    border-radius:22px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(120,190,255,.14);
}

.dev-sdk label{
    display:block;
    color:var(--muted);
    letter-spacing:2px;
    font-size:11px;
    margin-bottom:10px;
}

.dev-sdk strong{
    display:block;
    font-size:26px;
    font-weight:300;
}

.dev-sdk span{
    display:block;
    margin-top:8px;
    color:var(--success);
}

.dev-console{
    margin-top:10px;
    padding:26px;
    border-radius:24px;
    background:#040c18;
    border:1px solid rgba(120,190,255,.14);
    font-family:Consolas,monospace;
    color:#8ed2ff;
    overflow:auto;
}

.dev-console pre{
    margin:0;
    white-space:pre-wrap;
}

@media(max-width:1000px){

.dev-grid{

grid-template-columns:1fr;

}

.dev-sdk-grid{

grid-template-columns:1fr;

}

.dev-hero h2{

font-size:36px;

}

}


/*=========================================================
BLOCCO 25
AION MARKETPLACE
=========================================================*/

.market-shell{
    margin-top:50px;
    display:grid;
    gap:28px;
}

.market-hero{
    padding:44px;
    border-radius:34px;
    background:
    radial-gradient(circle at 85% 15%,rgba(73,174,255,.22),transparent 34%),
    linear-gradient(180deg,rgba(18,35,66,.74),rgba(6,14,28,.62));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
}

.market-hero h2{
    font-size:48px;
    font-weight:200;
    margin-bottom:18px;
}

.market-hero p{
    max-width:900px;
    font-size:18px;
    line-height:1.75;
    color:rgba(225,238,255,.82);
}

.market-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.market-card{
    overflow:hidden;
    border-radius:30px;
    background:linear-gradient(180deg,rgba(18,35,66,.66),rgba(6,14,28,.58));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
    transition:.28s;
}

.market-card:hover{
    transform:translateY(-8px);
    border-color:#69beff;
}

.market-image{
    height:170px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:46px;
    letter-spacing:3px;
    background:
    radial-gradient(circle,rgba(73,174,255,.20),transparent 60%);
}

.market-body{
    padding:28px;
}

.market-category{
    display:block;
    color:var(--blue2);
    font-size:12px;
    letter-spacing:3px;
    margin-bottom:12px;
}

.market-body h2{
    font-size:28px;
    font-weight:300;
    margin-bottom:16px;
}

.market-body p{
    color:rgba(225,238,255,.78);
    line-height:1.65;
    min-height:95px;
}

.market-footer{
    margin-top:22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.market-price{
    font-size:22px;
    color:white;
}

.market-btn{
    padding:12px 20px;
    border-radius:999px;
    border:1px solid rgba(120,190,255,.18);
    background:rgba(73,174,255,.10);
    color:white;
    text-decoration:none;
    letter-spacing:1px;
    transition:.25s;
}

.market-btn:hover{
    background:rgba(73,174,255,.22);
}

@media(max-width:1000px){
    .market-grid{
        grid-template-columns:1fr;
    }

    .market-hero h2{
        font-size:36px;
    }
}


/*=========================================================
BLOCCO 31
AION CORE STATUS PANEL
=========================================================*/

.core-status-panel{
    position:fixed;
    right:28px;
    bottom:28px;
    z-index:200;
    width:280px;
    padding:20px;
    border-radius:24px;
    background:linear-gradient(180deg,rgba(18,35,66,.82),rgba(6,14,28,.78));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
    backdrop-filter:blur(20px);
}

.core-status-panel h3{
    font-size:16px;
    font-weight:300;
    letter-spacing:2px;
    margin-bottom:14px;
}

.core-status-row{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.055);
    font-size:13px;
}

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

.core-status-row span{
    color:rgba(225,238,255,.72);
}

.core-status-row b{
    color:var(--success);
    font-weight:400;
}

@media(max-width:900px){
    .core-status-panel{
        display:none;
    }
}


/*=========================================================
BLOCCO 44
AION DIAGNOSTICS PANEL
=========================================================*/

.diagnostics-panel{
    position:fixed;
    left:28px;
    bottom:28px;
    width:300px;
    z-index:210;
    padding:20px;
    border-radius:24px;
    background:linear-gradient(180deg,rgba(18,35,66,.86),rgba(6,14,28,.82));
    border:var(--border);
    box-shadow:var(--shadow),var(--glow);
    backdrop-filter:blur(20px);
}

.diagnostics-panel h3{
    font-size:16px;
    font-weight:300;
    letter-spacing:2px;
    margin-bottom:14px;
}

.diagnostics-row{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.055);
    font-size:13px;
}

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

.diagnostics-row span{
    color:rgba(225,238,255,.72);
}

.diagnostics-row b{
    font-weight:400;
}

.diagnostics-ok{
    color:var(--success);
}

.diagnostics-missing{
    color:#ff4a6a;
}

@media(max-width:900px){
    .diagnostics-panel{
        display:none;
    }
}


/*=========================================================
BLOCCO 45
AION DEMO MODE TOGGLE
=========================================================*/

.demo-toggle{
    position:fixed;
    right:28px;
    top:28px;
    z-index:300;
    padding:12px 18px;
    border-radius:999px;
    border:1px solid rgba(120,190,255,.22);
    background:rgba(6,18,38,.86);
    color:white;
    letter-spacing:2px;
    font-size:12px;
    cursor:pointer;
    box-shadow:var(--shadow),var(--glow);
}

body.demo-mode .core-status-panel,
body.demo-mode .diagnostics-panel{
    display:none;
}


/*=========================================================
BLOCCO 47
AION BOOT EXPERIENCE
=========================================================*/

.aion-boot{
    position:fixed;
    inset:0;
    z-index:999;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    radial-gradient(circle at 50% 40%,rgba(73,174,255,.18),transparent 32%),
    linear-gradient(120deg,#020711,#071426 50%,#02050c);
    transition:opacity .8s ease, visibility .8s ease;
}

.aion-boot.hidden{
    opacity:0;
    visibility:hidden;
}

.boot-core{
    text-align:center;
}

.boot-logo{
    font-size:72px;
    letter-spacing:22px;
    font-weight:200;
    margin-bottom:24px;
    text-shadow:0 0 40px rgba(73,174,255,.65);
}

.boot-status{
    color:var(--blue2);
    letter-spacing:4px;
    font-size:13px;
}

.boot-line{
    margin:34px auto 0;
    width:320px;
    height:2px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    overflow:hidden;
}

.boot-line span{
    display:block;
    height:100%;
    width:0%;
    background:linear-gradient(90deg,#2E7DFF,#49AEFF,#76C7FF);
    box-shadow:0 0 24px rgba(73,174,255,.8);
    animation:bootLoad 2.2s ease forwards;
}

@keyframes bootLoad{
    from{width:0%;}
    to{width:100%;}
}

/*=========================================================
AION LIFE PANEL
=========================================================*/

.life-panel{

position:fixed;

top:95px;

right:28px;

width:280px;

padding:20px;

border-radius:24px;

background:linear-gradient(
180deg,
rgba(18,35,66,.84),
rgba(6,14,28,.80));

border:var(--border);

box-shadow:var(--shadow),var(--glow);

backdrop-filter:blur(20px);

z-index:180;

}

.life-title{

font-size:15px;

letter-spacing:2px;

margin-bottom:14px;

}

.life-row{

display:flex;

justify-content:space-between;

padding:9px 0;

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

}

.life-row:last-child{

border:none;

}

.life-value{

color:#2EFFAF;

}

@media(max-width:900px){

.life-panel{

display:none;

}

}

/*=========================================================
AION PREORDER / SUBSCRIPTION PAGES
=========================================================*/

.preorder-shell{
  margin-top:50px;
  display:grid;
  grid-template-columns:1fr 440px;
  gap:32px;
}

.preorder-panel,
.plan-card{
  padding:34px;
  border-radius:28px;
  border:1px solid rgba(73,174,255,.35);
  background:rgba(1,12,28,.74);
  box-shadow:0 0 34px rgba(73,174,255,.22);
}

.preorder-panel h2,
.plan-card h2{
  font-size:34px;
  font-weight:300;
  margin-bottom:18px;
}

.preorder-panel p,
.plan-card p{
  color:#d7e8ff;
  line-height:1.7;
}

.preorder-list{
  margin-top:28px;
  display:grid;
  gap:14px;
}

.preorder-list div{
  padding:14px 0;
  border-bottom:1px solid rgba(120,190,255,.16);
}

.preorder-list b{
  color:#28c3ff;
}

.price{
  font-size:48px;
  font-weight:250;
  margin:22px 0;
  color:white;
}

.stripe-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:22px;
  padding:16px 32px;
  border-radius:999px;
  background:#0787ff;
  color:white;
  text-decoration:none;
  letter-spacing:2px;
  box-shadow:0 0 30px rgba(7,135,255,.45);
}

.plans-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

@media(max-width:1000px){
  .preorder-shell,
  .plans-grid{
    grid-template-columns:1fr;
  }
}

/*=========================================================
ORGANISM PAGE — CYBERHUMAN
=========================================================*/

.organism-shell{
  margin-top:50px;
  display:grid;
  gap:34px;
}

.organism-hero-card,
.organism-panel{
  padding:38px;
  border-radius:30px;
  border:1px solid rgba(73,174,255,.35);
  background:rgba(1,12,28,.74);
  box-shadow:0 0 34px rgba(73,174,255,.22);
  backdrop-filter:blur(18px);
}

.organism-hero-card h2{
  font-size:54px;
  font-weight:200;
  letter-spacing:3px;
  margin-bottom:18px;
}

.organism-hero-card p,
.organism-panel p{
  color:#d7e8ff;
  font-size:18px;
  line-height:1.75;
  max-width:900px;
}

.organism-question{
  color:#28c3ff;
  letter-spacing:4px;
  font-size:13px;
  margin-bottom:14px;
  display:block;
}

.organism-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.organism-card{
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(73,174,255,.26);
  background:rgba(255,255,255,.035);
}

.organism-card h3{
  font-size:24px;
  font-weight:300;
  margin-bottom:12px;
}

.organism-card p{
  font-size:15px;
}

.cyber-table{
  width:100%;
  border-collapse:collapse;
  margin-top:20px;
}

.cyber-table th,
.cyber-table td{
  padding:18px;
  border-bottom:1px solid rgba(120,190,255,.18);
  text-align:left;
}

.cyber-table th{
  color:#28c3ff;
  letter-spacing:2px;
  font-weight:400;
}

.cyber-path{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.cyber-path span{
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(73,174,255,.28);
  background:rgba(73,174,255,.08);
  color:#dff3ff;
}

.organism-quote{
  font-size:34px;
  line-height:1.45;
  font-weight:200;
  color:white;
}

.organism-cta{
  display:inline-flex;
  margin-top:24px;
  padding:16px 30px;
  border-radius:999px;
  border:1px solid #2d9cff;
  color:white;
  text-decoration:none;
  letter-spacing:2px;
  box-shadow:0 0 28px rgba(45,156,255,.45);
}

@media(max-width:1000px){
  .organism-grid{
    grid-template-columns:1fr;
  }

  .organism-hero-card h2{
    font-size:38px;
  }

  .organism-quote{
    font-size:26px;
  }
}


/*=========================================================
GROWTH PAGE — DIGITAL ONTOGENESIS
=========================================================*/

.growth-shell{
  margin-top:50px;
  display:grid;
  gap:34px;
}

.growth-hero-card,
.growth-panel{
  padding:38px;
  border-radius:30px;
  border:1px solid rgba(73,174,255,.35);
  background:rgba(1,12,28,.74);
  box-shadow:0 0 34px rgba(73,174,255,.22);
  backdrop-filter:blur(18px);
}

.growth-hero-card h2{
  font-size:54px;
  font-weight:200;
  letter-spacing:3px;
  margin-bottom:18px;
}

.growth-hero-card p,
.growth-panel p{
  color:#d7e8ff;
  font-size:18px;
  line-height:1.75;
  max-width:920px;
}

.growth-kicker{
  display:block;
  color:#28c3ff;
  letter-spacing:4px;
  font-size:13px;
  margin-bottom:14px;
}

.growth-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.growth-card{
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(73,174,255,.26);
  background:rgba(255,255,255,.035);
}

.growth-card h3{
  font-size:24px;
  font-weight:300;
  margin-bottom:12px;
}

.growth-card p{
  font-size:15px;
}

.growth-timeline{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.growth-step{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:20px;
  align-items:center;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(73,174,255,.22);
  background:rgba(255,255,255,.035);
}

.growth-number{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#28c3ff;
  border:1px solid rgba(73,174,255,.35);
  box-shadow:0 0 18px rgba(73,174,255,.22);
}

.growth-step h3{
  font-size:22px;
  font-weight:300;
  margin-bottom:6px;
}

.growth-step p{
  font-size:15px;
}

.growth-path{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.growth-path span{
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(73,174,255,.28);
  background:rgba(73,174,255,.08);
  color:#dff3ff;
}

.growth-quote{
  font-size:34px;
  line-height:1.45;
  font-weight:200;
  color:white;
}

.growth-cta{
  display:inline-flex;
  margin-top:24px;
  padding:16px 30px;
  border-radius:999px;
  border:1px solid #2d9cff;
  color:white;
  text-decoration:none;
  letter-spacing:2px;
  box-shadow:0 0 28px rgba(45,156,255,.45);
}

@media(max-width:1000px){
  .growth-grid{
    grid-template-columns:1fr;
  }

  .growth-hero-card h2{
    font-size:38px;
  }

  .growth-quote{
    font-size:26px;
  }
}


/*=========================================================
AI.OS PAGE — OPERATIONAL Identity Sync
=========================================================*/

.aios-page-shell{
  margin-top:50px;
  display:grid;
  gap:34px;
}

.aios-hero-card,
.aios-panel{
  padding:38px;
  border-radius:30px;
  border:1px solid rgba(73,174,255,.35);
  background:rgba(1,12,28,.74);
  box-shadow:0 0 34px rgba(73,174,255,.22);
  backdrop-filter:blur(18px);
}

.aios-hero-card h2{
  font-size:54px;
  font-weight:200;
  letter-spacing:3px;
  margin-bottom:18px;
}

.aios-hero-card p,
.aios-panel p{
  color:#d7e8ff;
  font-size:18px;
  line-height:1.75;
  max-width:940px;
}

.aios-kicker{
  display:block;
  color:#28c3ff;
  letter-spacing:4px;
  font-size:13px;
  margin-bottom:14px;
}

.aios-flow{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:12px;
  margin-top:26px;
}

.aios-flow span{
  padding:16px 12px;
  border-radius:18px;
  border:1px solid rgba(73,174,255,.26);
  background:rgba(73,174,255,.08);
  text-align:center;
  color:#dff3ff;
  font-size:14px;
}

.aios-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.aios-card{
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(73,174,255,.26);
  background:rgba(255,255,255,.035);
}

.aios-card h3{
  font-size:24px;
  font-weight:300;
  margin-bottom:12px;
}

.aios-card p{
  font-size:15px;
}

.aios-example{
  margin-top:24px;
  display:grid;
  gap:14px;
}

.aios-example div{
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(73,174,255,.22);
  background:rgba(255,255,255,.035);
}

.aios-example b{
  color:#28c3ff;
}

.aios-table{
  width:100%;
  border-collapse:collapse;
  margin-top:22px;
}

.aios-table th,
.aios-table td{
  padding:18px;
  border-bottom:1px solid rgba(120,190,255,.18);
  text-align:left;
}

.aios-table th{
  color:#28c3ff;
  letter-spacing:2px;
  font-weight:400;
}

.aios-quote{
  font-size:34px;
  line-height:1.45;
  font-weight:200;
  color:white;
}

.aios-cta{
  display:inline-flex;
  margin-top:24px;
  padding:16px 30px;
  border-radius:999px;
  border:1px solid #2d9cff;
  color:white;
  text-decoration:none;
  letter-spacing:2px;
  box-shadow:0 0 28px rgba(45,156,255,.45);
}

@media(max-width:1100px){
  .aios-flow,
  .aios-grid{
    grid-template-columns:1fr;
  }

  .aios-hero-card h2{
    font-size:38px;
  }

  .aios-quote{
    font-size:26px;
  }
}


/*=========================================================
VISION PAGE — THE FUTURE IS BUILT
=========================================================*/

.vision-shell{
  margin-top:50px;
  display:grid;
  gap:34px;
}

.vision-hero-card,
.vision-panel{
  padding:38px;
  border-radius:30px;
  border:1px solid rgba(73,174,255,.35);
  background:rgba(1,12,28,.74);
  box-shadow:0 0 34px rgba(73,174,255,.22);
  backdrop-filter:blur(18px);
}

.vision-hero-card h2{
  font-size:56px;
  font-weight:200;
  letter-spacing:3px;
  margin-bottom:18px;
}

.vision-hero-card p,
.vision-panel p{
  color:#d7e8ff;
  font-size:18px;
  line-height:1.75;
  max-width:940px;
}

.vision-kicker{
  display:block;
  color:#28c3ff;
  letter-spacing:4px;
  font-size:13px;
  margin-bottom:14px;
}

.vision-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.vision-card{
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(73,174,255,.26);
  background:rgba(255,255,255,.035);
}

.vision-card h3{
  font-size:24px;
  font-weight:300;
  margin-bottom:12px;
}

.vision-card p{
  font-size:15px;
}

.vision-quote{
  font-size:36px;
  line-height:1.45;
  font-weight:200;
  color:white;
}

.vision-path{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.vision-path span{
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(73,174,255,.28);
  background:rgba(73,174,255,.08);
  color:#dff3ff;
}

@media(max-width:1000px){
  .vision-grid{
    grid-template-columns:1fr;
  }

  .vision-hero-card h2{
    font-size:38px;
  }

  .vision-quote{
    font-size:26px;
  }
}


/*=========================================================
AION TOPBAR DROPDOWN FIX
=========================================================*/

.nav,
.topnav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:34px;
}

.nav a,
.topnav a,
.nav-drop > a{
    color:white;
    text-decoration:none;
    font-size:13px;
    letter-spacing:1.6px;
    white-space:nowrap;
}

.nav-drop{
    position:relative;
}

.nav-drop-menu{
    display:none;
    position:absolute;
    top:28px;
    left:50%;
    transform:translateX(-50%);
    min-width:210px;
    padding:14px;
    border-radius:16px;
    background:rgba(1,12,28,.94);
    border:1px solid rgba(73,174,255,.32);
    box-shadow:0 0 28px rgba(73,174,255,.25);
    z-index:999;
}

.nav-drop:hover .nav-drop-menu{
    display:grid;
    gap:12px;
}

.nav-drop-menu a{
    font-size:12px;
    letter-spacing:1px;
    padding:8px 10px;
    border-radius:10px;
}

.nav-drop-menu a:hover{
    background:rgba(73,174,255,.12);
}


/*=========================================================
AION TOPBAR V1 STYLE
=========================================================*/

.nav,
.topnav,
.aion-topbar-v1{
    display:flex !important;
    align-items:center;
    justify-content:center;
    gap:26px;
    flex-wrap:nowrap;
}

.nav a,
.topnav a,
.aion-topbar-v1 a,
.nav-drop > a{
    color:white;
    text-decoration:none;
    font-size:12px;
    letter-spacing:1.3px;
    white-space:nowrap;
}

.nav-drop{
    position:relative;
    display:inline-flex;
    align-items:center;
}

.nav-drop-menu{
    display:none;
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);
    min-width:220px;
    padding:14px;
    border-radius:16px;
    background:rgba(1,12,28,.96);
    border:1px solid rgba(73,174,255,.32);
    box-shadow:0 0 28px rgba(73,174,255,.25);
    z-index:9999;
}

.nav-drop:hover .nav-drop-menu{
    display:grid;
    gap:10px;
}

.nav-drop-menu a{
    font-size:12px;
    letter-spacing:1px;
    padding:8px 10px;
    border-radius:10px;
}

.nav-drop-menu a:hover{
    background:rgba(73,174,255,.14);
}


/*=========================================================
AION TOPBAR V1 STYLE
=========================================================*/

.nav,
.topnav,
.aion-topbar-v1{
    display:flex !important;
    align-items:center;
    justify-content:center;
    gap:26px;
    flex-wrap:nowrap;
}

.nav a,
.topnav a,
.aion-topbar-v1 a,
.nav-drop > a{
    color:white;
    text-decoration:none;
    font-size:12px;
    letter-spacing:1.3px;
    white-space:nowrap;
}

.nav-drop{
    position:relative;
    display:inline-flex;
    align-items:center;
}

.nav-drop-menu{
    display:none;
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);
    min-width:220px;
    padding:14px;
    border-radius:16px;
    background:rgba(1,12,28,.96);
    border:1px solid rgba(73,174,255,.32);
    box-shadow:0 0 28px rgba(73,174,255,.25);
    z-index:9999;
}

.nav-drop:hover .nav-drop-menu{
    display:grid;
    gap:10px;
}

.nav-drop-menu a{
    font-size:12px;
    letter-spacing:1px;
    padding:8px 10px;
    border-radius:10px;
}

.nav-drop-menu a:hover{
    background:rgba(73,174,255,.14);
}


/*=========================================================
AION DROPDOWN FIX
Prevents menus from disappearing
=========================================================*/

.nav-dropdown{
    position:relative;
    display:flex;
    align-items:center;
}

/* Invisible Identity Sync between button and menu */
.nav-dropdown::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:18px;
}

.nav-menu{
    display:block;
    position:absolute;
    top:calc(100% + 16px);
    left:50%;
    transform:translateX(-50%);
    min-width:240px;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:
        opacity .18s ease,
        visibility .18s ease;

    z-index:99999;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.nav-menu:hover{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}


/*=========================================================
DEVICE SINGLE STATUS DETAIL
=========================================================*/

.single-device-status{
  margin-top:24px;
}

.device-item{
  cursor:pointer;
}

.device-item.active{
  border-color:#69beff;
  background:rgba(73,174,255,.16);
  box-shadow:0 0 22px rgba(73,174,255,.25);
}


/*=========================================================
DEVICE SINGLE STATUS PAGES
=========================================================*/

.device-detail-shell{
  margin-top:50px;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:28px;
}

.device-detail-panel{
  padding:34px;
  border-radius:28px;
  border:1px solid rgba(73,174,255,.35);
  background:rgba(1,12,28,.74);
  box-shadow:0 0 34px rgba(73,174,255,.22);
  backdrop-filter:blur(18px);
}

.device-detail-panel h2{
  font-size:32px;
  font-weight:300;
  margin-bottom:20px;
}

.device-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:24px;
}

.device-detail-stat{
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(73,174,255,.22);
  background:rgba(255,255,255,.035);
}

.device-detail-stat label{
  display:block;
  color:#28c3ff;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.device-detail-stat strong{
  font-size:22px;
  font-weight:300;
}

.device-detail-stat span{
  display:block;
  margin-top:8px;
  color:#d7e8ff;
  font-size:14px;
}

.device-item{
  text-decoration:none;
  color:white;
  display:block;
}

@media(max-width:1000px){
  .device-detail-shell,
  .device-detail-grid{
    grid-template-columns:1fr;
  }
}


/*=========================================================
MEMORY LAYER SINGLE PAGES
=========================================================*/

.memory-layer-shell{
  margin-top:50px;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:28px;
}

.memory-layer-panel{
  padding:34px;
  border-radius:28px;
  border:1px solid rgba(73,174,255,.35);
  background:rgba(1,12,28,.74);
  box-shadow:0 0 34px rgba(73,174,255,.22);
  backdrop-filter:blur(18px);
}

.memory-layer-panel h2{
  font-size:32px;
  font-weight:300;
  margin-bottom:20px;
}

.memory-layer-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:24px;
}

.memory-layer-stat{
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(73,174,255,.22);
  background:rgba(255,255,255,.035);
}

.memory-layer-stat label{
  display:block;
  color:#28c3ff;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.memory-layer-stat strong{
  font-size:22px;
  font-weight:300;
}

.memory-layer-stat span{
  display:block;
  margin-top:8px;
  color:#d7e8ff;
  font-size:14px;
}

.memory-layer-item{
  text-decoration:none;
  color:white;
  display:block;
}

@media(max-width:1000px){
  .memory-layer-shell,
  .memory-layer-grid{
    grid-template-columns:1fr;
  }
}


/*=========================================================
FAQ SEARCH + HUMAN FORM
=========================================================*/

.faq-tools{
  margin-bottom:34px;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:24px;
}

.faq-search-box,
.faq-human-form{
  padding:30px;
  border-radius:26px;
  border:1px solid rgba(73,174,255,.35);
  background:rgba(1,12,28,.74);
  box-shadow:0 0 34px rgba(73,174,255,.18);
}

.faq-search-box label{
  display:block;
  color:#28c3ff;
  font-size:12px;
  letter-spacing:3px;
  margin-bottom:14px;
}

.faq-search-box input,
.faq-human-form input,
.faq-human-form textarea{
  width:100%;
  padding:16px 18px;
  margin-bottom:14px;
  border-radius:16px;
  border:1px solid rgba(73,174,255,.28);
  background:rgba(255,255,255,.045);
  color:white;
  outline:none;
}

.faq-human-form textarea{
  min-height:130px;
  resize:vertical;
}

.faq-human-form h2{
  font-weight:300;
  margin-bottom:12px;
}

.faq-human-form p{
  color:#d7e8ff;
  line-height:1.6;
  margin-bottom:18px;
}

.faq-human-form button{
  width:100%;
  padding:16px;
  border-radius:999px;
  border:1px solid #2d9cff;
  background:rgba(45,156,255,.18);
  color:white;
  letter-spacing:2px;
  cursor:pointer;
}

@media(max-width:1000px){
  .faq-tools{
    grid-template-columns:1fr;
  }
}


/*=========================================================
AION FOOTER — PRIORITY 1
Brand Identity
=========================================================*/

.aion-footer{
  margin-top:90px;
  padding:54px 7vw 34px;
  border-top:1px solid rgba(73,174,255,.24);
  background:rgba(1,8,20,.88);
  box-shadow:0 -20px 60px rgba(0,0,0,.35);
}

.footer-brand{
  max-width:760px;
}

.footer-logo{
  font-size:34px;
  letter-spacing:12px;
  font-weight:300;
  color:white;
  margin-bottom:10px;
}

.footer-subtitle{
  color:#28c3ff;
  letter-spacing:3px;
  font-size:12px;
  margin-bottom:18px;
}

.footer-brand p{
  color:#d7e8ff;
  font-size:17px;
  line-height:1.7;
  max-width:680px;
}

.footer-status{
  margin-top:34px;
  display:inline-flex;
  gap:18px;
  align-items:center;
  padding:14px 20px;
  border-radius:999px;
  border:1px solid rgba(73,174,255,.32);
  background:rgba(73,174,255,.08);
}

.footer-status span{
  color:#28c3ff;
  letter-spacing:2px;
  font-size:12px;
}

.footer-status b{
  color:white;
  font-weight:300;
}

.footer-bottom{
  margin-top:42px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  color:#8fb6d8;
  font-size:12px;
  letter-spacing:1px;
}


.footer-links{

    margin-top:45px;

    display:grid;

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

    gap:35px;

}

.footer-column h4{

    color:white;

    margin-bottom:18px;

    font-size:16px;

}

.footer-column a{

    display:block;

    color:#9ec9ea;

    text-decoration:none;

    margin:9px 0;

    transition:.25s;

}

.footer-column a:hover{

    color:#28c3ff;

    transform:translateX(4px);

}


/*=================================================
FOOTER PRIORITY 4
=================================================*/

.footer-system{

    display:grid;

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

    gap:22px;

    margin-top:45px;

}

.system-card{

    padding:22px;

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

    border-radius:18px;

    background:rgba(255,255,255,.03);

    transition:.25s;

}

.system-card:hover{

    border-color:#28c3ff;

    transform:translateY(-4px);

}

.system-card small{

    display:block;

    color:#7aaed3;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:10px;

    font-size:11px;

}

.system-card strong{

    color:white;

    font-size:18px;

    font-weight:400;

}


/*=================================================
FOOTER PRIORITY 5
Legal links
=================================================*/

.footer-legal{
    margin-top:38px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.footer-legal a{
    color:#8fb6d8;
    text-decoration:none;
    font-size:12px;
    letter-spacing:1px;
}

.footer-legal a:hover{
    color:#28c3ff;
}


/*=================================================
FOOTER PRIORITY 7
Mission signature
=================================================*/

.footer-mission{
    margin-top:34px;
    padding:26px;
    border-radius:22px;
    border:1px solid rgba(73,174,255,.22);
    background:rgba(73,174,255,.06);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-mission span{
    color:white;
    font-size:18px;
    font-weight:300;
}

.footer-mission b{
    color:#28c3ff;
    letter-spacing:2px;
    font-weight:400;
    font-size:12px;
}


/*=================================================
FOOTER PRIORITY 8
CyberHuman certification strip
=================================================*/

.footer-certification{
    margin-top:28px;
    padding:18px 22px;
    border-radius:18px;
    border:1px solid rgba(73,174,255,.18);
    background:rgba(255,255,255,.025);
    display:flex;
    flex-wrap:wrap;
    gap:14px 22px;
    align-items:center;
}

.footer-certification span{
    color:#7aaed3;
    font-size:11px;
    letter-spacing:2px;
}

.footer-certification b{
    color:white;
    font-size:12px;
    letter-spacing:1px;
    font-weight:400;
}


/*=================================================
FOOTER PRIORITY 9
CyberHuman Project Specifications
=================================================*/

.footer-specs{

    margin-top:35px;

    display:grid;

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

    gap:18px;

}

.footer-specs div{

    padding:18px;

    border-radius:16px;

    background:rgba(255,255,255,.03);

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

    transition:.25s;

}

.footer-specs div:hover{

    border-color:#28c3ff;

    transform:translateY(-3px);

}

.footer-specs small{

    display:block;

    color:#79acd1;

    font-size:11px;

    letter-spacing:2px;

    margin-bottom:8px;

}

.footer-specs strong{

    color:white;

    font-size:16px;

    font-weight:400;

}


/*=================================================
GLOBAL PREMIUM PASS — PRIORITY 10
Micro interactions / polish / consistency
=================================================*/

html{
  scroll-behavior:smooth;
}

a,
button,
.product-panel,
.plan-card,
.preorder-panel,
.device-card,
.memory-card,
.account-panel{
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    color .25s ease;
}

.product-panel:hover,
.plan-card:hover,
.preorder-panel:hover,
.device-card:hover,
.memory-card:hover,
.account-panel:hover{
  transform:translateY(-4px);
  border-color:rgba(73,174,255,.55);
  box-shadow:0 0 34px rgba(73,174,255,.22);
}

.nav a:hover,
.nav-drop-label:hover,
.footer-column a:hover,
.footer-legal a:hover{
  color:#28c3ff;
}

.contact-btn:hover,
.stripe-btn:hover,
.organism-cta:hover,
.growth-cta:hover,
.aios-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 0 34px rgba(45,156,255,.55);
}

input:focus,
textarea:focus{
  border-color:#28c3ff !important;
  box-shadow:0 0 18px rgba(40,195,255,.22);
}

::selection{
  background:rgba(40,195,255,.35);
  color:white;
}

.inner-hero h1,
.inner-hero p,
.product-panel,
.plan-card,
.preorder-panel{
  animation:aionSoftReveal .45s ease both;
}

@keyframes aionSoftReveal{
  from{
    opacity:0;
    transform:translateY(12px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media(max-width:900px){
  .nav{
    gap:16px;
    flex-wrap:wrap;
  }

  .inner-hero h1{
    font-size:42px;
  }

  .product-grid,
  .plans-grid{
    grid-template-columns:1fr;
  }
}


/*=================================================
FOOTER OVERLAP FIX
Clean single footer layout
=================================================*/

.aion-footer{
  position:relative !important;
  display:grid !important;
  grid-template-columns:1.2fr 2fr;
  gap:42px;
  padding:54px 7vw 34px !important;
  min-height:auto !important;
  overflow:hidden;
}

.footer-brand,
.footer-links,
.footer-bottom{
  position:relative;
  z-index:2;
}

.footer-links{
  margin-top:0 !important;
}

.footer-status,
.footer-system,
.footer-mission,
.footer-certification,
.footer-specs{
  display:none !important;
}

.footer-bottom{
  grid-column:1 / -1;
  margin-top:28px !important;
}

@media(max-width:900px){
  .aion-footer{
    grid-template-columns:1fr;
  }
}


/*=================================================
FOOTER CLEAN FINAL FIX
=================================================*/

.aion-footer{
  margin-top:90px !important;
  padding:56px 7vw 34px !important;
  background:rgba(1,8,20,.94) !important;
  border-top:1px solid rgba(73,174,255,.24) !important;
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:36px !important;
  min-height:auto !important;
  height:auto !important;
  overflow:visible !important;
}

.footer-brand,
.footer-links,
.footer-status,
.footer-system,
.footer-mission,
.footer-certification,
.footer-specs,
.footer-legal,
.footer-bottom{
  display:none !important;
}

.footer-clean-brand{
  max-width:720px;
}

.footer-clean-brand p{
  color:#d7e8ff;
  line-height:1.7;
  font-size:16px;
}

.footer-clean-links{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:28px;
}

.footer-clean-links h4{
  color:white;
  margin-bottom:14px;
  font-size:15px;
}

.footer-clean-links a{
  display:block;
  color:#9ec9ea;
  text-decoration:none;
  margin:8px 0;
  font-size:13px;
}

.footer-clean-links a:hover{
  color:#28c3ff;
}

.footer-clean-status,
.footer-clean-bottom{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#8fb6d8;
  font-size:12px;
  letter-spacing:1px;
}

.footer-clean-status b{
  color:white;
  font-weight:400;
}


/*=================================================
FOOTER FORCE CLEAN FINAL
=================================================*/

body .aion-footer{
  display:block !important;
  position:relative !important;
  width:100% !important;
  height:auto !important;
  min-height:0 !important;
  margin-top:90px !important;
  padding:56px 7vw 34px !important;
  background:rgba(1,8,20,.96) !important;
  border-top:1px solid rgba(73,174,255,.24) !important;
  overflow:visible !important;
  clear:both !important;
}

body .aion-footer *{
  position:static !important;
  transform:none !important;
  float:none !important;
}

body .footer-clean-brand{
  max-width:760px !important;
  margin-bottom:34px !important;
}

body .footer-clean-brand p{
  color:#d7e8ff !important;
  line-height:1.7 !important;
}

body .footer-clean-links{
  display:grid !important;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr)) !important;
  gap:30px !important;
  margin-bottom:34px !important;
}

body .footer-clean-links a{
  display:block !important;
  color:#9ec9ea !important;
  text-decoration:none !important;
  margin:8px 0 !important;
}

body .footer-clean-status,
body .footer-clean-bottom{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:22px !important;
  padding-top:22px !important;
  border-top:1px solid rgba(255,255,255,.08) !important;
  color:#8fb6d8 !important;
}

body .footer-brand,
body .footer-links,
body .footer-status,
body .footer-system,
body .footer-mission,
body .footer-certification,
body .footer-specs,
body .footer-legal,
body .footer-bottom{
  display:none !important;
}


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

.aion-footer{

    margin-top:90px;

    padding:55px 7vw 35px;

    border-top:1px solid rgba(73,174,255,.18);

    background:#030812;

}

.footer-legal-only{

    max-width:340px;

    margin:0 auto;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-legal-only h4{

    color:white;

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:14px;

}

.footer-legal-only a{

    color:#8fb6d8;

    text-decoration:none;

    transition:.25s;

    font-size:14px;

}

.footer-legal-only a:hover{

    color:#28c3ff;

    padding-left:6px;

}

.footer-bottom-legal{

    margin-top:40px;

    padding-top:20px;

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

    text-align:center;

    color:#7da8cb;

    font-size:12px;

    letter-spacing:1px;

}


/*==================================================
CENTERED LEGAL FOOTER
==================================================*/

.aion-footer{

    background:#050913 !important;

    border-top:1px solid rgba(255,255,255,.08) !important;

    padding:70px 0 35px !important;

}

.footer-legal{

    width:100% !important;

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    justify-content:center !important;

    text-align:center !important;

    gap:16px !important;

    margin:0 auto !important;

}

.footer-legal h4{

    color:#ffffff !important;

    font-size:16px !important;

    font-weight:600 !important;

    letter-spacing:4px !important;

    margin-bottom:20px !important;

    text-transform:uppercase !important;

}

.footer-legal a{

    display:block !important;

    color:#ffffff !important;

    text-decoration:none !important;

    font-size:15px !important;

    line-height:1.8 !important;

    transition:.25s !important;

}

.footer-legal a:hover{

    color:#28C3FF !important;

}

.footer-copy{

    width:100% !important;

    margin-top:50px !important;

    padding-top:24px !important;

    border-top:1px solid rgba(255,255,255,.08) !important;

    text-align:center !important;

    color:#d7d7d7 !important;

    font-size:13px !important;

    letter-spacing:1px !important;

}


/*=================================================
LEGAL PAGES V2
=================================================*/

.inner-hero{

    text-align:center !important;

    max-width:900px;

    margin:0 auto 70px;

}

.inner-hero .page-kicker{

    color:#28C3FF;

    letter-spacing:4px;

}

.inner-hero h1{

    color:#FFFFFF !important;

    text-align:center;

}

.inner-hero p{

    color:#E8EEF7 !important;

    text-align:center;

    font-size:20px;

    line-height:1.8;

    max-width:900px;

    margin:25px auto 0;

}

.legal-grid{

    display:grid;

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

    gap:32px;

    max-width:1500px;

    margin:0 auto;

}

.legal-grid .product-panel{

    background:rgba(255,255,255,.025);

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

    border-radius:24px;

    padding:36px;

    transition:.25s;

}

.legal-grid .product-panel:hover{

    border-color:#28C3FF;

    transform:translateY(-4px);

    box-shadow:0 0 35px rgba(40,195,255,.18);

}

.legal-grid .product-panel h2{

    color:#FFFFFF;

    margin-bottom:18px;

    font-size:26px;

}

.legal-grid .product-panel p{

    color:#E6EDF8;

    font-size:17px;

    line-height:1.85;

}

@media(max-width:900px){

    .legal-grid{

        grid-template-columns:1fr;

    }

}


/*========================================
HOMEPAGE LEGAL FOOTER FIX
========================================*/

.footer-legal{

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    width:100% !important;

    margin:0 auto !important;

    gap:14px !important;

}

.footer-legal h4{

    color:#FFFFFF !important;

    font-size:17px !important;

    font-weight:600 !important;

    letter-spacing:4px !important;

    margin-bottom:18px !important;

}

.footer-legal a{

    display:block !important;

    color:#FFFFFF !important;

    text-decoration:none !important;

    font-size:15px !important;

    line-height:1.9 !important;

    transition:all .25s ease !important;

}

.footer-legal a:visited{

    color:#FFFFFF !important;

}

.footer-legal a:hover{

    color:#28C3FF !important;

    transform:translateX(4px);

}

.footer-copy{

    width:100% !important;

    text-align:center !important;

    margin-top:50px !important;

    padding-top:25px !important;

    border-top:1px solid rgba(255,255,255,.08) !important;

    color:#D9D9D9 !important;

    font-size:13px !important;

}


/*========================================
HOMEPAGE LEGAL FOOTER FIX
========================================*/

.footer-legal{

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    width:100% !important;

    margin:0 auto !important;

    gap:14px !important;

}

.footer-legal h4{

    color:#FFFFFF !important;

    font-size:17px !important;

    font-weight:600 !important;

    letter-spacing:4px !important;

    margin-bottom:18px !important;

}

.footer-legal a{

    display:block !important;

    color:#FFFFFF !important;

    text-decoration:none !important;

    font-size:15px !important;

    line-height:1.9 !important;

    transition:all .25s ease !important;

}

.footer-legal a:visited{

    color:#FFFFFF !important;

}

.footer-legal a:hover{

    color:#28C3FF !important;

    transform:translateX(4px);

}

.footer-copy{

    width:100% !important;

    text-align:center !important;

    margin-top:50px !important;

    padding-top:25px !important;

    border-top:1px solid rgba(255,255,255,.08) !important;

    color:#D9D9D9 !important;

    font-size:13px !important;

}


/* FINAL LEGAL FOOTER */
.aion-footer{
  background:#050913 !important;
  border-top:1px solid rgba(255,255,255,.08) !important;
  padding:70px 0 35px !important;
  text-align:center !important;
}

.footer-legal-final{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:14px !important;
  width:100% !important;
}

.footer-legal-final h4{
  color:#fff !important;
  font-size:17px !important;
  letter-spacing:4px !important;
  margin-bottom:18px !important;
}

.footer-legal-final a,
.footer-legal-final a:visited{
  color:#fff !important;
  text-decoration:none !important;
  font-size:15px !important;
}

.footer-legal-final a:hover{
  color:#28C3FF !important;
}

.footer-copy-final{
  margin-top:50px !important;
  padding-top:24px !important;
  border-top:1px solid rgba(255,255,255,.08) !important;
  color:#d9d9d9 !important;
  font-size:13px !important;
  letter-spacing:1px !important;
}



/* Stripe checkout integration */
.stripe-btn-disabled {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
}


/* =========================================================
   C.E.B. SYSTEMS GLOBAL FOOTER + STORE NAV — 2026-09-02
   ========================================================= */
.aion-footer{
  width:100% !important;
  margin:72px 0 0 !important;
  padding:52px 60px 28px !important;
  background:#030711 !important;
  border-top:1px solid rgba(118,199,255,.22) !important;
  display:block !important;
  text-align:left !important;
  color:#d9e8ff !important;
  letter-spacing:0 !important;
}

.footer-main-final{
  width:min(1400px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.7fr) minmax(230px,.65fr);
  gap:72px;
  align-items:start;
}

.footer-company-final h4,
.footer-legal-final h4{
  margin:0 0 18px !important;
  color:#fff !important;
  font-size:15px !important;
  line-height:1.5 !important;
  letter-spacing:2px !important;
  font-weight:700 !important;
}

.footer-company-final h4 span{
  color:#a9bdd8;
  font-weight:600;
}

.footer-company-final p{
  margin:8px 0 !important;
  color:#aebed3 !important;
  font-size:13px !important;
  line-height:1.65 !important;
  letter-spacing:.15px !important;
}

.footer-company-final strong{
  color:#eef6ff !important;
  font-weight:650 !important;
}

.footer-company-final a,
.footer-company-final a:visited{
  color:#d9e8ff !important;
  text-decoration:underline !important;
  text-decoration-color:rgba(118,199,255,.48) !important;
  text-underline-offset:3px;
}

.footer-company-final a:hover{
  color:#76C7FF !important;
}

.footer-legal-final{
  display:grid !important;
  grid-template-columns:1fr !important;
  align-items:start !important;
  justify-content:start !important;
  gap:10px !important;
  width:100% !important;
  text-align:left !important;
}

.footer-legal-final a,
.footer-legal-final a:visited{
  color:#76C7FF !important;
  text-decoration:none !important;
  font-size:13px !important;
  line-height:1.5 !important;
  letter-spacing:.7px !important;
  transition:color .2s ease,transform .2s ease;
}

.footer-legal-final a:hover{
  color:#ffffff !important;
  transform:translateX(3px);
}

.footer-copy-final{
  width:min(1400px,100%);
  margin:36px auto 0 !important;
  padding-top:22px !important;
  border-top:1px solid rgba(255,255,255,.08) !important;
  color:#879bb6 !important;
  text-align:center !important;
  font-size:12px !important;
  line-height:1.5 !important;
  letter-spacing:1px !important;
}

/* Store top-level navigation accent */
.nav > a[href$="store.html"],
.topnav > a[href$="store.html"]{
  color:#76C7FF !important;
}
.nav > a[href$="store.html"]:hover,
.topnav > a[href$="store.html"]:hover{
  color:#ffffff !important;
}

/* C.E.B. Software Store */
.store-intro{
  max-width:980px;
  margin:0 auto 34px;
  color:rgba(225,238,255,.82);
  font-size:16px;
  line-height:1.75;
}
.store-toolbar{
  max-width:1400px;
  margin:0 auto 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 22px;
  border:1px solid rgba(118,199,255,.18);
  border-radius:18px;
  background:rgba(255,255,255,.025);
}
.store-toolbar strong{letter-spacing:2px;font-size:13px;color:#76C7FF}
.store-toolbar span{color:#9fb3cf;font-size:13px}
.store-grid{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.store-card{
  position:relative;
  overflow:hidden;
  padding:30px;
  min-height:310px;
  border:1px solid rgba(118,199,255,.20);
  border-radius:24px;
  background:linear-gradient(145deg,rgba(17,35,62,.72),rgba(3,10,23,.78));
  box-shadow:0 24px 70px rgba(0,0,0,.28);
}
.store-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:2px;
  background:linear-gradient(90deg,transparent,#49AEFF,transparent);
  opacity:.7;
}
.store-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:20px}
.store-family{color:#76C7FF;font-size:12px;letter-spacing:2px;text-transform:uppercase}
.store-card h2{margin:7px 0 0;font-size:27px;font-weight:350;letter-spacing:.5px}
.store-status{
  flex:0 0 auto;
  padding:7px 11px;
  border-radius:999px;
  border:1px solid rgba(46,255,175,.28);
  color:#7fffc6;
  background:rgba(46,255,175,.06);
  font-size:11px;
  letter-spacing:1.2px;
}
.store-description{color:#b9cae1;font-size:15px;line-height:1.65;min-height:75px}
.store-meta{display:flex;flex-wrap:wrap;gap:8px;margin:20px 0}
.store-meta span{padding:6px 9px;border-radius:9px;background:rgba(118,199,255,.07);color:#bcd8f5;font-size:11px;letter-spacing:.6px}
.store-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.store-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(118,199,255,.35);
  color:white;
  text-decoration:none;
  background:rgba(73,174,255,.09);
  font-size:12px;
  letter-spacing:1px;
}
.store-btn:hover{background:rgba(73,174,255,.17);box-shadow:0 0 24px rgba(73,174,255,.18)}
.store-btn.disabled{opacity:.48;pointer-events:none;cursor:not-allowed}
.store-note{max-width:1400px;margin:30px auto 0;padding:18px 22px;border-left:2px solid #49AEFF;background:rgba(73,174,255,.045);color:#9fb3cf;font-size:13px;line-height:1.65}

@media(max-width:1000px){
  .footer-main-final{grid-template-columns:1fr;gap:38px}
  .store-grid{grid-template-columns:1fr}
}
@media(max-width:700px){
  .aion-footer{padding:42px 24px 24px !important}
  .store-toolbar{align-items:flex-start;flex-direction:column}
  .store-card{padding:24px}
  .store-card-head{flex-direction:column}
}


/* C.E.B. SOFTWARE STORE — grouped commercial catalog */
.store-toolbar>div{display:flex;flex-direction:column;gap:5px}
.store-toolbar>div span{font-size:12px;letter-spacing:1.3px}
.store-family-nav{max-width:1400px;margin:0 auto 34px;display:flex;flex-wrap:wrap;gap:10px}
.store-family-nav a{display:inline-flex;align-items:center;min-height:38px;padding:8px 14px;border:1px solid rgba(118,199,255,.22);border-radius:999px;color:#76C7FF;text-decoration:none;font-size:11px;font-weight:800;letter-spacing:1.1px;background:rgba(118,199,255,.035);transition:.2s ease}
.store-family-nav a:hover{color:#fff;border-color:rgba(118,199,255,.55);transform:translateY(-1px)}
.store-collection{max-width:1400px;margin:0 auto 64px;scroll-margin-top:110px}
.store-collection-head{display:flex;justify-content:space-between;align-items:flex-end;gap:30px;padding:0 2px 18px;border-bottom:1px solid rgba(118,199,255,.18);margin-bottom:26px}
.store-collection-head h2{margin:5px 0 8px;font-size:clamp(28px,4vw,48px);line-height:1;color:#fff;letter-spacing:-1px}
.store-collection-head p{margin:0;max-width:820px;color:rgba(225,238,255,.72);line-height:1.65}
.store-collection-head strong{white-space:nowrap;color:#76C7FF;font-size:12px;letter-spacing:1.3px}
.store-collection-kicker{display:block;color:#76C7FF;font-size:10px;font-weight:800;letter-spacing:2px}
.store-subgroup{margin:0 0 36px}
.store-subgroup-title{display:flex;align-items:center;justify-content:space-between;gap:20px;margin:0 0 15px;color:#fff;font-weight:800;letter-spacing:1.5px;font-size:12px}
.store-subgroup-title small{color:#8094af;font-size:10px;letter-spacing:1px}
.store-grid{max-width:none;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.store-card{min-height:230px;padding:24px;border-radius:20px;display:flex;flex-direction:column}
.store-card-head{margin-bottom:14px}
.store-card h3{margin:0;color:#fff;font-size:20px;line-height:1.2;letter-spacing:-.25px}
.store-description{font-size:14px;line-height:1.6;margin:0 0 18px;color:rgba(225,238,255,.72)}
.store-actions{margin-top:auto}
@media (max-width:1050px){.store-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.store-collection-head{align-items:flex-start;flex-direction:column}.store-collection-head strong{white-space:normal}}
@media (max-width:680px){.store-grid{grid-template-columns:1fr}.store-card{min-height:0}.store-family-nav{gap:8px}.store-family-nav a{font-size:10px}.store-collection{margin-bottom:48px}}


/* C.E.B. STORE LIVE CHECKOUT + PLUS COMING SOON */
.store-price{
  margin:2px 0 4px;
  color:#fff;
  font-size:22px;
  font-weight:750;
  letter-spacing:-.3px;
}
.store-billing{
  margin:0 0 14px;
  color:#76C7FF;
  font-size:10px;
  font-weight:800;
  letter-spacing:1.35px;
}
.store-price-note{
  margin:0 0 18px;
  color:#8fa6c4;
  font-size:12px;
  line-height:1.55;
}
.store-future{
  margin:28px 0 0;
}
.store-future-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.store-future-card{
  min-height:145px;
  padding:22px;
  border:1px dashed rgba(118,199,255,.28);
  border-radius:18px;
  background:linear-gradient(145deg,rgba(73,174,255,.055),rgba(7,20,38,.35));
}
.store-future-card h3{
  margin:8px 0 8px;
  color:#fff;
  font-size:19px;
}
.store-future-card p{
  margin:0;
  color:rgba(225,238,255,.68);
  font-size:13px;
  line-height:1.6;
}
.store-future-label{
  color:#76C7FF;
  font-size:10px;
  font-weight:900;
  letter-spacing:1.5px;
}
@media (max-width:1050px){.store-future-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:680px){.store-future-grid{grid-template-columns:1fr}}
