.ncs-page{
  --purple:#6d31f4;
  --purple2:#8b58ff;
  --dark:#121a39;
  --muted:#68718b;
  --line:#e8e4f1;
  --red:#ee4554;
  --green:#16ad4d;
  --amber:#f1a428;
  margin:0;
  overflow-x:hidden;
  background:#fff;
  color:var(--dark);
}

.ncs-container{
  width:min(1280px,92%);
  margin:0 auto;
}

.ncs-hero{
  padding:72px 0 55px;
  background:
    radial-gradient(circle at 70% 30%,rgba(111,49,244,.07),transparent 32%),
    #fff;
}

.ncs-hero-grid{
  display:grid;
  grid-template-columns:.74fr 1.26fr;
  gap:42px;
  align-items:center;
}

.ncs-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  margin-bottom:23px;
  border:1px solid #ddd3fa;
  border-radius:999px;
  background:#f5f1ff;
  color:#682fee;
  font-size:13px;
  font-weight:800;
}

.ncs-eyebrow svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
}

.ncs-hero h1{
  margin:0;
  font-size:clamp(46px,5vw,68px);
  line-height:1;
  letter-spacing:-2px;
}

.ncs-hero h2{
  max-width:580px;
  margin:24px 0 18px;
  font-size:29px;
  line-height:1.25;
}

.ncs-hero-copy > p{
  max-width:590px;
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

.ncs-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.ncs-btn{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  padding:0 23px;
  border-radius:9px;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
  transition:.2s ease;
}

.ncs-btn svg{
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
}

.ncs-btn-primary{
  background:linear-gradient(135deg,#7e43ff,#5922e9);
  color:#fff;
  box-shadow:0 14px 30px rgba(87,34,210,.2);
}

.ncs-btn-secondary{
  border:1px solid #d5c7f7;
  background:#fff;
  color:#6330e5;
}

.ncs-btn:hover{
  transform:translateY(-2px);
}

.ncs-trust{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  margin-top:30px;
}

.ncs-trust div{
  display:flex;
  align-items:center;
  gap:7px;
  color:#636c84;
  font-size:10px;
  font-weight:700;
}

.ncs-trust svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:#6b34e9;
  stroke-width:2;
}


/* SOC */

.ncs-soc-wrap{
  position:relative;
  padding:15px;
  border:1px solid #e2dff0;
  border-radius:20px;
  background:rgba(255,255,255,.96);
  box-shadow:0 24px 65px rgba(44,27,95,.10);
}

.ncs-soc-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}

.ncs-soc-head > div:first-child{
  display:flex;
  align-items:center;
  gap:9px;
}

.ncs-soc-head strong{
  font-size:11px;
}

.ncs-live{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:#20a74a;
  font-size:7px;
  font-weight:800;
}

.ncs-live i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#20b74e;
  animation:ncsPulse 1.5s infinite;
}

@keyframes ncsPulse{
  0%{box-shadow:0 0 0 0 rgba(32,183,78,.35)}
  70%{box-shadow:0 0 0 7px rgba(32,183,78,0)}
  100%{box-shadow:0 0 0 0 rgba(32,183,78,0)}
}

.ncs-mode-switch{
  display:flex;
  gap:5px;
  padding:3px;
  border-radius:8px;
  background:#f1eef6;
}

.ncs-mode-switch button{
  padding:6px 9px;
  border:0;
  border-radius:6px;
  background:transparent;
  color:#777e91;
  font-size:7px;
  font-weight:800;
  cursor:pointer;
}

.ncs-mode-switch button.active{
  background:#fff;
  color:#6730ea;
  box-shadow:0 2px 7px rgba(35,25,67,.08);
}

.ncs-top-stats{
  position:absolute;
  top:14px;
  right:180px;
  display:flex;
  gap:7px;
}

.ncs-top-stats article{
  min-width:78px;
  padding:7px 9px;
  border:1px solid #ece8f3;
  border-radius:7px;
  background:#fff;
  text-align:center;
}

.ncs-top-stats small,
.ncs-top-stats strong{
  display:block;
}

.ncs-top-stats small{
  color:#808799;
  font-size:5px;
}

.ncs-top-stats strong{
  margin-top:3px;
  font-size:9px;
}

