:root {
  --bg: #090814;
  --bg-2: #0d0b1d;
  --surface: #14112b;
  --surface-2: #1a1638;
  --purple: #26215C;
  --purple-lift: #352e78;
  --blue: #3b81ad;
  --blue-bright: #5aa6d4;
  --ink: #ecebf3;
  --ink-soft: #b6b2cb;
  --muted: #7f7b97;
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.045);
  --maxw: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Outfit", sans-serif;
  --mono: "Space Mono", monospace;
}

/*  */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden
}

::selection {
  background: var(--blue);
  color: #fff
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem)
}

/* ---------- ambient atmosphere ---------- */
.atmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  will-change: transform
}

.blob.b1 {
  width: 48vw;
  height: 48vw;
  top: -14vw;
  left: -10vw;
  background: radial-gradient(circle, rgba(38, 33, 92, .9), transparent 70%);
  animation: drift1 28s ease-in-out infinite alternate
}

.blob.b2 {
  width: 42vw;
  height: 42vw;
  top: 38vh;
  right: -14vw;
  background: radial-gradient(circle, rgba(59, 129, 173, .32), transparent 70%);
  animation: drift2 34s ease-in-out infinite alternate
}

.blob.b3 {
  width: 38vw;
  height: 38vw;
  bottom: -12vw;
  left: 18vw;
  background: radial-gradient(circle, rgba(53, 46, 120, .55), transparent 70%);
  animation: drift3 31s ease-in-out infinite alternate
}

@keyframes drift1 {
  to {
    transform: translate(8vw, 6vh) scale(1.12)
  }
}

@keyframes drift2 {
  to {
    transform: translate(-7vw, -5vh) scale(1.08)
  }
}

@keyframes drift3 {
  to {
    transform: translate(6vw, -7vh) scale(1.1)
  }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay
}

/* ---------- custom cursor ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-bright);
  transition: transform .15s ease-out, width .3s var(--ease), height .3s var(--ease), opacity .3s
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(90, 166, 212, .55);
  transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1), width .3s var(--ease), height .3s var(--ease), border-color .3s, opacity .3s
}

.cursor-dot.cursor-hover {
  width: 10px;
  height: 10px;
  opacity: 0
}

.cursor-ring.cursor-hover {
  width: 64px;
  height: 64px;
  border-color: var(--blue-bright);
  background: rgba(90, 166, 212, .12)
}

body.cursor-none,
body.cursor-none * {
  cursor: none
}

main,
header,
footer {
  position: relative;
  z-index: 1
}

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  gap: .6rem
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--blue)
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.03em;
  text-wrap: balance
}

p {
  text-wrap: pretty
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 34ch;
  font-weight: 300
}

section {
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(5.5rem, 12vw, 10rem)
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  flex-wrap: wrap
}

.sec-head h2 {
  font-size: clamp(2rem, 5.5vw, 4rem)
}

.sec-index {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .1em;
  white-space: nowrap;
  padding-bottom: .5rem
}

/* ---------- nav ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s
}

header.scrolled {
  background: rgba(9, 8, 20, .72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px
}

.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -.04em;
  display: flex;
  align-items: center;
  gap: .15rem
}

.brand sup {
  font-size: .6rem;
  color: var(--blue-bright);
  font-weight: 500;
  top: -.7em
}

.brand img {
  height: clamp(26px, 3.2vw, 32px);
  width: auto;
  display: block
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center
}

.nav-links a {
  font-size: .92rem;
  color: var(--ink-soft);
  position: relative;
  transition: color .25s
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 0;
  background: var(--blue-bright);
  transition: width .3s var(--ease)
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.4rem
}

.lang {
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--muted);
  letter-spacing: .08em
}

.lang b {
  color: var(--ink)
}

.lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem .1rem;
  transition: color .25s var(--ease)
}

.lang-toggle:hover {
  color: var(--ink-soft)
}

.lang-toggle:hover b {
  color: var(--blue-bright)
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 500;
  font-size: .92rem;
  padding: .72rem 1.4rem;
  border-radius: 100px;
  transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .3s;
  will-change: transform
}

.btn-primary {
  background: var(--blue);
  color: #06121b;
  box-shadow: 0 10px 30px -10px rgba(59, 129, 173, .6)
}

.btn-primary:hover {
  background: var(--blue-bright)
}

.btn-primary:active {
  transform: scale(.97)
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink)
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue-bright)
}

.arrow {
  transition: transform .3s var(--ease)
}

.btn:hover .arrow {
  transform: translateX(3px)
}

.burger {
  display: none;
  width: 30px;
  height: 18px;
  position: relative
}

.burger span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: .35s var(--ease)
}

.burger span:nth-child(1) {
  top: 0
}

.burger span:nth-child(2) {
  top: 8px
}

.burger span:nth-child(3) {
  top: 16px
}

body.menu-open .burger span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg)
}

body.menu-open .burger span:nth-child(2) {
  opacity: 0
}

body.menu-open .burger span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .4rem;
  padding: 2rem clamp(1.25rem, 6vw, 3rem);
  transform: translateY(-101%);
  transition: transform .55s var(--ease)
}

body.menu-open .mobile-menu {
  transform: translateY(0)
}

.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(2rem, 9vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--ink);
  padding: .3rem 0
}

.mobile-menu a span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .8rem;
  vertical-align: super;
  margin-right: .6rem
}

/* ---------- hero ---------- */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 4rem;
  position: relative
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .75;
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent);
  mask-image: linear-gradient(to bottom, #000 70%, transparent)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1
}

