:root {
  --deep: #180426;
  --deep-2: #26063d;
  --purple: #9730ef;
  --purple-soft: #bf7cff;
  --white: #ffffff;
  --paper: #fbf9ff;
  --ink: #190525;
  --muted-dark: #65566d;
  --text: #f8f1ff;
  --muted: rgba(248, 241, 255, .72);
  --line: rgba(255, 255, 255, .14);
  --dark-line: rgba(25, 5, 37, .1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--deep);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 14%, rgba(151,48,239,.34), transparent 31%),
    radial-gradient(circle at 78% 16%, rgba(151,48,239,.22), transparent 30%),
    linear-gradient(145deg, #180426 0%, #26063d 54%, #12021e 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .16;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, p, a, button, span, b, small {
  overflow-wrap: anywhere;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(151,48,239,.2), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: .65;
}

.header {
  position: fixed;
  left: 50%;
  top: 18px;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 238px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 10px 14px 10px 22px;
  border: 1px solid rgba(151,48,239,.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 100%, rgba(151,48,239,.2), transparent 22%),
    linear-gradient(135deg, rgba(151,48,239,.1), rgba(255,255,255,.015)),
    rgba(11, 1, 22, .82);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  backdrop-filter: blur(14px) saturate(1.15);
  box-shadow:
    0 18px 58px rgba(0,0,0,.3),
    0 0 30px rgba(151,48,239,.1),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.header.scrolled {
  border-color: rgba(151,48,239,.42);
  background:
    linear-gradient(135deg, rgba(151,48,239,.13), rgba(255,255,255,.018)),
    rgba(17, 2, 29, .84);
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
}

.logo::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 42px;
  background: linear-gradient(transparent, rgba(255,255,255,.18), transparent);
}

.logo img { width: 190px; height: auto; }

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(7, 1, 15, .44);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 12px 40px rgba(0,0,0,.22);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 50px;
  padding: 0 2px;
  border-radius: 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  font-weight: 800;
  transition: color .22s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 18px rgba(151,48,239,.65);
  transform: scaleX(0);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.header-cta, .button, .mini-action {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), #b85cff);
  box-shadow:
    0 18px 44px rgba(151,48,239,.42),
    0 0 34px rgba(151,48,239,.24);
}

.header-cta::after, .button::after, .mini-action::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  z-index: -1;
  width: 46%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transition: left .55s ease;
}

.header-cta:hover::after, .button:hover::after, .mini-action:hover::after { left: 112%; }

.menu-button {
  display: none;
  position: relative;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.menu-button span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transform: translateX(-50%);
  transition: transform .28s ease, top .28s ease, opacity .2s ease;
}

.menu-button span:first-child { top: 14px; }
.menu-button span:last-child { top: 22px; }

.header.menu-open .menu-button {
  border-color: rgba(183,101,255,.45);
  background: rgba(151,48,239,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 24px rgba(151,48,239,.18);
}

.header.menu-open .menu-button span:first-child {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}

.header.menu-open .menu-button span:last-child {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

.section-panel {
  position: relative;
  padding: 104px 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 138px;
  overflow: hidden;
}

.hero-tech-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    radial-gradient(circle at 52% 46%, rgba(151,48,239,.16), transparent 34%);
  background-size: 56px 56px, 56px 56px, auto;
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 55%, transparent 88%);
  opacity: .72;
}

.hero-tech-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.62) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: .34;
  animation: driftGrid 18s linear infinite;
}

.tech-node {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(151,48,239,.15), 0 0 24px rgba(255,255,255,.72);
  animation: nodePulse 4.4s ease-in-out infinite;
}

.tech-node.n1 { left: 18%; top: 31%; }
.tech-node.n2 { left: 56%; top: 25%; animation-delay: .8s; }
.tech-node.n3 { right: 18%; top: 65%; animation-delay: 1.6s; }

@keyframes driftGrid {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(92px, 92px, 0); }
}

@keyframes nodePulse {
  0%, 100% { opacity: .42; transform: scale(.88); }
  50% { opacity: 1; transform: scale(1.18); }
}

