/* RoboShadow design system.
   Consolidated from the v49 prototypes: every declaration shared by at
   least half of the pages lives here. Page-specific overrides are in
   assets/css/pages/<page>.css and load after this file.
   Regenerate with the porting pipeline, do not hand-edit wholesale. */

/* Every ported <img> carries width and height attributes so the browser can
   reserve space before the file loads. Those attributes are presentational
   hints on the width and height properties, which would otherwise pin an axis
   the prototypes left to the aspect ratio. This reset keeps the attributes as
   a ratio hint only; any rule below with a class or descendant selector still
   wins, exactly as it did in the prototypes. */
img{width:auto;height:auto}

:root{
  --cobalt: #003cb1;
  --cobalt-bright: #2a64ff;
  --cobalt-glow: #3f7bff;
  --slate: #6b719a;
  --ink: #eef0f7;
  --muted: #9aa0bd;
  --faint: #6f76a0;
  --gold: #e9b949;
  --warn: #e0a85a;
  --good: #63d69b;
  --bad: #ff6b7d;
  --glass: rgba(18,20,42,.72);
  --r-sm: 12px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --shadow: 0 24px 70px rgba(0,0,0,.45);
  /* Per-side section pad. Adjacent sections join at 2x this value.
     50px → 100px join. Restore 80px to get the old 160px join. */
  --section-pad-y: 50px;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body{
  font-family: 'Poppins',system-ui,sans-serif;
  color: var(--ink);
  background: var(--bg0);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
}
body::after{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(120,140,220,.10) 1px, transparent 0);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
}
.wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.accent{
  color: var(--cobalt-glow);
}
.thin{
  font-weight: 300;
}
a{
  color: inherit;
}
::selection{
  background: rgba(42,100,255,.35);
  color: #fff;
}
.eyebrow{
  text-transform: uppercase;
  color: var(--cobalt-glow);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.eyebrow::before{
  content: "";
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg,var(--cobalt-glow),transparent);
  display: inline-block;
}
.new{
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
h1,h2,h3,.display{
  font-family: 'Space Grotesk','Poppins',sans-serif;
}
nav.top{
  position: sticky;
  top: 0;
  z-index: 300;
  backdrop-filter: blur(16px) saturate(140%);
  background: rgba(10,11,22,.66);
  border-bottom: 1px solid var(--line);
}
nav.top .bar{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.brand img{
  height: 26px;
  display: block;
}
.menu{
  display: flex;
  align-items: center;
  gap: 1px;
  height: 100%;
}
.menu>.item{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.menu>.item>a{
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  height: 100%;
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 400;
  transition: color .18s;
}
.menu>.item:hover>a{
  color: #fff;
}
.chev{
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
  opacity: .65;
}
.menu>.item:hover .chev{
  transform: rotate(-135deg) translateY(0);
}
.navcta{
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 500;
  font-size: .86rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s,box-shadow .18s,background .18s;
  font-family: 'Poppins',sans-serif;
}
.btn.primary{
  color: #fff;
}
.btn.primary:hover{
  filter: brightness(1.08);
}
.btn.ghost{
  color: #eef0f7;
}
.btn.lg{
  padding: 14px 28px;
  font-size: .95rem;
}
.btn .arw{
  transition: transform .18s;
}
.btn:hover .arw{
  transform: translateX(3px);
}
@media(max-width:1060px){.menu,.btn.ghost.hide-m{display:none}}
.mega{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(12,13,30,.98);
  border: 1px solid var(--line-hi);
  border-radius: 20px;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
  z-index: 310;
}
.menu>.item:hover .mega{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega.w1{
  min-width: 540px;
}
.mega.w2{
  min-width: 720px;
}
.mega.w3{
  min-width: 900px;
}
.mega-grid{
  display: grid;
  gap: 20px;
}
.mega-grid.c2{
  grid-template-columns: 1fr 1fr;
}
.mega-grid.c3{
  grid-template-columns: 1.05fr 1.05fr .9fr;
}
.mega-col h4{
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cobalt-glow);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Poppins',sans-serif;
}
.mega-link{
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
}
.mega-link:hover{
  background: var(--card-hi);
}
.mega-link .mi{
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42,100,255,.13);
  color: var(--cobalt-glow);
  margin-top: 1px;
}
.mega-link .mi svg{
  width: 16px;
  height: 16px;
}
.mega-link .t{
  display: block;
  color: #fff;
  font-size: .87rem;
  font-weight: 500;
  line-height: 1.3;
}
.mega-link .t .mini{
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--warn);
  border: 1px solid rgba(224,168,90,.4);
  border-radius: 100px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: middle;
}
.mega-link .d{
  display: block;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 300;
  margin-top: 2px;
  line-height: 1.35;
}
.mega-feature{
  background: linear-gradient(150deg,rgba(42,100,255,.16),rgba(42,100,255,.02));
  border: 1px solid rgba(42,100,255,.24);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mega-feature .k{
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cobalt-glow);
  font-weight: 700;
}
.mega-feature p{
  font-size: .82rem;
  color: #cfd3e6;
  font-weight: 300;
  margin-top: 8px;
}
.mega-feature a{
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.mega-feature a::after{
  content: " \2192 ";
  color: var(--cobalt-glow);
}
section{
  scroll-margin-top: 84px;
  position: relative;
}
.section-head{
  max-width: 760px;
}
.section-head.center{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center > p,
.centered-copy{
  margin-left: auto;
  margin-right: auto;
}
.section-head.center .eyebrow{
  justify-content: center;
}
.kicker{
  text-transform: uppercase;
  font-family: 'Poppins',sans-serif;
}
h2{
  font-weight: 600;
  font-size: clamp(1.7rem,3.4vw,2.55rem);
}
h2 .grad,h1 .grad{
  background: linear-gradient(100deg,#fff 0%, var(--sky) 55%, var(--cobalt-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h3{
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -.01em;
}
.section-head p{
  font-weight: 300;
  margin-top: 16px;
}
.grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.grid3{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.grid4{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
@media(max-width:920px){.grid3,.grid4{grid-template-columns:1fr 1fr}}
.card{
  position: relative;
  border: 1px solid var(--line-hi);
  border-radius: var(--r-lg);
  padding: 26px;
  scroll-margin-top: 94px;
  overflow: hidden;
}
.card::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  opacity: 0;
  transition: opacity .22s;
  background: linear-gradient(140deg,rgba(63,123,255,.6),transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.card:hover::before{
  opacity: 1;
}
.card .ic{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt-glow);
  border: 1px solid rgba(42,100,255,.2);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), background .3s;
}
.card:hover .ic{
  transform: scale(1.08) rotate(2deg);
  background: linear-gradient(150deg,rgba(42,100,255,.32),rgba(42,100,255,.12));
}
.card .ic svg{
  width: 22px;
  height: 22px;
}
.card p{
  font-weight: 300;
  margin-top: 9px;
}
.card .cap{
  list-style: none;
  margin-top: 15px;
  display: grid;
  gap: 9px;
}
.card .cap li{
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .84rem;
  color: #cfd3e6;
  font-weight: 300;
  line-height: 1.5;
}
.card .cap li svg{
  flex: none;
  width: 15px;
  height: 15px;
  color: var(--good);
  margin-top: 3px;
}
.card .foot{
  margin-top: 18px;
  font-size: .76rem;
  color: var(--faint);
  font-weight: 300;
}
.card .foot a{
  color: var(--cobalt-glow);
  text-decoration: none;
}
.tag{
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--line-hi);
  color: var(--muted);
  vertical-align: middle;
  font-family: 'Poppins',sans-serif;
}
.tag.soon{
  color: var(--warn);
  border-color: rgba(224,168,90,.4);
  background: rgba(224,168,90,.08);
}
.tag.core{
  color: var(--good);
  border-color: rgba(99,214,155,.4);
  background: rgba(99,214,155,.08);
}
.panel{
  border: 1px solid var(--line-hi);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  box-shadow: 0 4px 18px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.04);
}
.mlist{
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 6px;
}
.mlist li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 300;
  color: #c8cce0;
  font-size: .93rem;
  line-height: 1.55;
}
.mlist li svg{
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--cobalt-glow);
  margin-top: 3px;
}
.mlist b{
  font-weight: 600;
  color: #fff;
}
.callout{
  border: 1px solid rgba(42,100,255,.28);
  background: linear-gradient(120deg,rgba(42,100,255,.12),rgba(42,100,255,.02));
  border-radius: var(--r);
  padding: 20px 24px;
  margin-top: 26px;
  font-weight: 300;
  color: #d4d8ea;
  font-size: .98rem;
}
.callout b{
  font-weight: 600;
  color: #fff;
}
.pill-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--cobalt-glow);
  text-decoration: none;
}
.pill-link .arw{
  transition: transform .18s;
}
.pill-link:hover .arw{
  transform: translateX(3px);
}
table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
  font-size: .9rem;
}
th,td{
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}
th{
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Poppins',sans-serif;
}
tr:nth-child(even) td{
  background: rgba(255,255,255,.02);
}
tbody tr:hover td,table tr:hover td{
  background: rgba(42,100,255,.08);
}
td{
  font-weight: 300;
  color: #d4d8ea;
  transition: background .15s;
}
td b{
  color: #fff;
  font-weight: 600;
}
.tick{
  color: var(--good);
}
.cross{
  color: var(--faint);
}
.solx{
  position: relative;
  border: 1px solid var(--line-hi);
  border-radius: var(--r-xl);
  padding: 38px 40px 34px;
  margin-bottom: 26px;
  overflow: hidden;
  background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.014));
}
.solx::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg,var(--accent,var(--cobalt-glow)),transparent 85%);
}
.solx::before{
  content: "";
  position: absolute;
  top: -40%;
  right: -8%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle,color-mix(in srgb,var(--accent,var(--cobalt-glow)) 16%,transparent),transparent 66%);
  filter: blur(14px);
  pointer-events: none;
}
.solx-head{
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.solx-num{
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent,var(--cobalt-glow));
  border: 1px solid var(--line-hi);
  border-radius: 11px;
  padding: 8px 11px;
  flex: none;
  background: rgba(255,255,255,.03);
}
.solx-ic{
  width: 54px;
  height: 54px;
  border-radius: 15px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg,color-mix(in srgb,var(--accent,var(--cobalt-glow)) 30%,transparent),transparent);
  color: var(--accent,var(--cobalt-glow));
  border: 1px solid var(--line-hi);
}
.solx-ic svg{
  width: 27px;
  height: 27px;
}
.solx-kick{
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent,var(--cobalt-glow));
}
.solx-title{
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.18;
  margin-top: 4px;
}
.solx-lead{
  font-weight: 300;
  color: #cdd2e8;
  font-size: 1.05rem;
  line-height: 1.68;
  max-width: 940px;
  margin: 20px 0 26px;
  position: relative;
  z-index: 1;
}
.solx-lead b{
  font-weight: 600;
  color: #fff;
}
.solx-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}
.solx-panel h4{
  text-transform: uppercase;
  font-weight: 700;
}
.painrow{
  list-style: none;
  display: grid;
  gap: 10px;
}
.painrow li{
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-weight: 300;
  color: #c8cce0;
  font-size: .9rem;
  line-height: 1.5;
}
.painrow li svg{
  margin-top: 2px;
}
.fixrow{
  list-style: none;
  display: grid;
  gap: 10px;
}
.fixrow li{
  align-items: flex-start;
  font-weight: 300;
  color: #cfd3e6;
  font-size: .9rem;
  line-height: 1.5;
}
.fixrow li svg{
  color: var(--good);
  margin-top: 2px;
}
.fixrow li b{
  font-weight: 600;
  color: #fff;
}
.solx-stats{
  display: grid;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.statchip .n{
  font-weight: 700;
  color: #fff;
}
.statchip .k{
  color: var(--muted);
  min-height: 2.55em;
}
.solx-quote{
  position: relative;
  z-index: 1;
  font-weight: 300;
  font-style: italic;
  color: #e2e6f4;
  font-size: 1.04rem;
}
.solx-quote span{
  display: block;
  font-style: normal;
}
.solx-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
.solx-cta .pill-link{
  margin-top: 0;
}
.solx-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}
.uc-mini{
  padding: 24px;
}
.uc-mini .uc-lead{
  font-size: .9rem;
  color: #c8cce0;
  font-weight: 300;
  line-height: 1.55;
  margin: 11px 0 4px;
}
.uc-mini .uc-lead b{
  font-weight: 600;
  color: #fff;
}
.uc-mini .cap li b{
  font-weight: 600;
  color: #fff;
}
header.hero{
  position: relative;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
}
@media(max-width:960px){.hero-grid{grid-template-columns:1fr;gap:30px}}
.hero-pill{
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  color: #dfe2f0;
  font-weight: 300;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.hero-pill .dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
}
.hero-pill b{
  color: #fff;
  font-weight: 600;
}
h1{
  font-weight: 700;
}
.lede{
  font-weight: 300;
  font-size: clamp(1.04rem,1.7vw,1.2rem);
  color: #cbd0e6;
  max-width: 600px;
  margin-top: 24px;
  line-height: 1.62;
}
.lede strong{
  font-weight: 500;
  color: #fff;
}
.hero-cta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hero-note{
  color: var(--faint);
  font-size: .8rem;
  font-weight: 300;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg{
  width: 15px;
  height: 15px;
  color: var(--good);
}
.hero-visual{
  position: relative;
}
.hero-visual .glow{
  position: absolute;
  inset: -8% -6% -14% -6%;
  z-index: 0;
}
.hero-shot{
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}
.floaty{
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  animation: bob 6s ease-in-out infinite;
}
.floaty .l{
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.floaty .v{
  font-weight: 700;
  color: #fff;
  font-family: 'Space Grotesk',sans-serif;
  margin-top: 2px;
}
.floaty .v span{
  color: var(--good);
  font-size: .8rem;
}
.floaty.a{
  top: 6%;
  animation-delay: 0s;
}
.floaty.b{
  bottom: 8%;
  animation-delay: 1.5s;
}
@keyframes bob{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}
.hero-meta{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
}
.hero-meta .n{
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-family: 'Space Grotesk',sans-serif;
}
.hero-meta .n span{
  font-size: 1rem;
  color: var(--cobalt-glow);
}
.hero-meta .l{
  font-size: .78rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 9px;
  line-height: 1.4;
}
.logostrip{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.logostrip img{
  width: auto;
}
.logostrip img:hover{
  opacity: 1;
}
.strip-label{
  text-align: center;
  color: var(--faint);
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .02em;
  margin-bottom: 22px;
}
.logowall{
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 12px;
}
.logowall .cell{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.13);
  transition: border-color .2s,background .2s,transform .2s;
}
.logowall .cell:hover{
  border-color: rgba(42,100,255,.4);
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}
.logowall .cell img{
  max-width: 78%;
  opacity: .85;
  filter: grayscale(.4) brightness(1.35);
  transition: opacity .2s,filter .2s,transform .2s;
}
.logowall .cell:hover img{
  opacity: 1;
  filter: none;
  transform: scale(1.06);
}
.marquee{
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.marquee .track{
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll 52s linear infinite;
}
.marquee:hover .track{
  animation-play-state: paused;
}
.marquee .cell{
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 150px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
}
.marquee .cell img{
  max-height: 26px;
  max-width: 74%;
  opacity: .8;
  filter: grayscale(.4) brightness(1.35);
}
@keyframes scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.loop{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  position: relative;
}
.loop .step{
  position: relative;
  border-radius: var(--r-lg);
}
.loop .step .num{
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cobalt-glow);
}
.loop .step h3{
  margin: 12px 0 8px;
  font-size: 1.2rem;
}
.loop .step p{
  font-weight: 300;
  color: #c2c7dd;
  font-size: .9rem;
  line-height: 1.55;
}
.loop .step .arrow{
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt-glow);
}
.loop .step:last-child .arrow{
  display: none;
}
.showcase{
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.008));
}
.showtabs{
  display: flex;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.showtabs button{
  appearance: none;
  cursor: pointer;
  font-family: 'Poppins',sans-serif;
  font-weight: 500;
  color: var(--faint);
  opacity: .85;
  background: transparent;
  border: 1px solid transparent;
}
.showtabs button:hover{
  color: #fff;
  opacity: 1;
}
.showtabs button.on{
  color: #fff;
  opacity: 1;
}
.showbody{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  padding: 30px 32px;
  align-items: center;
}
.showpane{
  display: none;
}
.showpane.on{
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  gap: 26px;
  align-items: center;
}
.showpane h3{
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.showpane p{
  font-weight: 300;
  color: #c6cbe0;
  font-size: .95rem;
  line-height: 1.6;
}
.showpane .cap{
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.showpane .cap li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: #d4d8ea;
  font-weight: 300;
}
.showpane .cap li svg{
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--good);
  margin-top: 3px;
}
.shot-frame{
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
}
.shot-frame img{
  width: 100%;
  display: block;
}
.vsgrid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 11px;
  margin: 8px 0 26px;
}
@media(max-width:520px){.vsgrid{grid-template-columns:1fr}}
.vschip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--line-hi);
  background: rgba(255,255,255,.04);
  text-decoration: none;
  color: #dfe2f0;
  font-size: .88rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transition: border-color .2s,transform .2s,background .2s,box-shadow .2s;
}
.vschip:hover{
  border-color: rgba(42,100,255,.5);
  transform: translateY(-2px);
  background: rgba(42,100,255,.09);
}
.vschip b{
  color: #fff;
  font-weight: 500;
}
.vschip .arw{
  color: var(--cobalt-glow);
}
.acc{
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 10px;
}
.acc details{
  border-bottom: 1px solid var(--line);
}
.acc details:last-child{
  border-bottom: none;
}
.acc summary{
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background .18s;
}
.acc summary::-webkit-details-marker{
  display: none;
}
.acc summary .nm{
  font-weight: 600;
  color: #fff;
  font-family: 'Space Grotesk',sans-serif;
}
.acc summary .ct{
  font-size: .74rem;
  color: var(--muted);
  font-weight: 300;
  margin-left: auto;
  margin-right: 6px;
}
.acc summary .pm{
  width: 22px;
  height: 22px;
  flex: none;
  border: 1px solid var(--line-hi);
  border-radius: 6px;
  position: relative;
}
.acc summary .pm::before,.acc summary .pm::after{
  content: "";
  position: absolute;
  background: var(--cobalt-glow);
  transition: .2s;
}
.acc summary .pm::before{
  top: 50%;
  left: 5px;
  right: 5px;
  height: 1.5px;
  transform: translateY(-50%);
}
.acc summary .pm::after{
  left: 50%;
  top: 5px;
  bottom: 5px;
  width: 1.5px;
  transform: translateX(-50%);
}
.acc details[open] summary .pm::after{
  transform: translateX(-50%) scaleY(0);
}
.acc .body{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.acc .body .col.strong{
  border-right: 1px solid var(--line);
}
@media(max-width:680px){.acc .body{grid-template-columns:1fr}.acc .body .col.strong{border-right:none;padding-right:0}}
.acc .body .col h5{
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Poppins',sans-serif;
}
.acc .body .col.win h5{
  color: var(--good);
}
.acc .body .col.strong h5{
  color: var(--warn);
}
.acc .body ul{
  list-style: none;
  display: grid;
  gap: 8px;
}
.acc .body li{
  display: flex;
  gap: 9px;
  font-size: .86rem;
  color: #cfd3e6;
  font-weight: 300;
  line-height: 1.5;
}
.acc .body li svg{
  flex: none;
}
.acc .verdict{
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: #d4d8ea;
  font-weight: 300;
  font-size: .9rem;
}
.acc .verdict b{
  color: #fff;
  font-weight: 600;
}
.person{
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.person .av{
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(150deg,#2a3260,#151a34);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid var(--line-hi);
  font-family: 'Space Grotesk',sans-serif;
}
.person .role{
  font-size: .76rem;
  color: var(--cobalt-glow);
  font-weight: 500;
  margin-top: 2px;
}
.person p{
  font-size: .85rem;
  color: #c2c7dd;
  font-weight: 300;
  margin-top: 8px;
  line-height: 1.5;
}
.vidgrid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}
@media(max-width:800px){.vidgrid{grid-template-columns:1fr}}
.vidmain{
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  display: block;
  text-decoration: none;
}
.vidmain img{
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.vidmain .cap{
  padding: 15px 18px;
  background: rgba(255,255,255,.03);
}
.vidmain .cap .t{
  color: #fff;
  font-weight: 500;
  font-size: .96rem;
}
.vidmain .cap .d{
  color: var(--muted);
  font-size: .79rem;
  font-weight: 300;
  margin-top: 4px;
}
.play{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(42,100,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(42,100,255,.5);
}
.play::after{
  content: "";
  border-left: 17px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.vidlist{
  display: grid;
  gap: 8px;
}
.vidlist a{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.02);
  text-decoration: none;
  color: #dfe2f0;
  font-size: .85rem;
  transition: border-color .2s,background .2s;
}
.vidlist a:hover{
  border-color: rgba(42,100,255,.4);
  background: rgba(42,100,255,.05);
}
.vidlist a .dt{
  color: var(--faint);
  font-size: .73rem;
  white-space: nowrap;
}
.anchor-note{
  font-size: .75rem;
  color: var(--faint);
  font-weight: 300;
  margin-top: 14px;
}
.foot-one-line{
  display: flex;
  align-items: center;
  gap: 18px 24px;
  padding-bottom: 26px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.foot-one-line .brand{
  flex: none;
}
.foot-one-line .blurb{
  flex: 1 1 0;
  max-width: none;
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: .88rem;
  line-height: 1.5;
}
.foot-subscribe{
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 6px 8px 7px;
  border-radius: 12px;
  border: 1px solid rgba(42,100,255,.28);
  background: linear-gradient(120deg,rgba(42,100,255,.14),rgba(255,255,255,.03) 60%);
}
.foot-subscribe label{
  display: block;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #d7def4;
  font-weight: 600;
  line-height: 1.2;
  padding: 0 2px;
  font-family: 'Poppins',sans-serif;
}
.foot-subscribe .field{
  display: flex;
  flex-direction: row;
  gap: 6px;
  width: 271px;
  min-width: 271px;
  max-width: 271px;
}
.foot-subscribe input{
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-hi);
  border-radius: 10px;
  padding: 6px 9px;
  color: #fff;
  font-family: 'Poppins',sans-serif;
  font-size: .74rem;
}
.foot-subscribe input::placeholder{
  color: var(--faint);
}
.foot-subscribe .sub-btn{
  background: linear-gradient(100deg,var(--cobalt),var(--cobalt-bright));
  border: none;
  border-radius: 10px;
  color: #fff;
  padding: 0 10px;
  height: 32px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins',sans-serif;
  font-size: .72rem;
  white-space: nowrap;
}
.foot-subscribe .sub-btn:hover{
  filter: brightness(1.08);
}
.foot-subscribe .thanks{
  display: none;
  color: var(--good);
  font-size: .78rem;
  font-weight: 500;
  padding: 4px 2px;
}
.foot-subscribe.is-done .field{
  display: none;
}
.foot-subscribe.is-done .thanks{
  display: block;
}
.foot-social{
  display: flex;
  gap: 8px;
  flex: none;
}
.foot-social a{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid var(--line-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd3e6;
  text-decoration: none;
  transition: .18s;
}
.foot-social a:hover{
  background: rgba(42,100,255,.14);
  color: #fff;
}
.foot-social a svg{
  width: 13px;
  height: 13px;
}
.foot-grid{
  display: grid;
}
@media(max-width:560px){.foot-grid{grid-template-columns:repeat(2,1fr)}}
.mega-footer .foot-col h5{
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Poppins',sans-serif;
}
.foot-col a{
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: .83rem;
  font-weight: 300;
  padding: 5px 0;
  transition: color .15s;
}
.foot-col a:hover{
  color: #fff;
}
.foot-bottom{
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--faint);
  font-size: .78rem;
  font-weight: 300;
}
.vbanner{
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 13px 20px;
  border-radius: 14px;
  background: rgba(42,100,255,.08);
  border: 1px solid rgba(42,100,255,.22);
  color: #cfd3e6;
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.55;
}
.vbanner b{
  color: #fff;
  font-weight: 600;
}
.minion-issues{
  border: 1px dashed rgba(224,168,90,.5);
  background: rgba(224,168,90,.05);
  border-radius: var(--r);
  padding: 26px 28px;
  margin: 40px auto 60px;
  max-width: 1200px;
}
.minion-issues h4{
  color: var(--warn);
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-family: 'Poppins',sans-serif;
}
.minion-issues p.sub{
  color: var(--muted);
  font-size: .82rem;
  font-weight: 300;
  margin-bottom: 18px;
  max-width: 840px;
  line-height: 1.5;
}
.minion-issues ul{
  list-style: none;
  display: grid;
}
.minion-issues li{
  font-size: .85rem;
  color: #d9cbb0;
  font-weight: 300;
  line-height: 1.5;
}
.minion-issues li::before{
  content: "\2691";
}
.minion-issues b{
  color: #fff;
  font-weight: 600;
}
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in{
  opacity: 1;
  transform: none;
}
.badge-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--line-hi);
  background: rgba(255,255,255,.03);
  font-size: .8rem;
  color: #dfe2f0;
  font-weight: 300;
}
.badge svg{
  width: 14px;
  height: 14px;
  color: var(--good);
}
.new{
  background: none !important;
  color: inherit !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
:root{
  --violet: #8b5cf6;
  --teal: #2dd4bf;
  --amber: #f0a94c;
  --rose: #fb7185;
  --lime: #7bd88f;
  --azure: #38bdf8;
  --indigo: #6366f1;
  --ring: conic-gradient(from 180deg at 50% 50%, #2a64ff, #6366f1, #38bdf8, #2dd4bf, #2a64ff);
}
.aurora{
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  filter: blur(60px);
  opacity: .55;
}
.aurora span{
  position: absolute;
  display: block;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform;
}
.aurora .b1{
  width: 640px;
  height: 640px;
  top: -14%;
  left: 58%;
  background: radial-gradient(circle,rgba(42,100,255,.55),transparent 62%);
  animation: drift1 26s ease-in-out infinite;
}
.aurora .b2{
  width: 520px;
  height: 520px;
  top: 24%;
  left: -8%;
  background: radial-gradient(circle,rgba(99,102,241,.42),transparent 62%);
  animation: drift2 32s ease-in-out infinite;
}
.aurora .b3{
  width: 460px;
  height: 460px;
  top: 66%;
  left: 70%;
  background: radial-gradient(circle,rgba(45,212,191,.30),transparent 62%);
  animation: drift3 30s ease-in-out infinite;
}
@keyframes drift1{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-70px,60px) scale(1.12)}}
@keyframes drift2{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(80px,-40px) scale(1.08)}}
@keyframes drift3{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-60px,-70px) scale(1.14)}}
#scrollbar{
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0;
  z-index: 500;
  background: linear-gradient(90deg,var(--cobalt-bright),var(--azure),var(--teal));
  box-shadow: 0 0 14px rgba(42,100,255,.7);
  transition: width .08s linear;
}
section.band{
  position: relative;
}
section.band + section.band::before{
  content: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
}
section.band:nth-of-type(even)::after{
  content: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(1200px 480px at 50% 0%,rgba(42,100,255,.045),transparent 70%);
}
.kicker{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 13px 6px 11px;
  border-radius: 100px;
  background: rgba(42,100,255,.10);
  border: 1px solid rgba(42,100,255,.26);
  color: var(--sky);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.kicker::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cobalt-glow);
  box-shadow: 0 0 9px var(--cobalt-glow);
}
.appframe{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg,rgba(22,24,48,.9),rgba(12,13,28,.9));
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 2px 0 rgba(255,255,255,.05) inset;
}
.appframe::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(140deg,rgba(63,123,255,.55),transparent 40%,transparent 60%,rgba(45,212,191,.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.appframe .bar{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(255,255,255,.035);
  border-bottom: 1px solid var(--line);
}
.appframe .bar i{
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  flex: none;
}
.appframe .bar i:nth-child(1){
  background: #ff5f57;
}
.appframe .bar i:nth-child(2){
  background: #febc2e;
}
.appframe .bar i:nth-child(3){
  background: #28c840;
}
.appframe .bar .url{
  margin-left: 12px;
  flex: 1;
  height: 24px;
  border-radius: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  font-size: .68rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 340px;
}
.appframe .bar .url svg{
  width: 11px;
  height: 11px;
  color: var(--good);
  flex: none;
}
.appframe .bar .tag-live{
  margin-left: auto;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--good);
  border: 1px solid rgba(99,214,155,.35);
  background: rgba(99,214,155,.08);
  border-radius: 100px;
  padding: 3px 9px;
}
.appframe img{
  width: 100%;
  display: block;
}
header.hero{
  padding: 88px 0 52px;
}
.hero-grid{
  gap: 52px;
}
h1{
  font-size: clamp(2.7rem,5.4vw,4.35rem);
  line-height: 1.0;
}
.hero-pill{
  backdrop-filter: blur(8px);
}
.hero-shot{
  transform: perspective(1600px) rotateY(-5deg) rotateX(1.5deg);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  filter: drop-shadow(0 34px 60px rgba(0,0,0,.6));
}
.hero-visual:hover .hero-shot{
  transform: perspective(1600px) rotateY(-1deg) rotateX(.5deg);
}
.hero-visual .glow{
  background: radial-gradient(58% 55% at 62% 42%,rgba(42,100,255,.5),transparent 70%);
  filter: blur(38px);
}
.floaty{
  border-radius: 16px;
  background: rgba(14,16,34,.82);
}
.floaty.a{
  right: -6%;
}
.floaty.b{
  left: -7%;
}
.floaty .v{
  font-size: 1.3rem;
}
.hero-meta{
  gap: 0;
}
.hero-meta>div{
  padding: 0 26px;
  position: relative;
}
.hero-meta>div+div::before{
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
.hero-meta .n{
  font-size: 2.15rem;
  background: linear-gradient(120deg,#fff,var(--sky) 70%,var(--cobalt-glow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-meta .n span{
  -webkit-text-fill-color: var(--cobalt-glow);
}
.logostrip img{
  box-sizing: content-box;
}
.logostrip img:hover{
  border-color: rgba(42,100,255,.4);
  background: rgba(255,255,255,.06);
}
.loop .step{
  padding: 30px 28px;
  background: linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.012));
  border: 1px solid var(--line-hi);
  overflow: hidden;
}
.loop .step::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--cobalt-bright),var(--azure));
}
.loop .step:nth-child(2)::before{
  background: linear-gradient(90deg,var(--teal),var(--lime));
}
.loop .step:nth-child(3)::before{
  background: linear-gradient(90deg,var(--violet),var(--indigo));
}
.loop .step .num{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .72rem;
}
.loop .step .num::before{
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-block;
  background: linear-gradient(150deg,rgba(42,100,255,.28),rgba(42,100,255,.08));
  border: 1px solid rgba(42,100,255,.3);
}
.loop .step .arrow{
  background: rgba(14,16,34,.95);
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
}
#products .grid2 .card{
  overflow: hidden;
}
#products .grid2 .card::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: .9;
  background: var(--acc,linear-gradient(90deg,var(--cobalt-bright),var(--azure)));
}
#products .grid2 .card:nth-child(1){
  --acc: linear-gradient(90deg,#38bdf8,#2a64ff);
}
#products .grid2 .card:nth-child(2){
  --acc: linear-gradient(90deg,#2dd4bf,#7bd88f);
}
#products .grid2 .card:nth-child(3){
  --acc: linear-gradient(90deg,#2a64ff,#6366f1);
}
#products .grid2 .card:nth-child(4){
  --acc: linear-gradient(90deg,#6366f1,#8b5cf6);
}
#products .grid2 .card:nth-child(5){
  --acc: linear-gradient(90deg,#f0a94c,#fb7185);
}
#products .grid2 .card:nth-child(6){
  --acc: linear-gradient(90deg,#8b5cf6,#38bdf8);
}
#products .grid2 .card:nth-child(7){
  --acc: linear-gradient(90deg,#38bdf8,#2dd4bf);
}
#products .grid2 .card:nth-child(8){
  --acc: linear-gradient(90deg,#fb7185,#f0a94c);
}
#products .grid2 .card:nth-child(9){
  --acc: linear-gradient(90deg,#7bd88f,#2dd4bf);
}
#products .grid2 .card .ic{
  width: 50px;
  height: 50px;
  border-radius: 14px;
}
#products .grid2 .card .ic svg{
  width: 24px;
  height: 24px;
}
#solutions .card{
  padding: 22px 24px;
}
#solutions .card h3{
  font-size: 1rem;
}
.showcase{
  border-color: var(--line-hi);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.showtabs{
  gap: 6px;
  padding: 16px;
}
.showtabs button{
  padding: 9px 18px;
}
.shot-frame{
  border: none;
  background: none;
}
.shot-frame img{
  filter: drop-shadow(0 26px 54px rgba(0,0,0,.55));
}
.logowall .cell{
  height: 82px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}
.logowall .cell img{
  max-height: 32px;
}
#comparisons table th:nth-child(2),#comparisons table td:nth-child(2){
  background: linear-gradient(180deg,rgba(42,100,255,.12),rgba(42,100,255,.05)) !important;
  border-left: 1px solid rgba(42,100,255,.25);
  border-right: 1px solid rgba(42,100,255,.25);
}
.vschip{
  border-radius: 14px;
  padding: 14px 17px;
}
footer.mega-footer{
  padding: 0 0 34px;
  margin-top: 60px;
  border-top: none;
  background: linear-gradient(180deg,transparent,rgba(8,9,20,.85));
}
.foot-cta{
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 52px 48px;
  margin: 0 auto 60px;
  max-width: 1140px;
  background: linear-gradient(135deg,rgba(42,100,255,.20),rgba(99,102,241,.08) 55%,rgba(45,212,191,.10));
  border: 1px solid rgba(42,100,255,.30);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.foot-cta::before{
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  opacity: .5;
  pointer-events: none;
  background: radial-gradient(600px 300px at 20% 20%,rgba(56,189,248,.25),transparent 60%);
}
.foot-cta>*{
  position: relative;
  z-index: 1;
}
.foot-cta h3{
  font-family: 'Space Grotesk',sans-serif;
  font-size: clamp(1.5rem,3vw,2.1rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 640px;
}
.foot-cta p{
  color: #cfd3e6;
  font-weight: 300;
  margin-top: 12px;
  max-width: 560px;
  font-size: 1rem;
}
.foot-cta .row{
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 26px;
  align-items: center;
}
.mega-footer .foot-grid{
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: 28px;
}
@media(max-width:900px){
  .mega-footer .foot-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .foot-one-line{
    flex-direction: column;
    align-items: stretch;
  }
  .foot-subscribe{
    width: 100%;
  }
  .foot-subscribe .field{
    width: auto;
    min-width: 0;
    max-width: none;
    flex: 1;
  }
}
@media(max-width:560px){.mega-footer .foot-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
.foot-col h5{
  color: var(--sky);
}
.foot-region{
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.foot-region .rg{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .76rem;
  color: var(--muted);
  font-weight: 300;
}
.foot-region .rg svg{
  width: 14px;
  height: 14px;
  color: var(--good);
}
.btn.primary{
  position: relative;
  overflow: hidden;
}
.btn.primary::after{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg,transparent,rgba(255,255,255,.35),transparent);
  transform: skewX(-20deg);
  transition: left .5s;
}
.btn.primary:hover::after{
  left: 130%;
}
.card,.panel,.loop .step,.showcase,.vschip,.logowall .cell{
  scroll-margin-top: 100px;
}
.vbanner{
  display: none !important;
}
#comparisons .body .col h4{
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Poppins',sans-serif;
  color: #fff;
}
#comparisons .body .col.win h4{
  color: var(--good);
}
#comparisons .body .col.strong h4{
  color: var(--warn);
}
.top.subnav{
  position: sticky;
  top: 0;
}
.bh-hero{
  padding: 66px 0 30px;
  position: relative;
}
.bh-kick{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cobalt-glow);
  margin-bottom: 18px;
}
.bh-hero h1{
  font-size: clamp(2.4rem,5.4vw,4rem);
  line-height: 1.02;
  margin: 0 0 8px;
  max-width: 16ch;
}
.bh-hero .grad{
  background: linear-gradient(90deg,#7aa2ff,#c9b8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bh-lede{
  font-size: 1.14rem;
  color: var(--soft);
  max-width: 60ch;
  margin: 18px 0 24px;
  line-height: 1.55;
}
.bh-note{
  font-size: .86rem;
  color: var(--muted);
  margin-top: 16px;
  max-width: 60ch;
}
.bh-stats{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
  margin-top: 46px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.bh-stats .n{
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
}
.bh-stats .n span{
  color: var(--cobalt-glow);
}
.bh-stats .l{
  color: var(--muted);
  font-size: .84rem;
  margin-top: 4px;
  min-height: 2.1em;
}
.belief{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.belief .b{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.belief .b h3{
  font-family: 'Poppins',sans-serif;
  font-size: 1.12rem;
  margin: 0 0 8px;
  color: #fff;
}
.belief .b p{
  color: var(--soft);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}
.pgrid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
@media(max-width:900px){.pgrid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.pgrid{grid-template-columns:1fr}}
.pgrid a{
  text-decoration: none;
}
.pgrid .t{
  font-family: 'Poppins',sans-serif;
  font-weight: 600;
  color: #fff;
  display: block;
}
.pgrid .d{
  color: var(--muted);
  font-size: .86rem;
}
.oneagent{
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}
.autofix{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
}
@media(max-width:820px){.autofix{grid-template-columns:1fr}}
.autofix .big{
  font-family: 'Poppins',sans-serif;
  font-weight: 800;
  font-size: clamp(3rem,8vw,5rem);
  line-height: 1;
  background: linear-gradient(90deg,#7aa2ff,#63d69b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sectors{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.sectors .s{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.sectors .s h4{
  font-family: 'Poppins',sans-serif;
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: #fff;
}
.sectors .s p{
  color: var(--soft);
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.5;
  margin: 0;
}
.sectors .s a{
  color: var(--cobalt-glow);
  font-size: .82rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
.cmp-teaser{
  border-radius: 20px;
  padding: 34px;
  text-align: center;
}
.yt-band{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  border-radius: 20px;
  padding: 30px;
}
.minion-block{
  margin: 40px 0 60px;
  border: 1px dashed var(--line-hi);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255,255,255,.02);
}
.minion-block h4{
  font-family: 'Poppins',sans-serif;
  margin: 0 0 12px;
}
.minion-block ul{
  margin: 0;
  padding-left: 18px;
}
.minion-block li{
  color: var(--soft);
  font-weight: 300;
  font-size: .9rem;
  margin: 7px 0;
  line-height: 1.5;
}
.minion-block h5{
  color: #9fb0ff;
  margin: 18px 0 8px;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
:root{
  --gfx-teal: #38d1c5;
  --gfx-violet: #8b78ff;
  --gfx-aqua: #5ad0ff;
  --frost: rgba(255,255,255,.085);
  --tint-blue: rgba(63,123,255,.15);
  --tint-teal: rgba(56,209,197,.15);
  --tint-violet: rgba(139,120,255,.15);
  --tint-gold: rgba(233,185,73,.15);
}
.card{
  background: linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.028));
}
.panel{
  background: linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.032));
}
.gfx-orbs{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.gfx-orbs i{
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .42;
  animation: gfxfloat 24s ease-in-out infinite;
}
.gfx-orbs i.o1{
  width: 440px;
  height: 440px;
  top: -9%;
  left: -7%;
  background: radial-gradient(circle,rgba(63,123,255,.55),transparent 70%);
}
.gfx-orbs i.o2{
  width: 380px;
  height: 380px;
  top: 42%;
  right: -9%;
  background: radial-gradient(circle,rgba(56,209,197,.34),transparent 70%);
  animation-delay: -8s;
  opacity: .30;
}
.gfx-orbs i.o3{
  width: 320px;
  height: 320px;
  bottom: -8%;
  left: 34%;
  background: radial-gradient(circle,rgba(139,120,255,.34),transparent 70%);
  animation-delay: -15s;
  opacity: .32;
}
@keyframes gfxfloat{0%,100%{transform:translate(0,0)}33%{transform:translate(30px,-24px)}66%{transform:translate(-22px,20px)}}
.gfx-panel{
  position: relative;
  border: 1px solid var(--line-hi);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  overflow: hidden;
  background: linear-gradient(165deg,rgba(255,255,255,.10),rgba(255,255,255,.03));
}
.gfx-panel::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(120,160,255,.6),transparent);
}
.gfx-panel .gfx-h{
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cobalt-glow);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.gfx-panel .gfx-h::before{
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg,var(--cobalt-glow),transparent);
}
.gfx-gauge{
  --v: 72;
  --c: var(--cobalt-glow);
  width: 132px;
  height: 132px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--c) calc(var(--v)*1%), rgba(255,255,255,.07) 0);
}
.gfx-gauge .g-face{
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 34%,var(--bg2),var(--bg1));
  border: 1px solid var(--line-hi);
  display: grid;
  place-content: center;
  text-align: center;
}
.gfx-gauge .g-n{
  font-family: 'Space Grotesk',sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
}
.gfx-gauge .g-n span{
  font-size: .85rem;
  color: var(--muted);
}
.gfx-gauge .g-k{
  font-size: .56rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}
