/* Versioned stylesheet ensures CDN-safe delivery of the current site design. */
:root {
  --ink: #07182a;
  --ink-soft: #314258;
  --blue: #1473e6;
  --blue-bright: #2b8cff;
  --line: #dbe3ec;
  --paper: #f7f9fc;
  --navy: #061727;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: white;
  color: var(--ink);
  font-family: var(--font-sans);
  font-optical-sizing: auto;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: white;
  border-radius: 8px;
  background: var(--blue);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

:where(a, button, summary):focus-visible {
  outline: 3px solid #67b7ff;
  outline-offset: 4px;
}

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

svg {
  flex: 0 0 auto;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(2, 20, 35, .95) 0%, rgba(2, 20, 35, .78) 34%, rgba(2, 20, 35, .15) 67%, rgba(2, 20, 35, .28) 100%),
    linear-gradient(0deg, rgba(2, 20, 35, .9) 0%, transparent 38%),
    url("./scs-hero.png") 72% center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(1, 15, 28, .35), transparent 20%);
}

.site-nav {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 96px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 270px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 38px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .8);
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover {
  color: white;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease;
}

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

.button svg {
  width: 18px;
}

.button-dark {
  background: rgba(0, 10, 20, .86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(0, 77, 181, .26);
}

.button-primary:hover {
  background: var(--blue-bright);
}

.mobile-menu {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  color: #9dccff;
}

.hero h1,
.section-heading h2,
.capabilities-copy h2,
.about-section h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(40px, 4.3vw, 62px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 span,
.section-heading h2 span,
.capabilities-copy h2 span,
.contact-section h2 span {
  color: var(--blue-bright);
}

.hero h1 {
  font-size: clamp(38px, 3.5vw, 50px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-lead {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  margin: 28px 0 0;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.hero-lead span {
  display: inline-flex;
  align-items: center;
}

.hero-lead span:not(:last-child)::after {
  margin: 0 12px;
  color: rgba(255, 255, 255, .36);
  content: "|";
  font-weight: 300;
}

.hero-copy {
  max-width: 500px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.5;
  letter-spacing: -.018em;
}

.hero-content .button {
  min-height: 44px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 400;
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 34px;
  left: 0;
}

.capability-strip,
.outcome-strip {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(160, 207, 244, .09);
  border-radius: 13px;
  background:
    linear-gradient(90deg, rgba(6, 37, 58, .73), rgba(4, 28, 46, .58));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  backdrop-filter: blur(18px);
}

.capability-strip {
  grid-template-columns: repeat(6, 1fr);
}

.capability-strip div {
  position: relative;
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.capability-strip div:not(:last-child)::after,
.outcome-strip > div:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 58%;
  content: "";
  background: rgba(177, 211, 238, .17);
  transform: translateY(-50%);
}

.capability-strip svg {
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, .9);
  stroke-width: 1.55;
}

.capability-strip div:nth-child(2) svg {
  width: 38px;
  height: 38px;
  transform: rotate(90deg);
}

.outcome-strip {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 22px;
}

.outcome-strip > div {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, .86);
}

.outcome-strip span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -.01em;
}

.outcome-strip svg {
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, .86);
  stroke-width: 1.45;
}

.section {
  padding: 108px 0;
}

.integration-section,
.process-section {
  background:
    radial-gradient(circle at 50% 30%, rgba(38, 127, 235, .07), transparent 36%),
    white;
}

.integration-section {
  overflow: hidden;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading h2,
.capabilities-copy h2 {
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.06;
}

.integration-heading h2 {
  font-weight: 600;
  letter-spacing: -.045em;
  text-transform: none;
}

.section-heading > p:last-child {
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.integration-layout {
  position: relative;
  min-height: 840px;
  display: grid;
  place-items: center;
}

.integration-core {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 410px;
  aspect-ratio: 1;
  contain: paint;
  place-items: center;
}

.integration-core::before {
  position: absolute;
  z-index: 1;
  inset: -5%;
  content: "";
  pointer-events: none;
  background: conic-gradient(
    from -18deg,
    #087cff 0deg,
    #24a7ff 34deg,
    #00c7d9 70deg,
    #30d6a3 108deg,
    #465fe7 150deg,
    #7558e8 190deg,
    #a848dc 228deg,
    #e34b9a 266deg,
    #ff6b6b 302deg,
    #f6a844 330deg,
    #087cff 360deg
  );
  -webkit-mask: url("./orbit-wave-v2.png") center / contain no-repeat;
  mask: url("./orbit-wave-v2.png") center / contain no-repeat;
  opacity: .68;
  filter: drop-shadow(0 0 7px rgba(49, 126, 235, .22));
  transform-origin: center;
  will-change: transform, opacity, filter;
  animation: siri-orbit 18s linear infinite;
}

.integration-core::after {
  position: absolute;
  z-index: 0;
  inset: 14%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 199, 217, .09),
    rgba(117, 84, 232, .055) 42%,
    rgba(227, 75, 154, .025) 58%,
    transparent 72%
  );
  filter: blur(18px);
  pointer-events: none;
  animation: siri-aura 5s ease-in-out infinite;
}

.core-wave {
  position: absolute;
  z-index: 1;
  width: 110%;
  height: 110%;
  max-width: none;
  object-fit: contain;
  opacity: .12;
  pointer-events: none;
  transform-origin: center;
  will-change: transform;
  animation: core-wave-counter 28s linear infinite;
}

@keyframes siri-orbit {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: .6;
    filter:
      drop-shadow(0 0 6px rgba(0, 122, 255, .18))
      saturate(.92);
  }

  33% {
    opacity: .74;
    filter:
      drop-shadow(0 0 10px rgba(0, 199, 217, .23))
      saturate(1.04);
  }

  50% {
    transform: rotate(180deg) scale(1.025);
  }

  66% {
    opacity: .78;
    filter:
      drop-shadow(0 0 11px rgba(168, 72, 220, .24))
      saturate(1.08);
  }

  100% {
    transform: rotate(360deg) scale(1);
    opacity: .6;
    filter:
      drop-shadow(0 0 6px rgba(0, 122, 255, .18))
      saturate(.92);
  }
}

