:root {
  --blue: #3157ff;
  --blue-deep: #1639bd;
  --blue-dark: #102b82;
  --ink: #111827;
  --ink-soft: #394150;
  --paper: #ffffff;
  --silver: #f1f4f9;
  --line: #dce2ea;
  --line-dark: rgba(255, 255, 255, 0.2);
  --acid: #c8f54a;
  --max: 1500px;
  --side: 72px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  transform: translateY(-150%);
}

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

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 150;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 80px;
  padding-right: max(var(--side), calc((100% - var(--max)) / 2));
  padding-left: max(var(--side), calc((100% - var(--max)) / 2));
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  transition: background-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px rgba(20, 31, 61, 0.055);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  justify-self: start;
}

.brand-symbol {
  position: relative;
  display: block;
  width: 30px;
  height: 32px;
}

.brand-symbol i {
  position: absolute;
  display: block;
  width: 8px;
  height: 30px;
  background: var(--blue);
  transform: skew(-16deg);
}

.brand-symbol i:first-child {
  left: 5px;
  bottom: 0;
}

.brand-symbol i:last-child {
  right: 5px;
  top: 0;
  height: 23px;
  background: var(--ink);
}

.brand-type {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-type strong {
  font-size: 18px;
  font-weight: 760;
  line-height: 1;
}

.brand-type small {
  color: #70798a;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 44px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  justify-self: end;
  min-height: 44px;
  padding: 0 8px 0 20px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.nav-action b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  font-size: 16px;
  transition: transform 180ms ease;
}

.nav-action:hover b {
  transform: translate(2px, -2px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  height: calc(100svh - 40px);
  min-height: 720px;
  max-height: 880px;
  overflow: hidden;
  background: #fff;
}

.hero-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  opacity: 0.86;
}

.hero-grid {
  left: 50%;
  width: min(calc(100% - 144px), var(--max));
  border-right: 1px solid rgba(49, 87, 255, 0.09);
  border-left: 1px solid rgba(49, 87, 255, 0.09);
  transform: translateX(-50%);
}

.hero-grid::before,
.hero-grid::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(49, 87, 255, 0.07);
  content: "";
}

.hero-grid::before {
  left: 33.333%;
}

.hero-grid::after {
  right: 33.333%;
}

.hero-orbit,
.hero-core {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit {
  right: 4%;
  top: 15%;
  border: 1px solid rgba(49, 87, 255, 0.18);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-orbit::before {
  inset: 13%;
  border: 1px solid rgba(49, 87, 255, 0.15);
}

.hero-orbit::after {
  top: 49%;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--acid);
  box-shadow: 0 0 0 8px rgba(200, 245, 74, 0.14);
}

.orbit-one {
  width: 560px;
  height: 560px;
  animation: orbitRotate 28s linear infinite;
}

.orbit-two {
  top: 28%;
  right: 14%;
  width: 330px;
  height: 330px;
  border-color: rgba(17, 24, 39, 0.11);
  animation: orbitRotateReverse 18s linear infinite;
}

.hero-core {
  top: 330px;
  right: 236px;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 32px 70px rgba(49, 87, 255, 0.3);
  animation: coreFloat 6s ease-in-out infinite;
}

.hero-core i {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(49, 87, 255, 0.25);
  border-radius: 50%;
}

.hero-core span {
  font-size: 34px;
  font-weight: 820;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(calc(100% - 144px), var(--max));
  height: 100%;
  margin: 0 auto;
  padding: 150px 0 42px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #596174;
  font-size: 12px;
  font-weight: 700;
}

.hero-kicker span {
  color: var(--blue);
}

.hero-kicker i {
  display: block;
  width: 34px;
  height: 1px;
  background: #a9b0bd;
}

.hero h1 {
  display: flex;
  align-items: baseline;
  margin-top: 34px;
  font-size: 150px;
  font-weight: 800;
  line-height: 0.88;
}

.hero h1 span {
  color: var(--ink);
}

.hero h1 strong {
  color: var(--blue);
  font-size: 0.9em;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(350px, 0.92fr) minmax(360px, 0.68fr);
  gap: 72px;
  align-items: end;
  width: 78%;
  margin-top: 62px;
}

.hero-statement {
  font-size: 42px;
  font-weight: 680;
  line-height: 1.18;
}

.hero-intro {
  padding-left: 24px;
  border-left: 2px solid var(--blue);
}

.hero-intro > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  min-height: 54px;
  padding: 0 18px 0 22px;
  font-size: 15px;
  font-weight: 650;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 35px rgba(49, 87, 255, 0.2);
  transition: background-color 180ms ease, transform 180ms ease;
}