.hero h1 {
  font-size: clamp(3rem, 9.5vw, 8.2rem);
  font-weight: 700;
  margin: 1.6rem 0 0
}

.hero h1 .line {
  display: block;
  overflow: hidden
}

.hero h1 .line i {
  display: block;
  font-style: normal;
  transform: translateY(105%);
  transition: transform 1s var(--ease)
}

.hero h1 .accent {
  color: var(--blue-bright)
}

.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--ink-soft)
}

.hero-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: center;
  margin-top: 2.4rem
}

.hero-sub .lead {
  margin-right: .5rem
}

.hero-cta {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap
}

/* product mockup */
.mock {
  position: relative;
  perspective: 1400px
}

.mock-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.3rem;
  box-shadow: 0 40px 80px -30px rgba(8, 6, 24, .9), inset 0 1px 0 rgba(255, 255, 255, .06);
  transform: rotateY(-13deg) rotateX(6deg) rotateZ(1deg)
}

.mock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem
}

.mock-top .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted);
  display: inline-block;
  margin-right: 5px;
  opacity: .5
}

.mock-tag {
  font-family: var(--mono);
  font-size: .62rem;
  color: var(--blue-bright);
  letter-spacing: .12em;
  text-transform: uppercase
}

.mock-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
  margin-bottom: .55rem
}

.mock-row .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex: 0 0 auto;
  background: rgba(59, 129, 173, .16);
  display: grid;
  place-items: center;
  color: var(--blue-bright)
}

.mock-row .meta {
  flex: 1;
  min-width: 0
}

.mock-row .meta b {
  font-size: .78rem;
  font-weight: 500;
  display: block
}

.mock-row .meta small {
  font-size: .66rem;
  color: var(--muted);
  font-family: var(--mono)
}

.mock-row .val {
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--ink)
}

.mock-bar {
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .07);
  margin-top: 1rem;
  overflow: hidden
}

.mock-bar i {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--purple-lift), var(--blue))
}

.mock-float {
  position: absolute;
  bottom: -26px;
  left: -30px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .85rem 1.1rem;
  box-shadow: 0 24px 50px -20px rgba(8, 6, 24, .9);
  display: flex;
  align-items: center;
  gap: .7rem
}

.mock-float .pin {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(90, 166, 212, .18);
  display: grid;
  place-items: center;
  color: var(--blue-bright)
}

.mock-float b {
  font-family: var(--mono);
  font-size: .82rem
}

.mock-float small {
  display: block;
  font-size: .62rem;
  color: var(--muted)
}

.float-anim {
  animation: floaty 6s ease-in-out infinite
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.scrollcue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem
}

.scrollcue .ln {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--blue), transparent);
  animation: cue 2s ease-in-out infinite
}

@keyframes cue {
  0% {
    transform: scaleY(.3);
    transform-origin: top
  }

  50% {
    transform: scaleY(1)
  }

  100% {
    transform: scaleY(.3);
    transform-origin: bottom
  }
}

/* ---------- marquee ---------- */
.marquee {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255, 255, 255, .012)
}

.marquee.section,
.marquee {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem
}

.track {
  display: inline-flex;
  gap: 0;
  animation: scroll 32s linear infinite;
  will-change: transform
}

.track.rev {
  animation-direction: reverse
}

.marquee:hover .track {
  animation-play-state: paused
}

.track span {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -.02em;
  padding: 0 2.2rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 2.2rem
}

.track span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue)
}

