html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #071327;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.skipLink {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: #06152b;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skipLink:focus {
  transform: translateY(0);
}

.page {
  --ink: #071327;
  --muted: #607087;
  --blue: #176fea;
  --blue-deep: #0f55d9;
  --cyan: #00c8f5;
  --navy: #06152b;
  --panel: #081d38;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

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

.page svg {
  display: block;
}

.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: min(100% - 64px, 1240px);
  min-height: 84px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.brandLogo {
  width: 194px;
  height: auto;
}

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

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.headerCta {
  display: inline-flex;
  width: fit-content;
  height: 42px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 0 18px;
  text-decoration: none;
  transition: 180ms ease;
}

.headerCta svg,
.primaryButton svg,
.lightButton svg,
.textLink svg,
.productHeading h2 svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.headerCta:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  min-height: 810px;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 28%, rgba(23, 111, 234, 0.29), transparent 29%),
    radial-gradient(circle at 14% 78%, rgba(0, 200, 245, 0.11), transparent 23%),
    linear-gradient(135deg, #041125 0%, #061a34 54%, #082143 100%);
  color: #fff;
  padding: 144px max(32px, calc((100vw - 1240px) / 2)) 80px;
}

.heroGlow {
  position: absolute;
  top: -130px;
  right: -40px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(0, 200, 245, 0.1);
  border-radius: 50%;
}

.heroGlow::before,
.heroGlow::after {
  position: absolute;
  border: 1px solid rgba(0, 200, 245, 0.08);
  border-radius: 50%;
  content: "";
  inset: 90px;
}

.heroGlow::after {
  inset: 190px;
}

.heroGrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(100deg, #000 0%, transparent 74%);
  pointer-events: none;
}

.heroCopy,
.productStage {
  position: relative;
  z-index: 2;
}

.heroCopy {
  max-width: 580px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #79d9ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--cyan);
}

.heroCopy h1 {
  max-width: 600px;
  margin: 26px 0 0;
  font-family: Montserrat, Inter, "Segoe UI", sans-serif;
  font-size: clamp(48px, 5.1vw, 74px);
  font-weight: 800;
  letter-spacing: -2.8px;
  line-height: 1.01;
}

.heroCopy h1 span {
  color: #3ec8ff;
}

.heroLead {
  max-width: 550px;
  margin: 28px 0 0;
  color: rgba(228, 242, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.heroActions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
}

.primaryButton,
.secondaryButton,
.lightButton {
  display: inline-flex;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  padding: 0 22px;
  text-decoration: none;
  transition: 180ms ease;
}

.primaryButton {
  background: linear-gradient(100deg, var(--blue) 0%, #168df2 100%);
  box-shadow: 0 14px 36px rgba(23, 111, 234, 0.26);
  color: #fff;
}

.primaryButton:hover {
  background: linear-gradient(100deg, var(--blue-deep), var(--blue));
  transform: translateY(-2px);
}

.secondaryButton {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
}

.secondaryButton:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.heroSignals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
  color: rgba(222, 238, 251, 0.58);
  font-size: 11px;
  font-weight: 650;
}

.heroSignals span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.heroSignals svg,
.floatingDecision svg,
.platformCopy li svg,
.panelResult svg {
  width: 15px;
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.productStage {
  min-width: 0;
  transform: perspective(1400px) rotateY(-3deg);
  transform-origin: center right;
}

.productWindow {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #f6f8fb;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}

.windowTop {
  display: flex;
  height: 57px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #081a33;
  padding: 0 20px;
}

.windowBrand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.windowDots {
  display: flex;
  gap: 6px;
}

.windowDots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.productBody {
  padding: 24px 25px 26px;
}

.productHeading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--ink);
}

.microLabel,
.panelLabel {
  color: #718096;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.productHeading h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 7px 0 0;
  font-size: 21px;
  letter-spacing: -0.5px;
}

.productHeading h2 svg {
  color: var(--blue);
}

.statusPill {
  border: 1px solid #c9d4e3;
  border-radius: 999px;
  background: #fff;
  color: #627188;
  font-size: 9px;
  font-weight: 750;
  padding: 7px 10px;
}

.summaryGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.summaryGrid article {
  min-width: 0;
  border: 1px solid #dde4ed;
  border-radius: 7px;
  background: #fff;
  padding: 13px;
}

.summaryGrid article > span,
.summaryGrid small {
  display: block;
  overflow: hidden;
  color: #7b899a;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summaryGrid strong {
  display: block;
  overflow: hidden;
  margin: 7px 0 4px;
  color: var(--ink);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summaryFeatured {
  border-color: #bbd9ff !important;
  background: #eff6ff !important;
}

.summaryFeatured strong {
  color: var(--blue) !important;
}

.chartCard {
  margin-top: 12px;
  border: 1px solid #dde4ed;
  border-radius: 7px;
  background: #fff;
  padding: 16px 16px 8px;
}

.chartHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--ink);
}

