.services-page {
  background: #ffffff;
  color: #334155;
}

.services-container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.services-eyebrow--light {
  color: #ff9a68;
}

.services-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  padding: 0 22px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.services-button:hover {
  background: var(--color-primary-dark);
}

.services-button--outline {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(15, 23, 42, 0.24);
}

.services-button--outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.services-button .material-symbols-outlined {
  font-size: 18px;
}

.services-page.is-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-page.is-enhanced [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-hero {
  position: relative;
  display: flex;
  min-height: 780px;
  align-items: stretch;
  overflow: hidden;
  background: var(--color-navy);
  padding-top: 118px;
}

.services-hero__media,
.services-hero__overlay {
  position: absolute;
  inset: 0;
}

.services-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.services-hero__overlay {
  background:
    linear-gradient(90deg, rgba(9, 15, 28, 0.98) 0%, rgba(9, 15, 28, 0.9) 46%, rgba(9, 15, 28, 0.64) 72%, rgba(9, 15, 28, 0.48) 100%),
    linear-gradient(180deg, rgba(9, 15, 28, 0.18), rgba(9, 15, 28, 0.8));
}

.services-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
  padding-bottom: 72px;
}

.services-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.services-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.services-breadcrumb a:hover {
  color: #ffffff;
}

.services-breadcrumb .material-symbols-outlined {
  font-size: 16px;
}

.services-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(410px, 0.72fr);
  gap: 78px;
  align-items: center;
}

.services-hero__copy {
  max-width: 820px;
}

.services-hero h1 {
  max-width: 810px;
  margin-top: 20px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.services-hero__copy > p {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.72;
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.services-hero__proof {
  display: flex;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.services-hero__proof > div {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  align-items: center;
  gap: 12px;
  padding: 17px 20px 17px 0;
}

.services-hero__proof > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 20px;
}

.services-hero__proof strong {
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.services-hero__proof span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.service-system-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(10, 18, 33, 0.74);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  color: #ffffff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-system-card__top,
.service-system-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-system-card__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-system-card__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b8f1d0;
}

.service-system-card__status i,
.service-system-card__footer i,
.operations-console__signal {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42d484;
  box-shadow: 0 0 0 4px rgba(66, 212, 132, 0.12);
}

.service-system-card__route {
  padding: 22px 20px;
}

.service-system-card__endpoint {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 4px 8px;
}

.service-system-card__endpoint > .material-symbols-outlined {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(40, 168, 232, 0.13);
  color: #78cffa;
  font-size: 20px;
}

.service-system-card__endpoint--output > .material-symbols-outlined {
  background: rgba(228, 90, 32, 0.14);
  color: #ff9a68;
}

.service-system-card__endpoint small,
.service-system-card__stage small {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
}

.service-system-card__endpoint strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.service-system-card__line {
  display: block;
  width: 1px;
  height: 15px;
  margin-left: 27px;
  background: rgba(255, 255, 255, 0.24);
}

.service-system-card__stage {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding: 15px 10px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.service-system-card__stage:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ff9a68;
}

.service-system-card__stage:nth-of-type(4) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.service-system-card__number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #ff9a68;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.service-system-card__stage strong {
  display: block;
  margin-top: 4px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.service-system-card__stage > .material-symbols-outlined {
  justify-self: end;
  font-size: 18px;
}

.service-system-card__footer {
  justify-content: flex-start;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-system-card__footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.service-system-card__footer i {
  width: 5px;
  height: 5px;
  background: #ff9a68;
  box-shadow: none;
}

.services-architecture {
  padding: 112px 0;
  background: #ffffff;
}

.services-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
  gap: 74px;
  align-items: end;
}

.services-section-heading h2,
.service-chapter__heading h2,
.services-cta__copy h2 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.services-section-heading h2 {
  max-width: 740px;
  margin-top: 18px;
}

.services-section-heading > p,
.service-chapter__heading > p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.72;
}

.services-architecture__map {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr) 132px;
  align-items: stretch;
  overflow: hidden;
  margin-top: 62px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.services-architecture__edge {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 24px 14px;
  text-align: center;
}

.services-architecture__edge--input {
  border-right: 1px solid var(--color-border);
  background: #f1f7fb;
}

.services-architecture__edge--output {
  border-left: 1px solid var(--color-border);
  background: #fff6f1;
}

.services-architecture__edge > .material-symbols-outlined {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-accent-dark);
  font-size: 21px;
}

