*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    min-height:100vh;
    background:#000;
    color:#f5f5f7;
    font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    overflow-x:hidden;
}
body:before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    opacity:.13;
    background-image:
      linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
      linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
    background-size:64px 64px;
    mask-image:linear-gradient(to bottom,black,transparent 80%);
}
.orb{
    position:fixed;
    border-radius:50%;
    pointer-events:none;
    filter:blur(1px);
    background:radial-gradient(circle,rgba(45,45,52,.45),rgba(10,10,12,.12) 55%,transparent 72%);
}
.orb.one{width:520px;height:520px;right:-120px;top:-110px}
.orb.two{width:420px;height:420px;left:-120px;bottom:-110px;opacity:.55}

nav{
    height:84px;
    width:100%;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    z-index:10;
    border-top:1px solid #222;
}
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:17px;
    font-weight:800;
    letter-spacing:2px;
}
.logo-icon{font-size:17px;filter:grayscale(1)}
.nav-center{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:39px;
}
.nav-center a,.nav-right a{
    color:#898992;
    text-decoration:none;
    font-size:13px;
    transition:.2s;
}
.nav-center a:hover{color:white}
.nav-right{display:flex;gap:10px}
.nav-btn{
    height:44px;
    padding:0 21px;
    border:1px solid #29292c;
    border-radius:11px;
    display:flex;
    align-items:center;
    gap:8px;
    background:#111113;
    color:#ededee!important;
    font-weight:650;
}
.nav-btn:hover{background:#19191b}

.hero{
    min-height:calc(100vh - 84px);
    display:flex;
    justify-content:center;
    text-align:center;
    position:relative;
    z-index:2;
    padding:83px 20px 55px;
}
.hero-inner{width:min(900px,100%)}
.badge{
    display:inline-flex;
    align-items:center;
    gap:9px;
    border:1px solid #252527;
    border-radius:999px;
    background:#0a0a0b;
    padding:9px 15px;
    color:#a7a7ae;
    font-size:12px;
    margin-bottom:34px;
}
.badge-dot{
    width:14px;height:14px;border-radius:50%;
    background:#4a4a4d;
}
h1{
    margin:0;
    font-size:clamp(62px,7.7vw,103px);
    line-height:.98;
    letter-spacing:-5px;
    font-weight:800;
}
h1 .dim{color:#777780}
.hero-copy{
    max-width:670px;
    margin:37px auto 0;
    color:#92929d;
    font-size:19px;
    line-height:1.7;
}
.actions{
    display:flex;
    justify-content:center;
    gap:13px;
    margin-top:38px;
}
.primary,.secondary{
    height:56px;
    padding:0 27px;
    border-radius:13px;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:11px;
    cursor:pointer;
}
.primary{
    color:#111;
    background:linear-gradient(#fff,#dfe0e6);
    box-shadow:0 12px 35px rgba(255,255,255,.12);
}
.secondary{
    color:#eee;
    background:#080808;
    border:1px solid #242427;
}
.primary:hover{filter:brightness(1.05)}
.secondary:hover{background:#121214}

.stats{
    display:flex;
    justify-content:center;
    margin:81px auto 0;
    width:min(610px,100%);
}
.stat{
    min-width:150px;
    padding:0 28px;
    border-right:1px solid #202024;
}
.stat:last-child{border:0}
.stat-number{
    font-size:37px;
    font-weight:750;
    letter-spacing:-1px;
}
.stat-label{
    margin-top:13px;
    font-size:10px;
    letter-spacing:2px;
    color:#686871;
}
.scroll{
    margin-top:20px;
    color:#676770;
    font-size:9px;
    letter-spacing:4px;
}
.scroll-line{
    height:49px;
    width:1px;
    background:#202023;
    margin:12px auto 0;
    position:relative;
}
.scroll-line:after{
    content:"";
    position:absolute;
    bottom:0;left:-1px;
    width:3px;height:3px;
    background:#bbb;
    border-radius:50%;
}

section.features{
    position:relative;
    z-index:2;
    padding:110px 24px;
    border-top:1px solid #111;
}
.section-inner{max-width:1100px;margin:auto}
.section-kicker{
    color:#696970;
    letter-spacing:3px;
    font-size:10px;
    text-transform:uppercase;
    margin-bottom:16px;
}
.section-title{font-size:42px;letter-spacing:-2px;margin:0 0 45px}
.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}
.card{
    min-height:190px;
    padding:27px;
    border:1px solid #1e1e21;
    border-radius:17px;
    background:linear-gradient(145deg,#0b0b0c,#060606);
}
.card-icon{font-size:22px;margin-bottom:28px}
.card h3{font-size:17px;margin:0 0 10px}
.card p{font-size:13px;line-height:1.65;color:#74747e;margin:0}

.auth-page{
    display:none;
    min-height:100vh;
    align-items:center;
    justify-content:center;
    padding:35px 16px;
}
.auth-card{
    width:min(100%,490px);
    border:1px solid #252527;
    border-radius:24px;
    background:linear-gradient(180deg,#0d0d0e,#080808);
    padding:45px 40px 38px;
    box-shadow:0 30px 100px rgba(0,0,0,.5);
}
.auth-brand{text-align:center}
.auth-brand .brand-row{
    display:flex;align-items:center;justify-content:center;gap:13px
}
.auth-brand strong{font-size:24px;letter-spacing:3px}
.auth-sub{color:#9696a1;font-size:15px;margin-top:17px}
.tabs{
    display:grid;grid-template-columns:1fr 1fr;
    padding:4px;height:46px;margin:28px 0 35px;
    background:#111113;border:1px solid #29292b;border-radius:13px
}
.tab{
    border:0;border-radius:10px;background:transparent;color:#7d7d88;
    font-weight:650;cursor:pointer
}
.tab.active{background:#222;color:#eee}
.form{display:none}
.form.active{display:block}
.field{margin-bottom:17px}
label{
    display:block;color:#858592;font-size:11px;font-weight:800;
    letter-spacing:1px;margin:0 0 9px
}
.input-wrap{position:relative}
input{
    width:100%;height:50px;padding:0 16px;
    background:#171719;border:1px solid #252527;border-radius:12px;
    color:#eee;outline:none;font-size:14px
}
input:focus{border-color:#444}
input::placeholder{color:#555560}
.eye{
    position:absolute;right:15px;top:50%;transform:translateY(-50%);
    border:0;background:none;color:#81818b;cursor:pointer;font-size:16px
}
.check-row{
    display:flex;align-items:center;gap:9px;margin:20px 0 28px;
    color:#8d8d98;font-size:14px
}
.check-row input{width:18px;height:18px;accent-color:#eee}
.auth-submit{
    width:100%;height:52px;border:0;border-radius:13px;
    background:linear-gradient(#fff,#dedfe4);color:#6f7078;
    font-size:16px;font-weight:650;cursor:pointer;
    box-shadow:0 15px 35px rgba(255,255,255,.08)
}
.auth-submit:hover{filter:brightness(1.05)}
.purchase{
    text-align:center;color:#8d8d97;font-size:14px;margin-top:30px
}
.purchase a{color:#eee;font-weight:700;text-decoration:none}
.back{
    display:block;text-align:center;margin-top:24px;
    color:#75757f;text-decoration:none;font-size:14px
}
.notice{
    display:none;margin:15px 0 0;padding:11px 13px;
    border-radius:10px;border:1px solid #242426;background:#111;
    color:#aaa;font-size:13px;text-align:center
}
.notice.show{display:block}

@media(max-width:800px){
    .nav-center{display:none}
    nav{padding:0 16px}
    .nav-btn.discord{display:none}
    h1{letter-spacing:-3px}
    .hero-copy{font-size:16px}
    .cards{grid-template-columns:1fr}
}
@media(max-width:520px){
    .auth-card{padding:35px 24px}
    .stats{flex-wrap:wrap;gap:25px}
    .stat{border:0;min-width:40%}
    .actions{flex-direction:column;align-items:center}
    .primary,.secondary{width:220px;justify-content:center}
}
