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

:root{
    --bg:#050505;
    --panel:#0b0b0b;
    --border:#1a1a1a;
    --text:#ffffff;
    --muted:#8d8d8d;
    --discord:#5865F2;
}

html,body{
    width:100%;
    height:100%;
    overflow:hidden;
    background:var(--bg);
    color:var(--text);
    font-family:Inter,sans-serif;
}

canvas{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    z-index:0;
}

.page{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}

.panel{
    width:min(1000px,90vw);
    background:var(--panel);
    border:1px solid var(--border);
}

.header{
    border-bottom:1px solid var(--border);
    padding:22px 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
}

.logo{
    width:48px;
    height:48px;
    object-fit:contain;
}

.brand h1{
    font-size:14px;
    font-weight:800;
    letter-spacing:.18em;
}

.brand p{
    margin-top:4px;
    color:var(--muted);
    font-size:13px;
}

.content{
    padding:48px 48px 40px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.hero{
    font-size:clamp(2.4rem,5vw,4.8rem);
    font-weight:800;
    line-height:0.95;
    letter-spacing:-0.06em;
    max-width:700px;
}

.description{
    margin-top:28px;
    max-width:620px;
    font-size:1rem;
    line-height:1.75;
    color:#b5b5b5;
}

.features{
    margin-top:40px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
}

.feature{
    border:1px solid var(--border);
    padding:12px 14px;
    color:#d0d0d0;
    font-size:.9rem;
    font-weight:600;
}

.actions{
    margin-top:40px;
    display:flex;
    justify-content:center;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:14px 20px;
    font-weight:700;
    transition:.15s ease;
    border:1px solid transparent;
}

.btn-primary{
    background:var(--discord);
    color:white;
}

.btn-primary:hover{
    filter:brightness(1.08);
}

.btn-secondary{
    background:transparent;
    color:white;
    border-color:var(--border);
}

.btn-secondary:hover{
    border-color:#2a2a2a;
    background:#111;
}

.footer{
    margin-top:32px;
    color:#666;
    font-size:.85rem;
}

.scanline{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:1;
    background:
    repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 2px,
        rgba(255,255,255,.012) 3px
    );
}

@media(max-width:900px){

    .page{
        padding:20px;
        justify-content:center;
    }

    .content{
        padding:32px;
    }

    .hero{
        font-size:2.5rem;
    }

    .actions{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }
}