.services-architecture__edge--output > .material-symbols-outlined {
  color: var(--color-primary);
}

.services-architecture__edge small,
.architecture-stage > small {
  color: #94a3b8;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.services-architecture__edge strong {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.architecture-stage {
  min-width: 0;
  padding: 30px 26px 26px;
  transition: background-color 0.25s ease;
}

.architecture-stage:hover {
  background: #fbfdff;
}

.architecture-stage__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.architecture-stage__number {
  color: var(--color-primary);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.architecture-stage__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(228, 90, 32, 0.09);
  color: var(--color-primary);
  font-size: 22px;
}

.architecture-stage--coordinate .architecture-stage__icon {
  background: rgba(40, 168, 232, 0.1);
  color: var(--color-accent-dark);
}

.architecture-stage--market .architecture-stage__icon {
  background: rgba(15, 23, 42, 0.08);
  color: var(--color-navy);
}

.architecture-stage h3 {
  margin-top: 8px;
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.architecture-stage > p {
  min-height: 66px;
  margin-top: 12px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.62;
}

.architecture-stage__links {
  margin-top: 22px;
  border-top: 1px solid var(--color-border);
}

.architecture-stage__links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--color-border);
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.architecture-stage__links a:hover,
.architecture-stage__links a.is-active {
  color: var(--color-primary);
}

.architecture-stage__links .material-symbols-outlined {
  flex: 0 0 auto;
  font-size: 17px;
}

.services-architecture__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}

.services-architecture__connector .material-symbols-outlined {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #ffffff;
  font-size: 17px;
}

.service-chapter,
.service-operations {
  scroll-margin-top: 118px;
}

.service-chapter {
  padding: 112px 0;
}

.service-chapter--source {
  background:
    radial-gradient(circle at 4% 14%, rgba(40, 168, 232, 0.075), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(228, 90, 32, 0.055), transparent 24%),
    #f8fafc;
}

.service-chapter--market {
  background: #ffffff;
}

.service-chapter__heading {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 42px;
  align-items: end;
}

.service-chapter__index {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #cbd5e1;
  padding-right: 26px;
}

.service-chapter__index span {
  color: var(--color-primary);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 0.8;
}

.service-chapter__index small {
  color: #94a3b8;
  font-size: 9px;
  font-weight: 700;
}

.service-chapter__heading h2 {
  max-width: 680px;
  margin-top: 16px;
}

.source-workbench {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1.14fr);
  overflow: hidden;
  margin-top: 62px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.source-workbench__visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--color-navy);
}

.source-workbench__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.8) 100%);
}

.source-workbench__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.source-workbench__visual figcaption {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  z-index: 1;
}

.source-workbench__visual figcaption span {
  display: block;
  color: #ff9a68;
  font-size: 10px;
  font-weight: 700;
}

.source-workbench__visual figcaption strong {
  display: block;
  max-width: 430px;
  margin-top: 9px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.28;
}

.source-workbench__panel {
  min-width: 0;
}

.source-signals {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  background: #fbfdff;
  padding: 26px 30px;
}

.source-signals__label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.source-signals__label .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 20px;
}

.source-signals__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-signals__items span,
.market-capability__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 5px 10px;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.paired-capabilities {
  padding: 4px 30px;
}

.paired-capability {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 22px;
  padding: 34px 0;
  scroll-margin-top: 150px;
}

.paired-capability + .paired-capability {
  border-top: 1px solid var(--color-border);
}

.paired-capability__number {
  color: #94a3b8;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.paired-capability__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.paired-capability__title > .material-symbols-outlined {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(228, 90, 32, 0.09);
  color: var(--color-primary);
  font-size: 20px;
}

.paired-capability h3,
.operations-service h3,
.market-capability h3,
.process-phase h3 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.paired-capability__content > p {
  margin-top: 14px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.paired-capability ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 20px;
}

.paired-capability li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.paired-capability li .material-symbols-outlined {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--color-primary);
  font-size: 17px;
}

.service-operations {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #0f172a;
  background-size: 54px 54px;
}

.service-operations::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
  pointer-events: none;
}

.service-chapter__heading--dark {
  position: relative;
  z-index: 1;
}

.service-chapter__heading--dark .service-chapter__index {
  border-color: rgba(255, 255, 255, 0.18);
}

