:root {
  --ink: #111520;
  --ink-2: #242a35;
  --muted: #687181;
  --line: #dfe4ea;
  --line-strong: #cbd2dc;
  --paper: #f7f9fb;
  --white: #fff;
  --card: #fbfcfd;
  --purple: #2e0a5c;
  --purple-2: #6f55ef;
  --cyan: #17c8da;
  --cyan-deep: #0797b7;
  --blue: #4fa8ed;
  --mint: #35d3a0;
  --max: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased
}

button,
a {
  font: inherit
}

button {
  cursor: pointer
}

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

.site-header {
  height: 102px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  height: 68px
}

.brand img {
  width: 108px;
  height: auto;
  display: block
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #f2f5f8;
  border: 1px solid #e8ecf0;
  border-radius: 999px;
  padding: 5px
}

.nav a {
  color: #5e6775;
  text-decoration: none;
  font-size: 13px;
  padding: 9px 15px;
  border-radius: 999px;
  transition: .2s
}

.nav a:hover,
.nav a.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 5px rgba(21, 31, 45, .08)
}

.nav-cta {
  justify-self: end;
  border: 0;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  padding: 12px 18px 12px 20px;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 7px 22px rgba(46, 10, 92, .18);
  transition: .2s
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #3d1176
}

.nav-cta span {
  margin-left: 14px;
  font-size: 16px
}

.mobile-contact {
  display: none
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eefaff 0%, #f4f2ff 48%, #ffffff 100%);
  border-bottom: 1px solid #d8e6ee
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(45, 66, 91, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 66, 91, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .78), transparent 86%)
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none
}

.orb-a {
  width: 560px;
  height: 560px;
  right: -170px;
  top: -220px;
  background: radial-gradient(circle, rgba(111, 85, 239, .14), rgba(79, 168, 237, .07) 44%, transparent 72%)
}

.orb-b {
  width: 580px;
  height: 420px;
  left: 28%;
  top: -270px;
  background: radial-gradient(circle, rgba(23, 200, 218, .11), transparent 70%)
}

.hero-inner {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.17fr .83fr;
  gap: 70px;
  align-items: center;
  padding: 76px 0 72px;
  position: relative;
  z-index: 1
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .76);
  padding: 8px 12px;
  border-radius: 999px;
  color: #687383;
  font: 650 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .2em
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(53, 211, 160, .12)
}

.hero-copy h1 {
  font-size: clamp(45px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.048em;
  margin: 25px 0 22px;
  font-weight: 760;
  max-width: 760px
}

.hero-copy h1 span {
  background: linear-gradient(90deg, var(--cyan-deep), var(--blue) 52%, var(--purple-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-copy>p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 650px;
  margin: 0
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 31px
}

.primary-button,
.secondary-button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 720;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-content: center
}

.primary-button {
  border: 0;
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 26px rgba(46, 10, 92, .18)
}

.primary-button span {
  font-size: 16px;
  margin-left: 18px
}

.secondary-button {
  border: 1px solid var(--line-strong);
  color: #333b47;
  background: rgba(255, 255, 255, .75)
}

.primary-button:hover {
  background: #3d1176;
  transform: translateY(-1px)
}

.secondary-button:hover {
  border-color: #aeb8c5;
  background: #fff
}

.hero-facts {
  display: flex;
  gap: 0;
  margin-top: 38px;
  color: #7b8390;
  font-size: 11px
}

.hero-facts span {
  padding: 0 19px;
  border-left: 1px solid var(--line)
}

.hero-facts span:first-child {
  padding-left: 0;
  border-left: 0
}

.hero-facts b {
  color: #222934;
  font-weight: 750;
  margin-right: 5px
}

.hero-panel {
  height: 430px;
  border: 1px solid #dce2e9;
  border-radius: 22px;
  background: rgba(250, 252, 254, .84);
  box-shadow: 0 25px 70px rgba(40, 52, 68, .11), inset 0 1px 0 #fff;
  overflow: hidden;
  position: relative
}

.hero-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 200, 218, .045), transparent 42%, rgba(111, 85, 239, .055));
  pointer-events: none
}

