/* =========================================
   XEVON WEBSITE
   Version: 1.0
========================================= */

:root{

    /* Brand */

    --primary:#00D4FF;
    --secondary:#2563EB;
    --accent:#6BE8FF;

    --gradient:linear-gradient(
        135deg,
        #00D4FF 0%,
        #2563EB 100%
    );

    /* Background */

    --bg:#050816;
    --bg2:#09111F;
    --bg3:#101B31;

    /* Cards */

    --card:rgba(255,255,255,.05);
    --card-hover:rgba(255,255,255,.08);

    --border:rgba(255,255,255,.08);

    /* Text */

    --text:#FFFFFF;
    --text-muted:#B6C2D1;

    /* Radius */

    --radius:22px;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#07101d;

}

::-webkit-scrollbar-thumb{

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

    border-radius:100px;

}

/* Selection */

::selection{

    background:var(--primary);

    color:#000;

}

/* Container */

.container{

    width:min(1200px,92%);

    margin:auto;

}

/* Sections */

section{

    padding:120px 0;

    position:relative;

}

/* Links */

a{

    color:inherit;

    text-decoration:none;

}

/* Buttons */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:16px;

    transition:.35s;

    font-weight:700;

}

.btn-primary{

    background:var(--gradient);

    color:white;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 35px rgba(0,212,255,.35);

}

.btn-outline{

    border:1px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:rgba(0,212,255,.08);

}

/* Cards */

.card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    backdrop-filter:blur(18px);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:

    0 0 40px rgba(0,212,255,.18);

}

/* Loader */

#loader{

    position:fixed;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--bg);

    z-index:99999;

}

.loader-logo{

    font-size:62px;

    font-weight:900;

    letter-spacing:6px;

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* Progress */

#progress-bar{

    position:fixed;

    top:0;
    left:0;

    width:0;

    height:4px;

    background:var(--gradient);

    z-index:999999;

}

/* ==========================================
   ANIMATED AURORA
========================================== */

.aurora{

    position:fixed;

    inset:0;

    z-index:-3;

    overflow:hidden;

    pointer-events:none;

}

.aurora::before,
.aurora::after{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    filter:blur(120px);

    opacity:.22;

    animation:auroraFloat 18s ease-in-out infinite;

}

.aurora::before{

    background:#00D4FF;

    top:-200px;
    left:-200px;

}

.aurora::after{

    background:#2563EB;

    bottom:-250px;
    right:-200px;

    animation-delay:-9s;

}

@keyframes auroraFloat{

    0%{

        transform:
        translate(0,0)
        scale(1);

    }

    25%{

        transform:
        translate(140px,60px)
        scale(1.12);

    }

    50%{

        transform:
        translate(60px,180px)
        scale(.95);

    }

    75%{

        transform:
        translate(-120px,80px)
        scale(1.08);

    }

    100%{

        transform:
        translate(0,0)
        scale(1);

    }

}

body::before{

    content:"";

    position:fixed;

    inset:0;

    background-image:

        linear-gradient(
            rgba(255,255,255,.03) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.03) 1px,
            transparent 1px
        );

    background-size:40px 40px;

    mask-image:radial-gradient(circle,white 20%,transparent 100%);

    pointer-events:none;

    z-index:-2;

}

/* =========================================
   NAVBAR
========================================= */

#navbar{

position:fixed;

top:0;
left:0;

width:100%;

z-index:9999;

padding:20px 0;

transition:.35s;

}


.nav-container{

display:flex;

align-items:center;

justify-content:space-between;

padding:16px 24px;

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

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

backdrop-filter:blur(20px);

border-radius:20px;

}

.logo{

display:flex;

align-items:center;

gap:12px;

font-size:28px;

font-weight:800;

}

.logo span{

background:var(--gradient);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.logo-icon{

width:52px;

height:52px;

object-fit:contain;

border-radius:16px;

filter:drop-shadow(0 0 18px rgba(0,212,255,.45));

transition:.3s;

}

.logo:hover .logo-icon{

transform:rotate(-5deg) scale(1.08);

}

.nav-links{

display:flex;

list-style:none;

gap:38px;

}

.nav-links a{

position:relative;

font-weight:600;

transition:.3s;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;
bottom:-8px;

width:0;

height:2px;

background:var(--primary);

transition:.3s;

}

.nav-links a:hover{

color:var(--primary);

}

.nav-links a:hover::after{

width:100%;

}

.menu-toggle{

display:none;

background:none;

border:none;

color:white;

font-size:30px;

cursor:pointer;

}

/* =========================================
   HERO
========================================= */

#hero{

min-height:100vh;

display:flex;

align-items:center;

}

