:root {
  --bg: #050607;
  --panel: #0b0c0e;
  --panel-soft: #101113;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f7f8fb;
  --muted: rgba(247, 248, 251, 0.48);
  --muted-strong: rgba(247, 248, 251, 0.68);
  --blue: #3f73ff;
  --blue-deep: #244bb5;
  --black: #000000;
  --radius: 34px;
  --font: "PP Neue Montreal", "Space Grotesk", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  transition-property: background-color, border-color, color, box-shadow, opacity, transform, filter;
  transition-duration: 280ms;
  transition-timing-function: ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(circle at 50% 0%, rgba(63, 115, 255, 0.12), transparent 32rem),
    var(--bg);
  transition: background 520ms ease, color 520ms ease;
}

body.theme-light {
  --bg: #f3f5f8;
  --panel: #ffffff;
  --panel-soft: #eceff5;
  --line: rgba(6, 8, 12, 0.1);
  --line-strong: rgba(6, 8, 12, 0.16);
  --text: #080a0e;
  --muted: rgba(8, 10, 14, 0.56);
  --muted-strong: rgba(8, 10, 14, 0.72);
  background:
    radial-gradient(circle at 50% 0%, rgba(63, 115, 255, 0.17), transparent 32rem),
    var(--bg);
}

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

button {
  font: inherit;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.36;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle at 50% 10%, black, transparent 72%);
}

body.theme-light::before {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 96px;
  padding: 0 clamp(24px, 9.7vw, 190px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.72);
  backdrop-filter: blur(24px);
  transition: background 180ms ease, height 180ms ease;
}

body.theme-light .site-header {
  background: rgba(243, 245, 248, 0.78);
}

.site-header.is-scrolled {
  height: 82px;
  background: rgba(5, 6, 7, 0.9);
}