.panel-top,
.panel-bottom {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #707a89;
  font: 650 9px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
  position: relative;
  z-index: 3
}

.panel-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #4e8c78
}

.panel-live i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%
}

.panel-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  font-size: 8px
}

.accent-text {
  color: var(--purple-2)
}

.system-map {
  height: 330px;
  position: relative;
  overflow: hidden
}

.system-map:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#bfc8d3 .75px, transparent .75px);
  background-size: 17px 17px;
  opacity: .27
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0
}

.map-lines path,
.map-lines circle {
  fill: none;
  stroke: #cad2dc;
  stroke-width: 1
}

.map-lines circle {
  stroke-dasharray: 4 7
}

.system-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 116px;
  height: 116px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #cfd6df;
  box-shadow: 0 14px 35px rgba(47, 60, 78, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px
}

.core-logo {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--cyan), var(--purple-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 850;
  letter-spacing: -.04em
}

.system-core>span {
  font: 700 8px ui-monospace, monospace;
  letter-spacing: .14em;
  color: #6c7582
}

.node {
  width: 118px;
  min-height: 64px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #d8dfe7;
  border-radius: 13px;
  position: absolute;
  z-index: 2;
  padding: 10px 11px 10px 42px;
  box-shadow: 0 8px 20px rgba(48, 59, 74, .055)
}

.node b {
  display: block;
  font-size: 11px;
  margin-bottom: 3px
}

.node span {
  font: 8px ui-monospace, monospace;
  color: #8b93a0
}

.node-ui {
  left: 26px;
  top: 38px
}

.node-api {
  right: 26px;
  top: 38px
}

.node-data {
  left: 26px;
  bottom: 36px
}

.node-ops {
  right: 26px;
  bottom: 36px
}

.node-icon {
  position: absolute;
  left: 11px;
  top: 17px;
  width: 20px;
  height: 20px
}

.icon-window:before {
  content: "";
  position: absolute;
  inset: 2px 0;
  border: 1.5px solid var(--cyan-deep);
  border-radius: 2px
}

.icon-window:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  border-top: 1.5px solid var(--cyan-deep)
}

.icon-api:before,
.icon-api:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--purple-2);
  border-radius: 2px
}

.icon-api:before {
  left: 0;
  top: 1px
}

.icon-api:after {
  right: 0;
  bottom: 1px
}

.icon-api {
  background: linear-gradient(135deg, transparent 47%, var(--purple-2) 48% 52%, transparent 53%)
}

.icon-db:before {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 2px;
  height: 6px;
  border: 1.5px solid var(--blue);
  border-radius: 50%
}

.icon-db:after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 5px;
  height: 12px;
  border-left: 1.5px solid var(--blue);
  border-right: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  border-radius: 0 0 50% 50%
}

.icon-server {
  border: 1.5px solid #65808b;
  border-radius: 2px
}

.icon-server:before,
.icon-server:after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  height: 1.5px;
  background: #65808b
}

.icon-server:before {
  top: 6px
}

.icon-server:after {
  bottom: 6px
}

.clients-strip {
  padding: 44px 0 52px;
  background: linear-gradient(90deg, #f5f0ff 0%, #eef8ff 100%);
  border-bottom: 1px solid #d9deee
}

.strip-label {
  text-align: center;
  color: #8a93a0;
  font: 700 9px ui-monospace, monospace;
  letter-spacing: .28em;
  margin-bottom: 29px
}

.strip-label:after {
  content: "";
  display: block;
  width: 94px;
  height: 3px;
  margin: 15px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple-2))
}

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

.client {
  height: 96px;
  border: 1px solid rgba(111, 85, 239, .16);
  background: rgba(255, 255, 255, .78);
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #747d8c;
  font-weight: 650;
  position: relative;
  transition: .2s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9)
}