.hero-container{

display:grid;

grid-template-columns:1.2fr 1fr;

align-items:center;

gap:80px;

}

.hero-badge{

display:inline-block;

padding:10px 18px;

border-radius:100px;

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

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

margin-bottom:25px;

color:var(--primary);

font-weight:600;

}

.hero-left h1{

font-size:72px;

line-height:1.1;

margin-bottom:20px;

font-weight:900;

}

.hero-left h1 span{

background:var(--gradient);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero-left p{

font-size:20px;

line-height:1.8;

color:var(--text-muted);

max-width:620px;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.bot-card{

padding:30px;

border-radius:28px;

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

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

backdrop-filter:blur(25px);

box-shadow:0 0 60px rgba(0,212,255,.12);

animation:float 5s ease-in-out infinite;

}

.bot-card img{

width:170px;

display:block;

margin:30px auto;

}

.status{

display:flex;

align-items:center;

gap:10px;

font-weight:700;

color:#22C55E;

}

.dot{

width:12px;

height:12px;

background:#22C55E;

border-radius:50%;

box-shadow:0 0 12px #22C55E;

}

.mini-stats{

display:grid;

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

text-align:center;

margin-top:25px;

}

.mini-stats h2{

font-size:26px;

color:var(--primary);

}

.mini-stats p{

color:var(--text-muted);

margin-top:6px;

}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0);}

}

/* =========================================
   LIVE STATS
========================================= */

.section-heading{

text-align:center;

margin-bottom:70px;

}

.section-heading span{

color:var(--primary);

font-weight:700;

letter-spacing:2px;

}

.section-heading h2{

font-size:52px;

margin:18px 0;

}

.section-heading p{

color:var(--text-muted);

font-size:18px;

}

.stats-grid{

display:grid;

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

gap:28px;

}

.stat-card{

padding:35px;

text-align:center;

background:var(--card);

border:1px solid var(--border);

border-radius:24px;

backdrop-filter:blur(20px);

transition:.35s;

}

.stat-card:hover{

transform:translateY(-10px);

border-color:var(--primary);

box-shadow:0 0 40px rgba(0,212,255,.25);

}

.stat-icon{

font-size:42px;

margin-bottom:20px;

}

.stat-card h3{

font-size:42px;

margin-bottom:10px;

background:var(--gradient);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.stat-card span{

color:var(--text-muted);

}

/* =========================================
   FEATURES
========================================= */

.features-grid{

display:grid;

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

gap:28px;

}

.feature-card{

background:var(--card);

border:1px solid var(--border);

border-radius:24px;

padding:32px;

transition:.35s;

backdrop-filter:blur(20px);

position:relative;

overflow:hidden;

}

.feature-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.08),
transparent
);

transition:.8s;

}

.feature-card:hover::before{

left:100%;

}

.feature-card:hover{

transform:translateY(-10px);

border-color:var(--primary);

box-shadow:0 15px 40px rgba(0,212,255,.18);

}

.feature-icon{

width:72px;

height:72px;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:22px;

border-radius:22px;

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

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

transition:.35s;

}

.feature-icon svg{

width:34px;

height:34px;

stroke:#00D4FF;

stroke-width:2.2;

transition:.35s;

}

.feature-card h3{

margin-bottom:15px;

font-size:28px;

}

.feature-card p{

color:var(--text-muted);

line-height:1.7;

}

/* ============================
COMMAND PLAYGROUND
============================= */

.playground{

margin-top:60px;

}

.terminal{

background:#0d1324;

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

border-radius:22px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.4);

}

.terminal-header{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 22px;

background:#131c31;

}

.terminal-buttons{

display:flex;

gap:10px;

}

.terminal-buttons span{

width:12px;

height:12px;

border-radius:50%;

}

.red{

background:#ff5f57;

}

.yellow{

background:#febc2e;

}

.green{

background:#28c840;

}

.terminal-body{

padding:30px;

min-height:220px;

font-family:monospace;

line-height:2;

color:#d4d4d4;

}

.terminal-line{

animation:fadeIn .35s;

}

.command-list{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

margin-top:30px;

}

.command-list button{

padding:12px 22px;

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

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

color:white;

border-radius:14px;

cursor:pointer;

transition:.3s;

font-size:15px;

}

.command-list button:hover{

background:var(--gradient);

transform:translateY(-3px);

}

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

.faq-container{

max-width:900px;

margin:60px auto 0;

display:flex;

flex-direction:column;

gap:20px;

}

.faq-item{

background:var(--card);

border:1px solid var(--border);

border-radius:20px;

overflow:hidden;

transition:.35s;

}

.faq-item:hover{

border-color:var(--primary);

}