@keyframes scroll {
  to {
    transform: translateX(-50%)
  }
}

/* ---------- manifesto ---------- */
.manifesto {
  text-align: left
}

.manifesto .big {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.6vw, 3.5rem);
  line-height: 1.18;
  letter-spacing: -.025em;
  max-width: 18ch
}

.manifesto .big .w {
  color: #2c2745;
  transition: color .3s var(--ease);
  margin-inline-end: .28ch
}

.manifesto .big .w.on {
  color: var(--ink)
}

.manifesto .big .w.hl.on {
  color: var(--blue-bright)
}

.manifesto .sig {
  margin-top: 2.6rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: .9rem;
  color: var(--muted)
}

.manifesto .sig b {
  color: var(--ink);
  font-weight: 500
}

/* ---------- solutions ---------- */
.sol {
  border-top: 1px solid var(--line)
}

.sol-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.6rem, 3.5vw, 2.6rem) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  transition: padding-left .4s var(--ease)
}

.sol-row:hover {
  padding-left: clamp(.5rem, 2vw, 1.6rem)
}

.sol-row .num {
  font-family: var(--mono);
  font-size: .85rem;
  color: var(--muted);
  align-self: flex-start;
  padding-top: .55rem
}

.sol-row h3 {
  font-size: clamp(1.7rem, 4.6vw, 3.1rem);
  font-weight: 500;
  transition: color .35s var(--ease);
  letter-spacing: -.03em
}

.sol-row:hover h3 {
  color: var(--blue-bright)
}

.sol-row .desc {
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: .55rem;
  font-size: 1rem
}

.sol-end {
  display: flex;
  align-items: center;
  gap: 1.5rem
}

.sol-thumb {
  width: 120px;
  height: 78px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateX(20px) scale(.95);
  transition: .45s var(--ease);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(150deg, var(--surface-2), var(--purple))
}

.sol-row:hover .sol-thumb {
  opacity: 1;
  transform: none
}

.sol-thumb svg {
  width: 42px;
  height: 42px;
  color: var(--blue-bright)
}

.sol-go {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  flex: 0 0 auto;
  transition: .35s var(--ease)
}

.sol-row:hover .sol-go {
  background: var(--blue);
  color: #06121b;
  border-color: var(--blue);
  transform: rotate(-45deg)
}