.client:hover {
  border-color: #c4ccd6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40, 54, 72, .05)
}

.client small {
  position: absolute;
  top: 10px;
  right: 12px;
  font: 8px ui-monospace, monospace;
  color: #b2bac5
}

.capabilities {
  padding: 110px 0 120px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%)
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .68fr;
  gap: 88px;
  align-items: end;
  margin-bottom: 48px
}

.kicker {
  font: 750 10px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .2em;
  color: var(--cyan-deep);
  margin-bottom: 15px
}

.section-heading h2,
.company h2,
.cta-card h2 {
  font-size: clamp(30px, 3.5vw, 47px);
  line-height: 1.08;
  letter-spacing: -.036em;
  margin: 0;
  font-weight: 720
}

.section-heading>p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px
}

.cap-card {
  min-height: 275px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  padding: 25px 26px;
  position: relative;
  overflow: hidden;
  transition: .25s;
  box-shadow: 0 8px 24px rgba(48, 63, 84, .035)
}

.cap-card:hover {
  transform: translateY(-2px);
  border-color: #c6cfda;
  box-shadow: 0 14px 38px rgba(39, 53, 70, .07)
}

.cap-card:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -90px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(23, 200, 218, .08), transparent 70%);
  pointer-events: none
}

.cap-wide {
  grid-column: 1/-1;
  min-height: 250px
}

.cap-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #808997;
  font: 700 9px ui-monospace, monospace;
  letter-spacing: .17em
}

.cap-meta>i {
  display: block;
  position: relative;
  width: 18px;
  height: 14px
}

.cap-meta>i:before,
.cap-meta>i:after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 2px
}

.cap-meta>i:before {
  width: 14px;
  height: 3px;
  right: 0;
  top: 2px;
  background: var(--purple-2)
}

.cap-meta>i:after {
  width: 10px;
  height: 3px;
  right: 5px;
  bottom: 2px;
  background: var(--cyan)
}

.cap-symbol {
  display: flex;
  gap: 4px
}

.cap-symbol span {
  display: block;
  width: 20px;
  height: 4px
}

.cap-symbol span:first-child {
  background: var(--cyan)
}

.cap-symbol span:last-child {
  background: var(--purple-2)
}

.cap-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 25px;
  align-items: center;
  margin-top: 42px
}

.cap-icon-large,
.cap-icon-small {
  display: grid;
  place-items: center;
  border: 1px solid #d6dde5;
  background: #fff;
  box-shadow: 4px 4px 0 #eef2f6
}

.cap-icon-large {
  width: 76px;
  height: 76px;
  border-radius: 18px
}

.cap-icon-small {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin: 40px 0 25px
}

.cap-icon-large svg,
.cap-icon-small svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--cyan-deep);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.cap-icon-small svg {
  width: 29px;
  height: 29px;
  stroke: var(--purple-2)
}

.cap-card:nth-child(3) .cap-icon-small svg {
  stroke: var(--blue)
}

.cap-card:nth-child(4) .cap-icon-small svg {
  stroke: #5f7884
}

.cap-card h3 {
  font-size: 20px;
  letter-spacing: -.02em;
  margin: 0 0 10px
}

.cap-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  max-width: 770px
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  align-items: center
}

.tags span {
  position: relative;
  font: 700 8px ui-monospace, monospace;
  letter-spacing: .11em;
  color: #7a8491;
  padding: 0 0 0 12px;
  background: transparent;
  border: 0;
  border-radius: 0;
  line-height: 1.4
}

.tags span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1.5px solid #b8c0cb;
  transform: translateY(-50%) rotate(45deg)
}

.cap-wide .tags {
  padding-left: 117px
}

