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

:root{
    --bg:#07090f;
    --card:rgba(255,255,255,0.07);
    --border:rgba(255,255,255,0.09);
    --text:#fff;
    --muted:#9ca3af;
    --accent:#00d9ff;
    --accent2:#8b5cf6;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:linear-gradient(180deg,#07090f,#0d111b);
    color:var(--text);
    overflow-x:hidden;
    min-height:100vh;
}

.bg-glow{
    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;
}

.glow1{
    width:400px;
    height:400px;
    background:#00d9ff22;
    top:-100px;
    left:-100px;
}

.glow2{
    width:500px;
    height:500px;
    background:#8b5cf622;
    bottom:-120px;
    right:-120px;
}

.glass{
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(18px);
    border:1px solid var(--border);
    box-shadow:0 15px 60px rgba(0,0,0,0.35);
}

.navbar{
    width:92%;
    max-width:1200px;
    margin:30px auto;
    padding:18px 28px;
    border-radius:24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:1.3rem;
    font-weight:800;
}

.logo span{
    color:var(--accent);
}

nav{
    display:flex;
    gap:22px;
}

nav a{
    color:var(--muted);
    text-decoration:none;
    transition:.25s;
}

nav a:hover{
    color:#fff;
}

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px;
}

.hero-content{
    max-width:900px;
    animation:fadeUp 1s ease;
}

.tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:28px;
    background:#00d9ff11;
    border:1px solid #00d9ff33;
    color:#8cefff;
}

.hero h1{
    font-size:5rem;
    line-height:1;
    letter-spacing:-3px;
}

.hero h1 span{
    background:linear-gradient(90deg,var(--accent),var(--accent2));
    -webkit-background-clip:text;
    color:transparent;
}

.hero p{
    margin:28px auto;
    color:var(--muted);
    max-width:700px;
    line-height:1.8;
    font-size:1.1rem;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    padding:16px 28px;
    border-radius:18px;
    border:none;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

.primary{
    background:linear-gradient(135deg,var(--accent),var(--accent2));
}

.secondary{
    background:rgba(255,255,255,0.06);
    border:1px solid var(--border);
}

.btn:hover{
    transform:translateY(-5px) scale(1.03);
}

.status-section,
.features,
.dashboard-preview{
    width:92%;
    max-width:1200px;
    margin:auto;
    padding:40px 0;
}

.status-card,
.dashboard-card{
    border-radius:30px;
    padding:34px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.status-live{
    display:flex;
    align-items:center;
    gap:12px;
    color:#86ffad;
    font-weight:700;
}

.pulse{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#22c55e;
    animation:pulse 1.5s infinite;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:3rem;
}

.section-title p{
    color:var(--muted);
    margin-top:10px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.feature-card{
    border-radius:28px;
    padding:34px;
    transition:.25s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-icon{
    font-size:2rem;
    margin-bottom:20px;
}

.feature-card p{
    color:var(--muted);
    margin-top:12px;
    line-height:1.7;
}

footer{
    text-align:center;
    padding:40px;
    color:var(--muted);
}

.login-wrapper{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.login-card{
    max-width:520px;
    width:100%;
    border-radius:30px;
    padding:42px;
    text-align:center;
}

.login-card p{
    margin:20px 0 30px;
    color:var(--muted);
    line-height:1.7;
}

.oauth-note{
    margin-top:25px;
    color:var(--muted);
    font-size:.95rem;
}

.dashboard-layout{
    width:92%;
    max-width:1200px;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:24px;
}

.panel{
    border-radius:30px;
    padding:30px;
}

.panel h2{
    margin-bottom:28px;
}

.control-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.toggle{
    border:none;
    padding:12px 18px;
    border-radius:14px;
    background:#232937;
    color:#fff;
}

.toggle.active{
    background:linear-gradient(135deg,var(--accent),var(--accent2));
}

@keyframes pulse{
    0%{transform:scale(1);opacity:1;}
    50%{transform:scale(1.4);opacity:.5;}
    100%{transform:scale(1);opacity:1;}
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){
    .hero h1{
        font-size:3rem;
    }

    .navbar{
        flex-direction:column;
        gap:18px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }
}