.button-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.button-primary span {
  font-size: 19px;
  transition: transform 180ms ease;
}

.button-primary:hover span {
  transform: translate(2px, -2px);
}

.text-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.text-link span {
  margin-left: 14px;
  color: var(--blue);
}

.hero-company {
  margin-top: auto;
  color: #7b8290;
  font-size: 12px;
}

.hero-scroll {
  position: absolute;
  right: 26px;
  bottom: 36px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #767d8b;
  font-size: 9px;
  font-weight: 750;
  writing-mode: vertical-rl;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 52px;
  background: var(--blue);
}

.proof-bar {
  display: grid;
  grid-template-columns: 0.75fr repeat(4, 1fr);
  min-height: 160px;
  padding-right: max(var(--side), calc((100% - var(--max)) / 2));
  padding-left: max(var(--side), calc((100% - var(--max)) / 2));
  color: #fff;
  background: var(--blue);
}

.proof-bar > p,
.proof-bar > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-bar > p {
  padding-left: 0;
  font-size: 11px;
  font-weight: 750;
}

.proof-bar strong {
  font-size: 37px;
  font-weight: 720;
  line-height: 1;
}

.proof-bar strong small {
  margin-left: 3px;
  font-size: 17px;
}

.proof-bar span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #747c8b;
}

.section-index span {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid #bbc3cf;
  place-items: center;
  font-size: 11px;
  font-weight: 750;
}

.section-index p {
  font-size: 11px;
  font-weight: 750;
}

.section-index-light {
  color: rgba(255, 255, 255, 0.65);
}

.section-index-light span {
  border-color: rgba(255, 255, 255, 0.4);
}

.value-section {
  width: min(calc(100% - 144px), var(--max));
  margin: 0 auto;
  padding: 126px 0 132px;
}

.value-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: end;
  margin-top: 72px;
}

.value-heading > p {
  color: #717987;
  font-size: 20px;
  line-height: 1.65;
}

.value-heading h2,
.system-head h2,
.capability-intro h2,
.results-head h2,
.about-statement h2,
.faq-section h2,
.contact-copy h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.18;
}

.value-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 88px;
  border-top: 1px solid var(--line);
}

.value-principles article {
  min-height: 270px;
  padding: 32px 44px 30px 0;
  border-right: 1px solid var(--line);
}

.value-principles article + article {
  padding-left: 44px;
}

.value-principles span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}

.value-principles h3 {
  margin-top: 58px;
  font-size: 34px;
  font-weight: 680;
}

.value-principles p {
  max-width: 300px;
  margin-top: 20px;
  color: #667080;
  font-size: 15px;
  line-height: 1.8;
}

.system-section {
  padding: 118px var(--side) 110px;
  color: #fff;
  background: var(--blue-deep);
}

.system-head,
.system-console,
.outcome-row {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.system-head {
  display: grid;
  grid-template-columns: 0.55fr 1fr 0.72fr;
  gap: 70px;
  align-items: end;
}

.system-head > p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.9;
}

.system-console {
  margin-top: 78px;
  padding: 0 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 35px 90px rgba(4, 18, 70, 0.2);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 750;
}

.console-status {
  display: flex;
  align-items: center;
  gap: 9px;
}

.console-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(200, 245, 74, 0.12);
  animation: statusPulse 2.4s ease-out infinite;
}

