@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-800.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #070a0b;
  --surface: #0d1112;
  --surface-2: #121718;
  --surface-3: #171d1e;
  --text: #f3f5ef;
  --muted: #9aa4a1;
  --muted-2: #6f7976;
  --line: rgba(244, 248, 238, .12);
  --line-bright: rgba(244, 248, 238, .25);
  --accent: #73e7f4;
  --accent-ink: #061316;
  --cyan: #5c8dff;
  --cyber-opacity: .46;
  --cyber-saturate: .82;
  --cyber-contrast: 1.07;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 9%, rgba(92, 141, 255, .07), transparent 28rem),
    radial-gradient(circle at 10% 38%, rgba(115, 231, 244, .04), transparent 34rem),
    var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.site-cyber-bg {
  position: fixed;
  inset: -30px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  --cyber-scroll: 0px;
  transform: translate3d(0, var(--cyber-scroll), 0);
  will-change: transform;
}

.site-cyber-bg-image {
  position: absolute;
  inset: -8%;
  background: url("assets/site-terminal-background-1536.webp") center / cover no-repeat;
  filter: saturate(var(--cyber-saturate)) contrast(var(--cyber-contrast));
  opacity: var(--cyber-opacity);
  transform: scale(1.06);
  transform-origin: center;
  animation: cyberBackdropDrift 20s ease-in-out infinite alternate;
  transition: opacity .8s ease, filter .8s ease;
  will-change: transform;
}

@keyframes cyberBackdropDrift {
  0% { transform: scale(1.06) translate3d(-2.4%, -1.2%, 0); }
  50% { transform: scale(1.12) translate3d(1.4%, 1%, 0); }
  100% { transform: scale(1.08) translate3d(2.7%, -.8%, 0); }
}

.site-cyber-bg::after {
  position: absolute;
  inset: -20%;
  content: "";
  opacity: .13;
  background:
    repeating-linear-gradient(to bottom, transparent 0 12px, rgba(115,231,244,.13) 13px, transparent 14px),
    linear-gradient(90deg, transparent 35%, rgba(92,141,255,.12), transparent 65%);
  animation: cyberScanlines 11s linear infinite;
  mix-blend-mode: screen;
}

@keyframes cyberScanlines {
  from { transform: translate3d(0, -5%, 0); }
  to { transform: translate3d(0, 5%, 0); }
}

.site-cyber-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(7,10,11,.2), rgba(7,10,11,.5) 68%),
    linear-gradient(to bottom, rgba(7,10,11,.2), rgba(7,10,11,.44));
}

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

main {
  display: block;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section {
  position: relative;
  padding: 132px 0;
}

.section-surface {
  border-block: 1px solid var(--line);
  background: rgba(8, 12, 13, .6);
  backdrop-filter: blur(2px);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 10, 11, .84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 88px;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 40px;
}

.desktop-nav a {
  color: #c2cac7;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-large {
  min-height: 58px;
  padding-inline: 28px;
}

.button-accent {
  color: var(--accent-ink);
  background: var(--accent);
}

.button-accent:hover {
  background: #a5f1f8;
}

.button-ghost {
  color: var(--text);
  border-color: var(--line-bright);
  background: rgba(255,255,255,.025);
}

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

.button-arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(7,10,11,.12);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 920px;
  padding-top: 170px;
  padding-bottom: 38px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
  min-height: 650px;
}

.hero-copy {
  grid-column: 2;
  grid-row: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: #b7c0bc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(115,231,244,.1), 0 0 16px rgba(115,231,244,.55);
}

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

h1,
h2 {
  margin-bottom: 0;
  font-family: "Manrope", "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.03;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 4.85vw, 74px);
}

h1 em,
h2 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 34px 0 0;
  color: #adb7b3;
  font-size: 19px;
  line-height: 1.65;
}

.hero-routes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  max-width: 650px;
  margin-top: 30px;
}

.hero-routes button {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px 16px;
  color: #dce5e2;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 15px;
  cursor: pointer;
  background: rgba(9,14,15,.62);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.hero-routes button:hover,
.hero-routes button.is-active {
  border-color: rgba(115,231,244,.32);
  background: rgba(115,231,244,.065);
  transform: translateY(-2px);
}

.hero-routes span {
  font-size: 12px;
  font-weight: 800;
}

.hero-routes small {
  overflow: hidden;
  color: #7f8a86;
  font-size: 9px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-proof {
  display: flex;
  gap: 48px;
  margin-top: 58px;
}

.hero-proof div {
  position: relative;
  display: grid;
  gap: 3px;
}

.hero-proof div:not(:last-child)::after {
  position: absolute;
  top: 3px;
  right: -24px;
  width: 1px;
  height: 42px;
  content: "";
  background: var(--line);
}

.hero-proof strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.hero-proof span {
  color: var(--muted-2);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  perspective: 1200px;
}

.visual-glow {
  position: absolute;
  top: 8%;
  left: 12%;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(92,141,255,.14);
  filter: blur(80px);
}

.hero-system-frame {
  position: relative;
  z-index: 2;
  --parallax-x: 0px;
  --parallax-y: 0px;
  --parallax-scroll: 0px;
  display: flex;
  height: 620px;
  padding: 26px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 45%, rgba(115,231,244,.1), transparent 35%),
    linear-gradient(145deg, rgba(16,27,29,.94), rgba(5,8,9,.98));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.08);
  transform: translate3d(var(--parallax-x), calc(var(--parallax-y) + var(--parallax-scroll)), 0);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  backface-visibility: hidden;
  will-change: transform;
}

.hero-system-frame::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(115,231,244,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115,231,244,.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.hero-system-frame::after {
  position: absolute;
  inset: 14px;
  z-index: -1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(115,231,244,.11);
  border-radius: 28px;
}

.hero-system-head,
.hero-system-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-system-head {
  padding-bottom: 20px;
  color: #8c9995;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-system-head > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-system-head strong {
  color: #dce5e2;
  font-size: 10px;
}

.system-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(115,231,244,.08), 0 0 12px rgba(115,231,244,.7);
  animation: systemPulse 2.2s ease-in-out infinite;
}

@keyframes systemPulse {
  50% { opacity: .45; box-shadow: 0 0 0 7px rgba(115,231,244,.03), 0 0 18px rgba(115,231,244,.42); }
}

