/* =====================================================
   ANGGA NETWORK
   Landing Page v1
   PART 1
   Reset + Variables + Base + Navbar
===================================================== */

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

:root{

    --bg:#07111f;
    --bg2:#0d1728;

    --card:#111d31;

    --primary:#2563eb;
    --primary2:#3b82f6;

    --text:#ffffff;
    --muted:#94a3b8;

    --border:rgba(255,255,255,.08);

    --shadow:0 30px 80px rgba(0,0,0,.35);

    --radius:22px;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Plus Jakarta Sans',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

body::before{

    content:"";

    position:fixed;

    left:-220px;

    top:-220px;

    width:620px;

    height:620px;

    border-radius:50%;

    background:rgba(37,99,235,.18);

    filter:blur(150px);

    pointer-events:none;

    z-index:-1;

}

body::after{

    content:"";

    position:fixed;

    right:-180px;

    bottom:-180px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(59,130,246,.12);

    filter:blur(150px);

    pointer-events:none;

    z-index:-1;

}

a{

    text-decoration:none;

    color:inherit;

}

img{

    max-width:100%;

    display:block;

}

.container{

    width:min(1180px,92%);

    margin:auto;

}

/* ==============================
   NAVBAR
============================== */

.navbar{

    position:sticky;

    top:0;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(7,17,31,.75);

    border-bottom:1px solid var(--border);

}

.navbar-container{

    height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.brand{

    display:flex;

    align-items:center;

    gap:16px;

}

.brand-icon{

    width:56px;

    height:56px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary2)
    );

    font-size:24px;

    box-shadow:0 18px 45px rgba(37,99,235,.35);

}

.brand-text h2{

    font-size:24px;

    font-weight:800;

    letter-spacing:-.5px;

}

.brand-text span{

    color:#60a5fa;

}

.brand-text p{

    margin-top:4px;

    color:var(--muted);

    font-size:13px;

}

.desktop-menu{

    display:flex;

    align-items:center;

    gap:34px;

}

.desktop-menu a{

    color:#dbe4ef;

    font-weight:600;

    transition:.25s;

}

.desktop-menu a:hover{

    color:#60a5fa;

}

.menu-login{

    padding:12px 22px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary2)
    );

    color:#fff!important;

}

.menu-button{

    display:none;

    width:48px;

    height:48px;

    border:none;

    border-radius:14px;

    background:#16243c;

    color:#fff;

    font-size:22px;

    cursor:pointer;

}


/* ==============================
   HERO
============================== */

.hero{

    padding:35px 0 10px;

    position:relative;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.hero-left{

    max-width:620px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(37,99,235,.12);

    border:1px solid rgba(59,130,246,.22);

    color:#7dd3fc;

    font-size:14px;

    font-weight:700;

    margin-bottom:28px;

}

.hero h1{

    font-size:60px;

    line-height:1.08;

    letter-spacing:-1px;

    font-weight:800;

    margin-bottom:18px;

}

.hero h1 span{

    display:block;

    color:#60a5fa;

}

.hero p{

    color:var(--muted);

    font-size:18px;

    line-height:1.7;

    margin-bottom:28px;

    max-width:520px;

}

.hero-action{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:56px;

    padding:0 28px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary2)
    );

    color:#fff;

    font-weight:700;

    box-shadow:0 20px 45px rgba(37,99,235,.35);

    transition:.25s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:56px;

    padding:0 28px;

    border-radius:16px;

    border:1px solid var(--border);

    background:#17263f;

    color:#fff;

    font-weight:600;

    transition:.25s;

}

.btn-secondary:hover{

    background:#20314f;

}

.hero-right{

    display:flex;

    justify-content:flex-end;

}

/* ==============================
   DASHBOARD PREVIEW
============================== */

.dashboard-preview{

    width:100%;

    max-width:470px;

    background:rgba(17,29,49,.88);

    border:1px solid var(--border);

    border-radius:28px;

    padding:28px;

    backdrop-filter:blur(20px);

    box-shadow:var(--shadow);

}

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:28px;

}

.dashboard-header h3{

    font-size:22px;

    font-weight:700;

}

.dashboard-header span{

    padding:8px 14px;

    border-radius:999px;

    background:rgba(34,197,94,.15);

    color:#4ade80;

    font-size:13px;

    font-weight:700;

}

.dashboard-grid{

    display:grid;

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

    gap:18px;

    margin-bottom:28px;

}

.dashboard-card{

    background:#16243c;

    border-radius:18px;

    padding:22px;

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

}

.dashboard-card small{

    display:block;

    color:var(--muted);

    font-size:12px;

    letter-spacing:1px;

    margin-bottom:12px;

}

.dashboard-card h2{

    font-size:30px;

    font-weight:800;

}

.dashboard-chart{

    background:#16243c;

    border-radius:18px;

    padding:20px;

}

