:root{

    --bg:#050608;
    --bg-soft:#0b0f14;
    --bg-card:rgba(17,22,30,.78);

    --border:rgba(255,255,255,.08);

    --text:#ffffff;
    --text-soft:#aeb8c7;

    --red:#ff3b5c;
    --orange:#ffb648;
    --green:#2ed573;
    --blue:#3ba8ff;

    --glass:blur(18px);

    --radius:22px;

    --shadow:
    0 15px 60px rgba(0,0,0,.45);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

::selection{

    background:var(--red);
    color:#fff;

}

img{

    max-width:100%;

}

a{

    text-decoration:none;

    transition:.25s;

}

button{

    transition:.25s;

}

#particles-js{

    position:fixed;

    inset:0;

    z-index:-3;

    opacity:.18;

}

.hero{

    min-height:100vh;

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

}

.hero-bg{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center;

    filter:grayscale(100%) brightness(.35);

    transform:scale(1.03);

    z-index:-2;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background: radial-gradient(circle at top right, rgba(255, 59, 92, 0.4), transparent 28%), linear-gradient( rgba(5, 6, 8, 0.16), rgba(5, 6, 8, 0.65) 55%, rgba(5, 6, 8, 0.33));

    z-index:-1;

}

.navbar{

    padding:26px 0;

    transition:.35s;

    z-index:100;

}

.navbar.shadow{

    background:rgba(7,9,13,.88);

    backdrop-filter:blur(20px);

    box-shadow:0 10px 35px rgba(0,0,0,.35);

}

.logo{

    height:48px;

}

.navbar-nav{

    gap:18px;

}

.nav-link{

    color:#e6e6e6 !important;

    font-weight:500;

    opacity:.82;

}

.nav-link:hover{

    opacity:1;

    color:#fff !important;

}

.nav-btn{

    border-radius:14px;

    padding:11px 18px;

}

.hero-content{

    flex:1;

    display:flex;

    align-items:center;

    padding-top:70px;

    padding-bottom:120px;

}

.hero-left{

    max-width:760px;

}

.hero-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(255,59,92,.12);

    color:var(--red);

    font-size:.82rem;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:28px;

}

.hero-left h1{

    font-size:5rem;

    line-height:1;

    font-weight:900;

    letter-spacing:-3px;

    margin-bottom:28px;

}

.hero-left h1 .number{

    color:var(--red);

}

.hero-left h1 .danger{

    display:block;

    color:var(--red);

}

.hero-left p{

    max-width:640px;

    font-size:1.22rem;

    color:var(--text-soft);

    line-height:1.8;

    margin-bottom:42px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn{

    border-radius:15px;

    font-weight:700;

    padding:15px 28px;

}

.btn-danger{

    background:var(--red);

    border:none;

    box-shadow:0 15px 40px rgba(255,59,92,.35);

}

.btn-danger:hover{

    transform:translateY(-3px);

}

.btn-outline-light{

    border-color:rgba(255,255,255,.18);

}

.glass{

    background:var(--bg-card);

    backdrop-filter:var(--glass);

    border:1px solid var(--border);

    box-shadow:var(--shadow);

}

.score-card{

    border-radius:28px;

    padding:36px;

}

.score-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:var(--text-soft);

    margin-bottom:18px;

    font-size:.9rem;

}

.score-value{

    display:flex;

    align-items:flex-end;

    margin-bottom:18px;

}

.score-value .big{

    font-size:5rem;

    line-height:1;

    font-weight:900;

    color:var(--red);

}

.score-value .small{

    font-size:2rem;

    margin-left:6px;

    margin-bottom:8px;

    color:var(--text-soft);

}

.score-progress{

    height:10px;

    margin:22px 0;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    overflow:hidden;

}

.score-card p{

    color:var(--text-soft);

    line-height:1.7;

}

.badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:999px;

    font-size:.75rem;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

}

.badge-critical{

    background:rgba(255,59,92,.16);

    color:var(--red);

}

.badge-warning{

    background:rgba(255,182,72,.16);

    color:var(--orange);

}

.badge-info{

    background:rgba(59,168,255,.15);

    color:var(--blue);

}

.status-section{

    position:relative;

    margin-top:-85px;

    z-index:5;

}