/* ---------- stats ---------- */
.stats-sec {
  background: linear-gradient(180deg, transparent, rgba(38, 33, 92, .18), transparent)
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat {
  padding: 1.4rem clamp(1rem, 2.5vw, 2rem);
  border-left: 1px solid var(--line)
}

.stat:first-child {
  border-left: none;
  padding-left: 0
}

.stat .n {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums
}

.stat .n .suf {
  color: var(--blue-bright)
}

.stat .l {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-top: .7rem;
  max-width: 24ch
}

/* ---------- industries ---------- */
.ind-accordion {
  display: flex;
  gap: .7rem;
  height: clamp(360px, 52vh, 520px)
}

.ind-panel {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: flex .6s var(--ease);
  background: var(--surface);
  min-width: 0
}

.ind-panel:hover {
  flex: 3.4
}

.ind-panel .bg {
  position: absolute;
  inset: 0;
  opacity: .55;
  transition: opacity .6s, transform .9s var(--ease)
}

.ind-panel:hover .bg {
  opacity: .8;
  transform: scale(1.05)
}

.ind-panel.fmcg .bg {
  background: radial-gradient(120% 120% at 20% 10%, var(--purple-lift), var(--bg-2))
}

.ind-panel.pharma .bg {
  background: radial-gradient(120% 120% at 80% 20%, #1f4a63, var(--bg-2))
}

.ind-panel.field .bg {
  background: radial-gradient(120% 120% at 40% 90%, #2a2566, var(--bg-2))
}

.ind-panel .body {
  position: absolute;
  inset: 0;
  padding: clamp(1.3rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2
}

.ind-panel .vnum {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--blue-bright);
  letter-spacing: .12em;
  position: absolute;
  top: clamp(1.3rem, 2.5vw, 2.2rem);
  left: clamp(1.3rem, 2.5vw, 2.2rem)
}

.ind-panel h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 600;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: .5s var(--ease);
  margin-bottom: .4rem
}

.ind-panel:hover h3 {
  writing-mode: horizontal-tb;
  transform: none
}

.ind-panel p {
  color: var(--ink-soft);
  font-size: .98rem;
  max-width: 42ch;
  opacity: 0;
  max-height: 0;
  transition: opacity .5s .15s, max-height .5s
}

.ind-panel:hover p {
  opacity: 1;
  max-height: 200px
}

.ind-panel .tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  opacity: 0;
  transition: opacity .5s .2s
}

.ind-panel:hover .tags {
  opacity: 1
}

.ind-panel .tags span {
  font-family: var(--mono);
  font-size: .66rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .3rem .7rem;
  color: var(--ink-soft)
}

/* ---------- clients & partners ---------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.6rem
}

.client-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease)
}

.client-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  background: var(--surface-2)
}

.client-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: #fff
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.client-meta {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 0
}

.client-meta b {
  font-size: .96rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3
}

.client-meta small {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.1rem
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(150deg, var(--surface), var(--purple) 220%)
}

.partner-logo {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line)
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.partner-body h3 {
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  font-weight: 500;
  margin: .3rem 0 .5rem;
  letter-spacing: -.02em
}

.partner-body p {
  color: var(--ink-soft);
  font-size: .92rem;
  max-width: 46ch
}

.partner-tag {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: .08em
}

/* ---------- process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0
}

.step {
  padding: 1.8rem clamp(.8rem, 2vw, 1.6rem) 0;
  border-top: 1px solid var(--line);
  position: relative
}

.step .sn {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--blue-bright);
  letter-spacing: .1em
}

.step h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin: 1.4rem 0 .7rem
}

.step p {
  color: var(--ink-soft);
  font-size: .95rem;
  max-width: 30ch
}

.step .dotline {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue)
}

/* ---------- CTA ---------- */
.cta {
  position: relative
}

.cta-inner {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(2.5rem, 6vw, 5rem);
  background:
    radial-gradient(120% 140% at 85% 0%, rgba(59, 129, 173, .18), transparent 55%),
    radial-gradient(100% 120% at 0% 100%, rgba(38, 33, 92, .5), transparent 60%),
    var(--bg-2);
  overflow: hidden
}

.cta h2 {
  font-size: clamp(2.3rem, 6.5vw, 5rem);
  font-weight: 700;
  max-width: 16ch
}

.cta h2 em {
  font-style: normal;
  color: var(--blue-bright)
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-top: 2.4rem
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.1rem
}

.form-row label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted)
}

.form-row input,
.form-row select {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: .98rem;
  transition: border-color .25s, background .25s
}

.form-row input::placeholder {
  color: var(--muted)
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(59, 129, 173, .06)
}

.form-row.err input,
.form-row.err select {
  border-color: #d2706a
}

.form-row .hint {
  font-size: .78rem;
  color: #d2706a;
  min-height: 1rem;
  display: none
}

.form-row.err .hint {
  display: block
}

.form-msg {
  margin-top: 1rem;
  font-size: .95rem;
  color: var(--blue-bright);
  display: none
}

.form-msg.show {
  display: block
}

.form-msg.err-msg {
  color: #e58a8a
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%237f7b97' stroke-width='1.6'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2.5rem
}

.foot-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4rem, 18vw, 15rem);
  line-height: .8;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, .12);
  margin-bottom: clamp(2rem, 5vw, 3.5rem)
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line)
}

.foot-grid h4 {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-weight: 400
}

.foot-grid a,
.foot-grid p {
  display: block;
  color: var(--ink-soft);
  font-size: .95rem;
  padding: .28rem 0;
  transition: color .25s
}

.foot-grid a:hover {
  color: var(--blue-bright)
}

.foot-col.about p {
  max-width: 34ch;
  color: var(--ink-soft)
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.6rem;
  flex-wrap: wrap;
  gap: 1rem
}

.foot-bottom p,
.foot-bottom a {
  font-size: .82rem;
  color: var(--muted)
}

.foot-legal {
  display: flex;
  gap: 1.4rem
}