.hero-grid, .intro-grid, .process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.intro-grid { grid-template-columns: 1fr 1fr; }
.process-grid { grid-template-columns: 1.12fr .88fr; }

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: #d8b7ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.25vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy p, .section-head p, .section-copy p, .final-card p {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions.center { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 800;
  transform: translate3d(0,0,0);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.button:hover, .mini-action:hover, .header-cta:hover { transform: translateY(-3px); }

.button.primary {
  border-color: rgba(151,48,239,.78);
  background: linear-gradient(135deg, var(--purple), #b95fff);
  box-shadow: 0 18px 42px rgba(151,48,239,.32);
}

.button.ghost { background: rgba(255,255,255,.06); }

.product-scene {
  position: relative;
  min-height: 560px;
  transform: translateY(var(--scene-y, 0));
  transition: transform .12s linear;
}

.scene-grid {
  position: absolute;
  inset: 72px 4% 20px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000 34%, transparent 74%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  opacity: .9;
}
.orbit-one { width: 430px; height: 430px; right: 6%; top: 60px; }
.orbit-two { width: 270px; height: 270px; left: 6%; bottom: 50px; }

.dashboard {
  position: absolute;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.2), rgba(255,255,255,.08)),
    linear-gradient(145deg, rgba(93,35,126,.92), rgba(44,11,66,.9));
  box-shadow: 0 28px 70px rgba(0,0,0,.25);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px);
  transform: translateZ(0);
  will-change: transform;
}

.main-panel {
  inset: 88px 6% auto auto;
  width: min(430px, 82%);
  padding: 24px;
  animation: floatMain 7s ease-in-out infinite;
}

.side-panel {
  left: 5%;
  top: 262px;
  width: 245px;
  padding: 20px;
  animation: floatSmall 8s ease-in-out infinite reverse;
}

.mini-panel {
  right: 2%;
  bottom: 40px;
  width: 262px;
  padding: 20px;
  animation: floatSmall 8.5s ease-in-out infinite;
}

.panel-top, .metric-row { display: flex; justify-content: space-between; gap: 14px; }
.panel-top span, .dashboard span, .dashboard small { color: rgba(255,255,255,.68); }
.panel-top strong { font-size: 42px; color: #fff; }
.metric-row { margin: 28px 0; }
.metric-row b, .dashboard strong { display: block; color: #fff; font-size: 25px; }
.metric-row span { display: block; font-size: 12px; color: rgba(255,255,255,.62); }
.chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  height: 128px;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.chart i {
  display: block;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(#fff, var(--purple-soft));
}

@keyframes floatMain {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes floatSmall {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.white-section {
  color: var(--ink);
  background: var(--paper);
}
.white-section .eyebrow { color: var(--purple); }
.white-section .section-copy p,
.white-section .experience-card p,
.white-section .journey-card p { color: var(--muted-dark); }

.experience-card, .journey, .solution, .final-card, .ecosystem {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: rgba(255,255,255,.075);
  box-shadow: 0 24px 64px rgba(0,0,0,.16);
}

.white-section .experience-card,
.white-section .journey {
  border-color: var(--dark-line);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 20px 54px rgba(25,5,37,.08);
}

.experience-card { padding: 28px; }

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  font-weight: 800;
}

.progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(151,48,239,.12);
}

.progress-track i {
  position: relative;
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), #d7adff);
  overflow: hidden;
  transition: width .75s cubic-bezier(.22, 1, .36, 1);
}

.progress-track i::after {
  content: "";
  position: absolute;
  top: 0;
  right: -28px;
  width: 58px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.82), transparent);
  animation: progressShine 1.15s ease-in-out infinite;
  opacity: 0;
}

.experience-card.is-running .progress-track i::after {
  opacity: 1;
}