.system-layer {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.layer-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-height: 96px;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.layer-label small {
  color: var(--acid);
  font-size: 10px;
}

.layer-label strong {
  font-size: 15px;
}

.strategy-items,
.journey-items,
.data-layer > div,
.channel-layer > div {
  display: grid;
  align-items: stretch;
  padding: 18px 0 18px 24px;
}

.strategy-items {
  grid-template-columns: repeat(5, 1fr);
}

.strategy-items span,
.data-layer > div span,
.channel-layer > div span {
  display: grid;
  min-height: 58px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  place-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  transition: color 180ms ease, background-color 180ms ease;
}

.strategy-items span:hover,
.data-layer > div span:hover,
.channel-layer > div span:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.journey-items {
  grid-template-columns: repeat(5, minmax(90px, 1fr) 24px) minmax(90px, 1fr);
  gap: 5px;
}

.journey-items span,
.journey-items i {
  display: grid;
  min-height: 58px;
  place-items: center;
}

.journey-items span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.journey-items i {
  color: var(--acid);
  font-style: normal;
}

.engine-layer {
  grid-template-columns: 180px 230px 1fr;
}

.engine-layer > .layer-label {
  min-height: 328px;
}

.engine-core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 26px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.engine-core::before,
.engine-core::after {
  position: absolute;
  border: 1px solid rgba(200, 245, 74, 0.3);
  border-radius: 50%;
  content: "";
}

.engine-core::before {
  width: 118px;
  height: 118px;
}

.engine-core::after {
  width: 154px;
  height: 154px;
}

.engine-core small,
.engine-core strong {
  position: relative;
  z-index: 2;
}

.engine-core small {
  margin-bottom: 18px;
  color: var(--acid);
  font-size: 8px;
  font-weight: 750;
}

.engine-core strong {
  font-size: 23px;
  line-height: 1.3;
}

.engine-core span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
}

.engine-units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.engine-units article {
  min-height: 138px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 180ms ease;
}

.engine-units article:hover {
  background: rgba(255, 255, 255, 0.08);
}

.engine-units small {
  color: var(--acid);
  font-size: 9px;
}

.engine-units h3 {
  margin-top: 18px;
  font-size: 16px;
}

.engine-units p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.6;
}

.data-layer > div {
  grid-template-columns: repeat(5, 1fr);
}

.channel-layer > div {
  grid-template-columns: repeat(9, 1fr);
}

.channel-layer > div span {
  font-size: 11px;
}

.console-loop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  min-height: 76px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(5, 21, 72, 0.4);
  font-size: 12px;
  font-weight: 650;
}

.console-loop i {
  color: var(--acid);
  font-style: normal;
}

.outcome-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.outcome-row i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
}

.capability-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  width: min(calc(100% - 144px), var(--max));
  margin: 0 auto;
  padding: 128px 0;
}

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

.capability-intro h2 {
  margin-top: 70px;
}

.capability-intro > p {
  max-width: 480px;
  margin-top: 36px;
  color: #687182;
  font-size: 16px;
  line-height: 1.9;
}

.capability-list {
  border-top: 1px solid var(--ink);
}

.capability-list article {
  display: grid;
  grid-template-columns: 48px 190px 1fr 30px;
  gap: 22px;
  align-items: center;
  min-height: 136px;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding 180ms ease;
}

.capability-list article:hover {
  padding-right: 10px;
  padding-left: 10px;
  color: var(--blue);
}

.capability-list article > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
}

.capability-list article > div p {
  color: #878e9b;
  font-size: 9px;
  font-weight: 750;
}

.capability-list h3 {
  margin-top: 8px;
  font-size: 25px;
  font-weight: 680;
}

.capability-list article > p {
  color: #6d7583;
  font-size: 14px;
  line-height: 1.75;
}

.capability-list b {
  font-size: 18px;
}

.results-section {
  padding: 122px var(--side) 112px;
  background: var(--silver);
}

.results-head,
.result-feature,
.case-metrics,
.data-note {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.results-head {
  display: grid;
  grid-template-columns: 0.52fr 1fr 0.72fr;
  gap: 70px;
  align-items: end;
}

.results-head > p {
  color: #697282;
  font-size: 16px;
  line-height: 1.9;
}

.result-feature {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  min-height: 550px;
  margin-top: 76px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(30, 43, 78, 0.085);
}

.result-feature figure {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border: 12px solid #fff;
  border-right: 0;
  background: #e9edf4;
}

.result-feature figure::before {
  position: absolute;
  z-index: 2;
  top: 23px;
  left: 25px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff6b6b;
  box-shadow: 12px 0 #ffc857, 24px 0 #72d991;
  content: "";
}

.result-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-top: 26px solid #f7f9fc;
  transition: transform 600ms ease;
}

.result-feature:hover img {
  transform: scale(1.018);
}

.result-feature figcaption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(17, 24, 39, 0.86);
  font-size: 9px;
  font-weight: 720;
}

.result-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px;
}

.result-feature > div > p {
  color: var(--blue);
  font-size: 10px;
  font-weight: 750;
}

.result-feature h3 {
  margin-top: 26px;
  font-size: 38px;
  line-height: 1.28;
}

.result-feature > div > span {
  margin-top: 28px;
  color: #687181;
  font-size: 15px;
  line-height: 1.85;
}