.foot-legal a:hover {
  color: var(--ink-soft)
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: calc(var(--i, 0)*90ms)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ---------- responsive ---------- */
@media(max-width:1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .mock {
    max-width: 380px;
    margin: 0 auto
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .foot-col.about {
    grid-column: 1/-1
  }
}

@media(max-width:760px) {

  .nav-links,
  .nav-right .btn,
  .nav-right .lang {
    display: none
  }

  .burger {
    display: block
  }

  .stats {
    grid-template-columns: 1fr 1fr
  }

  .stat {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 1.2rem
  }

  .stat:first-child {
    border-top: none
  }

  .stat:nth-child(2) {
    border-top: 1px solid var(--line)
  }

  .steps {
    grid-template-columns: 1fr
  }

  .clients-grid {
    grid-template-columns: 1fr
  }

  .ind-accordion {
    flex-direction: column;
    height: auto
  }

  .ind-panel {
    height: auto;
    padding: 0
  }

  .ind-panel:hover {
    flex: 1
  }

  .ind-panel .body {
    position: relative;
    padding: 1.5rem
  }

  .ind-panel h3 {
    writing-mode: horizontal-tb;
    transform: none
  }

  .ind-panel p {
    opacity: 1;
    max-height: none
  }

  .ind-panel .tags {
    opacity: 1
  }

  .ind-panel .vnum {
    position: static;
    margin-bottom: .6rem;
    display: block
  }

  .sol-row {
    grid-template-columns: auto 1fr;
    gap: 1.2rem
  }

  .sol-end {
    display: none
  }

  .cta-grid {
    grid-template-columns: 1fr
  }

  .sol-row .num {
    padding-top: .3rem
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition-duration: .01ms !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }

  .hero h1 .line i {
    transform: none
  }
}

/* ---------- stock imagery (added for Vue build) ---------- */
.ind-panel .photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .42;
  transition: opacity .6s var(--ease), transform .9s var(--ease);
  filter: saturate(.92)
}

.ind-panel:hover .photo {
  opacity: .62;
  transform: scale(1.05)
}

.ind-panel .shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 8, 20, .30), rgba(9, 8, 20, .55) 55%, rgba(9, 8, 20, .86))
}

.ind-panel .body {
  z-index: 2
}

.ind-panel .vnum {
  z-index: 2
}

.sol-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.sol-thumb {
  background: linear-gradient(150deg, var(--surface-2), var(--purple))
}

.band {
  position: relative;
  height: clamp(260px, 40vh, 420px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 1rem
}

.band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5
}

.band .shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(9, 8, 20, .86), rgba(38, 33, 92, .4) 60%, rgba(9, 8, 20, .7));
  z-index: 1
}

.band .band-txt {
  position: absolute;
  z-index: 2;
  inset: auto auto 0 0;
  padding: clamp(1.4rem, 3vw, 2.4rem)
}

.band .band-txt h3 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 600;
  max-width: 18ch
}

.band .band-txt p {
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: .6rem
}

img.loading-img {
  background: linear-gradient(150deg, var(--surface-2), var(--purple))
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-store-pill {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 0.25rem 0.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.header-store-pill:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(85, 179, 243, 0.25);
}

.store-pill-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 20px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.store-pill-btn svg {
  display: inline-block;
  vertical-align: middle;
  opacity: 0.65;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-pill-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.store-pill-btn:hover svg {
  opacity: 1;
  transform: scale(1.08);
}

.ios-btn:hover svg {
  color: #fff;
}

.android-btn:hover svg {
  color: #34a853;
}

.pill-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 0.15rem;
}

.foot-contact-link {
  margin-bottom: 0.25rem;
}

.foot-location {
  margin-bottom: 0.75rem !important;
  color: rgba(255, 255, 255, 0.5);
}

.foot-apps-wrapper {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
}

.foot-apps-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.25rem;
}