@keyframes core-wave-counter {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes siri-aura {
  0%,
  100% {
    opacity: .55;
    transform: scale(.98);
  }

  50% {
    opacity: .9;
    transform: scale(1.04);
  }
}

.core-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 60%;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  color: var(--ink);
  border: 1px solid #87bdfd;
  border-radius: 50%;
  text-align: center;
  background: rgba(255, 255, 255, .9);
  box-shadow:
    0 28px 80px rgba(22, 76, 140, .14),
    0 0 0 10px rgba(236, 245, 255, .6);
}

.core-content svg {
  width: 32px;
  height: 32px;
  margin-bottom: 13px;
  color: var(--blue);
}

.core-content strong {
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
}

.core-content span {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.solution-grid {
  position: absolute;
  inset: 0;
  width: 100%;
}

.solution-card {
  position: absolute;
  display: grid;
  width: 330px;
  min-height: 92px;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease;
}

.solution-card:nth-child(1),
.solution-card:nth-child(3),
.solution-card:nth-child(5) {
  left: 0;
  grid-template-columns: 1fr 62px;
  text-align: right;
}

.solution-card:nth-child(2),
.solution-card:nth-child(4),
.solution-card:nth-child(6) {
  right: 0;
  grid-template-columns: 62px 1fr;
}

.solution-card:nth-child(1),
.solution-card:nth-child(2) {
  top: 190px;
}

.solution-card:nth-child(3),
.solution-card:nth-child(4) {
  top: 374px;
}

.solution-card:nth-child(5),
.solution-card:nth-child(6) {
  top: 548px;
}

.solution-card:nth-child(1),
.solution-card:nth-child(5) {
  left: 80px;
}

.solution-card:nth-child(2),
.solution-card:nth-child(6) {
  right: 80px;
}

.solution-card:nth-child(7) {
  top: 636px;
  left: 50%;
  width: 320px;
  min-height: 126px;
  grid-template-columns: 1fr;
  grid-template-rows: 62px auto;
  justify-items: center;
  text-align: center;
  transform: translateX(-50%);
}

.solution-card:nth-child(8) {
  top: 48px;
  left: 50%;
  width: 320px;
  min-height: 156px;
  grid-template-columns: 1fr;
  grid-template-rows: auto 62px;
  justify-items: center;
  text-align: center;
  transform: translateX(-50%);
}

.solution-card:nth-child(1) .icon-box,
.solution-card:nth-child(3) .icon-box,
.solution-card:nth-child(5) .icon-box {
  grid-column: 2;
  grid-row: 1;
}

.solution-card:nth-child(1) > div:last-child,
.solution-card:nth-child(3) > div:last-child,
.solution-card:nth-child(5) > div:last-child {
  grid-column: 1;
  grid-row: 1;
}

.solution-card:nth-child(7) .icon-box {
  grid-row: 1;
}

.solution-card:nth-child(7) > div:last-child {
  grid-row: 2;
}

.solution-card:nth-child(8) .icon-box {
  grid-row: 2;
}

.solution-card:nth-child(8) > div:last-child {
  grid-row: 1;
}

.solution-card::after {
  position: absolute;
  top: 50%;
  display: none;
  width: 92px;
  content: "";
  border-top: 1px dashed rgba(38, 127, 235, .46);
}

.solution-card:nth-child(1)::after,
.solution-card:nth-child(3)::after,
.solution-card:nth-child(5)::after {
  right: -104px;
}

.solution-card:nth-child(2)::after,
.solution-card:nth-child(4)::after,
.solution-card:nth-child(6)::after {
  left: -104px;
}

.solution-card:nth-child(8)::after {
  top: auto;
  bottom: -10px;
  left: 50%;
  width: 1px;
  height: 6px;
  border-top: 0;
  border-left: 1px dashed rgba(38, 127, 235, .46);
}

.solution-card:nth-child(7)::after {
  top: -10px;
  right: auto;
  left: 50%;
  width: 1px;
  height: 6px;
  border-top: 0;
  border-left: 1px dashed rgba(38, 127, 235, .46);
}

.solution-card:hover {
  transform: translateY(-3px);
}

.solution-card:nth-child(7):hover,
.solution-card:nth-child(8):hover {
  transform: translateX(-50%) translateY(-3px);
}

.icon-box {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--blue);
  border: 1px solid #dce9f8;
  border-radius: 50%;
  background: white;
  box-shadow:
    0 10px 24px rgba(18, 70, 130, .11),
    inset 0 0 0 7px #f3f8ff;
}