.chartHeader strong {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.legend {
  display: flex;
  gap: 12px;
  color: #718096;
  font-size: 8px;
}

.legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.legend i {
  width: 12px;
  height: 2px;
  background: var(--blue);
}

.legend span:last-child i {
  background: var(--cyan);
}

.chart {
  position: relative;
  height: 172px;
  margin-top: 4px;
}

.chart svg {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.chartLines {
  position: absolute;
  z-index: 1;
  display: grid;
  inset: 10px 0 14px;
}

.chartLines span {
  border-bottom: 1px dashed #e3e8ef;
}

.floatingTag,
.floatingDecision {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(8, 29, 56, 0.94);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.floatingTag {
  top: -19px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ddecf8;
  font-size: 10px;
  font-weight: 650;
  padding: 10px 13px;
}

.liveDot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 200, 245, 0.12);
}

.floatingDecision {
  right: -24px;
  bottom: -32px;
  width: 210px;
  padding: 15px 17px;
}

.floatingDecision > span {
  display: block;
  color: #68d6ff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.floatingDecision strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 13px;
}

.floatingDecision small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  color: rgba(222, 239, 251, 0.62);
  font-size: 9px;
}

.contextStrip {
  display: flex;
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid #e4e9f0;
  background: #fff;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
}

.contextStrip p {
  margin: 0;
  color: #7a8797;
  font-size: 12px;
  font-weight: 650;
}

.contextStrip div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contextStrip span {
  color: #27384f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.contextStrip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b8c4d3;
}

.solution {
  padding: 126px max(32px, calc((100vw - 1240px) / 2)) 118px;
}

.sectionIntro {
  display: grid;
  max-width: 770px;
  grid-template-columns: 1fr 0.62fr;
  column-gap: 64px;
}

.sectionKicker {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1.8px;
}

.sectionIntro .sectionKicker {
  grid-column: 1 / -1;
}

.sectionIntro h2,
.platformCopy h2,
.methodHeading h2,
.finalCta h2 {
  margin: 16px 0 0;
  font-family: Montserrat, Inter, "Segoe UI", sans-serif;
  font-size: clamp(35px, 3.5vw, 48px);
  font-weight: 780;
  letter-spacing: -1.5px;
  line-height: 1.12;
}

.sectionIntro p,
.platformCopy > p,
.methodHeading > p {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.capabilityGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.capabilityCard {
  position: relative;
  min-height: 294px;
  overflow: hidden;
  border: 1px solid #dde4ed;
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  transition: 220ms ease;
}

.capabilityCard::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 88px;
  height: 88px;
  border-top: 1px solid #e9eef4;
  border-left: 1px solid #e9eef4;
  content: "";
  opacity: 0.6;
  transform: translate(36px, 36px) rotate(45deg);
}

.capabilityCard:hover {
  border-color: #aecdf7;
  box-shadow: 0 18px 50px rgba(25, 64, 112, 0.08);
  transform: translateY(-4px);
}

.cardTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.cardTop > span {
  color: #a1adbb;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
}