.status-card{

    position:relative;

    height:100%;

    padding:28px;

    border-radius:24px;

    backdrop-filter:var(--glass);

    background:rgba(18,22,30,.88);

    border:1px solid rgba(255,255,255,.08);

    overflow:hidden;

    transition:.35s;

}

.status-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

}

.status-card.critical::before{

    background:var(--red);

}

.status-card.warning::before{

    background:var(--orange);

}

.status-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.status-card .icon{

    width:64px;

    height:64px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:24px;

    font-size:1.5rem;

}

.status-card.critical .icon{

    background:rgba(255,59,92,.12);

    color:var(--red);

}

.status-card.warning .icon{

    background:rgba(255,182,72,.12);

    color:var(--orange);

}

.status-card small{

    display:block;

    color:var(--text-soft);

    margin-bottom:10px;

    font-size:.88rem;

}

.status-card h2{

    font-size:2.6rem;

    font-weight:900;

    margin-bottom:8px;

}

.status-card span{

    display:block;

    color:var(--text-soft);

}

.status-card label{

    margin-top:22px;

    display:inline-flex;

    padding:7px 15px;

    border-radius:999px;

    font-size:.72rem;

    font-weight:800;

    letter-spacing:1px;

}

.status-card.critical label{

    background:rgba(255,59,92,.16);

    color:var(--red);

}

.status-card.warning label{

    background:rgba(255,182,72,.16);

    color:var(--orange);

}

.overview-section{

    padding:120px 0 90px;

}

.overview-box{

    background:#ffffff;

    border-radius:32px;

    padding:70px;

    color:#10131a;

    box-shadow:0 35px 70px rgba(0,0,0,.25);

}

.overview-title{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:60px;

}

.overview-title h3{

    margin:0;

    font-weight:900;

    font-size:2rem;

    letter-spacing:-1px;

}

.overview-title i{

    color:#9aa2af;

    font-size:1.4rem;

}

.overview-item{

    text-align:center;

}

.overview-item .value{

    font-size:4rem;

    font-weight:900;

    line-height:1;

    margin-bottom:18px;

}

.overview-item strong{

    display:block;

    font-size:1.05rem;

    margin-bottom:10px;

}

.overview-item span{

    color:#6d7582;

    font-size:.95rem;

}

.search-section{

    padding:40px 0 120px;

}

.search-box{

    background:linear-gradient(135deg,#10141b,#0b0f14);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:55px;

    box-shadow:var(--shadow);

}

.search-title{

    display:flex;

    align-items:center;

    gap:22px;

    margin-bottom:35px;

}

.search-icon{

    width:72px;

    height:72px;

    border-radius:20px;

    background:rgba(255,59,92,.15);

    color:var(--red);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.8rem;

}

.search-title small{

    color:var(--text-soft);

    letter-spacing:2px;

}

.search-title h2{

    font-size:2.4rem;

    font-weight:900;

    margin-top:4px;

}

.search-box .input-group{

    margin-bottom:25px;

}

.search-box .form-control{

    background:#141923;

    border:none;

    color:#fff;

    padding:18px 22px;

}

.search-box .form-control::placeholder{

    color:#8691a3;

}

.btn-search{

    background:var(--red);

    color:#fff;

    border:none;

    padding:0 28px;

}

.timeline-section{

    padding:120px 0;

    position:relative;

}

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}

.section-header span{

    display:inline-block;

    color:var(--red);

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:16px;

}

.section-header h2{

    font-size:3.2rem;

    font-weight:900;

    margin-bottom:20px;

    letter-spacing:-2px;

}

.section-header p{

    color:var(--text-soft);

    line-height:1.8;

    font-size:1.05rem;

}

.timeline{

    position:relative;

    max-width:900px;

    margin:auto;

    padding-left:60px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:20px;

    top:0;

    width:2px;

    height:100%;

    background:linear-gradient(
        transparent,
        rgba(255,59,92,.7),
        transparent
    );

}

.timeline-item{

    position:relative;

    margin-bottom:55px;

}

.timeline-item::before{

    content:"";

    position:absolute;

    left:-50px;

    top:22px;

    width:14px;

    height:14px;

    border-radius:50%;

    background:var(--red);

    box-shadow:0 0 0 6px rgba(255,59,92,.18);

}