.icon-box svg {
  width: 27px;
}

.solution-card h3,
.industry-card h3,
.process-card h3 {
  margin: 2px 0 7px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
  text-transform: uppercase;
}

.solution-card p,
.industry-card p,
.process-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.solution-card h3 {
  font-size: 15px;
}

.solution-card p {
  font-size: 13px;
  line-height: 1.48;
}

.verb-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.verb-strip span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.verb-strip span:last-child {
  border: 0;
}

.verb-strip svg {
  color: var(--blue);
}

.industries-section {
  background: var(--paper);
}

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

.industry-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 24px rgba(15, 48, 83, .04);
}

.industry-visual {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #dfe8f1;
}

.industry-visual::after {
  position: absolute;
  content: "";
  inset: 0;
}

.industry-visual::after {
  background:
    linear-gradient(180deg, transparent 62%, rgba(4, 20, 34, .16)),
    linear-gradient(90deg, rgba(8, 54, 92, .045), transparent 45%);
  pointer-events: none;
}

.industry-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

.industry-card:hover .industry-visual img {
  transform: scale(1.025);
}

.industry-copy {
  display: grid;
  min-height: 126px;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 20px;
}

.industry-copy > svg {
  width: 23px;
  color: var(--blue);
}

.impact-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.impact-bar span {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.impact-bar span:last-child {
  border: 0;
}

.impact-bar svg {
  grid-row: 1 / 3;
  color: var(--blue);
}

.impact-bar b {
  font-size: 13px;
  text-transform: uppercase;
}

.impact-bar small {
  margin-top: 3px;
  color: var(--ink-soft);
}

.capabilities-section {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  color: var(--ink);
  background:
    linear-gradient(
      90deg,
      #f6f8fc 0%,
      rgba(246, 248, 252, .97) 26%,
      rgba(246, 248, 252, .76) 35%,
      rgba(238, 244, 250, .3) 44%,
      rgba(225, 237, 248, .06) 54%,
      rgba(5, 25, 42, 0) 72%
    ),
    url("./capabilities-automation-v1.png") center / cover no-repeat;
}

.capabilities-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 38%, rgba(39, 139, 255, .08), transparent 31%),
    linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(4, 20, 34, .02));
}