.faq-question{

display:flex;

justify-content:space-between;

align-items:center;

padding:24px 28px;

cursor:pointer;

}

.faq-question h3{

font-size:22px;

}

.faq-question span{

font-size:28px;

color:var(--primary);

transition:.3s;

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:.4s;

}

.faq-answer p{

padding:0 28px 24px;

line-height:1.8;

color:var(--text-muted);

}

.faq-item.active .faq-answer{

max-height:300px;

}

.faq-item.active .faq-question span{

transform:rotate(45deg);

}

/* ============================
CTA
============================ */

#cta{

padding:150px 0;

}

.cta-box{

position:relative;

overflow:hidden;

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

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

border-radius:32px;

padding:80px;

text-align:center;

backdrop-filter:blur(25px);

}

.cta-box::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:radial-gradient(circle,
rgba(0,212,255,.18),
transparent 70%);

top:-250px;

left:50%;

transform:translateX(-50%);

pointer-events:none;

}

.cta-tag{

display:inline-block;

padding:10px 22px;

border-radius:999px;

background:rgba(0,212,255,.08);

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

color:var(--primary);

font-weight:700;

margin-bottom:25px;

}

.cta-box h2{

font-size:58px;

line-height:1.15;

max-width:850px;

margin:auto;

margin-bottom:25px;

}

.cta-box p{

font-size:20px;

line-height:1.8;

max-width:720px;

margin:auto;

color:var(--text-muted);

margin-bottom:45px;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

}

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

#footer{

padding:90px 0 40px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:60px;

}

.footer-grid h2{

font-size:34px;

margin-bottom:20px;

background:var(--gradient);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.footer-grid h3{

margin-bottom:18px;

}

.footer-grid p{

color:var(--text-muted);

line-height:1.8;

}

.footer-grid a{

display:block;

margin-bottom:12px;

color:var(--text-muted);

transition:.3s;

}

.footer-grid a:hover{

color:var(--primary);

}

footer hr{

margin:50px 0 30px;

border:none;

height:1px;

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

}

.copyright{

text-align:center;

color:var(--text-muted);

}

/* ===========================
   MOBILE NAV
=========================== */

.menu-toggle{

display:none;

background:none;

border:none;

color:white;

font-size:32px;

cursor:pointer;

padding:5px;

}

#navOverlay{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:rgba(0,0,0,.6);

backdrop-filter:blur(8px);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:9998;

}

#navOverlay.active{

opacity:1;

visibility:visible;

}.active{

opacity:1;

visibility:visible;

}

/* ==========================================
   DOCUMENTATION
========================================== */

.docs-page{

display:grid;

grid-template-columns:280px 1fr;

gap:40px;

padding:140px 8% 80px;

align-items:start;

}

.docs-sidebar{

position:sticky;

top:120px;

padding:25px;

border-radius:22px;

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

backdrop-filter:blur(25px);

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

}

.docs-sidebar h2{

margin-bottom:20px;

font-size:28px;

}

.docs-search{

width:100%;

padding:14px 18px;

margin-bottom:25px;

border:none;

outline:none;

border-radius:14px;

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

color:white;

font-size:15px;

}

.docs-search::placeholder{

color:#9aa6c4;

}

.docs-sidebar ul{

list-style:none;

display:flex;

flex-direction:column;

gap:10px;

}

.docs-sidebar a{

display:block;

padding:12px 16px;

border-radius:12px;

color:#cfd8e8;

text-decoration:none;

transition:.25s;

}

.docs-sidebar a:hover{

background:rgba(0,212,255,.12);

color:#00D4FF;

}

.docs-content{

display:flex;

flex-direction:column;

gap:28px;

}

.doc-card{

padding:35px;

border-radius:24px;

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

backdrop-filter:blur(25px);

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

box-shadow:0 15px 45px rgba(0,0,0,.2);

}

.doc-card h1{

font-size:42px;

margin-bottom:20px;

}

.doc-card h2{

font-size:34px;

margin-bottom:18px;

}

.doc-card h3{

margin-top:24px;

margin-bottom:10px;

}

.doc-card p{

color:#c8d2e8;

line-height:1.8;

}

.doc-card ul,

.doc-card ol{

padding-left:22px;

line-height:2;

color:#c8d2e8;

}

.code-block{

margin-top:20px;

padding:18px;

border-radius:14px;

background:#0b1120;

font-family:monospace;

overflow-x:auto;

color:#00D4FF;

}

.command-grid{

display:grid;

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

gap:18px;

margin-top:25px;

}

.command-box{

padding:20px;

border-radius:16px;

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

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

transition:.25s;

}

.command-box:hover{

transform:translateY(-5px);

border-color:#00D4FF;

box-shadow:0 10px 30px rgba(0,212,255,.18);

}

