:root{
    --bg:#030914;
    --bg2:#071321;
    --panel:rgba(9,24,40,.78);
    --panel2:rgba(11,31,51,.68);
    --line:rgba(92,180,255,.16);
    --cyan:#3bdcff;
    --blue:#4d8dff;
    --green:#40e6a0;
    --red:#ff5577;
    --amber:#ffc857;
    --text:#eaf5ff;
    --muted:#8da7bd;
}

*{
    scroll-behavior:smooth;
}

body{
    background:
      radial-gradient(circle at 15% 10%,rgba(35,113,180,.15),transparent 30%),
      radial-gradient(circle at 90% 20%,rgba(31,82,150,.13),transparent 25%),
      var(--bg);
    color:var(--text);
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.navbar{
    background:rgba(3,9,20,.72);
    backdrop-filter:blur(20px);
    border-bottom:1px solid var(--line);
}

.navbar-brand{
    font-weight:800;
    letter-spacing:2px;
    color:#fff!important;
}

.nav-link{
    color:#9fb5c8!important;
    font-size:.88rem;
}

.nav-link:hover{
    color:var(--cyan)!important;
}

.btn-premium{
    background:linear-gradient(135deg,#2dcdf3,#496eff);
    border:0;
    color:white;
    border-radius:12px;
    padding:12px 22px;
    font-weight:700;
    box-shadow:0 10px 35px rgba(59,220,255,.15);
}

.btn-premium:hover{
    color:white;
    transform:translateY(-2px);
}

.btn-outline-premium{
    border:1px solid rgba(59,220,255,.35);
    color:var(--cyan);
    border-radius:12px;
    padding:12px 22px;
}

.btn-outline-premium:hover{
    background:rgba(59,220,255,.08);
    color:#fff;
}

.hero{
    min-height:92vh;
    display:flex;
    align-items:center;
    position:relative;
    padding-top:90px;
}

.hero-grid{
    position:absolute;
    inset:0;
    background-image:
      linear-gradient(rgba(60,180,255,.035) 1px,transparent 1px),
      linear-gradient(90deg,rgba(60,180,255,.035) 1px,transparent 1px);
    background-size:60px 60px;
    mask-image:linear-gradient(to bottom,black,transparent);
}

.eyebrow{
    color:var(--cyan);
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:.72rem;
    font-weight:800;
}

.hero h1{
    font-size:clamp(3rem,6vw,6.8rem);
    line-height:.95;
    font-weight:850;
    letter-spacing:-4px;
}

.hero h1 span{
    background:linear-gradient(90deg,#fff,#69dfff,#6d8cff);
    -webkit-background-clip:text;
    color:transparent;
}

.hero-copy{
    max-width:720px;
    color:#91a9bd;
    font-size:1.12rem;
    line-height:1.8;
}

.hero-console{
    position:relative;
    height:480px;
    border:1px solid var(--line);
    background:linear-gradient(145deg,rgba(10,27,45,.82),rgba(3,11,20,.88));
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 30px 100px rgba(0,0,0,.45);
}

.radar{
    width:330px;
    height:330px;
    border:1px solid rgba(59,220,255,.25);
    border-radius:50%;
    position:absolute;
    top:60px;
    left:50%;
    transform:translateX(-50%);
    background:
      radial-gradient(circle,transparent 28%,rgba(59,220,255,.035) 29%,transparent 30%),
      radial-gradient(circle,transparent 49%,rgba(59,220,255,.05) 50%,transparent 51%);
}

.radar:before,
.radar:after{
    content:"";
    position:absolute;
    inset:50%;
    background:rgba(59,220,255,.18);
}

.radar:before{
    width:1px;
    height:100%;
    transform:translate(-50%,-50%);
}

.radar:after{
    width:100%;
    height:1px;
    transform:translate(-50%,-50%);
}

.radar-sweep{
    position:absolute;
    width:50%;
    height:50%;
    left:50%;
    top:50%;
    transform-origin:0 0;
    background:linear-gradient(45deg,rgba(59,220,255,.28),transparent 65%);
    clip-path:polygon(0 0,100% 0,0 100%);
    animation:sweep 4s linear infinite;
}

@keyframes sweep{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
}

.target{
    position:absolute;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--cyan);
    box-shadow:0 0 18px var(--cyan);
    animation:pulse 1.8s infinite;
}

.t1{top:32%;left:67%}
.t2{top:62%;left:35%}
.t3{top:42%;left:28%}
.t4{top:70%;left:72%;background:var(--red);box-shadow:0 0 18px var(--red)}

@keyframes pulse{
    0%,100%{transform:scale(.8);opacity:.7}
    50%{transform:scale(1.7);opacity:1}
}

.console-top{
    position:absolute;
    top:18px;
    left:20px;
    right:20px;
    display:flex;
    justify-content:space-between;
    font-size:.7rem;
    letter-spacing:1px;
    color:#7592a9;
}

.status{
    color:var(--green);
}

.console-bottom{
    position:absolute;
    bottom:0;
    width:100%;
    padding:18px;
    background:linear-gradient(transparent,rgba(2,8,16,.95));
}

.metric{
    font-size:1.2rem;
    font-weight:800;
}

.metric small{
    display:block;
    font-size:.62rem;
    color:#6e879c;
    font-weight:500;
}

.section{
    padding:110px 0;
}

.section-dark{
    background:rgba(255,255,255,.012);
    border-top:1px solid rgba(255,255,255,.025);
    border-bottom:1px solid rgba(255,255,255,.025);
}

.section-title{
    font-size:clamp(2rem,4vw,4rem);
    font-weight:800;
    letter-spacing:-2px;
}

.section-subtitle{
    color:var(--muted);
    max-width:750px;
    line-height:1.8;
}

.glass{
    background:linear-gradient(145deg,rgba(13,34,54,.75),rgba(5,16,28,.72));
    border:1px solid var(--line);
    border-radius:22px;
    transition:.3s ease;
}

.glass:hover{
    transform:translateY(-5px);
    border-color:rgba(59,220,255,.38);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.capability-card{
    padding:28px;
    height:100%;
}

.icon-box{
    width:50px;
    height:50px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--cyan);
    background:rgba(59,220,255,.08);
    border:1px solid rgba(59,220,255,.13);
    font-size:1.3rem;
}

.capability-card h5{
    margin-top:20px;
    font-weight:750;
}

.capability-card p{
    color:#7f98ad;
    line-height:1.7;
    font-size:.9rem;
}

.tag{
    display:inline-block;
    padding:5px 9px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:50px;
    color:#88a4b9;
    font-size:.68rem;
    margin:3px;
}

.dashboard{
    padding:18px;
    border-radius:22px;
    background:#040d17;
    border:1px solid var(--line);
}

.dashboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid var(--line);
    padding-bottom:14px;
    margin-bottom:14px;
}

.live-dot{
    width:7px;
    height:7px;
    background:var(--green);
    border-radius:50%;
    display:inline-block;
    box-shadow:0 0 12px var(--green);
}

.coverage-map{
    height:330px;
    border-radius:16px;
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(circle at 50% 50%,rgba(59,220,255,.14),transparent 17%),
      radial-gradient(circle at 25% 40%,rgba(59,220,255,.07),transparent 25%),
      radial-gradient(circle at 75% 65%,rgba(255,85,119,.07),transparent 25%),
      #06111d;
}

.coverage-map:before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
      linear-gradient(rgba(80,160,220,.05) 1px,transparent 1px),
      linear-gradient(90deg,rgba(80,160,220,.05) 1px,transparent 1px);
    background-size:40px 40px;
}