.capabilities-section::after {
  position: absolute;
  top: 12%;
  right: -8%;
  width: 52%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(124, 197, 255, .2);
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    0 0 0 48px rgba(73, 153, 230, .035),
    0 0 0 96px rgba(73, 153, 230, .02);
}

.capabilities-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(390px, .88fr) minmax(540px, 1.12fr);
  align-items: center;
  gap: clamp(52px, 6vw, 90px);
}

.section-kicker.light {
  color: var(--blue);
}

.capabilities-copy > p:not(.section-kicker) {
  max-width: 510px;
  margin: 22px 0 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.capability-list {
  display: grid;
  gap: 9px;
  max-width: 500px;
}

.capability-item {
  display: grid;
  width: 100%;
  min-height: 58px;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 17px;
  border: 1px solid rgba(21, 74, 122, .12);
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  text-align: left;
  background: rgba(255, 255, 255, .8);
  box-shadow:
    0 8px 24px rgba(16, 55, 91, .05),
    inset 0 1px 0 rgba(255, 255, 255, .75);
  backdrop-filter: blur(18px);
  transition:
    border-color .25s ease,
    background-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.capability-item:hover,
.capability-item:focus-visible,
.capability-item.is-active {
  border-color: rgba(27, 125, 242, .34);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 28px rgba(16, 86, 150, .1);
}

.capability-item:hover,
.capability-item.is-active {
  transform: translateX(4px);
}

.capability-item:focus-visible {
  outline: 3px solid rgba(43, 140, 255, .24);
  outline-offset: 2px;
}

.capability-chevron {
  color: rgba(7, 24, 42, .38);
  font-size: 24px;
  line-height: 1;
  transition: color .2s ease, transform .25s ease;
}

.capability-item:hover .capability-chevron,
.capability-item:focus-visible .capability-chevron,
.capability-item.is-active .capability-chevron {
  color: var(--blue);
}

.capability-item.is-active .capability-chevron {
  transform: translateX(2px);
}

.capability-display {
  min-width: 0;
  margin-top: 180px;
}

.capability-image-overview {
  min-height: 516px;
}

.capability-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(154, 211, 255, .28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 6%, rgba(31, 143, 245, .18), transparent 30%),
    rgba(3, 20, 35, .88);
  box-shadow:
    0 38px 90px rgba(1, 16, 29, .32),
    0 10px 24px rgba(13, 75, 128, .16),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(22px);
}

.capability-panel[hidden] {
  display: none;
}

.capability-story {
  min-height: 516px;
  padding: 30px;
  color: white;
  outline: none;
  background:
    radial-gradient(circle at 92% 8%, rgba(31, 143, 245, .24), transparent 34%),
    radial-gradient(circle at 8% 94%, rgba(66, 215, 255, .08), transparent 32%),
    rgba(3, 20, 35, .92);
}

.story-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-top button {
  padding: 8px 10px;
  color: #78bfff;
  cursor: pointer;
  border: 1px solid rgba(120, 191, 255, .18);
  border-radius: 8px;
  font: inherit;
  background: rgba(255, 255, 255, .04);
}

.story-top button:hover,
.story-top button:focus-visible {
  color: white;
  border-color: rgba(120, 191, 255, .42);
  outline: none;
  background: rgba(43, 140, 255, .12);
}

.story-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  margin-top: 25px;
  place-items: center;
  color: #7cc4ff;
  border: 1px solid rgba(124, 196, 255, .22);
  border-radius: 15px;
  font-size: 25px;
  background: rgba(20, 115, 230, .12);
}