.ncs-soc{
  position:relative;
  height:555px;
  display:grid;
  grid-template-columns:145px 1fr 160px;
  gap:13px;
  overflow:hidden;
  padding:15px;
  border:1px solid #ebe7f4;
  border-radius:14px;
  background:
    radial-gradient(circle at 55% 35%,rgba(109,49,244,.045),transparent 30%),
    #fcfcfe;
}

.ncs-threat-column,
.ncs-outcome{
  position:relative;
  z-index:4;
}

.ncs-threat-column h3,
.ncs-outcome h3{
  margin:0 0 10px;
  color:#d83e4c;
  font-size:7px;
  letter-spacing:.06em;
}

.ncs-outcome h3{
  color:#6d31e8;
}

.ncs-threat{
  min-height:54px;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:7px;
  padding:8px;
  border:1px solid #f0d8dc;
  border-radius:8px;
  background:#fff;
  transition:.25s ease;
}

.ncs-threat.active{
  border-color:#ed5967;
  background:#fff5f6;
  transform:translateX(3px);
  box-shadow:0 5px 14px rgba(218,57,70,.08);
}

.ncs-threat svg{
  width:19px;
  height:19px;
  flex:0 0 auto;
  fill:none;
  stroke:#e53e4e;
  stroke-width:1.8;
}

.ncs-threat strong,
.ncs-threat small{
  display:block;
}

.ncs-threat strong{
  font-size:7px;
}

.ncs-threat small{
  margin-top:2px;
  color:#8c8390;
  font-size:5px;
}

.ncs-pipeline{
  position:relative;
  z-index:4;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.ncs-internet{
  display:flex;
  align-items:center;
  gap:8px;
}

.ncs-internet svg{
  width:25px;
  height:25px;
  fill:none;
  stroke:#7440ec;
  stroke-width:1.8;
}

.ncs-internet strong,
.ncs-internet small{
  display:block;
}

.ncs-internet strong{
  font-size:8px;
}

.ncs-internet small{
  color:#888fa0;
  font-size:5px;
}

.ncs-arrow.down{
  width:1px;
  height:18px;
  margin:5px 0;
  background:#bfc3cf;
  position:relative;
}

.ncs-arrow.down::after{
  content:"";
  position:absolute;
  left:-3px;
  bottom:0;
  width:6px;
  height:6px;
  border-right:1px solid #7c8395;
  border-bottom:1px solid #7c8395;
  transform:rotate(45deg);
}

.ncs-security-node{
  width:215px;
  min-height:53px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border:1px solid #ded8f2;
  border-radius:8px;
  background:#fff;
  transition:.25s ease;
}

.ncs-security-node.active{
  border-color:#9164f2;
  box-shadow:0 0 0 4px rgba(122,70,239,.08);
  transform:scale(1.02);
}

.ncs-security-node svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:#7541ed;
  stroke-width:1.8;
}

.ncs-security-node strong,
.ncs-security-node small{
  display:block;
}

.ncs-security-node strong{
  font-size:7px;
}

.ncs-security-node small{
  margin-top:2px;
  color:#8a90a0;
  font-size:5px;
}

.ncs-pipeline-split{
  width:270px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
  margin-top:12px;
}

.ncs-small-node{
  min-height:54px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:8px;
  border:1px solid #e3def1;
  border-radius:8px;
  background:#fff;
  transition:.25s;
}

.ncs-small-node.active{
  border-color:#8758ec;
  background:#f8f5ff;
}

.ncs-small-node svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:#6c39e7;
  stroke-width:1.8;
}

.ncs-small-node strong{
  font-size:6px;
}

.ncs-siem{
  width:310px;
  min-height:56px;
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:13px;
  padding:9px 11px;
  border:1px solid #dcd4f5;
  border-radius:8px;
  background:#fff;
}

.ncs-siem svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:#7138e9;
  stroke-width:1.8;
}

.ncs-siem div{
  flex:1;
}

.ncs-siem strong,
.ncs-siem small{
  display:block;
}

.ncs-siem strong{
  font-size:7px;
}

.ncs-siem small{
  margin-top:2px;
  color:#8a8fa0;
  font-size:5px;
}