.service-chapter__heading--dark .service-chapter__index small,
.service-chapter__heading--dark > p {
  color: rgba(255, 255, 255, 0.58);
}

.service-chapter__heading--dark h2 {
  color: #ffffff;
}

.operations-console {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 62px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: #111c30;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.operations-console__topbar {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
}

.operations-console__topbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.operations-console__body {
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1.24fr);
}

.operations-console__services {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  padding: 12px 30px;
}

.operations-service {
  padding: 32px 0;
  scroll-margin-top: 150px;
}

.operations-service + .operations-service {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.operations-service__head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
}

.operations-service__head > .material-symbols-outlined {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(228, 90, 32, 0.13);
  color: #ff9a68;
  font-size: 22px;
}

.operations-service__head small {
  display: block;
  margin-bottom: 4px;
  color: #ff9a68;
  font-size: 9px;
  font-weight: 700;
}

.operations-service h3 {
  color: #ffffff;
  font-size: 21px;
}

.operations-service > p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.62;
}

.operations-service ul {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.operations-service li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 11px 0 11px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

.operations-service li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.operations-console__track {
  background: #f8fafc;
  color: #334155;
  padding: 30px 34px;
}

.operations-track__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 20px;
}

.operations-track__header > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-size: 13px;
}

.operations-track__header .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 21px;
}

.operations-track__header > span {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.operations-track__list {
  position: relative;
  margin-top: 8px;
}

.operations-track__list::before {
  content: "";
  position: absolute;
  top: 41px;
  bottom: 41px;
  left: 20px;
  width: 1px;
  background: #cbd5e1;
}

.operations-track__list li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--color-border);
}

.operations-track__list li:last-child {
  border-bottom: 0;
}

.operations-track__dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  background: #f8fafc;
  color: #94a3b8;
}

.operations-track__dot .material-symbols-outlined {
  font-size: 18px;
}

.operations-track__dot.is-complete {
  border-color: rgba(40, 168, 232, 0.35);
  background: #eef9fe;
  color: var(--color-accent-dark);
}

.operations-track__dot.is-active {
  border-color: rgba(228, 90, 32, 0.36);
  background: #fff3ed;
  color: var(--color-primary);
}

.operations-track__list small {
  display: block;
  color: #94a3b8;
  font-size: 8px;
  font-weight: 700;
}

.operations-track__list strong {
  display: block;
  margin-top: 4px;
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.operations-track__list div > span {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 11px;
  line-height: 1.45;
}

.operations-track__list b {
  border-radius: var(--radius-sm);
  background: #e2e8f0;
  padding: 5px 8px;
  color: #64748b;
  font-size: 8px;
  font-weight: 700;
}

.operations-track__list li:nth-child(-n + 2) b {
  background: #e9f8f0;
  color: #218654;
}

.operations-track__list li:nth-child(3) b {
  background: #fff0e8;
  color: var(--color-primary-dark);
}

.market-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: 64px;
  align-items: center;
  margin-top: 62px;
}

.market-bridge__content {
  min-width: 0;
}

.market-capability {
  padding: 12px 0 30px;
  scroll-margin-top: 150px;
}

.market-capability + .market-capability {
  padding-top: 30px;
}

.market-capability__head {
  display: grid;
  grid-template-columns: 42px 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.market-capability__code {
  color: #94a3b8;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.market-capability__head > .material-symbols-outlined {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(40, 168, 232, 0.1);
  color: var(--color-accent-dark);
  font-size: 22px;
}

.market-capability:nth-of-type(2) .market-capability__head > .material-symbols-outlined {
  background: rgba(228, 90, 32, 0.09);
  color: var(--color-primary);
}

.market-capability__head small {
  display: block;
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 9px;
  font-weight: 700;
}

.market-capability h3 {
  font-size: 22px;
}

.market-capability > p {
  margin-top: 16px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.66;
}

.market-capability__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.market-bridge__direction {
  display: grid;
  grid-template-columns: auto minmax(20px, 1fr) 24px minmax(20px, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  color: #94a3b8;
  font-size: 9px;
  font-weight: 700;
}

.market-bridge__direction i {
  height: 1px;
  background: var(--color-border);
}

.market-bridge__direction .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 18px;
}

.market-bridge__visual {
  position: relative;
  min-height: 610px;
  padding-right: 74px;
  padding-bottom: 68px;
}

.market-bridge__main-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 542px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.market-bridge__secondary-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 7px solid #ffffff;
  border-radius: var(--radius-md);
}