body.theme-light .site-header.is-scrolled {
  background: rgba(243, 245, 248, 0.93);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  width: max-content;
  color: var(--text);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand span:last-child {
  color: var(--blue);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 44px);
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.desktop-nav a,
.nav-book {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  transition: color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.nav-book:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-book,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-book {
  min-height: 52px;
  padding: 0 25px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 18px 48px rgba(63, 115, 255, 0.24);
}

.nav-book:hover,
.btn:hover {
  transform: translateY(-2px);
}

.theme-toggle {
  position: relative;
  width: 50px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.theme-dot {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(63, 115, 255, 0.8);
  transition: transform 200ms ease, background 200ms ease;
}

body.theme-light .theme-dot {
  transform: translateX(18px);
  background: #080a0e;
  box-shadow: none;
}

.menu-btn {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease;
}

.mobile-panel {
  position: fixed;
  top: 86px;
  right: 18px;
  z-index: 60;
  display: none;
  width: min(360px, calc(100vw - 36px));
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(5, 6, 7, 0.94);
  color: var(--text);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

body.theme-light .mobile-panel {
  background: rgba(255, 255, 255, 0.94);
}

.mobile-panel.open {
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  padding: 15px 14px;
  border-radius: 12px;
  color: var(--muted-strong);
  font-weight: 700;
}

.mobile-panel .mobile-primary {
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 150px clamp(24px, 9.7vw, 190px) 95px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 19% 52%, rgba(63, 115, 255, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(5, 6, 7, 0.28), rgba(5, 6, 7, 0.08) 58%, rgba(5, 6, 7, 0.35));
}

body.theme-light .hero::after {
  background:
    radial-gradient(circle at 19% 52%, rgba(63, 115, 255, 0.12), transparent 22rem),
    linear-gradient(90deg, rgba(243, 245, 248, 0.45), rgba(243, 245, 248, 0.12) 58%, rgba(243, 245, 248, 0.5));
}

.hero-inner {
  position: relative;
  z-index: 4;
  max-width: 860px;
  mix-blend-mode: normal;
}

.robot-wrap {
  position: absolute;
  right: clamp(24px, 9vw, 160px);
  top: 50%;
  z-index: 2;
  width: min(42vw, 620px);
  aspect-ratio: 0.82;
  transform: translateY(-45%);
  opacity: 0.96;
  filter: drop-shadow(0 48px 90px rgba(0, 0, 0, 0.55));
}

.robot-wrap::before {
  content: "";
  position: absolute;
  inset: -18% -15%;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 25%, rgba(63, 115, 255, 0.42) 0 5px, transparent 6px),
    radial-gradient(circle at 85% 18%, rgba(63, 115, 255, 0.55) 0 5px, transparent 6px),
    radial-gradient(circle at 92% 63%, rgba(63, 115, 255, 0.52) 0 4px, transparent 5px),
    linear-gradient(36deg, transparent 21%, rgba(63, 115, 255, 0.22) 21.2% 21.6%, transparent 22%),
    linear-gradient(145deg, transparent 38%, rgba(63, 115, 255, 0.2) 38.2% 38.6%, transparent 39%),
    linear-gradient(92deg, transparent 55%, rgba(63, 115, 255, 0.18) 55.2% 55.6%, transparent 56%);
  opacity: 0.55;
}

.robot-orbit {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 7%;
  height: 70px;
  border: 2px solid rgba(63, 115, 255, 0.25);
  border-top-color: rgba(255, 104, 3, 0.6);
  border-radius: 50%;
  animation: robot-orbit 7s linear infinite;
}

.robot {
  position: absolute;
  inset: 0;
  animation: robot-float 5s ease-in-out infinite;
}

.antenna {
  position: absolute;
  left: 50%;
  top: 2%;
  width: 4px;
  height: 78px;
  background: linear-gradient(#f9f0de, #3f3128);
  transform: translateX(-50%);
}

.antenna span {
  position: absolute;
  left: 50%;
  top: -25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #fff 0 4px, transparent 5px), linear-gradient(#ff8a16, #b64a08);
  transform: translateX(-50%);
}

.robot-head {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 12%;
  height: 25%;
  border: 10px solid #c78844;
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.65), transparent 18%),
    linear-gradient(135deg, #ead7bd, #a57952);
  box-shadow: inset 0 0 0 8px #3a1b0c, 0 18px 40px rgba(255, 104, 3, 0.14);
}

.robot-face {
  position: absolute;
  inset: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 45%, rgba(22, 82, 155, 0.28), transparent 42%), #05080b;
}

.robot-eye {
  position: relative;
  width: clamp(46px, 4.4vw, 72px);
  height: clamp(46px, 4.4vw, 72px);
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, transparent 0 6px, rgba(148, 222, 255, 0.22) 6px 8px),
    repeating-linear-gradient(90deg, #7dd6ff 0 6px, #b5efff 6px 10px);
  box-shadow: 0 0 26px rgba(87, 198, 255, 0.95), inset 0 0 14px rgba(255,255,255,0.7);
}

.robot-eye span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34%;
  height: 34%;
  border-radius: 50%;
  background: rgba(3, 17, 34, 0.8);
  transform: translate(calc(-50% + var(--eye-x, 0px)), calc(-50% + var(--eye-y, 0px)));
  transition: transform 80ms linear;
}

.robot-mouth {
  position: absolute;
  left: 50%;
  bottom: 22%;
  width: 54px;
  height: 7px;
  border-radius: 99px;
  background: #76d8ff;
  box-shadow: 0 0 16px rgba(87, 198, 255, 0.95);
  transform: translateX(-50%);
}

.robot-neck {
  position: absolute;
  left: 43%;
  right: 43%;
  top: 37%;
  height: 8%;
  border-radius: 999px;
  background: repeating-linear-gradient(0deg, #070808 0 8px, #36241a 8px 14px);
}

.robot-body {
  position: absolute;
  left: 21%;
  right: 21%;
  top: 44%;
  height: 30%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 17%, rgba(255,255,255,0.55), transparent 14%),
    linear-gradient(135deg, #e6d4bb, #966b4d);
  box-shadow: inset 0 -12px 0 rgba(11, 5, 1, 0.2);
}

.robot-chest {
  position: absolute;
  left: 13%;
  top: 24%;
  display: grid;
  grid-template-columns: repeat(3, 18px);
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(#d76a0d, #9b3b04);
}

.robot-chest i {
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.74);
}

.robot-panel {
  position: absolute;
  right: 12%;
  top: 24%;
  width: 62px;
  height: 92px;
  border-radius: 14px;
  background: #111;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.18);
}

.robot-panel span {
  display: block;
  height: 9px;
  margin: 15px 11px;
  border-radius: 99px;
  background: #0b0b0b;
  box-shadow: 22px -6px 0 #ff7b14, 28px -6px 0 #fff3d8;
}

.robot-arm {
  position: absolute;
  top: 50%;
  width: 19%;
  height: 25%;
  border-radius: 999px;
  background: linear-gradient(135deg, #e7d5bc, #9a6b48);
}

.robot-arm.left {
  left: 5%;
  transform: rotate(13deg);
}

.robot-arm.right {
  right: 5%;
  transform: rotate(-13deg);
}

.eyebrow,
.section-kicker,
.card-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 54px;
  padding: 15px 28px;
  border: 1px solid rgba(63, 115, 255, 0.42);
  border-radius: 999px;
  background: rgba(63, 115, 255, 0.1);
  color: #a9c1ff;
  letter-spacing: -0.02em;
  text-transform: none;
  font-size: 17px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

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

h1 {
  margin-bottom: 34px;
  max-width: 910px;
  font-size: clamp(52px, 6.5vw, 112px);
  line-height: 0.89;
  letter-spacing: -0.08em;
  text-shadow: 0 20px 90px rgba(0, 0, 0, 0.58);
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  color: var(--blue);
  font-style: italic;
  font-weight: 400;
}

.hero-copy {
  max-width: 860px;
  margin-bottom: 58px;
  color: var(--muted-strong);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 82px;
}

.btn {
  min-height: 62px;
  padding: 0 38px;
  font-size: 18px;
}

.btn.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 24px 70px rgba(63, 115, 255, 0.28);
}

.btn.ghost {
  border-color: var(--line-strong);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.02);
}

.btn.ghost:hover {
  border-color: rgba(63, 115, 255, 0.5);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0;
}

.hero-stats div {
  min-width: 158px;
  padding-right: 44px;
  border-right: 1px solid var(--line-strong);
}

.hero-stats div + div {
  padding-left: 44px;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  margin-bottom: 9px;
  font-size: 36px;
  letter-spacing: -0.06em;
}

.hero-stats span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.scroll-label {
  position: absolute;
  left: 66px;
  bottom: 112px;
  z-index: 3;
  writing-mode: vertical-rl;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll-label::after {
  content: "";
  display: block;
  width: 1px;
  height: 74px;
  margin: 16px auto 0;
  background: var(--line-strong);
}

.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: max-content;
  padding: 25px 34px;
  color: var(--muted-strong);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.marquee-content i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(63, 115, 255, 0.7);
}

.section {
  padding: clamp(78px, 8vw, 145px) clamp(24px, 9.7vw, 190px);
}

.section-heading {
  max-width: 1020px;
  margin-bottom: clamp(62px, 7vw, 120px);
}

.section h2 {
  margin: 22px 0 28px;
  max-width: 1080px;
  color: var(--text);
  font-size: clamp(42px, 5.2vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.08em;
}

.section-heading p,
.platform > p + h2 + .platform-grid,
.section > p:not(.section-kicker) {
  color: var(--muted-strong);
}

.section-heading p {
  max-width: 760px;
  font-size: clamp(17px, 1.2vw, 21px);
  font-weight: 600;
  line-height: 1.55;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.pillar-grid article {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  padding: clamp(32px, 3.1vw, 54px);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(420px circle at var(--mx, 50%) var(--my, 35%), rgba(63, 115, 255, 0.26), transparent 36%),
    radial-gradient(circle at 75% 20%, rgba(63, 115, 255, 0.08), transparent 17rem),
    rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pillar-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 35%), rgba(87, 145, 255, 0.24), transparent 42%);
  transition: opacity 220ms ease;
}

.pillar-grid article:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(63, 115, 255, 0.58);
  box-shadow: 0 26px 90px rgba(63, 115, 255, 0.16), inset 0 0 0 1px rgba(63, 115, 255, 0.18);
}