.cardTop svg {
  width: 48px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.capabilityCard h3 {
  max-width: 280px;
  margin: 50px 0 0;
  font-size: 20px;
  letter-spacing: -0.35px;
}

.capabilityCard p {
  max-width: 315px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.platform {
  display: grid;
  grid-template-columns: minmax(460px, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 100px;
  background: #f5f8fc;
  padding: 120px max(32px, calc((100vw - 1240px) / 2));
}

.platformVisual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 9px;
  background:
    radial-gradient(circle at 20% 18%, rgba(0, 200, 245, 0.19), transparent 24%),
    linear-gradient(145deg, #06152b, #0a2344);
  box-shadow: 0 26px 65px rgba(6, 21, 43, 0.2);
}

.networkMap {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.networkMap svg {
  width: 100%;
  height: 100%;
  fill: var(--cyan);
  stroke: #2b89e9;
  stroke-width: 1.2;
}

.platformPanel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72%, 420px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 21, 43, 0.92);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
  color: #fff;
  padding: 25px;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.panelLabel {
  color: #62d4ff;
}

.panelRoute {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 26px;
  font-size: 14px;
  font-weight: 750;
}

.panelRoute i {
  position: relative;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.panelRoute i::before,
.panelRoute i::after {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.panelRoute i::before {
  left: 0;
}

.panelRoute i::after {
  right: 0;
}

.panelMetric {
  margin-top: 16px;
}

.panelMetric > span {
  color: rgba(226, 239, 250, 0.66);
  font-size: 10px;
}

.panelMetric > div {
  height: 4px;
  margin-top: 7px;
  background: rgba(255, 255, 255, 0.09);
}

.panelMetric i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.panelResult {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.panelResult > svg {
  width: 27px;
}

.panelResult span {
  display: grid;
}

.panelResult small {
  color: #6bd8ff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.panelResult strong {
  margin-top: 4px;
  font-size: 13px;
}

.platformCopy h2 {
  max-width: 490px;
}

.platformCopy > p {
  max-width: 500px;
}

.platformCopy ul {
  display: grid;
  gap: 15px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.platformCopy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #33455c;
  font-size: 14px;
  font-weight: 650;
}

.platformCopy li svg {
  width: 18px;
  flex: 0 0 auto;
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  border-bottom: 1px solid #a8c9f6;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  padding-bottom: 5px;
  text-decoration: none;
}

.textLink:hover {
  border-color: var(--blue);
}

.method {
  padding: 125px max(32px, calc((100vw - 1240px) / 2)) 132px;
}

.methodHeading {
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  align-items: end;
  gap: 80px;
}

.methodHeading > p {
  margin-bottom: 5px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
}

.workflow article {
  position: relative;
  min-height: 220px;
  padding-right: 58px;
}

.stepNumber {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #afcfff;
  border-radius: 50%;
  background: #f2f7ff;
  color: var(--blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
}

.stepLine {
  position: absolute;
  top: 24px;
  left: 64px;
  width: calc(100% - 80px);
  height: 1px;
  background: linear-gradient(90deg, #9fc7ff, #dbe5f1);
}

.workflow h3 {
  margin: 31px 0 0;
  font-size: 18px;
}

.workflow p {
  max-width: 300px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.finalCta {
  position: relative;
  display: flex;
  min-height: 356px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 200, 245, 0.18), transparent 27%),
    linear-gradient(130deg, #06152b, #092448);
  color: #fff;
  padding: 76px max(32px, calc((100vw - 1240px) / 2));
}

.ctaNetwork {
  position: absolute;
  right: -60px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(0, 200, 245, 0.1);
  border-radius: 50%;
}

.ctaNetwork::before,
.ctaNetwork::after {
  position: absolute;
  border: 1px solid rgba(0, 200, 245, 0.1);
  border-radius: 50%;
  content: "";
  inset: 82px;
}

.ctaNetwork::after {
  inset: 174px;
  background: rgba(0, 200, 245, 0.06);
}

.finalCta > *:not(.ctaNetwork) {
  position: relative;
  z-index: 2;
}

.finalCta .sectionKicker {
  color: #68d9ff;
}

.finalCta h2 {
  max-width: 750px;
  font-size: clamp(36px, 4.3vw, 55px);
}

.finalCta p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(226, 240, 251, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

.contactAddress {
  color: #68d9ff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.contactAddress:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lightButton {
  flex: 0 0 auto;
  background: #fff;
  color: var(--navy);
}

.lightButton:hover {
  background: #eaf7ff;
  transform: translateY(-2px);
}

.footer {
  display: grid;
  min-height: 220px;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 18px 50px;
  background: #040e1e;
  color: rgba(222, 237, 250, 0.58);
  padding: 52px max(32px, calc((100vw - 1240px) / 2)) 38px;
}

.footerBrand {
  display: flex;
  align-items: center;
}

.footer > p {
  grid-column: 1;
  margin: 0;
  font-size: 12px;
}

.footer > div:nth-of-type(2) {
  display: flex;
  grid-row: 1;
  grid-column: 2;
  gap: 28px;
}

.footer a {
  color: rgba(235, 245, 253, 0.69);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer > small {
  grid-column: 1 / -1;
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(222, 237, 250, 0.36);
  font-size: 10px;
  padding-top: 23px;
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 152px;
    padding-bottom: 110px;
  }

  .heroCopy {
    max-width: 720px;
  }

  .productStage {
    width: min(100%, 720px);
    margin: 36px auto 0;
    transform: none;
  }

  .platform {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .platformVisual {
    width: min(100%, 720px);
  }

  .platformCopy {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .header {
    width: calc(100% - 36px);
    min-height: 74px;
  }

  .brandLogo {
    width: 154px;
    height: auto;
  }

  .headerCta {
    height: 38px;
    padding: 0 13px;
  }

  .headerCta svg {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 125px 20px 90px;
  }

  .heroCopy h1 {
    font-size: clamp(43px, 13.2vw, 60px);
    letter-spacing: -2px;
  }

  .heroLead {
    font-size: 16px;
  }

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

  .primaryButton,
  .secondaryButton {
    width: 100%;
  }

  .heroSignals {
    display: grid;
  }

  .productStage {
    margin-top: 28px;
  }

  .productBody {
    padding: 18px 15px 18px;
  }

  .productHeading {
    gap: 12px;
  }

  .productHeading h2 {
    font-size: 17px;
  }

  .statusPill {
    display: none;
  }

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

  .summaryGrid article:nth-child(2) {
    display: none;
  }

  .chart {
    height: 140px;
  }

  .floatingTag {
    right: 12px;
  }

  .floatingDecision {
    right: 10px;
    bottom: -48px;
  }

  .contextStrip {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 20px;
  }

  .contextStrip div {
    flex-wrap: wrap;
    gap: 13px 15px;
  }

  .solution,
  .method {
    padding: 90px 20px;
  }

  .sectionIntro,
  .methodHeading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sectionIntro p,
  .methodHeading > p {
    margin-top: 20px;
  }

  .capabilityGrid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .capabilityCard {
    min-height: 260px;
  }

  .platform {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
    padding: 90px 20px;
  }

  .platformVisual {
    min-height: 430px;
  }

  .platformPanel {
    width: calc(100% - 40px);
  }

  .workflow {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
  }

  .workflow article {
    min-height: auto;
    padding: 0 0 0 68px;
  }

  .stepNumber {
    position: absolute;
    top: 0;
    left: 0;
  }

  .stepLine {
    top: 58px;
    bottom: -32px;
    left: 24px;
    width: 1px;
    height: auto;
    background: linear-gradient(#9fc7ff, #dbe5f1);
  }

  .workflow h3 {
    margin-top: 0;
    padding-top: 4px;
  }

  .finalCta {
    align-items: flex-start;
    flex-direction: column;
    padding: 76px 20px;
  }

  .lightButton {
    width: 100%;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 48px 20px 32px;
  }

  .footer > div:nth-of-type(2) {
    flex-wrap: wrap;
    grid-row: auto;
    grid-column: 1;
    gap: 16px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page *,
  .page *::before,
  .page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