.chart-title{

    margin-bottom:18px;

    font-weight:700;

    color:#dbe4ef;

}

.chart-area{

    position:relative;

    height:180px;

    border-radius:14px;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        rgba(37,99,235,.20),
        rgba(37,99,235,.04)
    );

}

.chart-line{

    position:absolute;

    height:3px;

    border-radius:999px;

    background:#60a5fa;

}

.chart-line-1{

    width:210px;

    left:24px;

    bottom:45px;

    transform:rotate(-8deg);

}

.chart-line-2{

    width:120px;

    left:180px;

    bottom:70px;

    transform:rotate(18deg);

}

.chart-line-3{

    width:120px;

    left:285px;

    bottom:48px;

    transform:rotate(-14deg);

}

.chart-dot{

    position:absolute;

    width:10px;

    height:10px;

    border-radius:50%;

    background:#60a5fa;

    box-shadow:0 0 12px #60a5fa;

}

.dot-1{

    left:165px;

    bottom:62px;

}

.dot-2{

    left:278px;

    bottom:95px;

}

.dot-3{

    right:42px;

    bottom:66px;

}

/* =====================================================
   PART 4
   RESPONSIVE MOBILE
===================================================== */

@media (max-width:991px){

    .navbar-container{

        height:72px;

    }

    .desktop-menu{

        display:none;

    }

    .menu-button{

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .brand-text h2{

        font-size:18px;

    }

    .brand-text p{

        font-size:12px;

    }

    .hero{

        padding:50px 0 40px;

    }

    .hero-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .hero-left{

        max-width:100%;

        order:1;

    }

    .hero-right{

        order:2;

        justify-content:center;

    }

    .hero h1{

        font-size:54px;

        line-height:1.05;

    }

    .hero p{

        font-size:18px;

        line-height:1.8;

    }

    .hero-action{

        flex-direction:column;

        align-items:stretch;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

    }

    .dashboard-preview{

        max-width:100%;

    }

    .dashboard-grid{

        gap:14px;

    }

    .dashboard-card{

        padding:18px;

    }

    .dashboard-card h2{

        font-size:28px;

    }

}

/* =====================================================
   PART 5
   FEATURE SECTION
===================================================== */

.feature-section{

    padding:90px 0 60px;

}

.section-title{

    max-width:760px;

    margin:0 auto 55px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    color:#60a5fa;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:14px;

}

.section-title h2{

    font-size:46px;

    line-height:1.2;

    margin-bottom:18px;

    font-weight:800;

}

.section-title p{

    color:var(--muted);

    font-size:18px;

    line-height:1.8;

}

.feature-list{

    display:flex;

    flex-direction:column;

    gap:28px;

    margin-top:15px;

}

.feature-card{

    display:flex;

    align-items:center;

    gap:24px;

    padding:28px;

    border-radius:24px;

    background:rgba(17,29,49,.85);

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

    transition:.3s;

}

.feature-card:hover{

    transform:translateY(-4px);

    border-color:rgba(59,130,246,.35);

    box-shadow:0 25px 60px rgba(0,0,0,.25);

}

.feature-icon{

    width:82px;

    height:82px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    font-size:34px;

    background:linear-gradient(
        135deg,
        rgba(37,99,235,.25),
        rgba(59,130,246,.08)
    );

}

.feature-content{

    flex:1;

}

.feature-content h3{

    font-size:28px;

    margin-bottom:10px;

    font-weight:700;

}

.feature-content p{

    color:var(--muted);

    line-height:1.8;

    font-size:17px;

}

.feature-arrow{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#182946;

    color:#60a5fa;

    font-size:24px;

    flex-shrink:0;

    transition:.3s;

}

.feature-card:hover .feature-arrow{

    background:#2563eb;

    color:#fff;

    transform:translateX(4px);

}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width:992px){

    .desktop-menu{

        display:none;

    }

    .menu-button{

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .hero{

        padding:70px 0 50px;

    }

    .hero-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .hero-right{

        justify-content:center;

    }

    .dashboard-preview{

        max-width:520px;

        width:100%;

    }

}

@media (max-width:768px){

    .brand-text h2{

        font-size:18px;

    }

    .brand-text p{

        font-size:12px;

    }

    .hero{

        padding:45px 0;

    }

    .hero-badge{

        font-size:13px;

        padding:9px 16px;

    }

.hero h1{

    font-size:46px;

    line-height:1.1;

}

.hero p{

    font-size:17px;

    line-height:1.6;

    margin-bottom:24px;

}

    .hero-action{

        flex-direction:column;

        align-items:stretch;

    }

    .btn-primary,

    .btn-secondary{

        width:100%;

    }

    .dashboard-preview{

        padding:24px;

        border-radius:26px;

    }

    .stat-grid{

        grid-template-columns:1fr 1fr;

    }

}

/* =====================================
   FEATURE MOBILE
===================================== */

@media (max-width:768px){

.feature-section{

    padding:70px 0 20px;

}

    .section-title{

        margin-bottom:45px;

    }

    .section-title h2{

        font-size:38px;

        line-height:1.18;

    }

    .section-title p{

        font-size:17px;

        line-height:1.8;

    }

    .feature-grid{

        gap:24px;

    }

    .feature-card{

        display:block;

        padding:28px;

    }

    .feature-icon{

        width:88px;

        height:88px;

        margin-bottom:24px;

        font-size:42px;

    }

    .feature-content{

        width:100%;

    }

    .feature-content h3{

        font-size:34px;

        margin-bottom:18px;

    }

    .feature-content p{

        font-size:18px;

        line-height:1.9;

    }

    .feature-arrow{

        margin-top:26px;

        margin-left:auto;

    }

}

/* =====================================
   DASHBOARD SECTION
===================================== */

.dashboard-section{

    padding-top:10px;

    padding-bottom:40px;

}

.dashboard-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:start;

}