.pillar-grid article:hover::before {
  opacity: 1;
}

body.theme-light .pillar-grid article {
  background:
    radial-gradient(circle at 75% 20%, rgba(63, 115, 255, 0.1), transparent 17rem),
    rgba(255, 255, 255, 0.58);
}

.pillar-grid h3,
.platform-grid h3,
.steps h3 {
  margin: 34px 0 20px;
  color: var(--text);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.pillar-grid p,
.platform-grid p,
.steps p,
.testimonial-grid p {
  color: var(--muted-strong);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.62;
  letter-spacing: -0.03em;
}

.pillar-grid ul {
  display: grid;
  gap: 14px;
  margin: 38px 0 48px;
  padding: 0;
  color: var(--muted-strong);
  list-style: none;
}

.pillar-grid li {
  position: relative;
  padding-left: 25px;
  font-weight: 700;
}

.pillar-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.pillar-grid article > a {
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.pillar-grid small {
  position: absolute;
  top: 36px;
  right: 36px;
  padding: 11px 19px;
  border: 1px solid rgba(63, 115, 255, 0.45);
  border-radius: 999px;
  color: #a9c1ff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 42px rgba(255, 255, 255, 0.03);
}

.service-icon svg {
  width: 96px;
  height: 96px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(63, 115, 255, 0.55));
}

.service-icon .spark {
  fill: rgba(63, 115, 255, 0.22);
  stroke: var(--blue);
}

.platform {
  border-top: 1px solid var(--line);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-rows: minmax(300px, auto);
  gap: 28px;
  margin-top: 72px;
}

.platform-grid article {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 2.8vw, 52px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.platform-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(63, 115, 255, 0.34);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

body.theme-light .platform-grid article {
  background: rgba(255, 255, 255, 0.62);
}

.platform-grid .wide {
  grid-column: span 2;
}

.platform-grid .tall {
  grid-row: span 2;
}

.platform-grid h3 {
  margin-top: 18px;
}

.platform-grid strong {
  position: static;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 58px;
  color: var(--text);
  font-size: clamp(52px, 4.6vw, 74px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.platform-grid strong > span:not([data-count]) {
  color: var(--muted);
  font-size: 23px;
  letter-spacing: -0.05em;
}

.neural-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 30px;
}

.mini-network {
  position: relative;
  min-height: 180px;
}

.mini-network::before,
.mini-network::after {
  content: "";
  position: absolute;
  inset: 30px 18%;
  border-top: 1px solid rgba(63, 115, 255, 0.5);
  border-right: 1px solid rgba(63, 115, 255, 0.35);
  transform: skew(-22deg) rotate(12deg);
}

.mini-network span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 22px rgba(63, 115, 255, 0.75);
}

.mini-network span:nth-child(1) { left: 20%; top: 45%; }
.mini-network span:nth-child(2) { left: 38%; top: 18%; }
.mini-network span:nth-child(3) { left: 55%; top: 55%; }
.mini-network span:nth-child(4) { left: 68%; top: 28%; }
.mini-network span:nth-child(5) { left: 44%; top: 72%; }
.mini-network span:nth-child(6) { left: 76%; top: 63%; }

.bars {
  position: relative;
  display: flex;
  align-items: end;
  gap: 12px;
  height: 132px;
  margin-top: 52px;
  padding-top: 18px;
}

.bars span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
}

.bars span:nth-child(1) { height: 38%; }
.bars span:nth-child(2) { height: 62%; }
.bars span:nth-child(3) { height: 52%; }
.bars span:nth-child(4) { height: 76%; }
.bars span:nth-child(5) { height: 66%; }
.bars span:nth-child(6) { height: 90%; }

.integration-grid {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.integration-grid span,
.badges span {
  display: grid;
  place-items: center;
  min-height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--muted-strong);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.integration-grid span:last-child {
  color: var(--blue);
  border-color: rgba(63, 115, 255, 0.5);
  background: rgba(63, 115, 255, 0.12);
}

.compliance {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.badges span {
  min-width: 110px;
  padding: 0 20px;
}

.process {
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 0;
  max-width: 860px;
  margin: 82px 0 0 88px;
}

.steps article {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 34px;
  padding-bottom: 78px;
  opacity: 0;
  transform: translateY(26px);
}

.steps article.step-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps article.step-visible::after {
  animation: step-pulse 900ms ease both;
}

.steps article.step-visible h3,
.steps article.step-visible p {
  animation: process-load 620ms ease both;
}

.steps article.step-visible p {
  animation-delay: 130ms;
}

.steps article::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 12px;
  bottom: -12px;
  width: 1px;
  background: var(--line-strong);
}

.steps article:last-child::before {
  display: none;
}

.steps article::after {
  content: "";
  position: absolute;
  left: 51px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
}

.steps span {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.steps h3 {
  margin: 0 0 24px;
}

.steps p {
  max-width: 660px;
}

.results {
  border-top: 1px solid var(--line);
}

.result-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vw, 78px);
  margin: 72px 0 112px;
  padding: clamp(42px, 5.2vw, 82px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.result-panel div {
  padding: 0 clamp(22px, 3.8vw, 70px);
  border-right: 1px solid var(--line-strong);
}

.result-panel div:first-child {
  padding-left: 0;
}

.result-panel div:last-child {
  border-right: 0;
}

.result-panel strong {
  display: block;
  margin-bottom: 42px;
  font-size: clamp(26px, 2.45vw, 42px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.result-panel span {
  display: block;
  max-width: 310px;
  color: var(--muted-strong);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

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

.testimonial-grid article {
  min-height: 390px;
  padding: clamp(34px, 3vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

body.theme-light .testimonial-grid article {
  background: rgba(255, 255, 255, 0.62);
}

.dots {
  width: 74px;
  height: 8px;
  margin-bottom: 38px;
  background: radial-gradient(circle, var(--blue) 0 4px, transparent 5px) 0 0 / 15px 8px repeat-x;
}

.testimonial-grid p {
  min-height: 150px;
  font-style: italic;
}

.testimonial-grid article > div:last-child {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0 18px;
  align-items: center;
}

.testimonial-grid article > div:last-child span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(63, 115, 255, 0.55);
  border-radius: 50%;
  background: rgba(63, 115, 255, 0.13);
  color: var(--blue);
  font-weight: 900;
}

.testimonial-grid strong {
  color: var(--text);
  font-size: 18px;
}

.testimonial-grid small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.contact {
  display: grid;
  justify-items: center;
  min-height: 86vh;
  padding-top: clamp(110px, 12vw, 210px);
  text-align: center;
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at 50% 50%, rgba(63, 115, 255, 0.1), transparent 31rem);
}

.contact h2 {
  margin: 26px 0 32px;
  font-size: clamp(42px, 4.8vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.contact p {
  max-width: 720px;
  margin-bottom: 36px;
  color: var(--muted-strong);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.55;
}

.contact small {
  margin-top: 24px;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.6fr);
  gap: 54px;
  padding: 110px clamp(24px, 9.7vw, 190px) 50px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.site-footer p {
  max-width: 300px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 20px;
}

.site-footer strong {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--muted-strong);
  font-weight: 800;
}

.copyright,
.made {
  grid-column: span 2;
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.made {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.lead-space {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 clamp(24px, 9.7vw, 190px);
  scroll-margin-top: 104px;
  overflow: hidden;
  border-top: 1px solid transparent;
  background:
    radial-gradient(circle at 50% 0%, rgba(63, 115, 255, 0), transparent 24rem),
    transparent;
  transition: grid-template-rows 620ms cubic-bezier(0.2, 0.8, 0.2, 1), padding 620ms ease, border-color 620ms ease, background 620ms ease;
}

.lead-space.open {
  grid-template-rows: 1fr;
  padding-top: 74px;
  padding-bottom: 92px;
  border-color: var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(63, 115, 255, 0.12), transparent 28rem),
    rgba(255, 255, 255, 0.015);
}

.lead-console {
  min-height: 0;
  width: min(920px, calc(100vw - 28px));
  justify-self: center;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(63, 115, 255, 0.08), rgba(255,255,255,0.018)),
    rgba(8, 11, 16, 0.96);
  color: var(--text);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.32);
  transform: translateY(56px) scale(0.975);
  opacity: 0;
  transition: transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 420ms ease;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.lead-space.open .lead-console {
  transform: translateY(0) scale(1);
  opacity: 1;
}

body.theme-light .lead-console {
  background:
    linear-gradient(145deg, rgba(63, 115, 255, 0.08), rgba(255,255,255,0.7)),
    rgba(255, 255, 255, 0.95);
  box-shadow: 0 34px 100px rgba(23, 42, 74, 0.14);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 8, 9, 0.22);
}

.console-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d35050;
}

.console-top span:nth-child(2) { background: #c5a33f; }
.console-top span:nth-child(3) { background: #52b96c; }

.console-top strong {
  flex: 1;
  text-align: center;
  color: rgba(215, 223, 223, 0.36);
  letter-spacing: 0.12em;
}

.console-log {
  display: grid;
  gap: 10px;
  padding: 32px 38px 16px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
}

.console-log p {
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
}

.lead-space.open .console-log p {
  animation: terminal-line 420ms ease forwards;
}

.lead-space.open .console-log p:nth-child(2) { animation-delay: 520ms; }
.lead-space.open .console-log p:nth-child(3) { animation-delay: 1040ms; }
.lead-space.open .console-log p:nth-child(4) { animation-delay: 1660ms; }

.console-log p:first-child {
  color: #c9795c;
}

.console-log .success {
  color: #65d77f;
}

.lead-form {
  display: grid;
  gap: 22px;
  padding: 16px 38px 40px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: max-height 620ms ease, opacity 420ms ease, transform 420ms ease;
}

.lead-space.ready .lead-form {
  max-height: 900px;
  opacity: 1;
  transform: translateY(0);
}

.lead-form h2 {
  margin: 0;
  color: var(--text);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.lead-form h2,
.lead-form label,
.form-status,
.transmit-btn {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(5px);
}

.lead-space.ready .lead-form h2 {
  animation: enquiry-load 560ms ease forwards;
}

.lead-space.ready .lead-form label {
  animation: enquiry-load 560ms ease forwards;
}

.lead-space.ready .lead-form label:nth-of-type(1) { animation-delay: 110ms; }
.lead-space.ready .lead-form label:nth-of-type(2) { animation-delay: 170ms; }
.lead-space.ready .lead-form label:nth-of-type(3) { animation-delay: 230ms; }
.lead-space.ready .lead-form label:nth-of-type(4) { animation-delay: 290ms; }
.lead-space.ready .lead-form label:nth-of-type(5) { animation-delay: 350ms; }
.lead-space.ready .lead-form label:nth-of-type(6) { animation-delay: 410ms; }
.lead-space.ready .lead-form .wide-field { animation-delay: 500ms; }
.lead-space.ready .form-status { animation: enquiry-load 520ms ease 590ms forwards; }
.lead-space.ready .transmit-btn { animation: enquiry-load 520ms ease 660ms forwards; }

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}

.lead-form label {
  display: grid;
  gap: 9px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(187, 202, 214, 0.48);
  border-radius: 0;
  background: rgba(255,255,255,0.02);
  color: var(--text);
  padding: 16px;
  font: 800 16px/1.3 "SFMono-Regular", Consolas, monospace;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #c9795c;
  box-shadow: 0 0 0 3px rgba(201, 121, 92, 0.12);
}

.lead-form .invalid {
  border-color: #ff6b6b;
}

.wide-field {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: #ff9b8c;
  font-size: 13px;
  font-weight: 800;
}

.transmit-btn {
  justify-self: start;
  border: 0;
  background: transparent;
  color: #c9795c;
  cursor: pointer;
  font: 900 16px/1 "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.08em;
}

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

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

@keyframes robot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes robot-orbit {
  to { transform: rotate(360deg); }
}

@keyframes terminal-line {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enquiry-load {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(5px);
  }
  65% {
    opacity: 1;
    transform: translateY(-2px);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes process-load {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes step-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(63, 115, 255, 0.6);
    transform: scale(0.72);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(63, 115, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(63, 115, 255, 0);
    transform: scale(1);
  }
}

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 32px;
  }

  .desktop-nav {
    gap: 20px;
    font-size: 15px;
  }

  .section,
  .hero,
  .site-footer {
    padding-left: 34px;
    padding-right: 34px;
  }

  .pillar-grid,
  .platform-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .platform-grid .tall {
    grid-row: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .menu-btn.open span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-btn.open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 138px;
  }

  .robot-wrap {
    position: relative;
    right: auto;
    top: auto;
    order: -1;
    width: min(78vw, 430px);
    margin: 0 auto -42px;
    transform: none;
  }

  .hero-inner {
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 34px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-stats,
  .result-panel,
  .pillar-grid,
  .platform-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .hero-stats div + div,
  .result-panel div,
  .result-panel div:first-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .hero-stats div:last-child,
  .result-panel div:last-child {
    border-bottom: 0;
  }

  .scroll-label {
    display: none;
  }

  .pillar-grid article,
  .pillar-grid article:nth-child(even),
  .pillar-grid article:nth-child(n + 3) {
    min-height: auto;
  }

  .platform-grid .wide {
    grid-column: auto;
  }

  .neural-card,
  .compliance {
    grid-template-columns: 1fr;
  }

  .integration-grid,
  .platform-grid strong,
  .bars {
    position: static;
    margin-top: 34px;
  }

  .steps {
    margin-left: 0;
  }

  .site-footer {
    gap: 30px;
  }

  .copyright,
  .made {
    grid-column: auto;
    justify-self: start;
    margin-top: 20px;
  }

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

  .lead-console {
    width: 100%;
  }

  .lead-form,
  .console-log {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 78px;
    padding-inline: 18px;
  }

  .brand {
    font-size: 25px;
  }

  .hero,
  .section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: clamp(54px, 15vw, 78px);
  }

  .section h2,
  .contact h2 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .eyebrow {
    padding: 12px 16px;
    font-size: 14px;
  }

  .marquee-content {
    gap: 22px;
    padding: 20px 22px;
  }

  .pillar-grid article,
  .platform-grid article,
  .testimonial-grid article {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .service-icon {
    width: 128px;
    height: 128px;
    border-radius: 26px;
  }

  .service-icon svg {
    width: 78px;
    height: 78px;
  }

  .steps article {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .steps article::before {
    left: 39px;
  }

  .steps article::after {
    left: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
