/* ===================================
   Sight RP
   Created By ChatGPT
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#050505;

    color:#fff;

    overflow-x:hidden;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:#7b2cff;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#9f58ff;

}

/* Background */

.background{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-10;

    background:#050505;

}

/* Grid */

.grid{

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);

    background-size:55px 55px;

    animation:gridMove 15s linear infinite;

    opacity:.55;

}

@keyframes gridMove{

0%{

transform:translateY(0);

}

100%{

transform:translateY(55px);

}

}

/* Purple Glow */

.purple-glow{

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:#7b2cff;

    filter:blur(170px);

    opacity:.23;

}

.glow1{

    top:-220px;

    left:-180px;

}

.glow2{

    right:-180px;

    bottom:-250px;

}

/* Header */

header{

    width:100%;

    position:fixed;

    top:0;

    left:0;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(8,8,8,.55);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.container{

    width:min(1200px,92%);

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:42px;

    height:42px;

    border-radius:14px;

    box-shadow:0 0 25px rgba(123,44,255,.45);

}

.logo span{

    font-size:20px;

    font-weight:800;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    text-decoration:none;

    color:#d8d8d8;

    transition:.3s;

    font-weight:500;

}

nav a:hover{

    color:#fff;

}

.login-btn{

    padding:12px 26px;

    border-radius:14px;

    background:#7b2cff;

    text-decoration:none;

    color:#fff;

    transition:.35s;

    box-shadow:0 0 35px rgba(123,44,255,.35);

}

.login-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 0 45px rgba(123,44,255,.6);

}

/* Hero */

.hero{

    min-height:100vh;

    width:min(1200px,92%);

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:90px;

}

.hero-content{

    max-width:620px;

}

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(123,44,255,.15);

    border:1px solid rgba(123,44,255,.4);

    padding:10px 18px;

    border-radius:999px;

    margin-bottom:28px;

}
.hero h1{

    font-size:72px;

    line-height:1.05;

    font-weight:900;

    margin-bottom:25px;

    animation:fadeUp 1s ease;

}

.hero h1 span{

    display:block;

    color:#9b59ff;

    text-shadow:0 0 30px rgba(155,89,255,.7);

}

.hero p{

    color:#b8b8b8;

    font-size:18px;

    line-height:1.9;

    max-width:540px;

    margin-bottom:40px;

}

.buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.primary{

    background:#7b2cff;

    color:#fff;

    padding:16px 34px;

    border-radius:15px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

    box-shadow:0 0 35px rgba(123,44,255,.45);

}

.primary:hover{

    transform:translateY(-5px);

    box-shadow:0 0 50px rgba(123,44,255,.7);

}

.secondary{

    background:rgba(255,255,255,.05);

    color:#fff;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    padding:16px 34px;

    border-radius:15px;

    text-decoration:none;

    transition:.35s;

}

.secondary:hover{

    background:rgba(255,255,255,.09);

    transform:translateY(-5px);

}

.hero-card{

    width:420px;

    height:460px;

    border-radius:35px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(35px);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    position:relative;

    overflow:hidden;

    transition:.45s;

}

.hero-card::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:#7b2cff;

    border-radius:50%;

    filter:blur(120px);

    opacity:.35;

}

.hero-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 80px rgba(123,44,255,.35);

}

.hero-card img{

    width:150px;

    position:relative;

    z-index:2;

    margin-bottom:30px;

    filter:drop-shadow(0 0 25px rgba(123,44,255,.6));

}

.hero-card h2{

    position:relative;

    z-index:2;

    font-size:38px;

    margin-bottom:10px;

}

.hero-card p{

    position:relative;

    z-index:2;

    color:#bdbdbd;

}

.stats{

    width:100%;

    max-width:1200px;

    margin:80px auto;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:30px;

    flex-wrap:nowrap;

}


.stat{

    width:280px;

    text-align:center;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}


.stat{

    width:300px;

}

.stat{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.07);

    border-radius:24px;

    padding:40px;

    text-align:center;

    transition:.35s;

    backdrop-filter:blur(20px);

}

.stat:hover{

    transform:translateY(-8px);

    border-color:rgba(123,44,255,.5);

}

.stat h2{

    font-size:42px;

    color:#9b59ff;

    margin-bottom:10px;

}

