/* ==========================================
   XION v2
   Premium Landing
========================================== */

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

html{

    scroll-behavior:smooth;

}

html,
body{

    width:100%;
    min-height:100%;
    overflow-x:hidden;

}

body{

    font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

    color:#fff;

    background:#090914;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100svh;

}


/* ==========================
   BACKGROUND
========================== */

.background{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-5;

    background:
    radial-gradient(circle at top,#2d2375,#090914 65%);

}

/* Stars */

.stars{

    position:absolute;

    inset:0;

    background-image:
    radial-gradient(white 1px,transparent 1px);

    background-size:
    95px 95px;

    opacity:.35;

    animation:
    starsMove 40s linear infinite;

}

@keyframes starsMove{

    from{

        transform:
        translateY(0);

    }

    to{

        transform:
        translateY(250px);

    }

}

/* Purple Glow */

.glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

}

.glow1{

    width:500px;

    height:500px;

    left:-180px;

    top:-180px;

    background:
    rgba(108,80,255,.45);

    animation:
    glowFloat1 12s ease-in-out infinite;

}

.glow2{

    width:550px;

    height:550px;

    right:-220px;

    bottom:-220px;

    background:
    rgba(150,80,255,.35);

    animation:
    glowFloat2 15s ease-in-out infinite;

}

@keyframes glowFloat1{

    0%,100%{

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

    }

    50%{

        transform:
        translate(40px,-20px)
        scale(1.15);

    }

}

@keyframes glowFloat2{

    0%,100%{

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

    }

    50%{

        transform:
        translate(-50px,30px)
        scale(1.2);

    }

}

/* ==========================
   CONTAINER
========================== */

.container{

    width:100%;

    display:flex;

    justify-content:center;

    padding:25px;

}

/* ==========================
   CARD
========================== */

.hero{

    position:relative;

    width:min(520px,100%);

    padding:55px 35px;

    border-radius:34px;

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

    backdrop-filter:
    blur(28px);

    -webkit-backdrop-filter:
    blur(28px);

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

    overflow:hidden;

    text-align:center;

    box-shadow:

    0 0 90px rgba(90,70,255,.15),

    inset 0 0 50px rgba(255,255,255,.02);

    animation:
    heroAppear .9s ease;

}

.hero::before{

    content:"";

    position:absolute;

    inset:-70px;

    background:

    radial-gradient(

    circle,

    rgba(120,90,255,.28),

    transparent 70%

    );

    filter:blur(55px);

    z-index:-1;

    animation:
    neonPulse 8s ease-in-out infinite;

}

@keyframes heroAppear{

    from{

        opacity:0;

        transform:
        translateY(35px);

    }

    to{

        opacity:1;

        transform:
        translateY(0);

    }

}

@keyframes neonPulse{

    0%,100%{

        opacity:.55;

        transform:scale(1);

    }

    50%{

        opacity:1;

        transform:scale(1.12);

    }

}
/* ==========================================
   LOGO
========================================== */

.logo-ring{

    position:relative;

    width:150px;
    height:150px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

}

.logo-ring::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    background:
    conic-gradient(
        from 0deg,
        transparent,
        #6d5cff,
        #a855ff,
        transparent
    );

    animation:rotateRing 6s linear infinite;

}

.logo-ring::after{

    content:"";

    position:absolute;

    inset:4px;

    border-radius:50%;

    background:#090914;

}

.logo{

    position:relative;

    z-index:2;

    width:118px;
    height:118px;

    border-radius:50%;

    object-fit:cover;

    box-shadow:
    0 0 35px rgba(120,90,255,.55);

    animation:
    logoFloat 4s ease-in-out infinite;

}

@keyframes rotateRing{

    to{

        transform:rotate(360deg);

    }

}

@keyframes logoFloat{

    0%,100%{

        transform:
        translateY(0);

    }

    50%{

        transform:
        translateY(-6px);

    }

}


/* ==========================================
   TEXT
========================================== */