.hero-system-stage {
  display: flex;
  min-height: 0;
  padding: 26px 8px 18px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.system-layer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.system-layer > span {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 14px 13px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: rgba(7,11,12,.82);
}

.system-layer > span::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 48px;
  height: 48px;
  content: "";
  border: 1px solid rgba(115,231,244,.09);
  border-radius: 50%;
}

.system-layer i {
  position: absolute;
  top: 8px;
  right: 9px;
  color: #4f5d59;
  font-size: 7px;
  font-style: normal;
}

.system-layer strong {
  color: #dce6e3;
  font-size: 11px;
  letter-spacing: .08em;
}

.system-layer small {
  margin-top: 3px;
  overflow: hidden;
  color: #697571;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.system-bus {
  position: relative;
  display: grid;
  height: 26px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 10%;
}

.system-bus::before {
  position: absolute;
  top: 50%;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(115,231,244,.14), rgba(115,231,244,.55), rgba(115,231,244,.14));
}

.system-bus i {
  position: relative;
}

.system-bus i::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 50%;
  content: "";
  background: rgba(115,231,244,.24);
}

.system-bus-bottom i::before {
  top: 50%;
}

.system-bus i:nth-child(2)::after {
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(115,231,244,.7);
  animation: systemBusSignal 2.6s ease-in-out infinite;
}

@keyframes systemBusSignal {
  0%, 100% { opacity: .25; transform: scale(.75); }
  50% { opacity: 1; transform: scale(1); }
}

.system-core-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(115,231,244,.34);
  border-radius: 18px;
  background:
    linear-gradient(100deg, rgba(115,231,244,.11), transparent 46%),
    rgba(9,17,18,.96);
  box-shadow: inset 0 0 34px rgba(115,231,244,.035), 0 0 36px rgba(73,178,191,.06);
}

.system-core-panel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(115,231,244,.055), transparent);
  animation: systemSweep 5.5s ease-in-out infinite;
}

@keyframes systemSweep {
  0%, 12% { left: -35%; }
  70%, 100% { left: 112%; }
}

.system-core-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-content: center;
  border: 1px solid rgba(115,231,244,.24);
  border-radius: 50%;
  background: #081012;
  box-shadow: inset 0 0 20px rgba(115,231,244,.07);
  text-align: center;
}

.system-core-mark span {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.06em;
}

.system-core-mark span i {
  color: var(--accent);
  font-style: normal;
}

.system-core-mark strong {
  font-size: 7px;
  letter-spacing: .22em;
}

.system-core-copy {
  position: relative;
  z-index: 1;
  display: grid;
}

.system-core-copy small {
  color: var(--accent);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
}

.system-core-copy strong {
  margin-top: 5px;
  font-size: 14px;
}

.system-core-copy span {
  margin-top: 3px;
  color: #71807c;
  font-size: 8px;
}

.system-core-state {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a7efb8;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.system-core-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #87eba0;
  box-shadow: 0 0 8px rgba(135,235,160,.7);
}

.hero-system-console {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 9px;
  align-items: center;
  margin: 0 8px 18px;
  padding: 12px 14px;
  color: #697571;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(3,6,7,.6);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
}

.hero-system-console span i {
  color: var(--accent);
  font-style: normal;
}

.hero-system-console strong {
  color: #a9eeb7;
  font-size: 7px;
  letter-spacing: .08em;
}

.hero-system-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-system-footer > span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-system-footer strong {
  font-size: 11px;
}

.hero-system-footer strong i {
  margin-left: 8px;
  color: var(--accent);
  font-style: normal;
}

.cockpit-card {
  position: relative;
  z-index: 2;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.065), rgba(255,255,255,.018)),
    #0c1011;
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.08);
  transform: rotateY(-5deg) rotateX(2deg);
}

.cockpit-card::after {
  position: absolute;
  top: -30%;
  left: -50%;
  width: 40%;
  height: 170%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: rotate(16deg);
  animation: sheen 8s ease-in-out infinite;
}

@keyframes sheen {
  0%, 55% { transform: translateX(-20%) rotate(16deg); }
  80%, 100% { transform: translateX(430%) rotate(16deg); }
}

.cockpit-head,
.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cockpit-head {
  align-items: flex-start;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.cockpit-head > div {
  display: grid;
  gap: 6px;
}

.micro-label {
  color: var(--muted-2);
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cockpit-head strong {
  font-size: 15px;
}

.live-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: #b8f5fb;
  border: 1px solid rgba(115,231,244,.2);
  border-radius: 999px;
  background: rgba(115,231,244,.06);
  font-size: 10px;
  font-weight: 700;
}

.live-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.metric-row {
  align-items: flex-start;
  padding-top: 30px;
}

.metric-main {
  display: grid;
}

.metric-main > span,
.metric-main small {
  color: var(--muted);
  font-size: 11px;
}

.metric-main strong {
  margin: 4px 0;
  font-family: "Manrope", sans-serif;
  font-size: 54px;
  letter-spacing: -.06em;
}

.metric-main small {
  color: var(--muted-2);
}

.metric-badge {
  padding: 7px 10px;
  color: var(--accent);
  border-radius: 8px;
  background: rgba(115,231,244,.09);
  font-size: 11px;
  font-weight: 700;
}

.chart {
  position: relative;
  height: 186px;
  margin-top: 14px;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 8px 0 24px;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 100% 38px;
}

.chart svg {
  position: absolute;
  inset: 0 0 24px;
  width: 100%;
  height: calc(100% - 24px);
  overflow: visible;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 6px rgba(115,231,244,.45));
}

.chart circle {
  fill: var(--accent);
  stroke: #152000;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.chart-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 9px;
}

.system-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0,0,0,.18);
}

.system-flow span {
  padding: 7px 10px;
  color: #c4ceca;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
}

.system-flow i {
  color: var(--muted-2);
  font-style: normal;
}

.system-flow .flow-active {
  color: var(--accent-ink);
  background: var(--accent);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 50%;
}

.orbit-one {
  top: -180px;
  right: -220px;
  width: 820px;
  height: 820px;
}

.orbit-two {
  top: 10px;
  right: -30px;
  width: 470px;
  height: 470px;
}

.trust-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 30px;
  color: #737c79;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2,
.process-intro h2,
.contact-copy h2 {
  font-size: clamp(40px, 4.4vw, 64px);
}

.section-heading > p,
.process-intro > p,
.contact-copy > p {
  max-width: 520px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 17px;
}