.foot-apps-wrapper h5 {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.foot-badge-group {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.foot-badge-link {
  display: block;
  max-width: 128px;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, filter 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  filter: opacity(0.65);
}

.foot-badge-link:hover {
  filter: opacity(1);
  /* transform: translateY(-2px);
  border-color: rgba(85, 179, 243, 0.3); */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.foot-badge-link img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .nav-right {
    gap: 1rem;
  }

  .store-pill-btn {
    padding: 0.35rem 0.5rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 640px) {

  .header-store-pill {
    display: none;
  }

  .store-pill-btn span {
    display: none;
  }

  .store-pill-btn {
    padding: 0;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: transparent;
  }

  .store-pill-btn svg {
    width: 14px !important;
    height: 14px !important;
    opacity: 0.85;
  }

  .pill-divider {
    height: 12px;
    margin: 0;
    opacity: 0.6;
  }

  .foot-apps-wrapper {
    align-items: start;
    margin-top: 2rem;
  }

  .foot-apps-divider {
    width: 60px;
    margin-left: auto;
    margin-right: auto;
  }

  .foot-badge-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .foot-badge-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 88px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
  }

  .foot-badge-link img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .foot-badge-link img[alt="Google Play"] {
    transform: scale(1.08);
  }
}

/* ---------- legal pages ---------- */
.legal-page {
  padding-top: calc(74px + clamp(3rem, 8vw, 5rem));
  padding-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.legal-hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: clamp(420px, 60vh, 640px);
  z-index: 0;
  pointer-events: none;
  opacity: .75;
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent);
  mask-image: linear-gradient(to bottom, #000 70%, transparent)
}

.legal-hero {
  max-width: 68ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin: 1rem 0 1.25rem;
}

.legal-meta {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.legal-content {
  max-width: 72ch;
  position: relative;
  z-index: 1;
}

.legal-content section {
  padding: 0 0 clamp(2.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: clamp(2.25rem, 4vw, 3rem);
}

.legal-content section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-content h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
  color: var(--ink);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.75rem 0 .75rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: .5rem 0 1rem 1.25rem;
  padding: 0;
}

.legal-content li {
  margin-bottom: .55rem;
}

.legal-content li strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-content a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s;
}

.legal-content a:hover {
  color: var(--ink);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(20, 17, 43, .45);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

.legal-table th,
.legal-table td {
  padding: .9rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}

.legal-table th {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  background: rgba(255, 255, 255, .02);
}

.legal-table td {
  color: var(--ink-soft);
}

.legal-table td:first-child {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-back {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

@media (max-width: 760px) {
  .legal-page .nav-links,
  .legal-page .nav-right .btn {
    display: none;
  }

  .legal-table td:first-child {
    white-space: normal;
  }
}

/* ---------- RTL (Arabic) ---------- */
:root[dir="rtl"] body,
[dir="rtl"] {
  --display-ar: "IBM Plex Sans Arabic", var(--display);
  --body-ar: "IBM Plex Sans Arabic", var(--body);
}

[dir="rtl"] body {
  font-family: var(--body-ar);
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] .big,
[dir="rtl"] .brand,
[dir="rtl"] .mono,
[dir="rtl"] .sec-index,
[dir="rtl"] .num,
[dir="rtl"] .sn,
[dir="rtl"] .vnum {
  font-family: var(--display-ar);
}

[dir="rtl"] .lang,
[dir="rtl"] .eyebrow,
[dir="rtl"] .partner-tag,
[dir="rtl"] .client-meta small {
  font-family: var(--body-ar);
  letter-spacing: 0;
}

[dir="rtl"] .manifesto,
[dir="rtl"] .legal-table th,
[dir="rtl"] .legal-table td {
  text-align: right;
}

[dir="rtl"] .arrow {
  transform: scaleX(-1);
}

[dir="rtl"] .btn:hover .arrow {
  transform: scaleX(-1) translateX(3px);
}

[dir="rtl"] .sol-go svg,
[dir="rtl"] .sol-go {
  transform: scaleX(-1);
}

[dir="rtl"] .sol-row:hover .sol-go {
  transform: scaleX(-1) rotate(45deg);
}

[dir="rtl"] .step .dotline {
  transform: scaleX(-1);
}

[dir="rtl"] .marquee .track {
  animation-direction: reverse;
}

[dir="rtl"] .scrollcue .ln {
  transform: scaleX(-1);
}

[dir="rtl"] .stat {
  border-left: none;
  border-right: 1px solid var(--line);
}

[dir="rtl"] .stat:first-child {
  border-right: none;
  padding-right: 0;
}

[dir="rtl"] .sol-row:hover {
  padding-left: 0;
  padding-right: clamp(.5rem, 2vw, 1.6rem)
}

[dir="rtl"] .sol-thumb {
  transform: translateX(-20px) scale(.95);
}

[dir="rtl"] .sol-row:hover .sol-thumb {
  transform: none;
}

/* ---------- static legal-page language toggle ---------- */
html[lang="en"] .lang-ar {
  display: none;
}

html[lang="ar"] .lang-en {
  display: none;
}

[dir="rtl"] .legal-content h2,
[dir="rtl"] .legal-content h3,
[dir="rtl"] .legal-hero,
[dir="rtl"] .legal-meta,
[dir="rtl"] .legal-content p,
[dir="rtl"] .legal-content li {
  text-align: right;
}

[dir="rtl"] .legal-content ul {
  margin-left: 0;
  margin-right: 1.25rem;
}

/* phone numbers stay dir="ltr" so digits/+ read correctly, but should still
   sit flush with the rest of an RTL column/paragraph instead of drifting left */
[dir="rtl"] .foot-grid a[dir="ltr"] {
  text-align: right;
}

[dir="rtl"] .legal-content p span[dir="ltr"] {
  unicode-bidi: isolate;
}