.timeline-date{

    color:var(--text-soft);

    font-size:.85rem;

    margin-bottom:12px;

    font-weight:600;

    letter-spacing:1px;

}

.timeline-card{

    background:rgba(17,22,30,.85);

    backdrop-filter:var(--glass);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:30px;

    transition:.35s;

}

.timeline-card:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.timeline-card h4{

    margin:18px 0 15px;

    font-size:1.45rem;

    font-weight:800;

}

.timeline-card p{

    color:var(--text-soft);

    line-height:1.75;

    margin-bottom:20px;

}

.timeline-card a{

    color:var(--red);

    font-weight:700;

}

.about-section{

    padding:130px 0;

    background:rgba(255,255,255,.02);

}

.section-label{

    display:inline-block;

    margin-bottom:20px;

    color:var(--red);

    letter-spacing:2px;

    font-weight:800;

}

.about-section h2{

    font-size:3rem;

    font-weight:900;

    line-height:1.15;

    margin-bottom:28px;

    letter-spacing:-2px;

}

.about-section p{

    color:var(--text-soft);

    line-height:1.9;

    margin-bottom:20px;

}

.feature-list{

    list-style:none;

    padding:0;

    margin:35px 0 0;

}

.feature-list li{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:18px;

    color:#fff;

}

.feature-list i{

    width:34px;

    height:34px;

    border-radius:50%;

    background:rgba(46,213,115,.12);

    color:var(--green);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:.9rem;

}

.methodology-card{

    padding:38px;

    border-radius:26px;

}

.method-item{

    display:flex;

    align-items:flex-start;

    gap:22px;

    padding:22px 0;

    border-bottom:1px solid rgba(255,255,255,.07);

}

.method-item:last-child{

    border-bottom:none;

}

.method-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    background:rgba(255,59,92,.12);

    color:var(--red);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.4rem;

}

.method-item strong{

    display:block;

    margin-bottom:8px;

    font-size:1.05rem;

}

.method-item p{

    margin:0;

    color:var(--text-soft);

}

.cta-section{

    padding:120px 0 140px;

}

.cta-box{

    position:relative;

    overflow:hidden;

    border-radius:32px;

    padding:80px 70px;

    background:
    radial-gradient(circle at top right,
    rgba(255,59,92,.25),
    transparent 35%),
    linear-gradient(135deg,#151922,#0a0d12);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 35px 80px rgba(0,0,0,.45);

    text-align:center;

}

.cta-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.03),
    transparent);

    pointer-events:none;

}

.cta-box span{

    display:inline-block;

    color:var(--red);

    letter-spacing:2px;

    font-size:.85rem;

    font-weight:800;

    margin-bottom:20px;

}

.cta-box h2{

    max-width:900px;

    margin:0 auto 25px;

    font-size:3rem;

    line-height:1.15;

    font-weight:900;

    letter-spacing:-2px;

}

.cta-box p{

    max-width:760px;

    margin:0 auto;

    color:var(--text-soft);

    line-height:1.9;

    font-size:1.05rem;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:45px;

}

.footer{

    background:#040506;

    border-top:1px solid rgba(255,255,255,.06);

    padding:80px 0 35px;

}

.footer-logo{

    height:52px;

    margin-bottom:25px;

}

.footer h5{

    margin-bottom:22px;

    font-size:1.1rem;

    font-weight:800;

}

.footer-text{

    color:var(--text-soft);

    line-height:1.8;

    max-width:420px;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:var(--text-soft);

}

.footer-links a:hover{

    color:#fff;

}

.source-list{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:20px;

}

.source-list span{

    padding:10px 15px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.06);

    color:var(--text-soft);

    font-size:.85rem;

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:50px 0 25px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    color:#7f8794;

    font-size:.9rem;

}

