*{
  box-sizing:border-box;
}

:root{
  --bg:#030405;
  --panel:#0c0f12;
  --panel2:#11161b;
  --line:rgba(255,255,255,.09);
  --text:#f5f7fa;
  --muted:#8d98a7;
  --red:#ff2a2a;
  --red2:#b90018;
  --green:#58e26b;
  --yellow:#ffca3a;
  --blue:#2f8cff;
  --shadow:0 30px 90px rgba(0,0,0,.55);
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:
    radial-gradient(circle at top right,rgba(210,0,30,.16),transparent 28%),
    radial-gradient(circle at top left,rgba(30,90,255,.08),transparent 25%),
    var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  overflow-x:hidden;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:linear-gradient(to bottom,black,transparent 92%);
  z-index:-1;
}

a{
  color:inherit;
  text-decoration:none;
}

.site-shell{
  min-height:100vh;
}

.main-header{
  position:sticky;
  top:0;
  z-index:50;
  min-height:82px;
  padding:16px 5vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  background:rgba(3,4,5,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:13px;
}

.brand-mark{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg,var(--red),#6b0010);
  box-shadow:0 0 35px rgba(255,42,42,.32);
  font-size:28px;
  font-weight:950;
}

.brand strong{
  display:block;
  font-size:27px;
  letter-spacing:-1px;
  line-height:1;
}

.brand small{
  display:block;
  margin-top:5px;
  color:var(--red);
  font-size:10px;
  letter-spacing:3px;
  font-weight:900;
}

.main-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  color:#d7dde7;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.main-nav a{
  opacity:.86;
  transition:.2s ease;
}

.main-nav a:hover{
  opacity:1;
  color:#fff;
  text-shadow:0 0 16px rgba(255,42,42,.7);
}

.access-btn{
  padding:12px 17px;
  border-radius:12px;
  border:1px solid rgba(255,42,42,.5);
  background:rgba(255,42,42,.08);
  color:#fff;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  box-shadow:inset 0 0 22px rgba(255,42,42,.08);
}

.hero-section{
  position:relative;
  overflow:hidden;
  min-height:760px;
  padding:86px 5vw 70px;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(410px,.75fr);
  align-items:center;
  gap:44px;
  border-bottom:1px solid var(--line);
}

.hero-bg-grid{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(3,4,5,.97),rgba(3,4,5,.76),rgba(3,4,5,.95)),
    radial-gradient(circle at 67% 38%,rgba(255,0,0,.18),transparent 26%);
  z-index:-3;
}

.hero-glow{
  position:absolute;
  width:430px;
  height:430px;
  border-radius:50%;
  filter:blur(40px);
  opacity:.32;
  z-index:-2;
}

.hero-glow-red{
  right:7%;
  top:18%;
  background:rgba(255,42,42,.45);
  animation:floatGlow 8s ease-in-out infinite;
}

.hero-glow-blue{
  left:24%;
  bottom:-12%;
  background:rgba(47,140,255,.22);
  animation:floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(18px,-20px,0) scale(1.08)}
}

.eyebrow,
.section-heading span,
.company-copy span,
.cta-section span{
  display:inline-block;
  color:var(--red);
  font-size:12px;
  font-weight:950;
  letter-spacing:3.4px;
  text-transform:uppercase;
}

.hero-copy h1{
  margin:22px 0;
  max-width:920px;
  font-size:clamp(48px,6vw,88px);
  line-height:.86;
  letter-spacing:-4px;
  text-transform:uppercase;
}

.hero-copy p{
  max-width:720px;
  margin:0;
  color:#d1d7df;
  font-size:18px;
  line-height:1.65;
}

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

.btn-primary,
.btn-secondary,
.cta-section a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:14px;
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.4px;
}