.gfx-gauge.teal{
  --c: var(--gfx-teal);
}
.gfx-gauge.good{
  --c: var(--good);
}
.gfx-gauge.gold{
  --c: var(--gold);
}
.gfx-donut{
  --a: 58;
  --b: 27;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(var(--cobalt-glow) 0 calc(var(--a)*1%),
    var(--gfx-teal) 0 calc((var(--a) + var(--b))*1%), rgba(255,255,255,.08) 0);
}
.gfx-donut::before{
  content: "";
  position: absolute;
  inset: 19px;
  border-radius: 50%;
  background: var(--bg1);
  border: 1px solid var(--line);
}
.gfx-donut .d-c{
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}
.gfx-donut .d-c b{
  font-family: 'Space Grotesk';
  font-size: 1.35rem;
  color: #fff;
}
.gfx-donut .d-c i{
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}
.gfx-bars{
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 126px;
  padding: 14px 0 22px;
}
.gfx-bars .b{
  flex: 1;
  min-height: 6px;
  border-radius: 6px 6px 3px 3px;
  position: relative;
  background: linear-gradient(180deg,var(--cobalt-glow),rgba(42,100,255,.22));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
  transition: filter .2s;
}
.gfx-bars .b:hover{
  filter: brightness(1.15);
}
.gfx-bars .b.teal{
  background: linear-gradient(180deg,var(--gfx-teal),rgba(56,209,197,.2));
}
.gfx-bars .b em{
  position: absolute;
  top: -17px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: .6rem;
  color: var(--sky);
  font-style: normal;
}
.gfx-bars .b i{
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: .6rem;
  color: var(--faint);
  font-style: normal;
}
.gfx-spark{
  width: 100%;
  height: 52px;
  color: var(--cobalt-glow);
  display: block;
  overflow: visible;
}
.gfx-spark path.line{
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gfx-spark path.area{
  fill: url(#gfxSparkFill);
  opacity: .35;
  stroke: none;
}
.gfx-spark circle{
  fill: #fff;
  stroke: currentColor;
  stroke-width: 2;
}
.gfx-meter{
  display: grid;
}
.gfx-meter .m .top{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .82rem;
  margin-bottom: 8px;
}
.gfx-meter .m .top b{
  color: #fff;
  font-weight: 500;
}
.gfx-meter .m .top span{
  color: var(--muted);
  font-weight: 300;
}
.gfx-meter .track{
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.gfx-meter .fill{
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg,var(--cobalt),var(--cobalt-glow));
}
.gfx-meter .fill.teal{
  background: linear-gradient(90deg,#1c8f88,var(--gfx-teal));
  box-shadow: 0 0 14px rgba(56,209,197,.45);
}
.gfx-meter .fill.good{
  background: linear-gradient(90deg,#2e9c6c,var(--good));
  box-shadow: 0 0 14px rgba(99,214,155,.4);
}
.gfx-meter .fill.gold{
  background: linear-gradient(90deg,#c08a2c,var(--gold));
  box-shadow: 0 0 14px rgba(233,185,73,.4);
}
.gfx-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.gfx-chips span{
  font-size: .78rem;
  color: #dfe3f2;
  font-weight: 300;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--line-hi);
  background: linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.02));
  transition: .2s;
}
.gfx-chips span:hover{
  border-color: rgba(63,123,255,.45);
  color: #fff;
  transform: translateY(-2px);
}
.gfx-chips span.on{
  background: var(--tint-blue);
  border-color: rgba(63,123,255,.4);
  color: #fff;
}
.gfx-chips span.teal{
  background: var(--tint-teal);
  border-color: rgba(56,209,197,.4);
  color: #dffcf7;
}
.gfx-kpi{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(148px,1fr));
  gap: 14px;
}
.gfx-kpi .pod{
  position: relative;
  padding: 20px 22px;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(160deg,var(--frost),rgba(255,255,255,.02));
  border: 1px solid var(--line-hi);
}
.gfx-kpi .pod::after{
  content: "";
  position: absolute;
  top: -34px;
  right: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--tint-blue);
  filter: blur(12px);
}
.gfx-kpi .pod.teal::after{
  background: var(--tint-teal);
}
.gfx-kpi .pod.violet::after{
  background: var(--tint-violet);
}
.gfx-kpi .pod .n{
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: 1.95rem;
  color: #fff;
  position: relative;
  line-height: 1;
}
.gfx-kpi .pod .n b{
  background: linear-gradient(100deg,#fff,var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.gfx-kpi .pod .k{
  font-size: .76rem;
  color: var(--muted);
  margin-top: 9px;
  position: relative;
  font-weight: 300;
  line-height: 1.4;
}
.gfx-kpi .pod .t{
  font-size: .66rem;
  font-weight: 600;
  color: var(--good);
  margin-top: 9px;
  position: relative;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.gfx-orbit{
  position: relative;
  width: 270px;
  height: 270px;
  margin: 0 auto;
}
.gfx-orbit .ring{
  position: absolute;
  border-radius: 50%;
  inset: 0;
  border: 1px dashed rgba(255,255,255,.14);
  animation: gfxspin 40s linear infinite;
}
.gfx-orbit .ring.r2{
  inset: 40px;
  border-style: solid;
  border-color: rgba(255,255,255,.06);
  animation-direction: reverse;
  animation-duration: 60s;
}
.gfx-orbit .core{
  position: absolute;
  inset: 39%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: radial-gradient(circle at 50% 34%,var(--cobalt-bright),var(--cobalt));
  box-shadow: 0 0 44px rgba(42,100,255,.6);
}
.gfx-orbit .core svg{
  width: 26px;
  height: 26px;
}
.gfx-orbit .sat{
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--frost);
  border: 1px solid var(--line-hi);
  color: var(--sky);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.gfx-orbit .sat svg{
  width: 22px;
  height: 22px;
}
.gfx-orbit .s1{
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}
.gfx-orbit .s2{
  top: 24%;
  right: -8px;
}
.gfx-orbit .s3{
  bottom: 24%;
  right: -8px;
}
.gfx-orbit .s4{
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}
.gfx-orbit .s5{
  bottom: 24%;
  left: -8px;
}
.gfx-orbit .s6{
  top: 24%;
  left: -8px;
}
@keyframes gfxspin{to{transform:rotate(360deg)}}
@media(prefers-reduced-motion:reduce){.gfx-orbit .ring{animation:none}}
.gfx-timeline{
  position: relative;
  padding-left: 28px;
}
.gfx-timeline::before{
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg,var(--cobalt-glow),rgba(63,123,255,.1));
}
.gfx-timeline .ev{
  position: relative;
  padding: 0 0 24px;
}
.gfx-timeline .ev:last-child{
  padding-bottom: 0;
}
.gfx-timeline .ev::before{
  content: "";
  position: absolute;
  left: -26px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cobalt-glow);
  box-shadow: 0 0 0 4px rgba(42,100,255,.18);
}
.gfx-timeline .ev .d{
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cobalt-glow);
  font-weight: 700;
}
.gfx-timeline .ev h5{
  font-size: .98rem;
  color: #fff;
  font-weight: 600;
  margin-top: 3px;
}
.gfx-timeline .ev p{
  font-size: .85rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 4px;
  line-height: 1.5;
}
.gfx-flow{
  display: flex;
  flex-wrap: wrap;
}
.gfx-flow .node{
  flex: 1;
  position: relative;
  border: 1px solid var(--line-hi);
}
.gfx-flow .node .s{
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gfx-flow .node h5{
  color: #fff;
  font-weight: 600;
}
.gfx-flow .node p{
  color: var(--muted);
  font-weight: 300;
}
.gfx-flow .node:not(:last-child)::after{
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--cobalt-glow);
  border-bottom: 2px solid var(--cobalt-glow);
  transform: translateY(-50%) rotate(-45deg);
  z-index: 2;
}
.gfx-badge{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid transparent;
}
.gfx-badge.blue{
  color: #cfe0ff;
  background: var(--tint-blue);
  border-color: rgba(63,123,255,.38);
}
.gfx-badge.teal{
  color: #d6fbf6;
  background: var(--tint-teal);
  border-color: rgba(56,209,197,.38);
}
.gfx-badge.violet{
  color: #e6e1ff;
  background: var(--tint-violet);
  border-color: rgba(139,120,255,.38);
}
.gfx-badge.gold{
  color: #f6e6bf;
  background: var(--tint-gold);
  border-color: rgba(233,185,73,.38);
}
.gfx-badge .dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}
.gfx-deco{
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}
.gfx-deco svg{
  display: block;
}
.gfx-deco.tr{
  top: 22px;
  right: 26px;
}
.gfx-deco.bl{
  bottom: 22px;
  left: 26px;
}
.gfx-deco.tl{
  top: 22px;
  left: 26px;
}
.gfx-deco.br{
  bottom: 22px;
  right: 26px;
}
.gfx-panel,.gfx-kpi,.gfx-flow{
  position: relative;
  z-index: 1;
}
:root{
  --bg0: #0e0f20;
  --bg1: #141531;
  --bg2: #1b1c40;
  --bg3: #232457;
  --card: rgba(255,255,255,.045);
  --card-hi: rgba(255,255,255,.075);
  --line: rgba(255,255,255,.10);
  --line-hi: rgba(255,255,255,.17);
  --sky: #b9d2ff;
  --orb-a: rgba(63,123,255,.30);
  --orb-b: rgba(126,92,255,.24);
  --orb-c: rgba(72,196,214,.18);
  --chip-bg: linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.03));
}
body::before{
  background: radial-gradient(1000px 640px at 82% -8%, rgba(60,120,255,.24), transparent 60%),
  radial-gradient(820px 560px at 6% 10%, rgba(96,74,190,.30), transparent 62%),
  radial-gradient(760px 560px at 100% 104%, rgba(50,170,196,.14), transparent 60%),
  linear-gradient(165deg,#0e0f20 0%,#141531 46%,#191a42 100%) !important;
}
body::after{
  opacity: .6 !important;
}
section>.wrap,section .wrap{
  position: relative;
  z-index: 1;
}
.wk-orbs{
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.wk-orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .55;
}
.wk-orb.a{
  width: 360px;
  height: 360px;
  background: var(--orb-a);
  top: -90px;
  right: -70px;
}
.wk-orb.b{
  width: 320px;
  height: 320px;
  background: var(--orb-b);
  bottom: -100px;
  left: -50px;
}
.wk-orb.c{
  width: 240px;
  height: 240px;
  background: var(--orb-c);
  top: 38%;
  left: 52%;
}
.wk-orb.float{
  animation: wkbob 9s ease-in-out infinite;
}
@keyframes wkbob{0%,100%{transform:translateY(0)}50%{transform:translateY(-18px)}}
.wk-ring{
  position: absolute;
  border: 1px solid var(--line-hi);
  border-radius: 50%;
  pointer-events: none;
  opacity: .5;
}
.wk-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}
.wk-chip{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 100px;
  border: 1px solid var(--line-hi);
  background: var(--chip-bg);
  backdrop-filter: blur(6px);
}
.wk-chip .n{
  font-family: 'Space Grotesk','Poppins',sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  background: linear-gradient(100deg,#fff,var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wk-chip .l{
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .02em;
}
.wk-chip .dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 10px var(--good);
}
.wk-tiles{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 16px;
  margin: 26px 0;
}
.wk-tile{
  position: relative;
  padding: 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-hi);
  background: linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.02));
  overflow: hidden;
  transition: transform .2s,border-color .2s;
}
.wk-tile:hover{
  transform: translateY(-4px);
  border-color: var(--cobalt-glow);
}
.wk-tile .wk-ic{
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  background: linear-gradient(150deg,var(--cobalt-bright),var(--cobalt));
  box-shadow: 0 8px 22px rgba(42,100,255,.35);
}
.wk-tile .wk-ic svg{
  width: 22px;
  height: 22px;
  color: #fff;
}
.wk-tile h4{
  position: relative;
  z-index: 1;
  font-family: 'Space Grotesk','Poppins',sans-serif;
  font-size: 1.04rem;
  margin: 0 0 8px;
}
.wk-tile p{
  position: relative;
  z-index: 1;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 300;
  margin: 0;
}
.wk-tile::after{
  content: "";
  position: absolute;
  top: -46px;
  right: -46px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--orb-a);
  filter: blur(42px);
  opacity: .5;
}
.wk-quote{
  position: relative;
  padding: 34px 32px 30px 70px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-hi);
  background: linear-gradient(120deg,rgba(42,100,255,.10),rgba(255,255,255,.02));
  margin: 26px 0;
}
.wk-quote>svg{
  position: absolute;
  top: 24px;
  left: 26px;
  width: 30px;
  height: 30px;
  color: var(--cobalt-glow);
  opacity: .65;
}
.wk-quote p{
  font-size: 1.16rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.wk-quote .by{
  margin-top: 14px;
  font-size: .85rem;
  color: var(--muted);
}
.wk-viz{
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
  margin: 24px 0;
}
.wk-viz figcaption{
  font-size: .82rem;
  color: var(--muted);
  margin-top: 8px;
}
.wk-donut{
  width: 124px;
  height: 124px;
  transform: rotate(-90deg);
}
.wk-donut .trk{
  fill: none;
  stroke: rgba(255,255,255,.09);
  stroke-width: 12;
}
.wk-donut .arc{
  fill: none;
  stroke: url(#wkg);
  stroke-width: 12;
  stroke-linecap: round;
}
.wk-donut .lbl{
  transform: rotate(90deg);
  transform-origin: center;
  fill: var(--ink);
  font-family: 'Space Grotesk','Poppins';
  font-weight: 700;
  font-size: 22px;
}
.wk-bars{
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 96px;
}
.wk-bars i{
  width: 18px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg,var(--cobalt-glow),var(--cobalt));
  display: block;
}
.wk-spark{
  width: 180px;
  height: 56px;
}
.wk-spark path{
  fill: none;
  stroke: var(--cobalt-glow);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wk-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}
.wk-badge{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-hi);
  background: var(--card);
  font-size: .82rem;
  color: var(--ink);
}
.wk-badge svg{
  width: 16px;
  height: 16px;
  color: var(--good);
  flex: none;
}
.wk-mesh{
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-hi);
  overflow: hidden;
  padding: 30px 32px;
  background: linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
}
.wk-mesh::before{
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  background-image: linear-gradient(rgba(120,140,220,.10) 1px,transparent 1px),linear-gradient(90deg,rgba(120,140,220,.10) 1px,transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(65% 70% at 50% 0,#000,transparent);
  mask-image: radial-gradient(65% 70% at 50% 0,#000,transparent);
}
.wk-mesh>*{
  position: relative;
  z-index: 1;
}
.wk-divider{
  display: block;
  width: 100%;
  height: 60px;
  margin: 8px 0;
  opacity: .9;
}
@media(max-width:720px){ .wk-quote{padding:28px 22px 26px 22px} .wk-quote>svg{position:static;display:block;margin-bottom:10px} }
.skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: #2a64ff;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus{
  left: 0;
}
a:focus-visible,button:focus-visible,[tabindex]:focus-visible,.btn:focus-visible{
  outline: 2px solid #3f7bff;
  outline-offset: 3px;
  border-radius: 6px;
}
.section-head.center .hero-cta{
  justify-content: center;
}
.bh-hero .wrap{
  text-align: center;
}
.bh-hero h1{
  margin-left: auto;
  margin-right: auto;
}
.bh-hero .bh-lede{
  margin-left: auto;
  margin-right: auto;
}
.bh-hero .hero-cta{
  justify-content: center;
}
.vs-hero .wrap{
  text-align: center;
}
.vs-hero .vs-title{
  justify-content: center;
  text-align: center;
}
.vs-hero .vs-title h1{
  margin-left: auto;
  margin-right: auto;
}
.vs-hero .vs-lede{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.vs-hero .crumb{
  justify-content: center;
}
:root{
  --ds7-e1: 0 8px 24px rgba(0,0,0,.28);
  --ds7-e2: 0 16px 48px rgba(0,0,0,.38);
  --ds7-e3: 0 28px 70px rgba(0,0,0,.48);
  --ds7-border-sm: rgba(255,255,255,.12);
  --ds7-border-md: rgba(255,255,255,.18);
}
section{
  padding: var(--section-pad-y) 0;
}
section.band{
  padding: var(--section-pad-y) 0;
}
section.tight{
  padding: 56px 0;
}
section.band + section.band{
  margin-top: 0;
  padding-top: var(--section-pad-y) !important;
}
section.band:has(+ section.band){
  padding-bottom: var(--section-pad-y) !important;
}
section.band + section.band::before{
  background: var(--ds7-border-md);
  opacity: 1;
}
h2{
  letter-spacing: -0.025em;
}
h3{
  line-height: 1.25;
  margin-bottom: 8px;
}
section p,.section-head p,.card p,.panel > p,.solx-lead,.callout{
  max-width: 65ch;
  line-height: 1.65;
}
.eyebrow,.kicker{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}
.eyebrow::before,.kicker::before{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cobalt-glow);
  box-shadow: 0 0 9px var(--cobalt-glow);
}
.card{
  box-shadow: var(--ds7-e1), inset 0 1px 0 rgba(255,255,255,.04);
  border-color: var(--ds7-border-md);
}
.card:hover{
  border-color: rgba(42,100,255,.5);
}
.panel,.solx-panel{
  box-shadow: var(--ds7-e1), inset 0 1px 0 rgba(255,255,255,.04);
  border-color: var(--ds7-border-md);
}
.panel:hover,.solx-panel:hover{
  box-shadow: var(--ds7-e2), inset 0 1px 0 rgba(255,255,255,.04);
}
.acc,.vschip{
  border-color: var(--ds7-border-md);
}
.vschip:hover{
  box-shadow: var(--ds7-e1);
}
.btn:focus-visible,a:focus-visible,button:focus-visible,summary:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline: 2px solid var(--cobalt-glow);
  outline-offset: 2px;
}
.card:hover{
  transform: translateY(-4px);
}
tbody tr:hover td{
  background: rgba(42,100,255,.12);
  box-shadow: inset 0 1px 0 var(--ds7-border-md);
}
.floaty{
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 20px rgba(42,100,255,.12);
  border: 1px solid var(--ds7-border-md);
}
section.band + section.band::before{
  width: min(1140px, 92%);
}
.hero-meta{
  padding-top: 40px;
  margin-top: 60px;
  margin-bottom: 40px;
}
.statchip{
  border-color: var(--ds7-border-md);
}
.tag,.badge{
  border-color: var(--ds7-border-md);
  transition: border-color 0.2s, background 0.2s;
}
.mega{
  box-shadow: var(--ds7-e2);
  border-color: var(--ds7-border-md);
}
::-webkit-scrollbar{
  width: 8px;
}
::-webkit-scrollbar-track{
  background: transparent;
}
::-webkit-scrollbar-thumb{
  background: rgba(42,100,255,.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover{
  background: rgba(42,100,255,.5);
}
h1{
  letter-spacing: -0.035em;
  word-spacing: 0.08em;
}
h2{
  line-height: 1.08;
  margin-bottom: 0.4em;
}
.section-head h2{
  margin-bottom: 1.2rem;
}
.section-head p{
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  line-height: 1.65;
}
.kicker{
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
  font-size: 0.68rem;
}
.eyebrow{
  font-weight: 700;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
}
.eyebrow::before{
  width: 28px;
}
.lede{
  letter-spacing: -0.008em;
}
.statchip .k{
  font-weight: 400;
}
.hero-cta .btn{
  padding: 11px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta .btn:focus-visible{
  outline: 2px solid var(--cobalt-glow);
  outline-offset: 3px;
}
.hero-pill{
  padding: 7px 16px 7px 10px;
  font-size: 0.76rem;
  margin-bottom: 20px;
  gap: 10px;
}
@media (max-width: 640px){
h1{
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.05;
}
h2{
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
}
.section-head{
  max-width: 100%;
  margin-bottom: 2.6rem;
}
.section-head p{
  font-size: 0.95rem;
}
.lede{
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  max-width: 100%;
}
.hero-cta{
  flex-direction: column;
  width: 100%;
}
.hero-cta .btn{
  width: 100%;
  justify-content: center;
}
.statchip{
  padding: 18px 18px;
}
.statchip .n{
  font-size: clamp(1.3rem, 3vw, 1.6rem);
}
.hero-pill{
  font-size: 0.72rem;
}
}
@media (prefers-reduced-motion: reduce){
.hero-cta .btn,.btn{
  transition: none;
}
}
.statchip{
  position: relative;
  overflow: hidden;
  transition: transform .22s, border-color .22s;
}
.statchip::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  transition: opacity .22s;
}
.statchip:hover{
  transform: translateY(-2px);
  border-color: rgba(42, 100, 255, .4);
}
.statchip:hover::before{
  opacity: 1;
}
.statchip .n{
  display: block;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  color: #ffffff;
  margin-bottom: 6px;
}
.statchip .k{
  display: block;
  letter-spacing: .01em;
  line-height: 1.4;
}
.spark{
  display: inline-block;
  height: 3px;
  background: linear-gradient(90deg,
    var(--cobalt-bright) 0%,
    var(--cobalt-glow) 100%);
  border-radius: 2px;
  vertical-align: baseline;
}
.fig{
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #fff;
}
.solx-stats{
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px){
.solx-stats{
  grid-template-columns: 1fr;
  gap: 14px;
}
}
.ic{
  position: relative;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.08);
}
.ic::after{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(42, 100, 255, .15), transparent 60%);
  pointer-events: none;
}
.ic svg{
  position: relative;
  z-index: 1;
}
.card > :first-child{
  margin-top: 0;
}
.card h3{
  margin-top: 8px;
  color: #fff;
}
.card > .ic + h3{
  margin-top: 6px;
}
.section-head p{
  color: #c6cae0;
}
.tag{
  transition: color .18s, border-color .18s, background .18s;
}
.tag:hover{
  border-color: rgba(255, 255, 255, .28);
}
.pill-link:hover{
  transform: translateX(2px);
}
.pill-link .arw{
  color: var(--cobalt-glow);
}
.gfx-panel::after{
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 100, 255, .12), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}
.gfx-panel > *{
  position: relative;
  z-index: 1;
}
.float{
  position: relative;
}
.float::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 35% 25%, rgba(42, 100, 255, .08), transparent 65%);
  pointer-events: none;
}
.floaty::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 180% 100% at 50% 0%, rgba(42, 100, 255, .1), transparent 75%);
  pointer-events: none;
  filter: blur(8px);
}
.statchip{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.statchip::before{
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.statchip .n{
  position: relative;
  z-index: 1;
}
.statchip .k{
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce){
.ic,.pill-link,.tag,.float,.floaty,.statchip{
  transition: none !important;
  animation: none !important;
}
}
.card,.section-head,.statchip,.panel{
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
html.ds-v1-ready .card:not(.is-in),html.ds-v1-ready .section-head:not(.is-in),html.ds-v1-ready .statchip:not(.is-in),html.ds-v1-ready .panel:not(.is-in){
  opacity: 0;
  transform: translateY(24px);
}
.card.is-in,.section-head.is-in,.statchip.is-in,.panel.is-in{
  opacity: 1;
  transform: translateY(0);
}
.btn{
  position: relative;
  overflow: hidden;
}
.btn:not(.primary){
  transition: transform 0.18s, background 0.18s, border-color 0.18s;
}
.btn:focus-visible{
  outline: 2px solid var(--cobalt-glow);
}
.btn.primary:focus-visible{
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}
.btn.ghost:hover{
  transform: translateY(-1px);
}
.btn.ghost:active{
  transform: translateY(0);
}
.pill-link{
  transition: transform 0.18s, color 0.18s;
}
.pill-link:hover{
  color: var(--cobalt-bright);
}
.pill-link:focus-visible{
  outline: 2px solid var(--cobalt-glow);
  outline-offset: 2px;
}
.mega-link{
  transition: transform 0.18s, background 0.18s, color 0.18s;
}
.mega-link:hover{
  transform: translateY(-2px);
  color: var(--cobalt-glow);
}
.mega-link:focus-visible{
  outline: 2px solid var(--cobalt-glow);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce){
.card,.section-head,.statchip,.panel,.btn,.pill-link,.mega-link{
  transition: none;
  animation: none;
}
.card:not(.is-in),.section-head:not(.is-in),.statchip:not(.is-in),.panel:not(.is-in){
  opacity: 1;
  transform: none;
}
}
.btn.primary{
  background: linear-gradient(100deg, #1552d6, #2a64ff);
  box-shadow: 0 8px 28px rgba(42, 100, 255, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.btn.primary::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(63, 123, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}
.btn.primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(42, 100, 255, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  background: linear-gradient(100deg, #1447c8, #3a7aff);
}
.btn.primary:hover::before{
  opacity: 1;
}
.btn.primary:active{
  transform: translateY(-1px);
}
.btn.ghost{
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  font-weight: 500;
  transition: all 0.18s ease;
}
.btn.ghost:hover{
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.hero-cta{
  gap: 16px;
  margin-top: 40px;
}
.hero-cta .btn.primary{
  flex: 0 0 auto;
  min-width: 160px;
  text-align: center;
}
.hero-cta .btn.ghost{
  flex: 0 0 auto;
}
@media (max-width: 640px){
.hero-cta{
  gap: 12px;
  margin-top: 32px;
}
}
.sticky-cta-bar{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 13, 22, 0.95);
  backdrop-filter: blur(12px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
}
body.show-cta-sticky .sticky-cta-bar{
  display: flex;
  animation: slide-up 0.36s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes slide-up{ from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce){
.sticky-cta-bar{
  animation: none;
  transform: translateY(0);
  opacity: 1;
}
}
section.band.footer-cta-band{
  padding: 60px 0 80px;
  position: relative;
}
section.band.footer-cta-band .wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
section.band.footer-cta-band h2{
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 22px;
  line-height: 1.15;
  color: #fff;
}
section.band.footer-cta-band .hero-cta{
  justify-content: center;
  margin-top: 36px;
}
@media (max-width: 640px){
section.band.footer-cta-band{
  padding: 48px 0 60px;
}
section.band.footer-cta-band h2{
  font-size: 1.48rem;
}
}
.card{
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover{
  box-shadow: 0 20px 60px rgba(42, 100, 255, 0.18);
}
.section-head{
  margin-bottom: 48px;
  position: relative;
}
.section-head .eyebrow,.section-head .kicker{
  margin-bottom: 20px;
}
.btn:focus-visible{
  outline-offset: 3px;
  border-radius: 100px;
}
@media (prefers-reduced-motion: reduce){
.btn,.card,.sticky-cta-bar{
  transition: none;
}
.btn:hover{
  transform: none;
}
.card:hover{
  transform: none;
}
}
.pgrid{
  gap: 18px;
}
.pgrid a{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 66px 22px 24px;
  background: linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border: 1px solid var(--line-hi);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .22s cubic-bezier(.2,.7,.2,1),border-color .22s,box-shadow .22s;
}
.pgrid a::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg,var(--cobalt-bright),var(--cobalt-glow) 55%,transparent);
}
.pgrid a::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(160deg,rgba(42,100,255,.16),rgba(42,100,255,.03) 70%,transparent);
}
.pgrid .pcard-ic{
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg,var(--cobalt-bright),var(--cobalt));
  box-shadow: 0 6px 16px rgba(42,100,255,.32);
  transition: transform .22s;
}
.pgrid .pcard-ic svg{
  width: 22px;
  height: 22px;
  color: #fff;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}
.pgrid .t{
  position: relative;
  z-index: 2;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.pgrid .d{
  position: relative;
  z-index: 2;
  line-height: 1.5;
}
.pgrid a:hover{
  transform: translateY(-4px);
  border-color: rgba(42,100,255,.5);
  box-shadow: 0 16px 40px rgba(42,100,255,.22),inset 0 1px 0 rgba(255,255,255,.08);
}
.pgrid a:hover .pcard-ic{
  transform: translateY(-1px) scale(1.05);
}
.pgrid a:hover::after{
  background: linear-gradient(160deg,rgba(42,100,255,.24),rgba(42,100,255,.05) 70%,transparent);
}
.gfx-panel:has(> .gfx-flow){
  border: none!important;
  background: none!important;
  box-shadow: none!important;
  padding: 0!important;
}
.gfx-panel:has(> .gfx-flow)::before{
  display: none!important;
}
.gfx-flow{
  gap: 22px;
}
.gfx-flow .node{
  min-width: 200px;
  padding: 24px 22px;
  overflow: hidden;
  border-top: 2px solid var(--step,var(--cobalt-glow));
  border-radius: var(--r-lg);
  background: linear-gradient(180deg,color-mix(in srgb,var(--step,var(--cobalt-glow)) 15%,transparent),rgba(255,255,255,.02) 58%,rgba(255,255,255,.012));
  box-shadow: 0 2px 14px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.05);
}
.gfx-flow .node:nth-child(1){
  --step: var(--cobalt-glow);
}
.gfx-flow .node:nth-child(2){
  --step: var(--gfx-teal);
}
.gfx-flow .node:nth-child(3){
  --step: var(--gold);
}
.gfx-flow .node .s{
  color: var(--step);
  font-size: .64rem;
}
.gfx-flow .node h5{
  font-size: 1.05rem;
  margin: 10px 0 7px;
}
.gfx-flow .node p{
  font-size: .85rem;
  line-height: 1.55;
}
.gfx-flow .node:not(:last-child)::after{
  border-right-color: var(--cobalt-glow);
  border-bottom-color: var(--cobalt-glow);
  opacity: .9;
}
@media(max-width:640px){.gfx-flow .node{min-width:100%}}
.logostrip{
  gap: 16px 18px;
  margin-top: 12px;
}
.logostrip img{
  opacity: 1;
  padding: 15px 22px;
}
.logostrip img:hover{
  transform: translateY(-2px);
}
:root{
  --panel: rgba(255,255,255,.035);
  --soft: #c7cce6;
}
.cmp-teaser{
  background: linear-gradient(160deg,rgba(42,100,255,.14),rgba(255,255,255,.02));
  border: 1px solid var(--line-hi);
}
.yt-band{
  background: linear-gradient(160deg,rgba(42,100,255,.10),rgba(255,255,255,.02));
  border: 1px solid var(--line-hi);
}
.foot-cta{
  text-align: center;
}
.foot-cta h3,.foot-cta p{
  margin-left: auto;
  margin-right: auto;
}
.foot-cta .row{
  justify-content: center;
}
.minion-block h4{
  color: #ffd166;
}
h1.promoted-h1{
  font-family: 'Space Grotesk','Poppins',sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem,2.8vw,1.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
}
.logostrip img{
  height: 44px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.32);
}
.logostrip img:hover{
  box-shadow: 0 16px 34px rgba(0,0,0,.42);
}
.logostrip.small img{
  height: 38px;
}
nav.top .brand img,nav .brand img{
  height: 34px;
}
.foot-one-line img,.foot-brand img,.foot-lead .brand img,.foot .brand img,footer .brand img{
  height: 30px;
}
.cmp-teaser p,.yt-band p,.yt-band p a{
  color: var(--soft);
}
.hero-pill{
  background: linear-gradient(135deg,rgba(42,100,255,.12),rgba(42,100,255,.05));
  border: 1px solid rgba(42,100,255,.25);
}
.hero-pill .dot{
  box-shadow: 0 0 12px rgba(99,214,155,.7);
}
.statchip{
  background: linear-gradient(165deg,rgba(255,255,255,.08),rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.12);
  padding: 22px 18px;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 16px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.05);
}
.statchip::before{
  padding: 1px;
  opacity: .3;
  background: linear-gradient(180deg,rgba(42,100,255,.4),transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.statchip .n{
  font-size: 2rem;
  color: #fff;
  line-height: 1.1;
}
.statchip .k{
  margin-top: 10px;
  font-size: .82rem;
}
.solx-panel h4{
  font-size: .76rem;
  letter-spacing: .16em;
  color: #fff;
  border-bottom: 2px solid transparent;
}
.solx-panel:first-child h4{
  border-bottom-color: var(--gold);
}
.solx-cols>div:last-child .solx-panel h4{
  border-bottom-color: var(--good);
}
.painrow,.fixrow{
  display: grid;
  gap: 14px;
  margin-top: 12px;
}
.painrow li,.fixrow li{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 13px;
  align-items: start;
}
.painrow li svg{
  width: 18px;
  height: 18px;
  flex: 0 0 20px;
  color: var(--gold);
}
.fixrow li svg{
  width: 18px;
  height: 18px;
  flex: 0 0 20px;
}
.logostrip.os-ticks{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 20px;
}
.logostrip.os-ticks .icon-col{
  display: flex;
  gap: 16px;
  justify-content: start;
}
.logostrip.os-ticks .icon-col svg{
  width: 24px;
  height: 24px;
}
.logostrip.os-ticks .label-col{
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.solx-quote{
  border-left: 4px solid var(--cobalt-glow);
  margin-top: 28px;
  line-height: 1.65;
  max-width: 900px;
  background: linear-gradient(90deg,rgba(42,100,255,.08) 0%,transparent 80%);
  border-radius: 0 var(--r) var(--r) 0;
}
.solx-quote span{
  font-size: .79rem;
  color: var(--sky);
  margin-top: 11px;
  letter-spacing: .03em;
  font-weight: 600;
  text-transform: uppercase;
}
.gfx-gauge{
  margin: 20px auto;
  z-index: 1;
}
.gfx-gauge .g-face{
  box-shadow: inset 0 2px 12px rgba(0,0,0,.42),inset 0 1px 0 rgba(255,255,255,.04);
}
.gfx-meter{
  gap: 18px;
  margin-top: 16px;
}
.gfx-meter .track{
  height: 10px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
}
.gfx-meter .fill{
  box-shadow: 0 0 16px rgba(42,100,255,.55);
}
.card .ic{
  margin-bottom: 18px;
  background: linear-gradient(150deg,rgba(42,100,255,.25),rgba(42,100,255,.08));
}
.card h3{
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.card p{
  color: #c8cce0;
  font-size: .92rem;
  line-height: 1.6;
}
.showtabs button{
  font-size: .86rem;
  border-radius: 10px;
  transition: all .2s;
}
.showtabs button:hover{
  background: rgba(42,100,255,.15);
  border-color: rgba(42,100,255,.35);
}
.showtabs button.on{
  background: linear-gradient(135deg,rgba(42,100,255,.25),rgba(42,100,255,.12));
  border-color: rgba(42,100,255,.45);
  box-shadow: 0 4px 12px rgba(42,100,255,.15);
}
.solx-panel+.solx-panel h4::before,.card h3::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--cobalt-bright),var(--azure));
  border-radius: inherit;
}
.acc .body{
  gap: 24px;
  padding: 20px 24px;
  background: transparent;
  border-top: 1px solid var(--line);
}
.acc .body .col h5{
  font-size: .72rem;
  letter-spacing: .14em;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
}
.acc .body .col.strong h5{
  border-bottom-color: var(--gold);
}
.acc .body .col.win h5{
  border-bottom-color: var(--good);
}
.acc .body .col.strong{
  padding-right: 24px;
}
.acc .body li svg{
  width: 16px;
  height: 16px;
  margin-top: 3px;
}
.acc summary .nm{
  font-size: 1.05rem;
}
.acc summary{
  background: linear-gradient(90deg,rgba(42,100,255,.08) 0%,transparent 80%);
  border-left: 3px solid rgba(42,100,255,.4);
  padding-left: 19px;
}
.acc summary:hover{
  background: linear-gradient(90deg,rgba(42,100,255,.12) 0%,transparent 80%);
}
.belief .b,.pgrid a,.sectors .s,.cmp-teaser,.yt-band{
  background: linear-gradient(165deg,rgba(255,255,255,.07),rgba(255,255,255,.022));
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.belief .b h3,.sectors .s h4,.pgrid .t{
  color: #fff;
  font-weight: 600;
}
.belief .b p,.sectors .s p,.pgrid .d{
  color: var(--soft);
}
.logostrip img{
  filter: grayscale(1) brightness(1.8) opacity(.75);
  transition: all .2s;
}
.logostrip img:hover{
  filter: grayscale(0) brightness(1) opacity(1);
}
.minion-issues ul{
  gap: 12px;
  grid-template-columns: 1fr;
}
.minion-issues li{
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 8px 0;
}
.minion-issues li::before{
  width: 20px;
  height: 20px;
  flex: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
}
.oneagent{
  padding: 12px;
  background: rgba(255,255,255,.02);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.08);
}
#comparisons table{
  border-collapse: collapse;
  background: transparent;
}
#comparisons table th{
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  padding: 14px;
  border-bottom: 2px solid rgba(255,255,255,.12);
  background: linear-gradient(90deg,rgba(255,255,255,.03),transparent);
}
#comparisons table th:nth-child(2){
  background: linear-gradient(90deg,rgba(42,100,255,.15),transparent);
}
#comparisons table td{
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
section.band:nth-of-type(even){
  background: linear-gradient(180deg,transparent 0%,rgba(42,100,255,.026) 28%,rgba(42,100,255,.016) 62%,transparent 100%);
}
.panel,.card,.gfx-panel{
  position: relative;
}
.reveal{
  will-change: transform;
}
.solx-panel{
  background: none!important;
  border: 0!important;
  box-shadow: none!important;
  border-radius: 0!important;
  padding: 0!important;
}
.solx-cols{
  gap: 48px;
  padding-top: 18px;
}
@media(max-width:760px){.solx-cols{gap:28px}}
.fixrow li{
  display: block;
  grid-template-columns: none;
  gap: 0;
  padding-left: 30px;
  position: relative;
}
.fixrow li svg{
  position: absolute;
  left: 0;
  top: 4px;
}
.solx-panel h4{
  padding-bottom: 44px;
  margin-bottom: 52px;
}
.solx-panel+.solx-panel h4::before{
  display: none!important;
}
.solx-panel+.solx-panel h4{
  border-bottom-color: #5c82b0!important;
}
.solx-quote{
  padding: 22px 0 22px 34px!important;
}
[id^="qa-r"]{
  scroll-margin-top: 120px;
}
.qa-anchor{
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
  line-height: 0;
}

/* ---------- repo additions (not from the prototypes) ---------- */
/* The prototypes set overflow-x on <body>, which does not stop the viewport
   scrolling sideways: the decorative background layers and the mega menu
   panels overhang on narrow screens. Clipping at the root does stop it. */
html{overflow-x:hidden}
/* Whole-card links: the prototypes only ever used .card as a <div>. */
a.card{display:block;text-decoration:none;color:inherit}
a.card h3{color:var(--ink)}
a.card:focus-visible{outline:2px solid var(--cobalt-glow);outline-offset:3px}

/* Page sheets paint `.statchip .n` with a white-to-blue `background:`
   shorthand. That fills the whole title row as a bar and, with a leftover
   transparent text fill, hides the words. Kill the bar. Titles stay white. */
.statchip .n{
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff;
}
.statchip .mark{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  min-height: 48px;
}
.statchip .mark img{
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.statchip .mark svg{
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--cobalt-glow);
}
.statchip .mark .ic{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt-glow);
  border: 1px solid rgba(42,100,255,.22);
  background: linear-gradient(150deg,rgba(42,100,255,.28),rgba(42,100,255,.08));
}
.statchip .mark .ic svg{
  width: 22px;
  height: 22px;
}
/* DEV review controls. JavaScript only adds these classes below /website/. */
.deletion-audit-active section,.deletion-audit-active>div{position:relative}
.deletion-audit-section-controls{position:absolute;z-index:20;left:max(7px,calc((100% - 1280px)/2 - 38px));top:50%;display:flex;flex-direction:column;align-items:center;gap:4px;transform:translateY(-50%)}
.deletion-audit-select{position:relative;width:18px;height:18px;cursor:pointer}
.deletion-audit-move,.deletion-audit-spacing{display:grid;place-items:center;width:24px;height:22px;padding:0;border:1px solid rgba(255,255,255,.32);border-radius:5px;background:#111126;color:#fff;font:700 14px/1 sans-serif;cursor:pointer;box-shadow:0 0 0 2px rgba(17,17,38,.7)}
.deletion-audit-move:hover,.deletion-audit-move:focus-visible{border-color:#90caf9;color:#90caf9}.deletion-audit-spacing{border-color:rgba(255,183,77,.62);color:#ffb74d}.deletion-audit-spacing:hover,.deletion-audit-spacing:focus-visible{border-color:#fff;color:#fff}.deletion-audit-move:disabled,.deletion-audit-spacing:disabled{cursor:not-allowed;opacity:.28}
.deletion-audit-checkbox{position:absolute;width:1px;height:1px;opacity:0}
.deletion-audit-box{display:block;width:18px;height:18px;border:1px solid rgba(255,255,255,.58);border-radius:4px;background:#111126;box-shadow:0 0 0 3px rgba(17,17,38,.7);transition:border-color .15s ease,background .15s ease,box-shadow .15s ease}
.deletion-audit-select:hover .deletion-audit-box,.deletion-audit-checkbox:focus-visible+.deletion-audit-box{border-color:#63d69b;box-shadow:0 0 0 3px rgba(99,214,155,.2)}
.deletion-audit-checkbox:checked+.deletion-audit-box{border-color:#63d69b;background:#63d69b}
.deletion-audit-checkbox:checked+.deletion-audit-box::after{content:"";display:block;width:9px;height:5px;margin:4px 0 0 3px;border-left:2px solid #07130d;border-bottom:2px solid #07130d;transform:rotate(-45deg)}
.deletion-audit-selected{outline:1px solid rgba(99,214,155,.28);outline-offset:-1px;background-image:linear-gradient(rgba(99,214,155,.025),rgba(99,214,155,.025))}
.deletion-audit-download{position:relative;z-index:10;padding:28px 0;border-top:1px solid rgba(99,214,155,.24);background:#0a0a14}
.deletion-audit-download .wrap{display:flex;align-items:center;justify-content:space-between;gap:20px}
.deletion-audit-download p{display:flex;flex-direction:column;gap:3px;margin:0;color:var(--ink)}
.deletion-audit-download p strong{font-family:"Space Grotesk",sans-serif;font-size:1rem}
.deletion-audit-count{color:var(--muted);font-size:.8rem}
.deletion-audit-actions{display:flex;align-items:center;gap:10px}
.deletion-audit-download button:disabled{cursor:not-allowed;opacity:.42}
@media(max-width:720px){.deletion-audit-section-controls{left:5px}.deletion-audit-download .wrap{align-items:stretch;flex-direction:column}.deletion-audit-actions{flex-direction:column}.deletion-audit-download button{width:100%}}
@media print{.deletion-audit-section-controls,.deletion-audit-download{display:none!important}.deletion-audit-selected{outline:0;background:none}}
/* COMPLETE-COMPARISON-TABLES */
.capability-shell{overflow:hidden;border:1px solid rgba(144,202,249,.18);border-radius:22px;background:#101122;box-shadow:0 24px 64px rgba(0,0,0,.24)}
.capability-top{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:30px 32px 27px;background:linear-gradient(125deg,#191a31 0%,#171a36 68%,#142b55 100%);border-bottom:1px solid rgba(144,202,249,.16)}
.capability-top h3{margin:5px 0 0;font-family:Poppins,sans-serif;font-size:clamp(1.45rem,2vw,2rem);line-height:1.18;color:#fff}.capability-top .kicker{color:#90caf9}.capability-count{display:flex;align-items:center;gap:12px;flex:0 0 auto;padding:11px 15px;border:1px solid rgba(144,202,249,.2);border-radius:12px;background:rgba(0,114,255,.09);color:#c3c9df;font-size:.7rem;line-height:1.25;text-transform:uppercase;letter-spacing:.09em}.capability-count strong{font:700 2rem/1 Poppins,sans-serif;color:#90caf9}
.status-legend{display:flex;flex-wrap:wrap;gap:22px;padding:17px 32px;background:#141529;border-bottom:1px solid rgba(255,255,255,.055)}.legend-item,.matrix-status{display:inline-flex;align-items:center;gap:10px}.legend-item{color:#bfc4d8;font-size:.75rem}.status-dot{display:grid;place-items:center;width:31px;height:31px;border:1px solid currentColor;border-radius:50%;font-weight:800;font-size:.88rem}.included .status-dot{color:#f3fff6;background:#54c77b;border-color:#a4efb8}.partial .status-dot{color:#fff9e8;background:#dea133;border-color:#ffdc8a}.missing .status-dot{color:#fff7f8;background:#df6974;border-color:#ffabb2}
.capability-scroll{overflow-x:auto;overscroll-behavior-inline:contain;scrollbar-color:#374772 #101122;scrollbar-width:thin}.capability-table{width:100%;min-width:720px;border-collapse:separate;border-spacing:0;color:#fff}.capability-table th{padding:18px 26px;background:#17182c;color:#aab0c8;font-size:.68rem;text-align:left;text-transform:uppercase;letter-spacing:.13em;border-bottom:1px solid rgba(144,202,249,.15)}.capability-table th:not(:first-child){width:25%;text-align:center;border-left:1px solid rgba(255,255,255,.055)}.capability-table th:nth-child(2){background:#182448;color:#bcd9ff}.capability-table td{height:64px;padding:12px 26px;border-bottom:1px solid rgba(255,255,255,.06);font-size:.86rem;line-height:1.4}.capability-table td:first-child{color:#eef0f7;font-weight:600}.capability-table td:not(:first-child){text-align:center;border-left:1px solid rgba(255,255,255,.045)}.capability-table tbody tr:not(.group):nth-child(odd) td{background:#101122}.capability-table tbody tr:not(.group):nth-child(even) td{background:#17182a}.capability-table tbody tr:not(.group):hover td{background:#1b2136}.capability-table .group td{height:auto;padding:15px 26px;background:#111f41;color:#a8d8ff;font-size:.76rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;border-top:5px solid #101122;border-bottom:1px solid rgba(89,175,250,.3)}
.matrix-status{display:grid;grid-template-columns:31px 92px;align-items:center;justify-content:center;gap:10px;min-width:143px;font-size:.77rem;color:#d7d9e5;text-align:left}.table-foot{padding:19px 32px 21px;border-top:1px solid rgba(255,255,255,.04);background:#0d0e1d;color:#969bb1;font-size:.72rem;line-height:1.65}.scroll-cue{display:none}
@media(max-width:720px){.capability-top{align-items:flex-start;padding:23px 20px}.capability-count{padding:9px 11px}.capability-count strong{font-size:1.6rem}.status-legend{gap:13px 18px;padding:15px 20px}.scroll-cue{display:block;padding:9px 20px;background:#0d0e1d;color:#90caf9;font-size:.68rem;text-align:right}.capability-table{min-width:680px}.capability-table td,.capability-table th{padding-left:18px;padding-right:18px}.table-foot{padding:17px 20px}}
