:root {
  --ink: #15233a;
  --muted: #61708a;
  --navy: #080e22;
  --navy-soft: #101a38;
  --surface: #ffffff;
  --surface-alt: #f4f6fb;
  --line: #dfe4f0;
  --primary: #8756ed;
  --primary-dark: #5b49d0;
  --primary-soft: #f0ebff;
  --cyan: #4f7cf0;
  --cyan-soft: #eaf0ff;
  --green: #5ce0a8;
  --orange: #ffad62;
  --radius: 20px;
  --radius-sm: 13px;
  --shadow: 0 24px 70px rgba(17, 28, 61, .13);
  --shadow-soft: 0 12px 34px rgba(17, 28, 61, .08);
  --wrap: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

h3 {
  margin-bottom: 13px;
  font-size: 1.25rem;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20000;
  padding: 10px 14px;
  color: #fff;
  background: var(--primary-dark);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(223, 228, 240, .92);
  box-shadow: 0 8px 25px rgba(15, 25, 55, .05);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 58%, #8f7ff8);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(109, 92, 232, .27);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: #738099;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .015em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 2px;
}

.main-nav a {
  padding: 11px 10px;
  color: #3d4860;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  padding: 13px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 12px 26px rgba(109, 92, 232, .24);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #3d2daf, #7969ef);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 3px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle__icon::before {
  top: -6px;
}

.menu-toggle__icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(109, 92, 232, .22), transparent 32%),
    linear-gradient(128deg, #070c1e 0%, #0a1230 48%, #111c43 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow--one {
  top: 22%;
  right: -130px;
  width: 460px;
  height: 460px;
  background: rgba(79, 124, 240, .1);
}

.hero-glow--two {
  bottom: -230px;
  left: 15%;
  width: 520px;
  height: 520px;
  background: rgba(109, 92, 232, .11);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 92%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(490px, .96fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
  min-height: calc(100vh - 122px);
  padding-block: 84px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #a89cff;
}

.eyebrow-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: #0a1330;
  background: var(--cyan);
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 0;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #aa86ff, #5f8af5 84%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: #bdc7dc;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.hero-lead strong {
  color: #fff;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 11px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 16px 32px rgba(109, 92, 232, .3);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 19px 38px rgba(109, 92, 232, .4);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .25);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .45);
}

.button--dark {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(8, 14, 34, .16);
}

.button--light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 16px 38px rgba(5, 12, 35, .18);
}

.button--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .06);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 31px 0 0;
  padding: 0;
  color: #b9c4da;
  font-size: .86rem;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--green);
  border: 1px solid rgba(92, 224, 168, .45);
  border-radius: 50%;
  font-size: .7rem;
}

.hero-trust strong {
  color: #fff;
}

.hero-visual {
  position: relative;
  padding: 47px 0 43px;
}

.pipeline {
  position: relative;
  overflow: hidden;
  color: #17233b;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 22px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36);
}

.pipeline::before {
  position: absolute;
  inset: 48px 0 38px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(109, 92, 232, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 92, 232, .035) 1px, transparent 1px);
  background-size: 24px 24px;
}

.pipeline-head,
.pipeline-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: #5d6a81;
  background: #f6f7fb;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.pipeline-head {
  border-bottom: 1px solid #e3e7f0;
}

.pipeline-foot {
  border-top: 1px solid #e3e7f0;
  letter-spacing: 0;
  text-transform: none;
}

.status,
.pipeline-foot span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.status i,
.pulse {
  width: 8px;
  height: 8px;
  background: #2bc98a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(43, 201, 138, .13);
}

.pipeline-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  align-items: center;
  gap: 14px;
  min-height: 390px;
  padding: 35px 21px;
}

.system-column {
  display: grid;
  gap: 11px;
}

.column-label {
  color: #8791a3;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.system-node {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 65px;
  padding: 10px;
  background: #fff;
  border: 1px solid #e2e6ef;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(29, 40, 76, .07);
}

.system-node i {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #4d3fc6;
  background: var(--primary-soft);
  border-radius: 9px;
  font-size: .68rem;
  font-style: normal;
  font-weight: 900;
}

.system-node--target i {
  color: #315fc8;
  background: var(--cyan-soft);
}

.system-node span {
  min-width: 0;
}

.system-node strong,
.system-node small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.system-node strong {
  font-size: .74rem;
}

.system-node small {
  margin-top: 3px;
  color: #7a869a;
  font-size: .61rem;
}

.engine-column {
  position: relative;
  display: grid;
  place-items: center;
  gap: 13px;
}

.engine {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 145px;
  min-height: 148px;
  padding: 16px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .16), transparent 33%),
    linear-gradient(145deg, #4032b5, #8053eb 62%, #4f7cf0);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(87, 72, 202, .33);
}