.result-feature a {
  align-self: flex-start;
  margin-top: 48px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease, padding-right 180ms ease;
}

.result-feature a:hover {
  padding-right: 8px;
  color: var(--blue);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid #cdd4de;
}

.case-metrics article {
  min-height: 300px;
  padding: 40px 38px 30px 0;
  border-right: 1px solid #cdd4de;
  transition: background-color 180ms ease, padding-left 180ms ease;
}

.case-metrics article:hover {
  background: rgba(255, 255, 255, 0.55);
}

.case-metrics article + article {
  padding-left: 38px;
}

.case-metrics p {
  color: #667080;
  font-size: 13px;
}

.case-metrics strong {
  display: block;
  margin-top: 44px;
  font-size: 58px;
  font-weight: 720;
  line-height: 1;
}

.case-metrics strong small {
  font-size: 22px;
}

.case-metrics > article > span {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 13px;
}

.case-metrics footer {
  margin-top: 38px;
  color: #777f8e;
  font-size: 12px;
}

.data-note {
  margin-top: 28px;
  color: #8a919d;
  font-size: 11px;
}

.channel-marquee {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 118px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
  white-space: nowrap;
}

.channel-marquee p {
  padding: 0 20px;
  font-size: 18px;
  font-weight: 650;
}

.channel-marquee i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.about-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 660px;
  background: #e8edf7;
}

.about-statement,
.about-content {
  padding: 126px var(--side);
}

.about-statement {
  color: #fff;
  background: var(--blue-dark);
}