.ncs-siem span{
  padding:5px 7px;
  border-radius:6px;
  background:#f1ebff;
  color:#6530e4;
  font-size:6px;
  font-weight:800;
}

.ncs-system-card{
  min-height:80px;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:11px;
  padding:10px;
  border:1px solid #ded8f3;
  border-radius:8px;
  background:#fff;
  transition:.3s ease;
}

.ncs-system-card svg{
  width:26px;
  height:26px;
  flex:0 0 auto;
  fill:none;
  stroke:#7137ec;
  stroke-width:1.8;
}

.ncs-system-card div{
  flex:1;
}

.ncs-system-card strong,
.ncs-system-card small{
  display:block;
}

.ncs-system-card strong{
  font-size:7px;
}

.ncs-system-card small{
  margin-top:2px;
  color:#888fa0;
  font-size:5px;
}

.ncs-system-card > span{
  padding:4px 6px;
  border-radius:5px;
  background:#ebf9ef;
  color:#1a9e49;
  font-size:5px;
  font-weight:800;
}

.ncs-system-card.compromised{
  border-color:#ed6671;
  background:#fff5f6;
  animation:ncsShake .35s ease;
}

.ncs-system-card.compromised svg{
  stroke:#e43e4c;
}

.ncs-system-card.compromised > span{
  background:#ffe8ea;
  color:#d93645;
}

@keyframes ncsShake{
  0%,100%{transform:translateX(0)}
  25%{transform:translateX(-4px)}
  75%{transform:translateX(4px)}
}

.ncs-outcome-event{
  display:flex;
  align-items:center;
  gap:7px;
  margin-top:12px;
  padding:7px;
  border-radius:7px;
  border:1px solid #f0d6d8;
  background:#fff;
}

.ncs-outcome-event svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:#db3d4b;
  stroke-width:1.8;
}

.ncs-outcome-event strong,
.ncs-outcome-event small{
  display:block;
}

.ncs-outcome-event strong{
  font-size:6px;
}

.ncs-outcome-event small{
  color:#8d929e;
  font-size:5px;
}

.ncs-packet-layer{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:3;
}

.ncs-packet{
  position:absolute;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#ee4352;
  box-shadow:0 0 10px rgba(238,67,82,.45);
  transition:
    left .7s linear,
    top .7s linear,
    background .2s ease,
    opacity .2s ease;
}

.ncs-packet.safe{
  background:#18ad4c;
  box-shadow:0 0 10px rgba(24,173,76,.4);
}

.ncs-packet.blocked{
  background:#efae2e;
}

.ncs-event-log{
  position:absolute;
  left:170px;
  right:185px;
  bottom:10px;
  z-index:8;
  height:92px;
  overflow:hidden;
  border:1px solid #e6e2ef;
  border-radius:8px;
  background:rgba(255,255,255,.96);
}

.ncs-log-head{
  height:27px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 9px;
  border-bottom:1px solid #eeeaf3;
}

.ncs-log-head strong{
  font-size:6px;
}

.ncs-log-head span{
  color:#6931e8;
  font-size:5px;
  font-weight:800;
}

.ncs-log-list{
  padding:6px 9px;
  display:grid;
  gap:3px;
}

.ncs-log-row{
  display:grid;
  grid-template-columns:42px 48px 1fr;
  gap:6px;
  font-size:5px;
  animation:ncsLogIn .25s ease;
}

@keyframes ncsLogIn{
  from{opacity:0;transform:translateY(4px)}
  to{opacity:1;transform:none}
}

.ncs-log-row time{
  color:#999faf;
}

.ncs-log-row b{
  font-weight:800;
}

.ncs-log-row.attack b{
  color:#dc3e4c;
}

.ncs-log-row.safe b{
  color:#189d47;
}

.ncs-log-row.warn b{
  color:#d99219;
}


/* sections */

.ncs-stats-section{
  padding:40px 0 30px;
}

.ncs-stat-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}

.ncs-stat-grid article{
  min-height:115px;
  display:grid;
  grid-template-columns:65px 80px 1fr;
  gap:10px;
  align-items:center;
  padding:18px;
  border:1px solid #e8e4f0;
  border-radius:12px;
}

.ncs-stat-grid article > div{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f0eaff;
  color:#7135e9;
}