.btn-primary,
.cta-section a{
  background:linear-gradient(135deg,var(--red),#970016);
  box-shadow:0 18px 40px rgba(255,42,42,.24);
}

.btn-secondary{
  border:1px solid var(--line);
  background:rgba(255,255,255,.045);
  color:#dfe5ef;
}

.source-pills{
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.source-pills span{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
  color:#c9d0dc;
  font-size:12px;
  font-weight:800;
}

.source-pills span:before{
  content:"●";
  color:var(--green);
  margin-right:7px;
  text-shadow:0 0 10px rgba(88,226,107,.8);
}

.intelligence-panel{
  position:relative;
  padding:22px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:26px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.025)),
    rgba(8,11,14,.88);
  box-shadow:var(--shadow), inset 0 0 38px rgba(255,255,255,.04);
  overflow:hidden;
}

.intelligence-panel:before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:26px;
  background:linear-gradient(135deg,rgba(255,42,42,.38),transparent 35%,rgba(47,140,255,.22));
  opacity:.35;
  pointer-events:none;
  mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding:1px;
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

.panel-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-bottom:16px;
  border-bottom:1px solid var(--line);
}

.panel-header div{
  display:flex;
  align-items:center;
  gap:9px;
}

.panel-header b{
  font-size:12px;
  letter-spacing:1.6px;
}

.panel-header small{
  color:var(--muted);
  font-size:12px;
}

.live-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--red);
  box-shadow:0 0 0 7px rgba(255,42,42,.12),0 0 18px rgba(255,42,42,.85);
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(.75);opacity:.65}
}

.main-score{
  padding:26px 0 20px;
}

.main-score p,
.signal-chart span,
.dash-card span{
  margin:0 0 10px;
  color:var(--muted);
  font-size:12px;
  font-weight:950;
  letter-spacing:1px;
  text-transform:uppercase;
}

.main-score strong{
  display:block;
  font-size:86px;
  line-height:.92;
  color:var(--green);
  text-shadow:0 0 28px rgba(88,226,107,.25);
}

.main-score em{
  font-size:28px;
  color:#adb6c3;
  font-style:normal;
}

.main-score small{
  color:#8994a3;
}

.mini-kpis{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}

.mini-kpis div{
  padding:14px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.075);
}

.mini-kpis b{
  display:block;
  font-size:22px;
  letter-spacing:-.5px;
}

.mini-kpis small{
  display:block;
  margin-top:5px;
  color:var(--muted);
  font-size:11px;
}

.signal-chart{
  margin-top:14px;
  padding:18px;
  border-radius:18px;
  background:#07090b;
  border:1px solid rgba(255,255,255,.08);
}

.chart-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.chart-title b{
  color:var(--green);
  font-size:13px;
}

.wave-lines{
  position:relative;
  height:155px;
  margin-top:12px;
  overflow:hidden;
  border-radius:14px;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:38px 38px;
}

.wave-lines i{
  position:absolute;
  left:-10%;
  right:-10%;
  height:3px;
  border-radius:999px;
  transform-origin:center;
  animation:waveMove 4s ease-in-out infinite;
}

.wave-lines i:nth-child(1){
  top:34%;
  background:var(--green);
  transform:skewY(-7deg);
  box-shadow:0 0 16px rgba(88,226,107,.55);
}

.wave-lines i:nth-child(2){
  top:58%;
  background:var(--red);
  transform:skewY(5deg);
  animation-delay:.4s;
  box-shadow:0 0 16px rgba(255,42,42,.55);
}

.wave-lines i:nth-child(3){
  top:76%;
  background:#b8c0cc;
  transform:skewY(-3deg);
  animation-delay:.8s;
}

@keyframes waveMove{
  0%,100%{translate:0 0}
  50%{translate:22px -10px}
}

.metrics-strip{
  padding:20px 5vw;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.018);
}

.metrics-strip article{
  padding:20px;
  border-radius:18px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.018));
}

.metrics-strip span{
  color:var(--red);
  font-size:12px;
  font-weight:950;
}