.map-radar{
    position:absolute;
    width:100px;
    height:100px;
    border:1px solid rgba(59,220,255,.4);
    border-radius:50%;
}

.radar-a{left:22%;top:35%}
.radar-b{left:60%;top:23%}
.radar-c{left:70%;top:65%}

.blindspot{
    position:absolute;
    width:75px;
    height:75px;
    border-radius:50%;
    border:1px dashed rgba(255,85,119,.7);
    background:rgba(255,85,119,.05);
    left:42%;
    top:57%;
}

.track{
    position:absolute;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--cyan);
    box-shadow:0 0 15px var(--cyan);
}

.track-a{left:55%;top:35%}
.track-b{left:38%;top:61%}
.track-c{left:75%;top:42%;background:var(--red);box-shadow:0 0 15px var(--red)}

.progress-thin{
    height:4px;
    background:#102536;
    border-radius:5px;
}

.progress-thin span{
    display:block;
    height:100%;
    border-radius:5px;
    background:linear-gradient(90deg,var(--cyan),var(--blue));
}

.threat{
    padding:12px;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.threat:last-child{
    border-bottom:0;
}

.threat-icon{
    width:36px;
    height:36px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,85,119,.09);
    color:var(--red);
}

.threat-high{
    color:var(--red);
}

.threat-medium{
    color:var(--amber);
}

.threat-low{
    color:var(--green);
}

.timeline{
    position:relative;
}

.timeline:before{
    content:"";
    position:absolute;
    left:20px;
    top:0;
    bottom:0;
    width:1px;
    background:var(--line);
}

.timeline-item{
    position:relative;
    padding-left:55px;
    margin-bottom:35px;
}

.timeline-item:before{
    content:"";
    position:absolute;
    left:14px;
    top:5px;
    width:13px;
    height:13px;
    border-radius:50%;
    background:var(--cyan);
    box-shadow:0 0 18px var(--cyan);
}

.qirf-box{
    padding:55px;
    border-radius:30px;
    border:1px solid rgba(77,141,255,.25);
    background:
      radial-gradient(circle at 80% 20%,rgba(77,141,255,.16),transparent 25%),
      linear-gradient(145deg,#091b30,#040b15);
}

.erp{
    opacity:.78;
}

footer{
    border-top:1px solid var(--line);
    padding:45px 0;
    color:#71899c;
}

.small-label{
    color:#5f7890;
    text-transform:uppercase;
    font-size:.65rem;
    letter-spacing:2px;
}