h1{

    font-size:68px;

    font-weight:800;

    letter-spacing:8px;

    margin-bottom:18px;

    background:
    linear-gradient(
    90deg,
    #ffffff,
    #d6cfff,
    #8e79ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.subtitle{

    font-size:30px;

    color:#ececec;

    margin-bottom:18px;

}

.motto{

    color:#9f9fba;

    letter-spacing:6px;

    font-size:14px;

    margin-bottom:45px;

}


/* ==========================================
   BUTTON
========================================== */

.button{

    position:relative;

    width:260px;

    height:66px;

    margin:auto;

    border-radius:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    overflow:hidden;

    color:white;

    text-decoration:none;

    font-weight:700;

    font-size:20px;

    background:
    rgba(15,15,30,.82);

    border:
    2px solid rgba(120,90,255,.55);

    box-shadow:
    0 0 30px rgba(110,90,255,.35);

    transition:.35s;

}

.button svg{

    width:22px;

    height:22px;

    fill:white;

}

.button::before{

    content:"";

    position:absolute;

    left:-120%;

    top:-60%;

    width:85%;

    height:220%;

    background:

    linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.03) 30%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,.03) 70%,
    rgba(255,255,255,0) 100%
    );

    filter:
    blur(5px);

    pointer-events:none;

    animation:
    shine 3.5s infinite;

}

.button:hover{

    transform:
    translateY(-4px)
    scale(1.03);

    box-shadow:
    0 0 55px rgba(120,90,255,.75);

}

@keyframes shine{

    to{

        left:140%;

    }

}
/* ==========================================
   LIVE ANALYTICS
========================================== */

.analytics{

    width:min(520px,100%);

    margin-top:25px;

    padding:25px;

    border-radius:30px;

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

    backdrop-filter:
    blur(25px);

    -webkit-backdrop-filter:
    blur(25px);

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

    box-shadow:

    0 0 50px rgba(110,90,255,.18),

    inset 0 0 30px rgba(255,255,255,.03);

    animation:
    analyticsAppear 1s ease;

}


.analytics h2{

    text-align:center;

    font-size:20px;

    letter-spacing:2px;

    margin-bottom:25px;

    color:#ffffff;

}


.stats-grid{

    display:grid;

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

    gap:15px;

}


.stat-card{

    padding:18px 10px;

    border-radius:20px;

    background:

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

    border:

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

    transition:.35s;

}


.stat-card:hover{

    transform:
    translateY(-5px);

    background:

    rgba(255,255,255,.1);

    box-shadow:

    0 0 25px rgba(120,90,255,.35);

}


.number{

    font-size:28px;

    font-weight:800;

    text-align:center;

    color:#ffffff;

}


.label{

    margin-top:8px;

    text-align:center;

    color:#aaa9c5;

    font-size:13px;

    letter-spacing:1px;

}


@keyframes analyticsAppear{

    from{

        opacity:0;

        transform:
        translateY(30px);

    }

    to{

        opacity:1;

        transform:
        translateY(0);

    }

}


/* Mobile */

@media(max-width:600px){


    .stats-grid{

        grid-template-columns:
        1fr;

    }


    .analytics{

        padding:20px;

    }


    .number{

        font-size:25px;

    }


}
/* ==========================================
   MINI STATS
========================================== */

.mini-stats{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:35px;

    margin:0 auto 35px;

}


.mini-stat{

    display:flex;

    align-items:center;

    gap:8px;

    color:white;

    font-size:18px;

    font-weight:600;

    letter-spacing:.5px;

}


.mini-stat svg{

    width:22px;

    height:22px;

    fill:white;

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

}


.mini-stat span{

    color:#ffffff;

}


/* subtle hover */

.mini-stat:hover{

    transform:
    translateY(-2px);

    transition:.3s;

}


/* Mobile */

@media(max-width:600px){

    .mini-stats{

        gap:22px;

    }


    .mini-stat{

        font-size:16px;

    }


    .mini-stat svg{

        width:19px;

        height:19px;

    }

}