.stat p{

    color:#bdbdbd;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}/* ===================================
   Responsive
=================================== */

@media (max-width:1100px){

.hero{

flex-direction:column;

text-align:center;

padding-top:150px;

padding-bottom:80px;

gap:60px;

}

.hero-content{

max-width:100%;

}

.buttons{

justify-content:center;

}

.hero-card{

width:100%;

max-width:420px;

height:420px;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

}

/* Tablet */

@media (max-width:768px){

.container{

padding:18px 5%;

}

nav{

gap:20px;

}

nav a{

font-size:15px;

}

.logo span{

font-size:18px;

}

.login-btn{

padding:10px 20px;

font-size:14px;

}

.hero{

padding-top:140px;

}

.hero h1{

font-size:52px;

}

.hero p{

font-size:16px;

}

.hero-card{

height:380px;

}

.hero-card img{

width:120px;

}

.hero-card h2{

font-size:30px;

}

.stats{

grid-template-columns:1fr;

}

}

/* Mobile */

@media (max-width:560px){

.container{

flex-direction:column;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

gap:15px;

}

.hero{

padding-top:190px;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:15px;

line-height:1.8;

}

.buttons{

flex-direction:column;

width:100%;

}

.primary,

.secondary{

width:100%;

text-align:center;

}

.hero-card{

height:340px;

padding:20px;

}

.hero-card img{

width:95px;

}

.hero-card h2{

font-size:26px;

}

.badge{

font-size:14px;

padding:8px 14px;

}

.stat{

padding:30px;

}

.stat h2{

font-size:32px;

}

}

/* ===================================
   Smooth Animation
=================================== */

.hero-content,
.hero-card,
.stat{

animation:fadeUp .8s ease both;

}

.stat:nth-child(2){

animation-delay:.2s;

}

.stat:nth-child(3){

animation-delay:.4s;

}

/* Hover */

nav a::after{

content:"";

display:block;

width:0;

height:2px;

background:#9b59ff;

transition:.3s;

margin-top:6px;

}

nav a:hover::after{

width:100%;

}

/* Selection */

::selection{

background:#7b2cff;

color:white;

}

/* Footer Space */

body{

padding-bottom:80px;

}
/* ===================================
   Premium Effects
=================================== */

/* Mouse Glow */

.cursor-glow{

    position:fixed;

    width:350px;

    height:350px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(123,44,255,.18) 0%,
    rgba(123,44,255,.08) 35%,
    transparent 70%);

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:-1;

    transition:
    left .08s linear,
    top .08s linear;

}

/* Floating Animation */

@keyframes floating{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}

.hero-card{

animation:floating 6s ease-in-out infinite;

}

/* Card Shine */

.hero-card::after{

content:"";

position:absolute;

top:-120%;

left:-40%;

width:60%;

height:250%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.18),

transparent

);

transform:rotate(20deg);

transition:1.2s;

}

.hero-card:hover::after{

left:150%;

}

/* Navigation Blur */

header{

box-shadow:

0 10px 45px rgba(0,0,0,.35);

}

/* Button Ripple */

.primary,
.secondary,
.login-btn{

position:relative;

overflow:hidden;

}

.primary::before,
.secondary::before,
.login-btn::before{

content:"";

position:absolute;

width:0;

height:0;

background:rgba(255,255,255,.18);

border-radius:50%;

top:50%;

left:50%;

transform:translate(-50%,-50%);

transition:.6s;

}

.primary:hover::before,
.secondary:hover::before,
.login-btn:hover::before{

width:450px;

height:450px;

}

/* Glass Border */

.hero-card{

border:

1px solid rgba(255,255,255,.08);

box-shadow:

0 0 0 1px rgba(255,255,255,.03) inset,

0 25px 80px rgba(0,0,0,.45);

}

/* Stats Hover */

.stat:hover{

background:rgba(255,255,255,.07);

box-shadow:

0 20px 60px rgba(123,44,255,.18);

}

/* Fade Animation */

.fade{

opacity:0;

transform:translateY(40px);

transition:1s;

}

.fade.show{

opacity:1;

transform:translateY(0);

}

/* Logo Hover */

.logo img{

transition:.4s;

}

.logo:hover img{

transform:rotate(8deg) scale(1.08);

filter:

drop-shadow(0 0 25px #8d45ff);

}

/* Links */

a{

-webkit-tap-highlight-color:transparent;

}

/* Prevent Image Drag */

img{

user-select:none;

pointer-events:none;

}

/* Better Text */

h1,h2,h3{

letter-spacing:-1px;

}

p{

font-weight:400;

}

/* Smooth */

*{

transition-property:

background,

color,

border,

box-shadow,

transform;

transition-duration:.25s;

}
/* ==========================================
   Final Effects
========================================== */

.hero{

    position:relative;

}

.hero::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(123,44,255,.12);

    filter:blur(120px);

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    z-index:-1;

}

/* Scroll Animation */

.reveal{

    opacity:0;

    transform:translateY(80px);

    transition:1s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/* Navbar Scroll */

header.scrolled{

    background:rgba(6,6,6,.88);

    backdrop-filter:blur(30px);

    border-bottom:1px solid rgba(123,44,255,.25);

    box-shadow:0 10px 40px rgba(0,0,0,.45);

}

/* Hover Scale */

.hero-card:hover img{

    transform:scale(1.08);

}

.hero-card img{

    transition:.5s;

}

/* Pulse */

@keyframes pulse{

0%{

box-shadow:0 0 0 rgba(123,44,255,.4);

}

50%{

box-shadow:0 0 45px rgba(123,44,255,.6);

}

100%{

box-shadow:0 0 0 rgba(123,44,255,.4);

}

}

.login-btn{

animation:pulse 3s infinite;

}

/* Hero Text */

.hero h1{

max-width:700px;

}

.hero p{

max-width:600px;

}

/* Glass */

.hero-card{

background:

linear-gradient(

180deg,

rgba(255,255,255,.08),

rgba(255,255,255,.02)

);

}

/* Footer */

footer{

padding:80px 0;

text-align:center;

color:#888;

font-size:14px;

}

/* End */

/* Fix Stats Center */

.stats{

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    width:100% !important;

    max-width:1200px !important;

    margin:80px auto !important;

    gap:30px !important;

    flex-direction:row !important;

}


.stat{

    width:280px !important;

    text-align:center !important;

}