.story-kicker {
  position: relative;
  z-index: 1;
  margin: 20px 0 7px;
  color: #59dbff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.capability-story h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0;
  color: white;
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.story-intro {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin: 15px 0 20px;
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  line-height: 1.65;
}

.story-pillars {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.story-pillars span {
  padding: 7px 10px;
  color: #a9d5ff;
  border: 1px solid rgba(116, 194, 255, .16);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 650;
  background: rgba(20, 115, 230, .08);
}

.capability-story ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 20px 0 22px;
  padding: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  line-height: 1.45;
  list-style: none;
}

.capability-story li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.capability-story li::before {
  margin-top: 1px;
  color: #4bf0a1;
  content: "✓" / "";
  font-weight: 800;
}

.story-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  color: white;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 750;
  background: var(--blue);
  transition: background .2s ease, transform .2s ease;
}

.story-cta:hover,
.story-cta:focus-visible {
  outline: none;
  background: var(--blue-bright);
  transform: translateY(-2px);
}

.capability-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(95, 179, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 179, 255, .045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.capabilities-impact {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 50px rgba(10, 51, 88, .12);
  backdrop-filter: blur(20px);
}

.capabilities-impact span {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(22, 65, 107, .1);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.capabilities-impact span:last-child {
  border: 0;
}

.capabilities-impact svg {
  width: 22px;
  color: var(--blue);
}

.capabilities-impact b,
.principles b {
  color: var(--blue);
  font-size: 20px;
}

.panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 3px 15px;
  color: rgba(255, 255, 255, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
  text-transform: uppercase;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.panel-title span {
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
  letter-spacing: .045em;
}

.panel-title small {
  padding-left: 11px;
  color: rgba(255, 255, 255, .4);
  border-left: 1px solid rgba(255, 255, 255, .14);
  letter-spacing: .035em;
}

.panel-top .live-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #4bf0a1;
  font-weight: 750;
  letter-spacing: .05em;
}

.panel-top .live-status::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(75, 240, 161, .11);
  animation: live-pulse 2.4s ease-in-out infinite;
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.metric-grid > div {
  display: flex;
  min-height: 116px;
  justify-content: space-between;
  flex-direction: column;
  padding: 17px;
  border: 1px solid rgba(110, 188, 255, .16);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(15, 55, 85, .82), rgba(3, 21, 37, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}

.metric-grid small {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  letter-spacing: .01em;
}

.metric-grid strong {
  color: #74c2ff;
  font-size: 31px;
  letter-spacing: -.035em;
}

.metric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.metric-head em {
  color: #5bd8ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: .02em;
}

.metric-track {
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
}

.metric-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #178cff, #42d7ff);
  box-shadow: 0 0 14px rgba(40, 156, 255, .35);
}

.metric-grid .chart-card {
  min-height: 194px;
}

.chart-bars {
  display: flex;
  height: 112px;
  align-items: flex-end;
  gap: 7px;
}

.chart-bars i {
  flex: 1;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(#4ee5ff, #2182f5);
  box-shadow: 0 0 16px rgba(38, 162, 255, .16);
}

.status-card {
  align-items: center;
  text-align: center;
}

.status-card small {
  align-self: stretch;
  text-align: left;
}

.status-card svg {
  width: 64px;
  height: 64px;
  color: #5be6a0;
}

.status-card strong {
  color: #5be6a0;
  font-size: 18px;
}

.status-card em {
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  font-style: normal;
}

.panel-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 3px 1px;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.panel-foot span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-foot i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4bf0a1;
  box-shadow: 0 0 10px rgba(75, 240, 161, .6);
}

.panel-foot small {
  color: rgba(255, 255, 255, .3);
  font-size: inherit;
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: .65;
    transform: scale(.86);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.process-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr 1.08fr;
  height: 245px;
  margin-top: 54px;
  overflow: hidden;
  border-radius: 17px;
  box-shadow: 0 18px 44px rgba(15, 48, 83, .12);
}

.process-image {
  position: relative;
  display: grid;
  place-items: center;
  color: white;
  background-image:
    linear-gradient(180deg, rgba(4, 20, 34, .16), rgba(4, 20, 34, .5)),
    url("./industry-grid-v2.png");
  background-repeat: no-repeat;
  background-size: 400% auto;
}

.process-image + .process-image {
  border-left: 3px solid white;
}

.process-image-code {
  background-position: 100% 100%;
}

.process-image-field {
  background-position: 33.333% 100%;
}

.process-image-monitor {
  background-position: 66.666% 0;
}

.process-image svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(3, 22, 37, .58);
  backdrop-filter: blur(10px);
}

.process-card {
  position: relative;
  min-height: 285px;
  padding: 44px 19px 24px;
  border: 1px solid var(--line);
  border-right: 0;
  text-align: center;
}

.process-card:first-child {
  border-radius: 16px 0 0 16px;
}

.process-card:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 16px 16px 0;
}