.system-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.scale-route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.scale-route-card {
  position: relative;
  display: flex;
  min-height: 480px;
  padding: 38px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 42%),
    rgba(12,17,18,.93);
}

.scale-route-card::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(115,231,244,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(115,231,244,.016), 0 0 0 92px rgba(115,231,244,.01);
  pointer-events: none;
}

.scale-route-medium {
  background:
    linear-gradient(145deg, rgba(92,141,255,.1), transparent 44%),
    rgba(12,17,18,.94);
}

.scale-route-large {
  background:
    linear-gradient(145deg, rgba(115,231,244,.08), transparent 44%),
    rgba(12,17,18,.94);
}

.scale-route-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.scale-route-head span {
  color: var(--muted-2);
  font-size: 10px;
}

.scale-route-head b {
  padding: 7px 10px;
  color: var(--accent);
  border: 1px solid rgba(115,231,244,.2);
  border-radius: 999px;
  background: rgba(115,231,244,.045);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scale-route-medium .scale-route-head b {
  color: #b8c9ff;
  border-color: rgba(92,141,255,.24);
  background: rgba(92,141,255,.06);
}

.scale-route-card h3 {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 38px 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 2.6vw, 39px);
  letter-spacing: -.05em;
  line-height: 1.08;
}

.scale-route-card > p {
  position: relative;
  z-index: 1;
  max-width: 510px;
  color: var(--muted);
  font-size: 14px;
}

.scale-route-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.scale-route-card li {
  position: relative;
  padding-left: 17px;
  color: #bdc6c3;
  font-size: 12px;
}

.scale-route-card li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
}

.scale-route-card button {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 0 0 6px;
  margin-top: auto;
  color: #e4ece9;
  border: 0;
  border-bottom: 1px solid rgba(115,231,244,.35);
  cursor: pointer;
  background: none;
  font-size: 12px;
  font-weight: 800;
}

.scale-route-card button span {
  margin-left: 8px;
  color: var(--accent);
}

.system-flow-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 28px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(92,141,255,.09), transparent 38%),
    var(--surface);
  list-style: none;
}

.system-flow-map::before {
  position: absolute;
  top: 87px;
  right: 9%;
  left: 9%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(115,231,244,.34) 12%, rgba(92,141,255,.38) 88%, transparent);
}

.system-flow-map::after {
  position: absolute;
  top: 85px;
  left: 6%;
  width: 16%;
  height: 5px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  filter: blur(1px);
  animation: flowPulse 5.5s ease-in-out infinite;
}

@keyframes flowPulse {
  0% { transform: translateX(-80%); opacity: 0; }
  12% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(510%); opacity: 0; }
}

.system-flow-map li {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 21px;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.system-flow-map li:hover {
  border-color: rgba(115,231,244,.16);
  background: rgba(255,255,255,.025);
  transform: translateY(-4px);
}

.system-flow-map li > span {
  display: block;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.system-flow-map li > i {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 22px 0 30px;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(115,231,244,.25);
  border-radius: 18px;
  background: #101718;
  box-shadow: 0 0 0 7px rgba(7,10,11,.82), 0 0 28px rgba(115,231,244,.08);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-style: normal;
}

.system-flow-map li div {
  display: grid;
  gap: 6px;
}

.system-flow-map li strong {
  font-size: 18px;
  letter-spacing: -.03em;
}

.system-flow-map li small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.system-result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
  margin-top: 14px;
  border: 1px solid rgba(115,231,244,.15);
  border-radius: 22px;
  background: rgba(115,231,244,.04);
}

.system-result > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.system-result > strong {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.5;
}

.system-result button {
  padding: 0;
  color: #d9e3e1;
  border: 0;
  cursor: pointer;
  background: none;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.system-result button b {
  margin-left: 8px;
  color: var(--accent);
}

.development-spectrum {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.development-spectrum > div {
  min-width: 0;
  background: rgba(11,16,17,.96);
}

.development-spectrum-intro {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
}

.development-spectrum-intro span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.development-spectrum-intro strong {
  max-width: 260px;
  font-size: 13px;
  line-height: 1.45;
}

.development-platform {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  padding: 22px 18px;
}

.development-platform i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(115,231,244,.17);
  border-radius: 12px;
  background: rgba(115,231,244,.045);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
}

.development-platform div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.development-platform strong {
  font-size: 11px;
}

.development-platform span {
  color: #7d8884;
  font-size: 8px;
  line-height: 1.45;
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 42px;
  min-height: 390px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(115,231,244,.28);
  background: #151b1c;
  transform: translateY(-5px);
}

.service-card-featured {
  background: linear-gradient(145deg, rgba(115,231,244,.075), transparent 45%), var(--surface-2);
}

.service-top {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-number {
  color: var(--muted-2);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(115,231,244,.18);
  border-radius: 16px;
  background: rgba(115,231,244,.06);
}

.service-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -.04em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card ul {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 15px;
  color: #c8d0cd;
  font-size: 13px;
}

.service-card li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
}

.service-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-meta > span {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.service-meta button {
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  font-size: 13px;
  font-weight: 700;
}

.service-meta button b {
  margin-left: 7px;
  color: var(--accent);
}

.cases-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 36%, rgba(115,231,244,.055), transparent 28%),
    rgba(6,9,10,.34);
}

.case-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -28px 0 30px;
}

.case-filter button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 39px;
  padding: 0 14px;
  color: #9ea8a4;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.025);
  font-size: 10px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.case-filter button span {
  display: grid;
  min-width: 19px;
  height: 19px;
  padding-inline: 5px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-size: 8px;
}

.case-filter button:hover,
.case-filter button.is-active {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: var(--accent);
}

.case-card.is-filtered-out {
  display: none;
}

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

.case-card {
  position: relative;
  grid-column: span 5;
  display: flex;
  min-height: 440px;
  padding: 34px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 44%),
    rgba(13,17,18,.94);
  box-shadow: 0 22px 70px rgba(0,0,0,.14);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.case-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 190px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115,231,244,.1), transparent 67%);
  transform: translate(35%, -45%);
  pointer-events: none;
}

.case-card:hover {
  border-color: rgba(115,231,244,.3);
  background:
    linear-gradient(145deg, rgba(115,231,244,.055), transparent 45%),
    rgba(14,19,20,.97);
  transform: translateY(-5px);
}

.case-card-wide {
  grid-column: span 7;
}

.case-card-full {
  grid-column: 1 / -1;
  min-height: 410px;
}