.metrics-strip b{
  display:block;
  margin-top:10px;
  font-size:31px;
  letter-spacing:-1px;
}

.metrics-strip p{
  margin:7px 0 0;
  color:var(--muted);
  font-size:13px;
}

.section-block{
  padding:78px 5vw;
}

.section-heading{
  max-width:820px;
  margin-bottom:34px;
}

.section-heading.centered{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.section-heading h2,
.company-copy h2,
.cta-section h2{
  margin:12px 0 0;
  color:#fff;
  font-size:clamp(34px,4vw,58px);
  line-height:.95;
  letter-spacing:-2px;
  text-transform:uppercase;
}

.section-heading p,
.company-copy p,
.cta-section p{
  margin:16px 0 0;
  color:#aeb7c5;
  font-size:17px;
  line-height:1.65;
}

.dashboard-preview{
  min-height:500px;
  display:grid;
  grid-template-columns:250px 1fr;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  background:
    radial-gradient(circle at 70% 20%,rgba(255,42,42,.12),transparent 30%),
    #090c0f;
  box-shadow:var(--shadow);
}

.dashboard-sidebar{
  padding:24px;
  border-right:1px solid var(--line);
  background:rgba(255,255,255,.035);
}

.dashboard-sidebar b{
  display:block;
  margin-bottom:24px;
  font-size:24px;
}

.dashboard-sidebar span{
  display:block;
  margin:10px 0;
  padding:12px;
  border-radius:12px;
  color:#aeb7c5;
  font-size:13px;
  font-weight:800;
}

.dashboard-sidebar span.active{
  background:rgba(255,42,42,.12);
  color:#fff;
  border:1px solid rgba(255,42,42,.24);
}

.dashboard-main{
  padding:24px;
}

.dash-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.dash-top small{
  color:var(--red);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
}

.dash-top h3{
  margin:5px 0 0;
  font-size:26px;
}

.dash-top button{
  border:1px solid var(--line);
  background:#11161b;
  color:#fff;
  padding:12px 16px;
  border-radius:12px;
  font-weight:900;
}

.dash-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  gap:16px;
}

.dash-card{
  min-height:260px;
  padding:20px;
  border-radius:20px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
}

.dash-card.large{
  min-height:300px;
}

.animated-bars{
  height:220px;
  display:flex;
  align-items:flex-end;
  gap:12px;
  padding-top:28px;
}

.animated-bars i{
  flex:1;
  min-height:24px;
  border-radius:999px 999px 0 0;
  background:linear-gradient(180deg,var(--red),#52000a);
  box-shadow:0 0 22px rgba(255,42,42,.22);
  animation:barPulse 2.8s ease-in-out infinite;
}

.animated-bars i:nth-child(even){
  background:linear-gradient(180deg,var(--green),#144f20);
  animation-delay:.35s;
}

@keyframes barPulse{
  0%,100%{filter:brightness(1);transform:scaleY(1)}
  50%{filter:brightness(1.35);transform:scaleY(.92)}
}

.donut-demo{
  width:150px;
  height:150px;
  margin:28px auto 0;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:conic-gradient(var(--green) 0 68%, #333 68% 100%);
  position:relative;
}

.donut-demo:after{
  content:"";
  position:absolute;
  inset:28px;
  border-radius:50%;
  background:#0b0f13;
}

.donut-demo strong{
  position:relative;
  z-index:2;
  font-size:30px;
}

.topic-list{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}

.topic-list li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:13px 0;
  border-bottom:1px solid var(--line);
  color:#dfe5ef;
}

.topic-list em{
  color:var(--green);
  font-style:normal;
  font-weight:900;
}

.actors-section{
  background:
    linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.01)),
    #050607;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.actors-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.actor-card{
  position:relative;
  padding:23px;
  min-height:300px;
  overflow:hidden;
  border-radius:24px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025)),
    #0b0e11;
  border:1px solid rgba(255,255,255,.09);
  text-align:center;
  transition:.25s ease;
}