.process-card .step {
  position: absolute;
  top: -18px;
  left: calc(50% - 20px);
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: white;
  border: 4px solid white;
  border-radius: 50%;
  background: #26394c;
  font-weight: 750;
}

.process-card > svg {
  width: 42px;
  height: 42px;
  margin: 15px auto 24px;
  color: var(--ink);
}

.process-card p {
  font-size: 13px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 42px;
}

.principles span {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  text-align: center;
}

.principles span:last-child {
  border: 0;
}

.principles svg {
  width: 22px;
  color: var(--blue);
}

.about-section {
  color: white;
  background: #0b263d;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.about-section h2 {
  max-width: 680px;
  font-size: clamp(32px, 3.6vw, 50px);
}

.about-grid > p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.7;
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(2, 17, 29, .96), rgba(2, 17, 29, .72)),
    url("./scs-hero.png") center / cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(64px, 7vw, 110px);
  padding-top: 104px;
  padding-bottom: 104px;
}

.contact-section h2 {
  max-width: 650px;
  font-size: clamp(40px, 4.25vw, 62px);
}

.contact-heading > p:last-child {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
  line-height: 1.7;
}

.contact-card {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(157, 204, 255, .2);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(9, 35, 56, .92), rgba(3, 20, 34, .94));
  box-shadow:
    0 32px 90px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(20px);
}

.contact-card-head {
  padding-bottom: 2px;
}

.contact-card-head > span,
.contact-channel small,
.contact-location small {
  display: block;
  color: #85c2ff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card-head h3 {
  margin: 8px 0 7px;
  font-size: clamp(25px, 2.1vw, 32px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.contact-card-head p {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  line-height: 1.6;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 12px;
}

.contact-channel,
.contact-location {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(157, 204, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.contact-channel-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #85c2ff;
  border: 1px solid rgba(133, 194, 255, .18);
  border-radius: 11px;
  background: rgba(43, 140, 255, .1);
  font-size: 17px;
}

.contact-channel > div,
.contact-location > div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.contact-channel a {
  width: fit-content;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-channel a:hover,
.contact-channel a:focus-visible,
.contact-location-links a:hover,
.contact-location-links a:focus-visible {
  color: #9dccff;
}

.contact-location address {
  max-width: 560px;
  color: rgba(255, 255, 255, .78);
  font-style: normal;
  font-size: 13px;
  line-height: 1.55;
}

.contact-location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 6px;
}

.contact-location-links a {
  color: #85c2ff;
  font-size: 12px;
  font-weight: 700;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 2px;
}

.contact-actions .button {
  min-height: 52px;
  padding: 0 18px;
  text-align: center;
}

.button-whatsapp {
  color: #d9ffe7;
  border: 1px solid rgba(117, 229, 155, .3);
  background: rgba(37, 211, 102, .12);
}

.button-whatsapp:hover {
  background: rgba(37, 211, 102, .2);
}

.enquiry-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  gap: clamp(38px, 6vw, 90px);
  margin-top: 8px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(157, 204, 255, .18);
  border-radius: 22px;
  background: rgba(3, 20, 34, .9);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .035);
  backdrop-filter: blur(20px);
}

.enquiry-intro h3 {
  max-width: 400px;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.enquiry-intro > p:nth-of-type(2) {
  max-width: 430px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.65;
}

.enquiry-intro > span {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, .4);
  font-size: 11px;
}

.enquiry-form {
  min-width: 0;
}

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

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

.form-grid label > span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  color: white;
  border: 1px solid rgba(157, 204, 255, .18);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, .055);
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-grid input,
.form-grid select {
  min-height: 48px;
  padding: 0 14px;
}

