/* ============================================================
   BUTTONS — Bloxs .bsZpIg: pill, reversed flex, arrow circle
   ============================================================ */
.btn{
  width:fit-content;
  min-height:4.8rem;
  display:inline-flex;align-items:center;justify-content:center;
  flex-direction:row-reverse;
  gap:1.6rem;
  padding:.8rem 1.2rem .8rem 2.4rem;
  border-radius:99.9rem;
  font-family:inherit;
  font-size:1.4rem;font-weight:500;
  cursor:pointer;
  transition:all .5s ease;
  white-space:nowrap;
}
.btn--primary{
  background:var(--blue);
  color:#fff;
  box-shadow:var(--shadow-btn);
}
.btn--primary:hover{
  background:var(--blue-dark);
  transform:translateY(-1px);
}
.btn--primary .btn__arrow{
  width:3.2rem;height:3.2rem;
  border-radius:50%;
  background:#fff;
  color:var(--blue);
  display:grid;place-items:center;
  transition:transform .3s ease;
}
.btn--primary:hover .btn__arrow{transform:translateX(3px)}
.btn__arrow svg{width:1.4rem;height:1.4rem}

.btn--ghost{
  background:#fff;
  color:var(--navy-900);
  box-shadow:var(--shadow-btn-ghost);
}
.btn--ghost:hover{background:var(--slate-100)}
.btn--ghost .btn__arrow{
  width:3.2rem;height:3.2rem;
  border-radius:50%;
  background:var(--navy-900);
  color:#fff;
  display:grid;place-items:center;
  transition:transform .3s ease;
}
.btn--ghost:hover .btn__arrow{transform:translateX(3px)}

/* ============================================================
   HERO — left text + tilted browser mockup right (Bloxs style)
   ============================================================ */