.company {
  padding: 110px 0;
  background: linear-gradient(120deg, #edf9fb 0%, #f5f2ff 60%, #fbfbfd 100%);
  border-top: 1px solid #d8e3e8;
  border-bottom: 1px solid #d8e3e8;
  position: relative;
  overflow: hidden
}

.company-grid {
  display: grid;
  grid-template-columns: 100px 1.15fr .65fr;
  gap: 54px
}

.company-index {
  font: 700 10px ui-monospace, monospace;
  letter-spacing: .17em;
  color: #98a1ad;
  padding-top: 6px
}

.company-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 680px;
  margin: 22px 0 0
}

.inline-link {
  border: 0;
  border-bottom: 1px solid #afb9c5;
  background: none;
  padding: 0 0 6px;
  margin-top: 27px;
  font-weight: 700;
  font-size: 13px;
  color: #27313d
}

.inline-link span {
  margin-left: 9px;
  color: var(--cyan-deep)
}

.company-spec {
  border-left: 1px solid var(--line-strong);
  padding-left: 34px;
  display: grid;
  gap: 25px;
  align-content: start
}

.company-spec div {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line)
}

.company-spec span {
  display: block;
  color: #969fab;
  font: 700 8px ui-monospace, monospace;
  letter-spacing: .18em;
  margin-bottom: 7px
}

.company-spec b {
  font-size: 13px;
  font-weight: 650;
  color: #303844
}

.cta-section {
  padding: 80px 0 100px;
  background: #eef4f8
}

.cta-card {
  min-height: 280px;
  border-radius: 22px;
  background: #121825;
  color: #fff;
  padding: 55px 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(20, 27, 39, .13)
}

.cta-card:before {
  content: "";
  position: absolute;
  right: -80px;
  top: -150px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 200, 218, .18), rgba(111, 85, 239, .08) 45%, transparent 70%)
}

.cta-grid {
  opacity: .4;
  mask-image: linear-gradient(90deg, transparent, black)
}

.kicker.light {
  color: #59dce9
}

.cta-card h2 {
  font-size: clamp(32px, 4vw, 52px);
  position: relative
}

.cta-card p {
  max-width: 620px;
  color: #aeb8c6;
  line-height: 1.7;
  font-size: 14px;
  margin: 17px 0 0;
  position: relative
}

.cta-button {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: var(--cyan);
  color: #071f25;
  font-weight: 800;
  padding: 15px 20px 15px 22px;
  min-width: 175px
}

.cta-button span {
  float: right;
  margin-left: 22px
}

.cta-button:hover {
  background: #2ad8e8;
  transform: translateY(-1px)
}

.footer {
  background: #f1f3f7;
  border-top: 1px solid var(--line);
  padding: 55px 0 22px
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr .8fr;
  gap: 48px
}

.footer-brand img {
  width: 100px;
  display: block;
  margin-bottom: 17px
}

.footer-brand span,
.footer-label {
  font: 700 8px ui-monospace, monospace;
  letter-spacing: .16em;
  color: #959eaa
}

.footer-label {
  display: block;
  margin-bottom: 12px
}

.footer p,
.footer-email {
  font-size: 11px;
  line-height: 1.75;
  color: #606a77;
  margin: 0;
  border: 0;
  background: none;
  padding: 0;
  text-align: left
}

.footer-email {
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 4px
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 43px;
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  color: #9aa2ad;
  font: 700 8px ui-monospace, monospace;
  letter-spacing: .11em
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 50
}

.modal-shell[hidden],
.email-popover-overlay[hidden] {
  display: none
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 28, .58);
  backdrop-filter: blur(8px)
}

.modal {
  position: absolute;
  right: 22px;
  top: 22px;
  bottom: 22px;
  width: min(560px, calc(100vw - 44px));
  background: #fff;
  padding: 54px 48px;
  overflow: auto;
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
  border: 1px solid #e1e6eb
}

.modal:before {
  content: "";
  position: absolute;
  left: 0;
  top: 70px;
  height: 74px;
  width: 4px;
  background: linear-gradient(var(--cyan), var(--purple-2))
}

.modal-close {
  position: absolute;
  right: 21px;
  top: 15px;
  border: 0;
  background: none;
  font-size: 28px;
  font-weight: 200;
  color: #77808c
}