.market-bridge__secondary-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-bridge__caption {
  position: absolute;
  right: 106px;
  bottom: 92px;
  display: flex;
  max-width: 300px;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.9);
  padding: 14px 16px;
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.market-bridge__caption > .material-symbols-outlined {
  color: #ff9a68;
  font-size: 22px;
}

.market-bridge__caption small {
  display: block;
  color: #ff9a68;
  font-size: 8px;
  font-weight: 700;
}

.market-bridge__caption strong {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.service-process {
  padding: 112px 0;
  background:
    linear-gradient(135deg, rgba(40, 168, 232, 0.04), transparent 34%),
    #f8fafc;
}

.services-section-heading--process {
  align-items: end;
}

.process-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 62px;
}

.process-phase {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.process-phase:nth-of-type(2) {
  border-top-color: var(--color-accent-dark);
}

.process-phase:nth-of-type(3) {
  border-top-color: var(--color-navy);
}

.process-phase__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--color-border);
  padding: 22px 24px;
}

.process-phase__heading > span {
  color: var(--color-primary);
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.process-phase:nth-of-type(2) .process-phase__heading > span {
  color: var(--color-accent-dark);
}

.process-phase:nth-of-type(3) .process-phase__heading > span {
  color: var(--color-navy);
}

.process-phase h3 {
  font-size: 19px;
  text-align: right;
}

.process-phase ol {
  padding: 8px 24px;
}

.process-phase li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
}

.process-phase li + li {
  border-top: 1px solid var(--color-border);
}

.process-phase li > span {
  color: #cbd5e1;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.process-phase li strong {
  display: block;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.process-phase li p {
  margin-top: 6px;
  color: #64748b;
  font-size: 11px;
  line-height: 1.5;
}

.process-phase__outcome {
  border-top: 1px solid var(--color-border);
  background: #fbfdff;
  padding: 17px 24px;
}

.process-phase__outcome small {
  display: block;
  color: #94a3b8;
  font-size: 8px;
  font-weight: 700;
}

.process-phase__outcome strong {
  display: block;
  margin-top: 5px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.process-route__arrow {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-primary);
  font-size: 19px;
}

.services-cta {
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
}

.services-cta__media,
.services-cta__overlay {
  position: absolute;
  inset: 0;
}

.services-cta__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-cta__overlay {
  background: linear-gradient(90deg, rgba(9, 15, 28, 0.97) 0%, rgba(9, 15, 28, 0.86) 58%, rgba(9, 15, 28, 0.48) 100%);
}

.services-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.services-cta__copy {
  max-width: 760px;
}

.services-cta__copy h2 {
  margin-top: 18px;
  color: #ffffff;
}

.services-cta__copy p {
  max-width: 690px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1240px) {
  .services-hero__layout {
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 50px;
  }

  .services-hero h1 {
    font-size: 50px;
  }

  .services-architecture__map {
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  }

  .services-architecture__edge {
    display: none;
  }

  .source-workbench {
    grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1.24fr);
  }

  .market-bridge {
    gap: 48px;
  }
}