@keyframes progressShine {
  from { transform: translateX(-90px); }
  to { transform: translateX(38px); }
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.choice-grid button {
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  background: #fff;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.choice-grid button:hover, .choice-grid button.active {
  color: #fff;
  border-color: rgba(151,48,239,.82);
  background: var(--purple);
  transform: translateY(-3px);
}

.client-marquee {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 86px;
  padding: 0 max(22px, calc((100vw - 1140px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18,2,30,.98), rgba(48,8,76,.98), rgba(18,2,30,.98)),
    radial-gradient(circle at 50% 50%, rgba(151,48,239,.22), transparent 46%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.client-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 120px);
  opacity: .42;
  pointer-events: none;
}

.marquee-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-label span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #a735ff;
  box-shadow: 0 0 18px rgba(167,53,255,.9);
}

.marquee-window {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marqueeClients 34s linear infinite;
  will-change: transform;
}

.client-logo-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  transition:
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.client-logo-card:hover {
  border-color: rgba(190,119,255,.46);
  background: linear-gradient(180deg, rgba(151,48,239,.28), rgba(255,255,255,.07));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 12px 28px rgba(151,48,239,.18);
}

.client-logo-card img {
  width: auto;
  max-width: 132px;
  max-height: 26px;
  object-fit: contain;
  opacity: .88;
  filter: grayscale(1) brightness(1.08);
}

@keyframes marqueeClients {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.testimonials { overflow: hidden; }

.testimonials-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.testimonials-head > div:first-child { max-width: 720px; }
.testimonials-head h2 { margin-bottom: 0; }

.testimonial-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.testimonial-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 20px;
  background: #fff;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.testimonial-controls button:hover {
  color: #fff;
  background: var(--purple);
  transform: translateY(-2px);
}

.testimonial-viewport { overflow: hidden; }

.testimonial-track {
  display: flex;
  gap: 18px;
  transition: transform .55s cubic-bezier(.22,.8,.28,1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 36px) / 3);
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  color: var(--ink);
  background: linear-gradient(145deg, #fff 58%, #f6ebff);
}

.testimonial-rating {
  margin-bottom: 22px;
  color: var(--purple);
  font-size: 16px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.65;
}

.testimonial-card footer {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--dark-line);
}

.testimonial-card footer span { font-weight: 850; }
.testimonial-card footer small { color: var(--muted-dark); font-size: 13px; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d9cde2;
  cursor: pointer;
  transition: width .25s ease, border-radius .25s ease, background .25s ease;
}

.testimonial-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: var(--purple);
}

.solution-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.solution {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 344px;
  padding: 28px;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.solution::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 18%, rgba(151,48,239,.3), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 42%);
  opacity: 0;
  transition: opacity .28s ease;
}

.solution::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 92px;
  height: 1px;
  background: linear-gradient(90deg, rgba(151,48,239,.65), transparent);
  transform: scaleX(.35);
  transform-origin: left;
  opacity: .35;
  transition: transform .32s ease, opacity .32s ease;
}

.solution:hover {
  transform: translateY(-8px);
  border-color: rgba(151,48,239,.55);
  background: rgba(255,255,255,.1);
  box-shadow: 0 28px 74px rgba(151,48,239,.16);
}

.solution:hover::before { opacity: 1; }
.solution:hover::after {
  transform: scaleX(1);
  opacity: .85;
}

.solution-top, .solution-body, .mini-action {
  position: relative;
  z-index: 1;
}

.solution-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(151,48,239,.95), rgba(191,124,255,.55));
  box-shadow: 0 16px 38px rgba(151,48,239,.28);
  transition: transform .28s ease, box-shadow .28s ease;
}

.solution:hover .solution-icon {
  transform: translateY(-4px) rotate(-3deg);
  box-shadow: 0 20px 48px rgba(151,48,239,.42);
}

.solution-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-number {
  color: #d8b7ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.solution-body {
  display: grid;
  align-content: start;
}

.solution p { color: var(--muted); }

.mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: fit-content;
  margin-top: 26px;
  padding: 0 16px;
  border: 1px solid rgba(151,48,239,.54);
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: rgba(151,48,239,.22);
  transition: transform .22s ease;
}

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 14px;
}