.actor-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,42,42,.42);
  box-shadow:0 28px 80px rgba(255,42,42,.12);
}

.actor-card.highlight{
  box-shadow:inset 0 0 45px rgba(255,42,42,.07);
}

.actor-card:before{
  content:"";
  position:absolute;
  inset:auto -20% -40% -20%;
  height:160px;
  background:radial-gradient(circle,rgba(255,42,42,.22),transparent 66%);
}

.actor-card img{
  width:112px;
  height:112px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid rgba(255,255,255,.18);
  background:#141a20;
}

.actor-card h3{
  position:relative;
  z-index:2;
  margin:17px 0 5px;
  font-size:20px;
}

.actor-card p{
  position:relative;
  z-index:2;
  min-height:36px;
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.actor-score{
  position:relative;
  z-index:2;
  margin:18px auto 10px;
  width:100%;
  height:8px;
  overflow:hidden;
  border-radius:999px;
  background:#20262c;
}

.actor-score span{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--red),var(--green));
  animation:scoreGlow 2.4s ease-in-out infinite;
}

@keyframes scoreGlow{
  0%,100%{filter:brightness(1)}
  50%{filter:brightness(1.5)}
}

.actor-card b{
  position:relative;
  z-index:2;
  color:var(--green);
  font-size:25px;
}

.solutions-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.solutions-grid article,
.values-grid article{
  padding:26px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.02));
  border:1px solid var(--line);
}

.solutions-grid strong{
  color:var(--red);
  font-size:13px;
}

.solutions-grid h3{
  font-size:23px;
  margin:18px 0 10px;
}

.solutions-grid p,
.values-grid p{
  color:#aeb7c5;
  line-height:1.6;
}

.company-section{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:42px;
  align-items:start;
  background:#070809;
  border-top:1px solid var(--line);
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.values-grid b{
  color:#fff;
  font-size:20px;
}

.cta-section{
  margin:0 5vw 70px;
  padding:42px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:32px;
  border:1px solid rgba(255,42,42,.22);
  border-radius:30px;
  background:
    radial-gradient(circle at 80% 20%,rgba(255,42,42,.22),transparent 32%),
    linear-gradient(135deg,#0b0d10,#110508);
  box-shadow:var(--shadow);
}

.cta-section h2{
  max-width:760px;
}

.cta-section p{
  max-width:760px;
}

.cta-section a{
  flex:0 0 auto;
}

.main-footer{
  padding:34px 5vw;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  background:#020303;
}

.main-footer b{
  font-size:28px;
}

.main-footer p{
  margin:8px 0 0;
  color:var(--muted);
}

.footer-links{
  display:flex;
  gap:18px;
  color:#c7ced8;
  font-size:13px;
  font-weight:800;
}

@media(max-width:1150px){
  .main-nav{
    display:none;
  }

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

  .intelligence-panel{
    max-width:680px;
  }

  .dash-grid,
  .solutions-grid,
  .actors-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .company-section,
  .values-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:720px){
  .main-header{
    align-items:flex-start;
    flex-direction:column;
  }

  .access-btn{
    width:100%;
  }

  .hero-section{
    min-height:auto;
    padding-top:46px;
  }

  .hero-copy h1{
    font-size:42px;
    letter-spacing:-2px;
  }

  .hero-copy p{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
  }

  .metrics-strip,
  .mini-kpis,
  .actors-grid,
  .solutions-grid{
    grid-template-columns:1fr;
  }

  .dashboard-preview{
    grid-template-columns:1fr;
  }

  .dashboard-sidebar{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .dash-top,
  .cta-section,
  .main-footer{
    align-items:flex-start;
    flex-direction:column;
  }

  .dash-grid{
    grid-template-columns:1fr;
  }

  .section-block{
    padding:54px 5vw;
  }

  .main-score strong{
    font-size:68px;
  }
}
