:root{
  --ink:#17233b;
  --muted:#5d6879;
  --line:#cfd7e3;
  --panel:#f4f7fa;
  --white:#ffffff;
  --accent:#14589d;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.5
}
a{color:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--line)
}
.nav{
  max-width:var(--max);
  margin:auto;
  min-height:70px;
  display:flex;
  align-items:center;
  gap:28px;
  padding:0 24px
}
.brand{margin-right:auto;text-decoration:none;display:flex;align-items:center}
.brand-logo{display:block;width:148px;height:auto}
.nav-links{display:flex;gap:22px;align-items:center}
.nav-links>a,.dropdown-parent{
  text-decoration:none;
  font-size:14px;
  padding:26px 0;
  display:inline-block
}
.dropdown{position:relative}
.dropdown-label{display:flex;align-items:center;gap:4px}
.dropdown-toggle{
  padding:26px 2px;
  min-width:24px;
  background:none;
  border:0;
  cursor:pointer;
  color:var(--muted);
  font-size:12px;
  line-height:1
}
.dropdown-menu{
  display:none;
  position:absolute;
  top:58px;
  left:-18px;
  min-width:245px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 30px rgba(23,35,59,.12);
  padding:10px 0;
  z-index:100
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu{display:block}
.dropdown-menu a{
  display:block;
  padding:11px 18px;
  text-decoration:none;
  font-size:14px
}
.dropdown-menu a:hover,.dropdown-menu a:focus{background:var(--panel)}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 18px;
  border:1px solid var(--ink);
  text-decoration:none;
  font-weight:700;
  font-size:14px
}
.button.primary{background:var(--ink);color:#fff}
main{overflow:hidden}
.container{max-width:var(--max);margin:auto}
.eyebrow{
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:14px
}
h1,h2,h3{
  line-height:1.12;
  margin:0 0 18px;
  letter-spacing:-.025em
}
h1{font-size:clamp(38px,6vw,72px);max-width:930px}
h2{font-size:clamp(30px,4vw,48px);max-width:900px}
h3{font-size:20px}
.grid{display:grid;gap:18px}
.card{
  border:1px solid var(--line);
  background:#fff;
  padding:28px;
  min-height:190px;
  display:flex;
  flex-direction:column
}
.card p{color:var(--muted);margin:0 0 20px}
.card a{margin-top:auto;font-weight:700;text-decoration:none}
.footer{padding:36px 24px;background:#111827;color:#fff}
.footer .container{
  display:flex;
  gap:24px;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap
}
.footer a{color:#fff;text-decoration:none}
.footer-logo{display:block;width:135px;height:auto;}
@media(max-width:900px){.nav{align-items:flex-start;padding-top:18px;padding-bottom:18px}.nav-links{display:none}}
@media(max-width:600px){.button{width:100%}}
.hero-system{position:relative}
@keyframes flowPulse{from{transform:translateX(-60px)}to{transform:translateX(380px)}}
.audience-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.audience-card{
  position:relative;
  min-height:320px;
  padding:28px;
  background:#fff;
  border:1px solid #dce5ef;
  border-radius:18px;
  text-decoration:none;
  overflow:hidden;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease
}
.audience-card::after{
  content:"";position:absolute;inset:auto -35% -55% 35%;height:180px;
  background:radial-gradient(circle,rgba(18,104,231,.12),transparent 68%);
  transition:transform .3s ease
}
.audience-card:hover{transform:translateY(-6px);box-shadow:0 22px 50px rgba(19,48,82,.11);border-color:#b9cbe0}
.audience-card:hover::after{transform:translate(-20px,-20px)}
.audience-card.featured{background:linear-gradient(145deg,#0c1c36,#15365e);border-color:#15365e;color:#fff}
.audience-card h3{font-size:25px;margin-bottom:14px}
.audience-card p{color:#68788e;margin:0;line-height:1.55;max-width:480px}
.audience-card.featured p{color:#b7c6d9}
.platform-dark{
  position:relative;
  overflow:hidden;
  padding:116px 24px 98px;
  background:radial-gradient(circle at 50% -10%,#153b68 0,#091a33 36%,#061224 100%);
  color:#fff
}
.platform-grid-bg{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(111,194,255,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(111,194,255,.06) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.8),transparent 92%)
}
.platform-dark .container{position:relative;z-index:1}
.platform-heading{display:grid;grid-template-columns:1.25fr .75fr;gap:70px;align-items:end}
.platform-heading h2{max-width:780px;color:#fff}
.platform-heading p{margin:0;color:#9fb2c9;font-size:17px;line-height:1.62}
.orbit-one{inset:22px}
.orbit-two{inset:54px;animation-direction:reverse;animation-duration:12s}
@keyframes orbitSpin{to{transform:rotate(360deg)}}
.platform-steps{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid rgba(144,191,232,.18);border-bottom:1px solid rgba(144,191,232,.18)}
.platform-step{padding:28px 26px;border-right:1px solid rgba(144,191,232,.18)}
.platform-step:last-child{border-right:0}
.platform-step>span{font:700 10px ui-monospace,SFMono-Regular,Consolas,monospace;color:#5ea8e7}
.platform-step h3{font-size:23px;margin:10px 0;color:#fff}
.platform-step p{margin:0;color:#91a6bd;font-size:13px;line-height:1.55}
.platform-control{display:flex;justify-content:center;gap:34px;flex-wrap:wrap;padding-top:28px;color:#7f9ab6;font:700 9px ui-monospace,SFMono-Regular,Consolas,monospace;letter-spacing:.12em;text-transform:uppercase}
.demo-section{padding:104px 24px;background:#0b1d39;color:#fff}
.demo-stage{width:95px;height:95px;border-radius:50%;display:grid;place-items:center;border:1px solid #23466d;color:#7f9bb7;font-size:11px;font-weight:700}
.demo-stage.active{background:#1268e7;color:#fff;border-color:#1268e7;box-shadow:0 0 0 10px rgba(18,104,231,.1)}
.demo-stage.complete{border-color:#3ccfa2;color:#5ce3ba}
.demo-connector{height:1px;flex:1;background:linear-gradient(90deg,#23466d,#2f80ca)}
.insight-card:not(.feature) .insight-content h3{font-size:20px}
.mobile-menu-toggle{display:none;background:none;border:0;padding:8px}
.mobile-menu-toggle span:not(.sr-only){display:block;width:22px;height:2px;background:#1b3150;margin:4px 0}
@media(max-width:1080px){.hero-system{max-width:720px;width:100%;margin:auto}.audience-grid{grid-template-columns:repeat(2,1fr)}.platform-heading{grid-template-columns:1fr}}
@media(max-width:900px){.platform-steps{grid-template-columns:repeat(2,1fr)}.platform-step:nth-child(2){border-right:0}.platform-step:nth-child(-n/**/+2){border-bottom:1px solid rgba(144,191,232,.18)}}
@media(max-width:650px){.home-section,.platform-dark,.demo-section,.enterprise-proof{padding:82px 18px}.audience-grid{grid-template-columns:1fr}.platform-steps{grid-template-columns:1fr}.platform-step{border-right:0;border-bottom:1px solid rgba(144,191,232,.18)}.platform-step:last-child{border-bottom:0}.demo-stage{width:58px;height:58px;font-size:8px}}
.audience-card{
  box-shadow:0 10px 30px rgba(35,72,113,.045)
}
.audience-card:nth-child(2){background:linear-gradient(145deg,#ffffff,#f0fffb)}
.audience-card:nth-child(3){background:linear-gradient(145deg,#ffffff,#f4f1ff)}
.audience-card:nth-child(4){background:linear-gradient(145deg,#ffffff,#eef8ff)}
.audience-card:nth-child(5){background:linear-gradient(145deg,#ffffff,#fff7ef)}
.audience-card.featured{
  background:
    radial-gradient(circle at 85% 15%,rgba(73,169,255,.22),transparent 28%),
    linear-gradient(145deg,#0b1d38 0%,#123d70 62%,#0d64cf 100%);
}
.platform-dark{
  background:
    radial-gradient(circle at 52% -12%,#205e9d 0%,#123c6b 20%,#0a1c36 46%,#061224 100%);
}
.platform-grid-bg{
  background-image:
    linear-gradient(rgba(111,211,255,.085) 1px,transparent 1px),
    linear-gradient(90deg,rgba(111,211,255,.085) 1px,transparent 1px);
}
.demo-section{
  background:
    radial-gradient(circle at 78% 24%,rgba(62,141,255,.22),transparent 30%),
    radial-gradient(circle at 18% 86%,rgba(32,230,212,.10),transparent 26%),
    linear-gradient(135deg,#0b1d39,#0b2344 58%,#132d58);
}
.demo-stage.active{
  background:linear-gradient(145deg,#095dff,#2ca8ff);
  border-color:#2ca8ff;
  box-shadow:0 0 0 10px rgba(44,168,255,.12),0 0 38px rgba(44,168,255,.18)
}
.demo-stage.complete{
  border-color:#20e6d4;
  color:#63f4df
}
.platform-dark{
  background:
    linear-gradient(135deg,#071326 0%,#0b2242 44%,#12375f 100%);
}
.platform-grid-bg{
  background-image:
    linear-gradient(rgba(111,211,255,.075) 1px,transparent 1px),
    linear-gradient(90deg,rgba(111,211,255,.075) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.86),rgba(0,0,0,.45) 74%,transparent 100%)
}
.demo-section{
  background:
    linear-gradient(135deg,#091a34 0%,#0d2b52 52%,#153b6a 100%);
}
@media(max-width:1080px){.hero-system{
    max-width:780px;
  }}
.audience-grid{
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.audience-card{
  min-height:280px;
}
.audience-card:nth-child(6){
  background:linear-gradient(145deg,#ffffff,#f3f7fb);
}
@media(max-width:1080px){.audience-grid{
    grid-template-columns:repeat(2,1fr);
  }}
@media(max-width:650px){.audience-grid{
    grid-template-columns:1fr;
  }}
.hero-system-rotating{
  width:100%;
  min-width:0;
}
.scenario-frame{
  position:relative;
  min-height:592px;
  padding:18px 18px 14px;
  border:1px solid rgba(77,137,201,.25);
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(145deg,#ffffff 0%,#f3f8ff 58%,#eef9f7 100%);
  box-shadow:
    0 34px 90px rgba(31,105,190,.17),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.scenario-frame::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(19,100,206,.032) 1px,transparent 1px),
    linear-gradient(90deg,rgba(19,100,206,.032) 1px,transparent 1px);
  background-size:26px 26px;
}
.scenario-topbar{
  position:relative;
  z-index:5;
  height:26px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:14px;
  color:#677a92;
  font:800 8px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.12em;
}
.scenario-live-label{
  display:flex;
  align-items:center;
  gap:8px;
}
.live-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#20c795;
  box-shadow:0 0 0 5px rgba(32,199,149,.1);
}
.scenario-name{
  color:#095dff;
  min-width:130px;
  text-align:center;
}
.scenario-processing{
  justify-self:end;
}
.scenario-stage{
  position:relative;
  z-index:3;
  height:430px;
  margin-top:12px;
  border:1px solid rgba(101,139,181,.15);
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(255,255,255,.78),rgba(243,249,255,.61));
}
.scenario-stage.is-changing .scenario-input-card,
.scenario-stage.is-changing .issue-pill,
.scenario-stage.is-changing .primary-outcome-card,
.scenario-stage.is-changing .secondary-statuses,
.scenario-stage.is-changing .confidence-module{
  opacity:.22;
  transform:translateY(3px);
}
.scenario-grid{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(19,100,206,.034) 1px,transparent 1px),
    linear-gradient(90deg,rgba(19,100,206,.034) 1px,transparent 1px);
  background-size:22px 22px;
}
.scenario-zone-title{
  margin:0 0 10px 2px;
  color:#72849a;
  font:800 8px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.15em;
}
.scenario-input-zone{
  position:absolute;
  z-index:5;
  left:15px;
  top:31px;
  width:156px;
}
.scenario-input-card{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  min-height:75px;
  margin-bottom:14px;
  padding:12px 14px 12px 11px;
  border:1px solid rgba(94,133,175,.2);
  border-radius:14px;
  background:rgba(255,255,255,.95);
  box-shadow:0 11px 26px rgba(27,72,124,.06);
  transition:opacity .22s ease,transform .22s ease,border-color .22s ease;
  animation:scenarioInputActive 10s ease-in-out infinite;
}
.scenario-input-card.input-two{animation-delay:.28s}
.scenario-input-card.input-three{animation-delay:.56s}
.input-symbol{
  width:39px;
  height:39px;
  border-radius:11px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  font:900 7px ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.04em;
}
.input-symbol.blue{background:#e8f2ff;color:#095dff}
.input-symbol.teal{background:#e6fff8;color:#0fa982}
.input-symbol.violet{background:#efebff;color:#6b5cf2}
.scenario-card-copy{
  min-width:0;
}
.scenario-card-copy small{
  display:block;
  color:#78889b;
  font:800 6.5px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.11em;
}
.scenario-card-copy strong{
  display:block;
  margin:4px 0;
  color:#153250;
  font-size:12px;
  line-height:1.16;
}
.scenario-card-copy span{
  display:block;
  color:#718096;
  font-size:8.5px;
  white-space:nowrap;
}
.input-active-dot{
  position:absolute;
  top:10px;
  right:9px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#26c99c;
  opacity:.55;
}
.scenario-flow-svg{
  position:absolute;
  z-index:2;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
}
.scenario-route{
  fill:none;
  stroke-width:1.35;
  stroke-dasharray:4 7;
  opacity:.43;
}
.scenario-route.inbound{stroke:url(#inboundGradient)}
.scenario-route.outbound{stroke:url(#outboundGradient)}
.scenario-particle{
  opacity:.85;
}
.particle-blue{fill:#2ca8ff}
.particle-cyan{fill:#20d8c2}
.particle-violet{fill:#7667ff}
.particle-out{fill:#20c795}
.graph-zone{
  position:absolute;
  z-index:5;
  left:50%;
  top:37px;
  width:226px;
  transform:translateX(-50%);
  text-align:center;
}
.graph-shell{
  position:relative;
  width:202px;
  height:202px;
  margin:0 auto;
  border-radius:50%;
  border:1px solid rgba(74,139,210,.28);
  background:
    linear-gradient(145deg,rgba(249,253,255,.98),rgba(224,239,255,.88));
  box-shadow:
    0 0 0 9px rgba(28,104,223,.045),
    0 19px 44px rgba(28,90,169,.16),
    inset 0 1px 0 #fff;
  overflow:hidden;
}
.graph-shell::before{
  content:"";
  position:absolute;
  inset:19px;
  border:1px solid rgba(85,149,219,.22);
  border-radius:50%;
}
.graph-orbit{
  position:absolute;
  border:1px solid rgba(81,156,225,.18);
  border-radius:50%;
  animation:graphOrbit 18s linear infinite;
}
.orbit-one{inset:9px}
.orbit-two{
  inset:32px;
  animation-direction:reverse;
  animation-duration:14s;
}
.graph-label{
  position:absolute;
  z-index:4;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:90px;
  min-height:73px;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.91);
  border:1px solid rgba(74,139,210,.2);
  box-shadow:0 10px 25px rgba(40,91,155,.11);
  backdrop-filter:blur(4px);
}
.graph-label small{
  color:#71839a;
  font:800 6px ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.13em;
}
.graph-label strong{
  margin-top:4px;
  color:#17416d;
  font:900 7.5px/1.35 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.07em;
}
.edge-spark{
  position:absolute;
  z-index:6;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#20d8c2;
  box-shadow:0 0 13px rgba(32,216,194,.85);
  opacity:0;
  animation:edgeSpark 10s ease-in-out infinite;
}
.spark-one{left:5px;top:56px}
.spark-two{left:0;top:97px;animation-delay:.25s}
.spark-three{left:12px;bottom:47px;animation-delay:.5s}
.issue-pill{
  width:204px;
  min-height:59px;
  margin:16px auto 0;
  padding:10px 13px;
  border-radius:13px;
  border:1px solid rgba(226,149,84,.26);
  background:linear-gradient(145deg,#fff9f2,#fff1e5);
  box-shadow:0 10px 24px rgba(178,111,52,.07);
  text-align:left;
  transition:opacity .22s ease,transform .22s ease,background .35s ease,border-color .35s ease;
  animation:issueResolution 10s ease-in-out infinite;
}
.issue-pill small{
  display:block;
  color:#a37149;
  font:800 6.5px ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.11em;
}
.issue-pill strong{
  display:block;
  margin-top:4px;
  color:#7e5130;
  font-size:10px;
}
.issue-pill.resolved{
  border-color:rgba(32,199,149,.28);
  background:linear-gradient(145deg,#f2fff9,#e9fff6);
}
.issue-pill.resolved small{color:#2b9374}
.issue-pill.resolved strong{color:#1f7058}
.scenario-output-zone{
  position:absolute;
  z-index:5;
  right:15px;
  top:31px;
  width:158px;
}
.scenario-footer{
  position:relative;
  z-index:5;
  min-height:79px;
  padding-top:15px;
}
.scenario-controls{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:7px;
}
.scenario-control{
  min-height:31px;
  padding:7px 6px;
  border:1px solid rgba(91,130,172,.18);
  border-radius:9px;
  background:rgba(255,255,255,.82);
  color:#66798f;
  cursor:pointer;
  font:800 7px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.04em;
  transition:background .2s ease,border-color .2s ease,color .2s ease,transform .2s ease;
}
.scenario-control:hover{
  transform:translateY(-1px);
  border-color:rgba(9,93,255,.3);
}
.scenario-control.active{
  border-color:rgba(9,93,255,.34);
  background:#ebf4ff;
  color:#095dff;
}
.scenario-assurance{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:12px;
  color:#6e8196;
  font:800 6.5px ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.scenario-assurance span{
  position:relative;
  padding-left:10px;
}
.scenario-assurance span::before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#2ca8ff;
}
.scenario-assurance span:nth-child(2)::before{background:#7667ff}
.scenario-assurance span:nth-child(3)::before{background:#20c795}
@keyframes scenarioInputActive{
  0%,7%,100%{border-color:rgba(94,133,175,.2);transform:translateY(0)}
  15%,22%{border-color:rgba(44,168,255,.38);transform:translateY(-1px)}
  28%{border-color:rgba(94,133,175,.2);transform:translateY(0)}
}
@keyframes neuralLineFire{
  0%,27%,65%,100%{stroke:#68a9df;opacity:.4}
  38%,52%{stroke:#665cf2;opacity:.82}
}
@keyframes neuralNodeFire{
  0%,26%,62%,100%{transform:scale(1);filter:none}
  36%,48%{transform:scale(1.36);filter:drop-shadow(0 0 5px rgba(44,168,255,.75))}
}
@keyframes edgeSpark{
  0%,25%,55%,100%{opacity:0;transform:scale(.75)}
  33%,43%{opacity:1;transform:scale(1.25)}
}
@keyframes issueResolution{
  0%,48%,100%{transform:translateY(0)}
  56%,70%{transform:translateY(-1px)}
}
@keyframes outcomeComplete{
  0%,62%,100%{opacity:.72;transform:translateX(2px)}
  72%,90%{opacity:1;transform:translateX(0)}
}
@keyframes checkComplete{
  0%,62%,100%{opacity:.48;transform:scale(.84)}
  72%,90%{opacity:1;transform:scale(1)}
}
@keyframes confidenceComplete{
  0%,60%{stroke-dashoffset:16}
  76%,91%{stroke-dashoffset:1.2}
  100%{stroke-dashoffset:16}
}
@keyframes graphOrbit{
  to{transform:rotate(360deg)}
}
@media(max-width:1200px){.scenario-input-zone{width:145px}.scenario-output-zone{width:148px}.graph-zone{width:215px}.graph-shell{width:194px;height:194px}}
@media(max-width:1080px){.hero-system-rotating{
    max-width:760px;
    margin:auto;
  }}
@media(max-width:700px){.scenario-frame{
    min-height:552px;
    padding:14px;
  }.scenario-stage{
    height:405px;
  }.scenario-topbar{
    grid-template-columns:1fr auto;
  }.scenario-processing{display:none}.scenario-input-zone{
    left:10px;
    top:24px;
    width:132px;
  }.scenario-input-card{
    min-height:67px;
    margin-bottom:11px;
    padding:9px;
  }.input-symbol{
    width:32px;
    height:32px;
    font-size:6px;
  }.scenario-card-copy strong{font-size:10px}.scenario-card-copy span{font-size:7.5px}.graph-zone{
    left:auto;
    right:10px;
    top:34px;
    width:220px;
    transform:none;
  }.graph-shell{
    width:180px;
    height:180px;
  }.issue-pill{
    width:190px;
  }.scenario-output-zone{
    display:none;
  }.scenario-flow-svg{
    display:none;
  }.scenario-controls{
    grid-template-columns:repeat(2,1fr);
  }.scenario-assurance{
    display:none;
  }}
@media(max-width:470px){.scenario-stage{
    height:390px;
  }.scenario-input-zone{
    width:116px;
  }.input-symbol{
    display:none;
  }.scenario-input-card{
    padding:10px;
  }.graph-zone{
    right:0;
    width:205px;
  }.graph-shell{
    width:166px;
    height:166px;
  }.graph-label{
    width:82px;
  }}
@media(prefers-reduced-motion:reduce){.scenario-input-card,
  .graph-orbit,
  .neural-links path,
  .neural-nodes circle,
  .edge-spark,
  .issue-pill,
  .primary-outcome-card,
  .outcome-checkmark,
  .confidence-active{
    animation:none!important;
  }.scenario-particle{
    display:none;
  }}
.scenario-input-zone{
  width:162px;
  top:22px;
}
.scenario-input-card{
  min-height:66px;
  margin-bottom:10px;
  padding:10px 12px 10px 10px;
}
.scenario-input-card.input-four{animation-delay:.84s}
.input-symbol.cyan{background:#e9fdff;color:#1aa8be}
.scenario-card-copy strong{
  font-size:11.5px;
}
.scenario-card-copy span{
  font-size:8px;
}
.particle-teal{fill:#20c795}
.graph-zone{
  top:28px;
  width:238px;
}
.graph-shell{
  width:208px;
  height:208px;
  background:
    linear-gradient(145deg,rgba(250,253,255,.99),rgba(228,240,255,.9));
  box-shadow:
    0 0 0 10px rgba(28,104,223,.045),
    0 21px 46px rgba(28,90,169,.17),
    inset 0 1px 0 #fff;
}
.graph-shell::before{
  inset:16px;
}
.orbit-three{
  inset:48px;
  animation-duration:11s;
  animation-direction:normal;
}
.graph-label{
  width:94px;
  min-height:78px;
}
.graph-label strong{
  font-size:7.7px;
  line-height:1.32;
}
.issue-pill{
  width:214px;
  min-height:68px;
  margin-top:14px;
  padding:12px 14px;
}
.issue-pill small{
  font-size:8px;
}
.issue-pill strong{
  font-size:12px;
  margin-top:5px;
}
.scenario-control{
  min-height:36px;
  padding:8px 8px;
  font-size:8.4px;
}
.scenario-footer{
  min-height:84px;
}
.scenario-output-zone{
  top:25px;
}
@media(max-width:1200px){.scenario-input-zone{width:152px}.graph-zone{width:228px}.graph-shell{width:198px;height:198px}.issue-pill{width:204px}}
@media(max-width:700px){.scenario-input-zone{
    width:138px;
    top:16px;
  }.scenario-input-card{
    min-height:60px;
    margin-bottom:8px;
    padding:8px 9px;
  }.scenario-card-copy strong{font-size:10px}.scenario-card-copy span{font-size:7.3px}.graph-zone{
    top:24px;
    width:218px;
  }.graph-shell{
    width:184px;
    height:184px;
  }.issue-pill{
    width:194px;
    min-height:64px;
  }.issue-pill small{font-size:7.6px}.issue-pill strong{font-size:11px}.scenario-control{
    font-size:8px;
  }}
@media(max-width:470px){.scenario-input-zone{
    width:120px;
  }.scenario-input-card{
    min-height:58px;
  }}
.scenario-topbar{
  font-size: 9.8px;
  letter-spacing: .11em;
  min-height: 30px;
}
.live-dot{
  width: 8px;
  height: 8px;
}
.scenario-name{
  min-width: 150px;
}
.scenario-control{
  min-height: 40px;
  padding: 9px 10px;
  font-size: 9.6px;
  letter-spacing: .035em;
}
.scenario-assurance{
  gap: 22px;
  margin-top: 14px;
  font-size: 8.4px;
  letter-spacing: .09em;
}
.scenario-assurance span{
  padding-left: 12px;
}
.scenario-assurance span::before{
  top: 4px;
  width: 6px;
  height: 6px;
}
@media (max-width: 700px){.scenario-topbar{
    font-size: 9px;
  }.scenario-control{
    min-height: 38px;
    font-size: 9px;
  }.scenario-assurance{
    font-size: 8px;
  }}
@media (max-width: 470px){.scenario-topbar{
    font-size: 8.5px;
  }.scenario-control{
    font-size: 8.6px;
  }}
.audience-card:nth-child(6){
  background:linear-gradient(145deg,#ffffff,#fff2f8);
}
.audience-card:nth-child(1):not(.featured){
  background:linear-gradient(145deg,#ffffff,#edf5ff);
  border-color:#d7e4f2;
  color:inherit;
}
.audience-card:nth-child(1):not(.featured) .audience-icon{
  background:#e3efff;
  color:#176ed0;
}
.audience-card:nth-child(1):not(.featured) .card-arrow{
  background:#e7f1ff;
  color:#176ed0;
}
.audience-card:nth-child(1):not(.featured) .card-index{
  color:#8ca1b8;
}
.audience-card:nth-child(1):not(.featured) p{
  color:#68788e;
}
.audience-card.featured,
.audience-card:nth-child(1).featured,
.audience-card:nth-child(2).featured,
.audience-card:nth-child(3).featured,
.audience-card:nth-child(4).featured,
.audience-card:nth-child(5).featured,
.audience-card:nth-child(6).featured{
  background:linear-gradient(145deg,#0b1d38 0%,#123d70 62%,#0d64cf 100%);
  border-color:#174f8d;
  color:#ffffff;
  box-shadow:0 24px 56px rgba(12,45,83,.22);
  transform:translateY(-6px);
}
.audience-card.featured::after{
  background:linear-gradient(135deg,rgba(97,195,255,.16),rgba(117,92,255,.08));
  transform:translate(-18px,-18px);
}
.audience-card.featured h3{
  color:#ffffff;
}
.audience-card.featured p{
  color:#c3d2e4;
}
.audience-card,
.audience-card h3,
.audience-card p,
.audience-card .card-index,
.audience-card .audience-icon,
.audience-card .card-arrow{
  transition:
    background .24s ease,
    color .24s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    transform .24s ease;
}
@media (prefers-reduced-motion: reduce){.audience-card,
  .audience-card h3,
  .audience-card p,
  .audience-card .card-index,
  .audience-card .audience-icon,
  .audience-card .card-arrow{
    transition:none;
  }}
@keyframes demoConnectorPulse{
  0%{transform:translateX(0);opacity:.1}
  20%{opacity:.95}
  100%{transform:translateX(420%);opacity:.1}
}
.demo-canvas-animated .demo-stage:not(.is-active){
  opacity:.84;
}
@keyframes demoConnectorPulseSlow{
  0%{transform:translateX(0);opacity:.06}
  18%{opacity:.55}
  52%{opacity:.95}
  100%{transform:translateX(420%);opacity:.08}
}
@keyframes figParticleClockwise{
  to{transform:rotate(360deg)}
}
@keyframes figParticleCounterClockwise{
  to{transform:rotate(-360deg)}
}
.demo-start-indicator{
  position:absolute;
  z-index:8;
  top:62px;
  left:18px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:6px 9px;
  border:1px solid rgba(61,211,151,.28);
  border-radius:999px;
  background:rgba(12,53,43,.54);
  color:#74e7b5;
  opacity:0;
  transform:translateY(-2px);
  pointer-events:none;
  box-shadow:0 0 0 0 rgba(61,211,151,0);
}
.demo-start-indicator.is-flashing{
  animation:demoStartFlash 1.35s ease-out both;
}
@keyframes demoStartFlash{
  0%{
    opacity:0;
    transform:translateY(-2px) scale(.96);
    box-shadow:0 0 0 0 rgba(61,211,151,0);
  }
  18%{
    opacity:1;
    transform:translateY(0) scale(1);
    box-shadow:0 0 0 5px rgba(61,211,151,.08);
  }
  62%{
    opacity:.9;
    box-shadow:0 0 0 3px rgba(61,211,151,.04);
  }
  100%{
    opacity:0;
    transform:translateY(0) scale(.99);
    box-shadow:0 0 0 0 rgba(61,211,151,0);
  }
}
@media (max-width: 640px){.demo-start-indicator{
    top:58px;
    left:12px;
    padding:5px 8px;
  }}
@media (prefers-reduced-motion: reduce){.demo-start-indicator.is-flashing{
    animation:none;
    opacity:.8;
  }}
.hero-system-rotating .graph-shell{
  isolation:isolate;
  border-color:rgba(78,156,233,.42);
  background:
    radial-gradient(circle at 48% 46%,rgba(50,151,238,.30) 0%,rgba(28,84,145,.23) 27%,rgba(9,31,61,.96) 67%,rgba(5,20,43,.99) 100%);
  box-shadow:
    0 0 0 10px rgba(31,117,221,.055),
    0 23px 52px rgba(17,57,111,.28),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 0 42px rgba(58,151,242,.14);
}
.hero-system-rotating .graph-shell::before{
  inset:17px;
  border-color:rgba(108,193,255,.25);
  box-shadow:
    0 0 22px rgba(67,157,238,.12),
    inset 0 0 18px rgba(82,171,251,.06);
}
.hero-system-rotating .graph-shell::after{
  content:"";
  position:absolute;
  z-index:0;
  inset:42px;
  border-radius:50%;
  background:
    radial-gradient(circle,rgba(72,165,246,.16),rgba(34,91,158,.05) 55%,transparent 72%);
  box-shadow:0 0 32px rgba(57,150,237,.12);
  pointer-events:none;
}
.hero-system-rotating .graph-orbit{
  z-index:1;
  border-style:dashed;
  border-color:rgba(106,194,255,.25);
  border-top-color:rgba(102,211,244,.60);
  border-right-color:rgba(120,105,255,.36);
  box-shadow:0 0 12px rgba(51,151,234,.08);
}
.hero-system-rotating .orbit-one{
  inset:8px;
  animation-duration:22s;
}
.hero-system-rotating .orbit-two{
  inset:31px;
  animation-duration:17s;
  border-top-color:rgba(87,183,255,.56);
  border-right-color:rgba(41,211,188,.30);
}
.hero-system-rotating .orbit-three{
  inset:50px;
  animation-duration:13s;
  border-top-color:rgba(115,104,255,.48);
  border-right-color:rgba(92,200,249,.32);
}
.hero-system-rotating .graph-label{
  z-index:7;
  width:101px;
  min-height:84px;
  background:
    linear-gradient(145deg,rgba(9,33,64,.94),rgba(13,53,94,.88));
  border-color:rgba(107,195,255,.32);
  box-shadow:
    0 11px 28px rgba(1,14,34,.38),
    0 0 0 5px rgba(67,157,237,.055),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter:blur(7px);
}
.hero-system-rotating .graph-label small{
  color:#7fadd2;
  font-size:6.2px;
}
.hero-system-rotating .graph-label strong{
  color:#d9f0ff;
  font-size:7.8px;
  line-height:1.34;
  text-shadow:0 0 12px rgba(95,194,255,.22);
}
.hero-system-rotating .edge-spark{
  z-index:8;
  width:5px;
  height:5px;
  opacity:0;
  background:#67d7cf;
  box-shadow:0 0 10px rgba(74,219,206,.56);
}
.hero-system-rotating .hero-fig-particle-orbit{
  position:absolute;
  z-index:6;
  border-radius:50%;
  pointer-events:none;
  transform-origin:50% 50%;
}
.hero-system-rotating .hero-fig-path-one{inset:9px}
.hero-system-rotating .hero-fig-path-two{inset:22px}
.hero-system-rotating .hero-fig-path-three{inset:36px}
.hero-system-rotating .hero-fig-path-four{inset:51px}
.hero-system-rotating .hero-fig-path-five{inset:66px}
.hero-system-rotating .hero-fig-particle{
  position:absolute;
  top:50%;
  left:100%;
  width:7px;
  height:7px;
  border-radius:50%;
  transform:translate(-50%,-50%);
}
.hero-system-rotating .hero-fig-particle::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:50%;
  background:currentColor;
  opacity:.17;
  filter:blur(3px);
}
.hero-system-rotating .hero-fig-particle-cyan{
  color:#54d7d0;
  background:#54d7d0;
  box-shadow:0 0 7px rgba(84,215,208,.66),0 0 14px rgba(84,215,208,.26);
}
.hero-system-rotating .hero-fig-particle-blue{
  color:#58aef0;
  background:#58aef0;
  box-shadow:0 0 7px rgba(88,174,240,.66),0 0 14px rgba(88,174,240,.26);
}
.hero-system-rotating .hero-fig-particle-violet{
  color:#8878dc;
  background:#8878dc;
  box-shadow:0 0 7px rgba(136,120,220,.62),0 0 14px rgba(136,120,220,.23);
}
.hero-system-rotating .hero-fig-particle-teal{
  color:#49bea9;
  background:#49bea9;
  box-shadow:0 0 7px rgba(73,190,169,.62),0 0 14px rgba(73,190,169,.22);
}
.hero-system-rotating .hero-fig-particle-blue-soft{
  color:#80a9cc;
  background:#80a9cc;
  box-shadow:0 0 6px rgba(128,169,204,.50),0 0 12px rgba(128,169,204,.18);
}
.hero-system-rotating .hero-fig-motion-cw-one{
  animation:heroFigClockwise 19s linear infinite;
  animation-delay:-4s;
}
.hero-system-rotating .hero-fig-motion-ccw-one{
  animation:heroFigCounterClockwise 24s linear infinite;
  animation-delay:-13s;
}
.hero-system-rotating .hero-fig-motion-cw-two{
  animation:heroFigClockwise 16s linear infinite;
  animation-delay:-8s;
}
.hero-system-rotating .hero-fig-motion-ccw-two{
  animation:heroFigCounterClockwise 21s linear infinite;
  animation-delay:-3s;
}
.hero-system-rotating .hero-fig-motion-cw-three{
  animation:heroFigClockwise 13s linear infinite;
  animation-delay:-9s;
}
@keyframes heroFigClockwise{
  to{transform:rotate(360deg)}
}
@keyframes heroFigCounterClockwise{
  to{transform:rotate(-360deg)}
}
@media(max-width:700px){.hero-system-rotating .graph-label{
    width:90px;
    min-height:76px;
  }.hero-system-rotating .graph-label strong{
    font-size:7.1px;
  }.hero-system-rotating .hero-fig-particle{
    width:6px;
    height:6px;
  }}
@media(max-width:470px){.hero-system-rotating .graph-label{
    width:80px;
    min-height:70px;
  }.hero-system-rotating .hero-fig-path-one{inset:8px}.hero-system-rotating .hero-fig-path-two{inset:20px}.hero-system-rotating .hero-fig-path-three{inset:32px}.hero-system-rotating .hero-fig-path-four{inset:44px}.hero-system-rotating .hero-fig-path-five{inset:56px}}
@media(prefers-reduced-motion:reduce){.hero-system-rotating .hero-fig-particle-orbit{
    animation:none!important;
  }.hero-system-rotating .hero-fig-motion-cw-one{transform:rotate(20deg)}.hero-system-rotating .hero-fig-motion-ccw-one{transform:rotate(92deg)}.hero-system-rotating .hero-fig-motion-cw-two{transform:rotate(168deg)}.hero-system-rotating .hero-fig-motion-ccw-two{transform:rotate(246deg)}.hero-system-rotating .hero-fig-motion-cw-three{transform:rotate(318deg)}}
.hero-system-rotating .graph-shell{
  border-color:rgba(95,177,240,.50);
  background:
    radial-gradient(circle at 47% 43%,
      rgba(124,211,255,.52) 0%,
      rgba(73,166,235,.38) 24%,
      rgba(32,103,171,.30) 47%,
      rgba(13,55,102,.86) 74%,
      rgba(9,37,73,.94) 100%);
  box-shadow:
    0 0 0 10px rgba(61,151,229,.07),
    0 24px 52px rgba(26,77,132,.24),
    inset 0 1px 0 rgba(255,255,255,.28),
    inset 0 0 44px rgba(116,207,255,.20);
}
.hero-system-rotating .graph-shell::before{
  border-color:rgba(144,218,255,.34);
  box-shadow:
    0 0 25px rgba(92,190,248,.16),
    inset 0 0 20px rgba(139,216,255,.09);
}
.hero-system-rotating .graph-shell::after{
  background:
    radial-gradient(circle,
      rgba(128,216,255,.24) 0%,
      rgba(77,166,228,.11) 52%,
      transparent 75%);
  box-shadow:0 0 38px rgba(91,185,245,.18);
}
.hero-system-rotating .graph-orbit{
  border-color:rgba(133,213,255,.31);
  border-top-color:rgba(142,227,255,.66);
  border-right-color:rgba(135,124,255,.38);
  box-shadow:0 0 14px rgba(86,184,245,.11);
}
.hero-system-rotating .graph-label{
  background:
    linear-gradient(145deg,rgba(18,61,105,.91),rgba(25,82,132,.86));
  border-color:rgba(141,215,255,.39);
  box-shadow:
    0 11px 26px rgba(13,49,91,.28),
    0 0 0 5px rgba(87,178,241,.07),
    inset 0 1px 0 rgba(255,255,255,.14);
}
.hero-system-rotating .graph-label small{
  color:#9bc7e7;
}
.hero-system-rotating .graph-label strong{
  color:#eef9ff;
  text-shadow:0 0 12px rgba(129,215,255,.28);
}
.hero-system-rotating .graph-shell{
  border-color:rgba(118,196,247,.56);
  background:
    radial-gradient(circle at 47% 42%,
      rgba(158,228,255,.60) 0%,
      rgba(102,190,246,.44) 22%,
      rgba(56,137,204,.34) 45%,
      rgba(21,78,134,.78) 73%,
      rgba(11,47,89,.90) 100%);
  box-shadow:
    0 0 0 10px rgba(88,174,238,.08),
    0 24px 52px rgba(29,88,144,.20),
    inset 0 1px 0 rgba(255,255,255,.34),
    inset 0 0 52px rgba(146,223,255,.24);
}
.hero-system-rotating .graph-shell::before{
  border-color:rgba(162,226,255,.40);
  box-shadow:
    0 0 26px rgba(111,198,250,.18),
    inset 0 0 22px rgba(159,229,255,.12);
}
.hero-system-rotating .graph-shell::after{
  inset:38px;
  background:
    radial-gradient(circle,
      rgba(165,229,255,.28) 0%,
      rgba(98,184,238,.14) 48%,
      rgba(51,119,185,.04) 68%,
      transparent 78%);
  box-shadow:0 0 44px rgba(109,197,248,.20);
}
.hero-system-rotating .graph-orbit{
  border-color:rgba(151,221,255,.34);
  border-top-color:rgba(166,236,255,.72);
  border-right-color:rgba(145,138,255,.42);
  box-shadow:0 0 15px rgba(95,190,247,.12);
}
.hero-system-rotating .graph-label{
  background:
    linear-gradient(145deg,rgba(25,78,128,.90),rgba(35,95,145,.85));
  border-color:rgba(163,225,255,.42);
  box-shadow:
    0 11px 24px rgba(18,62,106,.24),
    0 0 0 5px rgba(105,188,244,.08),
    inset 0 1px 0 rgba(255,255,255,.16);
}
.hero-system-rotating .graph-label small{
  color:#a5cfe9;
}
.hero-system-rotating .graph-label strong{
  color:#f4fbff;
  text-shadow:0 0 12px rgba(149,222,255,.30);
}
.hero-system-rotating .hero-neural-ring{
  position:absolute;
  z-index:2;
  inset:46px;
  border-radius:50%;
  pointer-events:none;
  filter:drop-shadow(0 0 10px rgba(113,203,251,.12));
}
.hero-system-rotating .hero-neural-track{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(146,223,255,.22);
}
.hero-system-rotating .hero-neural-track-outer{
  inset:0;
  box-shadow:0 0 18px rgba(117,205,252,.08), inset 0 0 12px rgba(117,205,252,.05);
}
.hero-system-rotating .hero-neural-track-inner{
  inset:22px;
  border-color:rgba(156,206,255,.16);
  box-shadow:0 0 12px rgba(135,190,245,.05);
}
.hero-system-rotating .hero-neural-core{
  position:absolute;
  top:50%;
  left:50%;
  width:20px;
  height:20px;
  border-radius:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(195,241,255,.92) 0%, rgba(120,203,250,.88) 36%, rgba(47,130,199,.82) 68%, rgba(25,87,147,.62) 100%);
  box-shadow:0 0 18px rgba(139,220,255,.38), 0 0 34px rgba(106,191,246,.20);
}
.hero-system-rotating .hero-neural-node{
  position:absolute;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#73d4f9;
  box-shadow:0 0 8px rgba(115,212,249,.42);
}
.hero-system-rotating .hero-neural-node::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:1px;
  height:34px;
  transform-origin:top center;
  transform:translate(-50%,0);
  background:linear-gradient(to bottom, rgba(131,215,255,.34), rgba(131,215,255,.06), transparent 100%);
}
@media(max-width:700px){.hero-system-rotating .hero-neural-ring{inset:42px}.hero-system-rotating .hero-neural-track-inner{inset:18px}.hero-system-rotating .hero-neural-core{width:18px;height:18px}}
@media(max-width:470px){.hero-system-rotating .hero-neural-ring{inset:36px}.hero-system-rotating .hero-neural-track-inner{inset:15px}.hero-system-rotating .hero-neural-node{width:6px;height:6px}}
@media(prefers-reduced-motion:reduce){.hero-system-rotating .hero-neural-core{
    box-shadow:0 0 14px rgba(139,220,255,.30), 0 0 24px rgba(106,191,246,.16);
  }}
.hero-system-rotating .hero-neural-track-inner{
  inset:14px;
}
.hero-system-rotating .hero-neural-core{
  width:18px;
  height:18px;
}
.hero-system-rotating .hero-neural-node::after{
  height:28px;
}
.hero-system-rotating .issue-pill{
  text-align:center;
  align-items:center;
}
.hero-system-rotating .issue-pill small,
.hero-system-rotating .issue-pill strong{
  width:100%;
  text-align:center;
}
@media(max-width:700px){.hero-system-rotating .hero-neural-track-inner{
    inset:12px;
  }.hero-system-rotating .hero-neural-core{
    width:16px;
    height:16px;
  }}
@media(max-width:470px){.hero-system-rotating .hero-neural-track-inner{
    inset:10px;
  }.hero-system-rotating .hero-neural-node::after{
    height:24px;
  }}
.hero-system-rotating .hero-neural-ring{
  inset:38px;
}
.hero-system-rotating .hero-neural-track-inner{
  inset:12px;
}
.hero-system-rotating .hero-neural-node::after{
  height:32px;
}
@media(max-width:700px){.hero-system-rotating .hero-neural-ring{
    inset:34px;
  }.hero-system-rotating .hero-neural-track-inner{
    inset:10px;
  }}
@media(max-width:470px){.hero-system-rotating .hero-neural-ring{
    inset:30px;
  }.hero-system-rotating .hero-neural-track-inner{
    inset:9px;
  }.hero-system-rotating .hero-neural-node::after{
    height:28px;
  }}
.hero-system-rotating .hero-neural-node-orbit{
  position:absolute;
  z-index:2;
  border-radius:50%;
  transform-origin:50% 50%;
  pointer-events:none;
}
.hero-system-rotating .neural-orbit-1{inset:0}
.hero-system-rotating .neural-orbit-2{inset:3px}
.hero-system-rotating .neural-orbit-3{inset:6px}
.hero-system-rotating .neural-orbit-4{inset:9px}
.hero-system-rotating .neural-orbit-5{inset:13px}
.hero-system-rotating .neural-orbit-6{inset:16px}
.hero-system-rotating .neural-orbit-7{inset:19px}
.hero-system-rotating .neural-orbit-8{inset:22px}
.hero-system-rotating .hero-neural-node-orbit .hero-neural-node{
  position:absolute;
  top:0;
  left:50%;
  width:6px;
  height:6px;
  border-radius:50%;
  transform:translate(-50%,-50%);
  box-shadow:0 0 7px currentColor;
}
.hero-system-rotating .hero-neural-node-orbit .hero-neural-node::after{
  content:"";
  position:absolute;
  top:100%;
  left:50%;
  width:1px;
  height:25px;
  transform:translateX(-50%);
  background:linear-gradient(
    to bottom,
    currentColor 0%,
    rgba(130,211,250,.15) 55%,
    transparent 100%
  );
  opacity:.32;
}
.hero-system-rotating .neural-node-cyan{
  color:#74d7f5;
  background:#74d7f5;
}
.hero-system-rotating .neural-node-blue{
  color:#6faee8;
  background:#6faee8;
}
.hero-system-rotating .neural-node-teal{
  color:#5cc8b8;
  background:#5cc8b8;
}
.hero-system-rotating .neural-node-violet{
  color:#8b80dd;
  background:#8b80dd;
}
.hero-system-rotating .neural-node-blue-soft{
  color:#85aac8;
  background:#85aac8;
}
.hero-system-rotating .neural-node-cyan-soft{
  color:#83cbdc;
  background:#83cbdc;
}
.hero-system-rotating .neural-node-teal-soft{
  color:#78b9ad;
  background:#78b9ad;
}
.hero-system-rotating .neural-node-violet-soft{
  color:#948bc4;
  background:#948bc4;
}
.hero-system-rotating .neural-orbit-1{
  animation:heroNeuralClockwise 18s linear infinite;
  animation-delay:-2s;
}
.hero-system-rotating .neural-orbit-2{
  animation:heroNeuralCounterClockwise 24s linear infinite;
  animation-delay:-9s;
}
.hero-system-rotating .neural-orbit-3{
  animation:heroNeuralClockwise 21s linear infinite;
  animation-delay:-14s;
}
.hero-system-rotating .neural-orbit-4{
  animation:heroNeuralCounterClockwise 28s linear infinite;
  animation-delay:-5s;
}
.hero-system-rotating .neural-orbit-5{
  animation:heroNeuralClockwise 16s linear infinite;
  animation-delay:-11s;
}
.hero-system-rotating .neural-orbit-6{
  animation:heroNeuralCounterClockwise 23s linear infinite;
  animation-delay:-17s;
}
.hero-system-rotating .neural-orbit-7{
  animation:heroNeuralClockwise 20s linear infinite;
  animation-delay:-7s;
}
.hero-system-rotating .neural-orbit-8{
  animation:heroNeuralClockwise 26s linear infinite;
  animation-delay:-19s;
}
@keyframes heroNeuralClockwise{
  to{transform:rotate(360deg)}
}
@keyframes heroNeuralCounterClockwise{
  to{transform:rotate(-360deg)}
}
@media(max-width:700px){.hero-system-rotating .hero-neural-node-orbit .hero-neural-node{
    width:5px;
    height:5px;
  }.hero-system-rotating .hero-neural-node-orbit .hero-neural-node::after{
    height:21px;
  }}
@media(max-width:470px){.hero-system-rotating .neural-orbit-5{inset:11px}.hero-system-rotating .neural-orbit-6{inset:14px}.hero-system-rotating .neural-orbit-7{inset:17px}.hero-system-rotating .neural-orbit-8{inset:20px}}
@media(prefers-reduced-motion:reduce){.hero-system-rotating .hero-neural-node-orbit{
    animation-duration:40s!important;
  }}
.hero-system-rotating .graph-zone{
  width:220px;
}
.hero-system-rotating .graph-shell{
  width:196px;
  height:196px;
  aspect-ratio:1 / 1;
  border-radius:50%;
}
.hero-system-rotating .graph-shell::before{
  inset:17px;
}
.hero-system-rotating .graph-shell::after{
  inset:36px;
}
.hero-system-rotating .orbit-one{inset:8px}
.hero-system-rotating .orbit-two{inset:27px}
.hero-system-rotating .orbit-three{inset:43px}
.hero-system-rotating .hero-neural-ring{
  inset:34px;
}
.hero-system-rotating .hero-neural-track-inner{
  inset:11px;
}
@media(max-width:700px){.hero-system-rotating .graph-zone{
    width:208px;
  }.hero-system-rotating .graph-shell{
    width:186px;
    height:186px;
  }.hero-system-rotating .hero-neural-ring{
    inset:31px;
  }}
@media(max-width:470px){.hero-system-rotating .graph-zone{
    width:196px;
  }.hero-system-rotating .graph-shell{
    width:176px;
    height:176px;
  }.hero-system-rotating .hero-neural-ring{
    inset:27px;
  }}
.scenario-topbar{
  min-height:34px;
  align-items:center;
}
.scenario-name{
  min-width:182px;
  font-size:15px;
  line-height:1;
  font-weight:900;
  letter-spacing:.045em;
  color:#0a63ff;
  text-shadow:0 0 14px rgba(10,99,255,.14);
}
.scenario-live-label,
.scenario-processing{
  font-size:9.2px;
}
@media(max-width:700px){.scenario-name{
    min-width:156px;
    font-size:13.2px;
  }.scenario-live-label,
  .scenario-processing{
    font-size:8.6px;
  }}
@media(max-width:470px){.scenario-name{
    min-width:140px;
    font-size:11.8px;
    letter-spacing:.03em;
  }.scenario-live-label,
  .scenario-processing{
    font-size:8.1px;
  }}
.contact-form{display:grid;gap:18px}
.contact-success{
  display:none;
  margin-top:18px;
  padding:14px 16px;
  border:1px solid rgba(32,199,149,.28);
  border-radius:12px;
  background:#effbf7;
  color:#17664f;
  font-size:13px;
  font-weight:750;
}
.contact-success.is-visible{display:block}
.site-header.standard-main-nav{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.86);
  border-bottom:1px solid rgba(10,24,48,.08);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:0 10px 30px rgba(10,24,48,.03);
}
.standard-main-nav .nav{
  position:relative;
  max-width:1240px;
  min-height:78px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:26px;
  padding:0 24px;
}
.standard-main-nav .brand{
  display:flex;
  align-items:center;
  margin-right:auto;
  text-decoration:none;
}
.standard-main-nav .brand-logo{
  display:block;
  width:144px;
  height:auto;
}
.standard-main-nav .nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}
.standard-main-nav .nav-links>a,
.standard-main-nav .dropdown-parent{
  position:relative;
  display:inline-block;
  padding:29px 0;
  color:#34425a;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
}
.standard-main-nav .nav-links>a::after,
.standard-main-nav .dropdown-parent::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:19px;
  height:2px;
  background:#1268e7;
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .25s ease;
}
.standard-main-nav .nav-links>a:hover::after,
.standard-main-nav .nav-links>a.active::after,
.standard-main-nav .dropdown-parent:hover::after,
.standard-main-nav .dropdown-parent.active::after{
  transform:scaleX(1);
  transform-origin:left;
}
.standard-main-nav .dropdown{
  position:relative;
}
.standard-main-nav .dropdown-label{
  display:flex;
  align-items:center;
  gap:4px;
}
.standard-main-nav .dropdown-toggle{
  min-width:24px;
  padding:29px 0;
  border:0;
  background:none;
  color:#64748b;
  font-size:12px;
  line-height:1;
  cursor:pointer;
}
.standard-main-nav .dropdown-menu{
  display:none;
  position:absolute;
  top:64px;
  left:-18px;
  min-width:285px;
  padding:10px;
  border:1px solid rgba(10,24,48,.1);
  border-radius:16px;
  background:#fff;
  box-shadow:0 22px 60px rgba(10,24,48,.14);
}
.standard-main-nav .dropdown:hover .dropdown-menu,
.standard-main-nav .dropdown.open .dropdown-menu{
  display:block;
}
.standard-main-nav .dropdown-menu a{
  display:block;
  padding:12px 13px;
  border-radius:10px;
  color:#263750;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
}
.standard-main-nav .dropdown-menu a:hover{
  background:#f1f6fb;
  color:#1268e7;
}
.standard-main-nav .nav-actions{
  display:flex;
  align-items:center;
  gap:18px;
}
.standard-main-nav .nav-login{
  color:#52627a;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
}
.standard-main-nav .button.primary.compact{
  min-height:42px;
  padding:10px 16px;
  border:0;
  border-radius:10px;
  background:linear-gradient(135deg,#0b1b35,#17355f);
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 9px 25px rgba(9,31,66,.2);
  transition:transform .2s ease,box-shadow .2s ease;
}
.standard-main-nav .button.primary.compact:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(9,31,66,.28);
}
.standard-main-nav .mobile-menu-toggle{
  display:none;
  padding:8px;
  border:0;
  background:none;
}
.standard-main-nav .mobile-menu-toggle span:not(.sr-only){
  display:block;
  width:22px;
  height:2px;
  margin:4px 0;
  background:#1b3150;
}
.standard-main-nav .sr-only{
  position:absolute!important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
@media(max-width:1080px){.standard-main-nav .nav-links{
    gap:18px;
  }.standard-main-nav .nav-actions .nav-login{
    display:none;
  }}
@media(max-width:900px){.standard-main-nav .nav{
    align-items:center;
    padding-top:0;
    padding-bottom:0;
  }.standard-main-nav .mobile-menu-toggle{
    display:block;
    margin-left:auto;
  }.standard-main-nav .nav-actions{
    display:none;
  }.standard-main-nav .nav-links{
    display:none;
    position:absolute;
    left:18px;
    right:18px;
    top:72px;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px;
    border:1px solid #dce5ef;
    border-radius:16px;
    background:#fff;
    box-shadow:0 20px 60px rgba(10,24,48,.16);
  }.standard-main-nav .nav-links.mobile-open{
    display:flex;
  }.standard-main-nav .nav-links>a,
  .standard-main-nav .dropdown-parent{
    padding:12px 10px;
  }.standard-main-nav .nav-links>a::after,
  .standard-main-nav .dropdown-parent::after{
    display:none;
  }.standard-main-nav .dropdown-label{
    justify-content:space-between;
  }.standard-main-nav .dropdown-toggle{
    padding:12px;
  }.standard-main-nav .dropdown-menu{
    position:static;
    min-width:0;
    padding-left:8px;
    border:0;
    box-shadow:none;
  }}
.talk-to-itemize-button,
.standard-main-nav .talk-to-itemize-button,
.contact-form .talk-to-itemize-button{
  border:0!important;
  border-radius:10px!important;
  background:linear-gradient(135deg,#0c2348 0%,#174a8b 54%,#0a67f5 100%)!important;
  color:#fff!important;
  text-decoration:none!important;
  box-shadow:0 12px 28px rgba(9,93,255,.22)!important;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    filter .2s ease!important;
}
.talk-to-itemize-button:hover,
.talk-to-itemize-button:focus-visible,
.standard-main-nav .talk-to-itemize-button:hover,
.standard-main-nav .talk-to-itemize-button:focus-visible,
.contact-form .talk-to-itemize-button:hover,
.contact-form .talk-to-itemize-button:focus-visible{
  color:#fff!important;
  transform:translateY(-2px);
  box-shadow:0 17px 36px rgba(9,93,255,.31)!important;
  filter:saturate(1.04);
}
.talk-to-itemize-button span[aria-hidden="true"]{
  display:inline-block;
  margin-left:3px;
  font-size:.92em;
  line-height:1;
  transition:transform .2s ease;
}
.talk-to-itemize-button:hover span[aria-hidden="true"],
.talk-to-itemize-button:focus-visible span[aria-hidden="true"]{
  transform:translate(1px,-1px);
}
@keyframes platformCapabilityPulse{
  0%, 8%, 100%{
    box-shadow:0 12px 24px rgba(12,35,72,.07);
    transform-origin:center;
  }
  12%, 22%{
    box-shadow:0 16px 34px rgba(19,110,230,.16);
    border-color:rgba(18,104,231,.28);
    color:#0d58c4;
  }
}
@keyframes platformRingBreath{
  0%, 100%{ transform:scale(1); opacity:.86; }
  50%{ transform:scale(1.02); opacity:1; }
}
@keyframes platformInputGlow{
  0%, 100%{ box-shadow:0 10px 22px rgba(12,35,72,.06); border-color:rgba(23,53,95,.08); }
  10%, 22%{ box-shadow:0 16px 32px rgba(18,104,231,.15); border-color:rgba(18,104,231,.22); }
}
@keyframes platformOutputGlow{
  0%, 100%{ box-shadow:0 10px 22px rgba(12,35,72,.06); border-color:rgba(39,180,130,.16); }
  12%, 24%{ box-shadow:0 16px 32px rgba(34,170,128,.14); border-color:rgba(39,180,130,.28); }
}
@keyframes platformLinePulse{
  0%, 100%{ opacity:.18; transform:scaleX(.78); transform-origin:left center; }
  10%, 24%{ opacity:1; transform:scaleX(1); box-shadow:0 0 16px rgba(32,129,255,.24); }
}
@keyframes platformLinePulseOut{
  0%, 100%{ opacity:.18; transform:scaleX(.78); transform-origin:right center; }
  12%, 24%{ opacity:1; transform:scaleX(1); box-shadow:0 0 16px rgba(38,175,132,.18); }
}
@keyframes platformParticleOrbit1{
  0%{ transform:rotate(0deg) translateX(58px) rotate(0deg); }
  100%{ transform:rotate(360deg) translateX(58px) rotate(-360deg); }
}
@keyframes platformParticleOrbit2{
  0%{ transform:rotate(72deg) translateX(45px) rotate(-72deg); }
  100%{ transform:rotate(432deg) translateX(45px) rotate(-432deg); }
}
@keyframes platformParticleOrbit3{
  0%{ transform:rotate(20deg) translateX(34px) rotate(-20deg); }
  100%{ transform:rotate(380deg) translateX(34px) rotate(-380deg); }
}
@keyframes platformParticleOrbit4{
  0%{ transform:rotate(180deg) translateX(66px) rotate(-180deg); }
  100%{ transform:rotate(540deg) translateX(66px) rotate(-540deg); }
}
@keyframes platformParticleOrbit5{
  0%{ transform:rotate(250deg) translateX(51px) rotate(-250deg); }
  100%{ transform:rotate(610deg) translateX(51px) rotate(-610deg); }
}
.flow-stage:not(:last-child)::after{
  content:"→";
  position:absolute;
  top:36px;
  right:-14px;
  z-index:4;
  color:#70a0d6;
  font-size:20px;
  font-weight:900;
}
.platform-flow-controls-list span:not(:last-child)::after{
  content:"·";
  position:absolute;
  right:-3px;
  top:50%;
  transform:translateY(-50%);
  color:rgba(203,227,252,.7);
}
@media(max-width:860px){.flow-stage:not(:last-child)::after{
    display:none;
  }}
.enterprise-foundation-items div:not(:last-child){
  border-right:1px solid rgba(91,130,169,.20);
}
.decision-proof:not(:last-child){
  border-right:1px solid rgba(104,139,177,.18);
}
@media(max-width:820px){.enterprise-foundation-items div:not(:last-child){
    border-right:0;
    border-bottom:1px solid rgba(91,130,169,.18);
  }}
@media(max-width:560px){.decision-proof:not(:last-child){
    border-bottom:1px solid rgba(104,139,177,.18);
  }}
.platform-heading{
  display:block;
  max-width:1040px;
}
.platform-heading h2{
  max-width:900px;
}
.platform-heading p{
  max-width:1000px;
  margin:22px 0 0;
  color:#b2c5d9;
  font-size:19px;
  line-height:1.62;
}
.platform-control{
  gap:40px;
  padding-top:31px;
  color:#9db5cc;
  font-size:13px;
  font-weight:700;
  line-height:1.3;
  letter-spacing:.085em;
}
@media(max-width:900px){.platform-heading p{
    font-size:18px;
  }.platform-control{
    gap:22px 30px;
    font-size:12px;
  }}
@media(max-width:640px){.platform-heading p{
    margin-top:18px;
    font-size:17px;
  }.platform-control{
    justify-content:flex-start;
    gap:14px 24px;
    font-size:11px;
  }}
.platform-dark .platform-heading h1{
  max-width:900px;
  margin:0;
  color:#fff;
  font-size:54px;
  line-height:1.04;
  letter-spacing:-.04em;
  text-wrap:balance;
}
@media(max-width:1100px){.platform-dark .platform-heading h1{ font-size:46px; }}
@media(max-width:700px){.platform-dark .platform-heading h1{ font-size:38px; }}
.administrative-footer{
  position:relative;
  padding:36px 24px 20px;
  background:#061224;
  color:#fff;
}
.admin-footer-main{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(430px,.65fr);
  gap:64px;
  align-items:start;
}
.admin-footer-brand p{
  max-width:420px;
  margin:16px 0 0;
  color:#8298b1;
  font-size:14px;
  line-height:1.55;
}
.admin-footer-nav{
  display:grid;
  grid-template-columns:minmax(110px,.65fr) minmax(280px,1.35fr);
  gap:40px;
  align-items:start;
}
.admin-footer-nav > div{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.admin-footer-nav strong{
  margin-bottom:3px;
  color:#fff;
  font-size:12px;
  letter-spacing:.02em;
}
.admin-trust-links{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  column-gap:24px;
  row-gap:8px;
}
.admin-trust-links > div{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.admin-footer-nav a{
  color:#859bb4;
  font-size:13px;
  text-decoration:none;
}
.admin-footer-nav a:hover,
.admin-footer-bottom a:hover{
  color:#fff;
}
.admin-footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  margin-top:30px;
  padding-top:17px;
  border-top:1px solid rgba(143,176,211,.14);
  color:#67819e;
  font-size:12px;
}
.admin-footer-bottom a{
  color:#67819e;
  text-decoration:none;
}
@media(max-width:900px){.admin-footer-main{
    grid-template-columns:1fr;
    gap:32px;
  }.admin-footer-nav{
    max-width:620px;
  }}
@media(max-width:620px){.administrative-footer{padding:32px 20px 18px}.admin-footer-nav{grid-template-columns:1fr;gap:24px}.admin-trust-links{grid-template-columns:1fr 1fr;column-gap:20px}.admin-footer-bottom{align-items:flex-start;flex-direction:column;gap:10px}}
@media(max-width:420px){.admin-trust-links{grid-template-columns:1fr}}
.platform-hero-visual{margin:70px 0 46px}
.platform-hero-system{max-width:1120px;width:100%;margin:0 auto}
.platform-hero-system .scenario-frame{box-shadow:0 30px 70px rgba(1,9,23,.36)}
.platform-hero-system .scenario-stage{min-height:455px}
.platform-hero-system .scenario-zone-title,
.platform-hero-system .scenario-output-title{color:#8db7de}
@media (max-width: 960px){.platform-hero-visual{margin:56px 0 38px}.platform-hero-system .scenario-stage{min-height:430px}}
.platform-hero-visual{margin:74px 0 48px}
.platform-hero-system{max-width:1160px;width:100%;margin:0 auto}
.platform-hero-system .scenario-frame{
  min-height:640px;
  padding:24px 24px 18px;
  border-radius:28px;
  background:linear-gradient(145deg,#ffffff 0%,#f5f9ff 52%,#edf8f7 100%);
  box-shadow:0 36px 90px rgba(1,9,23,.38), inset 0 1px 0 rgba(255,255,255,.95);
}
.platform-hero-system .scenario-topbar{
  height:30px;
  font-size:9px;
  letter-spacing:.14em;
}
.platform-hero-system .scenario-name{
  min-width:150px;
  font-size:17px;
  letter-spacing:.12em;
}
.platform-hero-system .scenario-processing,
.platform-hero-system .scenario-live-label{
  font-size:9px;
}
.platform-hero-system .scenario-stage{
  min-height:492px;
  height:492px;
  margin-top:16px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,.84),rgba(241,248,255,.72));
}
.platform-hero-system .scenario-zone-title{
  font-size:8.5px;
  margin-bottom:12px;
}
.platform-hero-system .scenario-input-zone{
  left:18px;
  top:36px;
  transform:scale(1.08);
  transform-origin:left top;
}
.platform-hero-system .scenario-output-zone{
  right:18px;
  top:36px;
  transform:scale(1.08);
  transform-origin:right top;
}
.platform-hero-system .scenario-input-card,
.platform-hero-system .primary-outcome-card,
.platform-hero-system .confidence-module,
.platform-hero-system .secondary-statuses > div,
.platform-hero-system .issue-pill{
  border-radius:15px;
}
.platform-hero-system .scenario-card-copy small,
.platform-hero-system .issue-pill small,
.platform-hero-system .confidence-copy small,
.platform-hero-system .scenario-assurance,
.platform-hero-system .scenario-control{
  letter-spacing:.12em;
}
.platform-hero-system .scenario-card-copy strong,
.platform-hero-system .outcome-copy strong{font-size:13px}
.platform-hero-system .scenario-card-copy span{font-size:9px}
.platform-hero-system .graph-zone{
  top:42px;
  width:226px;
  transform:translateX(-50%) scale(1.18);
  transform-origin:center top;
}
.platform-hero-system .graph-shell{
  border:1px solid rgba(127,177,229,.24);
  background:
    radial-gradient(circle at 50% 42%, rgba(67,121,190,.48) 0%, rgba(43,97,164,.72) 35%, rgba(20,64,121,.90) 68%, rgba(10,37,83,.98) 100%);
  box-shadow:
    0 0 0 9px rgba(42,113,214,.05),
    0 22px 52px rgba(10,46,97,.28),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.platform-hero-system .graph-shell::before{
  inset:18px;
  border-color:rgba(172,210,247,.18);
}
.platform-hero-system .graph-orbit{
  border-color:rgba(205,231,255,.15);
}
.platform-hero-system .graph-label{
  width:118px;
  min-height:86px;
  background:transparent;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
}
.platform-hero-system .graph-label small{
  color:rgba(223,239,255,.9);
  font-size:6.3px;
}
.platform-hero-system .graph-label strong{
  margin-top:5px;
  color:#ffffff;
  font-size:8.4px;
  line-height:1.36;
  text-shadow:0 2px 12px rgba(5,16,34,.36);
}
.platform-hero-system .edge-spark{box-shadow:0 0 15px rgba(32,216,194,.9)}
.platform-hero-system .issue-pill{
  width:210px;
  min-height:61px;
  margin-top:18px;
}
.platform-hero-system .scenario-footer{
  min-height:84px;
  padding-top:16px;
}
.platform-hero-system .scenario-controls{gap:8px}
.platform-hero-system .scenario-control{
  min-height:34px;
  font-size:7.6px;
  border-radius:10px;
}
.platform-hero-system .scenario-assurance{
  margin-top:13px;
  font-size:6.9px;
  gap:20px;
}
@media (max-width: 1100px){.platform-hero-system .scenario-input-zone,
  .platform-hero-system .scenario-output-zone{transform:scale(1.03)}.platform-hero-system .graph-zone{transform:translateX(-50%) scale(1.12)}}
@media (max-width: 960px){.platform-hero-visual{margin:58px 0 38px}.platform-hero-system .scenario-frame{min-height:610px;padding:20px 18px 16px}.platform-hero-system .scenario-stage{min-height:470px;height:470px}.platform-hero-system .graph-zone{transform:translateX(-50%) scale(1.08)}}
@media (max-width: 760px){.platform-hero-system .scenario-frame{min-height:700px}.platform-hero-system .scenario-stage{min-height:560px;height:560px}.platform-hero-system .scenario-input-zone,
  .platform-hero-system .scenario-output-zone{transform:none}.platform-hero-system .graph-zone{transform:translateX(-50%) scale(1.02)}}
.platform-hero-visual{margin:70px 0 42px}
.platform-hero-system{max-width:1180px;width:100%;margin:0 auto}
.platform-hero-system .scenario-frame{
  min-height:662px;
  padding:22px 24px 18px;
  border-radius:32px;
  background:linear-gradient(180deg,#071c3a 0%,#072247 100%);
  border:1px solid rgba(124,170,220,.18);
  box-shadow:0 36px 90px rgba(1,10,24,.34), inset 0 1px 0 rgba(255,255,255,.04);
  overflow:hidden;
}
.platform-hero-system .scenario-frame::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 46%, rgba(58,121,199,.18), transparent 34%),
    linear-gradient(rgba(104,165,228,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104,165,228,.06) 1px, transparent 1px);
  background-size:auto, 28px 28px, 28px 28px;
  opacity:.92;
}
.platform-hero-system .scenario-topbar{
  position:relative;
  z-index:2;
  min-height:36px;
  color:#8fb8de;
  font-size:10px;
  letter-spacing:.16em;
}
.platform-hero-system .scenario-name{
  color:#ffffff;
  font-size:16px;
  letter-spacing:.16em;
}
.platform-hero-system .scenario-processing,
.platform-hero-system .scenario-live-label{color:#82b1d8}
.platform-hero-system .scenario-stage{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:255px minmax(320px,1fr) 255px;
  gap:34px;
  align-items:center;
  min-height:500px;
  height:auto;
  margin-top:16px;
  padding:20px 8px 6px;
  background:transparent;
  border:0;
}
.platform-hero-system .scenario-grid,
.platform-hero-system .scenario-flow-svg,
.platform-hero-system .confidence-module,
.platform-hero-system .secondary-statuses,
.platform-hero-system .hero-neural-ring,
.platform-hero-system .edge-spark,
.platform-hero-system .graph-orbit.orbit-three{display:none !important}
.platform-hero-system .scenario-input-zone,
.platform-hero-system .scenario-output-zone{
  position:relative;
  left:auto; right:auto; top:auto;
  transform:none;
  width:100%;
  z-index:3;
}
.platform-hero-system .scenario-zone-title{
  margin-bottom:12px;
  color:#8eb6dc;
  font:800 10px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.18em;
}
.platform-hero-system .scenario-input-zone,
.platform-hero-system .scenario-output-zone{display:grid;gap:14px}
.platform-hero-system .scenario-input-card,
.platform-hero-system .hero-output-card{
  position:relative;
  min-height:72px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(127,171,219,.22);
  background:linear-gradient(180deg,rgba(8,40,83,.84) 0%,rgba(7,31,66,.92) 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03), 0 12px 26px rgba(3,12,28,.18);
  overflow:visible;
}
.platform-hero-system .scenario-input-card::after,
.platform-hero-system .hero-output-card::before{
  content:"";
  position:absolute;
  top:50%;
  width:68px;
  height:2px;
  transform:translateY(-50%);
  background:linear-gradient(90deg,rgba(157,219,255,.18),rgba(157,219,255,.78),rgba(157,219,255,.18));
  opacity:.72;
}
.platform-hero-system .scenario-input-card::after{right:-68px}
.platform-hero-system .hero-output-card::before{left:-68px}
.platform-hero-system .scenario-input-card::before,
.platform-hero-system .hero-output-card::after{
  content:"";
  position:absolute;
  top:50%;
  width:8px;
  height:8px;
  border-radius:50%;
  transform:translateY(-50%);
  background:#c8ebff;
  box-shadow:0 0 0 5px rgba(117,201,255,.12),0 0 18px rgba(145,223,255,.45);
}
.platform-hero-system .scenario-input-card::before{right:-72px}
.platform-hero-system .hero-output-card::after{left:-72px}
.platform-hero-system .scenario-stage.scenario-running .scenario-input-card::after,
.platform-hero-system .scenario-stage.scenario-running .hero-output-card::before{
  background-size:140px 2px;
  animation:platformConnectorPulse 2.7s linear infinite;
}
@keyframes platformConnectorPulse{
  from{background-position:-120px 0}
  to{background-position:120px 0}
}
.platform-hero-system .input-symbol,
.platform-hero-system .hero-output-icon{
  width:36px;
  height:36px;
  flex:0 0 36px;
  border-radius:10px;
  display:grid;
  place-items:center;
  font:800 10px/1 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.08em;
  color:#eaf7ff;
  border:1px solid rgba(165,214,255,.18);
  background:rgba(10,30,59,.48);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
.platform-hero-system .input-symbol.blue{color:#6fc2ff;border-color:rgba(111,194,255,.28)}
.platform-hero-system .input-symbol.teal{color:#66efd8;border-color:rgba(102,239,216,.28)}
.platform-hero-system .input-symbol.violet{color:#b08cff;border-color:rgba(176,140,255,.28)}
.platform-hero-system .input-symbol.cyan{color:#8ee8ff;border-color:rgba(142,232,255,.28)}
.platform-hero-system .hero-output-icon.check{color:#8de3ff}
.platform-hero-system .hero-output-icon.alert{color:#b89cff}
.platform-hero-system .hero-output-icon.ledger{color:#79e7d2}
.platform-hero-system .hero-output-icon.audit{color:#f0c56b}
.platform-hero-system .scenario-card-copy,
.platform-hero-system .hero-output-copy{min-width:0}
.platform-hero-system .scenario-card-copy small,
.platform-hero-system .hero-output-copy small{
  display:block;
  margin-bottom:4px;
  color:#88a9c9;
  font:800 8px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.14em;
}
.platform-hero-system .scenario-card-copy strong,
.platform-hero-system .hero-output-copy strong{
  display:block;
  color:#ffffff;
  font-size:13px;
  line-height:1.15;
  margin-bottom:4px;
}
.platform-hero-system .scenario-card-copy span,
.platform-hero-system .hero-output-copy span{
  display:block;
  color:#9fc1de;
  font-size:10px;
  line-height:1.35;
}
.platform-hero-system .input-active-dot{display:none}
.platform-hero-system .graph-zone{
  position:relative;
  top:auto;
  left:auto;
  transform:none;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:3;
}
.platform-hero-system .graph-shell{
  position:relative;
  width:338px;
  height:338px;
  border-radius:50%;
  border:1px solid rgba(118,175,229,.18);
  background:radial-gradient(circle at 50% 48%, rgba(35,87,151,.58) 0%, rgba(18,60,120,.74) 44%, rgba(11,39,87,.92) 78%, rgba(7,26,66,.98) 100%);
  box-shadow:0 0 0 14px rgba(40,101,177,.04), inset 0 1px 0 rgba(255,255,255,.05);
}
.platform-hero-system .graph-shell::before{display:none}
.platform-hero-system .graph-orbit{
  position:absolute;
  left:50%; top:50%;
  border:1px solid rgba(163,205,244,.34);
  border-radius:50%;
  transform:translate(-50%,-50%);
}
.platform-hero-system .graph-orbit.orbit-one{width:252px;height:252px;opacity:.75}
.platform-hero-system .graph-orbit.orbit-two{width:308px;height:308px;opacity:.55}
.platform-hero-system .hero-fig-particle-orbit{position:absolute;left:50%;top:50%;transform-origin:center center;animation-duration:28s}
.platform-hero-system .hero-fig-path-one{width:250px;height:250px;margin-left:-125px;margin-top:-125px}
.platform-hero-system .hero-fig-path-two{width:308px;height:308px;margin-left:-154px;margin-top:-154px}
.platform-hero-system .hero-fig-path-three{width:240px;height:240px;margin-left:-120px;margin-top:-120px}
.platform-hero-system .hero-fig-path-four{width:300px;height:300px;margin-left:-150px;margin-top:-150px}
.platform-hero-system .hero-fig-path-five{width:268px;height:268px;margin-left:-134px;margin-top:-134px;display:block !important}
.platform-hero-system .hero-fig-particle{
  width:11px;height:11px;border-radius:50%;display:block;
  box-shadow:0 0 10px currentColor, 0 0 18px currentColor;
}
.platform-hero-system .hero-fig-particle-cyan{color:#7bf0e0;background:#7bf0e0}
.platform-hero-system .hero-fig-particle-blue{color:#8ccfff;background:#8ccfff}
.platform-hero-system .hero-fig-particle-violet{color:#c69bff;background:#c69bff}
.platform-hero-system .hero-fig-particle-teal{color:#9ae8ff;background:#9ae8ff}
.platform-hero-system .hero-fig-particle-blue-soft{color:#efc56c;background:#efc56c}
.platform-hero-system .graph-label{
  position:absolute;
  left:50%;top:50%;transform:translate(-50%,-50%);
  width:136px;
  min-height:0;
  text-align:center;
  background:transparent;
  border:0;
  box-shadow:none;
}
.platform-hero-system .graph-label small{
  display:block;
  margin-bottom:6px;
  color:#cfe4f8;
  font-size:7px;
  letter-spacing:.18em;
}
.platform-hero-system .graph-label strong{
  display:block;
  color:#ffffff;
  font-size:9.6px;
  line-height:1.35;
  letter-spacing:.14em;
  text-shadow:0 1px 12px rgba(5,20,42,.34);
}
.platform-hero-system .issue-pill{
  margin-top:16px;
  width:210px;
  min-height:58px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(123,175,229,.22);
  background:linear-gradient(180deg,rgba(8,35,74,.88) 0%,rgba(7,28,59,.94) 100%);
  box-shadow:0 12px 24px rgba(3,11,24,.18);
}
.platform-hero-system .issue-pill small{
  display:block;
  color:#88a9c9;
  font:800 8px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.14em;
}
.platform-hero-system .issue-pill strong{
  display:block;
  margin-top:5px;
  color:#ffffff;
  font-size:12px;
}
.platform-hero-system .issue-pill.resolved{border-color:rgba(107,213,180,.28)}
.platform-hero-system .issue-pill{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:210px;
  min-height:70px;
  height:70px;
  padding:10px 14px;
  overflow:hidden;
  border-color:rgba(255,159,170,.36);
  background:linear-gradient(145deg,#7b2434 0%,#9b3041 100%);
  box-shadow:0 12px 24px rgba(71,12,25,.18);
  transition:background .35s ease,border-color .35s ease,box-shadow .35s ease,transform .22s ease,opacity .22s ease;
}
.platform-hero-system .issue-pill small{
  flex:0 0 auto;
  color:#ffd9dd;
}
.platform-hero-system .issue-pill strong{
  display:-webkit-box;
  width:100%;
  margin-top:5px;
  overflow:hidden;
  color:#fff;
  font-size:12px;
  line-height:1.25;
  text-align:center;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}
.platform-hero-system .issue-pill.resolved{
  border-color:rgba(126,235,201,.36);
  background:linear-gradient(145deg,#0b6552 0%,#11826a 100%);
  box-shadow:0 12px 24px rgba(6,68,55,.18);
}
.platform-hero-system .issue-pill.resolved small{color:#d2fff1}
.platform-hero-system .issue-pill.resolved strong{color:#fff}
.platform-hero-system .scenario-assurance span{
  display:inline-flex;
  align-items:center;
  min-height:12px;
  padding-left:0;
  line-height:1.2;
}
.platform-hero-system .scenario-assurance span::before{
  position:static;
  flex:0 0 6px;
  margin-right:7px;
  transform:none;
}
.platform-hero-system .scenario-footer{
  position:relative;
  z-index:2;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(140,187,228,.14);
}
.platform-hero-system .scenario-controls{display:flex;justify-content:center;gap:10px;flex-wrap:wrap}
.platform-hero-system .scenario-control{
  min-height:36px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(125,173,222,.18);
  background:rgba(7,32,67,.72);
  color:#9ec3df;
  font:800 8.5px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.14em;
}
.platform-hero-system .scenario-control.active{
  background:linear-gradient(180deg,rgba(17,75,149,.92),rgba(10,55,116,.96));
  color:#ffffff;
  border-color:rgba(116,186,241,.34);
  box-shadow:0 10px 22px rgba(10,27,53,.22);
}
.platform-hero-system .scenario-assurance{
  justify-content:center;
  gap:22px;
  margin-top:14px;
  color:#88a9c9;
  font:800 8px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.16em;
}
.platform-hero-system .scenario-assurance span::before{
  content:"";
  display:inline-block;
  width:6px;height:6px;border-radius:50%;
  margin-right:7px;
  background:#6de0cd;
  box-shadow:0 0 10px rgba(109,224,205,.6);
}
@media (max-width: 1100px){.platform-hero-system .scenario-stage{grid-template-columns:236px minmax(300px,1fr) 236px;gap:24px}.platform-hero-system .scenario-input-card::after,
  .platform-hero-system .hero-output-card::before{width:42px}.platform-hero-system .scenario-input-card::after{right:-42px}.platform-hero-system .hero-output-card::before{left:-42px}.platform-hero-system .scenario-input-card::before{right:-46px}.platform-hero-system .hero-output-card::after{left:-46px}}
@media (max-width: 900px){.platform-hero-system .scenario-frame{min-height:0;padding:18px 16px 16px}.platform-hero-system .scenario-stage{grid-template-columns:1fr;gap:20px;padding:14px 4px 2px}.platform-hero-system .graph-zone{order:1}.platform-hero-system .scenario-input-zone{order:2}.platform-hero-system .scenario-output-zone{order:3}.platform-hero-system .scenario-input-card::after,
  .platform-hero-system .hero-output-card::before,
  .platform-hero-system .scenario-input-card::before,
  .platform-hero-system .hero-output-card::after{display:none}.platform-hero-system .graph-shell{width:292px;height:292px}.platform-hero-system .graph-orbit.orbit-one{width:220px;height:220px}.platform-hero-system .graph-orbit.orbit-two{width:268px;height:268px}}

.standard-main-nav .nav-links{gap:28px}
.standard-main-nav .nav-links>a,
.standard-main-nav .dropdown-parent,
.standard-main-nav .nav-login{
  font-family:Inter,"Helvetica Neue",Arial,sans-serif!important;
  font-size:14px!important;
  font-style:normal!important;
  font-weight:600!important;
  line-height:1!important;
  letter-spacing:.01em!important;
  text-transform:none!important;
  white-space:nowrap;
}
.standard-main-nav .dropdown-toggle{
  font-family:Inter,"Helvetica Neue",Arial,sans-serif!important;
  font-weight:600!important;
}
.standard-main-nav .nav-actions{flex:0 0 auto}
@media(max-width:1080px){.standard-main-nav .nav-links{gap:18px}}

h1{font-size:clamp(36px,4.05vw,52px)!important;line-height:1.045!important;letter-spacing:-.035em!important;}
@media(max-width:680px){h1{font-size:36px!important;line-height:1.07!important;}}
.platform-hero-system .scenario-topbar{
  min-height:72px;
  height:auto;
  align-items:center;
  padding:4px 2px 8px;
}
.platform-hero-system .scenario-case-header{
  min-width:300px;
  text-align:center;
  line-height:1;
}
.platform-hero-system .scenario-use-case{
  display:block;
  margin-bottom:7px;
  color:#8fc8f5;
  font:800 11px/1.1 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.platform-hero-system .scenario-name{
  min-width:0;
  color:#fff;
  font-size:27px;
  line-height:1.03;
  letter-spacing:.04em;
  font-weight:780;
}
.platform-hero-system .scenario-live-label,
.platform-hero-system .scenario-processing{
  align-self:center;
}
.platform-hero-system .scenario-frame{
  --case-accent:#2477d4;
  --case-accent-deep:#174f98;
  --case-soft:#edf6ff;
  --case-soft-2:#dfeeff;
  --case-border:#9dc9ee;
  --case-ink:#163b61;
  --case-muted:#527b9f;
}
.platform-hero-system .scenario-frame[data-case="1"]{
  --case-accent:#149982;
  --case-accent-deep:#0d6f61;
  --case-soft:#ecfbf7;
  --case-soft-2:#d9f5ed;
  --case-border:#8ed6c7;
  --case-ink:#144b43;
  --case-muted:#4c8077;
}
.platform-hero-system .scenario-frame[data-case="2"]{
  --case-accent:#6d61d8;
  --case-accent-deep:#4d43aa;
  --case-soft:#f3f1ff;
  --case-soft-2:#e7e3ff;
  --case-border:#b5adef;
  --case-ink:#353268;
  --case-muted:#696390;
}
.platform-hero-system .scenario-frame[data-case="3"]{
  --case-accent:#d28a28;
  --case-accent-deep:#9b6118;
  --case-soft:#fff7e9;
  --case-soft-2:#ffebc9;
  --case-border:#e7bd7a;
  --case-ink:#654418;
  --case-muted:#8b6b40;
}
.platform-hero-system .scenario-input-card,
.platform-hero-system .hero-output-card{
  background:linear-gradient(180deg,var(--case-soft) 0%,var(--case-soft-2) 100%);
  border-color:color-mix(in srgb,var(--case-border) 72%,white 28%);
  box-shadow:0 12px 28px rgba(4,20,43,.12),inset 0 1px 0 rgba(255,255,255,.86);
}
.platform-hero-system .scenario-card-copy small,
.platform-hero-system .scenario-zone-title,
.platform-hero-system .scenario-output-title{
  color:var(--case-accent-deep);
}
.platform-hero-system .scenario-card-copy strong,
.platform-hero-system .hero-output-copy strong{
  color:var(--case-ink);
}
.platform-hero-system .scenario-card-copy span,
.platform-hero-system .hero-output-copy span{
  color:var(--case-muted);
}
.platform-hero-system .input-symbol,
.platform-hero-system .hero-output-icon{
  background:rgba(255,255,255,.78)!important;
  color:var(--case-accent)!important;
  border:1px solid color-mix(in srgb,var(--case-border) 64%,white 36%);
  box-shadow:none;
}
.platform-hero-system .scenario-input-card::after,
.platform-hero-system .hero-output-card::before{
  background:linear-gradient(90deg,transparent,var(--case-accent),transparent);
  opacity:.58;
}
.platform-hero-system .scenario-input-card::before,
.platform-hero-system .hero-output-card::after{
  background:var(--case-accent);
  box-shadow:0 0 0 5px color-mix(in srgb,var(--case-accent) 15%,transparent),0 0 16px color-mix(in srgb,var(--case-accent) 38%,transparent);
}
.platform-hero-system .issue-pill{
  width:286px;
  min-height:88px;
  height:88px;
  padding:13px 20px;
  margin-top:16px;
  border-radius:17px;
}
.platform-hero-system .issue-pill small{
  font-size:10.5px;
  letter-spacing:.16em;
}
.platform-hero-system .issue-pill strong{
  margin-top:7px;
  font-size:15px;
  line-height:1.22;
  -webkit-line-clamp:2;
}
.platform-hero-system .scenario-footer{
  min-height:108px;
  padding-top:20px;
}
.platform-hero-system .scenario-controls{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  max-width:900px;
  margin:0 auto;
}
.platform-hero-system .scenario-control{
  min-height:54px;
  padding:13px 15px;
  border-radius:13px;
  background:#f3f8fd;
  color:#274a6b;
  border-color:#a9c9e4;
  font:800 11.5px/1.2 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing:.07em;
  box-shadow:0 8px 18px rgba(3,20,43,.10);
}
.platform-hero-system .scenario-control[data-scenario="0"]{
  background:#edf6ff;color:#1f5e9d;border-color:#9dc9ee;
}
.platform-hero-system .scenario-control[data-scenario="1"]{
  background:#ecfbf7;color:#127360;border-color:#8ed6c7;
}
.platform-hero-system .scenario-control[data-scenario="2"]{
  background:#f3f1ff;color:#5148aa;border-color:#b5adef;
}
.platform-hero-system .scenario-control[data-scenario="3"]{
  background:#fff7e9;color:#98621f;border-color:#e7bd7a;
}
.platform-hero-system .scenario-control.active{
  color:#fff;
  border-color:transparent;
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(3,20,43,.20);
}
.platform-hero-system .scenario-control[data-scenario="0"].active{background:linear-gradient(180deg,#3184dc,#1d67b7)}
.platform-hero-system .scenario-control[data-scenario="1"].active{background:linear-gradient(180deg,#22a98f,#137b69)}
.platform-hero-system .scenario-control[data-scenario="2"].active{background:linear-gradient(180deg,#786ce1,#564bc2)}
.platform-hero-system .scenario-control[data-scenario="3"].active{background:linear-gradient(180deg,#e2a043,#bd7821)}
.platform-hero-system .scenario-stage.scenario-running .scenario-input-card::after,
.platform-hero-system .scenario-stage.scenario-running .hero-output-card::before{
  animation-duration:4.6s;
}
@media(max-width:900px){.platform-hero-system .scenario-case-header{min-width:230px}.platform-hero-system .scenario-name{font-size:23px}.platform-hero-system .scenario-control{font-size:10.5px}}
@media(max-width:700px){.platform-hero-system .scenario-topbar{
    min-height:80px;
    grid-template-columns:1fr;
    text-align:center;
  }.platform-hero-system .scenario-live-label,
  .platform-hero-system .scenario-processing{display:none}.platform-hero-system .scenario-case-header{min-width:0}.platform-hero-system .scenario-controls{grid-template-columns:repeat(2,1fr)}.platform-hero-system .issue-pill{width:250px;min-height:82px;height:82px}}