.form-grid textarea {
  min-height: 138px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}

.form-grid select {
  color-scheme: dark;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #62adff;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 0 0 3px rgba(43, 140, 255, .16);
}

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

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

.captcha-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(157, 204, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
}

.captcha-field > p {
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

.captcha-field.is-unconfigured {
  display: none;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.form-note {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  line-height: 1.5;
}

.form-footer .button {
  min-width: 166px;
  cursor: pointer;
}

.form-footer .button:disabled {
  cursor: wait;
  opacity: .62;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 650;
}

.form-status.is-success {
  color: #77e6a1;
}

.form-status.is-error {
  color: #ff9b9b;
}

@media (max-width: 600px) {
  .captcha-field {
    align-items: flex-start;
    flex-direction: column;
  }

  .captcha-field > p {
    text-align: left;
  }
}

@media (min-width: 701px) {
  .contact-channel a {
    font-size: 13px;
    white-space: nowrap;
  }
}

footer {
  color: rgba(255, 255, 255, .62);
  background: #020d17;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  min-height: 120px;
  font-size: 13px;
}

.footer-brand {
  color: white;
}

.footer-brand .brand-logo {
  width: 220px;
}

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    list-style: none;
    background: rgba(0, 0, 0, .25);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 80px;
    right: 0;
    display: flex;
    width: min(330px, calc(100vw - 40px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    flex-direction: column;
    background: rgba(3, 19, 32, .97);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 4px 14px;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    text-transform: uppercase;
  }

  .mobile-menu-head svg {
    width: 17px;
  }

  .mobile-menu-panel > a {
    padding: 15px 4px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .hero-content {
    padding-top: 90px;
  }

  .integration-layout,
  .capabilities-shell {
    grid-template-columns: 1fr;
  }

  .capabilities-shell {
    gap: 54px;
  }

  .capability-display {
    margin-top: 0;
  }

  .capabilities-copy,
  .capability-list {
    max-width: 680px;
  }

  .capability-panel {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .integration-layout {
    min-height: auto;
    gap: 42px;
  }

  .integration-core {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

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

  .solution-card,
  .solution-card:nth-child(1),
  .solution-card:nth-child(2),
  .solution-card:nth-child(3),
  .solution-card:nth-child(4),
  .solution-card:nth-child(5),
  .solution-card:nth-child(6),
  .solution-card:nth-child(7),
  .solution-card:nth-child(8) {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 142px;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: left;
    background: white;
    box-shadow: 0 12px 32px rgba(15, 48, 83, .06);
    transform: none;
  }

  .solution-card:nth-child(1) .icon-box,
  .solution-card:nth-child(3) .icon-box,
  .solution-card:nth-child(5) .icon-box,
  .solution-card:nth-child(7) .icon-box,
  .solution-card:nth-child(8) .icon-box,
  .solution-card:nth-child(1) > div:last-child,
  .solution-card:nth-child(3) > div:last-child,
  .solution-card:nth-child(5) > div:last-child,
  .solution-card:nth-child(7) > div:last-child,
  .solution-card:nth-child(8) > div:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .solution-card:nth-child(7),
  .solution-card:nth-child(8) {
    grid-template-rows: auto;
    justify-items: stretch;
  }

  .solution-card::after {
    display: none;
  }

  .solution-card:nth-child(7):hover,
  .solution-card:nth-child(8):hover {
    transform: translateY(-3px);
  }

  .solution-card .icon-box {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 13px;
    background: #eef6ff;
    box-shadow: none;
  }

  .solution-card h3 {
    font-size: 16px;
  }

  .solution-card p {
    font-size: 14px;
  }

  .capability-panel {
    margin-bottom: 0;
  }

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

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 0;
  }

  .process-card:nth-child(3) {
    border-right: 1px solid var(--line);
    border-radius: 0 16px 16px 0;
  }

  .process-card:nth-child(4) {
    border-radius: 16px 0 0 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .contact-card {
    width: min(100%, 720px);
  }

  .enquiry-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    max-width: calc(100% - 60px);
  }

  .brand-logo {
    width: 185px;
  }

  .hero {
    min-height: 920px;
    background-position: 78% center;
  }

  .hero-content {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 40px);
    white-space: normal;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 16px;
  }

  .hero-bottom {
    bottom: 20px;
  }

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

  .capability-strip div {
    min-height: 76px;
    gap: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 10px;
  }

  .capability-strip svg {
    width: 25px;
    height: 25px;
  }

  .capability-strip div:nth-child(2) svg {
    width: 25px;
    height: 25px;
  }

  .outcome-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 12px;
  }

  .outcome-strip > div {
    min-height: 68px;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .outcome-strip > div:last-child {
    grid-column: 1 / -1;
  }

  .outcome-strip span {
    font-size: 11px;
    line-height: 1.4;
  }

  .outcome-strip svg {
    width: 25px;
    height: 25px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .section-heading h2,
  .capabilities-copy h2 {
    font-size: 34px;
  }

  .solution-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .integration-core {
    max-width: 340px;
  }

  .solution-card {
    min-height: auto;
  }

  .verb-strip,
  .impact-bar {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .verb-strip span:nth-child(2),
  .impact-bar span:nth-child(2) {
    border-right: 0;
  }

  .impact-bar span {
    padding: 0 10px;
  }

  .capability-panel {
    padding: 14px;
    transform: none;
  }

  .panel-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .panel-title small {
    padding-left: 0;
    border-left: 0;
  }

  .capability-story {
    min-height: auto;
    padding: 22px;
  }

  .capability-image-overview {
    min-height: 340px;
  }

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

  .capabilities-impact span {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capabilities-impact span:last-child {
    border-bottom: 0;
  }

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

  .panel-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

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

  .process-showcase {
    grid-template-columns: 1fr;
    height: 520px;
  }

  .process-image + .process-image {
    border-top: 3px solid white;
    border-left: 0;
  }

  .process-card,
  .process-card:first-child,
  .process-card:last-child,
  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .principles {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .principles span {
    border: 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-grid {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .contact-grid {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-section h2 {
    font-size: 36px;
  }

  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .enquiry-panel {
    gap: 32px;
    padding: 24px;
  }

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

  .form-field-wide {
    grid-column: auto;
  }

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

  .form-footer .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

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

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

/* Static HTML icon treatments */
.menu-glyph {
  font-size: 23px;
  line-height: 1;
}

.strip-icon,
.outcome-icon {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
}

.strip-icon {
  min-width: 38px;
  height: 38px;
  font-size: 24px;
}

.outcome-icon {
  min-width: 34px;
  font-size: 28px;
}

.core-symbol {
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
}

.icon-box {
  font-size: 22px;
  font-weight: 650;
}

.verb-strip b {
  color: var(--blue);
  font-size: 22px;
}

.card-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--blue);
  border: 1px solid #cfe2f7;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
}

.industry-copy {
  grid-template-columns: auto 1fr;
}

.impact-bar span {
  grid-template-columns: 1fr;
}

.list-icon {
  color: #2084f3;
  font-size: 19px;
  font-weight: 700;
}

.health-gauge {
  color: #5be6a0;
  font-size: 68px;
  line-height: .8;
}

.process-icon {
  display: block;
  min-height: 42px;
  margin: 15px auto 24px;
  color: var(--ink);
  font-size: 34px;
  line-height: 42px;
}

.process-image > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(3, 22, 37, .72);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  font-size: 24px;
  backdrop-filter: blur(12px);
}

@media (max-width: 700px) {
  .strip-icon {
    min-width: 25px;
    height: 25px;
    font-size: 17px;
  }

  .outcome-icon {
    min-width: 25px;
    font-size: 20px;
  }
}