.hero{
  position:relative;
  padding:14rem 0 10rem;
  overflow:hidden;
  background:
    radial-gradient(ellipse 55% 60% at 85% 30%,rgba(176,201,254,.28) 0%,rgba(176,201,254,0) 70%),
    radial-gradient(ellipse 40% 50% at 15% 80%,rgba(176,201,254,.18) 0%,rgba(176,201,254,0) 70%),
    #F4F7FC;
}
/* Decorative diagonal pinstripes top-right (echo of Bloxs lines.svg) */
.hero::before{
  content:"";
  position:absolute;
  top:6rem;right:0;
  width:30rem;height:30rem;
  background-image:repeating-linear-gradient(45deg,rgba(3,41,82,.05) 0,rgba(3,41,82,.05) 1px,transparent 1px,transparent 10px);
  mask-image:radial-gradient(circle at 80% 20%,#000 0%,transparent 70%);
  -webkit-mask-image:radial-gradient(circle at 80% 20%,#000 0%,transparent 70%);
  pointer-events:none;
}
/* Decorative dots bottom-left */
.hero::after{
  content:"";
  position:absolute;
  bottom:8rem;left:2rem;
  width:14rem;height:8rem;
  background-image:radial-gradient(circle,rgba(3,41,82,.18) 1px,transparent 1px);
  background-size:1rem 1rem;
  mask-image:linear-gradient(135deg,#000 30%,transparent 70%);
  -webkit-mask-image:linear-gradient(135deg,#000 30%,transparent 70%);
  pointer-events:none;
}
.hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);
  gap:4rem;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero__content{position:relative}
.hero__eyebrow{
  display:inline-flex;align-items:center;gap:.8rem;
  padding:.6rem 1.4rem;
  background:#fff;
  border-radius:99.9rem;
  font-size:1.3rem;font-weight:500;
  color:var(--slate-600);
  margin-bottom:2.4rem;
  box-shadow:var(--shadow-btn-ghost);
}
.hero__eyebrow-dot{
  width:.6rem;height:.6rem;border-radius:50%;
  background:var(--blue);
  box-shadow:0 0 0 .4rem rgba(46,97,255,.15);
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 .4rem rgba(46,97,255,.15)}
  50%{box-shadow:0 0 0 .8rem rgba(46,97,255,.05)}
}
.hero__title{
  font-size:clamp(4rem,5.2vw,6.4rem);
  font-family:'Inter',sans-serif;
  font-weight:700;
  line-height:108%;
  letter-spacing:-.035em;
  color:var(--navy-900);
  margin-bottom:2.4rem;
}
.hero__title em{
  font-style:normal;
  color:var(--blue);
  font-weight:700;
}
.hero__sub{
  font-size:1.8rem;
  color:var(--slate-600);
  max-width:52rem;
  margin-bottom:3.6rem;
  line-height:155%;
}
.hero__actions{
  display:flex;align-items:center;gap:1.2rem;
  flex-wrap:wrap;
}

/* Hero visual — tilted browser mockup */
.hero__visual{
  position:relative;
}
.hero__visual-tilt{
  position:relative;
}
.hero__visual-tilt::before{
  /* Soft blue glow behind the mockup */
  content:"";
  position:absolute;
  inset:-3rem -2rem -3rem -2rem;
  background:radial-gradient(ellipse at center,rgba(46,97,255,.18) 0%,transparent 60%);
  filter:blur(40px);
  z-index:-1;
}
.browser{
  background:#fff;
  border-radius:1.6rem;
  box-shadow:
    0 30px 60px -20px rgba(3,41,82,.25),
    0 18px 36px -18px rgba(3,41,82,.18),
    0 0 0 1px rgba(3,41,82,.06);
  overflow:hidden;
  min-width:60rem;
  margin-left:-2rem;
}
.browser__bar{
  display:flex;align-items:center;gap:1rem;
  padding:1.2rem 1.6rem;
  background:#F8FAFD;
  border-bottom:1px solid var(--slate-200);
}
.browser__dots{display:flex;gap:.6rem}
.browser__dot{width:1.1rem;height:1.1rem;border-radius:50%;background:#E2E8F0}
.browser__dot:nth-child(1){background:#FF5F57}
.browser__dot:nth-child(2){background:#FEBC2E}
.browser__dot:nth-child(3){background:#28C840}
.browser__url{
  flex:1;
  display:flex;align-items:center;justify-content:center;gap:.6rem;
  background:#fff;
  border:1px solid var(--slate-200);
  border-radius:.8rem;
  padding:.6rem 1.2rem;
  font-size:1.2rem;color:var(--slate-600);
  max-width:24rem;
  margin-inline:auto;
}
.browser__url svg{width:1.2rem;height:1.2rem;color:var(--slate-600)}

.browser__body{
  padding:2rem 2.4rem;
  background:#fff;
  min-height:38rem;
}
.browser__brand{
  display:flex;align-items:center;gap:.8rem;
  padding-bottom:1.4rem;
  border-bottom:1px solid var(--slate-100);
  margin-bottom:1.6rem;
}
.browser__brand-mark{
  width:2.4rem;height:2.4rem;border-radius:.4rem;
  background:var(--blue);color:#fff;
  display:grid;place-items:center;
  font-size:1rem;font-weight:700;
}
.browser__brand-name{
  font-size:1.3rem;font-weight:600;color:var(--navy-900);
}
.browser__section-label{
  font-size:1.05rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;
  color:var(--slate-600);
  margin-bottom:1.4rem;
}

/* Pipeline steps row */
.pipeline{
  display:flex;align-items:flex-start;justify-content:space-between;
  position:relative;
  margin-bottom:2.4rem;
  padding:0 1rem;
}
.pipeline::before{
  content:"";
  position:absolute;
  top:2.2rem;left:5rem;right:5rem;
  height:1px;
  background:repeating-linear-gradient(90deg,var(--slate-300,#cbd5e1) 0,var(--slate-300,#cbd5e1) 4px,transparent 4px,transparent 8px);
}
.pipeline__step{
  display:flex;flex-direction:column;align-items:center;gap:.6rem;
  position:relative;z-index:1;
  flex:1;
}
.pipeline__circle{
  width:4.4rem;height:4.4rem;border-radius:50%;
  background:#fff;
  border:1px solid var(--slate-200);
  display:grid;place-items:center;
  color:var(--slate-600);
  box-shadow:0 2px 6px rgba(3,41,82,.04);
}
.pipeline__circle svg{width:1.8rem;height:1.8rem}
.pipeline__step.is-active .pipeline__circle{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;
  box-shadow:0 4px 12px rgba(46,97,255,.35);
}
.pipeline__step.is-done .pipeline__circle{
  background:#EEF3FF;
  border-color:#C9D7FE;
  color:var(--blue);
}
.pipeline__label{
  font-size:1.05rem;font-weight:600;color:var(--navy-900);
  text-align:center;
}
.pipeline__date{
  font-size:.95rem;color:var(--slate-600);
}

/* Action cards row */
.actions-row{
  display:grid;grid-template-columns:1fr 1fr 1fr;
  gap:1rem;
}
.action-card{
  position:relative;
  padding:1.4rem 1.2rem;
  border-radius:1rem;
  background:#fff;
  border:1px solid var(--slate-200);
  min-height:9rem;
  display:flex;flex-direction:column;justify-content:space-between;
}
.action-card.is-active{
  border-color:var(--blue);
  background:linear-gradient(180deg,rgba(46,97,255,.05) 0%,#fff 100%);
  box-shadow:0 0 0 3px rgba(46,97,255,.1);
}
.action-card__icon{
  width:2.4rem;height:2.4rem;
  border-radius:.4rem;
  background:var(--slate-100);
  color:var(--slate-600);
  display:grid;place-items:center;
}
.action-card__icon svg{width:1.4rem;height:1.4rem}
.action-card.is-active .action-card__icon{background:#EEF3FF;color:var(--blue)}
.action-card__check{
  position:absolute;top:1rem;right:1rem;
  width:1.6rem;height:1.6rem;border-radius:.3rem;
  background:var(--blue);color:#fff;
  display:grid;place-items:center;
  font-size:1rem;
}
.action-card__label{
  font-size:1.1rem;font-weight:600;color:var(--navy-900);
  margin-top:.6rem;
}

/* Top-right status pill in browser */
.status-pill{
  position:absolute;top:1.4rem;right:1.6rem;
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.3rem .8rem;
  background:#FEF3C7;
  border-radius:99.9rem;
  font-size:1rem;font-weight:600;color:#92400E;
}
.status-pill::before{
  content:"";width:.5rem;height:.5rem;border-radius:50%;background:#F59E0B;
}

/* ============================================================
   TRUSTED LOGO STRIP
   ============================================================ */
.trusted{
  padding:8rem 0;
  border-top:1px solid var(--slate-200);
}
.trusted__title{
  text-align:center;
  font-size:1.5rem;
  color:var(--slate-600);
  margin-bottom:4rem;
}
.trusted__title strong{color:var(--navy-900);font-weight:600}
/* Ticker viewport */
.trusted__logos{
  position:relative;
  overflow:hidden;
  width:100%;
  /* Soft fade on left/right edges so logos enter/exit elegantly */
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 8%,#000 92%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0,#000 8%,#000 92%,transparent 100%);
}
/* Sliding track — content rendered twice so the loop is seamless */
.trusted__track{
  display:flex;align-items:center;
  gap:6rem;
  padding:.4rem 3rem;
  width:max-content;
  /* `reverse` = left-to-right direction */
  animation:tickerSlide 38s linear infinite reverse;
}
.trusted__logos:hover .trusted__track{animation-play-state:paused}
@keyframes tickerSlide{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}
@media (prefers-reduced-motion:reduce){
  .trusted__track{animation:none;flex-wrap:wrap;justify-content:center;width:100%}
  .trusted__logos{mask-image:none;-webkit-mask-image:none}
}
.trusted__logo{
  display:inline-flex;align-items:center;justify-content:center;gap:1rem;
  height:5.6rem;
  flex-shrink:0;
  filter:grayscale(100%);
  opacity:.7;
  transition:filter .3s ease,opacity .3s ease,transform .35s var(--ease);
}
.trusted__logo:hover{
  filter:grayscale(0%);
  opacity:1;
  transform:translateY(-2px);
}
.trusted__logo img{
  height:100%;
  width:auto;
  max-width:18rem;
  object-fit:contain;
  display:block;
}
.trusted__logo--ir{gap:1rem}
.trusted__logo--ir img:first-child{height:4.4rem;width:auto}
.trusted__logo--ir img:last-child{height:3.2rem;width:auto;max-width:14rem}

/* Text/font-based logos (for clients without a graphic mark) */
.trusted__logo--text{
  filter:none;
  opacity:.85;
  font-weight:600;
  color:var(--navy-900);
  letter-spacing:-.01em;
  white-space:nowrap;
  padding:0 .4rem;
}
.trusted__logo--text:hover{opacity:1}
.trusted__logo--text .tlogo-mark{
  font-family:'Playfair Display','Cormorant Garamond','Georgia',serif;
  font-style:italic;
  font-size:2.4rem;
  font-weight:700;
  letter-spacing:.005em;
  color:var(--navy-900);
}
.trusted__logo--text .tlogo-sans{
  font-family:'Inter',sans-serif;
  font-size:2rem;
  font-weight:700;
  letter-spacing:-.03em;
  text-transform:uppercase;
}
.trusted__logo--text .tlogo-sans em{
  font-style:normal;
  color:var(--blue);
  font-weight:800;
}
@media (max-width:720px){
  .trusted__logos{gap:3rem 3.6rem}
  .trusted__logo{height:4.4rem}
  .trusted__logo img{max-width:14rem}
  .trusted__logo--text .tlogo-mark{font-size:2rem}
  .trusted__logo--text .tlogo-sans{font-size:1.7rem}
  .trusted__logo--ir img:first-child{height:3.4rem}
  .trusted__logo--ir img:last-child{height:2.6rem;max-width:11rem}
}

/* ============================================================
   SECTION — Bloxs .efVtLj soft blue gradient card with glow
   ============================================================ */
.section{padding:8rem 0;position:relative}
.section--card .container{
  padding:8rem 4rem 11.2rem;
  border-radius:3.2rem;
  background:linear-gradient(180deg,rgba(176,201,254,.2) 0%,rgba(226,232,240,0) 174%),#fff;
  box-shadow:var(--shadow-card);
  position:relative;
  overflow:hidden;
}
.section--card .container::before,
.section--card .container::after{
  content:"";
  position:absolute;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(3,41,82,0) 0%,rgba(69,119,255,.15) 33%,rgba(69,119,255,.15) 66%,rgba(3,41,82,0) 100%);
  width:50rem;height:30rem;
  border-radius:100%;
  filter:blur(40px);
}
.section--card .container::before{
  transform:rotate(15deg);
  top:-5rem;left:-5rem;
  opacity:.6;
}
.section--card .container::after{
  transform:rotate(-165deg);
  top:4rem;right:-5rem;
  opacity:.5;
}
.section__inner{position:relative;z-index:1}

.section__eyebrow{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.4rem 1rem .4rem .4rem;
  background:#fff;
  border-radius:99.9rem;
  font-size:1.2rem;font-weight:600;
  color:var(--navy-900);
  margin-bottom:1.6rem;
  text-transform:uppercase;letter-spacing:.06em;
  box-shadow:0 0 0 1px rgba(3,41,82,.06);
}
.section__eyebrow-icon{
  width:2.4rem;height:2.4rem;border-radius:50%;
  background:var(--blue);
  display:grid;place-items:center;
  color:#fff;
}
.section__eyebrow-icon svg{width:1.2rem;height:1.2rem}

.section__title{
  font-size:clamp(3.2rem,4.5vw,5.6rem);
  font-weight:500;
  line-height:115%;
  letter-spacing:-.025em;
  color:var(--navy-900);
  max-width:78rem;
  margin-bottom:2.4rem;
}
.section__title em{font-style:normal;color:var(--blue);font-weight:700}
.section__header{margin-bottom:6rem}
.section__sub{
  font-size:1.7rem;color:var(--slate-600);
  max-width:60rem;line-height:155%;
}

/* ============================================================
   AUDIENCE — Sell Side / Buy Side cards
   ============================================================ */
.audience__grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;
}
.audience__card{
  position:relative;
  padding:4rem;
  border-radius:2.4rem;
  background:#fff;
  box-shadow:var(--shadow-card);
  transition:transform .4s var(--ease);
  overflow:hidden;
}
.audience__card:hover{transform:translateY(-4px)}
.audience__card::before{
  content:"";
  position:absolute;top:-10rem;right:-10rem;
  width:30rem;height:30rem;
  background:radial-gradient(circle,rgba(46,97,255,.08) 0%,transparent 60%);
  pointer-events:none;
}
.audience__tag{
  display:inline-block;
  padding:.4rem 1rem;
  background:var(--slate-100);
  border-radius:.6rem;
  font-size:1.1rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;
  color:var(--slate-600);
  margin-bottom:2rem;
}
.audience__name{
  font-size:3.2rem;font-weight:700;
  letter-spacing:-.02em;
  color:var(--navy-900);
  margin-bottom:.4rem;
}
.audience__role{
  font-size:1.4rem;color:var(--slate-600);
  margin-bottom:2.4rem;
}
.audience__desc{
  font-size:1.5rem;color:var(--slate-600);
  line-height:160%;margin-bottom:3.2rem;
}
.audience__link{
  display:inline-flex;align-items:center;gap:1rem;
  font-size:1.4rem;font-weight:600;
  color:var(--blue);
  transition:gap .3s ease;
}
.audience__link:hover{gap:1.4rem}
.audience__link-arrow{
  width:2.4rem;height:2.4rem;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  display:grid;place-items:center;
}
.audience__link-arrow svg{width:1.2rem;height:1.2rem}

/* ============================================================
   SERVICES — sticky tabs + panel
   ============================================================ */
.services__layout{
  display:grid;grid-template-columns:36rem 1fr;gap:4rem;
  align-items:start;
}
.services__tabs{
  position:sticky;top:10rem;
  display:flex;flex-direction:column;gap:.4rem;
  padding:.6rem;
  background:rgba(255,255,255,.6);
  border-radius:1.6rem;
  box-shadow:var(--shadow-card);
}
.services__tab{
  display:flex;align-items:center;gap:1.2rem;
  padding:1.4rem 1.6rem;
  border-radius:1rem;
  font-size:1.4rem;font-weight:500;
  color:var(--slate-600);
  text-align:left;
  width:100%;
  transition:all .3s ease;
}
.services__tab:hover{background:var(--slate-100);color:var(--navy-900)}
.services__tab.is-active{
  background:#fff;
  color:var(--navy-900);
  box-shadow:0 0 0 1px rgba(3,41,82,.04),0 1px 1px rgba(3,41,82,.04);
}
.services__tab-icon{
  width:3.2rem;height:3.2rem;
  border-radius:.8rem;
  background:var(--slate-100);
  color:var(--slate-600);
  display:grid;place-items:center;
  flex-shrink:0;
  transition:all .3s ease;
}
.services__tab-icon svg{width:1.6rem;height:1.6rem}
.services__tab.is-active .services__tab-icon{
  background:var(--blue);color:#fff;
}

.services__panel{
  background:#fff;
  border-radius:2.4rem;
  padding:4.8rem;
  box-shadow:var(--shadow-card);
  min-height:60rem;
  transition:opacity .3s ease;
}
.services__panel-title{
  font-size:3.2rem;font-weight:700;
  color:var(--navy-900);
  letter-spacing:-.02em;
  margin-bottom:1.6rem;
}
.services__panel-desc{
  font-size:1.6rem;color:var(--slate-600);
  line-height:160%;
  max-width:55rem;
  margin-bottom:3.2rem;
}
.services__features{
  display:flex;flex-direction:column;gap:1.6rem;
  margin-bottom:3.2rem;
}
.services__feature{
  padding:2rem;
  background:var(--slate-50);
  border-radius:1.2rem;
  border:1px solid var(--slate-200);
}
.services__feature-title{
  font-size:1.5rem;font-weight:600;
  color:var(--navy-900);
  margin-bottom:.6rem;
}
.services__feature-desc{
  font-size:1.4rem;color:var(--slate-600);
  line-height:155%;
}
.services__mock{
  margin-top:3.2rem;
  padding:3rem;
  background:linear-gradient(180deg,rgba(176,201,254,.2) 0%,#fff 100%);
  border:1px solid var(--slate-200);
  border-radius:1.6rem;
  position:relative;overflow:hidden;
  height:18rem;
}
.services__mock-bars{
  display:flex;align-items:flex-end;gap:.8rem;
  height:100%;
}
.services__mock-bar{
  flex:1;
  background:linear-gradient(180deg,var(--blue) 0%,rgba(46,97,255,.3) 100%);
  border-radius:.4rem .4rem 0 0;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip{
  padding:4rem 0 8rem;
}
.cta-strip__card{
  position:relative;
  padding:6rem 5rem;
  border-radius:3.2rem;
  background:linear-gradient(180deg,rgba(176,201,254,.2) 0%,rgba(226,232,240,0) 174%),#fff;
  box-shadow:var(--shadow-card);
  display:flex;align-items:center;justify-content:space-between;
  gap:4rem;flex-wrap:wrap;
  overflow:hidden;
}
.cta-strip__card::before{
  content:"";
  position:absolute;
  width:50rem;height:30rem;
  top:-5rem;right:-5rem;
  background:linear-gradient(90deg,rgba(3,41,82,0) 0%,rgba(69,119,255,.15) 50%,rgba(3,41,82,0) 100%);
  border-radius:100%;
  filter:blur(40px);
  transform:rotate(-30deg);
  pointer-events:none;
}
.cta-strip__content{position:relative;z-index:1;max-width:56rem}
.cta-strip__title{
  font-size:clamp(2.6rem,3vw,3.6rem);
  font-weight:500;line-height:120%;
  letter-spacing:-.02em;
  color:var(--navy-900);
  margin-bottom:1.2rem;
}
.cta-strip__sub{
  font-size:1.5rem;color:var(--slate-600);line-height:155%;
}
.cta-strip__actions{
  position:relative;z-index:1;
  display:flex;gap:1.2rem;flex-wrap:wrap;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products__grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;
  margin-bottom:2rem;
}
.product__card{
  position:relative;
  padding:3.2rem;
  background:#fff;
  border-radius:2rem;
  box-shadow:var(--shadow-card);
  transition:transform .35s var(--ease);
}
.product__card:hover{transform:translateY(-4px)}
.product__icon{
  width:5.6rem;height:5.6rem;
  border-radius:1.2rem;
  background:var(--blue);
  color:#fff;
  display:grid;place-items:center;
  margin-bottom:2.4rem;
  box-shadow:
    0 8px 20px rgba(46,97,255,.25),
    inset 0 -1px 0 rgba(0,0,0,.15);
}
.product__icon svg{width:2.4rem;height:2.4rem}
.product__name{
  font-size:2rem;font-weight:700;
  color:var(--navy-900);
  letter-spacing:-.01em;
  margin-bottom:.8rem;
}
.product__desc{
  font-size:1.4rem;color:var(--slate-600);
  line-height:155%;margin-bottom:2.4rem;
  min-height:6rem;
}
.product__link{
  display:inline-flex;align-items:center;gap:.8rem;
  font-size:1.35rem;font-weight:600;color:var(--blue);
  transition:gap .3s ease;
}
.product__link:hover{gap:1.2rem}

.product__feature-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:2rem;
}
.product__feature-card{
  position:relative;
  padding:4rem;
  border-radius:2rem;
  overflow:hidden;
  min-height:26rem;
  display:flex;flex-direction:column;justify-content:flex-end;
  box-shadow:var(--shadow-card);
}
.product__feature-card--ai{
  background:
    radial-gradient(ellipse at 30% 20%,rgba(46,97,255,.18) 0%,transparent 60%),
    linear-gradient(180deg,rgba(176,201,254,.2) 0%,#fff 100%);
}
.product__feature-card--sec{
  background:
    radial-gradient(ellipse at 70% 30%,rgba(46,97,255,.12) 0%,transparent 60%),
    linear-gradient(180deg,#F1F5F9 0%,#fff 100%);
}
.product__feature-title{
  font-size:2rem;font-weight:700;
  color:var(--navy-900);
  letter-spacing:-.01em;margin-bottom:.8rem;
}
.product__feature-desc{
  font-size:1.4rem;color:var(--slate-600);line-height:155%;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;
}
.testimonial{
  padding:3.2rem;
  background:#fff;
  border-radius:2rem;
  box-shadow:var(--shadow-card);
  display:flex;flex-direction:column;
}
.testimonial__quote{
  font-size:4.8rem;line-height:.8;
  color:var(--blue);
  font-weight:800;
  margin-bottom:1.6rem;
}
.testimonial__text{
  font-size:1.5rem;line-height:160%;
  color:var(--navy-800);
  margin-bottom:2.4rem;
  flex:1;
}
.testimonial__author{
  display:flex;align-items:center;gap:1.2rem;
  padding-top:2rem;
  border-top:1px solid var(--slate-200);
}
.testimonial__avatar{
  width:4.4rem;height:4.4rem;
  border-radius:50%;
  background:linear-gradient(135deg,var(--navy-900) 0%,var(--blue) 100%);
  color:#fff;font-weight:700;font-size:1.5rem;
  display:grid;place-items:center;
}
.testimonial__name{font-size:1.4rem;font-weight:600;color:var(--navy-900)}
.testimonial__role{font-size:1.25rem;color:var(--slate-600);margin-top:.2rem}

/* ============================================================
   FINAL CTA — Bloxs .diqWEm
   ============================================================ */
.final-cta{
  padding:12rem 0 13rem;
  background:linear-gradient(0deg,rgba(176,201,254,.2) 0%,rgba(226,232,240,0) 100%);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.final-cta::before{
  content:"";
  position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 50% at 50% 100%,rgba(46,97,255,.1) 0%,transparent 70%);
  pointer-events:none;
}
.final-cta__inner{position:relative;z-index:1}
.final-cta__title{
  font-size:clamp(3.6rem,5vw,5.6rem);
  font-weight:500;line-height:115%;
  letter-spacing:-.025em;
  color:var(--navy-900);
  max-width:78rem;
  margin:2rem auto 2.4rem;
}
.final-cta__title em{font-style:normal;color:var(--blue);font-weight:700}
.final-cta__sub{
  font-size:1.7rem;color:var(--slate-600);
  max-width:60rem;margin:0 auto 4rem;line-height:155%;
}
.final-cta__actions{
  display:flex;justify-content:center;gap:1.2rem;flex-wrap:wrap;
}

/* ============================================================
   ANIMATIONS — keyframes
   ============================================================ */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}
@keyframes fadeLeft{
  from{opacity:0;transform:translateX(-32px)}
  to{opacity:1;transform:translateX(0)}
}
@keyframes fadeRight{
  from{opacity:0;transform:translateX(32px)}
  to{opacity:1;transform:translateX(0)}
}
@keyframes scaleIn{
  from{opacity:0;transform:scale(.92)}
  to{opacity:1;transform:scale(1)}
}
@keyframes tiltIn{
  from{opacity:0;transform:rotate3d(0,1,0,-25deg) translateX(40px)}
  to{opacity:1;transform:rotate3d(0,1,0,-12deg) rotate3d(1,0,0,4deg)}
}
@keyframes floatY{
  0%,100%{transform:rotate3d(0,1,0,-12deg) rotate3d(1,0,0,4deg) translateY(0)}
  50%{transform:rotate3d(0,1,0,-12deg) rotate3d(1,0,0,4deg) translateY(-8px)}
}
@keyframes shimmerGlow{
  0%,100%{opacity:.6}
  50%{opacity:1}
}
@keyframes blink{
  0%,100%{opacity:1}
  50%{opacity:.4}
}
@keyframes marqueeLeft{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
@keyframes drawLine{
  from{stroke-dashoffset:100}
  to{stroke-dashoffset:0}
}

/* ============================================================
   REVEAL system — observed by JS
   ============================================================ */
.reveal{opacity:0;will-change:opacity,transform}
.reveal.is-visible{
  animation:fadeUp .9s var(--ease) forwards;
}
.reveal--left.is-visible{animation:fadeLeft .9s var(--ease) forwards}
.reveal--right.is-visible{animation:fadeRight .9s var(--ease) forwards}
.reveal--scale.is-visible{animation:scaleIn .8s var(--ease) forwards}
.reveal--fade.is-visible{animation:fadeIn 1.2s var(--ease) forwards}

/* Stagger children inside a reveal container */
.reveal-stagger > *{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s var(--ease),transform .7s var(--ease);
}
.reveal-stagger.is-visible > *{opacity:1;transform:translateY(0)}
.reveal-stagger.is-visible > *:nth-child(1){transition-delay:.05s}
.reveal-stagger.is-visible > *:nth-child(2){transition-delay:.15s}
.reveal-stagger.is-visible > *:nth-child(3){transition-delay:.25s}
.reveal-stagger.is-visible > *:nth-child(4){transition-delay:.35s}
.reveal-stagger.is-visible > *:nth-child(5){transition-delay:.45s}
.reveal-stagger.is-visible > *:nth-child(6){transition-delay:.55s}

/* ============================================================
   HERO entrance — fires on page load
   ============================================================ */
.hero__eyebrow{animation:fadeUp .8s var(--ease) both;animation-delay:.1s}
.hero__title{animation:fadeUp .9s var(--ease) both;animation-delay:.2s}
.hero__sub{animation:fadeUp .9s var(--ease) both;animation-delay:.35s}
.hero__actions{animation:fadeUp .9s var(--ease) both;animation-delay:.5s}
.hero__visual-tilt{
  animation:tiltIn 1.2s var(--ease) both;
  animation-delay:.6s;
}
.hero__visual-tilt.float-active{
  animation:floatY 6s ease-in-out infinite;
}

/* Browser inner element animations (delayed to fire after tiltIn) */
.browser__brand,.browser__section-label,.pipeline,.actions-row{
  animation:fadeUp .6s var(--ease) both;
}
.browser__brand{animation-delay:1.2s}
.browser__section-label{animation-delay:1.3s}
.pipeline{animation-delay:1.4s}
.actions-row{animation-delay:1.5s}

/* Pipeline step circles pop in one by one */
.pipeline__step{animation:scaleIn .5s var(--ease) both}
.pipeline__step:nth-child(1){animation-delay:1.5s}
.pipeline__step:nth-child(2){animation-delay:1.65s}
.pipeline__step:nth-child(3){animation-delay:1.8s}
.pipeline__step:nth-child(4){animation-delay:1.95s}
.pipeline__step:nth-child(5){animation-delay:2.1s}

/* Action cards stagger in */
.action-card{animation:fadeUp .5s var(--ease) both}
.action-card:nth-child(1){animation-delay:1.6s}
.action-card:nth-child(2){animation-delay:1.75s}
.action-card:nth-child(3){animation-delay:1.9s}

/* Active pipeline circle gets a pulsing ring */
.pipeline__step.is-active .pipeline__circle{
  position:relative;
}
.pipeline__step.is-active .pipeline__circle::after{
  content:"";
  position:absolute;
  inset:-.4rem;
  border-radius:50%;
  border:.2rem solid var(--blue);
  opacity:.4;
  animation:shimmerGlow 2s ease-in-out infinite;
}

/* Status pill blink */
.status-pill::before{
  animation:blink 1.8s ease-in-out infinite;
}

/* ============================================================
   HOVER micro-interactions
   ============================================================ */
.product__card,.audience__card,.testimonial,.product__feature-card{
  transition:transform .4s var(--ease),box-shadow .4s var(--ease);
}
.product__card:hover,.testimonial:hover{
  transform:translateY(-6px);
  box-shadow:
    0px 1px 0px 0px #fff inset,
    0px 0px 0px 1px rgba(176,201,254,0.4),
    0 20px 40px -10px rgba(3,41,82,.12);
}

/* Product icon — subtle bounce on card hover */
.product__icon{
  transition:transform .5s var(--ease),box-shadow .5s var(--ease);
}
.product__card:hover .product__icon{
  transform:translateY(-2px) scale(1.05);
  box-shadow:
    0 12px 28px rgba(46,97,255,.35),
    inset 0 -1px 0 rgba(0,0,0,.15);
}

/* Service tab icon spin on hover */
.services__tab-icon{transition:transform .5s var(--ease),background .3s ease,color .3s ease}
.services__tab:hover .services__tab-icon{transform:rotate(8deg)}

/* Megamenu category arrow indicator */
.megamenu__cat{position:relative}
.megamenu__cat::after{
  content:"";
  position:absolute;
  right:1.4rem;top:50%;
  width:.8rem;height:.8rem;
  border-right:.2rem solid var(--blue);
  border-top:.2rem solid var(--blue);
  transform:translateY(-50%) rotate(45deg) scale(0);
  opacity:0;
  transition:transform .3s var(--ease),opacity .3s ease;
}
.megamenu__cat.is-active::after{transform:translateY(-50%) rotate(45deg) scale(1);opacity:1}

/* Section eyebrow icon pulse */
.section__eyebrow-icon{position:relative}
.section__eyebrow-icon::after{
  content:"";
  position:absolute;
  inset:-.2rem;
  border-radius:50%;
  border:.15rem solid var(--blue);
  opacity:0;
}
.is-visible .section__eyebrow-icon::after{animation:shimmerGlow 2.5s ease-in-out infinite;opacity:.5}

/* Trusted logos — gentle hover lift */
.trusted__logo{
  transition:color .3s ease,transform .35s var(--ease);
}
.trusted__logo:hover{transform:translateY(-2px)}

/* Footer back-to-top arrow bounce */
.footer__back-top:hover .footer__back-top-icon{
  animation:bounceUp .6s ease;
}
@keyframes bounceUp{
  0%{transform:translateY(0)}
  40%{transform:translateY(-4px)}
  100%{transform:translateY(0)}
}

/* Section glow blobs drift slowly */
@keyframes blobDrift{
  0%,100%{transform:rotate(15deg) translate(0,0)}
  50%{transform:rotate(15deg) translate(2rem,-1rem)}
}
@keyframes blobDriftAlt{
  0%,100%{transform:rotate(-165deg) translate(0,0)}
  50%{transform:rotate(-165deg) translate(-2rem,1rem)}
}
.section--card .container::before{
  animation:blobDrift 12s ease-in-out infinite;
}
.section--card .container::after{
  animation:blobDriftAlt 14s ease-in-out infinite;
}

/* Button arrow nudge on hover (already exists, strengthen) */
.btn{position:relative;overflow:hidden}
.btn::before{
  content:"";
  position:absolute;
  top:0;left:-100%;
  width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.15),transparent);
  transition:left .6s ease;
  pointer-events:none;
}
.btn--primary:hover::before{left:100%}

/* Navbar entrance */
.nav-wrap{
  animation:fadeUp .8s var(--ease) both;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet: hide secondary nav links */
@media (max-width:1100px){
  .nav__deals,.nav__lang{display:none}
}

/* Tablet / small laptop: hide desktop menu, show hamburger */
@media (max-width:991px){
  .nav-wrap{padding:1.2rem 1.2rem}
  .nav-wrap.is-scrolled{padding-top:1rem}
  .nav{
    height:6.4rem;
    padding:0 .8rem 0 1.6rem;
    border-radius:1.8rem;
    /* Always show a subtle surface on mobile so the bar reads cleanly */
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    box-shadow:0 .4rem 1.6rem rgba(3,41,82,.06);
    gap:1.2rem;
  }
  .nav-wrap.is-scrolled .nav{
    background:rgba(255,255,255,.98);
    box-shadow:0 .6rem 2rem rgba(3,41,82,.1);
  }
  .nav__menu{display:none}
  .nav__hamburger{display:flex}
  .nav__cta,.nav__deals,.nav__lang{display:none}
  .nav__right{gap:0}
  .services__layout{grid-template-columns:1fr}
  .services__tabs{position:static;flex-direction:row;overflow-x:auto;padding:.6rem;-webkit-overflow-scrolling:touch}
  .services__tabs::-webkit-scrollbar{display:none}
  .services__tab{flex-shrink:0;white-space:nowrap}
  .products__grid,.testimonials__grid{grid-template-columns:1fr 1fr}
  .footer__grid{grid-template-columns:repeat(3,1fr)}
  .hero__grid{grid-template-columns:1fr;gap:6rem}
  .hero__visual-tilt{transform:none}
  .browser{min-width:0;margin-left:0}
}

/* Mobile */
@media (max-width:720px){
  .nav-wrap{padding:.8rem .8rem}
  .nav-wrap.is-scrolled{padding-top:.6rem}
  .nav{
    height:5.8rem;
    padding:0 .6rem 0 1.4rem;
    border-radius:1.6rem;
    gap:1rem;
  }
  .nav__brand{font-size:1.65rem;gap:.5rem}
  .nav__brand-mark{width:2.6rem;height:2.6rem;font-size:1.25rem}
  .nav__hamburger{width:4rem;height:4rem}
  .nav__hamburger span{width:1.8rem}
  .mobile-menu{padding:8.4rem 1.6rem 2.4rem}

  .hero{padding:11rem 0 5rem}
  .hero__title{font-size:3.4rem}
  .hero__sub{font-size:1.6rem}
  .hero__actions{flex-direction:column;align-items:stretch}
  .hero__actions .btn{width:100%;justify-content:space-between}
  .audience__grid,.products__grid,.testimonials__grid,.product__feature-grid{grid-template-columns:1fr}
  .services__panel{padding:2.4rem}
  .services__panel-title{font-size:2.4rem}
  .cta-strip__card{padding:3.2rem 2rem;flex-direction:column;align-items:stretch;gap:2.4rem}
  .cta-strip__actions{width:100%;flex-direction:column}
  .cta-strip__actions .btn{width:100%;justify-content:space-between}
  .final-cta{padding:8rem 0}
  .final-cta__actions{flex-direction:column;align-items:stretch;padding-inline:1rem}
  .final-cta__actions .btn{width:100%;justify-content:space-between}
  .footer{padding:5rem 0 3rem}
  .footer__grid{grid-template-columns:1fr 1fr;gap:3rem}
  .footer__bottom{flex-direction:column;align-items:flex-start;gap:2rem}
  .section{padding:5rem 0}
  .section--card .container{padding:4.8rem 1.6rem 6rem;border-radius:2.4rem}
  .section__header{margin-bottom:4rem}
  .section__title{font-size:2.8rem;letter-spacing:-.02em}
  .browser__body{min-height:0;padding:1.4rem}
  .actions-row{grid-template-columns:1fr 1fr;gap:.8rem}
  .action-card{padding:1.1rem .9rem;min-height:7.6rem}
  .action-card__label{font-size:1rem}
  .pipeline{padding:0}
  .pipeline__circle{width:3.4rem;height:3.4rem}
  .pipeline__circle svg{width:1.4rem;height:1.4rem}
  .pipeline__label{font-size:.95rem}
  .pipeline__date{font-size:.85rem}
  .pipeline::before{top:1.7rem;left:3.5rem;right:3.5rem}
  .hero::before,.hero::after{display:none}
  .trusted{padding:5rem 0}
  .testimonial,.product__card{padding:2.4rem}
  .audience__card{padding:2.8rem}
  .audience__name{font-size:2.6rem}
}

/* Extra small */
@media (max-width:420px){
  html{font-size:55%}
  .footer__grid{grid-template-columns:1fr}
}

/* ===== Hero dashboard preview ===== */
.dash{
  display:grid;
  grid-template-columns:10.4rem 1fr;
  gap:1.4rem;
  min-height:36rem;
}
.browser__body{min-height:42rem}
.dash__sidebar{
  background:#F7F9FD;
  border-radius:1rem;
  padding:1.1rem .7rem;
  display:flex;flex-direction:column;gap:.3rem;
  border:1px solid rgba(3,41,82,.04);
}
.dash__brand{
  display:flex;align-items:center;gap:.55rem;
  padding:0 .7rem .9rem;
  margin-bottom:.5rem;
  border-bottom:1px solid rgba(3,41,82,.06);
}
.dash__brand-mark{
  width:1.8rem;height:1.8rem;border-radius:.4rem;
  background:var(--blue);color:#fff;
  display:grid;place-items:center;
  font-size:.9rem;font-weight:800;
}
.dash__brand-name{font-size:1.05rem;font-weight:700;color:var(--navy-900);letter-spacing:-.01em}
.dash__nav{display:flex;flex-direction:column;gap:.15rem}
.dash__nav-label{
  font-size:.75rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;
  color:var(--slate-600);
  padding:.7rem .7rem .3rem;
}
.dash__nav-item{
  display:flex;align-items:center;gap:.65rem;
  padding:.5rem .7rem;
  border-radius:.55rem;
  font-size:1rem;font-weight:500;
  color:var(--slate-600);
  cursor:default;
}
.dash__nav-item svg{width:1.2rem;height:1.2rem;flex-shrink:0;stroke-width:2}
.dash__nav-item.is-active{
  background:#fff;color:var(--navy-900);font-weight:600;
  box-shadow:0 1px 2px rgba(3,41,82,.06),0 0 0 1px rgba(3,41,82,.05);
}
.dash__nav-item.is-active svg{color:var(--blue)}
.dash__nav-badge{
  margin-left:auto;
  font-size:.7rem;font-weight:700;
  background:var(--blue);color:#fff;
  padding:.05rem .35rem;border-radius:.3rem;
  line-height:1.2;
}

.dash__main{display:flex;flex-direction:column;gap:1rem;min-width:0}
.dash__topbar{
  display:flex;align-items:center;justify-content:space-between;
  gap:.8rem;
}
.dash__search{
  display:flex;align-items:center;gap:.5rem;
  background:#F7F9FD;border:1px solid rgba(3,41,82,.05);
  border-radius:.6rem;padding:.5rem .85rem;
  font-size:.95rem;color:var(--slate-600);
  flex:1;min-width:0;max-width:18rem;
  overflow:hidden;white-space:nowrap;text-overflow:ellipsis;
}
.dash__search svg{width:1.1rem;height:1.1rem;flex-shrink:0}
.dash__topbar-right{display:flex;align-items:center;gap:.6rem;flex-shrink:0}
.dash__bell{
  position:relative;
  width:2.2rem;height:2.2rem;border-radius:.5rem;
  background:#F7F9FD;border:1px solid rgba(3,41,82,.05);
  display:grid;place-items:center;
}
.dash__bell svg{width:1.2rem;height:1.2rem;color:var(--slate-600)}
.dash__bell::after{
  content:"";position:absolute;top:.3rem;right:.3rem;
  width:.55rem;height:.55rem;border-radius:50%;
  background:#FF4D4D;
  box-shadow:0 0 0 .15rem #fff;
}
.dash__avatar{
  width:2.2rem;height:2.2rem;border-radius:50%;
  background:linear-gradient(135deg,#5b8aff,#2e61ff);
  color:#fff;display:grid;place-items:center;
  font-size:.85rem;font-weight:700;
  letter-spacing:.02em;
}

.dash__hello{
  display:flex;align-items:baseline;justify-content:space-between;
  gap:1rem;
}
.dash__hello-title{font-size:1.35rem;font-weight:700;color:var(--navy-900);letter-spacing:-.01em}
.dash__hello-meta{
  font-size:.9rem;color:var(--slate-600);
  display:inline-flex;align-items:center;gap:.4rem;
}
.dash__hello-meta b{color:var(--navy-900);font-weight:600}
.dash__hello-meta .up{color:#0EAB6E;font-weight:700}

.dash__kpis{
  display:grid;grid-template-columns:repeat(4,1fr);gap:.7rem;
}
.dash__kpi{
  background:#F7F9FD;border:1px solid rgba(3,41,82,.05);
  border-radius:.8rem;padding:.85rem .9rem .8rem;
  min-width:0;
  position:relative;overflow:hidden;
}
.dash__kpi::after{
  content:"";position:absolute;inset:auto -1rem -1rem auto;
  width:5rem;height:5rem;border-radius:50%;
  background:radial-gradient(circle,rgba(46,97,255,.06) 0%,transparent 70%);
  pointer-events:none;
}
.dash__kpi-label{
  display:flex;align-items:center;gap:.35rem;
  font-size:.78rem;font-weight:600;color:var(--slate-600);
  text-transform:uppercase;letter-spacing:.04em;
}
.dash__kpi-label svg{width:.9rem;height:.9rem;color:var(--blue)}
.dash__kpi-value{
  font-size:1.5rem;font-weight:700;color:var(--navy-900);
  margin:.35rem 0 .2rem;line-height:1.1;letter-spacing:-.02em;
}
.dash__kpi-trend{
  display:inline-flex;align-items:center;gap:.2rem;
  font-size:.85rem;font-weight:600;
}
.dash__kpi-trend--up{color:#0EAB6E}
.dash__kpi-trend--down{color:#E33}
.dash__kpi-trend svg{width:.8rem;height:.8rem}

.dash__chart{
  background:#F7F9FD;border:1px solid rgba(3,41,82,.05);
  border-radius:.8rem;padding:.85rem 1rem .9rem;
}
.dash__chart-head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:.4rem}
.dash__chart-title{font-size:1rem;font-weight:600;color:var(--navy-900)}
.dash__chart-tabs{display:flex;gap:.25rem;background:rgba(3,41,82,.04);padding:.15rem;border-radius:.4rem}
.dash__chart-tab{
  padding:.15rem .5rem;font-size:.78rem;font-weight:500;
  color:var(--slate-600);border-radius:.3rem;
}
.dash__chart-tab.is-active{background:#fff;color:var(--blue);font-weight:600;box-shadow:0 1px 2px rgba(3,41,82,.05)}
.dash__chart-svg{display:block;width:100%;height:5.4rem}

.dash__orders{
  background:#fff;border:1px solid rgba(3,41,82,.06);
  border-radius:.8rem;
  overflow:hidden;
}
.dash__orders-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:.65rem 1rem;
  border-bottom:1px solid rgba(3,41,82,.05);
}
.dash__orders-title{font-size:.95rem;font-weight:600;color:var(--navy-900)}
.dash__orders-link{font-size:.8rem;color:var(--blue);font-weight:500}
.dash__order{
  display:grid;grid-template-columns:1fr 4rem 4rem 1fr;gap:.6rem;align-items:center;
  padding:.5rem 1rem;
  font-size:.9rem;
}
.dash__order + .dash__order{border-top:1px solid rgba(3,41,82,.04)}
.dash__order-sym{font-weight:700;color:var(--navy-900);font-size:.95rem;letter-spacing:.01em}
.dash__order-tag{
  font-size:.7rem;font-weight:700;
  padding:.15rem 0;border-radius:.3rem;
  text-transform:uppercase;letter-spacing:.04em;
  text-align:center;
}
.dash__order-tag--buy{background:rgba(14,171,110,.13);color:#0EAB6E}
.dash__order-tag--sell{background:rgba(227,51,51,.13);color:#E33}
.dash__order-qty{color:var(--slate-600);font-size:.85rem;text-align:right}
.dash__order-price{font-weight:700;color:var(--navy-900);text-align:right;letter-spacing:.01em}

/* Hide the legacy absolute status-pill (Live indicator is now inside topbar) */
.browser__body .status-pill{display:none}

/* Inline live pill inside the dashboard topbar */
.dash__live{
  display:inline-flex;align-items:center;gap:.35rem;
  padding:.25rem .65rem;
  background:rgba(14,171,110,.12);color:#0EAB6E;
  border-radius:99.9rem;font-size:.78rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.04em;
  flex-shrink:0;
}
.dash__live::before{
  content:"";width:.5rem;height:.5rem;border-radius:50%;background:#0EAB6E;
  animation:dashPulse 1.6s ease-in-out infinite;
}
@keyframes dashPulse{
  0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(14,171,110,.45)}
  50%{opacity:.85;box-shadow:0 0 0 .4rem rgba(14,171,110,0)}
}

/* Nav items become interactive */
.dash__nav-item{cursor:pointer;transition:background .2s ease,color .2s ease}
.dash__nav-item:hover:not(.is-active){background:rgba(46,97,255,.06);color:var(--navy-900)}

/* View switching */
.dash__view{display:none;flex-direction:column;gap:1rem;min-height:0}
.dash__view.is-active{display:flex}

/* ========== Trading view ========== */
.dash__view-head{display:flex;align-items:center;justify-content:space-between;gap:.8rem;flex-wrap:wrap}
.dash__view-title{font-size:1.35rem;font-weight:700;color:var(--navy-900);letter-spacing:-.01em}
.dash__view-sub{font-size:.85rem;color:var(--slate-600)}

.tr-wrap{display:grid;grid-template-columns:1fr 14rem;gap:.9rem;align-items:start}
.tr-panel{background:#F7F9FD;border:1px solid rgba(3,41,82,.05);border-radius:.8rem;padding:.9rem 1rem}
.tr-instr{display:flex;align-items:center;justify-content:space-between;margin-bottom:.6rem}
.tr-instr-name{font-size:1.15rem;font-weight:700;color:var(--navy-900)}
.tr-instr-exch{font-size:.78rem;color:var(--slate-600);margin-left:.4rem;font-weight:500}
.tr-instr-price{font-size:1.4rem;font-weight:700;color:var(--navy-900);letter-spacing:-.01em}
.tr-instr-chg{font-size:.85rem;font-weight:600;color:#0EAB6E;margin-left:.4rem}
.tr-depth{display:grid;grid-template-columns:1fr 1fr;gap:.4rem;margin-top:.6rem;font-size:.8rem}
.tr-depth-col h6{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--slate-600);margin:0 0 .3rem}
.tr-depth-row{display:flex;justify-content:space-between;padding:.18rem 0;position:relative;z-index:1}
.tr-depth-row span:first-child{font-weight:600}
.tr-depth-bid{color:#0EAB6E}
.tr-depth-ask{color:#E33}
.tr-form{display:flex;flex-direction:column;gap:.6rem}
.tr-tabs{display:grid;grid-template-columns:1fr 1fr;background:rgba(3,41,82,.06);padding:.2rem;border-radius:.5rem;gap:.2rem}
.tr-tab{
  padding:.4rem;border-radius:.35rem;font-size:.85rem;font-weight:600;
  color:var(--slate-600);text-align:center;cursor:pointer;
}
.tr-tab.is-active.tr-tab--buy{background:#0EAB6E;color:#fff}
.tr-tab.is-active.tr-tab--sell{background:#E33;color:#fff}
.tr-row{display:flex;flex-direction:column;gap:.2rem}
.tr-row label{font-size:.75rem;font-weight:600;color:var(--slate-600);text-transform:uppercase;letter-spacing:.05em}
.tr-row input,.tr-row select{
  width:100%;padding:.55rem .7rem;
  background:#fff;border:1px solid rgba(3,41,82,.1);border-radius:.45rem;
  font:inherit;font-size:.9rem;color:var(--navy-900);
}
.tr-row input:focus,.tr-row select:focus{outline:none;border-color:var(--blue)}
.tr-place{
  padding:.7rem;border-radius:.5rem;
  background:var(--blue);color:#fff;
  font-weight:700;font-size:.9rem;border:0;cursor:pointer;
  transition:background .2s ease;
}
.tr-place:hover{background:#1f4ed8}
.tr-place--sell{background:#E33}
.tr-place--sell:hover{background:#c41f1f}

/* ========== Orders view ========== */
.ord-filters{display:flex;gap:.3rem;background:rgba(3,41,82,.04);padding:.2rem;border-radius:.5rem;width:fit-content}
.ord-filter{
  padding:.3rem .8rem;border-radius:.35rem;font-size:.8rem;font-weight:600;
  color:var(--slate-600);cursor:pointer;
}
.ord-filter.is-active{background:#fff;color:var(--blue);box-shadow:0 1px 2px rgba(3,41,82,.06)}
.ord-table{background:#fff;border:1px solid rgba(3,41,82,.06);border-radius:.8rem;overflow:hidden}
.ord-head{
  display:grid;grid-template-columns:1fr 3.6rem 3.4rem 4rem 1fr;gap:.6rem;
  padding:.55rem 1rem;
  background:#F7F9FD;
  font-size:.7rem;font-weight:700;color:var(--slate-600);
  text-transform:uppercase;letter-spacing:.05em;
}
.ord-row{
  display:grid;grid-template-columns:1fr 3.6rem 3.4rem 4rem 1fr;gap:.6rem;align-items:center;
  padding:.5rem 1rem;font-size:.85rem;
}
.ord-row + .ord-row{border-top:1px solid rgba(3,41,82,.04)}
.ord-sym{font-weight:700;color:var(--navy-900);font-size:.9rem}
.ord-status{
  font-size:.7rem;font-weight:700;padding:.12rem .4rem;border-radius:.3rem;
  text-align:center;text-transform:uppercase;letter-spacing:.04em;
}
.ord-status--open{background:rgba(46,97,255,.12);color:var(--blue)}
.ord-status--done{background:rgba(14,171,110,.13);color:#0EAB6E}
.ord-status--cncl{background:rgba(120,120,120,.13);color:var(--slate-600)}
.ord-price{font-weight:700;color:var(--navy-900);text-align:right;font-size:.85rem}

/* ========== Holdings view ========== */
.hd-kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:.6rem}
.hd-classes{
  display:grid;grid-template-columns:repeat(4,1fr);gap:.55rem;
}
.hd-class{
  background:#fff;border:1px solid rgba(3,41,82,.06);
  border-radius:.7rem;padding:.7rem .8rem;cursor:pointer;
  transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;
  min-width:0;
}
.hd-class:hover{border-color:var(--blue);transform:translateY(-1px);box-shadow:0 2px 6px rgba(3,41,82,.05)}
.hd-class.is-active{border-color:var(--blue);background:rgba(46,97,255,.04)}
.hd-class-icon{
  width:1.8rem;height:1.8rem;border-radius:.4rem;
  background:rgba(46,97,255,.1);color:var(--blue);
  display:grid;place-items:center;margin-bottom:.4rem;
}
.hd-class-icon svg{width:1.1rem;height:1.1rem}
.hd-class-name{font-size:.85rem;font-weight:700;color:var(--navy-900);line-height:1.2}
.hd-class-meta{font-size:.7rem;color:var(--slate-600);margin-top:.2rem}
.hd-class-val{font-size:.9rem;font-weight:700;color:var(--navy-900);margin-top:.3rem}
.hd-class-chg{font-size:.7rem;font-weight:600}
.hd-class-chg--up{color:#0EAB6E}
.hd-class-chg--down{color:#E33}

/* ========== Clients view ========== */
.cl-toolbar{display:flex;align-items:center;justify-content:space-between;gap:.8rem;flex-wrap:wrap}
.cl-search{
  display:flex;align-items:center;gap:.5rem;
  flex:1;min-width:0;
  background:#F7F9FD;border:1px solid rgba(3,41,82,.05);
  border-radius:.5rem;padding:.45rem .8rem;
  font-size:.85rem;color:var(--slate-600);
}
.cl-search svg{width:1rem;height:1rem;flex-shrink:0}
.cl-new{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.45rem .9rem;background:var(--blue);color:#fff;
  border-radius:.5rem;font-size:.85rem;font-weight:700;
  cursor:pointer;border:0;flex-shrink:0;
}
.cl-new svg{width:1rem;height:1rem;stroke-width:3}
.cl-new:hover{background:#1f4ed8}
.cl-list{background:#fff;border:1px solid rgba(3,41,82,.06);border-radius:.8rem;overflow:hidden}
.cl-row{
  display:grid;grid-template-columns:1.8rem 1fr 5rem 6.5rem 4rem;gap:.7rem;align-items:center;
  padding:.55rem 1rem;font-size:.85rem;
}
.cl-row + .cl-row{border-top:1px solid rgba(3,41,82,.04)}
.cl-row--header{background:#F7F9FD;font-size:.7rem;font-weight:700;color:var(--slate-600);text-transform:uppercase;letter-spacing:.04em}
.cl-row--header > *{font-weight:700 !important}
.cl-avatar{
  width:1.8rem;height:1.8rem;border-radius:50%;
  background:linear-gradient(135deg,#5b8aff,#2e61ff);
  color:#fff;display:grid;place-items:center;
  font-size:.7rem;font-weight:700;
}
.cl-name{font-weight:700;color:var(--navy-900);font-size:.9rem;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.cl-pan{font-size:.75rem;color:var(--slate-600);font-family:'SF Mono','Consolas',monospace}
.cl-aum{font-weight:700;color:var(--navy-900);text-align:right;font-size:.85rem}
.cl-st{
  font-size:.7rem;font-weight:700;padding:.12rem 0;border-radius:.3rem;
  text-align:center;text-transform:uppercase;letter-spacing:.04em;
}
.cl-st--ok{background:rgba(14,171,110,.13);color:#0EAB6E}
.cl-st--pend{background:rgba(245,158,11,.15);color:#92400E}

/* ========== Reports view ========== */
.rp-grid{display:grid;grid-template-columns:1fr 1fr;gap:.7rem}
.rp-field{display:flex;flex-direction:column;gap:.3rem}
.rp-field label{font-size:.72rem;font-weight:700;color:var(--slate-600);text-transform:uppercase;letter-spacing:.05em}
.rp-field select,.rp-field input{
  padding:.5rem .7rem;background:#fff;border:1px solid rgba(3,41,82,.1);border-radius:.45rem;
  font:inherit;font-size:.85rem;color:var(--navy-900);
}
.rp-field select:focus,.rp-field input:focus{outline:none;border-color:var(--blue)}
.rp-preview{
  background:#F7F9FD;border:1px solid rgba(3,41,82,.05);
  border-radius:.7rem;padding:.9rem 1rem;
  display:flex;align-items:center;gap:.8rem;
}
.rp-preview-icon{
  width:2.6rem;height:2.6rem;border-radius:.5rem;
  background:rgba(46,97,255,.1);color:var(--blue);
  display:grid;place-items:center;flex-shrink:0;
}
.rp-preview-icon svg{width:1.4rem;height:1.4rem}
.rp-preview-info{flex:1;min-width:0}
.rp-preview-title{font-size:.95rem;font-weight:700;color:var(--navy-900)}
.rp-preview-meta{font-size:.75rem;color:var(--slate-600);margin-top:.15rem}
.rp-actions{display:flex;gap:.4rem;flex-shrink:0}
.rp-btn{
  display:inline-flex;align-items:center;gap:.35rem;
  padding:.45rem .8rem;border-radius:.45rem;
  font-size:.78rem;font-weight:700;cursor:pointer;border:0;
}
.rp-btn svg{width:.95rem;height:.95rem}
.rp-btn--share{background:#fff;color:var(--navy-900);border:1px solid rgba(3,41,82,.1)}
.rp-btn--share:hover{background:#F7F9FD}
.rp-btn--dl{background:var(--blue);color:#fff}
.rp-btn--dl:hover{background:#1f4ed8}

/* ========== Settings view ========== */
.st-section{background:#F7F9FD;border:1px solid rgba(3,41,82,.05);border-radius:.8rem;padding:.95rem 1rem}
.st-section-title{
  font-size:.78rem;font-weight:700;color:var(--slate-600);
  text-transform:uppercase;letter-spacing:.05em;margin-bottom:.6rem;
}
.st-grid{display:grid;grid-template-columns:1fr 1fr;gap:.6rem .9rem}
.st-field{display:flex;flex-direction:column;gap:.25rem}
.st-field label{font-size:.78rem;font-weight:600;color:var(--slate-600)}
.st-field input,.st-field select{
  padding:.45rem .65rem;background:#fff;border:1px solid rgba(3,41,82,.1);border-radius:.4rem;
  font:inherit;font-size:.82rem;color:var(--navy-900);
}
.st-field input:focus,.st-field select:focus{outline:none;border-color:var(--blue)}
.st-logo-row{display:flex;align-items:center;gap:.7rem}
.st-logo-preview{
  width:3.2rem;height:3.2rem;border-radius:.5rem;
  background:#fff;border:1px dashed rgba(3,41,82,.2);
  display:grid;place-items:center;flex-shrink:0;
  color:var(--slate-600);
}
.st-logo-preview svg{width:1.4rem;height:1.4rem}
.st-upload{
  padding:.4rem .8rem;font-size:.78rem;font-weight:700;
  background:#fff;color:var(--navy-900);border:1px solid rgba(3,41,82,.1);
  border-radius:.4rem;cursor:pointer;
}
.st-upload:hover{background:rgba(46,97,255,.05);border-color:var(--blue);color:var(--blue)}
.st-color-row{display:flex;align-items:center;gap:.5rem}
.st-color-sw{width:1.8rem;height:1.8rem;border-radius:.35rem;border:1px solid rgba(3,41,82,.1)}
.st-toggles{display:flex;flex-direction:column;gap:.5rem}
.st-toggle{
  display:flex;align-items:center;justify-content:space-between;
  padding:.4rem 0;font-size:.85rem;color:var(--navy-900);
}
.st-toggle-label{font-weight:600}
.st-toggle-desc{font-size:.72rem;color:var(--slate-600);margin-top:.1rem;font-weight:400}
.st-switch{
  width:2.4rem;height:1.3rem;border-radius:99.9rem;
  background:rgba(3,41,82,.15);position:relative;cursor:pointer;
  transition:background .25s ease;flex-shrink:0;
}
.st-switch::after{
  content:"";position:absolute;top:.15rem;left:.15rem;
  width:1rem;height:1rem;border-radius:50%;background:#fff;
  transition:transform .25s ease;
  box-shadow:0 1px 2px rgba(0,0,0,.15);
}
.st-switch.is-on{background:var(--blue)}
.st-switch.is-on::after{transform:translateX(1.1rem)}
.st-save-row{display:flex;justify-content:flex-end;gap:.5rem}
.st-btn{
  padding:.55rem 1.2rem;border-radius:.5rem;font-size:.85rem;font-weight:700;cursor:pointer;border:0;
}
.st-btn--ghost{background:transparent;color:var(--navy-900);border:1px solid rgba(3,41,82,.1)}
.st-btn--prim{background:var(--blue);color:#fff}
.st-btn--prim:hover{background:#1f4ed8}

/* ===== Product Modules — scroll-pinned tabs ===== */

/* ===== Product Modules — scroll-pinned tabs ===== */
.products-scroll{position:relative}
.products-scroll__pin{
  position:sticky;top:7.2rem;            /* clear fixed navbar */
  padding:2rem 0;
}
.products-scroll__pin > .section{padding:0;width:100%}
.products-scroll__pin .section--card .container{
  padding:3.2rem 3.6rem 3.6rem;
  border-radius:2.4rem;
}
.products-scroll__pin .section__header{margin-bottom:2.4rem}
.products-scroll__pin .section__title{
  font-size:clamp(2rem,2.4vw,2.8rem);
  margin-bottom:0;
}
.products-scroll__pin .services__layout{gap:2.4rem;align-items:stretch}
.products-scroll__pin .services__tabs{position:static;top:auto}
.products-scroll__pin .services__panel{
  padding:2.4rem;
  min-height:0;
}
.products-scroll__pin .services__panel-title{
  font-size:2rem;margin-bottom:.8rem;
}
.products-scroll__pin .services__panel-desc{
  font-size:1.4rem;line-height:1.5;margin-bottom:1.6rem;
}
.products-scroll__pin .services__features{gap:1.2rem;margin-bottom:1.4rem}
.products-scroll__pin .services__feature-title{font-size:1.4rem}
.products-scroll__pin .services__feature-desc{font-size:1.3rem;line-height:1.45}
.products-scroll__pin .services__mock{display:none}      /* hide the bar-chart so card fits */

/* Tab progress indicator (sits inside the pinned card) */
.products-scroll__progress{
  position:absolute;left:0;right:0;bottom:0;
  height:.3rem;background:rgba(46,97,255,.08);
  z-index:2;
}
.products-scroll__progress-bar{
  height:100%;width:0%;
  background:linear-gradient(90deg,#2e61ff,#5b8aff);
  transition:width .2s ease-out;
}

/* Disable pin on mobile / reduced motion — falls back to normal vertical layout */
@media (max-width:991px){
  .products-scroll{height:auto !important}
  .products-scroll__pin{
    position:static;height:auto;overflow:visible;
    display:block;
  }
  .products-scroll__pin > .section{padding:8rem 0}
  .products-scroll__pin .section--card .container{padding:8rem 4rem 11.2rem;border-radius:3.2rem}
  .products-scroll__pin .services__panel{padding:4.8rem;min-height:60rem}
  .products-scroll__progress{display:none}
}
@media (prefers-reduced-motion:reduce){
  .products-scroll{height:auto !important}
  .products-scroll__pin{position:static;height:auto;overflow:visible;display:block}
  .products-scroll__progress{display:none}
}

@media (max-width:600px){.hero__visual{display:none}}

.hero__visual{max-width:88rem;margin:1.4rem auto 0}