.case-card-accent {
  background:
    linear-gradient(140deg, rgba(92,141,255,.11), transparent 43%),
    linear-gradient(320deg, rgba(115,231,244,.07), transparent 38%),
    rgba(13,17,18,.96);
}

.case-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.case-card-head > span,
.team-index {
  color: #87928e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.case-card-head i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(115,231,244,.18);
  border-radius: 13px;
  background: rgba(115,231,244,.045);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
}

.case-card-copy {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}

.case-company {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 23px;
}

.case-company span {
  color: #74807c;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.case-company strong {
  color: #dce5e2;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: -.025em;
}

.business-scale {
  padding: 6px 9px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.business-scale-large {
  color: #9af3fb;
  border-color: rgba(115,231,244,.2);
  background: rgba(115,231,244,.055);
}

.business-scale-medium {
  color: #b8c9ff;
  border-color: rgba(92,141,255,.22);
  background: rgba(92,141,255,.06);
}

.case-company + .case-card-copy {
  margin-top: 20px;
}

.case-card-copy h3 {
  max-width: 660px;
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(23px, 2.1vw, 32px);
  letter-spacing: -.045em;
  line-height: 1.1;
}

.case-card-copy p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.case-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.case-metrics div {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding-right: 12px;
}

.case-metrics div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.case-metrics strong,
.case-highlight strong {
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1;
}

.case-metrics span,
.case-highlight span {
  max-width: 150px;
  color: #8f9995;
  font-size: 10px;
  line-height: 1.45;
}

.case-highlight {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.case-highlight span {
  max-width: 310px;
}

.case-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 30px;
}

.case-tags span {
  padding: 7px 10px;
  color: #aeb8b4;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .025em;
}

.cases-disclaimer {
  max-width: 840px;
  margin: 22px 0 0;
  color: #727d79;
  font-size: 11px;
  line-height: 1.6;
}

.cases-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
  margin-top: 16px;
  border: 1px solid rgba(115,231,244,.15);
  border-radius: 22px;
  background: rgba(115,231,244,.04);
}

.cases-note > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cases-note > strong {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.5;
}

.cases-note button {
  padding: 0;
  color: #d9e3e1;
  border: 0;
  cursor: pointer;
  background: none;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.cases-note button b {
  margin-left: 8px;
  color: var(--accent);
}

.team-section {
  background:
    linear-gradient(rgba(8,12,13,.68), rgba(8,12,13,.68)),
    radial-gradient(circle at 50% 10%, rgba(92,141,255,.08), transparent 42%);
}

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

.team-card {
  position: relative;
  min-width: 0;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(115,231,244,.06), transparent 42%),
    rgba(12,16,17,.94);
}

.team-card::after {
  position: absolute;
  right: -36px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(115,231,244,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(115,231,244,.018), 0 0 0 68px rgba(115,231,244,.012);
  pointer-events: none;
}

.team-card-business {
  background:
    linear-gradient(145deg, rgba(92,141,255,.08), transparent 42%),
    rgba(12,16,17,.94);
}

.team-card-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 18px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.team-monogram {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  color: #d8fbff;
  border: 1px solid rgba(115,231,244,.26);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(115,231,244,.12), rgba(92,141,255,.04)),
    #0e1516;
  box-shadow: inset 0 0 24px rgba(115,231,244,.04);
}

.team-monogram::before,
.team-monogram::after {
  position: absolute;
  content: "";
  background: rgba(115,231,244,.16);
}

.team-monogram::before {
  width: 1px;
  height: 100%;
}

.team-monogram::after {
  width: 100%;
  height: 1px;
}

.team-monogram span {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.team-monogram i {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.team-card-top h3 {
  margin: 8px 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -.04em;
}

.team-card-top p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.team-experience {
  align-self: start;
  padding: 7px 10px;
  color: var(--accent);
  border: 1px solid rgba(115,231,244,.16);
  border-radius: 999px;
  background: rgba(115,231,244,.045);
  font-size: 10px;
  white-space: nowrap;
}

.team-summary {
  position: relative;
  z-index: 1;
  min-height: 76px;
  margin: 28px 0;
  color: #b8c1be;
  font-size: 14px;
  line-height: 1.7;
}

.skill-groups {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.skill-groups > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.skill-groups span {
  color: #7e8a86;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.skill-groups p {
  margin: 0;
  color: #c6cfcc;
  font-size: 11px;
  line-height: 1.55;
}

.team-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 22px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8,11,12,.72);
  font-size: 12px;
}

.team-bridge span {
  color: #aeb8b4;
}

.team-bridge i {
  color: var(--accent);
  font-style: normal;
}

.team-bridge strong {
  color: #eef8f5;
}

.packages-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 9, 10, .3);
}

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

.package-card {
  position: relative;
  display: flex;
  min-height: 530px;
  padding: 34px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.04), transparent 42%),
    rgba(13,17,18,.92);
  box-shadow: 0 22px 60px rgba(0,0,0,.15);
  transition: transform .28s ease, border-color .28s ease;
}

.package-card:hover {
  border-color: rgba(115,231,244,.28);
  transform: translateY(-6px);
}

.package-card-featured {
  border-color: rgba(115,231,244,.38);
  background:
    radial-gradient(circle at 100% 0, rgba(92,141,255,.16), transparent 42%),
    linear-gradient(145deg, rgba(115,231,244,.11), transparent 46%),
    rgba(14,20,21,.97);
  box-shadow: 0 28px 80px rgba(0,0,0,.3), 0 0 55px rgba(115,231,244,.06);
}

