/* ============================================================
   SOFCOM — Design system mirrored from site.bloxs.com.br/en
   Colors, shadows, typography, radii, gradients all taken
   directly from the Bloxs CSS.
   ============================================================ */
:root{
  --navy-900:#032952;
  --navy-800:#0F172A;
  --navy-700:#1E293B;
  --slate-700:#334155;
  --slate-600:#475569;
  --slate-500:#64748B;
  --slate-400:#94A3B8;
  --slate-200:#E2E8F0;
  --slate-100:#F1F5F9;
  --slate-50:#FCFCFD;
  --blue:#2E61FF;
  --blue-dark:#1839ED;
  --blue-tint:#B0C9FE;
  --white:#FFFFFF;
  --shadow-card:
    0px 1px 0px 0px #fff inset,
    0px 0px 0px 1px rgba(176,201,254,0.2);
  --shadow-floating:
    0px -1px 1px -0.5px rgba(3,41,82,.06) inset,
    0px 0px 0px 1px rgba(3,41,82,.04),
    0px 1px 1px .5px rgba(3,41,82,.04),
    0px 3px 3px -1.5px rgba(3,41,82,.02),
    0px 6px 6px -3px rgba(3,41,82,.04),
    0px 12px 12px -6px rgba(3,41,82,.04),
    0px 24px 24px -12px rgba(3,41,82,.04),
    0px 48px 48px -24px rgba(3,41,82,.04);
  --shadow-btn:
    0px 0px 0px 1px var(--blue),
    0px 0px 0px 1px rgba(3,41,82,.04),
    0px 1px 1px .5px rgba(3,41,82,.04),
    0px 3px 3px -1.5px rgba(3,41,82,.02),
    0px 6px 6px -3px rgba(3,41,82,.04),
    0px 12px 12px -6px rgba(3,41,82,.04),
    0px 24px 24px -12px rgba(3,41,82,.04),
    0px -1px 0px 0px rgba(255,255,255,.24) inset;
  --shadow-btn-ghost:
    0px 0px 0px 1px rgba(3,41,82,.06),
    0px 1px 1px .5px rgba(3,41,82,.04),
    0px 3px 3px -1.5px rgba(3,41,82,.02),
    0px 6px 6px -3px rgba(3,41,82,.04),
    0px 12px 12px -6px rgba(3,41,82,.04);
  --ease:cubic-bezier(.22,1,.36,1);
  --container:1254px;
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;outline:0}
*{list-style:none;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
html{font-size:62.5%;scroll-behavior:smooth;overflow-x:hidden}
@media (max-width:1250px){html{font-size:55%}}
@media (max-width:600px){html{font-size:62.5%}}
body{
  font-family:'Inter',sans-serif;
  font-size:1.6rem;
  font-weight:400;
  line-height:150%;
  color:var(--slate-700);
  background:var(--white);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
button{background:transparent;cursor:pointer;border:0;font-family:inherit}
img,svg{display:block;max-width:100%}

.container{
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:1.5rem;
  position:relative;
}

/* ============================================================
   NAVBAR — floating white pill (Bloxs .knHzJu.alternative)
   ============================================================ */
.nav-wrap{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  width:100%;
  padding:1.6rem 1.5rem;
  display:flex;justify-content:center;
  transition:padding .3s ease,top .3s ease;
  pointer-events:none;
}
.nav{
  pointer-events:auto;
  width:100%;
  max-width:125.4rem;
  height:7.2rem;
  padding:0 .8rem 0 1.6rem;
  border-radius:99.9rem;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  display:flex;align-items:center;justify-content:space-between;
  gap:2.4rem;
  transition:background .35s ease,box-shadow .35s ease,backdrop-filter .35s ease;
}
/* Scrolled state — pill activates */
.nav-wrap.is-scrolled{
  padding-top:1.2rem;
}
.nav-wrap.is-scrolled .nav{
  background:rgba(255,255,255,.96);
  box-shadow:var(--shadow-floating);
  backdrop-filter:blur(3px);
  -webkit-backdrop-filter:blur(3px);
}
.nav__brand{
  display:flex;align-items:center;gap:.6rem;
  font-weight:800;font-size:2rem;
  color:var(--navy-900);
  letter-spacing:-.02em;
}
.nav__brand-mark{
  width:2.8rem;height:2.8rem;
  border-radius:.6rem;
  background:var(--navy-900);
  color:#fff;
  display:grid;place-items:center;
  font-weight:800;font-size:1.4rem;
  position:relative;
}
.nav__brand-mark::after{
  content:"";position:absolute;
  width:.8rem;height:.8rem;
  bottom:-.2rem;right:-.2rem;
  background:var(--blue);
  border-radius:50%;
  box-shadow:0 0 0 .3rem #fff;
}
.nav__menu{
  display:flex;align-items:center;gap:.4rem;
}
.nav__item{position:relative}
.nav__link{
  padding:.6rem 1.2rem;
  border-radius:.8rem;
  display:flex;align-items:center;justify-content:center;gap:.6rem;
  color:var(--slate-700);
  font-size:1.4rem;font-weight:500;line-height:140%;
  transition:all .3s ease;
}
.nav__link:hover,.nav__item:hover .nav__link{
  background-color:var(--slate-200);
}
.nav__caret{
  width:.9rem;height:.9rem;
  transition:transform .3s ease;
}
.nav__item:hover .nav__caret{transform:rotate(180deg)}

/* MEGA MENU — Bloxs categories sidebar + panel layout */
.megamenu{
  position:absolute;
  top:100%;
  left:0;
  transform:translateY(-1rem);
  border-radius:2rem;
  background:#fff;
  box-shadow:
    0px -1px 1px -0.5px rgba(3,41,82,.06) inset,
    0px 0px 0px 1px rgba(3,41,82,.04),
    0px 15px 28.9px -7px rgba(0,0,0,.12),
    0px 32px 60px -10px rgba(3,41,82,.12);
  padding:0;
  opacity:0;pointer-events:none;
  transition:opacity .25s ease,transform .25s ease;
  overflow:hidden;
}
/* Invisible bridge so cursor can travel from nav link to menu */
.megamenu::before{
  content:"";
  position:absolute;
  top:-2rem;left:0;right:0;
  height:2rem;
}
.nav__item:hover .megamenu,
.nav__item:focus-within .megamenu{
  opacity:1;pointer-events:auto;
  transform:translateY(0);
}

/* Variant: solutions (sidebar + panels) */
.megamenu--solutions{
  width:78rem;
  max-width:calc(100vw - 3rem);
}
.megamenu--solutions .megamenu__body{
  display:grid;
  grid-template-columns:22rem 1fr;
  min-height:38rem;
}

/* Categories sidebar */
.megamenu__sidebar{
  background:linear-gradient(180deg,rgba(176,201,254,.18) 0%,rgba(226,232,240,0) 100%);
  padding:2rem 1.6rem;
  border-right:1px solid rgba(3,41,82,.04);
}
.megamenu__sidebar-title{
  font-size:1.05rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.12em;
  color:var(--slate-400);
  padding:.6rem 1.2rem 1.6rem;
}
.megamenu__cat{
  display:flex;align-items:flex-start;gap:1.2rem;
  padding:1.2rem 1.4rem;
  border-radius:1.2rem;
  cursor:pointer;
  transition:background .25s ease,box-shadow .25s ease;
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  font-family:inherit;
}
.megamenu__cat:hover{background:rgba(255,255,255,.6)}
.megamenu__cat.is-active{
  background:#fff;
  box-shadow:0 0 0 1px rgba(3,41,82,.06),0 1px 2px rgba(3,41,82,.04);
}
.megamenu__cat-icon{
  flex-shrink:0;
  width:2.8rem;height:2.8rem;
  border-radius:.6rem;
  background:#EEF3FF;
  color:var(--blue);
  display:grid;place-items:center;
}
.megamenu__cat-icon svg{width:1.5rem;height:1.5rem}
.megamenu__cat.is-active .megamenu__cat-icon{background:var(--blue);color:#fff}
.megamenu__cat-name{
  font-size:1.5rem;font-weight:600;
  color:var(--navy-900);
  line-height:1.3;
}
.megamenu__cat-desc{
  font-size:1.2rem;
  color:var(--slate-500);
  margin-top:.2rem;
  line-height:1.4;
}

/* Panel area (right side) */
.megamenu__panels{padding:2.4rem 2.4rem 2.4rem 2rem;position:relative}
.megamenu__panel{
  display:none;
  opacity:0;
  animation:panelIn .35s var(--ease) forwards;
}
.megamenu__panel.is-active{display:block}
@keyframes panelIn{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:translateY(0)}
}

/* Panel — "By segments" (Sell Side / Buy Side cards) */
.megamenu__segments{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1.2rem;
  height:100%;
}
.megamenu__segment{
  display:flex;flex-direction:column;
  padding:0;
  border-radius:1.4rem;
  background:transparent;
  border:1px solid transparent;
  transition:background .25s ease,border-color .25s ease,box-shadow .25s ease;
  overflow:hidden;
}
.megamenu__segment:hover{
  background:#fff;
  border-color:rgba(3,41,82,.06);
  box-shadow:0 8px 24px rgba(3,41,82,.06);
}
.megamenu__segment-visual{
  height:11rem;
  position:relative;
  overflow:hidden;
  border-radius:1.2rem 1.2rem 0 0;
  background:linear-gradient(180deg,#F4F7FC 0%,#fff 100%);
  border-bottom:1px solid rgba(3,41,82,.04);
}
/* Faux tilted phone mockup */
.megamenu__phone{
  position:absolute;
  width:17rem;
  height:9rem;
  background:#fff;
  border-radius:1rem;
  box-shadow:0 8px 24px rgba(3,41,82,.15),0 0 0 1px rgba(3,41,82,.06);
  padding:.7rem .9rem;
  transform:rotate(-12deg);
  top:3rem;left:50%;
  margin-left:-8.5rem;
  font-size:.85rem;
  color:var(--slate-600);
}
.megamenu__phone-tag{
  display:inline-block;
  padding:.15rem .5rem;
  background:#EEF3FF;
  color:var(--blue);
  border-radius:.3rem;
  font-size:.7rem;font-weight:600;
  margin-bottom:.4rem;
}
.megamenu__phone-title{
  font-size:.85rem;font-weight:600;color:var(--navy-900);
  line-height:1.3;
}
.megamenu__phone-row{
  display:flex;align-items:center;gap:.4rem;
  margin-top:.5rem;
  font-size:.7rem;
}
.megamenu__phone-row::before{
  content:"";width:.6rem;height:.6rem;border-radius:50%;background:var(--blue);
}
.megamenu__phone--buyside{
  transform:rotate(8deg);
  background:linear-gradient(180deg,#fff 0%,#F4F7FC 100%);
}

.megamenu__segment-body{
  padding:1.6rem 1.8rem 1.8rem;
  flex:1;
  display:flex;flex-direction:column;
}
.megamenu__segment-eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:1.05rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.08em;
  color:var(--blue);
  margin-bottom:.6rem;
}
.megamenu__segment-eyebrow-icon{
  width:1.6rem;height:1.6rem;border-radius:50%;
  background:var(--blue);color:#fff;
  display:grid;place-items:center;
  font-size:.9rem;
}
.megamenu__segment-eyebrow-icon svg{width:.9rem;height:.9rem}
.megamenu__segment-title{
  font-size:1.7rem;font-weight:700;
  color:var(--navy-900);
  letter-spacing:-.01em;
  margin-bottom:.6rem;
}
.megamenu__segment-desc{
  font-size:1.25rem;
  color:var(--slate-600);
  line-height:1.5;
  margin-bottom:1.2rem;
}
.megamenu__segment-list{
  display:flex;flex-direction:column;gap:.5rem;
  margin-bottom:1.2rem;
}
.megamenu__segment-list li{
  display:flex;align-items:center;gap:.6rem;
  font-size:1.25rem;color:var(--navy-800);
}
.megamenu__segment-list li::before{
  content:"";
  width:1.4rem;height:1.4rem;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size:65%;background-position:center;background-repeat:no-repeat;
  flex-shrink:0;
}
.megamenu__segment-link{
  margin-top:auto;
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:1.3rem;font-weight:600;
  color:var(--navy-900);
  transition:gap .25s ease,color .25s ease;
}
.megamenu__segment-link:hover{gap:.9rem;color:var(--blue)}
.megamenu__segment-link svg{width:1.3rem;height:1.3rem}

/* Panel — "By services" 2-col grid */
.megamenu__services{
  display:grid;grid-template-columns:1fr 1fr;
  gap:.4rem 2.4rem;
}
.megamenu__panel-title{
  grid-column:1/-1;
  font-size:1.05rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.12em;
  color:var(--slate-400);
  padding:.6rem 1.2rem 1.4rem;
  border-bottom:1px solid rgba(3,41,82,.06);
  margin-bottom:1rem;
}
.megamenu__service{
  display:flex;align-items:flex-start;gap:1.2rem;
  padding:1.2rem;
  border-radius:1rem;
  transition:background .25s ease;
}
.megamenu__service:hover{background:var(--slate-100)}
.megamenu__service-icon{
  flex-shrink:0;
  width:3.2rem;height:3.2rem;
  border-radius:.8rem;
  background:rgba(46,97,255,.08);
  color:var(--blue);
  display:grid;place-items:center;
}
.megamenu__service-icon svg{width:1.6rem;height:1.6rem}
.megamenu__service-title{
  font-size:1.4rem;font-weight:600;
  color:var(--navy-900);
  margin-bottom:.3rem;
}
.megamenu__service-desc{
  font-size:1.2rem;
  color:var(--slate-500);
  line-height:1.4;
}

/* Variant: resources (simple list) */
.megamenu--resources{
  width:38rem;
  max-width:calc(100vw - 3rem);
}
.megamenu--resources .megamenu__body{padding:1.8rem}
.megamenu--resources .megamenu__panel-title{
  border-bottom:1px solid rgba(3,41,82,.06);
  margin-bottom:.6rem;
  padding-left:1.2rem;
}

/* Variant: institutional (4 cols incl. video) */
.megamenu--institutional{
  width:96rem;
  max-width:calc(100vw - 3rem);
}
.megamenu--institutional .megamenu__body{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1.1fr;
  padding:1.8rem;
  gap:0;
}

/* Below ~1400px viewport, switch institutional to 2x2 layout so it stays readable */
@media (max-width:1400px){
  .megamenu--institutional{width:64rem}
  .megamenu--institutional .megamenu__body{
    grid-template-columns:1fr 1fr;
    gap:1.2rem;
  }
  .megamenu--institutional .megamenu__col{border-right:0;padding:0 1rem}
  .megamenu--institutional .megamenu__col:first-child{padding-left:1rem}
}

/* Below ~1200px, switch solutions menu to a more compact form */
@media (max-width:1200px){
  .megamenu--solutions{width:64rem}
  .megamenu--solutions .megamenu__body{grid-template-columns:18rem 1fr}
  .megamenu__segments{grid-template-columns:1fr}
  .megamenu__segment-visual{height:9rem}
}
.megamenu--institutional .megamenu__col{
  padding:0 1.6rem;
  border-right:1px solid rgba(3,41,82,.06);
}
.megamenu--institutional .megamenu__col:last-child{border-right:0}
.megamenu--institutional .megamenu__col:first-child{padding-left:.4rem}

.megamenu__video{
  background:linear-gradient(180deg,rgba(176,201,254,.18) 0%,rgba(226,232,240,0) 100%);
  border-radius:1.2rem;
  padding:1.4rem;
}
.megamenu__video-thumb{
  position:relative;
  aspect-ratio:4/3;
  background:linear-gradient(135deg,#3A4F70 0%,#5A7299 100%);
  border-radius:1rem;
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.megamenu__video-thumb::before{
  /* Stylized person silhouette */
  content:"";
  position:absolute;
  bottom:0;left:50%;
  width:8rem;height:10rem;
  background:linear-gradient(180deg,#7B8FB3 0%,#4A5F85 100%);
  border-radius:50% 50% 1rem 1rem;
  transform:translateX(-50%);
}
.megamenu__video-thumb::after{
  content:"";
  position:absolute;
  bottom:6rem;left:50%;
  width:3.6rem;height:3.6rem;
  background:#C9D2E3;
  border-radius:50%;
  transform:translateX(-50%);
}
.megamenu__video-play{
  position:absolute;
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.6rem 1.4rem .6rem 1rem;
  background:#fff;
  border-radius:99.9rem;
  font-size:1.2rem;font-weight:600;
  color:var(--navy-900);
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  z-index:1;
}
.megamenu__video-play svg{
  width:1rem;height:1rem;color:var(--blue);
}
.megamenu__video-caption{
  display:flex;align-items:center;gap:.6rem;
  margin-top:1rem;
  font-size:1.25rem;
  color:var(--navy-800);
}
.megamenu__video-caption::before{
  content:"";width:.4rem;height:1.4rem;background:var(--blue);border-radius:2px;
}

/* Right side */
.nav__right{display:flex;align-items:center;gap:.4rem}
.nav__deals{
  padding:.6rem 1.2rem;
  border-radius:.8rem;
  font-size:1.4rem;font-weight:500;
  color:var(--slate-700);
  transition:all .3s ease;
}
.nav__deals:hover{background:var(--slate-200)}
.nav__lang{
  padding:.6rem 1.2rem;
  border-radius:.8rem;
  display:flex;align-items:center;gap:.6rem;
  font-size:1.4rem;font-weight:500;
  color:var(--slate-700);
  transition:all .3s ease;
}
.nav__lang:hover{background:var(--slate-200)}
.nav__flag{
  width:1.8rem;height:1.8rem;
  border-radius:50%;
  background:#3C3B6E;
  display:grid;place-items:center;
  font-size:.8rem;color:#fff;font-weight:700;
  overflow:hidden;
}

/* ============================================================
   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-500);
  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;
  perspective:1800px;
}
.hero__visual-tilt{
  transform:rotate3d(0,1,0,-12deg) rotate3d(1,0,0,4deg);
  transform-origin:left center;
  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-500);
  max-width:24rem;
  margin-inline:auto;
}
.browser__url svg{width:1.2rem;height:1.2rem;color:var(--slate-400)}

.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-500);
  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-400);
  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-500);
}

/* 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-500);
  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-500);
  margin-bottom:4rem;
}
.trusted__title strong{color:var(--navy-900);font-weight:600}
.trusted__logos{
  display:flex;align-items:center;justify-content:space-around;
  flex-wrap:wrap;gap:4rem;
}
.trusted__logo{
  font-size:2rem;font-weight:700;
  color:var(--slate-400);
  letter-spacing:-.01em;
  transition:color .3s ease;
}
.trusted__logo:hover{color:var(--navy-900)}

/* ============================================================
   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-500);
  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-500);
  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-500);
  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-500);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-500);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-500);
  max-width:60rem;margin:0 auto 4rem;line-height:155%;
}
.final-cta__actions{
  display:flex;justify-content:center;gap:1.2rem;flex-wrap:wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  padding:8rem 0 4rem;
  background:var(--white);
  border-top:1px solid var(--slate-200);
}
.footer__top{
  display:flex;justify-content:space-between;align-items:flex-start;
  padding-bottom:4.8rem;
  border-bottom:1px solid var(--slate-200);
  margin-bottom:4.8rem;
  gap:3.2rem;flex-wrap:wrap;
}
.footer__brand{
  display:flex;align-items:center;gap:.6rem;
  font-size:2.4rem;font-weight:800;
  color:var(--navy-900);
  letter-spacing:-.02em;
}
.footer__back-top{
  display:inline-flex;align-items:center;gap:.8rem;
  padding:1rem 1.6rem;
  border-radius:99.9rem;
  background:#fff;
  font-size:1.3rem;font-weight:500;
  color:var(--slate-600);
  box-shadow:var(--shadow-btn-ghost);
  transition:all .3s ease;
}
.footer__back-top:hover{color:var(--navy-900);transform:translateY(-2px)}
.footer__back-top-icon{
  width:2.4rem;height:2.4rem;
  border-radius:50%;
  background:var(--navy-900);
  color:#fff;
  display:grid;place-items:center;
}
.footer__back-top-icon svg{width:1.2rem;height:1.2rem}

.footer__grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:4rem;
  margin-bottom:6rem;
}
.footer__col-title{
  font-size:1.1rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.12em;
  color:var(--slate-400);margin-bottom:1.8rem;
}
.footer__col ul{display:flex;flex-direction:column;gap:1rem}
.footer__col a{
  font-size:1.35rem;color:var(--slate-600);
  transition:color .25s ease;
}
.footer__col a:hover{color:var(--navy-900)}

.footer__bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:3.2rem;
  border-top:1px solid var(--slate-200);
  flex-wrap:wrap;gap:1.6rem;
}
.footer__copy{font-size:1.3rem;color:var(--slate-500)}
.footer__social{display:flex;gap:.8rem}
.footer__social a{
  width:3.6rem;height:3.6rem;
  border-radius:50%;
  background:var(--slate-100);
  color:var(--slate-600);
  display:grid;place-items:center;
  transition:all .25s ease;
}
.footer__social a:hover{background:var(--blue);color:#fff;transform:translateY(-2px)}
.footer__social svg{width:1.5rem;height:1.5rem}

/* ============================================================
   HAMBURGER + MOBILE MENU
   ============================================================ */
.nav__hamburger{
  display:none;
  width:4.4rem;height:4.4rem;
  border-radius:50%;
  background:transparent;
  align-items:center;justify-content:center;
  flex-direction:column;gap:.5rem;
  flex-shrink:0;
  transition:background .25s ease;
}
.nav__hamburger:hover{background:var(--slate-200)}
.nav__hamburger span{
  display:block;
  width:2rem;height:.2rem;
  background:var(--navy-900);
  border-radius:2px;
  transition:transform .3s ease,opacity .25s ease;
  transform-origin:center;
}
.nav__hamburger.is-open span:nth-child(1){
  transform:translateY(.7rem) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2){
  opacity:0;
}
.nav__hamburger.is-open span:nth-child(3){
  transform:translateY(-.7rem) rotate(-45deg);
}

.mobile-menu{
  position:fixed;
  top:0;left:0;right:0;
  height:100dvh;
  z-index:99;
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  padding:10rem 2rem 3rem;
  overflow-y:auto;
  opacity:0;
  visibility:hidden;
  transform:translateY(-1rem);
  transition:opacity .3s ease,transform .3s ease,visibility .3s ease;
  -webkit-overflow-scrolling:touch;
}
.mobile-menu.is-open{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.mobile-menu__inner{
  max-width:60rem;
  margin:0 auto;
  display:flex;flex-direction:column;
  gap:.4rem;
}
.mobile-menu__group{
  border-bottom:1px solid var(--slate-200);
  padding:.4rem 0;
}
.mobile-menu__group:last-of-type{border-bottom:0}
.mobile-menu__accordion{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.8rem 1rem;
  font-size:1.7rem;font-weight:600;
  color:var(--navy-900);
  text-align:left;
  transition:color .2s ease;
}
.mobile-menu__chev{
  width:1.2rem;height:1.2rem;
  color:var(--slate-500);
  transition:transform .3s ease;
}
.mobile-menu__accordion.is-open .mobile-menu__chev{transform:rotate(180deg)}
.mobile-menu__panel{
  display:flex;flex-direction:column;
  max-height:0;
  overflow:hidden;
  transition:max-height .4s var(--ease);
}
.mobile-menu__panel.is-open{max-height:60rem}
.mobile-menu__panel a{
  padding:1.2rem 1rem 1.2rem 2rem;
  font-size:1.5rem;
  color:var(--slate-600);
  border-radius:.8rem;
  transition:background .2s ease,color .2s ease;
}
.mobile-menu__panel a:hover,.mobile-menu__panel a:active{
  background:var(--slate-100);
  color:var(--navy-900);
}
.mobile-menu__link-row{
  display:flex;align-items:center;
  padding:1.8rem 1rem;
  font-size:1.6rem;font-weight:500;
  color:var(--navy-900);
}
.mobile-menu__cta{
  margin-top:2rem;
  padding:0 1rem;
}

/* Lock body scroll when menu open */
body.menu-open{overflow:hidden}

/* ============================================================
   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{
    height:6.4rem;
    padding:0 .6rem 0 1.4rem;
  }
  .nav__menu{display:none}
  .nav__hamburger{display:flex}
  .nav__cta{display:none}
  .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:1rem 1rem}
  .nav-wrap.is-scrolled{padding-top:.8rem}
  .nav{
    height:6rem;
    padding:0 .6rem 0 1.2rem;
    border-radius:1.6rem;
  }
  .nav__brand{font-size:1.6rem}
  .nav__brand-mark{width:2.4rem;height:2.4rem;font-size:1.2rem}
  .mobile-menu{padding-top:9rem;padding-inline:1.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}
  .trusted__logos{gap:2.4rem}
  .trusted__logo{font-size:1.6rem}
  .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}
}

/* ============================================================
   INVESTOR PAGES — shared styles
   ============================================================ */
.page-hero{
  position:relative;
  padding:16rem 0 6rem;
  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;
  overflow:hidden;
}
.page-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;
}
.breadcrumb{
  display:flex;align-items:center;gap:.8rem;
  font-size:1.3rem;color:var(--slate-500);
  margin-bottom:2rem;
  flex-wrap:wrap;
}
.breadcrumb a{color:var(--slate-600);transition:color .2s ease}
.breadcrumb a:hover{color:var(--blue)}
.breadcrumb span.sep{color:var(--slate-300);font-size:1rem}
.breadcrumb .current{color:var(--navy-900);font-weight:600}

.page-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:1.6rem;
  box-shadow:var(--shadow-btn-ghost);
}
.page-hero__eyebrow-dot{
  width:.6rem;height:.6rem;border-radius:50%;
  background:var(--blue);
  box-shadow:0 0 0 .4rem rgba(46,97,255,.15);
}
.page-hero__title{
  font-size:clamp(3.2rem,4.2vw,5.4rem);
  font-weight:700;
  line-height:110%;
  letter-spacing:-.025em;
  color:var(--navy-900);
  margin-bottom:1.6rem;
  max-width:90rem;
}
.page-hero__title em{font-style:normal;color:var(--blue)}
.page-hero__sub{
  font-size:1.7rem;
  color:var(--slate-500);
  max-width:64rem;
  line-height:155%;
}

/* Investor landing — 7 large category cards */
.investor-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
  padding:8rem 0;
}
.investor-card{
  position:relative;
  display:block;
  padding:3.2rem 2.8rem;
  background:#fff;
  border-radius:2rem;
  box-shadow:var(--shadow-card);
  text-decoration:none;
  color:inherit;
  transition:transform .35s var(--ease),box-shadow .35s var(--ease);
  overflow:hidden;
}
.investor-card::before{
  content:"";
  position:absolute;top:-8rem;right:-8rem;
  width:22rem;height:22rem;
  background:radial-gradient(circle,rgba(46,97,255,.08) 0%,transparent 60%);
  pointer-events:none;
}
.investor-card: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);
}
.investor-card__icon{
  position:relative;z-index:1;
  width:5.2rem;height:5.2rem;
  border-radius:1.2rem;
  background:var(--blue);color:#fff;
  display:grid;place-items:center;
  margin-bottom:2rem;
  box-shadow:
    0 8px 20px rgba(46,97,255,.25),
    inset 0 -1px 0 rgba(0,0,0,.15);
}
.investor-card__icon svg{width:2.2rem;height:2.2rem}
.investor-card__title{
  position:relative;z-index:1;
  font-size:1.9rem;font-weight:700;
  color:var(--navy-900);
  letter-spacing:-.01em;
  margin-bottom:.8rem;
}
.investor-card__desc{
  position:relative;z-index:1;
  font-size:1.35rem;
  color:var(--slate-600);
  line-height:155%;
  margin-bottom:2rem;
  min-height:6rem;
}
.investor-card__meta{
  position:relative;z-index:1;
  display:flex;align-items:center;gap:.6rem;
  font-size:1.2rem;font-weight:600;
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.investor-card__meta-arrow{
  display:grid;place-items:center;
  width:2rem;height:2rem;border-radius:50%;
  background:var(--blue);color:#fff;
  transition:transform .3s ease;
}
.investor-card:hover .investor-card__meta-arrow{transform:translateX(3px)}
.investor-card__meta-arrow svg{width:1rem;height:1rem}

/* Document section — accordion of year/quarter dropdowns */
.docs-section{
  padding:6rem 0 10rem;
}
.docs-intro{
  background:#fff;
  border-radius:2rem;
  padding:3.2rem 3.6rem;
  box-shadow:var(--shadow-card);
  margin-bottom:3.2rem;
  display:flex;align-items:flex-start;gap:2rem;
  flex-wrap:wrap;
}
.docs-intro__icon{
  flex-shrink:0;
  width:4.8rem;height:4.8rem;
  border-radius:1.2rem;
  background:rgba(46,97,255,.08);
  color:var(--blue);
  display:grid;place-items:center;
}
.docs-intro__icon svg{width:2.4rem;height:2.4rem}
.docs-intro__content{flex:1;min-width:24rem}
.docs-intro__title{
  font-size:1.8rem;font-weight:700;
  color:var(--navy-900);
  margin-bottom:.6rem;
}
.docs-intro__text{
  font-size:1.45rem;
  color:var(--slate-600);
  line-height:155%;
}

/* Year selector — pill tabs (for BM page) */
.year-tabs{
  display:flex;flex-wrap:wrap;gap:.8rem;
  margin-bottom:2.4rem;
  padding:.6rem;
  background:rgba(255,255,255,.6);
  border-radius:1.4rem;
  box-shadow:var(--shadow-card);
  width:fit-content;
}
.year-tab{
  padding:.9rem 1.8rem;
  border-radius:1rem;
  font-family:inherit;
  font-size:1.35rem;font-weight:600;
  color:var(--slate-600);
  cursor:pointer;
  border:0;background:transparent;
  transition:all .3s ease;
}
.year-tab:hover{background:var(--slate-100);color:var(--navy-900)}
.year-tab.is-active{
  background:#fff;
  color:var(--navy-900);
  box-shadow:0 0 0 1px rgba(3,41,82,.06),0 1px 2px rgba(3,41,82,.04);
}
.year-tab.is-active::before{
  content:"";
  display:inline-block;
  width:.6rem;height:.6rem;
  border-radius:50%;
  background:var(--blue);
  margin-right:.7rem;
  vertical-align:.15rem;
}

/* Accordion: quarter / report group */
.acc{
  background:#fff;
  border-radius:1.6rem;
  box-shadow:var(--shadow-card);
  margin-bottom:1rem;
  overflow:hidden;
  transition:box-shadow .3s ease;
}
.acc.is-open{
  box-shadow:
    0px 1px 0px 0px #fff inset,
    0px 0px 0px 1px rgba(176,201,254,0.4),
    0 12px 24px -10px rgba(3,41,82,.08);
}
.acc__head{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;
  gap:1.6rem;
  padding:2.2rem 2.8rem;
  background:transparent;
  border:0;cursor:pointer;
  font-family:inherit;
  text-align:left;
  transition:background .25s ease;
}
.acc__head:hover{background:rgba(176,201,254,.08)}
.acc__head-left{display:flex;align-items:center;gap:1.6rem;flex:1;min-width:0}
.acc__badge{
  flex-shrink:0;
  width:4rem;height:4rem;
  border-radius:1rem;
  background:rgba(46,97,255,.08);
  color:var(--blue);
  display:grid;place-items:center;
  font-size:1.15rem;font-weight:700;
}
.acc__badge svg{width:1.6rem;height:1.6rem}
.acc.is-open .acc__badge{background:var(--blue);color:#fff}
.acc__title{
  font-size:1.55rem;font-weight:600;
  color:var(--navy-900);
  letter-spacing:-.01em;
  line-height:1.3;
}
.acc__sub{
  font-size:1.25rem;
  color:var(--slate-500);
  margin-top:.3rem;
}
.acc__right{
  display:flex;align-items:center;gap:1.4rem;
  flex-shrink:0;
}
.acc__count{
  font-size:1.2rem;font-weight:600;
  color:var(--slate-500);
  padding:.3rem .8rem;
  background:var(--slate-100);
  border-radius:.6rem;
}
.acc__chev{
  width:2.4rem;height:2.4rem;
  border-radius:50%;
  background:var(--slate-100);
  color:var(--slate-600);
  display:grid;place-items:center;
  transition:transform .35s var(--ease),background .25s ease,color .25s ease;
}
.acc__chev svg{width:1.2rem;height:1.2rem}
.acc.is-open .acc__chev{
  transform:rotate(180deg);
  background:var(--blue);color:#fff;
}
.acc__body{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s var(--ease);
}
.acc.is-open .acc__body{max-height:200rem}
.acc__body-inner{
  padding:0 2.8rem 2.4rem;
}

/* Document item rows inside accordion */
.doc-list{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(28rem,1fr));
  gap:1rem;
  padding-top:.6rem;
}
.doc-item{
  display:flex;align-items:center;gap:1.2rem;
  padding:1.4rem 1.6rem;
  background:var(--slate-50);
  border:1px solid var(--slate-200);
  border-radius:1rem;
  text-decoration:none;
  color:inherit;
  transition:all .25s ease;
}
.doc-item:hover{
  background:#fff;
  border-color:var(--blue-tint);
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(3,41,82,.06);
}
.doc-item__icon{
  flex-shrink:0;
  width:3.6rem;height:3.6rem;
  border-radius:.8rem;
  background:rgba(46,97,255,.08);
  color:var(--blue);
  display:grid;place-items:center;
  transition:background .25s ease,color .25s ease;
}
.doc-item__icon svg{width:1.6rem;height:1.6rem}
.doc-item:hover .doc-item__icon{background:var(--blue);color:#fff}
.doc-item__body{flex:1;min-width:0}
.doc-item__name{
  font-size:1.4rem;font-weight:600;
  color:var(--navy-900);
  line-height:1.3;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.doc-item__meta{
  font-size:1.15rem;
  color:var(--slate-500);
  margin-top:.2rem;
}
.doc-item__action{
  flex-shrink:0;
  width:2.4rem;height:2.4rem;
  border-radius:50%;
  background:transparent;
  color:var(--slate-400);
  display:grid;place-items:center;
  transition:all .25s ease;
}
.doc-item:hover .doc-item__action{
  background:var(--blue);color:#fff;
}
.doc-item__action svg{width:1.2rem;height:1.2rem}

/* Empty/coming-soon state */
.empty-state{
  padding:4rem 2rem;
  text-align:center;
  color:var(--slate-500);
  font-size:1.4rem;
}

/* Compliance / contact strip on investor page */
.compliance-strip{
  margin:0 0 6rem;
  padding:4rem 4rem;
  background:linear-gradient(180deg,rgba(176,201,254,.2) 0%,rgba(226,232,240,0) 174%),#fff;
  border-radius:2.4rem;
  box-shadow:var(--shadow-card);
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:3.2rem;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.compliance-strip::before{
  content:"";
  position:absolute;
  width:50rem;height:30rem;
  top:-5rem;right:-10rem;
  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;
}
.compliance-strip__content{position:relative;z-index:1}
.compliance-strip__title{
  font-size:2.4rem;font-weight:700;
  color:var(--navy-900);
  letter-spacing:-.02em;
  margin-bottom:1rem;
}
.compliance-strip__text{
  font-size:1.45rem;color:var(--slate-600);
  line-height:155%;
}
.compliance-strip__info{
  position:relative;z-index:1;
  display:flex;flex-direction:column;gap:1.2rem;
}
.compliance-strip__row{
  display:flex;align-items:center;gap:1.2rem;
  padding:1.4rem 1.6rem;
  background:#fff;
  border-radius:1.2rem;
  border:1px solid rgba(3,41,82,.06);
}
.compliance-strip__row-icon{
  width:3.6rem;height:3.6rem;
  border-radius:.8rem;
  background:rgba(46,97,255,.08);
  color:var(--blue);
  display:grid;place-items:center;
  flex-shrink:0;
}
.compliance-strip__row-icon svg{width:1.6rem;height:1.6rem}
.compliance-strip__row-label{
  font-size:1.1rem;font-weight:600;
  color:var(--slate-500);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.compliance-strip__row-value{
  font-size:1.4rem;font-weight:600;
  color:var(--navy-900);
  margin-top:.2rem;
}

@media (max-width:991px){
  .investor-grid{grid-template-columns:repeat(2,1fr)}
  .compliance-strip{grid-template-columns:1fr}
}
@media (max-width:720px){
  .page-hero{padding:11rem 0 4rem}
  .investor-grid{grid-template-columns:1fr;padding:5rem 0;gap:1.6rem}
  .docs-section{padding:3rem 0 6rem}
  .docs-intro{padding:2.4rem;flex-direction:column;gap:1.6rem}
  .acc__head{padding:1.8rem 2rem}
  .acc__body-inner{padding:0 2rem 2rem}
  .doc-list{grid-template-columns:1fr}
  .year-tabs{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;flex-wrap:nowrap}
  .year-tab{flex-shrink:0;white-space:nowrap}
  .compliance-strip{padding:2.8rem 2rem}
  .acc__count{display:none}
}

/* ============================================================
   PRODUCT PAGES — shared styles
   ============================================================ */
.product-hero{
  position:relative;
  padding:14rem 0 8rem;
  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;
  overflow:hidden;
}
.product-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;
}
.product-hero__grid{
  display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:4rem;align-items:center;
  position:relative;z-index:1;
}
.product-hero__category{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.5rem 1.2rem .5rem .5rem;
  background:#fff;
  border-radius:99.9rem;
  font-size:1.2rem;font-weight:600;
  color:var(--navy-900);
  margin-bottom:2rem;
  text-transform:uppercase;letter-spacing:.06em;
  box-shadow:0 0 0 1px rgba(3,41,82,.06);
}
.product-hero__category-icon{
  width:2.4rem;height:2.4rem;border-radius:50%;
  background:var(--blue);color:#fff;
  display:grid;place-items:center;
}
.product-hero__category-icon svg{width:1.2rem;height:1.2rem}
.product-hero__title{
  font-size:clamp(3.6rem,4.8vw,6rem);
  font-weight:700;line-height:108%;
  letter-spacing:-.035em;
  color:var(--navy-900);
  margin-bottom:2rem;
}
.product-hero__title em{font-style:normal;color:var(--blue)}
.product-hero__sub{
  font-size:1.7rem;color:var(--slate-500);
  max-width:54rem;line-height:1.55;margin-bottom:3.2rem;
}
.product-hero__actions{display:flex;gap:1.2rem;flex-wrap:wrap}

/* Product hero visual — large icon panel with floating accents */
.product-hero__visual{
  position:relative;
  aspect-ratio:1/1;
  max-width:42rem;
  margin:0 auto;
}
.product-hero__visual-frame{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(176,201,254,.25) 0%,rgba(226,232,240,0) 100%),#fff;
  border-radius:3.2rem;
  box-shadow:var(--shadow-floating);
  overflow:hidden;
}
.product-hero__visual-frame::before{
  content:"";
  position:absolute;
  top:-10rem;right:-8rem;
  width:30rem;height:30rem;
  background:radial-gradient(circle,rgba(46,97,255,.18) 0%,transparent 60%);
  filter:blur(20px);
  pointer-events:none;
}
.product-hero__visual-main{
  position:absolute;inset:0;
  display:grid;place-items:center;
  z-index:1;
}
.product-hero__visual-icon{
  width:14rem;height:14rem;
  border-radius:2.8rem;
  background:linear-gradient(135deg,var(--blue) 0%,var(--blue-dark) 100%);
  color:#fff;
  display:grid;place-items:center;
  box-shadow:
    0 30px 60px -20px rgba(46,97,255,.6),
    0 18px 36px -18px rgba(46,97,255,.4),
    inset 0 -2px 0 rgba(0,0,0,.15);
  animation:floatGentle 5s ease-in-out infinite;
}
.product-hero__visual-icon svg{width:6.4rem;height:6.4rem}
@keyframes floatGentle{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

/* Floating mini-cards around the icon */
.product-hero__chip{
  position:absolute;
  display:flex;align-items:center;gap:.8rem;
  padding:1rem 1.4rem;
  background:#fff;
  border-radius:1.2rem;
  box-shadow:0 12px 28px -8px rgba(3,41,82,.18),0 0 0 1px rgba(3,41,82,.06);
  font-size:1.2rem;font-weight:600;
  color:var(--navy-900);
  z-index:2;
  animation:floatGentle 4s ease-in-out infinite;
}
.product-hero__chip-icon{
  width:2.4rem;height:2.4rem;border-radius:.6rem;
  background:rgba(46,97,255,.1);
  color:var(--blue);
  display:grid;place-items:center;
  flex-shrink:0;
}
.product-hero__chip-icon svg{width:1.4rem;height:1.4rem}
.product-hero__chip--tl{top:10%;left:-2rem;animation-delay:0s}
.product-hero__chip--tr{top:18%;right:-1rem;animation-delay:.8s}
.product-hero__chip--bl{bottom:14%;left:-1rem;animation-delay:1.6s}
.product-hero__chip--br{bottom:8%;right:-2rem;animation-delay:2.4s}

/* Feature stats bar */
.product-stats{
  padding:6rem 0;
  background:#fff;
  border-bottom:1px solid var(--slate-200);
}
.product-stats__grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;
}
.product-stat{
  text-align:left;
  padding:0 1rem;
}
.product-stat__value{
  font-size:clamp(3.2rem,4vw,4.4rem);
  font-weight:700;
  color:var(--navy-900);
  letter-spacing:-.02em;
  line-height:1;
  margin-bottom:.8rem;
}
.product-stat__value em{font-style:normal;color:var(--blue)}
.product-stat__label{
  font-size:1.35rem;
  color:var(--slate-600);
  line-height:1.4;
}

/* Feature grid (6 cards) */
.product-features{padding:8rem 0;background:#fff}
.product-features__grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;
}
.product-feature{
  padding:3rem 2.8rem;
  background:linear-gradient(180deg,rgba(176,201,254,.12) 0%,#fff 100%);
  border-radius:2rem;
  box-shadow:var(--shadow-card);
  transition:transform .35s var(--ease);
}
.product-feature:hover{transform:translateY(-4px)}
.product-feature__icon{
  width:5rem;height:5rem;
  border-radius:1.2rem;
  background:var(--blue);color:#fff;
  display:grid;place-items:center;
  margin-bottom:2rem;
  box-shadow:0 8px 20px rgba(46,97,255,.25),inset 0 -1px 0 rgba(0,0,0,.15);
}
.product-feature__icon svg{width:2rem;height:2rem}
.product-feature__title{
  font-size:1.7rem;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:1.55;
}

/* Capabilities — two-column alternating */
.product-capabilities{padding:8rem 0;background:var(--slate-50)}
.product-capability{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6rem;
  align-items:center;
  margin-bottom:6rem;
}
.product-capability:last-child{margin-bottom:0}
.product-capability--reverse .product-capability__visual{order:-1}
.product-capability__content{position:relative}
.product-capability__eyebrow{
  display:inline-block;
  padding:.4rem 1rem;
  background:#fff;
  border-radius:99.9rem;
  font-size:1.15rem;font-weight:600;
  color:var(--blue);
  text-transform:uppercase;letter-spacing:.08em;
  margin-bottom:1.4rem;
  box-shadow:0 0 0 1px rgba(46,97,255,.15);
}
.product-capability__title{
  font-size:clamp(2.6rem,3.2vw,3.6rem);
  font-weight:700;line-height:115%;
  letter-spacing:-.02em;
  color:var(--navy-900);
  margin-bottom:1.6rem;
}
.product-capability__title em{font-style:normal;color:var(--blue)}
.product-capability__desc{
  font-size:1.6rem;color:var(--slate-600);
  line-height:1.6;margin-bottom:2rem;
}
.product-capability__list{
  display:flex;flex-direction:column;gap:1.2rem;
}
.product-capability__list li{
  display:flex;align-items:flex-start;gap:1.2rem;
  font-size:1.5rem;color:var(--navy-800);
  line-height:1.5;
}
.product-capability__list li::before{
  content:"";flex-shrink:0;
  width:2rem;height:2rem;border-radius:50%;
  background:var(--blue);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size:65%;background-position:center;background-repeat:no-repeat;
  margin-top:.2rem;
}
.product-capability__visual{
  position:relative;
  aspect-ratio:1.1/1;
  background:linear-gradient(180deg,rgba(176,201,254,.25) 0%,rgba(226,232,240,0) 100%),#fff;
  border-radius:2.4rem;
  box-shadow:var(--shadow-card);
  overflow:hidden;
  padding:3rem;
  display:grid;place-items:center;
}
.product-capability__visual-icon{
  width:10rem;height:10rem;
  border-radius:2.4rem;
  background:linear-gradient(135deg,var(--blue) 0%,var(--blue-dark) 100%);
  color:#fff;
  display:grid;place-items:center;
  box-shadow:0 20px 40px -10px rgba(46,97,255,.5);
  position:relative;z-index:1;
}
.product-capability__visual-icon svg{width:4.8rem;height:4.8rem}
.product-capability__visual::before{
  content:"";
  position:absolute;
  top:-6rem;right:-6rem;
  width:20rem;height:20rem;
  background:radial-gradient(circle,rgba(46,97,255,.18) 0%,transparent 60%);
  filter:blur(20px);
}

/* Integrations strip */
.product-integrations{
  padding:6rem 0;background:#fff;
}
.product-integrations__title{
  text-align:center;
  font-size:1.4rem;
  color:var(--slate-500);
  margin-bottom:3rem;
}
.product-integrations__title strong{color:var(--navy-900);font-weight:600}
.product-integrations__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(16rem,1fr));
  gap:1.6rem;
  max-width:108rem;
  margin:0 auto;
}
.integration-pill{
  display:flex;align-items:center;gap:1rem;
  padding:1.6rem 2rem;
  background:linear-gradient(180deg,rgba(176,201,254,.12) 0%,#fff 100%);
  border:1px solid rgba(3,41,82,.06);
  border-radius:1.2rem;
  font-size:1.35rem;font-weight:600;
  color:var(--navy-900);
  transition:all .25s ease;
}
.integration-pill:hover{
  border-color:var(--blue-tint);
  transform:translateY(-2px);
  box-shadow:0 8px 16px -4px rgba(3,41,82,.08);
}
.integration-pill__icon{
  width:3.2rem;height:3.2rem;
  border-radius:.8rem;
  background:rgba(46,97,255,.08);
  color:var(--blue);
  display:grid;place-items:center;
  flex-shrink:0;
}
.integration-pill__icon svg{width:1.5rem;height:1.5rem}

/* "Built for" segments */
.product-built-for{
  padding:8rem 0;background:#fff;
}
.product-built-for__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.6rem;
}
.built-for-card{
  padding:2.8rem 2.2rem;
  background:#fff;
  border:1px solid rgba(3,41,82,.06);
  border-radius:1.6rem;
  text-align:left;
  transition:all .3s ease;
}
.built-for-card:hover{
  border-color:var(--blue-tint);
  transform:translateY(-3px);
  box-shadow:0 12px 24px -8px rgba(3,41,82,.08);
}
.built-for-card__icon{
  width:4rem;height:4rem;
  border-radius:1rem;
  background:rgba(46,97,255,.08);
  color:var(--blue);
  display:grid;place-items:center;
  margin-bottom:1.4rem;
}
.built-for-card__icon svg{width:2rem;height:2rem}
.built-for-card__name{
  font-size:1.5rem;font-weight:700;
  color:var(--navy-900);
  margin-bottom:.4rem;
}
.built-for-card__desc{
  font-size:1.25rem;
  color:var(--slate-500);
  line-height:1.45;
}

/* CTA strip — final */
.product-cta{
  padding:0 0 8rem;
}
.product-cta__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:grid;
  grid-template-columns:1.4fr 1fr;
  gap:4rem;align-items:center;
  overflow:hidden;
}
.product-cta__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;
}
.product-cta__content{position:relative;z-index:1}
.product-cta__title{
  font-size:clamp(2.8rem,3.4vw,4rem);
  font-weight:600;line-height:115%;
  letter-spacing:-.02em;
  color:var(--navy-900);
  margin-bottom:1.4rem;
}
.product-cta__title em{font-style:normal;color:var(--blue)}
.product-cta__sub{
  font-size:1.5rem;color:var(--slate-500);line-height:1.55;
}
.product-cta__actions{
  position:relative;z-index:1;
  display:flex;gap:1.2rem;flex-wrap:wrap;
}

/* Related products */
.product-related{
  padding:0 0 8rem;
}
.product-related__title{
  font-size:2.8rem;font-weight:700;
  color:var(--navy-900);
  letter-spacing:-.02em;
  margin-bottom:.6rem;
  text-align:center;
}
.product-related__sub{
  text-align:center;
  font-size:1.5rem;color:var(--slate-500);
  margin-bottom:4rem;
}
.product-related__grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;
}
.related-card{
  padding:2.8rem;
  background:#fff;
  border-radius:1.8rem;
  box-shadow:var(--shadow-card);
  text-decoration:none;color:inherit;
  display:flex;flex-direction:column;
  transition:transform .3s var(--ease);
}
.related-card:hover{transform:translateY(-4px)}
.related-card__icon{
  width:4.4rem;height:4.4rem;border-radius:1rem;
  background:rgba(46,97,255,.08);color:var(--blue);
  display:grid;place-items:center;
  margin-bottom:1.6rem;
}
.related-card__icon svg{width:2rem;height:2rem}
.related-card__name{
  font-size:1.7rem;font-weight:700;
  color:var(--navy-900);
  margin-bottom:.6rem;
}
.related-card__desc{
  font-size:1.35rem;color:var(--slate-600);
  line-height:1.5;margin-bottom:1.6rem;flex:1;
}
.related-card__cta{
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:1.3rem;font-weight:600;
  color:var(--blue);
}

@media (max-width:991px){
  .product-hero__grid{grid-template-columns:1fr;gap:5rem}
  .product-hero__visual{max-width:32rem}
  .product-stats__grid{grid-template-columns:repeat(2,1fr);gap:3rem 2rem}
  .product-features__grid{grid-template-columns:repeat(2,1fr)}
  .product-capability{grid-template-columns:1fr;gap:3rem}
  .product-capability--reverse .product-capability__visual{order:0}
  .product-built-for__grid{grid-template-columns:repeat(2,1fr)}
  .product-related__grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:720px){
  .product-hero{padding:11rem 0 4rem}
  .product-features__grid{grid-template-columns:1fr}
  .product-built-for__grid{grid-template-columns:1fr}
  .product-related__grid{grid-template-columns:1fr}
  .product-cta__card{grid-template-columns:1fr;padding:3.6rem 2.4rem}
  .product-cta__actions{width:100%}
  .product-cta__actions .btn{width:100%;justify-content:space-between}
  .product-stats{padding:4rem 0}
  .product-features,.product-capabilities,.product-built-for{padding:5rem 0}
  .product-hero__chip{display:none}
  .product-hero__visual-icon{width:11rem;height:11rem;border-radius:2.2rem}
  .product-hero__visual-icon svg{width:5rem;height:5rem}
}