.command-box strong{

display:block;

font-size:18px;

margin-bottom:8px;

color:#00D4FF;

}

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

.doc-card{

opacity:0;

transform:translateY(40px);

transition:

opacity .6s ease,

transform .6s ease;

}

.doc-card.show{

opacity:1;

transform:translateY(0);

}

.docs-sidebar a.active{

background:rgba(0,212,255,.12);

color:var(--primary);

border-left:3px solid var(--primary);

padding-left:13px;

}

/* ==========================================
   SCROLL REVEAL
========================================== */

.reveal{

opacity:0;

transform:translateY(60px);

transition:

opacity .8s ease,

transform .8s ease;

}

.reveal.show{

opacity:1;

transform:translateY(0);

}

.reveal-left{

opacity:0;

transform:translateX(-60px);

transition:

opacity .8s ease,

transform .8s ease;

}

.reveal-left.show{

opacity:1;

transform:translateX(0);

}

.reveal-right{

opacity:0;

transform:translateX(60px);

transition:

opacity .8s ease,

transform .8s ease;

}

.reveal-right.show{

opacity:1;

transform:translateX(0);

}

.reveal-scale{

opacity:0;

transform:scale(.92);

transition:

opacity .8s ease,

transform .8s ease;

}

.reveal-scale.show{

opacity:1;

transform:scale(1);

}

/* ==========================================
   HERO ENTRANCE
========================================== */

.hero-animate{

opacity:0;

transform:translateY(45px);

animation:heroFade .8s ease forwards;

}

.delay-1{animation-delay:.15s;}
.delay-2{animation-delay:.35s;}
.delay-3{animation-delay:.55s;}
.delay-4{animation-delay:.75s;}
.delay-5{animation-delay:.95s;}
.delay-6{animation-delay:1.15s;}