.modal-kicker {
  font: 750 9px ui-monospace, monospace;
  letter-spacing: .17em;
  color: var(--cyan-deep);
  margin-bottom: 25px
}

.modal h2 {
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: -.035em;
  margin: 0
}

.modal-intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 17px 0 29px
}

.contact-form {
  display: grid;
  gap: 17px
}

.field label {
  display: block;
  font: 750 9px ui-monospace, monospace;
  letter-spacing: .12em;
  margin-bottom: 7px;
  color: #505966
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d8dee6;
  background: #fafbfd;
  padding: 13px 14px;
  font: 14px inherit;
  outline: none;
  border-radius: 9px
}

.field textarea {
  min-height: 130px;
  resize: vertical
}

.field input:focus,
.field textarea:focus {
  border-color: var(--cyan-deep);
  box-shadow: 0 0 0 3px rgba(23, 200, 218, .1);
  background: #fff
}

.form-submit {
  border: 0;
  background: #17202d;
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  border-radius: 999px
}

.form-submit:hover {
  background: #0f151e
}

.form-status {
  font-size: 12px;
  min-height: 18px;
  color: #687381
}

.hp {
  position: absolute !important;
  left: -9999px !important
}

.modal-email-link {
  margin-top: 20px;
  background: none;
  border: 0;
  color: #68727f;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  font-size: 12px
}

.email-popover-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 24, 33, .22);
  backdrop-filter: blur(4px);
  animation: emailFade .16s ease
}

.email-popover {
  width: min(430px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid #d8e0e8;
  border-radius: 17px;
  box-shadow: 0 24px 75px rgba(31, 43, 58, .22);
  padding: 24px 24px 22px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  animation: emailRise .2s ease
}

.email-popover-copy {
  min-width: 0
}

.email-popover span {
  font: 750 9px ui-monospace, monospace;
  letter-spacing: .16em;
  color: #929ba7;
  display: block;
  margin-bottom: 7px
}

.email-popover strong {
  font-size: 16px;
  letter-spacing: -.01em
}

.email-popover button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: #edf2f6;
  color: #323a45;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700
}

.email-popover button:hover {
  background: #e3e9ef
}

@keyframes emailFade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes emailRise {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.985)
  }

  to {
    opacity: 1;
    transform: none
  }
}

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

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

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .18s
}