.dashboard-info span{

    color:#60a5fa;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.dashboard-info h2{

    margin:20px 0;

    font-size:52px;

    line-height:1.1;

}

.dashboard-info p{

    color:var(--muted);

    font-size:18px;

    line-height:1.9;

    margin-bottom:36px;

}

.dashboard-info{

    background:rgba(17,29,49,.88);

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

    border-radius:28px;

    padding:40px;

    backdrop-filter:blur(20px);

    box-shadow:var(--shadow);

}

.dashboard-list{

    list-style:none;

    padding:0;

    margin:0;

}

.dashboard-list li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 0;

    color:#dbe4ef;

    font-size:17px;

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

}

.dashboard-list li:last-child{

    border-bottom:none;

}

.dashboard-image{

    display:flex;

    justify-content:center;

}

.dashboard-image .dashboard-preview{

    width:100%;

}

/* =====================================
   CTA
===================================== */

.cta-section{

    padding:0 0 90px;

}

.cta-box{

    border-radius:30px;

    background:linear-gradient(
        135deg,
        rgba(37,99,235,.18),
        rgba(59,130,246,.08)
    );

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

    padding:70px 50px;

    text-align:center;

}

.cta-box span{

    color:#60a5fa;

    font-weight:700;

    letter-spacing:2px;

}

.cta-box h2{

    font-size:50px;

    line-height:1.15;

    margin:22px 0;

}

.cta-box p{

    max-width:700px;

    margin:0 auto 40px;

    color:var(--muted);

    font-size:18px;

    line-height:1.9;

}

.cta-action{

    margin-top:40px;

    display:flex;

    justify-content:center;

}

.cta-action .btn-secondary{

    min-width:240px;

}

/* =====================================
   FOOTER
===================================== */

.footer{

    padding:40px 0;

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

}

.footer p{

    color:var(--muted);

    text-align:center;

    font-size:15px;

}

/* =====================================
   MOBILE FINAL
===================================== */

@media (max-width:768px){

    .dashboard-wrapper{

        grid-template-columns:1fr;

        gap:45px;

    }

.dashboard-info h2{

    margin:18px 0 20px;

    font-size:48px;

    line-height:1.12;

}

.dashboard-info p{

    color:var(--muted);

    font-size:18px;

    line-height:1.8;

    margin-bottom:28px;

}

    .cta-box{

        padding:45px 28px;

    }

    .cta-box h2{

        font-size:34px;

    }

    .cta-box p{

        font-size:17px;

    }

}

@media (max-width:480px){

    .hero h1{

        font-size:46px;

    }

    .section-title h2{

        font-size:32px;

    }

    .dashboard-info h2{

        font-size:34px;

    }

    .cta-box h2{

        font-size:30px;

    }

}

/* =====================================
   Dashboard Status Card Fix
===================================== */

.stat-grid{

    display:grid;

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

    gap:18px;

    margin-bottom:24px;

}

.stat-card{

    background:#16243c;

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

    border-radius:18px;

    padding:22px;

}

.stat-card small{

    display:block;

    color:var(--muted);

    font-size:12px;

    margin-bottom:10px;

    letter-spacing:1px;

}

.stat-card h2{

    font-size:30px;

    font-weight:800;

}

.live-badge{

    padding:8px 14px;

    border-radius:999px;

    background:rgba(34,197,94,.15);

    color:#4ade80;

    font-size:13px;

    font-weight:700;

}

.chart{

    height:180px;

    border-radius:16px;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        rgba(37,99,235,.18),
        rgba(37,99,235,.05)
    );

    position:relative;

}

.chart .chart-line{

    position:absolute;

    left:20px;

    right:20px;

    bottom:55px;

    height:3px;

    background:#60a5fa;

    border-radius:999px;

    transform:rotate(-8deg);

}