@keyframes heroFade{

from{

opacity:0;

transform:translateY(45px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.feature-card{

position:relative;

overflow:hidden;

transition:
transform .35s,
box-shadow .35s,
border-color .35s;

}

.feature-card::before{

content:"";

position:absolute;

top:0;

left:-140%;

width:80%;

height:100%;

background:
linear-gradient(
90deg,
transparent,
rgba(255,255,255,.08),
transparent
);

transform:skewX(-25deg);

transition:.7s;

}

.feature-card:hover::before{

left:170%;

}

.feature-card:hover{

transform:translateY(-10px);

border-color:#00D4FF;

box-shadow:
0 20px 60px rgba(0,212,255,.18);

}

.feature-card:hover .feature-icon{

background:#00D4FF15;

transform:scale(1.08);

}

.feature-card:hover svg{

transform:
rotate(8deg)
scale(1.15);

stroke:#4FD8FF;

}

/* ==========================================
   FLOATING PARTICLES
========================================== */

.particles{

    position:fixed;

    inset:0;

    pointer-events:none;

    z-index:-1;

}

.particles span{

    position:absolute;

    width:4px;
    height:4px;

    border-radius:50%;

    background:#00D4FF;

    box-shadow:0 0 12px #00D4FF;

    animation:particleFloat linear infinite;

}

.particles span:nth-child(1){

left:10%;
top:100%;

animation-duration:14s;

}

.particles span:nth-child(2){

left:25%;
top:105%;

animation-duration:18s;

}

.particles span:nth-child(3){

left:40%;
top:102%;

animation-duration:16s;

}

.particles span:nth-child(4){

left:55%;
top:108%;

animation-duration:20s;

}

.particles span:nth-child(5){

left:70%;
top:101%;

animation-duration:15s;

}

.particles span:nth-child(6){

left:82%;
top:110%;

animation-duration:19s;

}

.particles span:nth-child(7){

left:92%;
top:104%;

animation-duration:17s;

}

.particles span:nth-child(8){

left:5%;
top:108%;

animation-duration:21s;

}

@keyframes particleFloat{

    from{

        transform:translateY(0);

        opacity:0;

    }

    15%{

        opacity:1;

    }

    85%{

        opacity:1;

    }

    to{

        transform:translateY(-120vh);

        opacity:0;

    }

}

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

.legal-page{

padding:140px 0 100px;

}

.legal-page .container{

max-width:900px;

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

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

border-radius:24px;

padding:50px;

backdrop-filter:blur(20px);

}

.legal-page h1{

font-size:3rem;

margin-bottom:10px;

}

.legal-page h2{

margin-top:40px;

margin-bottom:15px;

color:#00D4FF;

}

.legal-page p{

line-height:1.8;

opacity:.85;

margin-bottom:20px;

}

/* ===========================
   LEGAL HERO
=========================== */

.legal-hero{

padding:170px 0 80px;

text-align:center;

position:relative;

z-index:2;

}

.hero-tag{

display:inline-block;

padding:10px 22px;

border-radius:999px;

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

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

color:#00D4FF;

font-weight:600;

margin-bottom:25px;

}

.legal-hero h1{

font-size:4rem;

margin-bottom:20px;

}

.legal-hero h1 span{

background:linear-gradient(90deg,#00D4FF,#3A7BFF);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.legal-hero p{

max-width:800px;

margin:auto;

font-size:1.15rem;

line-height:1.9;

opacity:.8;

}

.legal-meta{

margin-top:45px;

display:flex;

justify-content:center;

gap:40px;

flex-wrap:wrap;

}

.legal-meta div{

padding:20px 28px;

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

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

border-radius:18px;

min-width:170px;

backdrop-filter:blur(15px);

}

.legal-meta strong{

display:block;

margin-bottom:8px;

}

.online{

color:#38ff89;

font-weight:700;

}

/* =======================================
LEGAL GRID
======================================= */

.legal-grid{

display:grid;

grid-template-columns:280px 1fr;

gap:50px;

align-items:start;

}

.legal-sidebar{

position:sticky;

top:130px;

}

.legal-card{

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

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

border-radius:22px;

padding:28px;

backdrop-filter:blur(18px);

}

.legal-card h3{

margin-bottom:18px;

color:#00D4FF;

}

.legal-card a{

display:block;

padding:10px 0;

color:#ddd;

text-decoration:none;

transition:.25s;

}

.legal-card a:hover{

color:#00D4FF;

padding-left:10px;

}

.legal-content section{

margin-bottom:70px;

padding:35px;

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

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

border-radius:24px;

backdrop-filter:blur(18px);

}

.legal-content h2{

margin-bottom:20px;

font-size:1.9rem;

}

.legal-content p{

line-height:1.9;

opacity:.85;

margin-bottom:18px;

}

.legal-content ul{

padding-left:22px;

line-height:2;

opacity:.85;

}

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

.legal-contact{

display:grid;

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

gap:20px;

margin-top:30px;

}

.legal-contact div{

padding:22px;

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

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

border-radius:18px;

transition:.3s;

}

.legal-contact div:hover{

transform:translateY(-6px);

border-color:#00D4FF;

box-shadow:0 15px 40px rgba(0,212,255,.15);

}

/* ===========================================================
   XEVON LEGAL PAGES
=========================================================== */

html{
    scroll-behavior:smooth;
}

/* ---------- Hero ---------- */

.legal-hero{
    padding:170px 0 80px;
    text-align:center;
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#00D4FF;
    font-weight:600;
    margin-bottom:25px;
}

.legal-hero h1{
    font-size:4rem;
    margin-bottom:20px;
    line-height:1.1;
}

.legal-hero h1 span{
    background:linear-gradient(90deg,#00D4FF,#4F7CFF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.legal-hero p{
    max-width:820px;
    margin:auto;
    line-height:1.9;
    font-size:1.08rem;
    opacity:.85;
}

.legal-meta{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.legal-meta div{
    min-width:170px;
    padding:22px;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
}

.legal-meta strong{
    display:block;
    margin-bottom:8px;
}

.online{
    color:#39ff88;
    font-weight:700;
}

/* ---------- Layout ---------- */

.legal-layout{
    padding-bottom:100px;
}

.legal-grid{
    display:grid;
    grid-template-columns:290px 1fr;
    gap:45px;
    align-items:start;
}

/* ---------- Sidebar ---------- */

.legal-sidebar{
    position:sticky;
    top:120px;
}

.legal-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:28px;
    backdrop-filter:blur(20px);
}

.legal-card h3{
    color:#00D4FF;
    margin-bottom:18px;
}

.legal-card a{
    display:block;
    text-decoration:none;
    color:#ddd;
    padding:11px 0;
    transition:.3s;
}

.legal-card a:hover{
    color:#00D4FF;
    padding-left:10px;
}

.legal-card a.active{
    color:#00D4FF;
    padding-left:12px;
    border-left:3px solid #00D4FF;
    font-weight:600;
}

/* ---------- Content ---------- */

.legal-content section{
    margin-bottom:45px;
    padding:38px;
    border-radius:26px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);

    opacity:0;
    transform:translateY(45px);
    transition:
        opacity .7s ease,
        transform .7s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.legal-content section.show{
    opacity:1;
    transform:translateY(0);
}

.legal-content section:hover{
    border-color:#00D4FF44;
    box-shadow:0 20px 50px rgba(0,212,255,.08);
}

.legal-content h2{
    margin-bottom:18px;
    font-size:2rem;
}

.legal-content p{
    line-height:1.9;
    opacity:.86;
    margin-bottom:18px;
}

.legal-content ul{
    margin:20px 0;
    padding-left:22px;
}

.legal-content li{
    margin:10px 0;
    line-height:1.8;
}

/* ---------- Contact Cards ---------- */

.legal-contact{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:30px;
}

.legal-contact div{
    padding:24px;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.legal-contact div:hover{
    transform:translateY(-6px);
    border-color:#00D4FF;
    box-shadow:0 18px 45px rgba(0,212,255,.12);
}

/* ---------- Scrollbar ---------- */

.legal-content::-webkit-scrollbar{
    width:8px;
}

.legal-content::-webkit-scrollbar-thumb{
    background:#00D4FF55;
    border-radius:999px;
}

/* ---------- Responsive ---------- */

@media(max-width:992px){

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

    .legal-sidebar{
        position:relative;
        top:0;
        margin-bottom:35px;
    }

    .legal-meta{
        flex-direction:column;
        align-items:center;
    }

    .legal-hero h1{
        font-size:2.7rem;
    }

    .legal-content section{
        padding:28px;
    }

}

.faq-item{

margin-top:24px;

padding:26px;

border-radius:18px;

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

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

transition:.3s;

}

.faq-item:hover{

transform:translateY(-4px);

border-color:#00D4FF55;

box-shadow:0 15px 40px rgba(0,212,255,.10);

}

.faq-item h3{

margin-bottom:12px;

color:#00D4FF;

}

.faq-item p{

margin:0;

line-height:1.8;

opacity:.85;

}

/* ==========================================
   COMMANDS PAGE
========================================== */

.commands-hero{

padding:170px 0 80px;

text-align:center;

}

.command-stats{

margin-top:50px;

display:flex;

justify-content:center;

gap:30px;

flex-wrap:wrap;

}

.command-stats div{

padding:24px 34px;

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

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

border-radius:20px;

backdrop-filter:blur(18px);

}

.command-stats h2{

font-size:2rem;

color:#00D4FF;

margin-bottom:8px;

}

.command-search{

max-width:700px;

margin:50px auto;

}

.command-search input{

width:100%;

padding:18px 22px;

border-radius:18px;

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

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

color:white;

font-size:1rem;

outline:none;

backdrop-filter:blur(18px);

}

.command-search input:focus{

border-color:#00D4FF;

box-shadow:0 0 30px rgba(0,212,255,.2);

}

.command-categories{

display:flex;

justify-content:center;

gap:14px;

flex-wrap:wrap;

margin-top:20px;

}

.command-categories button{

padding:12px 22px;

border-radius:999px;

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

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

color:white;

cursor:pointer;

transition:.3s;

}

.command-categories button:hover,

.command-categories button.active{

background:#00D4FF;

color:#08111F;

}

.commands-section{

padding:80px 0 120px;

}

/* ==========================================
   COMMAND CARDS
========================================== */

#commandsGrid{

display:grid;

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

gap:26px;

}

.command-card{

padding:30px;

border-radius:24px;

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

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

backdrop-filter:blur(20px);

transition:.35s;

}

.command-card:hover{

transform:translateY(-8px);

border-color:#00D4FF;

box-shadow:
0 20px 55px rgba(0,212,255,.15);

}

.command-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:18px;

}

.command-top h3{

color:#00D4FF;

font-size:1.35rem;

}

.badge{

padding:8px 14px;

border-radius:999px;

background:#00D4FF20;

color:#00D4FF;

font-size:.82rem;

font-weight:600;

}

.command-card p{

opacity:.82;

line-height:1.8;

margin-bottom:22px;

}

.command-bottom{

display:flex;

justify-content:space-between;

align-items:center;

gap:18px;

}

.command-bottom span{

opacity:.7;

font-size:.92rem;

}

.command-bottom button{

padding:10px 18px;

border:none;

border-radius:12px;

background:#00D4FF;

color:#08111F;

font-weight:700;

cursor:pointer;

transition:.25s;

}

.command-bottom button:hover{

transform:translateY(-2px);

box-shadow:0 12px 30px rgba(0,212,255,.25);

}

/* ===================================================
                 COMMAND CENTER V2
=================================================== */

.commands-hero{

padding:170px 0 90px;

position:relative;

z-index:2;

text-align:center;

}

.command-pill{

display:inline-flex;

align-items:center;

gap:12px;

padding:12px 22px;

border-radius:999px;

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

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

backdrop-filter:blur(20px);

margin-bottom:35px;

font-weight:600;

color:#00D4FF;

}

.commands-hero h1{

font-size:clamp(3.4rem,8vw,5.5rem);

font-weight:900;

line-height:1.05;

margin-bottom:22px;

}

.commands-hero h1 span{

background:linear-gradient(
90deg,
#00D4FF,
#4F7BFF
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.commands-hero p{

max-width:780px;

margin:auto;

font-size:1.08rem;

line-height:1.9;

opacity:.82;

margin-bottom:45px;

}

.search-box{

max-width:900px;

margin:auto;

display:flex;

align-items:center;

gap:18px;

padding:20px 24px;

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

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

border-radius:22px;

backdrop-filter:blur(20px);

transition:.3s;

}

.search-box:focus-within{

border-color:#00D4FF;

box-shadow:

0 0 40px rgba(0,212,255,.18);

}

.search-box svg{

color:#00D4FF;

flex-shrink:0;

}

.search-box input{

width:100%;

background:none;

border:none;

outline:none;

color:white;

font-size:1rem;

font-family:inherit;

}

.search-box input::placeholder{

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

}

.category-row{

display:flex;

justify-content:center;

gap:12px;

flex-wrap:wrap;

margin:42px 0;

}

.category-row button{

padding:11px 22px;

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

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

border-radius:999px;

cursor:pointer;

font-weight:600;

color:white;

transition:.25s;

}

.category-row button:hover{

transform:translateY(-2px);

border-color:#00D4FF;

}

.category-row button.active{

background:linear-gradient(

90deg,

#00D4FF,

#4F7BFF

);

color:white;

}

.stats-row{

display:grid;

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

gap:22px;

margin-top:25px;

}

.stat-card{

padding:28px;

border-radius:22px;

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

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

backdrop-filter:blur(20px);

transition:.3s;

}

.stat-card:hover{

transform:translateY(-7px);

border-color:#00D4FF;

box-shadow:

0 18px 45px rgba(0,212,255,.15);

}

.stat-card h2{

font-size:2.3rem;

font-weight:800;

margin-bottom:8px;

color:#00D4FF;

}

.stat-card p{

opacity:.75;

}

.commands-page{

padding:20px 0 120px;

}

.commands-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(360px,1fr));

gap:24px;

}

.command-card{

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

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

backdrop-filter:blur(20px);

border-radius:24px;

padding:28px;

transition:.3s;

position:relative;

overflow:hidden;

}

.command-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:2px;

background:

linear-gradient(

90deg,

#00D4FF,

transparent

);

opacity:0;

transition:.3s;

}

.command-card:hover{

transform:translateY(-8px);

border-color:#00D4FF;

box-shadow:

0 18px 45px rgba(0,212,255,.14);

}

.command-card:hover::before{

opacity:1;

}

.command-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:18px;

gap:20px;

}

.command-top h3{

font-size:1.35rem;

color:#00D4FF;

}

.badge{

padding:7px 14px;

border-radius:999px;

background:rgba(0,212,255,.15);

color:#00D4FF;

font-size:.82rem;

font-weight:700;

}

.command-card p{

line-height:1.8;

opacity:.82;

margin-bottom:22px;

min-height:54px;

}

.command-bottom{

display:flex;

justify-content:space-between;

align-items:center;

gap:16px;

}

.command-bottom span{

font-size:.9rem;

opacity:.65;

}

.command-bottom button{

padding:10px 18px;

border:none;

border-radius:14px;

background:

linear-gradient(

90deg,

#00D4FF,

#4F7BFF

);

color:white;

font-weight:700;

cursor:pointer;

transition:.25s;

}

.command-bottom button:hover{

transform:translateY(-2px);

box-shadow:

0 12px 30px rgba(0,212,255,.25);

}

/* =======================================
            COMMAND MODAL
======================================= */

.command-modal{

position:fixed;

inset:0;

display:none;

justify-content:center;

align-items:center;

z-index:99999;

}

.command-modal.active{

display:flex;

}

.modal-backdrop{

position:absolute;

inset:0;

background:rgba(0,0,0,.65);

backdrop-filter:blur(10px);

}

.modal-card{

position:relative;

width:min(700px,92vw);

padding:38px;

border-radius:28px;

background:#0f1725;

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

z-index:2;

animation:modalUp .28s ease;

}

@keyframes modalUp{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:none;

}

}

.modal-close{

position:absolute;

right:20px;

top:20px;

width:42px;

height:42px;

border:none;

border-radius:50%;

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

color:white;

cursor:pointer;

font-size:18px;

}

.modal-tags{

display:flex;

gap:12px;

margin:20px 0;

flex-wrap:wrap;

}

.modal-section{

margin-top:26px;

}

.modal-section h3{

margin-bottom:10px;

color:#00D4FF;

}

.modal-section code{

display:block;

padding:14px;

border-radius:14px;

background:#111d2f;

font-family:monospace;

white-space:pre-wrap;

}

.modal-buttons{

margin-top:35px;

display:flex;

justify-content:flex-end;

}

.modal-buttons button{

padding:12px 22px;

border:none;

border-radius:14px;

background:linear-gradient(

90deg,

#00D4FF,

#3B82F6

);

color:white;

font-weight:700;

cursor:pointer;

}

/* ===========================
   MOBILE NAV FIX
=========================== */

@media (max-width: 992px){

    .nav-links{

        position:fixed;

        top:0;

        right:-320px;

        width:300px;

        height:100vh;

        display:flex;

        flex-direction:column;

        gap:0;

        padding:100px 30px 30px;

        background:#0b1323;

        transition:right .35s ease;

        z-index:9999;

    }

    .nav-links.active{

        right:0;

    }

    .nav-links a{

        width:100%;

        padding:18px 0;

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

    }

    .menu-toggle{

        display:block;

    }

}

@media (min-width: 993px){

    .menu-toggle{

        display:none;

    }

}

/* ==========================================
   DOCUMENTATION V2
========================================== */

.docs-hero{

padding:170px 0 90px;

text-align:center;

}

.docs-badge{

display:inline-flex;

align-items:center;

justify-content:center;

padding:10px 18px;

border-radius:999px;

background:rgba(0,212,255,.08);

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

color:#63d9ff;

font-weight:700;

margin-bottom:24px;

}

.docs-hero h1{

font-size:68px;

font-weight:800;

margin-bottom:18px;

}

.docs-hero h1 span{

background:var(--gradient);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.docs-hero p{

max-width:760px;

margin:auto;

font-size:20px;

line-height:1.8;

opacity:.85;

}

.docs-search-wrapper{

max-width:720px;

margin:45px auto 0;

}

.docs-search{

width:100%;

height:62px;

padding:0 24px;

border-radius:18px;

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

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

color:white;

font-size:17px;

outline:none;

transition:.25s;

}

.docs-search:focus{

border-color:#00d4ff;

box-shadow:0 0 20px rgba(0,212,255,.18);

}

.docs-layout{

display:grid;

grid-template-columns:300px 1fr;

gap:35px;

align-items:start;

padding-bottom:80px;

}

.docs-sidebar{

position:sticky;

top:110px;

padding:26px;

border-radius:24px;

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

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

backdrop-filter:blur(16px);

}

.docs-sidebar h3{

margin-bottom:18px;

font-size:22px;

}

.docs-sidebar nav{

display:flex;

flex-direction:column;

gap:10px;

}

.docs-sidebar a{

padding:13px 16px;

border-radius:14px;

color:#d6e8ff;

text-decoration:none;

transition:.25s;

}

.docs-sidebar a:hover{

background:rgba(0,212,255,.10);

color:#00d4ff;

transform:translateX(5px);

}

.docs-content{

display:flex;

flex-direction:column;

gap:28px;

}

.doc-card{

padding:34px;

border-radius:24px;

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

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

backdrop-filter:blur(16px);

transition:.3s;

}

.doc-card:hover{

border-color:rgba(0,212,255,.30);

transform:translateY(-3px);

}

.doc-card h2{

font-size:34px;

margin-bottom:18px;

}

.doc-card h3{

margin:24px 0 12px;

font-size:22px;

}

.doc-card p{

line-height:1.9;

opacity:.9;

}

.doc-card ol,

.doc-card ul{

padding-left:22px;

margin-top:16px;

line-height:2;

}

.feature-list{

display:grid;

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

gap:12px;

padding:0;

margin-top:22px;

list-style:none;

}

.feature-list li{

padding:14px 18px;

border-radius:16px;

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

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

}

.command-grid{

display:grid;

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

gap:18px;

margin-top:24px;

}

.command-box{

padding:22px;

border-radius:18px;

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

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

transition:.25s;

}

.command-box:hover{

transform:translateY(-4px);

border-color:rgba(0,212,255,.25);

}

.command-box strong{

display:block;

font-size:20px;

margin-bottom:8px;

color:#00d4ff;

}

.code-block{

margin-top:20px;

padding:20px;

border-radius:18px;

overflow:auto;

background:#0b1324;

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

font-family:monospace;

font-size:15px;

line-height:1.8;

}

.faq-item{

padding:22px;

margin-top:18px;

border-radius:18px;

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

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

}

.faq-item h3{

margin-bottom:10px;

color:#00d4ff;

}5,255,.03);

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

}

.faq-item h3{

margin-bottom:10px;

color:#00d4ff;

}margin-top:18px;

border-radius:18px;

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

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

}

.faq-item h3{

margin-bottom:10px;

color:#00d4ff;

}