.ncs-stat-grid svg{
  width:31px;
  height:31px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
}

.ncs-stat-grid > article > strong{
  font-size:20px;
}

.ncs-stat-grid span{
  font-size:11px;
  font-weight:800;
}

.ncs-stat-grid small{
  display:block;
  margin-top:4px;
  color:#7c8498;
  font-size:8px;
  line-height:1.4;
  font-weight:400;
}

.ncs-features,
.ncs-process{
  padding:35px 0 45px;
}

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

.ncs-section-title h2{
  margin:0;
  font-size:29px;
}

.ncs-feature-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:13px;
}

.ncs-feature-grid article{
  min-height:225px;
  padding:20px 16px;
  border:1px solid #e8e4ef;
  border-radius:12px;
  background:#fff;
  transition:.2s ease;
}

.ncs-feature-grid article:hover{
  transform:translateY(-5px);
  border-color:#d6c9f7;
  box-shadow:0 15px 35px rgba(56,34,110,.08);
}

.ncs-feature-grid article > div{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  margin-bottom:17px;
  border-radius:50%;
  background:#f0eaff;
  color:#7137e9;
}

.ncs-feature-grid svg{
  width:29px;
  height:29px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
}

.ncs-feature-grid h3{
  margin:0 0 10px;
  font-size:14px;
}

.ncs-feature-grid p{
  margin:0;
  color:#737d92;
  font-size:10px;
  line-height:1.6;
}

.ncs-process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:17px;
}

.ncs-process-grid article{
  position:relative;
  min-height:140px;
  padding:20px;
  border:1px solid #e8e4ef;
  border-radius:12px;
  background:#fff;
}

.ncs-process-grid article > span{
  position:absolute;
  top:14px;
  right:14px;
  width:20px;
  height:20px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#6e31ed;
  color:#fff;
  font-size:8px;
  font-weight:800;
}

.ncs-process-grid article > div{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f1ebff;
  color:#7137e9;
}

.ncs-process-grid svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
}

.ncs-process-grid h3{
  margin:13px 0 7px;
  font-size:13px;
}

.ncs-process-grid p{
  margin:0;
  color:#747d91;
  font-size:9px;
  line-height:1.55;
}

.ncs-final{
  padding:10px 0 70px;
}

.ncs-final-panel{
  min-height:150px;
  display:grid;
  grid-template-columns:1fr 220px 180px;
  gap:25px;
  align-items:center;
  padding:28px 40px;
  border-radius:15px;
  overflow:hidden;
  background:linear-gradient(105deg,#5423c9,#7a38f0,#8a4dff);
  color:#fff;
}

.ncs-final-panel h2{
  margin:0 0 8px;
  font-size:24px;
}

.ncs-final-panel p{
  margin:0;
  color:#eee8ff;
  font-size:12px;
}

.ncs-btn-light{
  background:#fff;
  color:#6630e7;
}

.ncs-final-shield{
  display:grid;
  place-items:center;
}

.ncs-final-shield svg{
  width:130px;
  height:130px;
  fill:rgba(255,255,255,.12);
  stroke:#fff;
  stroke-width:3;
}


/* responsive */

@media(max-width:1100px){

  .ncs-hero-grid{
    grid-template-columns:1fr;
  }

  .ncs-soc-wrap{
    width:min(900px,100%);
    margin:auto;
  }

  .ncs-feature-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .ncs-stat-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:760px){

  .ncs-soc{
    height:auto;
    grid-template-columns:1fr;
  }

  .ncs-threat-column,
  .ncs-outcome{
    display:none;
  }

  .ncs-event-log{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    height:110px;
    margin-top:20px;
  }

  .ncs-top-stats{
    position:static;
    margin-bottom:10px;
  }

  .ncs-soc-head{
    align-items:flex-start;
    gap:10px;
    flex-direction:column;
  }

  .ncs-feature-grid,
  .ncs-stat-grid,
  .ncs-process-grid{
    grid-template-columns:1fr;
  }

  .ncs-final-panel{
    grid-template-columns:1fr;
    text-align:center;
  }

  .ncs-final-shield{
    order:-1;
  }

}

@media(prefers-reduced-motion:reduce){

  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
  }

}
