/* ============================================================
   Velantra — Pink/Purple Glassmorphism Theme (Homepage only)
   Loaded after styles.css + index.css, overrides palette,
   converts surfaces to frosted glass, and adds the gradient
   backdrop, transparent nav, scroll progress bar and 3D layer.
   ============================================================ */

:root{
  --pink: #ffffff;
  --pink-bright: #ffffff;
  --purple: #7b337e;
  --purple-deep: #3a1640;
  --purple-mid: #9c4a96;
  --plum: #3a1640;
  --plum-muted: #6e5374;
  --glass: rgba(255, 255, 255, .16);
  --glass-strong: rgba(255, 255, 255, .55);
  --glass-border: rgba(255, 255, 255, .4);
  --glass-shadow: 0 25px 70px rgba(58, 22, 64, .28);

  /* Re-tint shared variables so any var(--blue)/var(--orange)/var(--navy)
     usage on the homepage shifts to the new palette automatically */
  --blue: #7b337e;
  --royal: #5a2160;
  --orange: #c9508f;
  --navy: #3a1640;
  --navy-2: #532257;
  --shadow: 0 25px 70px rgba(58, 22, 64, .22);
}

/* ---------- Page backdrop ---------- */
html{
  background: #fff;
}
body.home-page{
  background: #ffffff;
  min-height: 100vh;
}
body.home-page ::selection{
  background: var(--purple);
  color: #fff;
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress{
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  box-shadow: 0 0 12px rgba(123, 51, 126, .6);
  z-index: 999;
  pointer-events: none;
}

/* ---------- Navigation on white background ---------- */
.site-header.home-header{
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .07);
  box-shadow: 0 4px 24px rgba(17, 18, 34, .06);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.home-header.is-scrolled{
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 6px 30px rgba(17, 18, 34, .1);
}
.home-header .brand-logo{
  background: transparent;
  border-radius: 10px;
}
.home-header .brand-lockup strong{
  color: #111222;
}
.home-header .brand-lockup small{
  color: #6b7280;
}
.home-header .main-nav{
  color: #111222;
}
.home-header .main-nav a:not(.button){
  color: #374151;
}
.home-header .main-nav a.active,
.home-header .main-nav a:not(.button):hover{
  color: #6358e8;
  background: rgba(99, 88, 232, .07);
}
.home-header .menu-toggle span{
  background: #111222;
}
.home-header .button-primary{
  background: linear-gradient(135deg, #6358e8, #8b5cf6);
  box-shadow: 0 8px 22px rgba(99, 88, 232, .35);
}
@media (max-width: 980px){
  .site-header.home-header .main-nav{
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(0, 0, 0, .08);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(17, 18, 34, .12);
  }
  .site-header.home-header .main-nav a:not(.button){
    color: #374151;
  }
  .site-header.home-header .main-nav a.active,
  .site-header.home-header .main-nav a:not(.button):hover{
    color: #6358e8;
    background: rgba(99, 88, 232, .08);
  }
}

/* ---------- Hero ---------- */
.platform-hero{
  background: #ffffff;
}
.platform-badge{
  background: rgba(99, 88, 232, .07);
  border-color: rgba(99, 88, 232, .18);
  color: #4f46e5;
  backdrop-filter: none;
}
.platform-badge i{
  background: #f97316;
  box-shadow: 0 0 0 5px rgba(249, 115, 22, .15);
}
.platform-copy h1{
  color: #111222;
  text-shadow: none;
}
.platform-copy h1 em{
  color: #6358e8;
}
.platform-copy > p{
  color: #4b5563;
}
.trust-points{
  color: rgba(255, 255, 255, .85);
}
.trust-points i{
  background: rgba(255, 255, 255, .22);
  color: #fff;
}
.button-secondary{
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

/* ---------- Hero product scene -> frosted glass ---------- */
.scene-glow{
  background: rgba(123, 51, 126, .3);
}
.scene-dashboard,
.scene-phone,
.scene-pass,
.scene-people-card,
.scene-float,
.scene-kpis div,
.scene-chart,
.scene-feed,
.scene-product-tabs span{
  background: var(--glass);
  border-color: var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
}
.scene-window-top{
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}
.scene-window-top em{
  color: #fff;
  background: rgba(255, 255, 255, .2);
}
.scene-kpis small,
.scene-main small,
.scene-feed > span,
.scene-phone > small,
.scene-pass small,
.scene-people-card p small,
.scene-people-card em small,
.scene-float small,
.trust-points i{
  color: rgba(255, 255, 255, .75);
}
.scene-kpis b,
.scene-phone > b,
.scene-pass b,
.scene-people-card p b,
.scene-float b{
  color: #fff;
}
.scene-kpis em{
  color: var(--pink-bright);
}
.scene-kpis em.orange{
  color: var(--pink-bright);
}
.scene-chart span{
  background: linear-gradient(var(--pink), var(--purple));
}
.scene-chart span:nth-last-child(2){
  background: linear-gradient(var(--pink-bright), var(--purple-mid));
}
.scene-feed i,
.scene-product-tabs i,
.scene-float-one > i{
  color: #fff;
  background: rgba(255, 255, 255, .22);
}
.phone-notch{
  background: rgba(255, 255, 255, .25);
}
.phone-id{
  background: linear-gradient(145deg, var(--purple), var(--purple-deep));
}
.phone-check{
  border-color: rgba(255, 255, 255, .3);
  border-top-color: var(--pink-bright);
  border-right-color: var(--pink-bright);
}
.scene-pass span,
.scene-people-card > span,
.scene-float-two b{
  color: var(--pink-bright);
}
.scene-pass i{
  border-color: rgba(255, 255, 255, .5);
  color: rgba(255, 255, 255, .85);
}
.scene-people-card > div{
  border-color: rgba(255, 255, 255, .2);
}
.scene-people-card em strong{
  color: var(--pink-bright);
}

/* ---------- Section headings on the gradient ---------- */
.home-heading > span,
.insights-copy > span,
.home-cta span:first-child,
.intelligence-heading > div > span{
  color: var(--pink-bright);
}
.home-heading h2,
.insights-copy h2,
.intelligence-heading h2{
  color: #fff;
}
.home-heading p,
.insights-copy > p,
.intelligence-heading > p{
  color: rgba(255, 255, 255, .85);
}

/* ---------- Section backdrops -> transparent (let gradient show) ---------- */
.products-section,
.what-section,
.insights-section,
.faq-section,
.home-cta{
  background: transparent;
}
.insights-section:before{
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
}

/* ---------- Product cards ---------- */
.product-highlight{
  background: var(--glass-strong);
  border-color: var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
}
.product-highlight:after{
  background: rgba(123, 51, 126, .1);
}
.product-highlight:hover{
  border-color: rgba(255, 255, 255, .65);
  box-shadow: 0 30px 70px rgba(58, 22, 64, .32);
}
.product-highlight.featured{
  border-color: var(--purple);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, .45), transparent 28%),
    linear-gradient(145deg, var(--purple), var(--purple-deep));
}
.product-icon{
  color: var(--purple);
  background: rgba(123, 51, 126, .12);
}
.product-highlight.featured .product-icon{
  color: #fff;
  background: rgba(255, 255, 255, .16);
}
.product-highlight > span{
  color: var(--purple);
}
.product-highlight.featured > span{
  color: var(--pink-bright);
}
.product-highlight h3{
  color: var(--plum);
}
.product-highlight.featured h3{
  color: #fff;
}
.product-highlight p{
  color: var(--plum-muted);
}
.product-highlight.featured p{
  color: rgba(255, 255, 255, .85);
}
.product-highlight ul{
  border-top-color: rgba(58, 22, 64, .12);
}
.product-highlight.featured ul{
  border-color: rgba(255, 255, 255, .2);
}
.product-highlight li{
  color: var(--plum-muted);
}
.product-highlight.featured li{
  color: rgba(255, 255, 255, .9);
}
.product-highlight li:before{
  color: var(--purple);
  background: rgba(123, 51, 126, .14);
}
.product-link{
  color: var(--purple);
  border-top-color: rgba(58, 22, 64, .12);
}
.featured .product-link{
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}

/* ---------- What we do / Orbit system ---------- */
.benefit-grid article{
  background: var(--glass-strong);
  border-color: var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.benefit-grid i{
  color: var(--purple);
}
.benefit-grid b{
  color: var(--plum);
}
.benefit-grid small{
  color: var(--plum-muted);
}
.orbit-system:before{
  background: rgba(123, 51, 126, .25);
}
.orbit-center{
  background: var(--glass-strong);
  border-color: var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.orbit-center b{
  color: var(--purple) !important;
}
.orbit-center small{
  color: var(--plum-muted);
}
.orbit-ring{
  border-color: rgba(255, 255, 255, .35);
}
.orbit-blue,
.orbit-purple,
.orbit-indigo{
  --orbit-color: #7b337e !important;
  --orbit-soft: #f7f3fb !important;
}
.orbit-violet,
.orbit-emerald,
.orbit-teal{
  --orbit-color: #9c4a96 !important;
  --orbit-soft: #f4eef9 !important;
}
.orbit-green,
.orbit-orange,
.orbit-rose{
  --orbit-color: #c9508f !important;
  --orbit-soft: #f5eff9 !important;
}
.orbit-cyan,
.orbit-amber,
.orbit-gold{
  --orbit-color: #d9669c !important;
  --orbit-soft: #f8f4fb !important;
}

/* ---------- Connected Intelligence ---------- */
.intelligence-board{
  background: var(--glass-strong);
  border-color: var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
}
.intelligence-top > div > i{
  background: var(--purple);
  box-shadow: 0 0 0 6px rgba(123, 51, 126, .15);
}
.intelligence-top em{
  color: var(--purple);
  background: rgba(123, 51, 126, .12);
}
.intelligence-kpis article{
  background: rgba(255, 255, 255, .4);
  border-color: rgba(255, 255, 255, .5);
}
.intelligence-kpis article > span i,
.intelligence-kpis .metric-gate > span i,
.intelligence-kpis .metric-people > span i{
  color: var(--purple);
  background: rgba(123, 51, 126, .12);
}
.intelligence-kpis article > b{
  color: var(--plum);
}
.intelligence-kpis article > em{
  color: var(--purple);
}
.intelligence-chart,
.intelligence-activity{
  background: rgba(255, 255, 255, .4);
  border-color: rgba(255, 255, 255, .5);
}
.chart-area span{
  background: linear-gradient(var(--pink), var(--purple));
}
.chart-area span:nth-child(6){
  background: linear-gradient(var(--pink-bright), var(--purple-mid));
}
.chart-area span:nth-child(8){
  background: linear-gradient(var(--purple-mid), var(--purple-deep));
}
.intelligence-activity header span{
  color: var(--purple);
  background: rgba(123, 51, 126, .12);
}
.intelligence-activity > div{
  border-top-color: rgba(58, 22, 64, .12);
}
.intelligence-activity > div > i,
.intelligence-activity > div:nth-child(3) > i,
.intelligence-activity > div:nth-child(4) > i{
  color: var(--purple);
  background: rgba(123, 51, 126, .12);
}
.intelligence-activity > div b{
  color: var(--plum);
}
.intelligence-activity > div em{
  color: var(--purple);
}
.intelligence-outcomes article{
  background: var(--glass-strong);
  border-color: var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.intelligence-outcomes article:first-child{
  border-color: var(--purple);
  background: linear-gradient(145deg, var(--purple), var(--purple-deep));
}
.intelligence-outcomes article > span{
  color: var(--purple);
}
.intelligence-outcomes article:first-child > span{
  color: var(--pink-bright);
}
.intelligence-outcomes b{
  color: var(--plum);
}
.intelligence-outcomes article:first-child b{
  color: #fff;
}
.intelligence-outcomes p{
  color: var(--plum-muted);
}
.intelligence-outcomes article:first-child p{
  color: rgba(255, 255, 255, .85);
}
.intelligence-outcomes strong{
  color: rgba(123, 51, 126, .1);
}

/* ---------- FAQ ---------- */
.faq-list details{
  background: var(--glass-strong);
  border-color: var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.faq-list summary{
  color: var(--plum);
}
.faq-list summary i{
  background: rgba(123, 51, 126, .12);
}
.faq-list summary i:before,
.faq-list summary i:after{
  background: var(--purple);
}
.faq-list details[open]{
  border-color: rgba(123, 51, 126, .4);
}
.faq-list details[open] summary{
  color: var(--purple);
}
.faq-list details[open] summary i{
  background: rgba(255, 255, 255, .6);
}
.faq-list p{
  color: var(--plum-muted);
}

/* ---------- CTA banner ---------- */
.home-cta .container{
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .4), transparent 30%),
    linear-gradient(135deg, var(--purple), var(--purple-deep));
  box-shadow: var(--glass-shadow);
}
.home-cta p{
  color: rgba(255, 255, 255, .85);
}
.cta-contact small{
  color: var(--pink-bright);
}

/* ---------- Footer ---------- */
.site-footer{
  background: linear-gradient(145deg, #2a0f30, var(--purple-deep));
}
.site-footer .footer-brand{
  color: var(--pink);
}
.footer-grid p,
.footer-grid a,
.footer-grid span{
  color: rgba(255, 255, 255, .65);
}
.footer-grid a:hover{
  color: var(--pink-bright);
}
.social-links a{
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #fff !important;
}
.footer-bottom{
  border-top-color: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .55);
}

/* ---------- Enhanced reveal + parallax ---------- */
.reveal{
  opacity: 0;
  transform: translateY(36px) scale(.96);
  filter: blur(6px);
  transition: opacity .8s cubic-bezier(.22, .61, .36, 1),
    transform .8s cubic-bezier(.22, .61, .36, 1),
    filter .8s ease;
}
.reveal.visible{
  opacity: 1;
  transform: none;
  filter: none;
}
[data-parallax]{
  will-change: transform;
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    transition: none;
    filter: none;
  }
  [data-parallax]{
    transform: none !important;
  }
}

/* ---------- Full-screen homepage shell ---------- */
html,
body.home-page{
  width: 100%;
  min-height: 100%;
}
body.home-page{
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 25%, rgba(130, 113, 225, .62), transparent 34%),
    radial-gradient(circle at 52% 52%, rgba(224, 225, 247, .74), transparent 48%),
    linear-gradient(120deg, #fff 0%, #f7f7fb 37%, #d8d9ef 68%, #9994df 100%);
  background-attachment: fixed;
}
body.home-page .container{
  width: min(100% - 11vw, 1600px);
  max-width: none;
}

/* Wide navigation integrated into the hero */
.site-header.home-header,
.site-header.home-header.is-scrolled{
  top: 0;
  width: 100%;
  height: 68px;
  padding: 0 5.5vw;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.home-header.is-scrolled{
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 35px rgba(40, 31, 94, .1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.home-header .brand-logo{
  background: rgba(255, 255, 255, .7);
}
.home-header .brand-lockup strong,
.home-header .main-nav,
.home-header .main-nav a:not(.button){
  color: #171526;
}
.home-header .brand-lockup small{
  color: rgba(23, 21, 38, .58);
}
.home-header .main-nav{
  gap: clamp(20px, 2.7vw, 46px);
}
.home-header .main-nav a.active,
.home-header .main-nav a:not(.button):hover{
  color: var(--purple);
  background: rgba(255, 255, 255, .48);
}
.home-header .button-primary{
  color: #fff;
  background: #171526;
  box-shadow: 0 12px 30px rgba(23, 21, 38, .2);
}

/* Full viewport hero */
.platform-hero{
  min-height: 100svh;
  width: 100%;
  padding: 125px 0 45px;
  display: grid;
  align-items: center;
  background: transparent;
}
.platform-hero-grid{
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(440px, .86fr) minmax(560px, 1.14fr);
  gap: clamp(45px, 6vw, 120px);
}
.platform-copy h1{
  max-width: 760px;
  color: #171526;
  text-shadow: none;
}
.platform-copy h1 em{
  color: var(--purple);
}
.platform-copy > p,
.trust-points{
  color: rgba(23, 21, 38, .68);
}
.platform-badge{
  color: #342b52;
  background: rgba(255, 255, 255, .46);
}
.button-secondary{
  color: #171526;
  border-color: rgba(23, 21, 38, .12);
  background: rgba(255, 255, 255, .58);
}
.saas-scene{
  width: 100%;
  max-width: 840px;
  justify-self: end;
}

@media (max-width: 1050px){
  .site-header.home-header,
  .site-header.home-header.is-scrolled{
    height: 76px;
    padding: 0 24px;
  }
  .site-header.home-header .main-nav{
    top: 84px;
    left: 18px;
    right: 18px;
    border: 1px solid rgba(255, 255, 255, .6);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 20px 50px rgba(40, 31, 94, .15);
    backdrop-filter: blur(20px);
  }
  .site-header.home-header .main-nav a:not(.button){
    color: #171526;
  }
  .home-header .menu-toggle span{
    background: #171526;
  }
  .platform-hero{
    min-height: auto;
    padding-top: 115px;
  }
  .platform-hero-grid{
    grid-template-columns: 1fr;
  }
  .saas-scene{
    justify-self: center;
  }
}

@media (max-width: 640px){
  body.home-page .container{
    width: calc(100% - 32px);
  }
  .site-header.home-header,
  .site-header.home-header.is-scrolled{
    padding: 0 16px;
  }
  .platform-hero{
    min-height: 100svh;
    padding: 105px 0 40px;
  }
}

/* ---------- Quoice-inspired color system ---------- */
:root{
  --pink: #f7f7f4;
  --pink-bright: #ffffff;
  --purple: #6358e8;
  --purple-deep: #111222;
  --purple-mid: #8d82ee;
  --plum: #111222;
  --plum-muted: #686b7b;
  --glass: rgba(255, 255, 255, .42);
  --glass-strong: rgba(248, 248, 247, .78);
  --glass-border: rgba(255, 255, 255, .72);
  --glass-shadow: 0 28px 70px rgba(24, 25, 52, .15);
  --blue: #6358e8;
  --royal: #4d43d4;
  --orange: #70c6c4;
  --navy: #111222;
  --navy-2: #20213a;
  --shadow: 0 25px 70px rgba(24, 25, 52, .14);
}
html{
  background: #292b38;
}
body.home-page{
  color: #111222;
  background:
    radial-gradient(circle at 87% 13%, rgba(111, 103, 231, .62), transparent 28%),
    radial-gradient(circle at 64% 25%, rgba(179, 184, 233, .54), transparent 34%),
    radial-gradient(circle at 30% 42%, rgba(255, 255, 255, .96), transparent 48%),
    linear-gradient(132deg, #f8f8f4 0%, #eceef5 52%, #aaa9e6 100%);
}
.scroll-progress{
  background: linear-gradient(90deg, #70c6c4, #6358e8);
  box-shadow: 0 0 14px rgba(99, 88, 232, .55);
}
.site-header.home-header.is-scrolled{
  background: rgba(247, 247, 244, .8);
  box-shadow: 0 12px 35px rgba(17, 18, 34, .1);
}
.home-header .button-primary,
.platform-actions .button-primary{
  color: #fff;
  background: linear-gradient(135deg, #7165ee, #5549d8);
  box-shadow: 0 14px 32px rgba(84, 72, 216, .28);
}
.home-header .button-primary{
  background: #111222;
  box-shadow: 0 12px 30px rgba(17, 18, 34, .2);
}
.platform-badge{
  border-color: rgba(99, 88, 232, .16);
  color: #5148ba;
  background: rgba(255, 255, 255, .56);
}
.platform-badge i{
  background: #6358e8;
  box-shadow: 0 0 0 5px rgba(99, 88, 232, .13);
}
.platform-copy h1,
.home-heading h2,
.insights-copy h2,
.intelligence-heading h2{
  color: #111222;
}
.platform-copy h1 em,
.home-heading > span,
.insights-copy > span,
.intelligence-heading > div > span{
  color: #6358e8;
}
.platform-copy > p,
.trust-points,
.home-heading p,
.insights-copy > p,
.intelligence-heading > p{
  color: #686b7b;
}
.trust-points i{
  color: #5148ba;
  background: rgba(99, 88, 232, .12);
}
.button-secondary{
  color: #111222;
  border-color: rgba(17, 18, 34, .1);
  background: rgba(255, 255, 255, .68);
}

/* Light silver sections and glass surfaces */
.products-section,
.what-section,
.insights-section,
.faq-section{
  background: rgba(247, 247, 244, .82);
}
.what-section,
.faq-section{
  background: rgba(231, 233, 242, .76);
}
.product-highlight,
.benefit-grid article,
.faq-list details,
.intelligence-board,
.intelligence-outcomes article{
  border-color: rgba(255, 255, 255, .8);
  background: rgba(249, 249, 247, .78);
  box-shadow: 0 22px 55px rgba(24, 25, 52, .1);
}
.product-highlight:hover,
.faq-list details[open]{
  border-color: rgba(99, 88, 232, .35);
  box-shadow: 0 28px 65px rgba(59, 52, 151, .16);
}
.product-highlight.featured,
.intelligence-outcomes article:first-child{
  border-color: rgba(129, 120, 239, .46);
  background:
    radial-gradient(circle at 84% 5%, rgba(141, 130, 238, .42), transparent 30%),
    linear-gradient(145deg, #171829, #0d0e1c);
}
.product-icon,
.product-highlight li:before,
.faq-list summary i,
.intelligence-top > div > i,
.intelligence-activity > div > i,
.intelligence-activity > div:nth-child(3) > i,
.intelligence-activity > div:nth-child(4) > i{
  color: #5549d8;
  background: rgba(99, 88, 232, .12);
}
.product-icon svg{
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-highlight > span,
.product-link,
.benefit-grid i,
.intelligence-top em,
.intelligence-kpis article > em,
.intelligence-activity > div em{
  color: #6358e8;
}
.product-highlight h3,
.benefit-grid b,
.intelligence-kpis article > b,
.intelligence-activity > div b,
.intelligence-outcomes b,
.faq-list summary{
  color: #111222;
}
.product-highlight p,
.product-highlight li,
.benefit-grid small,
.intelligence-outcomes p,
.faq-list p{
  color: #686b7b;
}

/* Reference-style dark feature panels */
.scene-dashboard,
.scene-phone,
.scene-pass,
.scene-people-card,
.scene-float{
  border-color: rgba(255, 255, 255, .16);
  background: rgba(17, 18, 34, .9);
  box-shadow: 0 28px 65px rgba(17, 18, 34, .24);
}
.scene-kpis div,
.scene-chart,
.scene-feed,
.scene-product-tabs span,
.intelligence-kpis article,
.intelligence-chart,
.intelligence-activity{
  border-color: rgba(99, 88, 232, .16);
  background: rgba(255, 255, 255, .62);
}
.scene-kpis b,
.scene-kpis small,
.scene-main small,
.scene-feed > span,
.scene-product-tabs span{
  color: #303246;
}
.scene-kpis em,
.scene-kpis em.orange{
  color: #6358e8;
}
.scene-feed i,
.scene-product-tabs i{
  color: #5549d8;
  background: rgba(99, 88, 232, .12);
}
.scene-feed span b{
  color: #303246;
}
.scene-chart span,
.chart-area span{
  background: linear-gradient(#a49bf6, #6358e8);
}
.scene-chart span:nth-last-child(2),
.chart-area span:nth-child(6){
  background: linear-gradient(#a5e0dc, #58b5bd);
}
.chart-area span:nth-child(8){
  background: linear-gradient(#8580a9, #28293d);
}
.phone-id,
.home-cta .container{
  background:
    radial-gradient(circle at 88% 12%, rgba(126, 116, 237, .44), transparent 30%),
    linear-gradient(145deg, #171829, #0d0e1c);
}
.scene-glow,
.orbit-system:before{
  background: rgba(99, 88, 232, .2);
}
.orbit-blue,
.orbit-purple,
.orbit-indigo{
  --orbit-color: #6358e8 !important;
  --orbit-soft: #eeecff !important;
}
.orbit-violet,
.orbit-emerald,
.orbit-teal{
  --orbit-color: #8177e9 !important;
  --orbit-soft: #f1efff !important;
}
.orbit-green,
.orbit-orange,
.orbit-rose{
  --orbit-color: #58b5bd !important;
  --orbit-soft: #e9f8f7 !important;
}
.orbit-cyan,
.orbit-amber,
.orbit-gold{
  --orbit-color: #a48bd7 !important;
  --orbit-soft: #f2edfb !important;
}
.site-footer{
  background:
    radial-gradient(circle at 80% 0%, rgba(99, 88, 232, .25), transparent 35%),
    #0d0e1c;
}

/* ---------- Home hero background ---------- */
body.home-page{
  background: #f8f8fb;
}
.platform-hero{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #ffffff;
}
.platform-hero::before{
  content: "";
  position: absolute;
  inset: -8px;
  z-index: 0;
  display: block;
  background: url("../hero bg.png") center / cover no-repeat;
  filter: blur(1.5px);
  transform: scale(1.012);
  transform-origin: center;
}
.platform-hero-grid{
  position: relative;
  z-index: 2;
}

/* ---------- Reference-style text-only hero ---------- */
.platform-hero .saas-scene{
  display: none;
}

/* ---------- Hero showcase (app + orbit) ---------- */
.hero-showcase{
  position: relative;
  flex-shrink: 0;
  width: clamp(440px, 46vw, 600px);
  aspect-ratio: 1 / 1;
  margin-left: auto;
}
.showcase-symbols{
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.showcase-glow{
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.showcase-orbit{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.showcase-orbit circle{
  fill: none;
  stroke: rgba(255, 255, 255, .14);
  stroke-width: 1;
}
.showcase-phone{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  height: 468px;
  border-radius: 34px;
  background: #1c1730;
  border: 6px solid #1c1730;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .06);
  overflow: hidden;
  z-index: 2;
}
.phone-screen{
  width: 100%;
  height: 100%;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: linear-gradient(160deg, #1c1733 0%, #0f0c1e 60%);
  color: #fff;
  font-family: "DM Sans", sans-serif;
}
.phone-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
}
.phone-brand b{
  color: var(--purple);
  margin-right: 2px;
}
.phone-bar svg{
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, .7);
  fill: none;
  stroke-width: 1.8;
}
.phone-greeting{
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
}
.phone-greeting strong{
  color: #fff;
}
.phone-overview{
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 12px;
}
.overview-head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 10px;
}
.overview-head span{
  color: #fff;
  font-weight: 600;
}
.overview-chart{
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
}
.overview-chart span{
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #a78bfa, var(--purple));
}
.phone-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.phone-stats div{
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 8px 10px;
}
.phone-stats b{
  display: block;
  font-size: 15px;
}
.phone-stats small{
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
}
.phone-quick > span{
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
}
.quick-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.quick-grid div{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .05);
  border-radius: 10px;
  padding: 9px 4px;
}
.quick-grid svg{
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}
.quick-grid small{
  font-size: 9px;
  color: rgba(255, 255, 255, .6);
}
.phone-nav{
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.phone-nav svg{
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, .5);
  fill: none;
  stroke-width: 1.8;
}
.phone-nav svg.active{
  stroke: #fff;
}
.phone-fab{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -22px;
  box-shadow: 0 8px 20px rgba(123, 51, 126, .5);
}
.phone-fab svg{
  width: 16px;
  height: 16px;
  stroke: #fff;
}
.showcase-card{
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .94);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 14px 36px rgba(20, 10, 50, .25);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: #2b2240;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.showcase-card svg{
  width: 20px;
  height: 20px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.card-hr{ top: 5%; right: 2%; }
.card-project{ top: 11%; left: 0%; }
.card-finance{ top: 46%; right: -6%; }
.card-chat{ top: 44%; left: -8%; }
.card-assets{ bottom: 8%; left: 2%; }
.card-helpdesk{ bottom: 10%; right: -2%; }

@media (max-width: 1300px){
  .showcase-card{
    font-size: 11px;
    padding: 8px 12px;
  }
  .card-finance,
  .card-chat,
  .card-helpdesk{
    display: none;
  }
}
@media (max-width: 1050px){
  .hero-showcase{
    display: none;
  }
}
.platform-hero{
  min-height: 100svh;
  padding: 150px 0 72px;
}
.platform-hero-grid{
  min-height: calc(100svh - 222px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.platform-copy{
  width: min(760px, 68%);
  max-width: none;
  margin-top: 11vh;
}
.platform-copy h1{
  max-width: 760px;
  margin: 20px 0;
  color: #111222;
  font-size: clamp(52px, 5.8vw, 88px);
  line-height: .98;
  letter-spacing: -.07em;
}
.platform-copy h1 em{
  color: transparent;
  background: linear-gradient(135deg, #5c63ff 0%, #7d5cff 46%, #b45cf5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.platform-copy h1 > span:nth-child(2) em{
  background-image: linear-gradient(135deg, #2f9dff 0%, #5d6dff 48%, #9e5cff 100%);
}
.platform-copy h1 > span:nth-child(3) em{
  background-image: linear-gradient(135deg, #23c6ff 0%, #2f9dff 52%, #6868ff 100%);
}
.platform-copy h1 > span{
  display: block;
}
.platform-copy > p{
  max-width: 650px;
  color: #4b5563;
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 1.7;
}
.platform-actions{
  margin-top: 26px;
}
.trust-points{
  gap: 32px;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 700;
}
.trust-points span{
  gap: 10px;
}
.trust-points i{
  width: 28px;
  height: 28px;
  font-size: 12px;
}
@media (max-width: 1050px){
  .platform-copy{
    width: min(760px, 88%);
    margin-top: 8vh;
  }
}
@media (max-width: 640px){
  .platform-hero{
    padding: 105px 0 45px;
  }
  .platform-hero::before{
    background-position: center top;
  }
  .platform-hero-grid{
    min-height: calc(100svh - 150px);
  }
  .platform-copy{
    width: 100%;
    margin-top: 4vh;
  }
  .platform-copy h1{
    font-size: clamp(42px, 13vw, 58px);
  }
  .trust-points{
    gap: 16px;
    font-size: 12px;
  }
  .trust-points i{
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
}

/* ---------- Realistic 3D iPhone treatment ---------- */
.hero-showcase{
  perspective: 1500px;
  transform-style: preserve-3d;
}
.hero-showcase:after{
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 5%;
  width: 270px;
  height: 48px;
  border-radius: 50%;
  background: rgba(23, 20, 55, .32);
  filter: blur(22px);
  transform: translateX(-50%) rotateX(68deg);
}
.showcase-phone{
  width: 246px;
  height: 500px;
  padding: 3px;
  overflow: visible;
  box-sizing: border-box;
  border: 1px solid rgba(4, 5, 9, .9);
  border-radius: 46px;
  background: linear-gradient(152deg, #6a6d74 0%, #3c3e44 22%, #1a1b1f 52%, #2c2e33 80%, #555861 100%);
  box-shadow:
    -22px 36px 70px rgba(12, 10, 40, .4),
    8px 10px 24px rgba(73, 65, 161, .18),
    inset 1px 1px 1px rgba(255, 255, 255, .35),
    inset -1px -1px 1px rgba(0, 0, 0, .7);
  transform: translate(-50%, -50%) rotateY(-8deg) rotateX(2deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  animation: iphone-float-3d 7s ease-in-out infinite;
}
.showcase-phone:before{
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4px -8px -4px 6px;
  border-radius: 46px;
  background: linear-gradient(100deg, #0a0b0e, #2c2e33 60%, #45474d);
  transform: translateZ(-9px);
  box-shadow: 6px 4px 10px rgba(0, 0, 0, .35);
}
.showcase-phone:after{
  content: "";
  position: absolute;
  z-index: 5;
  inset: 4px;
  border-radius: 43px;
  background: linear-gradient(118deg, rgba(255, 255, 255, .14), transparent 22%, transparent 68%, rgba(166, 160, 255, .08));
  pointer-events: none;
}
.phone-screen{
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 46px 16px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 43px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .85),
    inset 0 0 24px rgba(116, 102, 240, .1);
}
.phone-screen:after{
  content: "";
  position: absolute;
  z-index: 6;
  top: -34%;
  left: -90%;
  width: 105%;
  height: 165%;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, .06) 48%, transparent 66%);
  transform: rotate(8deg);
  pointer-events: none;
}
.iphone-island{
  position: absolute;
  z-index: 8;
  top: 12px;
  left: 50%;
  width: 84px;
  height: 25px;
  border-radius: 20px;
  background: #010205;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, .12), 0 1px 4px rgba(0, 0, 0, .7);
  transform: translateX(-50%);
}
.iphone-island:before{
  content: "";
  position: absolute;
  top: 8px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #334064, #080a12 65%);
  box-shadow: 0 0 3px rgba(84, 107, 177, .55);
}
.iphone-island i{
  position: absolute;
  top: 10px;
  left: 19px;
  width: 30px;
  height: 4px;
  border-radius: 5px;
  background: #090b10;
  box-shadow: inset 0 1px rgba(255, 255, 255, .06);
}
.iphone-button{
  position: absolute;
  z-index: -1;
  display: block;
  width: 3px;
  border: 1px solid #06070a;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(90deg, #1d1e22, #4d4f55);
  box-shadow: -1px 1px 3px rgba(0, 0, 0, .35);
}
.iphone-action{
  left: -4px;
  top: 91px;
  height: 30px;
}
.iphone-volume-up{
  left: -4px;
  top: 143px;
  height: 50px;
}
.iphone-volume-down{
  left: -4px;
  top: 203px;
  height: 50px;
}
.iphone-power{
  z-index: -1;
  right: -5px;
  top: 158px;
  width: 3px;
  height: 78px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, #4d4f55, #1d1e22);
}
@keyframes iphone-float-3d{
  50%{
    transform: translate(-50%, calc(-50% - 10px)) rotateY(-10deg) rotateX(2deg) rotateZ(-1deg);
  }
}
@media (prefers-reduced-motion: reduce){
  .showcase-phone{
    animation: none;
  }
}

/* ---------- Larger geometric header wordmark ---------- */
.home-header .brand-lockup{
  gap: 14px;
}
.home-header .brand-logo{
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.home-header .brand-logo img{
  width: 125%;
}
.home-header .brand-lockup > span:last-child{
  gap: 3px;
}
.home-header .brand-lockup strong{
  position: relative;
  color: #173f7d;
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .035em;
  transform: scaleX(1.08);
  transform-origin: left center;
}
.home-header .brand-lockup strong sup{
  position: relative;
  top: -.55em;
  margin-left: 2px;
  font-size: 6px;
  letter-spacing: 0;
}
.home-header .brand-lockup small{
  display: block;
  color: #596d8d;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .2em;
  text-transform: uppercase;
}
@media (max-width: 1050px){
  .home-header .brand-logo{
    width: 48px;
    height: 48px;
  }
  .home-header .brand-lockup strong{
    font-size: 21px;
  }
  .home-header .brand-lockup small{
    display: block;
    font-size: 7px;
  }
}
@media (max-width: 520px){
  .home-header .brand-lockup{
    gap: 9px;
  }
  .home-header .brand-logo{
    width: 43px;
    height: 43px;
  }
  .home-header .brand-lockup strong{
    font-size: 18px;
  }
  .home-header .brand-lockup small{
    font-size: 6px;
    letter-spacing: .14em;
  }
}

/* ---------- Submit-ready contact form ---------- */
.home-cta{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 82% 15%, rgba(130, 113, 225, .24), transparent 32%),
    linear-gradient(145deg, #fff 0%, #f4f3fc 58%, #dedcf5 100%);
}
.home-cta:before{
  content: "";
  position: absolute;
  z-index: -1;
  left: -8%;
  bottom: -28%;
  width: 72%;
  height: 64%;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(171, 162, 250, .26), rgba(99, 88, 232, .16));
  filter: blur(34px);
  transform: rotate(-8deg);
}
.home-cta .container{
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(45px, 7vw, 110px);
  padding: clamp(42px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 32px;
  color: #111222;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 30px 75px rgba(48, 42, 122, .13);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.contact-intro{
  max-width: 590px;
}
.contact-intro .contact-title{
  margin: 0 0 22px;
  color: #6358e8;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.06em;
}
.contact-intro > span{
  color: #6358e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-intro h3{
  margin: 18px 0 16px;
  color: #111222;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.contact-intro p{
  max-width: 540px;
  color: #686b7b;
  font-size: 14px;
  line-height: 1.75;
}
.contact-details{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 35px;
}
.contact-details span{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-details small{
  color: #777a8d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-details b{
  color: #111222;
  font-size: 13px;
}
.contact-form{
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 24px;
  color: #111222;
  background:
    radial-gradient(circle at 100% 0%, rgba(132, 119, 237, .12), transparent 32%),
    rgba(255, 255, 255, .72);
  box-shadow: 0 25px 65px rgba(48, 42, 122, .15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.contact-form-head{
  margin-bottom: 24px;
}
.contact-form-head span{
  color: #6358e8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-form-head h3{
  margin: 8px 0 5px;
  color: #111222;
  font-size: 25px;
  letter-spacing: -.04em;
}
.contact-form-head p{
  margin: 0;
  color: #737687;
  font-size: 11px;
}
.contact-form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact-form label{
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 15px;
  color: #303246;
  font-size: 10px;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(120, 112, 181, .18);
  border-radius: 11px;
  outline: none;
  color: #111222;
  background: rgba(247, 247, 252, .82);
  font: 500 12px "DM Sans", sans-serif;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: #9a9dac;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: #7065e8;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 0 0 4px rgba(99, 88, 232, .12);
}
.contact-form textarea{
  min-height: 105px;
  resize: vertical;
}
.contact-submit{
  width: 100%;
  min-height: 48px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #796ef0, #5549d8);
  box-shadow: 0 14px 30px rgba(84, 72, 216, .25);
  cursor: pointer;
}
.contact-submit:disabled{
  cursor: default;
  opacity: .72;
}
.contact-form > small{
  display: block;
  margin-top: 12px;
  color: #8b8e9d;
  font-size: 8px;
  text-align: center;
}
@media (max-width: 1050px){
  .home-cta .container{
    grid-template-columns: 1fr;
  }
  .contact-intro{
    max-width: 720px;
  }
}
@media (max-width: 640px){
  .home-cta{
    padding: 65px 0;
  }
  .home-cta .container{
    padding: 28px 18px;
    border-radius: 22px;
  }
  .contact-form-grid{
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-details{
    gap: 18px;
    flex-direction: column;
  }
}

/* ---------- Balanced orbit, fits the column, logo-only center ---------- */
.orbit-system{
  width: min(580px, 100%);
  height: 580px;
  margin: 0 auto;
  overflow: visible;
}
.orbit-system:before{
  width: 58%;
  height: 58%;
}
.orbit-ring-one{
  --radius: 112px;
  width: 224px;
  height: 224px;
}
.orbit-ring-two{
  --radius: 182px;
  width: 364px;
  height: 364px;
}
.orbit-ring-three{
  --radius: 252px;
  width: 504px;
  height: 504px;
}
.orbit-ring .orbit-node{
  width: 50px;
  height: 50px;
  border-width: 2px;
  box-shadow: 0 12px 28px rgba(48, 42, 122, .16);
}
.orbit-ring .orbit-node svg{
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.orbit-ring .orbit-node .orbit-content{
  width: 50px;
  height: 50px;
}
.orbit-ring .orbit-node .orbit-content b{
  min-width: 0;
  max-width: 124px;
  bottom: calc(100% + 6px);
  padding: 5px 9px;
  border-radius: 14px;
  font-size: 10px;
  line-height: 1.15;
  white-space: nowrap;
}
.orbit-center{
  width: 132px;
  height: 132px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.orbit-center .brand-logo{
  width: 116px;
  height: 116px;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.orbit-center .brand-logo img{
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
@media (max-width: 1024px){
  .orbit-system{
    width: 520px;
    height: 520px;
    transform: scale(.9);
    transform-origin: center;
  }
}
@media (max-width: 800px){
  .orbit-system{
    width: 504px;
    height: 504px;
    left: 50%;
    margin-left: -252px;
    transform: scale(.82);
  }
}
@media (max-width: 640px){
  .orbit-system{
    transform: scale(.66);
  }
  .orbit-ring .orbit-node .orbit-content b{
    font-size: 11px;
    padding: 5px 9px;
  }
}

/* ---------- Spinning aligned capability orbit ---------- */
.orbit-system{
  width: min(620px, 100%);
  height: 620px;
  display: block;
  isolation: isolate;
}
.orbit-system:before{
  width: 58%;
  height: 58%;
  left: 50%;
  top: 50%;
  background: rgba(111, 102, 245, .13);
  filter: blur(54px);
  transform: translate(-50%, -50%);
}
.orbit-ring{
  --spin-to: 360deg;
  --counter-spin-to: -360deg;
  --spin-duration: 42s;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: orbit-ring-spin var(--spin-duration) linear infinite;
  pointer-events: none;
}
.orbit-ring-one{
  --orbit-radius: 115px;
  --spin-duration: 30s;
  width: 230px;
  height: 230px;
  z-index: 5;
}
.orbit-ring-two{
  --orbit-radius: 191px;
  --spin-to: -360deg;
  --counter-spin-to: 360deg;
  --spin-duration: 42s;
  width: 382px;
  height: 382px;
  z-index: 4;
}
.orbit-ring-three{
  --orbit-radius: 265px;
  --spin-duration: 56s;
  width: 530px;
  height: 530px;
  z-index: 3;
}
.orbit-ring .orbit-node{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid color-mix(in srgb, var(--orbit-color) 20%, #fff);
  border-radius: 50%;
  color: var(--orbit-color);
  background: var(--orbit-soft);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--orbit-color) 22%, transparent);
  transform:
    translate(-50%, -50%)
    rotate(var(--orbit-angle))
    translateX(var(--orbit-radius))
    rotate(calc(var(--orbit-angle) * -1));
  animation: none;
  pointer-events: auto;
}
.orbit-ring .orbit-node .orbit-content{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: orbit-content-upright var(--spin-duration) linear infinite;
}
.orbit-ring .orbit-node .orbit-content b{
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  width: max-content;
  max-width: 132px;
  padding: 6px 11px;
  border: 1px solid rgba(179, 186, 238, .64);
  border-radius: 18px;
  color: #17345e;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 24px rgba(31, 44, 112, .12);
  font: 800 10px/1.1 "DM Sans";
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
}
.orbit-ring .orbit-node svg{
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: none;
}
.orbit-ring-one .orbit-node:nth-child(1){ --orbit-angle: 112deg; }
.orbit-ring-one .orbit-node:nth-child(2){ --orbit-angle: 198deg; }
.orbit-ring-one .orbit-node:nth-child(3){ --orbit-angle: 305deg; }
.orbit-ring-two .orbit-node:nth-child(1){ --orbit-angle: 278deg; }
.orbit-ring-two .orbit-node:nth-child(2){ --orbit-angle: 2deg; }
.orbit-ring-two .orbit-node:nth-child(3){ --orbit-angle: 92deg; }
.orbit-ring-three .orbit-node:nth-child(1){ --orbit-angle: 54deg; }
.orbit-ring-three .orbit-node:nth-child(2){ --orbit-angle: 158deg; }
.orbit-ring-three .orbit-node:nth-child(3){ --orbit-angle: 238deg; }
.orbit-blue,
.orbit-violet,
.orbit-amber,
.orbit-indigo,
.orbit-gold{
  --orbit-color: #7b6cff !important;
  --orbit-soft: #eeeaff !important;
}
.orbit-cyan{
  --orbit-color: #9b7cff !important;
  --orbit-soft: #efeaff !important;
}
.orbit-green,
.orbit-orange,
.orbit-rose{
  --orbit-color: #58bfc6 !important;
  --orbit-soft: #e8fbfb !important;
}
.orbit-center{
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  width: 136px;
  height: 136px;
  transform: translate(-50%, -50%);
}
@keyframes orbit-ring-spin{
  from{
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to{
    transform: translate(-50%, -50%) rotate(var(--spin-to));
  }
}
@keyframes orbit-content-upright{
  from{
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to{
    transform: translate(-50%, -50%) rotate(var(--counter-spin-to));
  }
}
@media (max-width: 1024px){
  .orbit-system{
    width: 560px;
    height: 560px;
    transform: scale(.9);
    transform-origin: center;
  }
}
@media (max-width: 800px){
  .orbit-system{
    width: 530px;
    height: 530px;
    left: auto;
    margin: 0 auto;
    transform: scale(.82);
    transform-origin: center;
  }
}
@media (max-width: 640px){
  .orbit-system,
  .orbit-system.reveal.visible{
    left: auto;
    margin: 0 auto;
    transform: scale(.66);
    transform-origin: center;
  }
  .orbit-ring .orbit-node .orbit-content b{
    font-size: 10px;
    padding: 6px 10px;
  }
}
@media (prefers-reduced-motion: reduce){
  .orbit-ring,
  .orbit-ring .orbit-node .orbit-content{
    animation: none !important;
  }
}

/* ---------- Current-theme What We Do panel ---------- */
.what-section{
  padding: 90px 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(135, 117, 255, .16), transparent 30%),
    linear-gradient(180deg, #f8f8fb, #eef0f7);
}
.what-section .what-grid{
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(660px, 1fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  overflow: visible;
  padding: 40px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.what-section .what-copy{
  position: relative;
  z-index: 4;
  max-width: 680px;
}
.what-section .home-heading > span{
  display: none;
}
.what-section .home-heading h2{
  margin-bottom: 16px;
  color: #111222;
  font-size: clamp(44px, 5.1vw, 64px);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.what-section .home-heading p{
  max-width: 610px;
  margin: 0;
  color: #5f6473;
  font-size: 16px;
  line-height: 1.55;
}
.what-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.what-actions .button{
  min-height: 41px;
  padding: 11px 17px;
  border-radius: 8px;
  font-size: 13px;
}
.what-actions .button-primary{
  color: #fff;
  background: linear-gradient(135deg, #796ef0, #5549d8);
  box-shadow: 0 14px 30px rgba(84, 72, 216, .22);
}
.what-actions .button-secondary{
  color: #171526;
  border: 1px solid rgba(99, 88, 232, .18);
  background: rgba(255, 255, 255, .72);
}
.what-orbit-clip{
  position: relative;
  align-self: stretch;
  min-height: 700px;
  overflow: visible;
}
.what-orbit-clip .orbit-system{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 760px;
  height: 760px;
  max-width: none;
  margin: 0;
  transform: translate(-50%, -50%);
}
.what-orbit-clip .orbit-system:before{
  width: 0;
  height: 0;
  filter: none;
}
.what-orbit-clip .orbit-ring{
  border: 2px dotted rgba(99, 88, 232, .26);
}
.what-orbit-clip .orbit-ring-one{
  --orbit-radius: 150px;
  --spin-duration: 18s;
  width: 300px;
  height: 300px;
}
.what-orbit-clip .orbit-ring-two{
  --orbit-radius: 245px;
  --spin-duration: 26s;
  width: 490px;
  height: 490px;
}
.what-orbit-clip .orbit-ring-three{
  --orbit-radius: 340px;
  --spin-duration: 36s;
  width: 680px;
  height: 680px;
}
.what-orbit-clip .orbit-center{
  width: 142px;
  height: 142px;
  border: 1px solid rgba(99, 88, 232, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 48px rgba(99, 88, 232, .18);
}
.what-orbit-clip .orbit-center .brand-logo{
  width: 112px;
  height: 112px;
  filter: saturate(1.2);
}
.what-orbit-clip .orbit-center .brand-logo img{
  mix-blend-mode: normal;
}
.what-orbit-clip .orbit-ring .orbit-node{
  width: 64px;
  height: 64px;
  border: 1px solid color-mix(in srgb, var(--orbit-color) 28%, #fff);
  background: var(--orbit-soft);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--orbit-color) 18%, transparent);
}
.what-orbit-clip .orbit-ring .orbit-node .orbit-content{
  width: 64px;
  height: 64px;
}
.what-orbit-clip .orbit-ring .orbit-node svg{
  width: 31px;
  height: 31px;
  stroke-width: 2;
}
.what-orbit-clip .orbit-ring .orbit-node .orbit-content b{
  bottom: calc(100% + 10px);
  padding: 6px 12px;
  border-color: rgba(99, 88, 232, .22);
  border-radius: 12px;
  color: #3f38a8;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 24px rgba(99, 88, 232, .12);
  font-size: 11px;
}
.what-orbit-clip .orbit-blue,
.what-orbit-clip .orbit-violet,
.what-orbit-clip .orbit-amber,
.what-orbit-clip .orbit-indigo,
.what-orbit-clip .orbit-gold,
.what-orbit-clip .orbit-cyan,
.what-orbit-clip .orbit-green,
.what-orbit-clip .orbit-orange,
.what-orbit-clip .orbit-rose{
  --orbit-color: #6358e8 !important;
  --orbit-soft: #f0efff !important;
}
@media (max-width: 1050px){
  .what-section .what-grid{
    grid-template-columns: 1fr;
    min-height: 980px;
    padding: 52px 0 0;
  }
  .what-section .what-copy{
    max-width: 720px;
  }
  .what-orbit-clip{
    min-height: 720px;
    margin: 18px 0 0;
  }
  .what-orbit-clip .orbit-system{
    left: 50%;
    width: min(760px, 100%);
    height: 760px;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 640px){
  .what-section{
    padding: 56px 0;
  }
  .what-section .what-grid{
    min-height: 760px;
    padding: 30px 0 20px;
    border-radius: 0;
  }
  .what-section .what-copy{
    max-width: none;
  }
  .what-section .home-heading h2{
    max-width: 11ch;
    font-size: clamp(33px, 11vw, 44px);
  }
  .what-section .home-heading p{
    max-width: 34ch;
    font-size: 14px;
    line-height: 1.65;
  }
  .what-actions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  .what-actions .button{
    width: 100%;
    min-height: 46px;
    padding: 12px 10px;
    white-space: nowrap;
  }
  .what-orbit-clip{
    min-height: 430px;
    margin: 18px -18px -8px;
  }
  .what-orbit-clip .orbit-system{
    left: 50%;
    top: 50%;
    width: 660px;
    height: 660px;
    transform: translate(-50%, -50%) scale(.64);
  }
  .what-orbit-clip .orbit-ring-one{
    --orbit-radius: 130px;
    width: 260px;
    height: 260px;
  }
  .what-orbit-clip .orbit-ring-two{
    --orbit-radius: 215px;
    width: 430px;
    height: 430px;
  }
  .what-orbit-clip .orbit-ring-three{
    --orbit-radius: 300px;
    width: 600px;
    height: 600px;
  }
  .what-orbit-clip .orbit-center{
    width: 124px;
    height: 124px;
  }
  .what-orbit-clip .orbit-center .brand-logo{
    width: 98px;
    height: 98px;
  }
  .what-orbit-clip .orbit-ring .orbit-node{
    width: 58px;
    height: 58px;
  }
  .what-orbit-clip .orbit-ring .orbit-node .orbit-content{
    width: 58px;
    height: 58px;
  }
  .what-orbit-clip .orbit-ring .orbit-node svg{
    width: 28px;
    height: 28px;
  }
  .what-orbit-clip .orbit-ring .orbit-node .orbit-content b{
    bottom: calc(100% + 8px);
    padding: 5px 10px;
    font-size: 10px;
  }
}