.package-card-featured::after {
  position: absolute;
  top: -80px;
  right: -90px;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(115,231,244,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(115,231,244,.02), 0 0 0 68px rgba(115,231,244,.015);
}

.package-badge {
  position: absolute;
  top: 0;
  right: 34px;
  padding: 8px 12px;
  color: var(--accent-ink);
  border-radius: 0 0 10px 10px;
  background: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-head {
  display: grid;
  gap: 14px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.package-head span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.package-head strong {
  font-size: 27px;
  letter-spacing: -.05em;
}

.package-card h3 {
  margin: 30px 0 12px;
  font-size: 23px;
  letter-spacing: -.045em;
}

.package-card > p {
  min-height: 67px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.package-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
  color: #c8d1ce;
  font-size: 13px;
}

.package-card li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
}

.package-card .button {
  width: 100%;
  margin-top: auto;
  font-size: 12px;
}

.calculator-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.calculator-panel {
  display: grid;
  grid-template-columns: .82fr 1.05fr .72fr;
  gap: 34px;
  padding: 46px;
  border: 1px solid rgba(115,231,244,.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 0 100%, rgba(92,141,255,.11), transparent 32%),
    linear-gradient(140deg, rgba(115,231,244,.05), transparent 42%),
    rgba(10,14,15,.94);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.calculator-intro h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.calculator-intro > p {
  margin: 26px 0 22px;
  color: var(--muted);
  font-size: 15px;
}

.calculator-intro > small {
  display: block;
  max-width: 360px;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.55;
}

.calculator-controls {
  display: grid;
  gap: 23px;
  padding: 0 6px;
}

.calculator-controls fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.calculator-controls legend {
  margin-bottom: 11px;
  color: #d6ddda;
  font-size: 11px;
  font-weight: 700;
}

.calculator-controls legend span {
  margin-right: 8px;
  color: var(--accent);
  font-size: 9px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

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

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

.choice-grid button {
  min-height: 40px;
  padding: 6px 10px;
  color: #aeb8b4;
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
  background: rgba(255,255,255,.025);
  font-size: 10px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.choice-grid button:hover {
  color: var(--text);
  border-color: var(--line-bright);
}

.choice-grid button.is-active {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(115,231,244,.11);
}

.calculator-result {
  display: flex;
  min-width: 0;
  padding: 27px;
  flex-direction: column;
  border: 1px solid rgba(115,231,244,.18);
  border-radius: 23px;
  background: rgba(4,7,8,.66);
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}

.calculator-label {
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.calculator-result > strong {
  margin: 14px 0 22px;
  color: var(--accent);
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -.055em;
  line-height: 1.1;
}

.calculator-result-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.calculator-result-row div {
  display: grid;
  gap: 4px;
}

.calculator-result-row small {
  color: var(--muted-2);
  font-size: 9px;
}

.calculator-result-row b {
  font-size: 12px;
}

.calculator-result > p {
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.calculator-result .button {
  width: 100%;
  min-height: 44px;
  padding-inline: 14px;
  margin-top: auto;
  font-size: 10px;
}

.process-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 110px;
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro > p {
  margin: 28px 0 34px;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 26px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
}

.process-list h3 {
  margin-bottom: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -.03em;
}

.process-list p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-list b {
  color: var(--muted-2);
  font-size: 11px;
  white-space: nowrap;
}

.assurance-section {
  border-bottom: 1px solid var(--line);
}

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

.assurance-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(115,231,244,.04), transparent 52%),
    var(--surface);
  transition: transform .25s ease, border-color .25s ease;
}

.assurance-card:hover {
  border-color: rgba(115,231,244,.24);
  transform: translateY(-5px);
}

.assurance-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--accent);
  border: 1px solid rgba(115,231,244,.18);
  border-radius: 12px;
  background: rgba(115,231,244,.05);
  font-size: 10px;
}

.assurance-card h3 {
  margin: 56px 0 12px;
  font-size: 19px;
  letter-spacing: -.035em;
}

.assurance-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 80px;
  padding: 70px;
  overflow: hidden;
  border: 1px solid rgba(115,231,244,.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 100%, rgba(120,233,245,.08), transparent 35%),
    radial-gradient(circle at 94% 8%, rgba(92,141,255,.12), transparent 34%),
    var(--surface);
}

.contact-panel::after {
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.012), 0 0 0 160px rgba(255,255,255,.009);
}

.contact-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.contact-copy > p {
  margin-top: 28px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(5,8,9,.55);
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.form-heading small {
  color: var(--muted-2);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label > span {
  color: #b9c2bf;
  font-size: 11px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: rgba(255,255,255,.025);
  transition: border-color .2s ease, background .2s ease;
}

.lead-form input {
  height: 48px;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 84px;
  padding: 13px 14px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #5e6865;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(115,231,244,.6);
  background: rgba(115,231,244,.03);
}

.lead-form .check-label {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 9px;
}

.check-label input {
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.check-label span {
  color: var(--muted-2) !important;
  font-size: 9px !important;
  font-weight: 400 !important;
}

.button-submit {
  width: 100%;
  margin-top: 2px;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.site-footer {
  padding: 56px 0 22px;
  border-top: 1px solid var(--line);
  background: rgba(5,7,8,.92);
  backdrop-filter: blur(14px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
}

.footer-top > div:first-child > p {
  max-width: 340px;
  margin: 20px 0 0;
  color: var(--muted-2);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-nav > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav span {
  margin-bottom: 6px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  color: #bac3c0;
  font-size: 13px;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  color: #58615e;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.ai-companion {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 390px;
  height: 272px;
  overflow: hidden;
  visibility: hidden;
  border: 1px solid rgba(115,231,244,.22);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(115,231,244,.08), transparent 45%),
    rgba(8,12,14,.96);
  box-shadow: 0 24px 80px rgba(0,0,0,.58), 0 0 40px rgba(92,141,255,.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px) scale(.96);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
  backdrop-filter: blur(18px);
}

.ai-companion.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.ai-companion::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, #090d0f 0%, rgba(9,13,15,.96) 48%, rgba(9,13,15,.08) 76%);
}

.ai-companion-copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: 76%;
  height: 100%;
  padding: 24px 12px 21px 22px;
  flex-direction: column;
  align-items: flex-start;
}

.ai-companion-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b8f5fb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ai-companion-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 11px var(--accent);
  animation: assistantStatus 2.2s ease-in-out infinite;
}

@keyframes assistantStatus {
  0%, 100% { opacity: .55; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

.ai-companion-copy strong {
  max-width: 252px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -.025em;
  transition: opacity .16s ease, transform .16s ease;
}

.ai-companion-copy strong.is-switching {
  opacity: 0;
  transform: translateY(5px);
}

.ai-companion-options {
  display: flex;
  max-width: 264px;
  gap: 6px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.ai-companion-options button {
  min-height: 27px;
  padding: 0 9px;
  color: #bfc9c6;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.035);
  font-size: 8px;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.ai-companion-options button:hover,
.ai-companion-options button.is-active {
  color: var(--accent);
  border-color: rgba(115,231,244,.36);
  background: rgba(115,231,244,.08);
}

.ai-companion-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  margin-top: auto;
  color: var(--accent-ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.ai-companion-portrait {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  overflow: hidden;
}

.ai-companion-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 8%;
  transform: scale(1.48);
  transform-origin: 54% 12%;
  animation: assistantDrift 7s ease-in-out infinite;
}

@keyframes assistantDrift {
  0%, 100% { transform: scale(1.48) translate3d(0, 0, 0); }
  50% { transform: scale(1.5) translate3d(-1px, -2px, 0); }
}

.ai-companion-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  color: #dce6e6;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(5,8,9,.72);
  font-size: 17px;
  line-height: 1;
}

.ai-companion-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 68px;
  height: 68px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(115,231,244,.35);
  border-radius: 50%;
  cursor: pointer;
  background: #080c0e;
  box-shadow: 0 18px 55px rgba(0,0,0,.55), 0 0 28px rgba(115,231,244,.12);
}

.ai-companion-toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  transform: scale(1.9);
  transform-origin: 50% 14%;
}

.ai-companion-toggle span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 12px;
  height: 12px;
  border: 2px solid #080c0e;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 9px var(--accent);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,4,5,.78);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  width: min(540px, 100%);
  max-height: calc(100vh - 48px);
  padding: 40px;
  overflow: auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: #111617;
  box-shadow: 0 30px 100px rgba(0,0,0,.7);
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
}

.modal.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-dialog h2 {
  margin-bottom: 12px;
  font-size: 35px;
}

.modal-dialog > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: #dfe4e1;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,.04);
  font-size: 22px;
}

.modal-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    margin-right: 14px;
  }

  .hero-grid {
    gap: 34px;
  }

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

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

  .development-spectrum-intro {
    grid-column: 1 / -1;
  }

  .service-card ul {
    display: none;
  }

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

  .case-card,
  .case-card-wide {
    grid-column: auto;
  }

  .case-card-full {
    grid-column: 1 / -1;
  }

  .case-card {
    padding: 28px;
  }

  .case-card-copy h3 {
    font-size: 25px;
  }

  .team-card {
    padding: 28px;
  }

  .team-card-top {
    grid-template-columns: 64px 1fr;
  }

  .team-monogram {
    width: 64px;
    height: 64px;
    border-radius: 19px;
  }

  .team-experience {
    grid-column: 2;
    justify-self: start;
  }

  .skill-groups > div {
    grid-template-columns: 92px 1fr;
    gap: 12px;
  }

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

  .package-card {
    padding: 28px;
  }

  .calculator-panel {
    grid-template-columns: .9fr 1.1fr;
  }

  .calculator-result {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 26px;
  }

  .calculator-result > strong,
  .calculator-result > p {
    grid-column: 1;
  }

  .calculator-result-row,
  .calculator-result .button {
    grid-column: 2;
  }

  .calculator-result-row {
    grid-row: 1 / span 2;
    align-self: start;
    padding-top: 0;
    border-top: 0;
  }

  .contact-panel {
    gap: 42px;
    padding: 48px;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 82px;
  }

  .site-cyber-bg-image {
    background-image: url("assets/site-terminal-background-960.webp");
    opacity: var(--cyber-mobile-opacity, .34);
    animation-duration: 26s;
  }

  .site-cyber-bg::after {
    opacity: .08;
  }

  .shell {
    width: min(100% - 32px, 620px);
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    height: 74px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-left: auto;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255,255,255,.025);
  }

  .menu-toggle span:not(.sr-only) {
    width: 19px;
    height: 1px;
    background: var(--text);
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: space-between;
    height: 100dvh;
    padding: 102px 24px calc(24px + env(safe-area-inset-bottom, 0px));
    background:
      radial-gradient(circle at 90% 10%, rgba(92,141,255,.1), transparent 42%),
      rgba(7,10,11,.992);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 17px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Manrope", sans-serif;
    font-size: clamp(24px, 8vw, 36px);
    letter-spacing: -.05em;
  }

  .mobile-menu nav span {
    color: var(--accent);
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    letter-spacing: .1em;
  }

  .mobile-menu-footer {
    display: grid;
    gap: 14px;
  }

  .mobile-menu-footer > a {
    color: var(--muted);
    font-size: 14px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: 0;
  }

  .hero-copy,
  .hero-visual {
    grid-column: auto;
    grid-row: auto;
  }

  h1 {
    font-size: clamp(41px, 12.2vw, 62px);
    letter-spacing: -.06em;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-routes {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-routes small {
    white-space: normal;
  }

  .hero-buttons {
    display: grid;
    margin-top: 24px;
  }

  .button-large {
    width: 100%;
  }

  .hero-proof {
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
  }

  .hero-proof div:not(:last-child)::after {
    right: -10px;
  }

  .hero-proof strong {
    font-size: 18px;
  }

  .hero-visual {
    width: calc(100% - 10px);
    margin-inline: auto;
  }

  .hero-system-frame {
    height: 485px;
    padding: 20px;
    border-radius: 28px;
    transform: none;
    transition: none;
  }

  .hero-system-frame::after {
    inset: 10px;
    border-radius: 21px;
    animation: mobileSystemFrame 5.6s ease-in-out infinite;
  }

  .hero-system-head {
    padding-bottom: 15px;
  }

  .hero-system-head > span {
    display: none;
  }

  .hero-system-stage {
    padding: 20px 0 12px;
  }

  .system-layer {
    gap: 6px;
  }

  .system-layer > span {
    padding: 11px 9px;
    border-radius: 10px;
    transition: border-color .28s ease, background .28s ease, box-shadow .28s ease, transform .28s ease;
  }

  .system-layer > span.is-system-active {
    z-index: 2;
    border-color: rgba(115,231,244,.72);
    background: rgba(115,231,244,.12);
    box-shadow: inset 0 0 18px rgba(115,231,244,.08), 0 0 18px rgba(115,231,244,.13);
    transform: translateY(-2px) scale(1.015);
  }

  .system-layer > span.is-system-active::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -45%;
    width: 42%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(207,250,255,.18), transparent);
    animation: mobileNodeSweep 1.2s linear;
  }

  .system-layer > span.is-system-active::after {
    border-color: rgba(115,231,244,.38);
    box-shadow: 0 0 18px rgba(115,231,244,.2);
  }

  .system-layer > span.is-system-active strong {
    color: var(--accent);
    text-shadow: 0 0 9px rgba(115,231,244,.3);
  }

  .system-layer i {
    display: none;
  }

  .system-layer strong {
    font-size: 10px;
  }

  .system-layer small {
    font-size: 7px;
  }

  .system-bus {
    height: 21px;
  }

  .system-bus::after {
    position: absolute;
    top: calc(50% - 2px);
    left: 16.66%;
    width: 4px;
    height: 4px;
    content: "";
    border-radius: 50%;
    background: #d9fcff;
    box-shadow: 0 0 5px var(--accent), 0 0 12px rgba(115,231,244,.75);
    animation: mobileBusFlow 3.4s ease-in-out infinite;
  }

  .system-bus-bottom::after {
    animation-direction: reverse;
    animation-delay: -1.7s;
  }

  .system-bus i::after {
    position: absolute;
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    width: 4px;
    height: 4px;
    content: "";
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(115,231,244,.8);
    animation: mobileConnectorSignal 2.8s ease-in-out infinite;
  }

  .system-bus i:nth-child(1)::after { animation-delay: -.4s; }
  .system-bus i:nth-child(2)::after { animation-delay: -1.3s; }
  .system-bus i:nth-child(3)::after { animation-delay: -2.2s; }

  .system-core-panel {
    grid-template-columns: 64px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 15px;
    animation: mobileSystemCore 5.6s ease-in-out infinite;
  }

  .system-core-panel::after {
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(115,231,244,.12), transparent);
    animation-duration: 4.2s;
    animation-timing-function: linear;
  }

  .system-core-mark {
    width: 64px;
    height: 64px;
    animation: mobileCoreMark 4.2s ease-in-out infinite;
  }

  .system-core-mark::before {
    position: absolute;
    inset: -6px;
    content: "";
    border: 1px solid rgba(115,231,244,.16);
    border-radius: 50%;
    animation: mobileCoreRing 3.6s ease-out infinite;
  }

  .system-core-mark span {
    font-size: 19px;
  }

  .system-core-copy strong {
    font-size: 12px;
  }

  .system-core-copy span {
    font-size: 7px;
  }

  .system-core-state {
    position: absolute;
    top: 10px;
    right: 11px;
  }

  .hero-system-console {
    grid-template-columns: 1fr auto;
    margin: 0 0 12px;
    padding: 9px 10px;
  }

  .hero-system-console span:nth-of-type(2),
  .hero-system-console strong:nth-of-type(2) {
    display: none;
  }

  .hero-system-console strong {
    animation: mobileStatusLive 2.4s ease-in-out infinite;
  }

  .hero-system-console b {
    color: #83918d;
    font-weight: 400;
    transition: color .25s ease;
  }

  .hero-system-frame.is-system-live .hero-system-console b {
    color: #c1cfcb;
  }

  .hero-system-footer {
    padding-top: 14px;
  }

  .hero-system-footer strong {
    font-size: 9px;
  }

  @keyframes mobileSystemFrame {
    0%, 100% {
      border-color: rgba(115,231,244,.1);
      box-shadow: inset 0 0 18px rgba(115,231,244,.015);
    }
    50% {
      border-color: rgba(115,231,244,.24);
      box-shadow: inset 0 0 30px rgba(115,231,244,.04);
    }
  }

  @keyframes mobileNodeSweep {
    from { left: -45%; }
    to { left: 115%; }
  }

  @keyframes mobileBusFlow {
    0%, 8% { left: 16.66%; opacity: 0; }
    18% { opacity: 1; }
    82% { opacity: 1; }
    92%, 100% { left: 83.33%; opacity: 0; }
  }

  @keyframes mobileConnectorSignal {
    0%, 100% { opacity: .18; transform: scale(.65); }
    45%, 58% { opacity: 1; transform: scale(1.15); }
  }

  @keyframes mobileSystemCore {
    0%, 100% {
      border-color: rgba(115,231,244,.28);
      box-shadow: inset 0 0 24px rgba(115,231,244,.025), 0 0 20px rgba(73,178,191,.025);
    }
    50% {
      border-color: rgba(115,231,244,.48);
      box-shadow: inset 0 0 38px rgba(115,231,244,.065), 0 0 30px rgba(73,178,191,.08);
    }
  }

  @keyframes mobileCoreMark {
    0%, 100% { box-shadow: inset 0 0 18px rgba(115,231,244,.06), 0 0 0 rgba(115,231,244,0); }
    50% { box-shadow: inset 0 0 26px rgba(115,231,244,.12), 0 0 18px rgba(115,231,244,.1); }
  }

  @keyframes mobileCoreRing {
    0% { opacity: 0; transform: scale(.9); }
    24% { opacity: .7; }
    75%, 100% { opacity: 0; transform: scale(1.18); }
  }

  @keyframes mobileStatusLive {
    0%, 100% { opacity: .58; text-shadow: none; }
    50% { opacity: 1; text-shadow: 0 0 8px rgba(135,235,160,.5); }
  }

  .cockpit-card {
    padding: 21px;
    border-radius: 24px;
    transform: none;
  }

  .metric-main strong {
    font-size: 43px;
  }

  .chart {
    height: 152px;
  }

  .system-flow span {
    padding: 6px;
    font-size: 8px;
  }

  .trust-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    margin-top: 68px;
    text-align: center;
  }

  .section-heading,
  .section-heading-wide {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .process-intro h2,
  .contact-copy h2 {
    font-size: clamp(35px, 10.2vw, 50px);
  }

  .section-heading > p,
  .process-intro > p,
  .contact-copy > p {
    font-size: 15px;
  }

  .scale-route-grid {
    grid-template-columns: 1fr;
  }

  .scale-route-card {
    min-height: 0;
    padding: 25px;
    border-radius: 24px;
  }

  .scale-route-card h3 {
    margin-top: 28px;
    font-size: 27px;
  }

  .scale-route-card ul {
    margin: 22px 0 30px;
  }

  .system-flow-map {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .system-flow-map::before {
    top: 50px;
    right: auto;
    bottom: 50px;
    left: 58px;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, transparent, rgba(115,231,244,.34) 12%, rgba(92,141,255,.38) 88%, transparent);
  }

  .system-flow-map::after {
    top: 44px;
    left: 56px;
    width: 5px;
    height: 74px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    animation: flowPulseMobile 5.5s ease-in-out infinite;
  }

  @keyframes flowPulseMobile {
    0% { transform: translateY(-80%); opacity: 0; }
    12% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateY(560%); opacity: 0; }
  }

  .system-flow-map li {
    display: grid;
    grid-template-columns: 26px 58px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 6px;
  }

  .system-flow-map li:hover {
    transform: none;
  }

  .system-flow-map li > i {
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 15px;
    font-size: 17px;
  }

  .system-result {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .system-result button {
    width: fit-content;
    padding-top: 5px;
  }

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

  .development-spectrum {
    border-radius: 20px;
  }

  .development-spectrum-intro {
    padding: 20px;
  }

  .development-platform {
    grid-template-columns: 34px 1fr;
    padding: 18px 14px;
  }

  .development-platform i {
    width: 34px;
    height: 34px;
  }

  .case-filter {
    gap: 7px;
    margin: -14px 0 24px;
  }

  .case-filter button {
    min-height: 37px;
    padding-inline: 12px;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: 25px;
  }

  .service-card ul {
    display: grid;
  }

  .service-card p {
    font-size: 15px;
  }

  .service-card h3 {
    font-size: 21px;
  }

  .case-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: 0;
    padding: 25px;
    border-radius: 24px;
  }

  .case-card-head {
    padding-bottom: 20px;
  }

  .case-card-copy {
    margin-top: 25px;
  }

  .case-company {
    display: grid;
    gap: 5px;
    margin-top: 20px;
  }

  .business-scale {
    width: fit-content;
    margin: 5px 0 0;
  }

  .case-company + .case-card-copy {
    margin-top: 19px;
  }

  .case-card-copy h3 {
    font-size: 23px;
  }

  .case-metrics {
    gap: 8px;
    margin-top: 28px;
  }

  .case-metrics div {
    padding-right: 8px;
  }

  .case-metrics strong,
  .case-highlight strong {
    font-size: 27px;
  }

  .case-metrics span {
    font-size: 9px;
  }

  .case-card-full .case-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .case-card-full .case-metrics div {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-card-full .case-metrics div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .case-tags {
    margin-top: 28px;
    padding-top: 0;
  }

  .cases-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .cases-disclaimer {
    margin-top: 18px;
    font-size: 10px;
  }

  .cases-note button {
    width: fit-content;
    padding-top: 5px;
  }

  .team-card {
    padding: 24px;
    border-radius: 24px;
  }

  .team-card-top {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding-bottom: 24px;
  }

  .team-monogram {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .team-monogram span {
    font-size: 16px;
  }

  .team-card-top h3 {
    font-size: 20px;
  }

  .team-experience {
    grid-column: 2;
  }

  .team-summary {
    min-height: 0;
    margin: 24px 0;
  }

  .skill-groups > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .team-bridge {
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 19px;
    text-align: center;
  }

  .team-bridge strong {
    flex-basis: 100%;
  }

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

  .package-card {
    min-height: auto;
    padding: 27px 24px;
  }

  .package-card > p {
    min-height: 0;
  }

  .package-card .button {
    margin-top: 2px;
  }

  .package-card-featured {
    order: -1;
  }

  .calculator-panel {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 28px 20px 20px;
    border-radius: 25px;
  }

  .calculator-controls {
    padding: 0;
  }

  .choice-grid button {
    min-height: 44px;
    font-size: 11px;
  }

  .calculator-result {
    grid-column: auto;
    display: flex;
    padding: 23px;
  }

  .calculator-result > strong,
  .calculator-result > p,
  .calculator-result-row,
  .calculator-result .button {
    grid-column: auto;
    grid-row: auto;
  }

  .calculator-result-row {
    padding: 17px 0;
    border-top: 1px solid var(--line);
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-intro {
    position: static;
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 18px;
  }

  .process-list b {
    grid-column: 2;
  }

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

  .assurance-card {
    min-height: 220px;
  }

  .contact-section {
    padding-bottom: 40px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 28px 20px 20px;
    border-radius: 25px;
  }

  .lead-form {
    padding: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .ai-companion {
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: min(330px, calc(100% - 24px));
    height: 242px;
    border-radius: 22px;
  }

  .ai-companion-copy {
    width: 78%;
    padding: 18px 8px 16px 17px;
  }

  .ai-companion-copy strong {
    max-width: 216px;
    margin-top: 12px;
    font-size: 14px;
  }

  .ai-companion-status {
    font-size: 8px;
  }

  .ai-companion-action {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .ai-companion-options {
    max-width: 226px;
    margin-top: 12px;
  }

  .ai-companion-options button {
    min-height: 25px;
    padding-inline: 8px;
    font-size: 7px;
  }

  .ai-companion-portrait {
    width: 46%;
  }

  .ai-companion-toggle {
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    width: 62px;
    height: 62px;
  }

  .modal {
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .modal-dialog {
    max-height: calc(100dvh - 24px - env(safe-area-inset-bottom, 0px));
    padding: 28px 20px 20px;
    border-radius: 22px;
  }

  .modal-dialog h2 {
    padding-right: 38px;
    font-size: 29px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 390px) {
  .hero-proof {
    gap: 8px;
  }

  .hero-proof div {
    min-width: 0;
  }

  .hero-proof div:not(:last-child)::after {
    right: -4px;
    height: 36px;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .hero-proof span {
    font-size: 9px;
    line-height: 1.35;
  }

  .cockpit-head strong {
    font-size: 13px;
  }

  .metric-main small {
    max-width: 180px;
  }

}

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

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

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

}

@media (max-width: 780px) and (prefers-reduced-motion: reduce) {
  .hero-system-frame::after {
    animation-duration: 5.6s !important;
    animation-iteration-count: infinite !important;
  }

  .system-bus::after {
    animation-duration: 3.4s !important;
    animation-iteration-count: infinite !important;
  }

  .system-bus i::after {
    animation-duration: 2.8s !important;
    animation-iteration-count: infinite !important;
  }

  .system-core-panel {
    animation-duration: 5.6s !important;
    animation-iteration-count: infinite !important;
  }

  .system-core-panel::after {
    animation-duration: 4.2s !important;
    animation-iteration-count: infinite !important;
  }

  .system-core-mark {
    animation-duration: 4.2s !important;
    animation-iteration-count: infinite !important;
  }

  .system-core-mark::before {
    animation-duration: 3.6s !important;
    animation-iteration-count: infinite !important;
  }

  .system-layer > span {
    transition-duration: .28s !important;
  }

  .system-layer > span.is-system-active::before {
    animation-duration: 1.2s !important;
  }

  .hero-system-console strong {
    animation-duration: 2.4s !important;
    animation-iteration-count: infinite !important;
  }
}