.about-statement h2 {
  margin-top: 100px;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-content > p {
  max-width: 660px;
  font-size: 22px;
  line-height: 1.75;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #c6cedc;
}

.about-facts span {
  min-height: 82px;
  padding: 28px 20px 20px 0;
  border-right: 1px solid #c6cedc;
  border-bottom: 1px solid #c6cedc;
  color: #596476;
  font-size: 13px;
}

.about-facts span:nth-child(even) {
  padding-left: 24px;
  border-right: 0;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
  width: min(calc(100% - 144px), var(--max));
  margin: 0 auto;
  padding: 126px 0;
}

.faq-section h2 {
  margin-top: 70px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 48px 1fr 30px;
  gap: 18px;
  align-items: center;
  min-height: 106px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 650;
}

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

.faq-list summary span {
  color: var(--blue);
  font-size: 11px;
}

.faq-list summary b {
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq-list details > p {
  max-width: 680px;
  padding: 0 45px 34px 66px;
  color: #697283;
  font-size: 14px;
  line-height: 1.9;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  min-height: 720px;
  color: #fff;
  background: var(--blue);
}

.contact-copy,
.contact-form {
  padding: 112px var(--side);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-copy > p {
  color: var(--acid);
  font-size: 11px;
  font-weight: 750;
}

.contact-copy h2 {
  margin-top: 58px;
}

.contact-copy > span {
  max-width: 560px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.85;
}

.contact-copy footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.contact-copy footer strong {
  font-size: 15px;
}

.contact-copy footer small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  align-content: center;
  background: rgba(14, 42, 140, 0.28);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form .website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .message-field {
  grid-column: 1 / -1;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 700;
  transition: color 180ms ease;
}

.contact-form label:focus-within > span {
  color: var(--acid);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--acid);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form option {
  color: var(--ink);
}

.contact-form button {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  margin-top: 10px;
  padding: 0 18px 0 22px;
  border: 0;
  color: var(--ink);
  background: var(--acid);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-form button:hover {
  background: #d7ff6d;
  transform: translateY(-2px);
}

.contact-form button.is-submitted {
  color: #fff;
  background: var(--blue-dark);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form button span {
  font-size: 21px;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.form-note.is-error {
  color: #fff1a8;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 112px;
  padding: 0 var(--side);
  background: #fff;
}

.site-footer p {
  color: #77808f;
  font-size: 11px;
}

.site-footer > a:last-child {
  justify-self: end;
  font-size: 10px;
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes orbitRotate {
  to { transform: rotate(360deg); }
}

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

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

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 245, 74, 0.36); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(200, 245, 74, 0); }
}

@media (max-width: 1240px) {
  :root { --side: 42px; }
  .hero h1 { font-size: 122px; }
  .hero-bottom { width: 82%; gap: 50px; }
  .hero-orbit { right: -7%; }
  .hero-core { right: 155px; }
  .system-head,
  .results-head { grid-template-columns: 0.45fr 1fr 0.7fr; gap: 40px; }
  .engine-layer { grid-template-columns: 150px 190px 1fr; }
  .system-layer { grid-template-columns: 150px 1fr; }
  .engine-layer { grid-template-columns: 150px 190px 1fr; }
  .channel-layer > div { grid-template-columns: repeat(5, 1fr); }
  .capability-section { gap: 60px; }
  .result-feature > div { padding: 44px; }
}

@media (max-width: 960px) {
  :root { --side: 26px; }
  .site-header { grid-template-columns: 1fr auto; height: 72px; }
  .nav-action { display: none; }
  .menu-button { display: block; justify-self: end; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 38px 26px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { width: 100%; padding: 24px 0; border-bottom: 1px solid var(--line); font-size: 24px; }
  .hero { height: calc(100svh - 32px); min-height: 700px; max-height: 810px; }
  .hero-inner { width: calc(100% - 52px); padding-top: 128px; }
  .hero-grid { width: calc(100% - 52px); }
  .hero h1 { margin-top: 34px; font-size: 106px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 26px; width: 68%; margin-top: 58px; }
  .hero-statement { font-size: 36px; }
  .hero-orbit { top: 25%; right: -25%; }
  .hero-core { top: 390px; right: 80px; width: 96px; height: 96px; }
  .proof-bar { grid-template-columns: repeat(4, 1fr); padding: 0 26px; }
  .proof-bar > p { display: none; }
  .proof-bar > div { padding: 24px 18px; }
  .value-section,
  .capability-section,
  .faq-section { width: calc(100% - 52px); }
  .value-heading { grid-template-columns: 1fr; gap: 38px; }
  .value-heading > p br { display: none; }
  .value-heading h2,
  .system-head h2,
  .capability-intro h2,
  .results-head h2,
  .about-statement h2,
  .faq-section h2,
  .contact-copy h2 { font-size: 48px; }
  .system-head,
  .results-head { grid-template-columns: 1fr; gap: 34px; }
  .system-head > p,
  .results-head > p { max-width: 560px; }
  .system-console { padding: 0 18px 18px; }
  .system-layer,
  .engine-layer { grid-template-columns: 1fr; }
  .layer-label { min-height: 68px !important; border-right: 0; }
  .layer-label { flex-direction: row; align-items: center; justify-content: flex-start; }
  .engine-core { min-height: 220px; }
  .engine-units { margin: 0 0 22px; }
  .journey-items { overflow-x: auto; grid-template-columns: repeat(5, 100px 24px) 100px; }
  .capability-section { grid-template-columns: 1fr; }
  .capability-intro { position: static; }
  .capability-intro h2 { margin-top: 50px; }
  .result-feature { grid-template-columns: 1fr; }
  .result-feature figure { min-height: 410px; }
  .about-section { grid-template-columns: 1fr; }
  .about-statement { min-height: 450px; }
  .faq-section { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-copy { min-height: 570px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.24); }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
}

@media (max-width: 640px) {
  :root { --side: 18px; }
  .site-header { height: 66px; padding: 0 18px; }
  .brand-type strong { font-size: 16px; }
  .brand-symbol { transform: scale(0.88); transform-origin: left center; }
  .main-nav { inset: 66px 0 0; padding: 28px 18px; }
  .hero { height: calc(100svh - 24px); min-height: 640px; max-height: 740px; }
  .hero-inner { width: calc(100% - 36px); padding: 104px 0 24px; }
  .hero-grid { width: calc(100% - 36px); }
  .hero-kicker { font-size: 9px; }
  .hero h1 { margin-top: 34px; font-size: 78px; }
  .hero-bottom { width: 100%; margin-top: 54px; }
  .hero-statement { font-size: 31px; }
  .hero-intro { width: 100%; padding-left: 16px; }
  .hero-intro > p { max-width: 330px; font-size: 14px; line-height: 1.75; }
  .hero-actions { gap: 20px; margin-top: 24px; }
  .button { min-width: 166px; min-height: 50px; font-size: 13px; }
  .text-link { font-size: 12px; }
  .hero-orbit { top: 15%; right: -58%; width: 420px; height: 420px; opacity: 0.7; }
  .orbit-two { display: none; }
  .hero-core { top: 230px; right: 28px; width: 72px; height: 72px; }
  .hero-core span { font-size: 23px; }
  .hero-scroll { display: none; }
  .hero-company { font-size: 10px; }
  .proof-bar { grid-template-columns: repeat(2, 1fr); min-height: 250px; padding: 0 18px; }
  .proof-bar > div { min-height: 125px; padding: 20px 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .proof-bar strong { font-size: 31px; }
  .proof-bar span { margin-top: 10px; font-size: 11px; }
  .value-section,
  .capability-section,
  .faq-section { width: calc(100% - 36px); padding: 84px 0; }
  .value-heading { margin-top: 54px; }
  .value-heading > p { font-size: 16px; }
  .value-heading h2,
  .system-head h2,
  .capability-intro h2,
  .results-head h2,
  .about-statement h2,
  .faq-section h2,
  .contact-copy h2 { font-size: 38px; }
  .value-principles { grid-template-columns: 1fr; margin-top: 70px; }
  .value-principles article,
  .value-principles article + article { min-height: 220px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-principles h3 { margin-top: 36px; font-size: 28px; }
  .system-section { padding: 82px 18px 76px; }
  .system-console { margin-top: 58px; padding: 0 12px 12px; }
  .console-top { height: 50px; font-size: 8px; }
  .strategy-items { grid-template-columns: repeat(2, 1fr); padding-left: 0; }
  .strategy-items span { min-height: 48px; font-size: 11px; }
  .journey-items { padding-left: 0; }
  .engine-core { min-height: 190px; margin: 12px 0 20px; }
  .engine-units { grid-template-columns: repeat(2, 1fr); }
  .engine-units article { min-height: 132px; padding: 16px 12px; }
  .engine-units h3 { font-size: 14px; }
  .engine-units p { font-size: 9px; }
  .data-layer > div,
  .channel-layer > div { grid-template-columns: repeat(2, 1fr); padding-left: 0; }
  .data-layer > div span,
  .channel-layer > div span { min-height: 46px; font-size: 10px; }
  .console-loop { flex-wrap: wrap; gap: 12px 20px; min-height: 92px; padding: 18px; font-size: 10px; }
  .outcome-row { flex-wrap: wrap; gap: 18px 12px; justify-content: flex-start; margin-top: 38px; }
  .capability-section { gap: 62px; }
  .capability-intro h2 { margin-top: 48px; }
  .capability-list article { grid-template-columns: 34px 1fr 22px; gap: 12px; min-height: 132px; }
  .capability-list article > p { grid-column: 2 / 4; padding-bottom: 24px; font-size: 13px; }
  .capability-list article > div { padding-top: 24px; }
  .capability-list b { padding-top: 24px; }
  .results-section { padding: 82px 18px 76px; }
  .result-feature { margin-top: 58px; }
  .result-feature figure { min-height: 280px; }
  .result-feature > div { padding: 34px 24px 40px; }
  .result-feature h3 { font-size: 30px; }
  .case-metrics { grid-template-columns: 1fr; }
  .case-metrics article,
  .case-metrics article + article { min-height: 250px; padding: 32px 0; border-right: 0; border-bottom: 1px solid #cdd4de; }
  .case-metrics strong { margin-top: 34px; font-size: 50px; }
  .channel-marquee { justify-content: flex-start; overflow-x: auto; min-height: 96px; }
  .channel-marquee p { font-size: 15px; }
  .about-statement,
  .about-content { padding: 78px 18px; }
  .about-statement { min-height: 420px; }
  .about-statement h2 { margin-top: 80px; }
  .about-content { gap: 70px; }
  .about-content > p { font-size: 18px; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts span,
  .about-facts span:nth-child(even) { min-height: 68px; padding: 23px 0; border-right: 0; }
  .faq-section { gap: 60px; }
  .faq-section h2 { margin-top: 48px; }
  .faq-list summary { grid-template-columns: 32px 1fr 24px; min-height: 92px; font-size: 16px; }
  .faq-list details > p { padding: 0 20px 28px 50px; font-size: 13px; }
  .contact-copy,
  .contact-form { padding: 78px 18px; }
  .contact-copy { min-height: 550px; }
  .contact-copy h2 { margin-top: 46px; }
  .contact-form { grid-template-columns: 1fr; gap: 28px; }
  .contact-form .message-field,
  .contact-form button,
  .form-note { grid-column: auto; }
  .site-footer { min-height: 96px; padding: 0 18px; }
  .site-footer > a:last-child { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