.journey-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-content: start;
  min-height: 156px;
  padding: 16px;
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(151,48,239,.1), transparent 32%),
    #fff;
}

.journey-card i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  grid-row: 1 / 4;
  margin-bottom: 0;
  border-radius: 12px;
  color: var(--purple);
  background: #f3e5ff;
}

.journey-card svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-card span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
}

.journey-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 19px;
}

.journey-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.42;
}

.ecosystem {
  display: grid;
  gap: 34px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(151,48,239,.18), transparent 32%),
    rgba(255,255,255,.075);
}

.ecosystem-copy h2 {
  max-width: 780px;
  margin-bottom: 14px;
}

.ecosystem-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.eco-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.075);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.eco-card:hover {
  transform: translateY(-6px);
  border-color: rgba(151,48,239,.55);
  background: rgba(255,255,255,.12);
  box-shadow: 0 22px 60px rgba(151,48,239,.14);
}

.eco-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: #fff;
  background: var(--purple);
  box-shadow: 0 14px 32px rgba(151,48,239,.3);
}

.eco-card svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eco-card b {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.eco-card span {
  color: var(--muted);
  font-size: 15px;
}

.final { padding-top: 86px; }

.final-card {
  display: block;
  max-width: 980px;
  text-align: center;
  padding: clamp(42px, 6vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 0, rgba(151,48,239,.5), transparent 42%),
    rgba(255,255,255,.075);
}

.final-copy { margin: 0 auto; }

.final-copy h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

.final-copy p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.final-copy .hero-actions { justify-content: center; }

.footer {
  padding: 46px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.68);
  background:
    radial-gradient(circle at 18% 0, rgba(151,48,239,.2), transparent 34%),
    linear-gradient(180deg, rgba(24,4,38,.72), rgba(13,1,22,.92));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 34px;
  align-items: start;
  font-size: 13px;
  font-weight: 700;
}

.footer img { width: 162px; }

.footer-brand,
.footer-contact,
.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-brand p {
  max-width: 390px;
  margin: 2px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.footer-contact span,
.footer-meta span:first-child {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.78);
  transition: color .2s ease, transform .2s ease;
}

.footer-contact a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-contact-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--purple);
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(151,48,239,.35));
}

.footer-contact-icon.whatsapp {
  -webkit-mask-image: url("assets/whatsapp.svg");
  mask-image: url("assets/whatsapp.svg");
}

.footer-contact-icon.email {
  -webkit-mask-image: url("assets/email.svg");
  mask-image: url("assets/email.svg");
}

.footer-meta {
  justify-items: end;
  text-align: right;
}

.footer-meta span:last-child {
  color: rgba(255,255,255,.56);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible.solution:nth-child(2),
.reveal.visible.journey { transition-delay: .08s; }
.solution-stack .solution:nth-child(2) { transition-delay: .08s; }
.solution-stack .solution:nth-child(3) { transition-delay: .16s; }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1400px) {
  .header {
    grid-template-columns: 218px 1fr auto;
    gap: 18px;
    min-height: 70px;
    padding: 9px 12px 9px 20px;
    border-radius: 22px;
  }
  .logo { min-height: 50px; }
  .logo img { width: 176px; }
  .logo::after { height: 40px; }
  .nav { gap: 18px; min-height: 50px; padding: 0 18px; border-radius: 17px; }
  .nav a { min-height: 48px; font-size: 14px; }
  .header-cta { min-height: 50px; padding: 0 16px; font-size: 14px; white-space: nowrap; }
}

@media (max-width: 1180px) {
  .header {
    grid-template-columns: 188px 1fr auto;
    gap: 14px;
    min-height: 66px;
    padding: 8px 10px 8px 18px;
    border-radius: 20px;
  }
  .logo { min-height: 48px; }
  .logo img { width: 154px; }
  .logo::after { height: 38px; }
  .nav { gap: 14px; min-height: 48px; padding: 0 14px; border-radius: 16px; }
  .nav a { min-height: 46px; font-size: 13px; }
  .header-cta { min-height: 48px; padding: 0 14px; font-size: 13px; }
}