@media (max-width: 1080px) {
  .services-hero {
    min-height: 720px;
  }

  .services-hero__layout {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 36px;
  }

  .services-hero h1 {
    font-size: 46px;
  }

  .services-hero__proof span {
    font-size: 10px;
  }

  .service-system-card__stage {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .service-chapter__heading {
    grid-template-columns: 92px minmax(0, 1fr) minmax(300px, 0.62fr);
    gap: 30px;
  }

  .source-workbench,
  .operations-console__body,
  .market-bridge {
    grid-template-columns: 1fr;
  }

  .source-workbench__visual {
    min-height: 470px;
    aspect-ratio: 16 / 8;
  }

  .operations-console__services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .operations-service + .operations-service {
    border-top: 0;
  }

  .market-bridge__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
  }

  .market-bridge__direction {
    grid-template-columns: 1fr;
    justify-items: center;
    height: 100%;
    border: 0;
    padding: 0;
  }

  .market-bridge__direction i {
    width: 1px;
    height: 100%;
  }

  .market-bridge__direction .material-symbols-outlined {
    transform: rotate(90deg);
  }

  .market-bridge__visual {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .services-hero {
    min-height: 0;
    padding-top: 88px;
  }

  .services-hero__content {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .services-breadcrumb {
    margin-bottom: 32px;
  }

  .services-hero__layout {
    grid-template-columns: 1fr;
  }

  .services-hero__copy {
    max-width: 760px;
  }

  .service-system-card {
    max-width: 680px;
  }

  .services-section-heading,
  .service-chapter__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-chapter__index {
    min-height: 0;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 14px;
    border-right: 0;
    padding-right: 0;
  }

  .service-chapter__index span {
    font-size: 38px;
  }

  .services-architecture__map {
    grid-template-columns: 1fr;
  }

  .services-architecture__connector {
    min-height: 46px;
  }

  .services-architecture__connector .material-symbols-outlined {
    transform: rotate(90deg);
  }

  .architecture-stage {
    padding: 28px;
  }

  .architecture-stage > p {
    min-height: 0;
  }

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

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

  .process-route__arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .services-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .services-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .services-hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .services-hero__copy > p {
    font-size: 16px;
  }

  .services-hero__proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-hero__proof > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 14px 10px 14px 0;
  }

  .services-hero__proof > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding-left: 12px;
  }

  .service-system-card__footer {
    flex-wrap: wrap;
  }

  .services-architecture,
  .service-chapter,
  .service-operations,
  .service-process {
    padding: 76px 0;
  }

  .services-section-heading h2,
  .service-chapter__heading h2,
  .services-cta__copy h2 {
    font-size: 31px;
  }

  .services-section-heading > p,
  .service-chapter__heading > p {
    font-size: 15px;
  }

  .services-architecture__map,
  .source-workbench,
  .operations-console,
  .market-bridge,
  .process-route {
    margin-top: 44px;
  }

  .architecture-stage__links {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .source-workbench__visual {
    min-height: 340px;
    aspect-ratio: 4 / 3;
  }

  .source-workbench__visual figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .source-workbench__visual figcaption strong {
    font-size: 20px;
  }

  .source-signals {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .paired-capabilities {
    padding: 0 22px;
  }

  .paired-capability {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .paired-capability ul {
    grid-template-columns: 1fr;
  }

  .operations-console__topbar {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 72px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .operations-console__services {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 22px;
  }

  .operations-service + .operations-service {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .operations-console__track {
    padding: 24px 20px;
  }

  .operations-track__list li {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 14px 0;
  }

  .operations-track__list b {
    grid-column: 2;
    justify-self: start;
  }

  .market-bridge__content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .market-bridge__direction {
    grid-template-columns: auto minmax(20px, 1fr) 24px minmax(20px, 1fr) auto;
    height: auto;
    margin: 4px 0 18px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
  }

  .market-bridge__direction i {
    width: auto;
    height: 1px;
  }

  .market-bridge__direction .material-symbols-outlined {
    transform: none;
  }

  .market-bridge__visual {
    min-height: 430px;
    padding-right: 34px;
    padding-bottom: 42px;
  }

  .market-bridge__main-image {
    min-height: 388px;
  }

  .market-bridge__secondary-image {
    width: 46%;
    border-width: 5px;
  }

  .market-bridge__caption {
    right: 54px;
    bottom: 62px;
    max-width: 250px;
  }

  .services-cta__inner {
    min-height: 440px;
    gap: 30px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding-top: 72px;
  }

  .services-hero__content {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .services-hero h1 {
    font-size: 35px;
  }

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

  .services-button {
    width: 100%;
  }

  .service-system-card__top {
    gap: 8px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 8px;
  }

  .service-system-card__route {
    padding: 8px 14px;
  }

  .service-system-card__endpoint,
  .service-system-card__line,
  .service-system-card__footer {
    display: none;
  }

  .service-system-card__stage {
    grid-template-columns: 30px minmax(0, 1fr) 20px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .service-system-card__stage strong {
    font-size: 14px;
  }

  .market-capability__head {
    grid-template-columns: 34px 42px minmax(0, 1fr);
    gap: 10px;
  }

  .market-capability__head > .material-symbols-outlined {
    width: 42px;
    height: 42px;
  }

  .market-capability h3 {
    font-size: 19px;
  }

  .market-bridge__caption {
    right: 18px;
    bottom: 58px;
    left: 18px;
    max-width: none;
  }

  .process-phase__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-phase h3 {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-page.is-enhanced [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
