/* Features page redesign — scoped to .features-page only */
.features-page {
  overflow:clip;
  background:#020307
}
.features-page .features-hero {
  position:relative;
  overflow:hidden
}
.features-page .features-hero:before {
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 85%,rgba(0,119,255,.22),transparent 44%);
  pointer-events:none
}
.features-page .features-hero-copy {
  max-width:760px;
  margin:18px auto 0;
  color:#999eaf;
  font-size:17px;
  line-height:1.7;
  text-align:center
}
.features-page .features-overview,.features-page .features-core,.features-page .features-flow,.features-page .features-spotlight {
  padding:110px 0;
  position:relative
}
.features-page .features-overview-grid {
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(330px,.55fr);
  gap:26px;
  align-items:stretch
}
.features-page .features-stage {
  position:relative;
  min-height:690px;
  border:1px solid rgba(0,119,255,.32);
  border-radius:22px;
  overflow:hidden;
  background:radial-gradient(circle at 68% 42%,rgba(0,119,255,.18),transparent 34%),linear-gradient(145deg,#031326,#020814 70%);
  padding:42px
}
.features-page .features-stage:before {
  content:"";
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(0,119,255,.065) 1px,transparent 1px),linear-gradient(90deg,rgba(0,119,255,.065) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(to bottom,#000,transparent 82%)
}
.features-page .features-stage-copy {
  position:relative;
  z-index:3;
  max-width:670px
}
.features-page .features-dashboard-shell {
  position:absolute;
  left:42px;
  right:42px;
  bottom:34px;
  height:355px;
  border-radius:18px;
  perspective:1200px
}
.features-page .features-dashboard-shell>img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
  border-radius:16px;
  border:1px solid rgba(0,119,255,.32);
  box-shadow:0 25px 60px rgba(0,0,0,.48);
  transform:rotateX(4deg);
  transform-origin:bottom
}
.features-page .feature-float {
  position:absolute;
  z-index:5;
  display:grid;
  grid-template-columns:34px 1fr;
  grid-template-areas:"num title" "num copy";
  column-gap:10px;
  min-width:205px;
  padding:13px 15px;
  border:1px solid rgba(64,162,255,.42);
  border-radius:12px;
  background:rgba(2,14,31,.86);
  backdrop-filter:blur(12px);
  box-shadow:0 16px 35px rgba(0,0,0,.34)
}
.features-page .feature-float span {
  grid-area:num;
  width:32px;
  height:32px;
  border:1px solid #0077ff;
  border-radius:8px;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:11px;
  background:linear-gradient(145deg,rgba(0,119,255,.55),rgba(0,119,255,.12))
}
.features-page .feature-float strong {
  grid-area:title;
  color:#fff;
  font-size:13px
}
.features-page .feature-float small {
  grid-area:copy;
  color:#8491a8;
  font-size:10px
}
.features-page .feature-float-a {
  left:-18px;
  top:38px
}
.features-page .feature-float-b {
  right:-16px;
  top:132px
}
.features-page .feature-float-c {
  left:20%;
  bottom:-18px
}
.features-page .features-outcomes {
  display:grid;
  gap:18px
}
.features-page .feature-outcome-card {
  position:relative;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:18px;
  padding:28px;
  border:1px solid rgba(0,119,255,.28);
  border-radius:18px;
  background:linear-gradient(145deg,#04152c,#020a16);
  transition:border-color .3s ease,transform .3s ease
}
.features-page .feature-outcome-card:hover {
  transform:translateY(-4px);
  border-color:rgba(0,119,255,.68)
}
.features-page .feature-kicker {
  display:block;
  margin-bottom:7px;
  color:#5aa7ff;
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase
}
.features-page .feature-outcome-card h3 {
  margin:0 0 10px;
  color:#fff;
  font-size:20px
}
.features-page .feature-outcome-card p {
  margin:0;
  color:#929bac;
  font-size:14px;
  line-height:1.65
}
.features-page .features-centered-head {
  max-width:760px;
  margin:0 auto 54px;
  text-align:center
}
.features-page .features-bento {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:minmax(250px,auto);
  gap:16px
}
.features-page .feature-bento-card {
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:28px;
  border:1px solid rgba(0,119,255,.28);
  border-radius:18px;
  overflow:hidden;
  background:radial-gradient(circle at 100% 0,rgba(0,119,255,.18),transparent 32%),linear-gradient(145deg,#051a37,#020a16 76%);
  text-decoration:none;
  transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease
}
.features-page .feature-bento-card:before {
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(120deg,transparent 25%,rgba(0,119,255,.13),transparent 75%);
  transform:translateX(-100%);
  transition:transform .7s ease
}
.features-page .feature-bento-card:hover {
  transform:translateY(-5px);
  border-color:rgba(0,119,255,.72);
  box-shadow:0 20px 55px rgba(0,63,150,.14)
}
.features-page .feature-bento-card:hover:before {
  transform:translateX(100%)
}
.features-page .feature-bento-wide {
  grid-column:span 2
}
.features-page .feature-bento-tall {
  grid-row:span 2;
  min-height:516px
}
.features-page .feature-index {
  position:absolute;
  top:22px;
  right:24px;
  color:#4f6686;
  font-size:12px;
  letter-spacing:.12em
}
.features-page .feature-bento-card .v6-icon {
  margin-bottom:auto
}
.features-page .feature-bento-card>div {
  position:relative;
  z-index:2;
  margin-top:34px
}
.features-page .feature-bento-card h3 {
  margin:0 0 10px;
  color:#fff;
  font-size:22px;
  line-height:1.2
}
.features-page .feature-bento-card p {
  margin:0;
  color:#9aa3b5;
  font-size:14px;
  line-height:1.65
}
.features-page .feature-arrow {
  position:absolute;
  right:24px;
  bottom:24px;
  width:34px;
  height:34px;
  border:1px solid rgba(0,119,255,.48);
  border-radius:9px;
  display:grid;
  place-items:center;
  color:#fff;
  background:rgba(0,119,255,.1)
}
.features-page .feature-mini-orbit {
  position:relative!important;
  width:160px;
  height:160px;
  margin:46px auto 20px!important;
  border:1px solid rgba(0,119,255,.28);
  border-radius:50%
}
.features-page .feature-mini-orbit:before,.features-page .feature-mini-orbit:after {
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(0,119,255,.24);
  border-radius:50%
}
.features-page .feature-mini-orbit:after {
  inset:42px
}
.features-page .feature-mini-orbit i {
  position:absolute;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#41a4ff;
  box-shadow:0 0 18px #0077ff;
  animation:fpOrbit 7s linear infinite;
  left:76px;
  top:-4px;
  transform-origin:4px 84px
}
.features-page .feature-mini-orbit i:nth-child(2) {
  animation-delay:-2.3s
}
.features-page .feature-mini-orbit i:nth-child(3) {
  animation-delay:-4.6s
}
@keyframes fpOrbit {
  to {
    transform:rotate(360deg)
  }
}
.features-page .features-flow {
  background:linear-gradient(180deg,rgba(0,67,145,.11),transparent 72%)
}
.features-page .features-flow-head {
  max-width:680px;
  margin-bottom:48px
}
.features-page .feature-flow-track {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid rgba(0,119,255,.3);
  border-radius:18px;
  overflow:hidden;
  background:#031326
}
.features-page .feature-flow-track article {
  position:relative;
  padding:34px 30px;
  min-height:190px;
  border-right:1px solid rgba(0,119,255,.24)
}
.features-page .feature-flow-track article:last-child {
  border-right:0
}
.features-page .feature-flow-track article:not(:last-child):after {
  content:"→";
  position:absolute;
  right:-11px;
  top:38px;
  z-index:3;
  width:22px;
  height:22px;
  border:1px solid rgba(0,119,255,.55);
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#031326;
  color:#66b3ff;
  font-size:12px
}
.features-page .feature-flow-track span {
  display:block;
  margin-bottom:26px;
  color:#168bff;
  font-size:12px
}
.features-page .feature-flow-track strong {
  display:block;
  margin-bottom:10px;
  color:#fff;
  font-size:18px
}
.features-page .feature-flow-track p {
  margin:0;
  color:#919bad;
  font-size:13px;
  line-height:1.65
}
.features-page .features-spotlight-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
  align-items:center
}
.features-page .features-spotlight-copy ul {
  list-style:none;
  padding:0;
  margin:30px 0 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px
}
.features-page .features-spotlight-copy li {
  color:#c2cad7;
  font-size:14px
}
.features-page .features-spotlight-copy li span {
  display:inline-grid;
  place-items:center;
  width:22px;
  height:22px;
  margin-right:9px;
  border:1px solid rgba(0,119,255,.55);
  border-radius:6px;
  color:#fff;
  background:rgba(0,119,255,.15);
  font-size:11px
}
.features-page .features-spotlight-visual {
  position:relative;
  border:1px solid rgba(0,119,255,.32);
  border-radius:20px;
  padding:22px;
  background:radial-gradient(circle at 50% 40%,rgba(0,119,255,.18),transparent 48%),#031326
}
.features-page .features-spotlight-visual img {
  display:block;
  width:100%;
  height:auto;
  border-radius:14px
}
.features-page .spotlight-chip {
  position:absolute;
  padding:10px 14px;
  border:1px solid rgba(0,119,255,.5);
  border-radius:9px;
  background:rgba(2,12,27,.88);
  backdrop-filter:blur(10px);
  color:#fff;
  font-size:12px;
  box-shadow:0 10px 28px rgba(0,0,0,.3)
}
.features-page .chip-one {
  left:-20px;
  top:26%
}
.features-page .chip-two {
  right:-20px;
  bottom:18%
}
.features-page .fp-reveal-section {
  opacity:1;
  transform:none
}
.features-page.js-features-ready .fp-reveal-section:not(.is-visible) {
  opacity:.01;
  transform:translateY(28px)
}
.features-page.js-features-ready .fp-reveal-section {
  transition:opacity .75s ease,transform .75s cubic-bezier(.2,.7,.2,1)
}
.features-page.js-features-ready .fp-reveal-section.is-visible {
  opacity:1;
  transform:none
}
@media(max-width:1050px) {
  .features-page .features-overview-grid,.features-page .features-spotlight-grid {
    grid-template-columns:1fr
  }
  .features-page .features-stage {
    min-height:720px
  }
  .features-page .features-bento {
    grid-template-columns:repeat(2,1fr)
  }
  .features-page .feature-bento-wide {
    grid-column:span 1
  }
  .features-page .feature-bento-tall {
    grid-row:span 1;
    min-height:300px
  }
  .features-page .feature-flow-track {
    grid-template-columns:repeat(2,1fr)
  }
  .features-page .feature-flow-track article:nth-child(2) {
    border-right:0
  }
  .features-page .feature-flow-track article:nth-child(-n+2) {
    border-bottom:1px solid rgba(0,119,255,.24)
  }
  .features-page .feature-flow-track article:nth-child(2):after {
    display:none
  }
}
@media(max-width:700px) {
  .features-page .features-overview,.features-page .features-core,.features-page .features-flow,.features-page .features-spotlight {
    padding:76px 0
  }
  .features-page .features-stage {
    min-height:610px;
    padding:26px
  }
  .features-page .features-dashboard-shell {
    left:22px;
    right:22px;
    bottom:26px;
    height:280px
  }
  .features-page .feature-float {
    display:none
  }
  .features-page .features-bento,.features-page .feature-flow-track {
    grid-template-columns:1fr
  }
  .features-page .feature-flow-track article {
    border-right:0;
    border-bottom:1px solid rgba(0,119,255,.24)
  }
  .features-page .feature-flow-track article:last-child {
    border-bottom:0
  }
  .features-page .feature-flow-track article:after {
    display:none!important
  }
  .features-page .features-spotlight-copy ul {
    grid-template-columns:1fr
  }
  .features-page .spotlight-chip {
    display:none
  }
  .features-page .features-hero-copy {
    font-size:15px
  }
  .features-page .feature-bento-card {
    min-height:250px
  }
}
@media(prefers-reduced-motion:reduce) {
  .features-page * {
    animation:none!important;
    transition:none!important
  }
  .features-page.js-features-ready .fp-reveal-section {
    opacity:1!important;
    transform:none!important
  }
}