@media (max-width: 980px) {
  .testimonial-card { flex-basis: calc((100% - 18px) / 2); }

  .cursor-glow { display: none; }
  .header {
    grid-template-columns: auto auto;
    min-height: 66px;
    overflow: visible;
  }
  .header.menu-open {
    border-color: rgba(151,48,239,.5);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.08),
      0 16px 42px rgba(0,0,0,.34),
      0 0 34px rgba(151,48,239,.16);
  }
  .logo::after { display: none; }
  .menu-button { display: block; justify-self: end; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: stretch;
    justify-self: stretch;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(13, 1, 24, .97);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    backdrop-filter: blur(16px) saturate(1.2);
    box-shadow: 0 18px 54px rgba(0,0,0,.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transform-origin: top center;
    transition: opacity .26s ease, visibility .26s ease, transform .26s ease;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav a {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 800;
    background: transparent;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .24s ease, transform .24s ease, color .2s ease, background .2s ease;
  }
  .nav.open a {
    opacity: 1;
    transform: translateY(0);
  }
  .nav.open a:nth-child(1) { transition-delay: .03s; }
  .nav.open a:nth-child(2) { transition-delay: .06s; }
  .nav.open a:nth-child(3) { transition-delay: .09s; }
  .nav.open a:nth-child(4) { transition-delay: .12s; }
  .nav.open a:nth-child(5) { transition-delay: .15s; }
  .nav a.active,
  .nav a:hover {
    color: #fff;
    background: rgba(151,48,239,.18);
  }
  .header .nav svg { display: none !important; }
  .nav a::after { display: none; }
  .header-cta { display: none; }
  .mobile-menu-open .hero { padding-top: 300px; }
  .hero-grid, .intro-grid, .process-grid, .final-card { grid-template-columns: 1fr; }
  .solution-stack { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .testimonials-head {
    align-items: center;
    margin-bottom: 24px;
  }

  .testimonial-controls button {
    width: 42px;
    height: 42px;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 278px;
    padding: 24px;
  }

  .testimonial-card blockquote { font-size: 16px; }

  .container { width: min(100% - 28px, 1140px); }
  .header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 9px 10px 9px 14px;
    border-radius: 18px;
  }
  .logo img { width: min(138px, 45vw); }
  .menu-button { width: 40px; height: 38px; border-radius: 12px; }
  .section-panel { padding: 68px 0; }
  .hero { min-height: auto; padding-top: 104px; padding-bottom: 58px; }
  .eyebrow { margin-bottom: 12px; font-size: 11px; }
  h1 { font-size: clamp(34px, 10vw, 44px); line-height: 1.04; }
  h2 { font-size: clamp(27px, 7.3vw, 36px); line-height: 1.12; }
  h3 { font-size: 20px; }
  .hero-copy p, .section-head p, .section-copy p, .final-card p { font-size: 16px; }
  .hero-actions, .hero-actions.center { flex-direction: column; }
  .button { width: 100%; min-height: 50px; }
  .final-card { padding: 32px 24px; }
  .product-scene { min-height: 380px; margin-top: 8px; }
  .scene-grid { inset: 38px 0 0; background-size: 28px 28px; }
  .orbit { display: none; }
  .main-panel {
    top: 34px;
    right: 0;
    width: 94%;
    padding: 16px;
    border-radius: 20px;
  }
  .panel-top strong { font-size: 30px; }
  .metric-row { margin: 20px 0; }
  .metric-row b, .dashboard strong { font-size: 19px; }
  .metric-row span { font-size: 11px; }
  .chart { height: 92px; gap: 8px; }
  .side-panel {
    left: 0;
    top: 222px;
    width: min(214px, 63vw);
    padding: 15px;
    border-radius: 18px;
  }
  .mini-panel {
    right: 0;
    bottom: 0;
    width: min(218px, 64vw);
    padding: 15px;
    border-radius: 18px;
  }
  .choice-grid, .journey { grid-template-columns: 1fr; }
  .experience-card, .journey, .solution, .final-card, .ecosystem { border-radius: 22px; }
  .experience-card { padding: 22px; }
  .choice-grid { grid-template-columns: 1fr; gap: 8px; margin: 18px 0; }
  .choice-grid button { min-height: 54px; }
  .client-marquee {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 104px;
    padding: 14px 0;
  }
  .marquee-label {
    justify-content: center;
    text-align: center;
  }
  .marquee-window {
    width: 100%;
  }
  .client-logo-card {
    min-width: 166px;
    min-height: 44px;
    padding: 0 20px;
  }
  .client-logo-card img {
    max-width: 116px;
    max-height: 24px;
  }
  .solution { min-height: auto; padding: 22px; }
  .solution-top { margin-bottom: 20px; }
  .solution-icon { width: 48px; height: 48px; border-radius: 16px; }
  .solution p { font-size: 15px; }
  .mini-action { width: 100%; margin-top: 20px; }
  .journey { padding: 12px; }
  .journey-card { min-height: auto; padding: 16px; }
  .ecosystem { padding: 24px; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .eco-card { min-height: auto; padding: 20px; }
  .footer { padding: 30px 0; }
  .footer img { width: 146px; }
  .footer-grid { gap: 16px; }
}

@media (max-width: 360px) {
  .container { width: min(100% - 24px, 1140px); }
  .logo img { width: 124px; }
  .header { width: calc(100% - 16px); }
  h1 { font-size: 33px; }
  h2 { font-size: 27px; }
  .product-scene { min-height: 360px; }
  .main-panel { width: 96%; padding: 14px; }
  .panel-top strong { font-size: 28px; }
  .side-panel { top: 210px; width: 198px; }
  .mini-panel { width: 202px; }
}

@media (max-width: 640px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body::after {
    background-size: 28px 28px;
    opacity: .12;
  }

  .container {
    width: min(100% - 28px, 460px);
  }

  .header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    width: calc(100% - 18px);
    min-height: 60px;
    padding: 9px 10px 9px 14px;
    border-radius: 18px;
  }

  .logo {
    min-width: 0;
    min-height: 40px;
  }

  .logo img {
    width: clamp(126px, 42vw, 152px);
  }

  .menu-button {
    width: 42px;
    height: 40px;
    flex: 0 0 auto;
  }

  .nav {
    top: calc(100% + 10px);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    padding: 8px;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(28,4,46,.98), rgba(12,1,22,.98));
  }

  .nav.open {
    display: grid;
  }

  .nav a {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 12px;
  }

  .mobile-menu-open .hero {
    padding-top: 104px;
  }

  .section-panel {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .hero-grid,
  .intro-grid,
  .process-grid {
    gap: 28px;
  }

  .hero-copy,
  .section-copy,
  .section-head,
  .ecosystem-copy,
  .final-copy {
    text-align: center;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.06;
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(27px, 7.7vw, 34px);
    line-height: 1.12;
  }

  .hero-copy p,
  .section-head p,
  .section-copy p,
  .final-card p,
  .ecosystem-copy p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.58;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-actions.center {
    width: 100%;
    gap: 10px;
    margin-top: 24px;
    justify-content: center;
  }

  .button,
  .mini-action {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
    text-align: center;
  }

  .product-scene {
    min-height: 334px;
    width: 100%;
    max-width: 430px;
    margin: 2px auto 0;
  }

  .scene-grid {
    inset: 24px 0 10px;
    border-radius: 24px;
    background-size: 26px 26px;
  }

  .main-panel {
    top: 24px;
    right: 0;
    width: 88%;
    padding: 14px;
    border-radius: 18px;
  }

  .panel-top strong {
    font-size: 26px;
  }

  .metric-row {
    margin: 16px 0;
  }

  .metric-row b,
  .dashboard strong {
    font-size: 18px;
  }

  .chart {
    height: 76px;
    gap: 7px;
  }

  .side-panel {
    left: 0;
    top: 166px;
    width: min(196px, 58vw);
    padding: 13px;
  }

  .mini-panel {
    right: 0;
    bottom: 0;
    width: min(202px, 60vw);
    padding: 13px;
  }

  .dashboard span,
  .dashboard small,
  .panel-top span {
    font-size: 12px;
  }

  .experience-card,
  .journey,
  .solution,
  .final-card,
  .ecosystem,
  .testimonial-card {
    border-radius: 18px;
  }

  .experience-card,
  .solution,
  .ecosystem,
  .final-card {
    padding: 22px;
  }

  .progress-label {
    align-items: center;
    gap: 12px;
  }

  .choice-grid button {
    min-height: 50px;
    padding: 10px 12px;
  }

  .client-marquee {
    min-height: 96px;
    gap: 10px;
  }

  .marquee-track {
    gap: 10px;
    animation-duration: 22s;
  }

  .client-logo-card {
    min-width: 158px;
    min-height: 42px;
    padding: 0 18px;
  }

  .client-logo-card img {
    max-width: 110px;
    max-height: 23px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .solution-stack,
  .journey,
  .ecosystem-grid {
    gap: 12px;
  }

  .solution {
    grid-template-rows: auto auto auto;
  }

  .solution::after {
    left: 22px;
    right: 22px;
    bottom: 78px;
  }

  .solution-icon,
  .eco-card i,
  .journey-card i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .solution h3,
  .journey-card h3,
  .eco-card b {
    font-size: 19px;
  }

  .journey {
    padding: 10px;
  }

  .journey-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: start;
    padding: 16px;
  }

  .journey-card i {
    grid-row: span 3;
    margin-bottom: 0;
  }

  .journey-card span,
  .journey-card h3,
  .journey-card p {
    margin-left: 0;
  }

  .journey-card span {
    align-self: end;
  }

  .journey-card h3 {
    margin-bottom: 4px;
  }

  .journey-card p {
    grid-column: 2;
    font-size: 14px;
    line-height: 1.5;
  }

  .eco-card {
    min-height: auto;
    padding: 18px;
  }

  .testimonials-head {
    align-items: flex-start;
    gap: 16px;
  }

  .testimonial-controls {
    align-self: flex-start;
  }

  .testimonial-card {
    min-height: auto;
    padding: 22px;
  }

  .testimonial-card blockquote {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.62;
  }

  .testimonial-rating {
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 2px;
  }

  .final {
    padding-top: 58px;
  }

  .final-card {
    text-align: center;
    background:
      radial-gradient(circle at 18% 0, rgba(151,48,239,.38), transparent 42%),
      rgba(255,255,255,.075);
  }

  .final-copy h2,
  .final-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .final-copy .hero-actions {
    justify-content: center;
  }

  .footer {
    padding: 32px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .footer img {
    width: 136px;
    margin: 0 auto;
  }

  .footer-brand p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
  }

  .footer-contact,
  .footer-meta {
    justify-items: center;
    text-align: center;
  }

  .footer-contact a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 12px;
    background: rgba(255,255,255,.045);
  }

  .footer-contact a:hover {
    transform: none;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 22px, 430px);
  }

  .header {
    width: calc(100% - 12px);
    top: 6px;
    padding-left: 12px;
    padding-right: 8px;
  }

  .logo img {
    width: clamp(116px, 40vw, 132px);
  }

  h1 {
    font-size: clamp(32px, 9.6vw, 38px);
  }

  h2 {
    font-size: clamp(25px, 7.2vw, 31px);
  }

  .product-scene {
    min-height: 318px;
  }

  .main-panel {
    width: 90%;
  }

  .side-panel {
    top: 158px;
    width: min(184px, 58vw);
  }

  .mini-panel {
    width: min(190px, 61vw);
  }

  .experience-card,
  .solution,
  .ecosystem,
  .final-card,
  .testimonial-card {
    padding: 18px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .button:hover,
  .mini-action:hover,
  .header-cta:hover,
  .choice-grid button:hover,
  .solution:hover,
  .eco-card:hover,
  .testimonial-controls button:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .product-scene { transform: none !important; }
  .marquee-track { transform: none !important; }
}