@media(max-width:900px) {
  .header-inner {
    grid-template-columns: 1fr auto
  }

  .nav {
    display: none
  }

  .nav-cta {
    display: none
  }

  .mobile-contact {
    display: block;
    justify-self: end;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    font-size: 18px
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 62px
  }

  .hero-copy {
    max-width: 760px
  }

  .hero-panel {
    max-width: 620px;
    width: 100%;
    justify-self: center
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px
  }

  .company-grid {
    grid-template-columns: 70px 1fr
  }

  .company-spec {
    grid-column: 2
  }

  .footer-main {
    grid-template-columns: 1fr 1fr
  }

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

@media(max-width:650px) {
  .shell {
    width: min(100% - 30px, var(--max))
  }

  .site-header {
    height: 94px
  }

  .brand {
    height: 62px
  }

  .brand img {
    width: 96px
  }

  .hero-inner {
    min-height: auto;
    padding: 55px 0 58px
  }

  .hero-copy h1 {
    font-size: 42px
  }

  .hero-copy>p {
    font-size: 15px
  }

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

  .primary-button,
  .secondary-button {
    width: 100%
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center
  }

  .hero-facts span {
    padding: 0 7px
  }

  .hero-facts b {
    display: block;
    margin: 0 0 3px
  }

  .hero-panel {
    height: 390px
  }

  .system-map {
    height: 290px
  }

  .node {
    width: 102px;
    padding-left: 34px
  }

  .node-icon {
    left: 8px
  }

  .node-ui,
  .node-data {
    left: 14px
  }

  .node-api,
  .node-ops {
    right: 14px
  }

  .system-core {
    width: 98px;
    height: 98px
  }

  .panel-bottom span:nth-child(2) {
    display: none
  }

  .clients-strip {
    padding: 38px 0
  }

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

  .client {
    height: 82px
  }

  .capabilities,
  .company {
    padding: 80px 0
  }

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

  .cap-wide {
    grid-column: auto
  }

  .cap-body {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px
  }

  .cap-wide .tags {
    padding-left: 0
  }

  .cap-card {
    min-height: 250px
  }

  .section-heading {
    margin-bottom: 34px
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .company-index {
    display: none
  }

  .company-spec {
    grid-column: auto;
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    padding: 28px 0 0;
    grid-template-columns: 1fr 1fr
  }

  .cta-section {
    padding: 55px 0 70px
  }

  .cta-card {
    padding: 42px 28px;
    display: block
  }

  .cta-button {
    margin-top: 30px;
    width: 100%
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .footer-brand {
    grid-column: auto
  }

  .footer-bottom {
    gap: 20px;
    flex-direction: column
  }

  .modal {
    inset: 10px;
    width: auto;
    padding: 48px 24px;
    border-radius: 14px
  }

  .modal h2 {
    font-size: 34px
  }

  .email-popover {
    width: min(430px, calc(100vw - 30px));
    padding: 21px 20px;
    gap: 18px
  }

  .map-lines {
    opacity: .75
  }
}

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

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

  .primary-button:hover,
  .cap-card:hover,
  .client:hover,
  .cta-button:hover {
    transform: none
  }
}

/* V9: stronger section color rhythm while retaining the V7 design system */
.cap-card:nth-child(2),
.cap-card:nth-child(5) {
  background: linear-gradient(145deg, #f3fbff, #ffffff 72%);
  border-color: #d4e8f3
}

.cap-card:nth-child(3) {
  background: linear-gradient(145deg, #f7f3ff, #ffffff 72%);
  border-color: #ded6f0
}

.cap-card:nth-child(4) {
  background: linear-gradient(145deg, #f1fbf8, #ffffff 72%);
  border-color: #d4ebe4
}

.company:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 85, 239, .12), rgba(79, 168, 237, .06) 45%, transparent 72%);
  pointer-events: none
}

.company:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -170px;
  bottom: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 200, 218, .11), transparent 72%);
  pointer-events: none
}

.company .shell {
  position: relative;
  z-index: 1
}

/* V11: six balanced capability cards */
.cap-grid .cap-card {
  min-height: 310px
}

.cap-grid .cap-icon-small {
  margin: 38px 0 24px
}

@media(max-width:650px) {
  .cap-grid {
    grid-template-columns: 1fr
  }

  .cap-grid .cap-card {
    min-height: 250px
  }
}

/* V13 contact detail reveal */
.contact-details-popover {
  position: relative;
  display: block;
  padding: 28px 28px 24px;
  width: min(520px, calc(100vw - 40px))
}

.contact-popover-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: none;
  font-size: 24px;
  line-height: 1;
  color: #7f8792;
  cursor: pointer
}

.contact-popover-heading {
  font: 750 9px ui-monospace, monospace;
  letter-spacing: .17em;
  color: var(--cyan-deep);
  margin: 0 36px 20px 0
}

.contact-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid #e5e9ee
}

.contact-detail-row:first-of-type {
  border-top: 0
}

.copy-contact {
  position: relative;
  min-width: 112px;
  min-height: 38px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: #edf2f6;
  color: #323a45;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, transform .16s ease
}

.copy-contact span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  line-height: 1
}

.copy-contact:hover {
  background: #e3e9ef
}

.copy-contact:active {
  transform: scale(.98)
}

.copy-contact .copy-check {
  display: inline-block;
  opacity: 0;
  transform: scale(.65);
  width: 0;
  overflow: hidden;
  transition: opacity .16s ease, transform .16s ease, width .16s ease
}