.engine::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 17px;
  content: "";
}

.engine-symbol {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 13px;
  font-size: 1rem;
  font-weight: 900;
}

.engine strong {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}

.engine small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .76);
  font-size: .59rem;
  line-height: 1.35;
}

.format-pills {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.format-pills span {
  padding: 3px 6px;
  color: #4f43a9;
  background: #f2efff;
  border: 1px solid #dcd6ff;
  border-radius: 5px;
  font-size: .52rem;
  font-weight: 900;
}

.flow-line {
  position: absolute;
  top: 46%;
  z-index: 0;
  width: 88%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(135, 86, 237, .42) 18%, rgba(79, 124, 240, .5) 82%, transparent);
}

.flow-line--two {
  top: 55%;
}

.visual-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 215px;
  padding: 12px 15px;
  color: #243047;
  background: #fff;
  border: 1px solid rgba(224, 228, 239, .9);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(3, 8, 25, .24);
}

.visual-badge--top {
  top: 0;
  right: -15px;
}

.visual-badge--bottom {
  bottom: 0;
  left: -20px;
}

.badge-icon {
  display: grid;
  place-items: center;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  color: #4d3fc6;
  background: var(--primary-soft);
  border-radius: 10px;
  font-weight: 900;
}

.visual-badge--bottom .badge-icon {
  color: #315fc8;
  background: var(--cyan-soft);
}

.visual-badge strong,
.visual-badge small {
  display: block;
}

.visual-badge strong {
  font-size: .77rem;
}

.visual-badge small {
  margin-top: 2px;
  color: #7a8598;
  font-size: .61rem;
}

.path-section {
  position: relative;
  z-index: 2;
  padding: 33px 0 39px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(14, 24, 55, .05);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.07rem;
}

.section-heading--compact {
  max-width: none;
  margin-bottom: 22px;
  text-align: left;
}

.section-heading--compact .section-kicker {
  margin-bottom: 7px;
}

.section-heading--compact h2 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.section-heading--left {
  max-width: 610px;
  margin-inline: 0;
  text-align: left;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.path-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 106px;
  padding: 19px;
  color: var(--ink);
  background: #fff;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.path-card:last-child {
  border-right: 0;
}

.path-card:hover,
.path-card:focus-visible {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.path-number {
  color: var(--primary);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.path-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.path-copy small {
  margin-bottom: 4px;
  color: #7c8799;
  font-size: .67rem;
}

.path-copy strong {
  font-size: .87rem;
  line-height: 1.35;
}

.path-arrow {
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform .2s ease;
}

.path-card:hover .path-arrow {
  transform: translateX(4px);
}

.section {
  padding: 105px 0;
}

.section--light {
  background:
    radial-gradient(circle at 92% 15%, rgba(109, 92, 232, .06), transparent 28%),
    linear-gradient(180deg, #f6f8fc, #fff);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-card:hover {
  border-color: #c9c2fa;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #a1aabc;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 23px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  font-size: .94rem;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 21px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: #48556c;
  font-size: .84rem;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--primary);
  content: "✓";
  font-weight: 900;
}

.formats-section {
  background: #fff;
}

.formats-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.formats-layout .section-heading {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  margin-top: 10px;
  color: var(--primary-dark);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.format-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.format-card {
  position: relative;
  min-height: 205px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.format-card::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 135px;
  height: 135px;
  background: currentColor;
  border-radius: 50%;
  content: "";
  opacity: .055;
}

.format-card--xml,
.format-card--excel {
  color: #4f40c7;
  background: #f5f2ff;
  border-color: #ddd7ff;
}

.format-card--csv,
.format-card--db {
  color: #315fc8;
  background: #f0f4ff;
  border-color: #cedaff;
}

.format-card--json,
.format-card--custom {
  color: #9a5b16;
  background: #fff8ed;
  border-color: #f4dfbe;
}

.format-code {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 5px 9px;
  color: currentColor;
  background: rgba(255, 255, 255, .67);
  border: 1px solid currentColor;
  border-radius: 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .74rem;
  font-weight: 900;
}

.format-card h3 {
  color: var(--ink);
}

.format-card p {
  position: relative;
  z-index: 1;
  color: #647087;
  font-size: .84rem;
  line-height: 1.55;
}

.section--navy {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 40%, rgba(109, 92, 232, .18), transparent 29%),
    linear-gradient(135deg, #070d20, #0a1331 60%, #0d1738);
}

.section--navy::before {
  position: absolute;
  inset: 0;
  opacity: .22;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.section--navy .wrap {
  position: relative;
  z-index: 1;
}

.section-heading--inverse h2 {
  color: #fff;
}

.section-heading--inverse .section-kicker {
  justify-content: center;
  color: #a99cff;
}

.section-heading--inverse > p:not(.section-kicker) {
  color: #b7c1d8;
}

.connections {
  display: grid;
  grid-template-columns: 1fr 270px 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
  max-width: 1040px;
  margin: 0 auto;
}

.connection-group {
  display: grid;
  gap: 12px;
}

.connection-label {
  margin-bottom: 3px;
  color: #8f9ab2;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.connection-chip {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 68px;
  padding: 13px 16px;
  color: #dbe1ef;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  font-weight: 750;
}

.connection-chip span {
  display: grid;
  place-items: center;
  flex: 0 0 37px;
  width: 37px;
  height: 37px;
  color: #a99cff;
  background: rgba(109, 92, 232, .14);
  border-radius: 10px;
  font-size: .67rem;
  font-weight: 900;
}

.connection-core {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 50px 25px;
  text-align: center;
  border: 1px solid rgba(127, 109, 241, .45);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(109, 92, 232, .2);
}

.core-orbit {
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(79, 124, 240, .28);
  border-radius: 50%;
}

.core-orbit--two {
  inset: 33px;
  border-color: rgba(169, 156, 255, .23);
}

.core-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary-dark), var(--primary), #4f7cf0);
  border-radius: 20px;
  box-shadow: 0 17px 37px rgba(109, 92, 232, .33);
  font-weight: 900;
}

.connection-core strong {
  font-size: 1.55rem;
}

.connection-core small {
  max-width: 150px;
  color: #9ca9c2;
  font-size: .7rem;
  line-height: 1.4;
}

.integration-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 980px;
  margin: 58px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.integration-list span {
  padding: 8px 13px;
  color: #cbd4e6;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 750;
}

.process-section {
  background: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.process-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
}

.process-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.process-list h3 {
  font-size: 1.05rem;
}

.process-list p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.reference-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(79, 124, 240, .09), transparent 26%),
    linear-gradient(180deg, #f5f7fc, #fff);
}

.reference-intro {
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: end;
  gap: 50px;
  margin-bottom: 45px;
}

.reference-intro .section-heading {
  margin-bottom: 0;
}

.reference-stat {
  padding: 25px 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), #7968ed);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(109, 92, 232, .22);
}