@keyframes pulseCritical{

    0%{

        box-shadow:0 0 0 0 rgba(255,59,92,.45);

    }

    70%{

        box-shadow:0 0 0 18px rgba(255,59,92,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(255,59,92,0);

    }

}

.status-card.critical .icon{

    animation:pulseCritical 2.5s infinite;

}

.glass{

    transition:.35s;

}

.glass:hover{

    transform:translateY(-6px);

}

.timeline-card:hover h4{

    color:var(--red);

}

.btn:hover{

    transform:translateY(-3px);

}

.btn-search:hover{

    background:#ff274c;

}

html::-webkit-scrollbar{

    width:11px;

}

html::-webkit-scrollbar-track{

    background:#0a0b0d;

}

html::-webkit-scrollbar-thumb{

    background:#2d3138;

    border-radius:999px;

}

html::-webkit-scrollbar-thumb:hover{

    background:#444a54;

}

@media (max-width:1200px){

    .hero-left h1{

        font-size:4.2rem;

    }

    .score-card{

        margin-top:50px;

    }

}

@media (max-width:992px){

    .navbar{

        padding:18px 0;

    }

    .navbar-collapse{

        margin-top:20px;

        background:rgba(10,12,16,.96);

        border-radius:20px;

        padding:20px;

        backdrop-filter:blur(20px);

    }

    .navbar-nav{

        gap:6px;

    }

    .hero{

        min-height:auto;

    }

    .hero-content{

        padding-top:60px;

        padding-bottom:80px;

    }

    .hero-left{

        text-align:center;

        margin:0 auto;

    }

    .hero-left h1{

        font-size:3.5rem;

    }

    .hero-left p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .score-card{

        margin-top:60px;

    }

    .status-section{

        margin-top:-40px;

    }

    .overview-box{

        padding:50px 35px;

    }

    .overview-title{

        flex-direction:column;

        align-items:flex-start;

        gap:15px;

    }

    .overview-title h3{

        font-size:1.8rem;

    }

    .search-box{

        padding:40px 30px;

    }

    .search-title{

        flex-direction:column;

        text-align:center;

    }

    .search-title h2{

        font-size:2rem;

    }

    .timeline{

        padding-left:35px;

    }

    .timeline::before{

        left:10px;

    }

    .timeline-item::before{

        left:-31px;

    }

    .about-section h2{

        font-size:2.3rem;

    }

    .cta-box{

        padding:60px 35px;

    }

    .cta-box h2{

        font-size:2.3rem;

    }

    .footer{

        text-align:center;

    }

    .footer-text{

        margin:0 auto;

    }

    .source-list{

        justify-content:center;

    }

    .footer-bottom{

        justify-content:center;

        text-align:center;

    }

}

@media (max-width:768px){

    .hero-left h1{

        font-size:2.9rem;

        letter-spacing:-1px;

    }

    .hero-label{

        font-size:.72rem;

    }

    .hero-left p{

        font-size:1.05rem;

    }

    .btn{

        width:100%;

    }

    .score-card{

        padding:28px;

    }

    .score-value .big{

        font-size:4rem;

    }

    .status-card{

        padding:24px;

    }

    .overview-box{

        padding:35px 25px;

    }

    .overview-item{

        margin-bottom:35px;

    }

    .overview-item .value{

        font-size:3rem;

    }

    .section-header h2{

        font-size:2.3rem;

    }

    .timeline-card{

        padding:24px;

    }

    .about-section{

        padding:90px 0;

    }

    .methodology-card{

        padding:25px;

    }

    .method-item{

        flex-direction:column;

        align-items:flex-start;

    }

}

@media (max-width:576px){

    .hero-left h1{

        font-size:2.3rem;

    }

    .hero-content{

        padding-top:40px;

    }

    .score-card{

        border-radius:20px;

    }

    .score-value .big{

        font-size:3.3rem;

    }

    .status-card h2{

        font-size:2rem;

    }

    .search-box{

        padding:28px 20px;

    }

    .search-box .form-control{

        font-size:1rem;

    }

    .timeline{

        padding-left:20px;

    }

    .timeline::before{

        display:none;

    }

    .timeline-item::before{

        display:none;

    }

    .cta-box{

        padding:45px 22px;

    }

    .cta-box h2{

        font-size:1.8rem;

    }

    .footer{

        padding-top:60px;

    }

}

.form-page{

    padding:120px 0;

    min-height:100vh;

}

.form-card{

    max-width:850px;

    margin:auto;

    padding:45px;

    border-radius:28px;

    background:rgba(18,22,30,.88);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

}

.form-card .form-control{

    background:#10141b;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    padding:15px;

}

.form-card textarea{

    min-height:220px;

}

.form-card .form-control:focus{

    background:#10141b;

    color:#fff;

    border-color:#ff3b5c;

    box-shadow:none;

}

.form-card .alert{

    border-radius:18px;

}