.copy-contact.copied {
  background: #2e0a5c;
  color: #fff
}

.copy-contact.copied .copy-check {
  opacity: 1;
  transform: scale(1);
  width: 12px
}

.footer-email {
  display: block;
  cursor: pointer
}

@media(max-width:650px) {
  .contact-detail-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px
  }

  .copy-contact {
    min-width: 120px
  }

  .contact-details-popover {
    padding: 25px 21px 20px
  }
}


/* V16 footer — rebuilt directly from V14 */
.footer-v16 {
  background:
    linear-gradient(180deg, rgba(80, 183, 236, .045), rgba(46, 10, 92, .025)),
    #f7f8fb;
  border-top: 1px solid var(--line);
  padding: 0;
}

.footer-v16-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) minmax(250px, .95fr) minmax(220px, .8fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: start;
  padding-top: clamp(46px, 6vw, 72px);
  padding-bottom: clamp(38px, 5vw, 60px);
}

.footer-v16-brand {
  min-width: 0;
}

.footer-v16-logo {
  display: inline-block;
}

.footer-v16-logo img {
  display: block;
  width: 108px;
  height: auto;
  margin: 0 0 18px;
}

.footer-v16-company {
  margin: 0 0 9px;
  color: #202634;
  font: 700 9px ui-monospace, monospace;
  letter-spacing: .15em;
}

.footer-v16-address {
  margin: 0;
  max-width: 300px;
  color: #687281;
  font-size: 11px;
  line-height: 1.8;
}

.footer-v16-nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 15px 34px;
  padding-top: 4px;
}

.footer-v16-nav a {
  position: relative;
  color: #3f4856;
  font-size: 11px;
  line-height: 1.4;
  text-decoration: none;
  width: fit-content;
  padding: 3px 0 5px;
}

.footer-v16-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 14px;
  height: 2px;
  background: #50b7ec;
  transition: width .18s ease, background-color .18s ease;
}

.footer-v16-nav a:hover,
.footer-v16-nav a:focus-visible {
  color: #2e0a5c;
}

.footer-v16-nav a:hover::before,
.footer-v16-nav a:focus-visible::before {
  width: 100%;
  background: #2e0a5c;
}

.footer-v16-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 1px;
}

.footer-v16-reveal,
.footer-v16-project {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-v16-reveal {
  padding: 2px 0;
  background: transparent;
  color: #606a77;
  font-size: 11px;
  line-height: 1.55;
  text-decoration: underline;
  text-decoration-color: rgba(46, 10, 92, .26);
  text-underline-offset: 3px;
}

.footer-v16-reveal:hover,
.footer-v16-reveal:focus-visible {
  color: #2e0a5c;
  text-decoration-color: #2e0a5c;
}

.footer-v16-project {
  position: relative;
  margin-top: 9px;
  padding: 10px 34px 10px 14px;
  border: 1px solid rgba(46, 10, 92, .2);
  border-left: 3px solid #2e0a5c;
  background: #fff;
  color: #2e0a5c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 5px 5px 0 rgba(80, 183, 236, .18);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.footer-v16-project::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #50b7ec;
  border-right: 2px solid #50b7ec;
  transform: translateY(-50%) rotate(45deg);
}

.footer-v16-project:hover,
.footer-v16-project:focus-visible {
  transform: translate(-2px, -2px);
  border-color: rgba(46, 10, 92, .42);
  box-shadow: 7px 7px 0 rgba(80, 183, 236, .24);
}

.footer-v16-bottom {
  min-height: 56px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #959eaa;
  font: 700 8px ui-monospace, monospace;
  letter-spacing: .11em;
}

@media (max-width: 780px) {
  .footer-v16-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }

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

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

@media (max-width: 520px) {
  .footer-v16-main {
    grid-template-columns: 1fr;
  }

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

  .footer-v16-nav {
    grid-template-columns: repeat(2, max-content);
  }

  .footer-v16-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}


/* manual additions */
div.client img {
  width: 200px !important;
}