.reference-stat strong,
.reference-stat span {
  display: block;
}

.reference-stat strong {
  margin-bottom: 7px;
  font-size: 1rem;
  letter-spacing: .03em;
}

.reference-stat span {
  color: rgba(255, 255, 255, .78);
  font-size: .77rem;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.reference-grid span {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px;
  color: #36425a;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  font-weight: 850;
  text-align: center;
}

.reference-grid span:nth-child(5n) {
  border-right: 0;
}

.reference-grid span:nth-last-child(-n+5) {
  border-bottom: 0;
}

.reference-note {
  margin-top: 25px;
  padding: 27px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.reference-note h3 {
  margin-bottom: 9px;
  font-size: 1rem;
}

.reference-note p {
  color: var(--muted);
  font-size: .88rem;
}

.reference-note .fine-print {
  margin-top: 12px;
  padding-top: 12px;
  color: #8490a3;
  border-top: 1px solid var(--line);
  font-size: .72rem;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .67fr) minmax(0, 1.33fr);
  align-items: start;
  gap: clamp(50px, 7vw, 100px);
}

.faq-intro {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.faq-intro .button {
  margin-top: 13px;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-list details[open] {
  border-color: #c9c2fa;
  box-shadow: 0 12px 27px rgba(57, 44, 156, .08);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 23px;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  place-items: center;
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 8px;
  font-size: 1.15rem;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 23px 22px;
  color: var(--muted);
  font-size: .92rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(7, 12, 31, .95), rgba(18, 26, 65, .9)),
    var(--navy);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  opacity: .18;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
}

.contact-glow {
  position: absolute;
  top: -230px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109, 92, 232, .32), transparent 66%);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.contact-copy .section-kicker {
  color: #a99cff;
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 690px;
  margin-bottom: 30px;
  color: #b9c4da;
  font-size: 1.06rem;
}

.brief-card {
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
}

.brief-label {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 5px 9px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 7px;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brief-card h3 {
  font-size: 1.38rem;
}

.brief-card ol {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.brief-card li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.brief-card li > span {
  color: var(--primary);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.brief-card li p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.brief-card li strong {
  font-size: .84rem;
}

.brief-card li small {
  margin-top: 2px;
  color: #7b879a;
  font-size: .7rem;
}

.site-footer {
  color: #c6cfdf;
  background: #060b1b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .7fr 1fr 1fr;
  gap: 50px;
  padding-block: 65px 52px;
}

.brand--footer {
  color: #fff;
}

.brand--footer .brand-copy small {
  color: #8995ad;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 21px;
  color: #8995aa;
  font-size: .86rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column a {
  color: #aab5c9;
  font-size: .82rem;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.footer-contact > a {
  color: #fff;
  font-weight: 800;
}

.footer-contact p {
  margin-top: 8px;
  color: #7f8ba2;
  font-size: .75rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  color: #758198;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .74rem;
}

.footer-bottom a {
  color: #a99cff;
  font-weight: 800;
  text-decoration: none;
}

.mobile-contact {
  display: none;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    max-height: calc(100vh - 74px);
    padding: 20px 24px 28px;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(15, 25, 55, .14);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 15px;
    font-size: 1rem;
  }

  .main-nav .nav-cta {
    margin: 8px 0 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 76px 92px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(720px, calc(100% - 30px));
    margin-inline: auto;
  }

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

  .path-card:nth-child(2) {
    border-right: 0;
  }

  .path-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .formats-layout {
    grid-template-columns: 1fr;
  }

  .formats-layout .section-heading {
    max-width: 780px;
  }

  .connections {
    grid-template-columns: 1fr 230px 1fr;
    gap: 32px;
  }

  .connection-core {
    min-height: 230px;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 0;
  }

  .process-list li:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 32px));
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .brand-copy small {
    display: none;
  }

  .hero-layout {
    padding-top: 61px;
  }

  .hero-visual {
    width: 100%;
    padding-block: 42px;
  }

  .pipeline-body {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 30px 18px;
  }

  .system-column {
    grid-template-columns: repeat(3, 1fr);
  }

  .column-label {
    grid-column: 1 / -1;
  }

  .engine-column {
    padding: 18px 0;
  }

  .flow-line {
    display: none;
  }

  .visual-badge--top {
    right: 8px;
  }

  .visual-badge--bottom {
    left: 8px;
  }

  .section {
    padding: 82px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .format-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .connections {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .connection-core {
    width: 240px;
    min-height: 240px;
    margin-inline: auto;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(4),
  .process-list li:last-child {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 22px 0;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .process-list li:first-child {
    border-top: 0;
  }

  .process-number {
    margin: 3px 0 0;
  }

  .reference-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .reference-grid span,
  .reference-grid span:nth-child(5n),
  .reference-grid span:nth-last-child(-n+5) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .reference-grid span:nth-child(2n) {
    border-right: 0;
  }

  .reference-grid span:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 70px;
  }

  .wrap {
    width: min(var(--wrap), calc(100% - 28px));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
    border-radius: 12px;
  }

  .brand-mark svg {
    width: 27px;
    height: 27px;
  }

  .brand-copy strong {
    font-size: 1.2rem;
  }

  .menu-toggle__label {
    display: none;
  }

  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

  .main-nav {
    max-height: calc(100vh - 68px);
    padding-inline: 14px;
  }

  .hero-layout {
    gap: 48px;
    padding-block: 53px 70px;
  }

  h1 {
    font-size: clamp(2.35rem, 11.7vw, 3.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 11px;
  }

  .pipeline-head,
  .pipeline-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .system-column {
    grid-template-columns: 1fr;
  }

  .column-label {
    grid-column: auto;
  }

  .system-node {
    min-height: 60px;
  }

  .visual-badge {
    min-width: 205px;
  }

  .visual-badge--top {
    right: -3px;
  }

  .visual-badge--bottom {
    left: -3px;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-card,
  .path-card:nth-child(2),
  .path-card:nth-child(-n+2) {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .path-card:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .service-card {
    padding: 25px;
  }

  .format-board {
    grid-template-columns: 1fr;
  }

  .format-card {
    min-height: 180px;
  }

  .reference-grid {
    grid-template-columns: 1fr;
  }

  .reference-grid span,
  .reference-grid span:nth-child(2n),
  .reference-grid span:nth-last-child(-n+2) {
    min-height: 75px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reference-grid span:last-child {
    border-bottom: 0;
  }

  .reference-note {
    padding: 23px;
  }

  .faq-list summary {
    padding: 18px;
    font-size: .91rem;
  }

  .faq-list details p {
    padding: 0 18px 18px;
    font-size: .86rem;
  }

  .contact-section {
    padding: 72px 0;
  }

  .brief-card {
    padding: 23px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-block: 52px 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-block: 14px;
  }

  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 8px max(10px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    background: rgba(8, 14, 34, .96);
    border-top: 1px solid rgba(255, 255, 255, .13);
    backdrop-filter: blur(14px);
  }

  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    gap: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-contact a:first-child {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .ns-network-bar,
  .site-header,
  .mobile-contact,
  .hero-actions,
  .contact-actions {
    display: none !important;
  }

  .hero,
  .section--navy,
  .contact-section,
  .site-footer {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 40px 0;
  }
}
