:root {
  --blue: #2f91ff;
  --blue-2: #78bdff;
  --ink: #050607;
  --panel: #111418;
  --muted: #7d8795;
  --line: #303843;
  --soft: #f3f5f8;
  --white: #ffffff;
  --mono: "Roboto Mono", Consolas, monospace;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#services,
#solutions,
#industries,
#faq {
  scroll-margin-top: 102px;
}

body {
  margin: 0;
  background: #000;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.top-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 40;
}

.announcement {
  align-items: center;
  background: var(--blue);
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 35px;
  justify-content: center;
  overflow: hidden;
  padding-right: 48px;
  position: relative;
}

.announcement-track {
  display: flex;
  gap: 42px;
  min-width: max-content;
  white-space: nowrap;
}

.announcement-track span:not(:first-child) {
  display: none;
}

.announcement-close,
.mobile-close {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.announcement-close {
  background: var(--blue);
  height: 35px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 2;
}

.announcement-close span,
.mobile-close span {
  background: #fff;
  display: block;
  height: 2px;
  left: 8px;
  position: absolute;
  top: 17px;
  width: 21px;
}

.announcement-close span:first-child,
.mobile-close span:first-child {
  transform: rotate(45deg);
}

.announcement-close span:last-child,
.mobile-close span:last-child {
  transform: rotate(-45deg);
}

.navbar {
  align-items: center;
  background: #111315;
  color: #fff;
  display: flex;
  gap: 16px;
  height: 64px;
  justify-content: space-between;
  margin: 0;
  padding: 0 28px;
}

.brand {
  align-items: center;
  color: #fff;
  display: inline-flex;
  flex: 0 1 auto;
  font-family: var(--mono);
  font-size: 25px;
  font-weight: 700;
  gap: 0;
  letter-spacing: -.01em;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.brand-logo {
  display: inline-block;
  flex: 0 0 auto;
  height: 32px;
  object-fit: contain;
  width: auto;
}

/* the wordmark text tucks right against the logo "N" so it reads as one word */
.brand > span:not(.p-icon) {
  font-size: 17px;
  margin-left: 2px;
  text-transform: uppercase;
}

.navbar .brand,
.mobile-menu-header .brand {
  padding: 0;
}

.navbar .brand > span:not(.p-icon),
.mobile-menu-header .brand > span:not(.p-icon) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-logo {
  height: 34px;
  width: auto;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  height: 44px;
  padding: 0;
  transition: color .12s ease;
}

.nav-trigger:hover,
.nav-trigger.active {
  color: var(--blue-2);
}

.top-nav-link {
  align-items: center;
  display: flex;
  font-weight: 700;
  height: 44px;
  transition: color .12s ease;
}

.top-nav-link:hover,
.top-nav-link.active {
  color: var(--blue-2);
}

.primary-nav-button.active {
  background: var(--blue);
}

.primary-nav-button {
  background: var(--blue);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  height: 40px;
  padding: 0 18px;
}

.mobile-menu-button {
  background: rgba(255, 255, 255, .06);
  border: 1px solid #667386;
  cursor: pointer;
  display: none;
  flex: 0 0 auto;
  height: 40px;
  position: relative;
  width: 40px;
}

.mobile-menu-button span {
  background: #fff;
  display: block;
  height: 2px;
  left: 9px;
  position: absolute;
  width: 20px;
}

.mobile-menu-button span:first-child {
  top: 14px;
}

.mobile-menu-button span:last-child {
  top: 23px;
}

.mega-menu {
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 99px;
  width: 100%;
}

.mega-panel {
  background: #14171a;
  border: 1px solid #262b31;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .38);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  left: 50%;
  max-height: calc(100vh - 124px);
  opacity: 0;
  overflow: hidden auto;
  position: absolute;
  top: 0;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s ease;
  visibility: hidden;
  width: min(1160px, calc(100vw - 40px));
}

.mega-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.mega-panel.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1024px, calc(100vw - 40px));
}

.mega-column {
  border-right: 1px dashed #37404a;
  min-height: 150px;
  padding: 10px 12px 22px;
}

.mega-column:nth-child(4n),
.mega-panel.compact .mega-column:nth-child(3n) {
  border-right: 0;
}

.mega-label {
  background: #252a2f;
  color: #a9b5c5;
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  margin: -10px -12px 10px;
  padding: 6px 10px;
  text-transform: uppercase;
}

.mega-link {
  align-items: flex-start;
  display: grid;
  gap: 10px;
  grid-template-columns: 28px minmax(0, 1fr);
  min-height: 48px;
  padding: 10px 8px;
  transition: background-color .1s ease, color .1s ease, transform .1s ease;
}

.mega-link:hover {
  background: rgba(47, 145, 255, .12);
  transform: translateX(2px);
}

.mega-copy strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.mega-copy > span {
  color: #9fb0c7;
  display: block;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 3px;
}

.mega-icon {
  color: #fff;
  display: block;
  height: 24px;
  position: relative;
  width: 24px;
}

.mega-icon::before,
.mega-icon::after {
  content: "";
  position: absolute;
}

.mega-panel.active .mega-link {
  animation: menuItemIn .18s ease both;
}

.mega-panel.active .mega-link:nth-of-type(2) {
  animation-delay: .025s;
}

.mega-panel.active .mega-link:nth-of-type(3) {
  animation-delay: .05s;
}

.mega-panel.active .mega-link:nth-of-type(4) {
  animation-delay: .075s;
}

.get-started-panel {
  counter-reset: cta;
  grid-template-columns: 1fr;
  left: auto;
  max-width: 352px;
  padding-bottom: 12px;
  right: 20px;
  transform: translateY(-8px);
  width: min(352px, calc(100vw - 40px));
}

.get-started-panel.active {
  transform: translateY(0);
}

.get-started-panel::before {
  background: #252a2f;
  color: #a9b5c5;
  content: "Get started/";
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  margin-bottom: 10px;
  padding: 7px 14px;
  text-transform: uppercase;
}

.get-started-panel::after {
  border-top: 1px dashed #37404a;
  color: #7c8a9c;
  content: "// Avg. response time: under 24 hours";
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  margin: 10px 12px 0;
  padding: 12px 6px 0;
}

.get-started-panel .mega-link {
  border-left: 2px solid transparent;
  gap: 14px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  margin: 0 12px;
  padding: 14px 10px 14px 14px;
}

.get-started-panel .mega-link + .mega-link {
  border-top: 1px dashed #2c333b;
}

.get-started-panel .mega-link:hover {
  border-left-color: #2f91ff;
}

.get-started-panel .mega-icon {
  background: #1a1f25;
  box-shadow: 0 0 0 9px #1a1f25, 0 0 0 10px #2c333b;
  margin: 9px;
}

.get-started-panel .mega-link:hover .mega-icon {
  background: rgba(47, 145, 255, .16);
  box-shadow: 0 0 0 9px rgba(47, 145, 255, .16), 0 0 0 10px rgba(47, 145, 255, .55);
  color: #9ecbff;
}

.get-started-panel .mega-link::after {
  align-self: start;
  color: #5c6a7d;
  content: "0" counter(cta) "/";
  counter-increment: cta;
  font-family: var(--mono);
  font-size: 11px;
  margin-top: 3px;
  transition: color .12s ease;
}

.get-started-panel .mega-link:hover::after {
  color: #2f91ff;
}

.get-started-panel .mega-copy strong {
  font-size: 15px;
}

.icon-stack::before {
  border: 2px solid currentColor;
  height: 11px;
  left: 3px;
  top: 2px;
  transform: skewY(-24deg);
  width: 15px;
}

.icon-stack::after {
  border: 2px solid currentColor;
  height: 11px;
  left: 6px;
  top: 8px;
  transform: skewY(-24deg);
  width: 15px;
}

.icon-user::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  height: 18px;
  left: 1px;
  top: 1px;
  width: 18px;
}

.icon-user::after {
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  height: 6px;
  left: 7px;
  top: 11px;
  width: 8px;
}

.icon-finger::before {
  border: 2px solid currentColor;
  border-radius: 11px;
  height: 18px;
  left: 7px;
  top: 2px;
  width: 9px;
}

.icon-finger::after {
  border: 2px solid currentColor;
  border-right: 0;
  border-top: 0;
  height: 12px;
  left: 2px;
  top: 7px;
  width: 8px;
}

.icon-w::before,
.icon-h::before,
.icon-usdc::before,
.icon-name::before,
.icon-terminal::before,
.icon-funding::before {
  font-family: var(--mono);
  font-weight: 800;
  left: 0;
  top: 1px;
}

.icon-w::before {
  content: "W";
  font-size: 17px;
}

.icon-h::before {
  border: 2px solid currentColor;
  content: "H";
  font-size: 13px;
  height: 19px;
  line-height: 17px;
  text-align: center;
  width: 19px;
}

.icon-usdc::before {
  content: "$";
  font-size: 18px;
  left: 6px;
}

.icon-name::before {
  content: ".NS";
  font-size: 12px;
  top: 5px;
}

.icon-terminal::before {
  content: ">_";
  font-size: 15px;
  top: 3px;
}

.icon-funding::before {
  content: "$";
  font-size: 18px;
  left: 6px;
}

.icon-seal::before,
.icon-lines::before,
.icon-blog::before {
  background: currentColor;
  border-radius: 20px;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
  height: 3px;
  left: 1px;
  top: 5px;
  width: 21px;
}

.icon-box::before,
.icon-doc::before,
.icon-mail::before,
.icon-news::before {
  border: 2px solid currentColor;
  height: 17px;
  left: 3px;
  top: 3px;
  width: 17px;
}

.icon-box::after,
.icon-doc::after {
  background: currentColor;
  height: 2px;
  left: 7px;
  top: 8px;
  width: 9px;
}

.icon-drop::before,
.icon-flame::before,
.icon-shield::before {
  border: 2px solid currentColor;
  border-radius: 60% 60% 60% 10%;
  height: 16px;
  left: 4px;
  top: 3px;
  transform: rotate(-45deg);
  width: 16px;
}

.icon-speed::before {
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  height: 12px;
  left: 2px;
  top: 8px;
  width: 19px;
}

.icon-speed::after {
  background: currentColor;
  height: 2px;
  left: 11px;
  top: 13px;
  transform: rotate(-38deg);
  width: 10px;
}

.icon-cycle::before {
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  height: 17px;
  left: 2px;
  top: 3px;
  width: 17px;
}

.icon-cycle::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  height: 6px;
  right: 1px;
  top: 3px;
  transform: rotate(35deg);
  width: 6px;
}

.icon-bank::before {
  border-bottom: 12px solid currentColor;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  height: 0;
  left: 1px;
  top: 2px;
  width: 0;
}

.icon-bank::after {
  background: currentColor;
  box-shadow: 6px 0 0 currentColor, 12px 0 0 currentColor;
  height: 9px;
  left: 4px;
  top: 12px;
  width: 2px;
}

.icon-network::before,
.icon-community::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 12px 0 0 -1px currentColor, 6px 11px 0 -1px currentColor;
  height: 7px;
  left: 1px;
  top: 2px;
  width: 7px;
}

.icon-network::after,
.icon-community::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: 10px;
  left: 7px;
  top: 7px;
  transform: rotate(45deg);
  width: 10px;
}

/* 4-point AI sparkle */
.icon-spark::before {
  background: currentColor;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  height: 22px;
  left: 1px;
  top: 1px;
  width: 22px;
}

.icon-spark::after {
  background: currentColor;
  clip-path: polygon(50% 15%, 57% 43%, 85% 50%, 57% 57%, 50% 85%, 43% 57%, 15% 50%, 43% 43%);
  height: 11px;
  right: 0;
  top: 0;
  width: 11px;
}

.icon-game::before {
  border: 2px solid currentColor;
  height: 13px;
  left: 2px;
  top: 6px;
  width: 20px;
}

.icon-game::after {
  background: currentColor;
  box-shadow: 12px 0 0 currentColor;
  height: 3px;
  left: 6px;
  top: 11px;
  width: 3px;
}

.icon-code::before {
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  height: 10px;
  left: 2px;
  top: 6px;
  transform: rotate(45deg);
  width: 10px;
}

.icon-code::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  height: 10px;
  right: 2px;
  top: 6px;
  transform: rotate(45deg);
  width: 10px;
}

.icon-rocket::before {
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  height: 16px;
  left: 5px;
  top: 2px;
  transform: rotate(45deg);
  width: 16px;
}

.icon-rocket::after {
  background: currentColor;
  height: 6px;
  left: 3px;
  top: 17px;
  transform: rotate(-35deg);
  width: 2px;
}

/* target / goal icon for Product Strategy */
.icon-tool::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  height: 18px;
  left: 2px;
  top: 2px;
  width: 18px;
}

.icon-tool::after {
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #14171a, 0 0 0 6px currentColor;
  height: 4px;
  left: 9px;
  top: 9px;
  width: 4px;
}

.icon-idea::before,
.icon-question::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  height: 14px;
  left: 4px;
  top: 2px;
  width: 14px;
}

.icon-idea::after,
.icon-question::after {
  background: currentColor;
  height: 5px;
  left: 10px;
  top: 17px;
  width: 4px;
}

.icon-question::before {
  content: "?";
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  line-height: 13px;
  text-align: center;
}

.icon-calendar::before {
  border: 2px solid currentColor;
  height: 16px;
  left: 3px;
  top: 5px;
  width: 17px;
}

.icon-calendar::after {
  background: currentColor;
  height: 2px;
  left: 3px;
  top: 10px;
  width: 17px;
}

.icon-chat::before,
.icon-forum::before {
  border: 2px solid currentColor;
  border-radius: 3px;
  height: 13px;
  left: 2px;
  top: 4px;
  width: 18px;
}

.icon-chat::after,
.icon-forum::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  bottom: 2px;
  height: 5px;
  left: 7px;
  transform: skewX(-28deg);
  width: 6px;
}

.icon-clock::before,
.icon-hub::before,
.icon-globe::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  height: 18px;
  left: 2px;
  top: 2px;
  width: 18px;
}

.icon-clock::after {
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  height: 6px;
  left: 11px;
  top: 6px;
  width: 5px;
}

.icon-video::before {
  border: 2px solid currentColor;
  height: 14px;
  left: 2px;
  top: 5px;
  width: 14px;
}

.icon-video::after {
  border-bottom: 6px solid transparent;
  border-left: 8px solid currentColor;
  border-top: 6px solid transparent;
  right: 1px;
  top: 6px;
}

.icon-hub::after,
.icon-globe::after {
  background: currentColor;
  height: 2px;
  left: 3px;
  top: 11px;
  width: 18px;
}

.icon-mail::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: 9px;
  left: 6px;
  top: 6px;
  transform: rotate(45deg);
  width: 9px;
}

.icon-research::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  height: 12px;
  left: 2px;
  top: 2px;
  width: 12px;
}

.icon-research::after {
  background: currentColor;
  height: 9px;
  left: 15px;
  top: 14px;
  transform: rotate(-45deg);
  width: 2px;
}

.hero {
  align-items: flex-start;
  background:
    radial-gradient(circle at 50% 40%, rgba(47, 145, 255, .85), transparent 28%),
    linear-gradient(180deg, #000 0%, #02121f 28%, #126bc4 58%, #ddebfb 100%);
  color: #fff;
  display: flex;
  height: 100svh;
  justify-content: center;
  min-height: 760px;
  overflow: hidden;
  padding: 160px 20px 48px;
  position: relative;
}

.noise-canvas {
  inset: 0;
  opacity: .22;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-glow {
  background:
    radial-gradient(circle, rgba(117, 189, 255, .38), transparent 42%),
    radial-gradient(circle, rgba(0, 5, 10, .6), transparent 45%);
  filter: blur(16px);
  height: 86vmin;
  position: absolute;
  top: -1%;
  width: 86vmin;
}

.hero-title {
  align-items: center;
  display: inline-flex;
  gap: .32em;
  font-weight: 500;
  justify-content: center;
  line-height: .88;
  margin-inline: auto;
  max-width: none;
  min-height: 280px;
  position: relative;
  text-align: center;
  transform-origin: center;
  top: 104px;
  width: max-content;
  z-index: 1;
}

.hero-title span {
  display: block;
  text-shadow: 0 0 36px rgba(47, 145, 255, .45);
}

.hero-logo {
  display: inline-block;
  filter: drop-shadow(0 0 26px rgba(47, 145, 255, .5));
  height: .82em;
  margin-right: .02em;
  position: relative;
  top: .04em;
  vertical-align: baseline;
  width: auto;
}

.hero-bg-word {
  color: rgba(212, 235, 255, .88);
  display: inline-block;
  font-size: clamp(78px, 9.4vw, 142px);
  line-height: .86;
  position: relative;
  text-align: center;
  text-shadow: 0 0 22px rgba(47, 145, 255, .42);
  white-space: nowrap;
}

.hero-bg-word::after {
  animation: caretBlink .62s steps(1, end) infinite;
  background: rgba(255, 255, 255, .9);
  content: "";
  display: inline-block;
  height: .72em;
  margin-left: .04em;
  position: relative;
  top: .06em;
  width: .035em;
}

.hero-main-word {
  animation: heroWordIn .36s cubic-bezier(.2, .8, .2, 1) both;
  color: #fff;
  font-size: clamp(82px, 10vw, 148px);
  line-height: .86;
  position: relative;
  white-space: nowrap;
}

.hero-copy {
  align-items: center;
  bottom: 118px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: min(620px, calc(100% - 24px));
  z-index: 2;
}

.hero-copy p {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  max-width: 360px;
  text-align: center;
}

.hero-actions {
  display: flex;
}

.button {
  align-items: center;
  border: 0;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  padding: 0 30px;
  white-space: nowrap;
}

.button.black {
  background: #000;
  color: #fff;
}

.button.white {
  background: #fff;
  color: #000;
}

.button.blue {
  background: var(--blue);
  color: #fff;
}

.partners,
.manifesto,
.traits,
.benefits {
  background: #fff;
}

.partners {
  overflow: hidden;
  padding: 118px 0 112px;
  position: relative;
}

.partners-head {
  margin: 0 auto 64px;
  max-width: 1180px;
  padding: 0 20px;
  text-align: center;
}

.partners-head p {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.1;
  margin: 0 auto;
  max-width: 920px;
}

.partners-head p strong {
  color: var(--blue);
  font-weight: 700;
}

/* moving brand-partner marquee */
.brand-marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brand-track {
  animation: brandScroll 34s linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-marquee .brand {
  align-items: center;
  color: #a7afbc;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 14px;
  padding: 0 42px;
  transition: color .25s ease, transform .25s ease;
}

.brand-marquee .partner-brand {
  height: 70px;
  justify-content: center;
  min-width: 210px;
  padding: 0 34px;
}

.brand-marquee .partner-brand img {
  display: block;
  filter: grayscale(1) contrast(.9);
  max-height: 48px;
  max-width: 184px;
  object-fit: contain;
  opacity: .58;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
  width: auto;
}

.brand-marquee .brand:hover {
  color: var(--blue);
  transform: translateY(-3px);
}

.brand-marquee .partner-brand:hover img {
  filter: grayscale(1) contrast(1.05);
  opacity: .9;
  transform: scale(1.04);
}

.brand-marquee .brand b {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.p-icon {
  color: inherit;
  flex: 0 0 auto;
  height: 50px;
  position: relative;
  transition: transform .25s ease;
  width: 50px;
}

.brand-marquee .brand:hover .p-icon {
  transform: rotate(-6deg) scale(1.06);
}

.p-icon::before,
.p-icon::after {
  content: "";
  position: absolute;
}

/* partner icon glyphs (drawn with currentColor) */
.p-orbit::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  height: 20px;
  left: 15px;
  top: 15px;
  width: 20px;
}

.p-orbit::after {
  background: currentColor;
  border-radius: 50%;
  box-shadow: -26px 26px 0 currentColor;
  height: 7px;
  right: 9px;
  top: 9px;
  width: 7px;
}

.p-cube::before {
  border: 2px solid currentColor;
  height: 15px;
  left: 13px;
  top: 12px;
  transform: skewY(-24deg);
  width: 22px;
}

.p-cube::after {
  border: 2px solid currentColor;
  height: 15px;
  left: 17px;
  top: 21px;
  transform: skewY(-24deg);
  width: 22px;
}

.p-shield::before {
  border: 2px solid currentColor;
  border-radius: 5px 5px 14px 14px;
  height: 24px;
  left: 16px;
  top: 13px;
  width: 20px;
}

.p-shield::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: 9px;
  left: 23px;
  top: 20px;
  transform: rotate(45deg);
  width: 5px;
}

.p-spark::before {
  border: 2px solid currentColor;
  height: 13px;
  left: 19px;
  top: 19px;
  transform: rotate(45deg);
  width: 13px;
}

.p-spark::after {
  border: 2px solid currentColor;
  height: 13px;
  left: 19px;
  top: 19px;
  width: 13px;
}

.p-globe::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  height: 24px;
  left: 14px;
  top: 13px;
  width: 24px;
}

.p-globe::after {
  border: 2px solid currentColor;
  border-radius: 50%;
  height: 24px;
  left: 21px;
  top: 13px;
  width: 10px;
}

.p-node::before {
  background: currentColor;
  border-radius: 50%;
  box-shadow: -13px -13px 0 currentColor, 13px -13px 0 currentColor, 0 15px 0 currentColor;
  height: 7px;
  left: 22px;
  top: 22px;
  width: 7px;
}

.p-node::after {
  border: 2px solid currentColor;
  border-radius: 50%;
  height: 30px;
  left: 10px;
  opacity: .28;
  top: 10px;
  width: 30px;
}

.p-bars::before {
  background: currentColor;
  bottom: 14px;
  box-shadow: 8px 0 0 currentColor;
  height: 8px;
  left: 15px;
  width: 4px;
}

.p-bars::after {
  background: currentColor;
  bottom: 14px;
  height: 18px;
  left: 31px;
  width: 4px;
}

.p-gem::before {
  border: 2px solid currentColor;
  height: 16px;
  left: 17px;
  top: 17px;
  transform: rotate(45deg);
  width: 16px;
}

.p-gem::after {
  border: 2px solid currentColor;
  height: 7px;
  left: 21px;
  top: 21px;
  transform: rotate(45deg);
  width: 7px;
}

.manifesto {
  overflow: hidden;
  padding: 120px 20px 130px;
  position: relative;
}

/* oversized ghost word drifting behind the headline */
.manifesto-bgword {
  color: transparent;
  font-family: var(--sans);
  font-size: clamp(180px, 30vw, 460px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: -2vw;
  text-transform: lowercase;
  top: -.18em;
  -webkit-text-stroke: 1px rgba(47, 145, 255, .14);
  user-select: none;
  z-index: 0;
}

/* keep headline + eyebrow above the ghost word */
.manifesto .eyebrow,
.manifesto h1 {
  position: relative;
  z-index: 1;
}

/* upgraded eyebrow with a live pulse dot — scoped so other eyebrows stay put */
.manifesto-eyebrow {
  align-items: center;
  background: #eef2f7;
  border: 1px solid #dde3ec;
  border-radius: 999px;
  gap: 9px;
  letter-spacing: .04em;
  padding: 6px 14px 6px 11px;
  text-transform: uppercase;
}

.eyebrow-dot {
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(47, 145, 255, .55);
  display: inline-block;
  height: 8px;
  width: 8px;
  animation: eyebrow-pulse 2.2s ease-out infinite;
}

@keyframes eyebrow-pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 145, 255, .5); }
  70% { box-shadow: 0 0 0 7px rgba(47, 145, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 145, 255, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow-dot {
    animation: none;
  }
}

.eyebrow {
  background: #e9edf3;
  color: #000;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 13px;
  margin-bottom: 18px;
  padding: 4px 7px;
}

.manifesto h1 {
  font-size: clamp(52px, 6vw, 94px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
  margin: 0;
  max-width: 1350px;
}

/* scroll-driven word reveal: each word fills from grey to ink as you scroll */
.manifesto h1 .word {
  color: #d2d7df;
  transition: color .16s linear;
}

.manifesto h1 .word.lit {
  color: #0b0e12;
}

.inline-chip {
  background: var(--blue);
  color: transparent;
  display: inline-block;
  height: .88em;
  margin: 0 .05em;
  position: relative;
  top: .1em;
  width: 1.2em;
}

.inline-chip::before,
.inline-chip::after {
  border: 3px solid #fff;
  content: "";
  position: absolute;
}

.inline-chip::before {
  height: 42%;
  left: 28%;
  top: 18%;
  width: 42%;
}

.inline-chip::after {
  border-left: 0;
  border-top: 0;
  bottom: 18%;
  height: 32%;
  right: 22%;
  width: 32%;
}

.inline-chip.graph::before {
  border-radius: 50%;
}

.inline-chip.graph::after {
  border: 0;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  bottom: 20%;
  height: 34%;
  transform: rotate(-15deg);
  width: 48%;
}

.traits {
  padding: 90px 20px 180px;
}

.traits-kicker {
  align-items: center;
  display: flex;
  font-family: var(--mono);
  font-size: 14px;
  gap: 10px;
  margin: 0 auto 44px;
  max-width: 1200px;
}

.traits-kicker span {
  background: #e8ebef;
  padding: 4px 8px;
}

/* editorial numbered rows — number · label · divider · hover arrow */
.trait-list {
  border-top: 1px solid #e2e7ee;
  margin: 0 auto;
  max-width: 1200px;
}

.trait-item {
  align-items: center;
  border-bottom: 1px solid #e2e7ee;
  cursor: default;
  display: flex;
  gap: 28px;
  opacity: 0;
  padding: 30px 8px;
  position: relative;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.2, .8, .2, 1),
    transform .55s cubic-bezier(.2, .8, .2, 1),
    padding .35s ease, background-color .35s ease;
}

.trait-item.in {
  opacity: 1;
  transform: none;
}

.trait-item:hover {
  background: #f6f9fe;
  padding-left: 20px;
}

/* small mono index on the left */
.trait-item i {
  color: var(--blue);
  flex: none;
  font-family: var(--mono);
  font-size: 15px;
  font-style: normal;
  letter-spacing: .08em;
  width: 34px;
}

/* the trait label */
.trait-item span {
  flex: 1;
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.04;
  transition: color .3s ease;
}

/* arrow that fades/slides in on hover */
.trait-item::after {
  color: var(--blue);
  content: "→";
  flex: none;
  font-size: 26px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2, .8, .2, 1);
}

.trait-item:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.stack-scene {
  background: #010305;
  color: #fff;
  min-height: 2100px;
  overflow: hidden;
  padding: 160px 20px;
  position: relative;
}

.scan-bg {
  background:
    repeating-linear-gradient(90deg, rgba(47, 145, 255, .25) 0 6px, rgba(47, 145, 255, .02) 6px 18px, transparent 18px 34px),
    linear-gradient(90deg, #0c9bf7 0%, #001326 22%, #000 42%, #10191b 55%, #42c3ff 76%, #0575df 100%);
  filter: saturate(1.1);
  inset: 0 0 auto;
  height: 720px;
  opacity: .86;
  position: absolute;
}

.stack-heading {
  margin: 0 auto 460px;
  max-width: 980px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.stack-heading .eyebrow {
  background: #111820;
  color: #9db3cd;
}

.stack-heading h2 {
  font-size: clamp(52px, 7vw, 102px);
  font-weight: 500;
  line-height: .94;
  margin: 0;
  text-wrap: balance;
}

.stack-grid {
  display: grid;
  gap: 96px;
  grid-template-columns: repeat(2, minmax(0, 460px));
  justify-content: center;
  position: relative;
  z-index: 2;
}

.stack-grid::before {
  background-image: linear-gradient(#fff 35%, transparent 0);
  background-position: right;
  background-repeat: repeat-y;
  background-size: 2px 14px;
  content: "";
  height: 100%;
  left: 50%;
  opacity: .55;
  position: absolute;
  top: 0;
  width: 2px;
}

.stack-card {
  background: #111418;
  border: 1px solid #3d4651;
  min-height: 420px;
  padding: 18px 18px 24px;
}

.stack-card:nth-child(even) {
  margin-top: 0;
}

.stack-card > span {
  border: 1px solid #4d5967;
  display: inline-flex;
  font-family: var(--mono);
  font-weight: 700;
  height: 40px;
  justify-content: center;
  align-items: center;
  width: 40px;
}

.stack-card h3 {
  border-bottom: 1px solid #3d4651;
  display: inline-block;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 0 12px;
  padding-bottom: 16px;
  text-transform: uppercase;
  width: calc(100% - 62px);
}

.wireframe-box {
  align-items: center;
  display: flex;
  height: 250px;
  justify-content: center;
  position: relative;
}

.wireframe-box i {
  border: 1px solid #2d89ff;
  display: block;
  height: 44px;
  position: absolute;
  transform: skewY(-26deg);
  width: 140px;
}

.wireframe-box i:nth-child(1) {
  background: rgba(47, 145, 255, .15);
  transform: translate(-46px, -34px) skewY(-26deg);
}

.wireframe-box i:nth-child(2) {
  border-color: #4b5663;
  transform: translate(30px, 12px) skewY(-26deg);
}

.wireframe-box i:nth-child(3) {
  transform: translate(-24px, 58px) skewY(-26deg);
}

.wireframe-box.variant i {
  border-radius: 50%;
  height: 70px;
  transform: none;
  width: 70px;
}

.wireframe-box.variant i:nth-child(1) {
  transform: translate(-70px, 0);
}

.wireframe-box.variant i:nth-child(2) {
  border-color: #4b5663;
  transform: translate(0, -28px);
}

.wireframe-box.variant i:nth-child(3) {
  transform: translate(70px, 0);
}

.stack-card p {
  border-top: 1px solid #3d4651;
  color: #8d98a8;
  line-height: 1.45;
  margin: 0;
  padding-top: 20px;
}

.benefits {
  border: 2px dotted #b7c4d5;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 96px 36px 116px;
  position: relative;
}

.benefit-column {
  border-right: 2px dotted #b7c4d5;
  padding: 0 32px;
}

.benefit-column:last-of-type {
  border-right: 0;
}

.benefit-column h2 {
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 500;
  line-height: .98;
  margin: 0 auto 96px;
  max-width: 620px;
  text-align: center;
  text-wrap: balance;
}

.benefit-column ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefit-column li {
  background: #f0f1f4;
  font-size: 20px;
  font-weight: 700;
  padding: 32px 24px;
}

.benefit-column li::before {
  background: var(--blue);
  content: "";
  display: inline-block;
  height: 12px;
  margin-right: 12px;
  width: 12px;
}

.button.centered {
  bottom: 36px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.industries,
.start-paths,
.loop,
.footer {
  background: #000;
  color: #fff;
}

.industries {
  padding: 128px 20px;
}

.industry-heading {
  margin: 0 auto 160px;
  max-width: 1000px;
  text-align: center;
}

.industry-heading h2,
.loop h2 {
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 500;
  line-height: .96;
  margin: 0 0 56px;
}

.industry-heading p,
.loop p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.industry-heading p span,
.loop p span {
  background: var(--blue);
  display: inline-block;
  height: 14px;
  margin-right: 10px;
  width: 14px;
}

.industry-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-grid article {
  background: #14171a;
  border: 1px solid #1d242c;
  min-height: 365px;
  padding: 28px 26px;
}

.industry-title {
  align-items: center;
  border-bottom: 2px dotted #536071;
  display: flex;
  gap: 16px;
  padding-bottom: 32px;
}

.industry-title span {
  font-size: 30px;
}

.industry-title h3 {
  font-size: 24px;
  margin: 0;
}

.industry-grid ul {
  display: grid;
  gap: 4px;
  list-style: none;
  margin: 78px 0 28px;
  padding: 0;
}

.industry-grid li {
  align-items: center;
  border-bottom: 1px solid #20272f;
  color: #d4dbe4;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  gap: 14px;
  line-height: 1.25;
  padding: 14px 6px 14px 0;
  transition: color .28s ease, padding-left .28s ease;
}

.industry-grid li:last-child {
  border-bottom: 0;
}

.industry-grid li:hover {
  color: #fff;
  padding-left: 6px;
}

/* blue checkmark chip */
.industry-grid li::before {
  align-items: center;
  background: rgba(47, 145, 255, .12);
  border: 1px solid rgba(47, 145, 255, .45);
  border-radius: 7px;
  color: var(--blue);
  content: "✓";
  display: inline-flex;
  flex: none;
  font-size: 13px;
  font-weight: 700;
  height: 26px;
  justify-content: center;
  transition: background-color .28s ease, transform .28s cubic-bezier(.2, .8, .2, 1);
  width: 26px;
}

.industry-grid li:hover::before {
  background: var(--blue);
  color: #fff;
  transform: scale(1.08);
}

.industry-grid a {
  background: var(--blue);
  display: inline-flex;
  font-weight: 800;
  padding: 14px 18px;
}

.start-paths {
  display: grid;
  padding: 0 20px 150px;
}

.start-paths a {
  border-top: 2px dotted #536071;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  padding: 28px 36px 76px;
}

.start-paths strong {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
}

.start-paths span {
  color: #8090a8;
  font-size: 20px;
  line-height: 1.3;
  max-width: 420px;
}

.loop {
  padding: 0 20px 132px;
  text-align: center;
}

.loop h2 span {
  background: var(--blue);
  color: transparent;
  display: inline-block;
  height: .92em;
  margin: 0 .08em;
  position: relative;
  top: .11em;
  width: .96em;
}

.loop h2 span::before {
  border: 4px solid #fff;
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
  content: "";
  height: 42%;
  left: 27%;
  position: absolute;
  top: 20%;
  width: 46%;
}

.loop h2 span::after {
  background: #fff;
  bottom: 23%;
  content: "";
  height: 4px;
  left: 22%;
  position: absolute;
  width: 56%;
}

.loop-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1.1fr .85fr .85fr;
  margin: 64px auto 0;
  max-width: 940px;
  text-align: left;
}

.featured-list {
  background: #15191e;
  padding: 12px 16px;
}

.featured-list > span {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.featured-list a {
  align-items: center;
  border-bottom: 2px dotted #46515f;
  display: flex;
  font-weight: 800;
  gap: 16px;
  justify-content: space-between;
  line-height: 1.3;
  min-height: 72px;
}

.featured-list i {
  background: #2b313a;
  font-style: normal;
  padding: 7px 10px;
}

.media-card {
  background: #15191e;
  min-height: 282px;
}

.media-card div {
  height: 236px;
}

.media-card.purple div {
  background:
    radial-gradient(circle at 30% 35%, #dbff43, transparent 14%),
    radial-gradient(circle at 60% 40%, #a321ff, transparent 16%),
    linear-gradient(135deg, #12072c, #2e0d62 55%, #0e0f1c);
}

.media-card.city div {
  background:
    linear-gradient(90deg, rgba(255,255,255,.4), transparent),
    linear-gradient(135deg, #8bd1ff, #f4f9ff 42%, #bfc8d2 43%, #57616f 100%);
}

.media-card a {
  background: var(--blue);
  display: inline-flex;
  font-weight: 800;
  padding: 12px 14px;
}

.loop {
  padding: 118px 20px 140px;
}

.loop-head {
  margin: 0 auto;
  max-width: 1280px;
  text-align: center;
}

.loop-head .eyebrow {
  background: rgba(47, 145, 255, .12);
  border: 1px solid rgba(47, 145, 255, .32);
  color: #9ed1ff;
  margin-bottom: 24px;
}

.loop h2 {
  margin-bottom: 30px;
}

.loop p {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.4vw, 20px);
}

.loop-grid {
  display: grid;
  gap: 16px;
  grid-template-areas:
    "feature list list"
    "feature card-a card-b";
  grid-template-columns: minmax(360px, 1.2fr) minmax(240px, .72fr) minmax(240px, .72fr);
  margin-top: 58px;
  max-width: 1120px;
}

.loop-feature,
.media-card,
.featured-list {
  border: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
}

.loop-feature {
  background: #10151b;
  grid-area: feature;
  min-height: 540px;
  position: relative;
}

.loop-feature::after {
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, .28) 52%, rgba(0, 0, 0, .9) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.loop-feature img,
.media-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.loop-feature img {
  inset: 0;
  position: absolute;
}

.loop-feature-copy {
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 28px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.loop-feature-copy span,
.media-card span {
  color: #8fcbff;
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.loop-feature-copy h3 {
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 600;
  line-height: .98;
  margin: 0 0 16px;
  max-width: 520px;
}

.loop-feature-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.35;
  max-width: 520px;
}

.loop-feature-copy a,
.media-card a {
  align-items: center;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  padding: 0 16px;
}

.featured-list {
  background:
    linear-gradient(135deg, rgba(47, 145, 255, .12), transparent 42%),
    #15191e;
  grid-area: list;
  padding: 22px 24px;
}

.featured-list a {
  min-height: 62px;
}

.media-card {
  background: #15191e;
  display: grid;
  grid-template-rows: 185px 1fr;
  min-height: 360px;
}

.media-card div {
  height: auto;
  padding: 18px;
}

.media-card h3 {
  color: #fff;
  font-size: 21px;
  line-height: 1.08;
  margin: 0 0 22px;
}

.media-card.loop-card-a {
  grid-area: card-a;
}

.media-card.loop-card-b {
  grid-area: card-b;
}

.partner-gallery[hidden] {
  display: none !important;
}

.loop {
  background: #000;
  color: #fff;
  padding: 116px 20px 124px;
  text-align: center;
}

.loop-head .eyebrow {
  display: none;
}

.loop h2 {
  font-size: clamp(66px, 8.8vw, 124px);
  font-weight: 500;
  line-height: .88;
  margin: 0 0 34px;
  white-space: nowrap;
}

.loop h2 span {
  height: .9em;
  margin: 0 .1em;
  top: .1em;
  width: .96em;
}

.loop h2 span::before {
  border-width: 4px;
}

.loop p {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: clamp(18px, 1.75vw, 26px);
  font-weight: 700;
  gap: 12px;
  line-height: 1.1;
  margin: 0;
}

.loop p span {
  background: var(--blue);
  display: inline-block;
  flex: 0 0 auto;
  height: 18px;
  margin: 0;
  width: 18px;
}

.loop-grid {
  display: grid;
  gap: 10px;
  grid-template-areas: "list card-a card-b";
  grid-template-columns: minmax(380px, 1.25fr) minmax(280px, 1fr) minmax(280px, 1fr);
  margin: 76px auto 0;
  max-width: 1250px;
  text-align: left;
}

.loop-feature {
  display: none;
}

.featured-list {
  background: #15191e;
  border: 1px solid rgba(255, 255, 255, .08);
  grid-area: list;
  min-height: 374px;
  overflow: hidden;
  padding: 0;
}

.featured-list > span {
  background: #252a2f;
  color: rgba(255, 255, 255, .85);
  display: block;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding: 8px 12px;
  text-transform: uppercase;
}

.featured-list a {
  align-items: center;
  border-bottom: 2px dotted #46515f;
  display: grid;
  gap: 14px;
  grid-template-columns: 80px minmax(0, 1fr) 34px;
  min-height: 106px;
  padding: 14px 16px 14px 22px;
}

.featured-list a:last-child {
  border-bottom: 0;
}

.featured-list a img {
  display: block;
  height: 80px;
  object-fit: cover;
  width: 80px;
}

.featured-list a strong {
  color: #fff;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 800;
  line-height: 1.22;
}

.featured-list i {
  align-items: center;
  background: #2b313a;
  display: inline-flex;
  font-size: 20px;
  font-style: normal;
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

.media-card {
  background: #15191e;
  border: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 374px;
  overflow: hidden;
}

.media-card img {
  display: block;
  height: 100%;
  min-height: 334px;
  object-fit: cover;
  width: 100%;
}

.media-card div {
  background: #15191e;
  display: block;
  height: auto;
  padding: 0;
}

.media-card span,
.media-card h3 {
  display: none;
}

.media-card a {
  align-items: center;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  font-size: 18px;
  font-weight: 800;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
}

.media-card a::before {
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  content: "";
  display: inline-block;
  height: 0;
  width: 0;
}

.partner-gallery {
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 145, 255, .12), transparent 28%),
    linear-gradient(180deg, #f4f7fb 0%, #e8edf4 100%);
  color: #10203c;
  overflow: hidden;
  padding: 92px 0 96px;
}

.partner-gallery-head {
  margin: 0 auto 54px;
  max-width: 920px;
  padding: 0 20px;
  text-align: center;
}

.partner-gallery-kicker {
  color: #2f66ff;
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.partner-gallery h2 {
  color: #10203c;
  font-size: clamp(42px, 5vw, 72px);
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .95;
  margin: 0;
}

.partner-gallery p {
  color: #5a6576;
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.35;
  margin: 20px auto 0;
  max-width: 700px;
}

.partner-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 20px;
}

.partner-spotlight,
.partner-side-panel figure {
  background: #d8e0ea;
  border: 1px solid rgba(16, 32, 60, .08);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(16, 32, 60, .13);
  margin: 0;
  overflow: hidden;
}

.partner-spotlight {
  aspect-ratio: 16 / 9;
}

.partner-side-panel {
  display: grid;
  gap: 18px;
}

.partner-side-panel figure {
  aspect-ratio: 16 / 10;
}

.partner-showcase img,
.partner-rail img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.partner-showcase img {
  transition: transform .5s ease, filter .5s ease;
}

.partner-spotlight:hover img,
.partner-side-panel figure:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.partner-rail {
  margin-top: 24px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  overflow: hidden;
}

.partner-rail-track {
  animation: partnerRailSlide 42s linear infinite;
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.partner-rail:hover .partner-rail-track {
  animation-play-state: paused;
}

.partner-rail img {
  border: 1px solid rgba(16, 32, 60, .08);
  border-radius: 10px;
  flex: 0 0 auto;
  height: 112px;
  opacity: .72;
  transition: opacity .25s ease, transform .25s ease;
  width: 158px;
}

.partner-rail img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

@keyframes partnerRailSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.partner-photo-marquee {
  display: grid;
  gap: 16px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-photo-marquee[hidden] {
  display: none !important;
}

.partner-photo-row {
  overflow: hidden;
  width: 100%;
}

.partner-photo-track {
  animation: partnerPhotoSlide 46s linear infinite;
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.partner-photo-row.reverse .partner-photo-track {
  animation-duration: 52s;
  animation-name: partnerPhotoSlideReverse;
}

.partner-photo-marquee:hover .partner-photo-track {
  animation-play-state: paused;
}

.partner-photo-set {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
}

.partner-shot {
  background: #d8e0ea;
  border: 1px solid rgba(16, 32, 60, .08);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(16, 32, 60, .12);
  flex: 0 0 auto;
  height: 220px;
  margin: 0;
  overflow: hidden;
  width: 220px;
}

.partner-shot.slim {
  width: 140px;
}

.partner-shot.wide {
  width: 310px;
}

.partner-shot img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
  width: 100%;
}

.partner-shot:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.05);
}

@keyframes partnerPhotoSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes partnerPhotoSlideReverse {
  from {
    transform: translateX(calc(-50% - 8px));
  }

  to {
    transform: translateX(0);
  }
}

.footer {
  border-top: 2px dotted #37404a;
  padding: 64px 20px 32px;
}

.footer-mark {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--mono);
  font-size: clamp(17px, 4.5vw, 24px);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.15;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer h3 {
  font-family: var(--mono);
  font-size: 16px;
  text-transform: uppercase;
}

.footer a {
  color: #7f8a9a;
  display: block;
  font-family: var(--mono);
  line-height: 1.7;
}

.footer small {
  color: #7f8a9a;
  display: block;
  font-family: var(--mono);
  margin-top: 80px;
}

.service-page {
  background: #000;
  color: #fff;
}

.service-page .site-shell {
  background: #000;
}

.custom-main {
  background: #000;
  color: #fff;
  overflow: hidden;
}

.custom-hero {
  background:
    radial-gradient(circle at 58% 40%, rgba(47, 145, 255, .86), transparent 31%),
    linear-gradient(180deg, #000 0%, #04101c 28%, #0d64bd 66%, #ddecfb 100%);
  min-height: 100svh;
  overflow: hidden;
  padding: 154px clamp(18px, 4.5vw, 72px) 72px;
  position: relative;
}

.custom-hero-bg {
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 44px 44px;
  inset: 0;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 76%, transparent 100%);
  opacity: .5;
  position: absolute;
}

.custom-hero-inner {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  margin: 0 auto;
  max-width: 1440px;
  position: relative;
  z-index: 1;
}

.custom-kicker {
  color: #9ed1ff;
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.custom-hero h1 {
  background: linear-gradient(90deg, #fff 0%, #eef8ff 58%, rgba(220, 238, 255, .58) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(50px, 5.8vw, 88px);
  font-weight: 500;
  line-height: .9;
  margin: 24px 0 28px;
  max-width: 980px;
}

.custom-hero p {
  color: rgba(236, 247, 255, .9);
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
  max-width: 710px;
}

.custom-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}

.custom-actions .button {
  min-width: 168px;
}

.custom-hero-card {
  background: #06101d;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.custom-hero-card img,
.custom-proof-media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.custom-card-overlay {
  background: rgba(0, 0, 0, .7);
  border: 1px solid rgba(255, 255, 255, .18);
  bottom: 22px;
  color: #fff;
  font-family: var(--mono);
  left: 22px;
  padding: 18px;
  position: absolute;
  right: 22px;
  text-transform: uppercase;
}

.custom-card-overlay span {
  color: #78bdff;
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.custom-card-overlay strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.custom-metrics {
  border-left: 1px solid rgba(255, 255, 255, .16);
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 54px auto 0;
  max-width: 1440px;
  position: relative;
  z-index: 1;
}

.custom-metrics article {
  background: rgba(0, 0, 0, .34);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  border-right: 1px solid rgba(255, 255, 255, .16);
  min-height: 150px;
  padding: 24px;
}

.custom-metrics strong {
  color: #fff;
  display: block;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 30px;
}

.custom-metrics span {
  color: #cfeaff;
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.custom-manifest,
.custom-traits,
.custom-stack,
.custom-proof,
.custom-process,
.custom-industries,
.custom-faq {
  padding: 82px clamp(20px, 5vw, 72px);
}

.custom-manifest {
  background: #f2f7fc;
  color: #050607;
}

.custom-manifest .custom-kicker,
.custom-process .custom-kicker,
.custom-industries .custom-kicker {
  color: #185d9f;
}

.custom-manifest h2 {
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 500;
  line-height: .96;
  margin: 20px 0 0;
  max-width: 1180px;
}

.custom-traits {
  background: #fff;
  color: #050607;
  display: grid;
  gap: 44px;
  grid-template-columns: 280px minmax(0, 1fr);
}

.custom-traits-label {
  color: #607086;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.custom-trait-list div {
  align-items: flex-start;
  border-bottom: 2px dotted #bac7d4;
  display: grid;
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 600;
  gap: 20px;
  grid-template-columns: 1fr auto;
  line-height: .96;
  padding: 28px 0;
}

.custom-trait-list i {
  color: #2f91ff;
  font-family: var(--mono);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.custom-stack {
  background: #000;
}

.custom-section-head {
  margin-bottom: 38px;
  max-width: 900px;
}

.custom-section-head h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: .98;
  margin: 18px 0 0;
}

.custom-stack-grid {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.custom-stack-card {
  background:
    linear-gradient(180deg, rgba(47, 145, 255, .08), transparent 40%),
    #111418;
  min-height: 250px;
  padding: 24px;
}

.custom-stack-card span {
  color: #78bdff;
  font-family: var(--mono);
  font-size: 40px;
  font-weight: 800;
}

.custom-stack-card h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  margin: 54px 0 14px;
}

.custom-stack-card p {
  color: #aab6c7;
  line-height: 1.45;
  margin: 0;
}

.custom-proof {
  align-items: center;
  background: #06101d;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
}

.custom-proof-media {
  border: 1px solid rgba(255, 255, 255, .16);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.custom-proof-copy h2 {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 500;
  line-height: .98;
  margin: 18px 0 22px;
}

.custom-proof-copy p {
  color: #c3d2e3;
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
}

.custom-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.custom-proof-list span {
  background: #000;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #cfeaff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  padding: 10px 12px;
  text-transform: uppercase;
}

.custom-process,
.custom-industries {
  background: #fff;
  color: #050607;
}

.custom-industries {
  background: #f2f7fc;
}

.custom-process .custom-section-head h2,
.custom-industries .custom-section-head h2 {
  color: #050607;
}

.custom-process-grid,
.custom-industry-grid {
  display: grid;
  gap: 1px;
}

.custom-process-grid {
  background: #cad4df;
  border: 1px solid #cad4df;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.custom-process-grid article {
  background: #f7fbff;
  min-height: 230px;
  padding: 24px;
}

.custom-process-grid span {
  color: #2f91ff;
  font-family: var(--mono);
  font-size: 40px;
  font-weight: 800;
}

.custom-process-grid h3 {
  font-size: 24px;
  line-height: 1;
  margin: 64px 0 14px;
}

.custom-process-grid p,
.custom-industry-grid p {
  color: #4f5e70;
  line-height: 1.45;
  margin: 0;
}

.custom-industry-grid {
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.custom-industry-grid article {
  background: #fff;
  border: 1px solid #d4dee9;
  min-height: 180px;
  padding: 24px;
}

.custom-industry-grid h3 {
  font-size: 24px;
  line-height: 1;
  margin: 0 0 18px;
}

.custom-faq {
  background: #000;
  color: #fff;
}

.custom-faq-list {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.custom-faq details {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  padding: 18px 0;
}

.custom-faq summary {
  cursor: pointer;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.05;
  list-style: none;
}

.custom-faq summary::-webkit-details-marker {
  display: none;
}

.custom-faq p {
  color: #aab6c7;
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 0;
  max-width: 900px;
}

.custom-cta {
  align-items: center;
  background: linear-gradient(90deg, #2f91ff, #09182d);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 clamp(20px, 5vw, 72px) 96px;
  min-height: 210px;
  padding: 36px;
}

.custom-cta h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 500;
  line-height: .95;
  margin: 0;
  max-width: 900px;
}

.service-detail-page,
.service-detail-page .site-shell,
.service-detail-main {
  background: #050607;
  color: #fff;
}

.service-detail-main {
  overflow: hidden;
}

.service-cover {
  align-items: end;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 72px) 52px;
  position: relative;
}

.service-cover-media {
  inset: 0;
  margin: 0;
  position: absolute;
}

.service-cover-media::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .58) 43%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(0deg, rgba(5, 6, 7, .98) 0%, rgba(5, 6, 7, .2) 42%, rgba(5, 6, 7, .68) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.service-cover-media img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.service-cover-layout {
  align-items: end;
  display: grid;
  gap: clamp(28px, 6vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  position: relative;
  width: 100%;
  z-index: 1;
}

.service-detail-kicker {
  color: #9ed1ff;
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-cover h1 {
  font-size: clamp(54px, 8.5vw, 124px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .84;
  margin: 22px 0 26px;
  max-width: 11ch;
}

.service-cover p {
  color: rgba(236, 247, 255, .88);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
  max-width: 710px;
}

.service-cover-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
}

.service-cover-actions .button {
  min-width: 178px;
}

.service-cover-rail {
  border-left: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  gap: 18px;
  padding-left: 24px;
}

.service-cover-rail span {
  color: #78bdff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-cover-rail strong {
  display: block;
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 600;
  line-height: 1;
  margin-top: 8px;
}

.service-ribbon {
  background: #fff;
  color: #050607;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-ribbon span {
  border-right: 1px solid #cad4df;
  color: #172333;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  min-height: 118px;
  padding: 24px;
  text-transform: uppercase;
}

.service-ribbon span:last-child {
  border-right: 0;
}

.service-dossier {
  background: #eef5fb;
  color: #050607;
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  padding: 84px clamp(20px, 5vw, 72px);
}

.service-dossier.alt {
  background: #fff;
}

.service-dossier-aside h2,
.service-scope-head h2,
.service-cta h2 {
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 500;
  line-height: .94;
  margin: 18px 0 0;
}

.service-dossier-aside p,
.service-scope-head p {
  color: #526174;
  font-size: 18px;
  line-height: 1.42;
  margin: 24px 0 0;
  max-width: 620px;
}

.service-track {
  border-top: 1px solid #cad4df;
  counter-reset: service-step;
}

.service-track article {
  border-bottom: 1px solid #cad4df;
  counter-increment: service-step;
  display: grid;
  gap: 24px;
  grid-template-columns: 86px minmax(0, 1fr);
  padding: 26px 0;
}

.service-track article::before {
  color: #2f91ff;
  content: counter(service-step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.service-track h3,
.service-scope-row h3 {
  font-size: clamp(23px, 2.6vw, 36px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 10px;
}

.service-track p,
.service-scope-row p {
  color: #526174;
  line-height: 1.4;
  margin: 0;
}

.service-scope {
  padding: 84px clamp(20px, 5vw, 72px);
}

.service-scope-head {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  margin-bottom: 42px;
}

.service-scope-list {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.service-scope-row {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  gap: 24px;
  grid-template-columns: 120px minmax(220px, .6fr) minmax(0, 1fr);
  padding: 28px 0;
}

.service-scope-row span {
  color: #78bdff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-scope-row p {
  color: rgba(236, 247, 255, .68);
}

.service-quote-band {
  background: #f2f7fc;
  color: #050607;
  display: grid;
  gap: 1px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
}

.service-quote-band blockquote {
  font-size: clamp(31px, 4.4vw, 64px);
  font-weight: 500;
  line-height: .98;
  margin: 0;
  padding: 58px clamp(20px, 5vw, 72px);
}

.service-quote-band aside {
  background: #dceaf8;
  color: #263548;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.45;
  padding: 58px 32px;
  text-transform: uppercase;
}

.service-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(47, 145, 255, .82), rgba(4, 12, 28, .94)),
    url("assets/nueva/services/custom-software-development-hero.png") center/cover;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 clamp(20px, 5vw, 72px) 96px;
  min-height: 220px;
  padding: 36px;
}

.service-cta h2 {
  max-width: 850px;
}

.service-creative {
  padding: 86px clamp(20px, 5vw, 72px);
}

.service-creative.light {
  background: #f2f7fc;
  color: #050607;
}

.service-creative.white {
  background: #fff;
  color: #050607;
}

.service-creative h2 {
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 500;
  line-height: .94;
  margin: 16px 0 0;
}

.service-creative p {
  color: rgba(236, 247, 255, .68);
  line-height: 1.42;
  margin: 0;
}

.service-creative.light p,
.service-creative.white p {
  color: #526174;
}

.service-creative-head {
  margin-bottom: 46px;
  max-width: 860px;
}

.service-blueprint {
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.blueprint-map {
  background:
    linear-gradient(90deg, rgba(47, 145, 255, .13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 145, 255, .13) 1px, transparent 1px);
  background-size: 54px 54px;
  border: 1px solid rgba(255, 255, 255, .18);
  min-height: 460px;
  position: relative;
}

.blueprint-map span {
  background: #fff;
  color: #050607;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 14px 16px;
  position: absolute;
  text-transform: uppercase;
}

.blueprint-map span:nth-child(1) { left: 8%; top: 16%; }
.blueprint-map span:nth-child(2) { right: 10%; top: 30%; }
.blueprint-map span:nth-child(3) { left: 18%; bottom: 22%; }
.blueprint-map span:nth-child(4) { right: 16%; bottom: 14%; }

.blueprint-map::before {
  background: linear-gradient(135deg, transparent 49.5%, rgba(120, 189, 255, .7) 50%, transparent 50.5%);
  content: "";
  inset: 16%;
  position: absolute;
}

.browser-stack {
  display: grid;
  gap: 22px;
}

.browser-stack article {
  align-items: center;
  border-top: 1px solid #cad4df;
  display: grid;
  gap: 24px;
  grid-template-columns: 150px minmax(0, 1fr) 120px;
  min-height: 118px;
  padding: 24px 0;
}

.browser-stack article:last-child {
  border-bottom: 1px solid #cad4df;
}

.browser-stack span,
.phone-path span,
.runbook-timeline span,
.squad-board span,
.pipeline-rail span,
.hub-spoke span,
.qa-matrix span,
.model-loop span,
.data-river span,
.design-wall span,
.roadmap-board span {
  color: #185d9f;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.browser-stack strong {
  background: #050607;
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  justify-self: end;
  padding: 12px;
  text-transform: uppercase;
}

.phone-path {
  border-left: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  gap: 0;
  margin-left: 22px;
}

.phone-path article {
  display: grid;
  gap: 20px;
  grid-template-columns: 92px minmax(0, 1fr);
  padding: 0 0 34px 34px;
  position: relative;
}

.phone-path article::before {
  background: #2f91ff;
  content: "";
  height: 14px;
  left: -7px;
  position: absolute;
  top: 2px;
  width: 14px;
}

.phone-path h3,
.runbook-timeline h3,
.squad-board h3,
.pipeline-rail h3,
.hub-spoke h3,
.qa-matrix h3,
.model-loop h3,
.data-river h3,
.design-wall h3,
.roadmap-board h3,
.browser-stack h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1;
  margin: 8px 0 10px;
}

.runbook {
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
}

.runbook-timeline {
  border-top: 1px solid #cad4df;
}

.runbook-timeline article {
  border-bottom: 1px solid #cad4df;
  display: grid;
  gap: 24px;
  grid-template-columns: 110px minmax(0, 1fr);
  padding: 24px 0;
}

.runbook-console {
  background: #050607;
  color: #fff;
  display: grid;
  min-height: 420px;
  padding: 28px;
}

.runbook-console strong {
  align-self: end;
  font-family: var(--mono);
  font-size: clamp(38px, 7vw, 86px);
  line-height: .9;
}

.runbook-console p {
  color: rgba(236, 247, 255, .72);
  max-width: 300px;
}

.squad-board {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.squad-board article {
  background: rgba(255, 255, 255, .06);
  border-top: 1px solid rgba(255, 255, 255, .18);
  min-height: 280px;
  padding: 24px;
}

.squad-board span,
.phone-path span,
.pipeline-rail span,
.model-loop span,
.data-river span {
  color: #78bdff;
}

.pipeline-rail {
  border-top: 1px solid #cad4df;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pipeline-rail article {
  border-right: 1px solid #cad4df;
  min-height: 300px;
  padding: 24px;
}

.pipeline-rail article:last-child {
  border-right: 0;
}

.hub-layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 80px);
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
}

.hub-spokes {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hub-spoke {
  background: #f2f7fc;
  min-height: 210px;
  padding: 24px;
}

.hub-core {
  align-items: center;
  background: #050607;
  color: #fff;
  display: flex;
  font-family: var(--mono);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 800;
  justify-content: center;
  min-height: 420px;
  text-align: center;
  text-transform: uppercase;
}

.qa-matrix {
  border-left: 1px solid #cad4df;
  border-top: 1px solid #cad4df;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qa-matrix article {
  border-bottom: 1px solid #cad4df;
  border-right: 1px solid #cad4df;
  min-height: 230px;
  padding: 24px;
}

.model-loop {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.model-loop article {
  border: 1px solid rgba(255, 255, 255, .18);
  min-height: 260px;
  padding: 24px;
}

.model-loop article:nth-child(even) {
  transform: translateY(36px);
}

.data-river {
  display: grid;
  gap: 1px;
  grid-template-columns: .85fr 1.15fr .9fr;
}

.data-river article {
  background: rgba(255, 255, 255, .06);
  min-height: 330px;
  padding: 26px;
}

.data-river article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(47, 145, 255, .18), rgba(255, 255, 255, .05));
}

.design-wall {
  display: grid;
  gap: 1px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
}

.design-wall-main,
.design-wall-side article {
  background: #f2f7fc;
  padding: 26px;
}

.design-wall-main {
  min-height: 430px;
}

.design-wall-side {
  display: grid;
  gap: 1px;
}

.roadmap-board {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roadmap-board article {
  background: #10161d;
  border-top: 4px solid #2f91ff;
  min-height: 360px;
  padding: 26px;
}

.roadmap-board article:nth-child(2) {
  border-color: #8fcbff;
  transform: translateY(34px);
}

.roadmap-board article:nth-child(3) {
  border-color: #fff;
  transform: translateY(68px);
}

.info-page {
  background: #000;
  color: #fff;
}

.info-page .site-shell,
.info-main {
  background: #000;
  color: #fff;
}

.info-main {
  overflow: hidden;
}

.info-hero {
  align-items: center;
  background:
    radial-gradient(circle at 72% 24%, rgba(47, 145, 255, .32), transparent 28%),
    linear-gradient(180deg, #000 0%, #06101d 54%, #101820 100%);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  min-height: 100svh;
  padding: 150px clamp(20px, 5vw, 72px) 72px;
}

.info-kicker {
  color: #8fcbff;
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.info-hero h1 {
  background: linear-gradient(92deg, #fff 0%, #eef8ff 60%, rgba(255, 255, 255, .48) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 500;
  line-height: .9;
  margin: 0;
  max-width: 940px;
}

.info-hero p {
  color: rgba(236, 247, 255, .86);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 700;
  line-height: 1.2;
  margin: 28px 0 0;
  max-width: 660px;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 32px;
}

.info-hero-media {
  border: 1px solid rgba(255, 255, 255, .18);
  min-height: min(68vw, 560px);
  overflow: hidden;
  position: relative;
}

.info-hero-media img,
.info-feature-media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.info-frame-label {
  background: rgba(0, 0, 0, .72);
  border: 1px solid rgba(255, 255, 255, .16);
  bottom: 20px;
  color: #cfeaff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  left: 20px;
  letter-spacing: .1em;
  padding: 12px 14px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
}

.info-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.info-pill-row span {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #cfeaff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  padding: 10px 12px;
  text-transform: uppercase;
}

.info-strip {
  background: #fff;
  color: #050607;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-strip article {
  background: #f5f8fc;
  min-height: 168px;
  padding: 24px;
}

.info-strip strong {
  color: #2f91ff;
  display: block;
  font-family: var(--mono);
  font-size: clamp(34px, 4vw, 54px);
  line-height: .9;
  margin-bottom: 32px;
}

.info-strip span {
  color: #182434;
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.info-section {
  background: #000;
  padding: 84px clamp(20px, 5vw, 72px);
}

.info-section.light {
  background: #f2f7fc;
  color: #050607;
}

.info-section-head {
  margin-bottom: 42px;
  max-width: 820px;
}

.info-section-head h2,
.info-feature-copy h2 {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 500;
  line-height: .98;
  margin: 0;
}

.info-section.light .info-kicker,
.info-feature.light .info-kicker {
  color: #185d9f;
}

.info-grid,
.info-quote-grid,
.info-contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.info-quote,
.info-contact-card {
  background:
    linear-gradient(180deg, rgba(47, 145, 255, .08), transparent 38%),
    #111418;
  border: 1px solid rgba(255, 255, 255, .12);
  min-height: 250px;
  padding: 26px;
}

.info-section.light .info-card,
.info-section.light .info-quote,
.info-section.light .info-contact-card {
  background: #fff;
  border-color: #d4dee9;
}

.info-card span,
.info-quote span,
.info-contact-card span {
  color: #78bdff;
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 52px;
  text-transform: uppercase;
}

.info-section.light .info-card span,
.info-section.light .info-quote span,
.info-section.light .info-contact-card span {
  color: #2f66ff;
}

.info-card h3,
.info-quote h3,
.info-contact-card h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 16px;
}

.info-card p,
.info-quote p,
.info-contact-card p,
.info-feature-copy p,
.info-list li {
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.info-section.light .info-card p,
.info-section.light .info-quote p,
.info-section.light .info-contact-card p,
.info-feature.light .info-feature-copy p,
.info-feature.light .info-list li {
  color: #4f5e70;
}

.info-feature {
  align-items: center;
  background: #06101d;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  padding: 84px clamp(20px, 5vw, 72px);
}

.info-feature.light {
  background: #fff;
  color: #050607;
}

.info-feature-media {
  border: 1px solid rgba(255, 255, 255, .16);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.info-feature.light .info-feature-media {
  border-color: #d4dee9;
}

.info-feature-copy p {
  font-size: 18px;
  margin-top: 22px;
  max-width: 650px;
}

.info-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.info-list li {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: 14px;
}

.info-feature.light .info-list li {
  border-color: #d4dee9;
}

.info-logo-row {
  align-items: center;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 36px;
}

.info-logo-row div {
  align-items: center;
  background: #fff;
  border: 1px solid #d4dee9;
  display: flex;
  height: 112px;
  justify-content: center;
  padding: 20px;
}

.info-logo-row img {
  max-height: 64px;
  max-width: 150px;
  object-fit: contain;
}

.info-form {
  display: grid;
  gap: 14px;
}

.info-form label {
  color: rgba(255, 255, 255, .66);
  display: grid;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.info-form input,
.info-form textarea,
.info-form select {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font: 600 15px var(--sans);
  min-height: 48px;
  padding: 13px 14px;
}

.info-form textarea {
  min-height: 130px;
  resize: vertical;
}

.info-form button {
  cursor: pointer;
  margin-top: 4px;
  width: fit-content;
}

.info-faq-list {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.info-faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  padding: 22px 0;
}

.info-faq-list summary {
  cursor: pointer;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.05;
  list-style: none;
}

.info-faq-list summary::-webkit-details-marker {
  display: none;
}

.info-faq-list p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.45;
  margin: 14px 0 0;
  max-width: 820px;
}

.info-section.light .info-faq-list {
  border-color: #cad4df;
}

.info-section.light .info-faq-list details {
  border-color: #cad4df;
}

.info-section.light .info-faq-list p {
  color: #4f5e70;
}

.info-card a {
  color: #8fcbff;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-top: 20px;
  text-transform: uppercase;
}

.info-section.light .info-card a {
  color: #185d9f;
}

.industry-page,
.industry-page .site-shell,
.industry-main {
  background: #000;
  color: #fff;
}

.industry-main {
  overflow: hidden;
}

.industry-hero {
  align-items: center;
  background:
    radial-gradient(circle at 74% 18%, rgba(47, 145, 255, .26), transparent 28%),
    linear-gradient(180deg, #02050b 0%, #06101d 58%, #000 100%);
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr);
  min-height: 100svh;
  padding: 150px clamp(20px, 5vw, 72px) 72px;
}

.industry-hero h1 {
  background: linear-gradient(92deg, #fff 0%, #eef8ff 66%, rgba(255, 255, 255, .66) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 500;
  line-height: .9;
  margin: 0;
  max-width: 930px;
}

.industry-hero p {
  color: rgba(236, 247, 255, .84);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 700;
  line-height: 1.22;
  margin: 28px 0 0;
  max-width: 650px;
}

.industry-visual {
  border: 1px solid rgba(255, 255, 255, .18);
  margin: 0;
  min-height: min(68vw, 560px);
  overflow: hidden;
  position: relative;
}

.industry-visual img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.industry-visual figcaption {
  background: rgba(0, 0, 0, .72);
  border: 1px solid rgba(255, 255, 255, .16);
  bottom: 20px;
  color: #cfeaff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  left: 20px;
  letter-spacing: .1em;
  padding: 12px 14px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
}

.industry-panel {
  padding: 84px clamp(20px, 5vw, 72px);
}

.industry-panel.light {
  background: #f2f7fc;
  color: #050607;
}

.industry-head {
  margin-bottom: 44px;
  max-width: 850px;
}

.industry-kicker {
  color: #8fcbff;
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.industry-panel.light .industry-kicker {
  color: #185d9f;
}

.industry-head h2,
.industry-copy h2,
.industry-cta h2 {
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  line-height: .98;
  margin: 0;
}

.industry-copy p,
.industry-head p {
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.4;
  margin: 22px 0 0;
  max-width: 660px;
}

.industry-panel.light .industry-copy p,
.industry-panel.light .industry-head p {
  color: #4f5e70;
}

.industry-link {
  color: #8fcbff;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-top: 26px;
  text-transform: uppercase;
}

.industry-panel.light .industry-link {
  color: #185d9f;
}

.industry-stats {
  background: #fff;
  color: #050607;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-stats article {
  background: #f5f8fc;
  min-height: 156px;
  padding: 24px;
}

.industry-stats strong {
  color: #2f91ff;
  display: block;
  font-family: var(--mono);
  font-size: clamp(30px, 4vw, 50px);
  line-height: .95;
  margin-bottom: 30px;
}

.industry-stats span {
  color: #182434;
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.finance-command {
  display: grid;
  gap: clamp(32px, 5vw, 70px);
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
}

.finance-ledger {
  border-top: 1px solid #cad4df;
}

.finance-ledger article {
  border-bottom: 1px solid #cad4df;
  display: grid;
  gap: 24px;
  grid-template-columns: 126px minmax(0, 1fr);
  padding: 24px 0;
}

.finance-ledger span,
.care-flow span,
.retail-loop span,
.route-steps span,
.learning-path span,
.media-lanes span {
  color: #185d9f;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.finance-ledger h3,
.care-flow h3,
.retail-loop h3,
.route-steps h3,
.learning-path h3,
.media-lanes h3,
.industry-lanes h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 10px;
}

.finance-ledger p,
.care-flow p,
.retail-loop p,
.route-steps p,
.learning-path p,
.media-lanes p,
.industry-lanes p {
  color: #4f5e70;
  line-height: 1.4;
  margin: 0;
}

.industry-lanes {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-lanes article {
  background: rgba(255, 255, 255, .06);
  border-top: 1px solid rgba(255, 255, 255, .16);
  min-height: 220px;
  padding: 24px;
}

.industry-lanes span {
  color: #8fcbff;
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 52px;
  text-transform: uppercase;
}

.industry-lanes p {
  color: rgba(255, 255, 255, .66);
}

.care-map {
  display: grid;
  gap: clamp(28px, 5vw, 62px);
  grid-template-columns: 340px minmax(0, 1fr);
}

.care-aside {
  border-top: 1px solid #cad4df;
  padding-top: 22px;
}

.care-aside p {
  color: #4f5e70;
  line-height: 1.4;
  margin: 0 0 24px;
}

.care-flow {
  border-left: 1px solid #cad4df;
}

.care-flow article {
  padding: 0 0 32px 28px;
  position: relative;
}

.care-flow article::before {
  background: #2f66ff;
  content: "";
  height: 10px;
  left: -5px;
  position: absolute;
  top: 4px;
  width: 10px;
}

.care-flow span {
  display: block;
  margin-bottom: 14px;
}

.retail-loop {
  display: grid;
  gap: 1px;
  grid-template-columns: 1.12fr .88fr;
}

.retail-loop article {
  background: #fff;
  border-top: 1px solid #cad4df;
  min-height: 190px;
  padding: 26px;
}

.retail-loop article:nth-child(1) {
  grid-row: span 2;
  min-height: 380px;
}

.retail-loop span {
  display: block;
  margin-bottom: 42px;
}

.route-board {
  display: grid;
  gap: clamp(28px, 5vw, 62px);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
}

.route-map {
  border: 1px solid rgba(255, 255, 255, .16);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.route-map::before,
.route-map::after {
  content: "";
  position: absolute;
}

.route-map::before {
  background:
    linear-gradient(90deg, rgba(120, 189, 255, .12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(120, 189, 255, .12) 1px, transparent 1px);
  background-size: 58px 58px;
  inset: 0;
}

.route-map::after {
  border: 2px solid #2f91ff;
  border-left: 0;
  border-radius: 0 220px 220px 0;
  height: 210px;
  left: 17%;
  top: 24%;
  width: 58%;
}

.route-node {
  background: #fff;
  color: #050607;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 12px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.route-node.one { left: 10%; top: 22%; }
.route-node.two { right: 16%; top: 18%; }
.route-node.three { left: 35%; bottom: 18%; }

.route-steps {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.route-steps article {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  padding: 22px 0;
}

.route-steps span {
  color: #8fcbff;
  display: block;
  margin-bottom: 14px;
}

.route-steps p {
  color: rgba(255, 255, 255, .66);
}

.learning-path {
  border-top: 1px solid #cad4df;
  counter-reset: learning-step;
}

.learning-path article {
  border-bottom: 1px solid #cad4df;
  counter-increment: learning-step;
  display: grid;
  gap: 26px;
  grid-template-columns: 80px minmax(0, .78fr) minmax(0, 1fr);
  padding: 26px 0;
}

.learning-path article::before {
  color: #2f66ff;
  content: counter(learning-step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.learning-path span {
  display: block;
  margin-bottom: 12px;
}

.media-console {
  display: grid;
  gap: clamp(28px, 5vw, 62px);
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.media-lanes {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.media-lanes article {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  gap: 24px;
  grid-template-columns: 128px minmax(0, 1fr);
  padding: 24px 0;
}

.media-lanes span {
  color: #8fcbff;
}

.media-lanes p {
  color: rgba(255, 255, 255, .66);
}

.industry-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(47, 145, 255, .82), rgba(4, 12, 28, .94)),
    url("assets/nueva/industries/logistics-supply-chain-hero.png") center/cover;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 clamp(20px, 5vw, 72px) 96px;
  min-height: 220px;
  padding: 36px;
}

.industry-cta h2 {
  max-width: 820px;
}

.solution-page,
.solution-page .site-shell,
.solution-main {
  background: #000;
  color: #fff;
}

.solution-main {
  overflow: hidden;
}

.solution-hero {
  align-items: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(47, 145, 255, .25), transparent 28%),
    linear-gradient(180deg, #02050b 0%, #07111f 58%, #000 100%);
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  min-height: 100svh;
  padding: 150px clamp(20px, 5vw, 72px) 72px;
}

.solution-hero h1 {
  background: linear-gradient(92deg, #fff 0%, #eef8ff 66%, rgba(255, 255, 255, .68) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 500;
  line-height: .9;
  margin: 0;
  max-width: 930px;
}

.solution-hero p {
  color: rgba(236, 247, 255, .84);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 700;
  line-height: 1.22;
  margin: 28px 0 0;
  max-width: 650px;
}

.solution-visual {
  border: 1px solid rgba(255, 255, 255, .18);
  margin: 0;
  min-height: min(68vw, 560px);
  overflow: hidden;
  position: relative;
}

.solution-visual img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.solution-visual figcaption {
  background: rgba(0, 0, 0, .72);
  border: 1px solid rgba(255, 255, 255, .16);
  bottom: 20px;
  color: #cfeaff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  left: 20px;
  letter-spacing: .1em;
  padding: 12px 14px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
}

.solution-kicker {
  color: #8fcbff;
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.solution-panel {
  padding: 84px clamp(20px, 5vw, 72px);
}

.solution-panel.light {
  background: #f2f7fc;
  color: #050607;
}

.solution-panel.light .solution-kicker {
  color: #185d9f;
}

.solution-head {
  margin-bottom: 44px;
  max-width: 860px;
}

.solution-head h2,
.solution-copy h2,
.solution-cta h2 {
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  line-height: .98;
  margin: 0;
}

.solution-head p,
.solution-copy p {
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.4;
  margin: 22px 0 0;
  max-width: 660px;
}

.solution-panel.light .solution-head p,
.solution-panel.light .solution-copy p {
  color: #4f5e70;
}

.solution-link {
  color: #8fcbff;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-top: 26px;
  text-transform: uppercase;
}

.solution-panel.light .solution-link {
  color: #185d9f;
}

.solution-strip {
  background: #fff;
  color: #050607;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-strip article {
  background: #f5f8fc;
  min-height: 156px;
  padding: 24px;
}

.solution-strip strong {
  color: #2f91ff;
  display: block;
  font-family: var(--mono);
  font-size: clamp(30px, 4vw, 50px);
  line-height: .95;
  margin-bottom: 30px;
}

.solution-strip span {
  color: #182434;
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.architecture-map,
.saas-rhythm,
.ai-lab,
.legacy-map,
.mobile-journey {
  display: grid;
  gap: clamp(30px, 5vw, 66px);
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
}

.architecture-nodes {
  border-top: 1px solid #cad4df;
}

.architecture-nodes article,
.legacy-steps article,
.web-stack article {
  border-bottom: 1px solid #cad4df;
  display: grid;
  gap: 24px;
  grid-template-columns: 128px minmax(0, 1fr);
  padding: 24px 0;
}

.architecture-nodes span,
.saas-cycle span,
.automation-chain span,
.ai-signals span,
.runway-steps span,
.legacy-steps span,
.web-stack span,
.mobile-journey span,
.solution-lanes span {
  color: #185d9f;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.architecture-nodes h3,
.saas-cycle h3,
.automation-chain h3,
.ai-signals h3,
.runway-steps h3,
.legacy-steps h3,
.web-stack h3,
.mobile-journey h3,
.solution-lanes h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 10px;
}

.architecture-nodes p,
.saas-cycle p,
.automation-chain p,
.ai-signals p,
.runway-steps p,
.legacy-steps p,
.web-stack p,
.mobile-journey p,
.solution-lanes p {
  color: #4f5e70;
  line-height: 1.4;
  margin: 0;
}

.solution-lanes {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-lanes article {
  background: rgba(255, 255, 255, .06);
  border-top: 1px solid rgba(255, 255, 255, .16);
  min-height: 220px;
  padding: 24px;
}

.solution-lanes span {
  color: #8fcbff;
  display: block;
  margin-bottom: 52px;
}

.solution-lanes p {
  color: rgba(255, 255, 255, .66);
}

.saas-cycle {
  border-top: 1px solid #cad4df;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.saas-cycle article {
  border-bottom: 1px solid #cad4df;
  min-height: 210px;
  padding: 24px;
}

.saas-cycle article:nth-child(odd) {
  border-right: 1px solid #cad4df;
}

.saas-cycle span {
  display: block;
  margin-bottom: 42px;
}

.automation-chain {
  border-top: 1px solid #cad4df;
  counter-reset: auto-step;
}

.automation-chain article {
  border-bottom: 1px solid #cad4df;
  counter-increment: auto-step;
  display: grid;
  gap: 24px;
  grid-template-columns: 78px minmax(0, .82fr) minmax(0, 1fr);
  padding: 26px 0;
}

.automation-chain article::before {
  color: #2f66ff;
  content: counter(auto-step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 800;
}

.automation-chain span {
  display: block;
  margin-bottom: 12px;
}

.ai-signals {
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.ai-signals article {
  padding: 0 0 34px 28px;
  position: relative;
}

.ai-signals article::before {
  background: #2f91ff;
  content: "";
  height: 10px;
  left: -5px;
  position: absolute;
  top: 4px;
  width: 10px;
}

.ai-signals span {
  color: #8fcbff;
  display: block;
  margin-bottom: 14px;
}

.ai-signals p {
  color: rgba(255, 255, 255, .66);
}

.runway-steps {
  display: grid;
  gap: 1px;
  grid-template-columns: 1.08fr .92fr;
}

.runway-steps article {
  background: #fff;
  border-top: 1px solid #cad4df;
  min-height: 190px;
  padding: 26px;
}

.runway-steps article:first-child {
  grid-row: span 2;
  min-height: 380px;
}

.runway-steps span {
  display: block;
  margin-bottom: 42px;
}

.legacy-meter {
  border: 1px solid rgba(255, 255, 255, .16);
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.legacy-meter::before {
  background:
    linear-gradient(90deg, rgba(120, 189, 255, .11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(120, 189, 255, .11) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  inset: 0;
  position: absolute;
}

.legacy-pill {
  background: #fff;
  color: #050607;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 12px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.legacy-pill.old { left: 9%; top: 22%; }
.legacy-pill.bridge { left: 38%; top: 45%; }
.legacy-pill.new { right: 10%; bottom: 22%; }

.legacy-steps {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.legacy-steps article {
  border-color: rgba(255, 255, 255, .16);
}

.legacy-steps span {
  color: #8fcbff;
}

.legacy-steps p {
  color: rgba(255, 255, 255, .66);
}

.web-stack {
  border-top: 1px solid #cad4df;
}

.web-stack article {
  grid-template-columns: 92px minmax(0, .82fr) minmax(0, 1fr);
}

.mobile-journey {
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, .86fr);
}

.mobile-device-list {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.mobile-device-list article {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  padding: 22px 0;
}

.mobile-device-list span {
  color: #8fcbff;
  display: block;
  margin-bottom: 14px;
}

.mobile-device-list p {
  color: rgba(255, 255, 255, .66);
}

.solution-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(47, 145, 255, .82), rgba(4, 12, 28, .94)),
    url("assets/nueva/solutions/enterprise-platforms-hero.png") center/cover;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 clamp(20px, 5vw, 72px) 96px;
  min-height: 220px;
  padding: 36px;
}

.solution-cta h2 {
  max-width: 820px;
}

.resource-panel {
  padding: 84px clamp(20px, 5vw, 72px);
}

.resource-panel.light {
  background: #f2f7fc;
  color: #050607;
}

.resource-split,
.blog-composition,
.guide-shelf,
.faq-hub,
.pricing-note,
.project-brief,
.press-room {
  display: grid;
  gap: clamp(30px, 5vw, 68px);
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
}

.resource-copy h2,
.blog-feature h2,
.guide-download h2,
.pricing-matrix h2,
.pricing-note h2,
.project-brief h2,
.press-room h2 {
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  line-height: .98;
  margin: 0;
}

.resource-copy p,
.blog-feature p,
.guide-download p,
.pricing-note p,
.project-brief p,
.press-room p {
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.4;
  margin: 22px 0 0;
  max-width: 660px;
}

.resource-panel.light .resource-copy p,
.resource-panel.light .blog-feature p,
.resource-panel.light .project-brief p,
.resource-panel.light .press-room p {
  color: #4f5e70;
}

.resource-link {
  color: #8fcbff;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-top: 26px;
  text-transform: uppercase;
}

.resource-panel.light .resource-link {
  color: #185d9f;
}

.resource-panel.light .info-kicker,
.pricing-matrix .info-kicker {
  color: #185d9f;
}

.info-list .resource-link {
  margin-top: 0;
}

.blog-ledger {
  border-top: 1px solid #cad4df;
}

.blog-ledger a {
  align-items: center;
  border-bottom: 1px solid #cad4df;
  color: #050607;
  display: grid;
  gap: 22px;
  grid-template-columns: 132px minmax(0, 1fr) 34px;
  min-height: 126px;
  padding: 22px 0;
  text-decoration: none;
}

.blog-ledger span,
.blog-lanes span,
.guide-stack span,
.pricing-row > span,
.project-steps span,
.press-timeline time,
.press-facts dt {
  color: #185d9f;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.blog-ledger h3,
.blog-lanes h3,
.guide-stack h3,
.pricing-row h3,
.project-steps h3,
.press-timeline h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 10px;
}

.blog-ledger p,
.blog-lanes p,
.guide-stack p,
.pricing-row p,
.project-steps p,
.press-timeline p,
.press-facts dd {
  color: #4f5e70;
  line-height: 1.4;
  margin: 0;
}

.blog-arrow {
  align-items: center;
  border: 1px solid #cad4df;
  display: flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.blog-lanes {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.blog-lanes article {
  background: rgba(255, 255, 255, .06);
  border-top: 1px solid rgba(255, 255, 255, .16);
  min-height: 210px;
  padding: 24px;
}

.blog-lanes span {
  color: #8fcbff;
  display: block;
  margin-bottom: 54px;
}

.blog-lanes p {
  color: rgba(255, 255, 255, .68);
}

.guide-shelf {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
}

.guide-download {
  align-self: stretch;
  background: #06101d;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: 32px;
}

.guide-stack {
  border-top: 1px solid #cad4df;
  counter-reset: guide-item;
}

.guide-stack article {
  border-bottom: 1px solid #cad4df;
  counter-increment: guide-item;
  display: grid;
  gap: 24px;
  grid-template-columns: 74px minmax(0, 1fr);
  padding: 26px 0;
}

.guide-stack article::before {
  color: #2f66ff;
  content: counter(guide-item, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.guide-stack span {
  display: block;
  margin-bottom: 12px;
}

.faq-hub {
  grid-template-columns: 330px minmax(0, 1fr);
}

.faq-aside {
  border-top: 1px solid #cad4df;
  padding-top: 22px;
}

.faq-aside p {
  color: #4f5e70;
  line-height: 1.4;
  margin: 0 0 28px;
}

.faq-aside a {
  border-bottom: 1px solid #cad4df;
  color: #050607;
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 16px 0;
  text-transform: uppercase;
}

.faq-paths {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-paths a {
  background: rgba(255, 255, 255, .06);
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  min-height: 190px;
  padding: 24px;
  text-decoration: none;
}

.faq-paths span {
  color: #8fcbff;
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.faq-paths h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 12px;
}

.faq-paths p {
  color: rgba(255, 255, 255, .66);
  line-height: 1.4;
  margin: 0;
}

.pricing-matrix {
  background: #f2f7fc;
  color: #050607;
  padding: 84px clamp(20px, 5vw, 72px);
}

.pricing-table {
  border-top: 1px solid #cad4df;
  margin-top: 44px;
}

.pricing-row {
  border-bottom: 1px solid #cad4df;
  display: grid;
  gap: 24px;
  grid-template-columns: .84fr .9fr 1fr .76fr;
  padding: 24px 0;
}

.pricing-row.header {
  padding: 14px 0;
}

.pricing-row.header span {
  color: #657488;
}

.pricing-row a {
  align-self: start;
  color: #185d9f;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pricing-note {
  background: #06101d;
  padding: 84px clamp(20px, 5vw, 72px);
}

.pricing-note ul {
  border-top: 1px solid rgba(255, 255, 255, .16);
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-note li {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .7);
  line-height: 1.4;
  padding: 20px 0;
}

.project-brief {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.project-steps {
  border-top: 1px solid #cad4df;
  counter-reset: project-step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.project-steps li {
  border-bottom: 1px solid #cad4df;
  counter-increment: project-step;
  display: grid;
  gap: 24px;
  grid-template-columns: 68px minmax(0, 1fr);
  padding: 24px 0;
}

.project-steps li::before {
  color: #2f66ff;
  content: counter(project-step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 800;
}

.project-steps span {
  display: block;
  margin-bottom: 12px;
}

.project-form-panel .info-form {
  border-left: 1px solid rgba(255, 255, 255, .16);
  padding-left: 32px;
}

.press-room {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.press-timeline {
  border-left: 1px solid #cad4df;
}

.press-timeline article {
  padding: 0 0 34px 28px;
  position: relative;
}

.press-timeline article::before {
  background: #2f66ff;
  content: "";
  height: 10px;
  left: -5px;
  position: absolute;
  top: 4px;
  width: 10px;
}

.press-timeline time {
  display: block;
  margin-bottom: 18px;
}

.press-facts {
  border-top: 1px solid #cad4df;
  margin: 0;
}

.press-facts div {
  border-bottom: 1px solid #cad4df;
  padding: 20px 0;
}

.press-facts dt {
  margin-bottom: 10px;
}

.press-facts dd {
  color: #4f5e70;
  margin: 0;
}

.info-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(47, 145, 255, .86), rgba(4, 12, 28, .92)),
    url("assets/nueva/pages/contact-hero.png") center/cover;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 clamp(20px, 5vw, 72px) 96px;
  min-height: 220px;
  padding: 36px;
}

.info-cta h2 {
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 500;
  line-height: .96;
  margin: 0;
  max-width: 820px;
}

.about-page {
  background: #000;
  color: #fff;
}

.about-page .site-shell {
  background:
    radial-gradient(circle at 75% 18%, rgba(47, 145, 255, .22), transparent 26%),
    linear-gradient(180deg, #02050b 0%, #000 62%);
}

.ds-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(1, 6, 15, .42);
  color: #fff;
  display: flex;
  gap: 34px;
  height: 64px;
  justify-content: space-between;
  left: 0;
  padding: 0 24px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.ds-brand {
  align-items: center;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: -.03em;
}

.ds-brand img {
  height: 38px;
  width: auto;
}

.ds-nav,
.ds-actions {
  align-items: center;
  display: flex;
  gap: 28px;
}

.ds-nav {
  flex: 1;
}

.ds-link,
.ds-action-link {
  color: rgba(255, 255, 255, .62);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color .16s ease;
}

.ds-link:hover,
.ds-link.active,
.ds-action-link:hover {
  color: #fff;
}

.ds-pill {
  background: #fff;
  border-radius: 999px;
  color: #050607;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  height: 38px;
  letter-spacing: .12em;
  line-height: 1;
  padding: 12px 18px;
  text-transform: uppercase;
}

.ds-menu-button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  cursor: pointer;
  display: none;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.ds-menu-button span,
.ds-menu-button::before,
.ds-menu-button::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 20px;
}

.ds-menu-button {
  position: relative;
}

.ds-menu-button::before {
  transform: translateY(-7px);
}

.ds-menu-button::after {
  transform: translateY(7px);
}

.about-page .mobile-menu {
  background: rgba(0, 5, 14, .98);
}

.about-main {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
}

.ds-hero {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  overflow: hidden;
  padding: 118px clamp(24px, 5vw, 72px) 74px;
  position: relative;
}

.ds-hero-wave {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: .72;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.ds-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .05) 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .58) 0%, transparent 36%, rgba(0, 0, 0, .86) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.ds-hero-content,
.ds-stats {
  position: relative;
  z-index: 2;
}

.ds-kicker {
  color: rgba(255, 255, 255, .58);
  display: block;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.ds-hero h1 {
  background: linear-gradient(254deg, #fff 0%, #f4f9ff 66%, rgba(255, 255, 255, .78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 500;
  letter-spacing: .01em;
  line-height: .9;
  margin: 0;
  max-width: 850px;
}

.ds-hero p {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.04;
  margin: 40px 0 28px;
  max-width: 610px;
}

.ds-primary {
  background: #175cff;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 13px 20px;
  text-transform: uppercase;
}

.ds-stats {
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1160px, 100%);
}

.ds-stat strong {
  background: linear-gradient(251deg, #fff 68%, rgba(255, 255, 255, .28) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-size: clamp(44px, 4vw, 60px);
  font-weight: 500;
  line-height: .9;
  margin-bottom: 18px;
}

.ds-stat span {
  color: #fff;
  display: block;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ds-section {
  padding: 92px clamp(24px, 5vw, 72px);
}

.ds-section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.ds-section-head h2 {
  background: linear-gradient(91deg, #fff 0%, #f3f8ff 72%, rgba(255, 255, 255, .76) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  margin: 0;
}

.ds-feature-card {
  background:
    linear-gradient(90deg, rgba(46, 151, 255, .38), rgba(6, 21, 91, .92) 42%, rgba(1, 4, 40, .98)),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0));
  border: 1px solid rgba(117, 189, 255, .28);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  min-height: 188px;
  overflow: hidden;
  position: relative;
}

.ds-feature-card::before,
.ds-feature-card::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.ds-feature-card::before {
  background:
    linear-gradient(90deg, transparent calc(25% - 1px), rgba(255, 255, 255, .18) calc(25% - 1px), rgba(255, 255, 255, .18) 25%, transparent 25%),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .18) calc(50% - 1px), rgba(255, 255, 255, .18) 50%, transparent 50%),
    linear-gradient(90deg, transparent calc(75% - 1px), rgba(255, 255, 255, .18) calc(75% - 1px), rgba(255, 255, 255, .18) 75%, transparent 75%),
    linear-gradient(180deg, transparent calc(50% - 1px), rgba(255, 255, 255, .18) calc(50% - 1px), rgba(255, 255, 255, .18) 50%, transparent 50%);
}

.ds-feature-cell {
  align-items: center;
  display: flex;
  min-height: 188px;
  padding: 34px 42px;
  position: relative;
  z-index: 1;
}

.ds-feature-cell h3 {
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 500;
  line-height: .95;
  margin: 0;
}

.ds-feature-cell p,
.ds-feature-cell span {
  color: rgba(255, 255, 255, .72);
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.ds-feature-cell .ds-pill {
  height: auto;
}

.ds-community {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  padding-top: 40px;
}

.ds-community-copy h2 {
  background: linear-gradient(91deg, #fff 0%, #f3f8ff 72%, rgba(255, 255, 255, .76) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 500;
  line-height: .92;
  margin: 0 0 28px;
}

.ds-community-copy p {
  color: rgba(255, 255, 255, .72);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 28px;
  max-width: 620px;
}

.ds-community-visual {
  background: #05070d;
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.ds-community-visual img {
  filter: saturate(.92) contrast(1.04);
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.ds-community-visual::after {
  background:
    linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, .76)),
    radial-gradient(circle at 20% 20%, rgba(47, 145, 255, .26), transparent 34%);
  content: "";
  inset: 0;
  position: absolute;
}

.ds-community-visual figcaption {
  background: rgba(0, 0, 0, .72);
  bottom: 24px;
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  left: 24px;
  letter-spacing: .12em;
  padding: 12px 14px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.ds-access-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ds-access-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 145, 255, .22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .01));
  border: 1px solid rgba(255, 255, 255, .14);
  min-height: 330px;
  padding: 30px;
}

.ds-access-card span,
.ds-track-card span {
  color: rgba(255, 255, 255, .42);
  display: block;
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 60px;
}

.ds-access-card h3,
.ds-track-card h3 {
  color: #fff;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 18px;
}

.ds-access-card p,
.ds-track-card p {
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  line-height: 1.38;
  margin: 0;
}

.ds-gallery {
  padding-top: 36px;
}

.ds-gallery-track {
  display: grid;
  gap: 32px;
  grid-template-columns: .82fr 1.42fr 1fr;
}

.ds-shot {
  background: #070b13;
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.ds-shot img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.ds-shot.tall {
  min-height: 520px;
}

.ds-shot.wide {
  margin-top: 84px;
}

.ds-shot-label {
  background: rgba(0, 0, 0, .68);
  bottom: 18px;
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  left: 18px;
  letter-spacing: .1em;
  padding: 9px 11px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.ds-track-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ds-track-card {
  background:
    linear-gradient(135deg, rgba(2, 14, 48, .98), rgba(0, 0, 0, .96)),
    radial-gradient(circle at 100% 0%, rgba(47, 145, 255, .3), transparent 42%);
  border: 1px solid rgba(117, 189, 255, .18);
  min-height: 300px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.ds-track-card::after {
  color: rgba(255, 255, 255, .16);
  content: "+";
  font-family: var(--mono);
  font-size: 34px;
  position: absolute;
  right: 24px;
  top: 20px;
}

.ds-principles {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ds-principle {
  background: #05070d;
  border: 1px solid rgba(255, 255, 255, .12);
  min-height: 280px;
  padding: 30px;
}

.ds-principle small {
  color: rgba(255, 255, 255, .42);
  display: block;
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 58px;
}

.ds-principle h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 20px;
}

.ds-principle p {
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
}

.ds-sponsor-layout {
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
}

.ds-sponsor-layout > *,
.ds-logo-wall,
.ds-logo-wall > div {
  min-width: 0;
}

.ds-sponsor-copy {
  background: #05070d;
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 30px;
}

.ds-sponsor-copy h3 {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: .98;
  margin: 0 0 22px;
}

.ds-sponsor-copy p {
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 28px;
}

.ds-logo-wall {
  border-left: 1px solid rgba(255, 255, 255, .14);
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ds-logo-wall div {
  align-items: center;
  background: radial-gradient(circle at 50% 0%, rgba(47, 145, 255, .12), transparent 44%), #03050a;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  border-right: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  height: 140px;
  justify-content: center;
  padding: 26px;
}

.ds-logo-wall img {
  filter: grayscale(1) brightness(1.25);
  max-height: 68px;
  max-width: 160px;
  object-fit: contain;
  opacity: .82;
}

.ds-client-fit {
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(280px, .44fr) minmax(0, 1fr);
}

.ds-client-copy {
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 28px;
}

.ds-client-copy h3 {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: .98;
  margin: 0 0 22px;
}

.ds-client-copy p {
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 28px;
}

.ds-client-rows {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.ds-client-rows article {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  gap: 28px;
  grid-template-columns: 74px minmax(220px, .82fr) minmax(0, 1fr);
  padding: 26px 0;
}

.ds-client-rows span {
  color: rgba(120, 189, 255, .82);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ds-client-rows h3 {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.ds-client-rows p {
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
}

.ds-faq {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
}

.ds-faq-visual {
  background: radial-gradient(circle at 50% 18%, rgba(47, 145, 255, .42), transparent 44%), #02050c;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.ds-faq-visual img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: .92;
  position: absolute;
  width: 100%;
}

.ds-faq-list {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.ds-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  padding: 26px 0;
}

.ds-faq-item h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.ds-faq-item p {
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
  grid-column: 1 / -1;
  line-height: 1.35;
  margin: 0;
  max-width: 760px;
}

.ds-plus {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--mono);
  height: 32px;
  justify-content: center;
  width: 32px;
}

.ds-newsletter {
  align-items: end;
  background:
    linear-gradient(180deg, rgba(2, 9, 24, .75), rgba(0, 0, 0, .96)),
    url("assets/nueva/about/about-hero.png") center/cover;
  border-block: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .52fr);
  margin-top: 38px;
  padding: 88px clamp(24px, 5vw, 72px);
}

.ds-newsletter h2 {
  color: #fff;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  line-height: .94;
  margin: 0 0 22px;
  max-width: 820px;
}

.ds-newsletter p {
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
  max-width: 620px;
}

.ds-subscribe {
  display: grid;
  gap: 12px;
}

.ds-subscribe label {
  color: rgba(255, 255, 255, .56);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ds-subscribe div {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.ds-subscribe input {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  font: 700 15px var(--mono);
  min-width: 0;
  padding: 15px;
}

.ds-subscribe button {
  background: #fff;
  border: 0;
  color: #050607;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
  padding: 0 18px;
  text-transform: uppercase;
}

.ds-cta {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(23, 92, 255, .48), rgba(3, 8, 30, .9)),
    url("assets/nueva/about/about-launch.png") center/cover;
  border: 1px solid rgba(117, 189, 255, .24);
  display: flex;
  justify-content: space-between;
  margin: 32px clamp(24px, 5vw, 72px) 96px;
  min-height: 260px;
  padding: 44px;
}

.ds-cta h2 {
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  line-height: .95;
  margin: 0;
  max-width: 760px;
}

.ds-footer {
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .62);
  display: flex;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: .08em;
  padding: 28px clamp(24px, 5vw, 72px);
  text-transform: uppercase;
}

.mobile-menu {
  background: #111418;
  color: #fff;
  display: none;
  inset: 0;
  overflow-y: auto;
  padding: 48px 12px 18px;
  position: fixed;
  z-index: 60;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.mobile-close {
  border: 1px solid #444c57;
  height: 34px;
  position: relative;
  width: 34px;
}

.mobile-close span {
  left: 6px;
  top: 16px;
}

.mobile-links {
  display: grid;
  margin-top: 36px;
}

.mobile-links > button,
.mobile-links > a,
.mobile-group summary {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 2px dotted #556171;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  font-weight: 800;
  justify-content: space-between;
  padding: 16px 0;
  text-align: left;
}

.mobile-group {
  border-bottom: 2px dotted #556171;
}

.mobile-group summary {
  border-bottom: 0;
  list-style: none;
}

.mobile-group summary::-webkit-details-marker {
  display: none;
}

.mobile-group summary span {
  align-items: center;
  color: #9ea7b4;
  display: inline-flex;
  justify-content: center;
  transition: transform .16s ease, color .16s ease;
}

.mobile-group[open] summary span {
  color: var(--blue-2);
  transform: rotate(90deg);
}

.mobile-submenu {
  display: grid;
  gap: 2px;
  padding: 0 0 18px 14px;
}

.mobile-submenu a {
  border-left: 2px solid rgba(120, 189, 255, .36);
  color: #b8c4d4;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  padding: 10px 0 10px 14px;
  text-transform: uppercase;
}

.mobile-submenu a:hover {
  color: #fff;
}

.mobile-actions {
  display: grid;
  gap: 6px;
  margin-top: 30px;
}

.mobile-actions a {
  background: var(--blue);
  font-weight: 800;
  padding: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .38s ease, transform .38s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroWordIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroBgFloat {
  from {
    transform: translateX(-6px) scale(1);
  }

  to {
    transform: translateX(6px) scale(1.015);
  }
}

@keyframes caretBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .ds-nav,
  .ds-actions {
    display: none;
  }

  .ds-menu-button {
    display: inline-flex;
  }

  .ds-stats,
  .ds-principles,
  .ds-faq,
  .ds-community,
  .ds-access-grid,
  .ds-client-fit,
  .ds-sponsor-layout,
  .ds-newsletter {
    grid-template-columns: 1fr 1fr;
  }

  .ds-feature-card {
    grid-template-columns: 1fr 1fr;
  }

  .ds-track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ds-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ds-gallery-track {
    grid-template-columns: 1fr 1fr;
  }

  .ds-shot:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .ds-header {
    gap: 12px;
    padding: 0 14px;
  }

  .ds-brand {
    font-size: 18px;
    min-width: 0;
  }

  .ds-brand img {
    height: 34px;
  }

  .ds-hero {
    min-height: 860px;
    padding: 112px 22px 56px;
  }

  .ds-hero h1 {
    font-size: clamp(50px, 15vw, 74px);
  }

  .ds-hero p {
    line-height: 1.18;
  }

  .ds-stats,
  .ds-principles,
  .ds-faq,
  .ds-gallery-track,
  .ds-feature-card,
  .ds-community,
  .ds-access-grid,
  .ds-track-grid,
  .ds-client-fit,
  .ds-sponsor-layout,
  .ds-newsletter {
    grid-template-columns: minmax(0, 1fr);
  }

  .ds-client-rows article {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .ds-stats {
    gap: 28px;
  }

  .ds-feature-cell {
    min-height: 130px;
    padding: 26px 24px;
  }

  .ds-community-visual {
    min-height: 420px;
  }

  .ds-access-card,
  .ds-track-card,
  .ds-principle {
    min-height: 250px;
  }

  .ds-access-card span,
  .ds-track-card span,
  .ds-principle small {
    margin-bottom: 38px;
  }

  .ds-shot,
  .ds-shot.tall,
  .ds-shot.wide {
    grid-column: auto;
    margin-top: 0;
    min-height: 360px;
  }

  .ds-section {
    padding: 72px 22px;
  }

  .ds-faq-visual {
    min-height: 420px;
  }

  .ds-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ds-logo-wall div {
    height: 112px;
    padding: 18px;
  }

  .ds-newsletter {
    padding: 72px 22px;
  }

  .ds-subscribe div {
    grid-template-columns: 1fr;
  }

  .ds-subscribe button {
    height: 48px;
  }

  .ds-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    margin: 16px 22px 72px;
    padding: 28px;
  }

  .ds-footer {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .primary-nav-button {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .navbar {
    margin: 0;
  }

  .mega-menu {
    display: none;
  }

  .announcement {
    justify-content: flex-start;
  }

  .announcement-track {
    animation: mobileTicker 9s linear infinite;
    padding-left: 8px;
  }

  .announcement-track span:not(:first-child) {
    display: inline;
  }

  .hero {
    align-items: center;
    flex-direction: column;
    gap: clamp(34px, 7svh, 72px);
    height: auto;
    justify-content: center;
    min-height: 100svh;
    padding: 116px 16px 48px;
  }

  .hero-title {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    margin-top: 0;
    min-height: auto;
    top: 0;
    width: min(100%, calc(100vw - 32px));
  }

  .hero-copy {
    bottom: auto;
    left: auto;
    margin: 0 auto;
    position: static;
    transform: none;
  }

  .hero-bg-word {
    font-size: clamp(44px, 15.5vw, 104px);
    letter-spacing: -.02em;
    text-align: center;
    width: 100%;
  }

  .hero-main-word {
    font-size: clamp(48px, 16.5vw, 112px);
    text-align: center;
    width: 100%;
  }

  .partners {
    padding-top: 84px;
  }

  .manifesto h1 {
    font-size: 48px;
  }

  .stack-grid,
  .benefits,
  .industry-grid,
  .loop-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .stack-grid::before {
    display: none;
  }

  .stack-card:nth-child(even) {
    margin-top: 0;
  }

  .stack-card {
    overflow: hidden;
  }

  .wireframe-box {
    height: 220px;
  }

  .svc-scene {
    perspective: 640px;
    transform: scale(1.18);
  }

  .benefit-column {
    border-right: 0;
    padding: 0;
  }

  .button.centered {
    bottom: 28px;
  }

  .start-paths a {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .navbar {
    padding: 0 12px;
  }

  .navbar .brand {
    max-width: calc(100% - 52px);
  }

  .navbar .brand,
  .mobile-menu-header .brand {
    font-size: 25px;
    min-width: 0;
    padding: 0;
  }

  .navbar .brand-logo,
  .mobile-menu-header .brand-logo {
    height: 30px;
    width: auto;
  }

  .hero-copy {
    width: min(100%, 360px);
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    justify-content: stretch;
    width: 100%;
  }

  .hero-copy p {
    font-size: 18px;
    max-width: 315px;
  }

  .button {
    font-size: 14px;
    height: 44px;
    padding: 0 16px;
    width: 100%;
  }

  .partners-head p {
    font-size: 20px;
  }

  .brand-marquee .brand {
    gap: 10px;
    padding: 0 26px;
  }

  .brand-marquee .partner-brand {
    height: 58px;
    min-width: 164px;
    padding: 0 20px;
  }

  .brand-marquee .partner-brand img {
    max-height: 38px;
    max-width: 142px;
  }

  .brand-marquee .brand b {
    font-size: 21px;
  }

  .brand-marquee .brand .p-icon {
    transform: scale(.82);
  }

  .manifesto {
    padding-top: 60px;
  }

  .manifesto h1 {
    font-size: 42px;
  }

  .manifesto-bgword {
    font-size: 38vw;
    top: -.1em;
  }

  .trait-item {
    gap: 16px;
    padding: 22px 6px;
  }

  .stack-scene {
    min-height: auto;
    padding: 96px 12px;
  }

  .stack-heading {
    margin-bottom: 120px;
  }

  .stack-heading h2,
  .industry-heading h2,
  .loop h2 {
    font-size: clamp(32px, 10.5vw, 52px);
    line-height: 1.04;
  }

  .stack-card {
    min-height: 360px;
    padding: 16px;
  }

  .stack-card h3 {
    font-size: 14px;
    padding-bottom: 12px;
  }

  .wireframe-box {
    height: 190px;
    margin-inline: -6px;
  }

  .svc-scene {
    perspective: 560px;
    transform: scale(1);
  }

  .benefits {
    border-left: 0;
    border-right: 0;
    padding: 72px 14px 104px;
  }

  .benefit-column h2 {
    margin-bottom: 40px;
    text-align: left;
  }

  .benefit-column li {
    font-size: 17px;
    padding: 22px 16px;
  }

  .industries {
    padding: 96px 12px;
  }

  .industry-heading {
    margin-bottom: 72px;
  }

  .industry-grid article {
    padding: 22px 16px;
  }

  .industry-grid ul {
    margin-top: 46px;
  }

  .start-paths {
    padding-left: 12px;
    padding-right: 12px;
  }

  .start-paths strong {
    font-size: 48px;
  }

  .loop {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 400px) {
  .navbar .brand,
  .mobile-menu-header .brand {
    font-size: 17px;
  }

  .navbar .brand-logo,
  .mobile-menu-header .brand-logo {
    height: 26px;
    width: auto;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-bg-word {
    font-size: clamp(32px, 10.5vw, 40px);
  }

  .hero-main-word {
    font-size: clamp(44px, 14vw, 56px);
  }

  .manifesto h1 {
    font-size: 34px;
  }

  .trait-item span {
    font-size: 26px;
  }

  .benefit-column h2 {
    font-size: 38px;
  }

  .start-paths strong {
    font-size: 40px;
  }

  .wireframe-box {
    height: 176px;
  }

  .svc-scene {
    transform: scale(.9);
  }
}

@keyframes mobileTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   Service cards — isometric voxel cube motif inside .wireframe-box
   (CSS 3D transforms, idle float, reduced-motion safe)
   ============================================================ */
.mini-iso {
  --vs: 30px;               /* voxel size */
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  perspective: 900px;
  width: 100%;
}

.mini-iso .iso-cube {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-26deg) rotateY(-38deg);
  animation: isoFloat 7s ease-in-out infinite;
}

/* alternate cards drift the other way for a little variety */
.stack-card:nth-child(even) .mini-iso .iso-cube {
  animation-name: isoFloatAlt;
  animation-duration: 8s;
}

@keyframes isoFloat {
  0%, 100% { transform: rotateX(-26deg) rotateY(-38deg) translateY(-5px); }
  50%      { transform: rotateX(-26deg) rotateY(-30deg) translateY(6px); }
}

@keyframes isoFloatAlt {
  0%, 100% { transform: rotateX(-26deg) rotateY(-42deg) translateY(6px); }
  50%      { transform: rotateX(-26deg) rotateY(-34deg) translateY(-5px); }
}

/* one voxel = 3 visible faces */
.voxel {
  height: var(--vs);
  position: absolute;
  transform-style: preserve-3d;
  width: var(--vs);
}

.voxel .face {
  height: var(--vs);
  position: absolute;
  width: var(--vs);
}

.voxel .face.front { transform: translateZ(calc(var(--vs) / 2)); }
.voxel .face.right { transform: rotateY(90deg) translateZ(calc(var(--vs) / 2)); }
.voxel .face.top   { transform: rotateX(90deg) translateZ(calc(var(--vs) / 2)); }

/* solid voxel shading */
.voxel.solid .face        { background: #161b21; border: 1px solid #2b333d; }
.voxel.solid .face.top    { background: #1d242c; }
.voxel.solid .face.front  { background: #11161b; }
.voxel.solid .face.right  { background: #0c1014; }

/* highlighted blue voxel */
.voxel.blue .face         { border: 1px solid var(--blue-2); }
.voxel.blue .face.top     { background: var(--blue-2); }
.voxel.blue .face.front   { background: var(--blue); }
.voxel.blue .face.right   { background: #1d6fd6; }

@media (prefers-reduced-motion: reduce) {
  .mini-iso .iso-cube { animation: none; }
}

/* ============================================================
   Service cards — themed 3D scenes (one per service)
   Pure CSS 3D transforms; each card has its own motif.
   ============================================================ */
.svc-scene {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  perspective: 760px;
  transform: scale(1.45);
  width: 100%;
}

.svc-scene * {
  box-sizing: border-box;
}

.svc-stage {
  height: 130px;
  position: relative;
  transform-style: preserve-3d;
  width: 170px;
}

/* shared keyframes -------------------------------------------------- */
@keyframes svcFloatY {
  0%, 100% { transform: translateY(-6px); }
  50%      { transform: translateY(7px); }
}

@keyframes svcSpinY {
  to { transform: rotateY(360deg); }
}

@keyframes svcSpinZ {
  to { transform: rotate(360deg); }
}

@keyframes svcSwing {
  0%, 100% { transform: rotateY(-24deg) rotateX(7deg); }
  50%      { transform: rotateY(24deg) rotateX(-5deg); }
}

@keyframes svcPulse {
  0%, 100% { opacity: .45; transform: scale(.75); }
  50%      { opacity: 1; transform: scale(1.12); }
}

/* 01 - Discovery & strategy : cybersecurity shield ---------------- */
.svc-stage.cyber-security {
  animation: cyberFloat 8.5s cubic-bezier(.45, .05, .55, .95) infinite;
}

.cyber-security .cyber-grid,
.cyber-security .cyber-link,
.cyber-security .cyber-node,
.cyber-security .cyber-packet,
.cyber-security .cyber-shield,
.cyber-security .cyber-scan {
  position: absolute;
}

.cyber-security .cyber-grid {
  background:
    repeating-linear-gradient(90deg, rgba(120, 189, 255, .12) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(120, 189, 255, .1) 0 1px, transparent 1px 20px),
    radial-gradient(circle at 50% 45%, rgba(47, 145, 255, .2), transparent 62%);
  border: 1px solid rgba(47, 145, 255, .3);
  border-radius: 12px;
  box-shadow: inset 0 0 20px rgba(47, 145, 255, .12), 0 0 22px rgba(47, 145, 255, .08);
  height: 98px;
  left: 50%;
  margin: -49px 0 0 -75px;
  opacity: .78;
  top: 50%;
  transform: translateZ(-34px);
  width: 150px;
  z-index: 0;
}

.cyber-security .cyber-grid::before {
  background: radial-gradient(circle, rgba(120, 189, 255, .28), transparent 60%);
  border-radius: 50%;
  content: "";
  inset: 18px 36px;
  opacity: .55;
  position: absolute;
}

.cyber-security .cyber-link {
  background: linear-gradient(90deg, transparent, rgba(120, 189, 255, .7), transparent);
  height: 1px;
  transform-origin: left center;
  z-index: 1;
}

.cyber-security .cl1 {
  animation: cyberLinkFlow 2.4s ease-in-out infinite;
  left: 30px;
  top: 39px;
  transform: translateZ(-6px) rotate(29deg);
  width: 58px;
}

.cyber-security .cl2 {
  animation: cyberLinkFlow 2.4s ease-in-out .6s infinite;
  left: 93px;
  top: 58px;
  transform: translateZ(-6px) rotate(-33deg);
  width: 52px;
}

.cyber-security .cl3 {
  animation: cyberLinkFlow 2.4s ease-in-out 1.1s infinite;
  left: 30px;
  top: 94px;
  transform: translateZ(-6px) rotate(-29deg);
  width: 61px;
}

.cyber-security .cl4 {
  animation: cyberLinkFlow 2.4s ease-in-out 1.6s infinite;
  left: 96px;
  top: 75px;
  transform: translateZ(-6px) rotate(19deg);
  width: 48px;
}

.cyber-security .cyber-node {
  background: #0d1821;
  border: 1px solid rgba(120, 189, 255, .85);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(120, 189, 255, .45);
  height: 13px;
  width: 13px;
  z-index: 3;
}

.cyber-security .cyber-node::before {
  background: var(--blue-2);
  border-radius: inherit;
  content: "";
  inset: 4px;
  position: absolute;
}

.cyber-security .cn1 {
  --nz: 30px;
  animation: cyberNodePulse 2.3s ease-in-out infinite;
  left: 22px;
  top: 31px;
}

.cyber-security .cn2 {
  --nz: 6px;
  animation: cyberNodePulse 2.3s ease-in-out .45s infinite;
  right: 22px;
  top: 27px;
}

.cyber-security .cn3 {
  --nz: 20px;
  animation: cyberNodePulse 2.3s ease-in-out .9s infinite;
  bottom: 22px;
  left: 24px;
}

.cyber-security .cn4 {
  --nz: -2px;
  animation: cyberNodePulse 2.3s ease-in-out 1.2s infinite;
  bottom: 31px;
  right: 18px;
}

.cyber-security .cyber-packet {
  background: var(--blue-2);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(120, 189, 255, .8);
  height: 4px;
  opacity: 0;
  width: 9px;
  z-index: 2;
}

.cyber-security .cp1 {
  animation: cyberPacketA 2.5s linear infinite;
  left: 33px;
  top: 40px;
}

.cyber-security .cp2 {
  animation: cyberPacketB 2.7s linear .45s infinite;
  left: 133px;
  top: 34px;
}

.cyber-security .cp3 {
  animation: cyberPacketC 2.8s linear .2s infinite;
  left: 33px;
  top: 100px;
}

.cyber-security .cyber-shield {
  animation: cyberShieldPulse 2.8s ease-in-out infinite;
  background: linear-gradient(180deg, rgba(120, 189, 255, .95), rgba(47, 145, 255, .36));
  clip-path: polygon(50% 0, 92% 14%, 84% 61%, 50% 100%, 16% 61%, 8% 14%);
  filter: drop-shadow(0 0 10px rgba(47, 145, 255, .45));
  height: 82px;
  left: 50%;
  margin: -41px 0 0 -35px;
  top: 50%;
  transform: translateZ(32px);
  transform-style: preserve-3d;
  width: 70px;
  z-index: 4;
}

.cyber-security .cyber-shield::before {
  background: linear-gradient(180deg, #111a22, #0a0f14 68%);
  clip-path: inherit;
  content: "";
  inset: 4px;
  position: absolute;
  z-index: 0;
}

.cyber-security .shield-core {
  background: linear-gradient(155deg, rgba(120, 189, 255, .22), transparent 58%);
  border: 1px solid rgba(120, 189, 255, .36);
  border-radius: 50% 50% 14px 14px;
  bottom: 17px;
  left: 18px;
  overflow: hidden;
  position: absolute;
  right: 18px;
  top: 15px;
  transform: translateZ(8px);
  z-index: 1;
}

.cyber-security .shield-core::before {
  animation: shieldSheen 5s ease-in-out infinite;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, .55) 50%, transparent 62%);
  content: "";
  inset: 0;
  position: absolute;
}

@keyframes shieldSheen {
  0%       { opacity: 0; transform: translateX(-130%); }
  14%      { opacity: 1; }
  40%      { opacity: 0; transform: translateX(130%); }
  100%     { opacity: 0; transform: translateX(130%); }
}

.cyber-security .lock-shackle {
  border: 4px solid rgba(120, 189, 255, .95);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  height: 23px;
  left: 50%;
  margin-left: -14px;
  position: absolute;
  top: 28px;
  transform: translateZ(12px);
  width: 28px;
  z-index: 2;
}

.cyber-security .lock-body {
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(120, 189, 255, .72);
  height: 21px;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  top: 47px;
  transform: translateZ(14px);
  width: 26px;
  z-index: 3;
}

.cyber-security .lock-body::after {
  background: #071018;
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 50%;
  margin-left: -2.5px;
  position: absolute;
  top: 6px;
  width: 5px;
}

.cyber-security .cyber-scan {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .85), var(--blue-2), transparent);
  box-shadow: 0 0 14px rgba(120, 189, 255, .9);
  height: 2px;
  left: 50%;
  margin-left: -51px;
  top: 50%;
  width: 102px;
  z-index: 5;
  animation: cyberScan 2.6s ease-in-out infinite;
}

@keyframes cyberFloat {
  0%, 100% { transform: rotateX(12deg) rotateY(-22deg) translateY(-6px); }
  50%      { transform: rotateX(19deg) rotateY(14deg) translateY(6px); }
}

@keyframes cyberLinkFlow {
  0%, 100% { opacity: .28; filter: none; }
  50%      { opacity: .95; filter: drop-shadow(0 0 4px rgba(120, 189, 255, .8)); }
}

@keyframes cyberNodePulse {
  0%, 100% { opacity: .62; transform: translateZ(var(--nz, 12px)) scale(.82); }
  50%      { opacity: 1; transform: translateZ(var(--nz, 12px)) scale(1.14); }
}

@keyframes cyberPacketA {
  0%   { opacity: 0; transform: translate3d(0, 0, 18px) scale(.55); }
  18%, 78% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(48px, 24px, 18px) scale(1); }
}

@keyframes cyberPacketB {
  0%   { opacity: 0; transform: translate3d(0, 0, 18px) scale(.55); }
  18%, 78% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-43px, 27px, 18px) scale(1); }
}

@keyframes cyberPacketC {
  0%   { opacity: 0; transform: translate3d(0, 0, 18px) scale(.55); }
  18%, 78% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(47px, -34px, 18px) scale(1); }
}

@keyframes cyberShieldPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(47, 145, 255, .42)); }
  50%      { filter: drop-shadow(0 0 18px rgba(120, 189, 255, .72)); }
}

@keyframes cyberScan {
  0%   { opacity: 0; transform: translateZ(48px) translateY(-42px); }
  18%, 82% { opacity: .95; }
  100% { opacity: 0; transform: translateZ(48px) translateY(42px); }
}

/* 02 — Product & UX design : floating UI layers ------------------- */
.svc-stage.layers {
  animation: svcSwing 9s ease-in-out infinite;
}

.layers .panel {
  background: #11161b;
  border: 1px solid #33414f;
  border-radius: 9px;
  height: 86px;
  left: 50%;
  margin: -43px 0 0 -62px;
  position: absolute;
  top: 50%;
  width: 124px;
}

.layers .p1 {
  animation: layerFloat1 7s ease-in-out infinite;
  transform: translateZ(-36px) translate(-16px, 18px);
}

.layers .p2 {
  animation: layerFloat2 6s ease-in-out infinite;
  transform: translateZ(0) translate(4px, -2px);
  border-color: #41566a;
  background: #121a22;
}

.layers .p2::before {
  background: rgba(120, 189, 255, .5);
  border-radius: 3px;
  content: "";
  height: 6px;
  left: 12px;
  position: absolute;
  top: 12px;
  width: 38px;
}

.layers .p2::after {
  background: repeating-linear-gradient(transparent 0 7px, rgba(120, 189, 255, .14) 7px 8px);
  border-radius: 5px;
  bottom: 14px;
  content: "";
  left: 12px;
  position: absolute;
  right: 12px;
  top: 28px;
}

.layers::after {
  animation: layerShadow 6s ease-in-out infinite;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .55), transparent 70%);
  bottom: -30px;
  content: "";
  height: 26px;
  left: 50%;
  margin-left: -66px;
  position: absolute;
  transform: translateZ(-46px) rotateX(78deg);
  width: 132px;
}

@keyframes layerShadow {
  0%, 100% { opacity: .42; transform: translateZ(-46px) rotateX(78deg) scale(1); }
  50%      { opacity: .26; transform: translateZ(-46px) rotateX(78deg) scale(.84); }
}

.layers .p3 {
  animation: layerFloat3 5.5s ease-in-out infinite;
  background: linear-gradient(160deg, rgba(47, 145, 255, .24), #0f1620);
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(47, 145, 255, .25);
  transform: translateZ(38px) translate(22px, -20px);
}

@keyframes layerFloat1 {
  0%, 100% { transform: translateZ(-48px) translate(-18px, 16px); }
  50%      { transform: translateZ(-34px) translate(-14px, 22px); }
}

@keyframes layerFloat2 {
  0%, 100% { transform: translateZ(-2px) translate(4px, -4px); }
  50%      { transform: translateZ(6px)  translate(6px, 2px); }
}

@keyframes layerFloat3 {
  0%, 100% { transform: translateZ(44px) translate(20px, -22px); }
  50%      { transform: translateZ(58px) translate(24px, -16px); }
}

.layers .p3::before {
  background: var(--blue-2);
  border-radius: 3px;
  content: "";
  height: 6px;
  left: 12px;
  position: absolute;
  top: 12px;
  width: 44px;
}

.layers .p3::after {
  border: 1px dashed rgba(120, 189, 255, .5);
  border-radius: 5px;
  bottom: 14px;
  content: "";
  left: 12px;
  position: absolute;
  right: 12px;
  top: 28px;
}

.layers .cursor {
  animation: layerCursorTap 4.2s ease-in-out infinite;
  border-bottom: 9px solid transparent;
  border-left: 9px solid #fff;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .5));
  height: 0;
  left: 64%;
  position: absolute;
  top: 58%;
  transform: translateZ(70px) rotate(-14deg);
  width: 0;
}

@keyframes layerCursorTap {
  0%       { transform: translateZ(70px) translate(10px, 12px) rotate(-14deg); }
  35%      { transform: translateZ(70px) translate(0, 0) rotate(-14deg); }
  46%      { transform: translateZ(60px) translate(0, 0) rotate(-14deg) scale(.82); }
  56%      { transform: translateZ(70px) translate(0, 0) rotate(-14deg); }
  100%     { transform: translateZ(70px) translate(10px, 12px) rotate(-14deg); }
}

/* 03 — Web & mobile development : monitor + phone ----------------- */
.svc-stage.devices {
  animation: svcSwing 8s ease-in-out infinite;
}

.devices .monitor {
  background: #0e141a;
  border: 2px solid #44566a;
  border-radius: 7px;
  height: 82px;
  left: 50%;
  margin: -48px 0 0 -74px;
  position: absolute;
  top: 50%;
  transform: translateZ(-12px);
  width: 130px;
}

.devices .monitor::after {
  background: #33414f;
  border-radius: 0 0 4px 4px;
  bottom: -14px;
  content: "";
  height: 11px;
  left: 50%;
  margin-left: -18px;
  position: absolute;
  width: 36px;
}

.devices .phone {
  background: #0e141a;
  border: 2px solid #5a6f86;
  border-radius: 9px;
  height: 76px;
  left: 50%;
  margin: -32px 0 0 30px;
  position: absolute;
  top: 50%;
  transform: translateZ(36px);
  width: 40px;
}

.devices .screen {
  border-radius: 4px;
  inset: 5px;
  position: absolute;
}

.devices .monitor .screen {
  background:
    repeating-linear-gradient(transparent 0 8px, rgba(47, 145, 255, .16) 8px 9px),
    linear-gradient(160deg, rgba(47, 145, 255, .28), transparent);
}

.devices .phone .screen {
  background: linear-gradient(160deg, rgba(120, 189, 255, .32), transparent);
}

/* 04 — Cloud & DevOps : bright cloud with CI/CD orbit ------------- */
.svc-stage.cloud3d {
  animation: cloudFloat 8s cubic-bezier(.45, .05, .55, .95) infinite;
  transform-style: preserve-3d;
}

.cloud3d::after {
  animation: cloudShadow 8s cubic-bezier(.45, .05, .55, .95) infinite;
  background: radial-gradient(ellipse, rgba(47, 145, 255, .4), transparent 70%);
  bottom: 14px;
  content: "";
  height: 22px;
  left: 50%;
  margin-left: -56px;
  position: absolute;
  transform: translateZ(-10px);
  width: 112px;
  z-index: 0;
}

@keyframes cloudFloat {
  0%, 100% { transform: translateY(-6px) rotateY(-12deg); }
  50%      { transform: translateY(6px)  rotateY(12deg); }
}

@keyframes cloudShadow {
  0%, 100% { opacity: .5;  transform: translateZ(-10px) scale(.9); }
  50%      { opacity: .85; transform: translateZ(-10px) scale(1.08); }
}

/* clean cloud silhouette facing the viewer */
.cloud3d .cloud {
  background: linear-gradient(165deg, #f4f9ff 0%, #9cc8ff 55%, #5aa2f5 100%);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(47, 145, 255, .4), inset 0 7px 12px rgba(255, 255, 255, .55), inset 0 -6px 12px rgba(20, 60, 120, .25);
  height: 40px;
  left: 50%;
  margin: -12px 0 0 -62px;
  position: absolute;
  top: 50%;
  transform: translateZ(36px);
  width: 124px;
  z-index: 2;
}

.cloud3d .cloud::before,
.cloud3d .cloud::after {
  background: inherit;
  border-radius: 50%;
  content: "";
  position: absolute;
}

.cloud3d .cloud::before { height: 54px; left: 20px;  top: -28px; width: 54px; }
.cloud3d .cloud::after  { height: 38px; right: 22px; top: -18px; width: 38px; }

/* tilted dashed orbit ring with CI/CD nodes */
.cloud3d .orbit {
  animation: cloudOrbit 8s linear infinite;
  height: 150px;
  left: 50%;
  margin: -75px 0 0 -75px;
  position: absolute;
  top: 50%;
}

.cloud3d .orbit::before {
  border: 1.5px dashed rgba(120, 189, 255, .5);
  border-radius: 50%;
  content: "";
  inset: 0;
  position: absolute;
}

.cloud3d .node {
  border-radius: 50%;
  height: 11px;
  left: 50%;
  margin: -5.5px;
  position: absolute;
  top: 50%;
  width: 11px;
}

.cloud3d .n1 { background: var(--blue-2); box-shadow: 0 0 11px 2px var(--blue);   transform: rotate(20deg)  translateX(75px); }
.cloud3d .n2 { background: #fff;          box-shadow: 0 0 11px 2px var(--blue-2); transform: rotate(200deg) translateX(75px); }

@keyframes cloudOrbit {
  from { transform: rotateX(72deg) rotateZ(0); }
  to   { transform: rotateX(72deg) rotateZ(360deg); }
}

/* rising deploy packets feeding the cloud */
.cloud3d .rise {
  bottom: 30px;
  left: 50%;
  margin-left: -18px;
  position: absolute;
  transform: translateZ(36px);
  width: 36px;
  z-index: 1;
}

.cloud3d .rise b {
  background: var(--blue-2);
  border-radius: 50%;
  bottom: 0;
  box-shadow: 0 0 7px var(--blue);
  display: block;
  height: 6px;
  opacity: 0;
  position: absolute;
  width: 6px;
}

.cloud3d .rise b:nth-child(1) { left: 2px;  animation: cloudRise 2.4s ease-in infinite; }
.cloud3d .rise b:nth-child(2) { left: 15px; animation: cloudRise 2.4s ease-in .8s infinite; }
.cloud3d .rise b:nth-child(3) { left: 28px; animation: cloudRise 2.4s ease-in 1.6s infinite; }

@keyframes cloudRise {
  0%   { opacity: 0; transform: translateY(0)     scale(.6); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-32px) scale(1); }
}

/* 05 — AI & data : Claude-style sunburst around the brand logo --- */
.svc-stage.spark {
  transform-style: preserve-3d;
}

/* slowly rotating ring of tapered rays radiating from the centre */
.spark .rays {
  animation: sparkSpin 22s linear infinite;
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 0;
}

@keyframes sparkSpin {
  to { transform: rotate(360deg); }
}

.spark .rays i {
  animation: sparkBreathe 3s ease-in-out infinite;
  background: linear-gradient(to bottom, var(--blue-2) 0%, var(--blue) 42%, rgba(47, 145, 255, 0) 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  height: 66px;
  left: 0;
  margin-left: -7px;
  position: absolute;
  top: 0;
  transform-origin: 50% 0;
  width: 14px;
}

/* alternating shorter rays give the organic sunburst silhouette */
.spark .rays i:nth-child(even) {
  height: 46px;
  opacity: .6;
}

@keyframes sparkBreathe {
  0%, 100% { filter: brightness(.82); }
  50%      { filter: brightness(1.3); }
}

/* the brand "N" logo as the glowing core of the spark */
.spark .core {
  align-items: center;
  animation: corePulse 3s ease-in-out infinite;
  background: radial-gradient(circle, rgba(47, 145, 255, .6) 0%, rgba(47, 145, 255, .15) 42%, transparent 70%);
  border-radius: 50%;
  display: flex;
  height: 58px;
  justify-content: center;
  left: 50%;
  margin: -29px 0 0 -29px;
  position: absolute;
  top: 50%;
  width: 58px;
  z-index: 2;
}

.spark .core-logo {
  filter: drop-shadow(0 0 9px rgba(120, 189, 255, .95));
  height: auto;
  width: 30px;
}

@keyframes corePulse {
  0%, 100% { opacity: .94; transform: scale(.92); }
  50%      { opacity: 1; transform: scale(1.08); }
}

/* 06 — Maintenance & support : interlocking gears ---------------- */
.svc-stage.gears {
  transform: rotateX(18deg) rotateY(-14deg);
}

.gears .gear {
  border-radius: 50%;
  position: absolute;
}

.gears .gear::before {
  background: #0e141a;
  border: 2px solid #46586c;
  border-radius: 50%;
  content: "";
  inset: 18%;
  position: absolute;
}

.gears .gear::after {
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
  inset: 40%;
  position: absolute;
}

.gears .big {
  background: repeating-conic-gradient(from 0deg, #3a4f63 0 12deg, transparent 12deg 30deg);
  height: 98px;
  left: 50%;
  margin: -60px 0 0 -66px;
  top: 50%;
  width: 98px;
  animation: svcSpinZ 7s linear infinite;
}

.gears .small {
  background: repeating-conic-gradient(from 0deg, var(--blue) 0 14deg, transparent 14deg 36deg);
  height: 62px;
  left: 50%;
  margin: 4px 0 0 6px;
  top: 50%;
  width: 62px;
  animation: svcSpinZ 5s linear infinite reverse;
}

.gears .small::before { border-color: var(--blue); }

@media (prefers-reduced-motion: reduce) {
  .svc-stage,
  .svc-stage * {
    animation: none !important;
  }
}

@media (max-width: 760px) {
  html,
  body,
  .site-shell {
    max-width: 100%;
    overflow-x: hidden;
  }

  .mobile-menu {
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }

  .mobile-links {
    margin-top: 26px;
  }

  .mobile-links > button,
  .mobile-links > a,
  .mobile-group summary {
    font-size: clamp(16px, 5vw, 20px);
    line-height: 1.15;
    min-height: 54px;
  }

  .mobile-submenu {
    padding-left: 8px;
  }

  .mobile-submenu a {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .hero {
    background:
      radial-gradient(circle at 50% 43%, rgba(47, 145, 255, .72), transparent 34%),
      linear-gradient(180deg, #000 0%, #03101c 30%, #126bc4 66%, #ddebfb 100%);
    min-height: 100svh;
    padding-bottom: max(42px, env(safe-area-inset-bottom));
  }

  .hero-glow {
    height: 112vmin;
    top: 21%;
    width: 112vmin;
  }

  .hero-title {
    max-width: 100%;
    overflow: visible;
    width: calc(100vw - 32px);
  }

  .hero-main-word,
  .hero-bg-word {
    font-size: clamp(40px, 13vw, 56px);
    max-width: 100%;
    width: auto;
  }

  .hero-bg-word {
    letter-spacing: 0;
  }

  .hero-copy {
    width: min(calc(100vw - 32px), 330px);
  }

  .stack-scene {
    min-height: auto;
    padding: 84px 12px 100px;
  }

  .scan-bg {
    height: 520px;
  }

  .stack-heading {
    margin-bottom: 72px;
  }

  .stack-grid {
    gap: 22px;
  }

  .stack-card {
    min-height: auto;
  }

  .wireframe-box {
    height: clamp(174px, 50vw, 220px);
    margin-inline: -4px;
    overflow: visible;
  }

  .svc-scene {
    perspective: 560px;
    transform: scale(.98);
    transform-origin: center;
  }

  .ds-hero {
    gap: 44px;
    justify-content: flex-start;
    min-height: auto;
    padding: 112px 18px 48px;
  }

  .ds-hero-content,
  .ds-stats,
  .ds-section-head {
    min-width: 0;
    width: 100%;
  }

  .ds-hero h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .ds-hero p {
    font-size: 16px;
    line-height: 1.18;
    max-width: min(100%, 31ch);
    overflow-wrap: anywhere;
  }

  .ds-primary,
  .ds-pill {
    justify-content: center;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .ds-stats {
    gap: 20px;
  }

  .ds-stat strong {
    font-size: clamp(38px, 12vw, 50px);
    margin-bottom: 8px;
  }

  .ds-stat span {
    font-size: 12px;
    line-height: 1.35;
    max-width: 28ch;
  }

  .ds-section {
    padding: 68px 18px;
  }

  .ds-section-head {
    margin-bottom: 34px;
  }

  .ds-section-head h2,
  .ds-community-copy h2,
  .ds-newsletter h2,
  .ds-cta h2 {
    font-size: clamp(30px, 9.4vw, 44px);
    line-height: 1;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .ds-feature-card::before {
    display: none;
  }

  .ds-feature-cell {
    min-height: auto;
    padding: 22px 18px;
  }

  .ds-feature-cell h3 {
    font-size: clamp(26px, 8vw, 36px);
    overflow-wrap: anywhere;
  }

  .ds-feature-cell p,
  .ds-feature-cell span,
  .ds-stat span,
  .ds-footer span {
    overflow-wrap: anywhere;
  }

  .ds-community {
    gap: 34px;
  }

  .ds-community-copy p,
  .ds-access-card p,
  .ds-track-card p,
  .ds-principle p,
  .ds-client-copy p,
  .ds-client-rows p,
  .ds-faq-item p,
  .ds-newsletter p {
    font-size: 16px;
  }

  .ds-community-visual,
  .ds-faq-visual {
    min-height: min(86vw, 380px);
  }

  .ds-access-card,
  .ds-track-card,
  .ds-principle {
    min-height: auto;
    padding: 22px;
  }

  .ds-access-card span,
  .ds-track-card span,
  .ds-principle small {
    margin-bottom: 30px;
  }

  .ds-gallery-track {
    gap: 16px;
  }

  .ds-shot,
  .ds-shot.tall,
  .ds-shot.wide {
    min-height: min(92vw, 340px);
  }

  .ds-logo-wall img {
    max-height: 52px;
    max-width: 128px;
  }

  .ds-logo-wall div {
    height: clamp(92px, 30vw, 112px);
    padding: 14px;
  }

  .ds-newsletter {
    gap: 28px;
  }

  .ds-subscribe button {
    min-height: 48px;
    width: 100%;
  }

  .ds-cta {
    min-height: auto;
    padding: 24px;
  }

  .ds-footer {
    align-items: flex-start;
    line-height: 1.45;
    padding: 22px 18px;
  }
}

@media (max-width: 380px) {
  .stack-card > span {
    height: 34px;
    width: 34px;
  }

  .stack-card h3 {
    margin-left: 8px;
    width: calc(100% - 48px);
  }

  .wireframe-box {
    height: 160px;
  }

  .svc-scene {
    transform: scale(.84);
  }

  .ds-section,
  .ds-hero,
  .ds-newsletter {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 1120px) {
  .custom-hero-inner,
  .custom-proof {
    grid-template-columns: 1fr;
  }

  .custom-hero-card,
  .custom-proof-media {
    min-height: min(76vw, 540px);
  }

  .custom-metrics,
  .custom-process-grid,
  .custom-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-traits {
    grid-template-columns: 1fr;
  }

  .custom-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-cover-layout,
  .service-dossier,
  .service-scope-head,
  .service-quote-band {
    grid-template-columns: 1fr;
  }

  .service-cover-rail {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .22);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-left: 0;
    padding-top: 22px;
  }

  .service-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-scope-row {
    grid-template-columns: 90px minmax(0, .72fr) minmax(0, 1fr);
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-blueprint,
  .runbook,
  .hub-layout,
  .design-wall {
    grid-template-columns: 1fr;
  }

  .squad-board,
  .pipeline-rail,
  .qa-matrix,
  .model-loop,
  .data-river,
  .roadmap-board,
  .hub-spokes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-loop article:nth-child(even),
  .roadmap-board article:nth-child(2),
  .roadmap-board article:nth-child(3) {
    transform: none;
  }

  .info-hero,
  .info-feature,
  .industry-hero,
  .solution-hero {
    grid-template-columns: 1fr;
  }

  .info-hero-media,
  .info-feature-media,
  .industry-visual,
  .solution-visual {
    min-height: min(76vw, 540px);
  }

  .info-strip,
  .industry-stats,
  .info-grid,
  .info-grid.two,
  .info-quote-grid,
  .info-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-split,
  .finance-command,
  .care-map,
  .route-board,
  .media-console,
  .architecture-map,
  .saas-rhythm,
  .ai-lab,
  .legacy-map,
  .mobile-journey,
  .blog-composition,
  .guide-shelf,
  .faq-hub,
  .pricing-note,
  .project-brief,
  .press-room {
    grid-template-columns: 1fr;
  }

  .blog-lanes,
  .industry-lanes,
  .solution-lanes,
  .faq-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-strip,
  .saas-cycle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .automation-chain article,
  .web-stack article {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .automation-chain article p,
  .web-stack article p {
    grid-column: 2;
  }

  .pricing-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-form-panel .info-form {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-left: 0;
    padding-top: 32px;
  }

  .learning-path article {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .learning-path article p {
    grid-column: 2;
  }

  .industry-cta,
  .solution-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .custom-hero {
    min-height: auto;
    padding: 126px 18px 48px;
  }

  .custom-hero h1 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: .94;
    max-width: 100%;
    text-align: center;
    text-wrap: balance;
  }

  .custom-hero p,
  .custom-kicker {
    text-align: center;
  }

  .custom-hero-copy {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .custom-hero p {
    font-size: 16px;
    line-height: 1.25;
    max-width: 36ch;
  }

  .custom-actions {
    justify-content: center;
    width: 100%;
  }

  .custom-actions .button {
    flex: 1 1 150px;
    justify-content: center;
    max-width: 190px;
    min-width: 0;
  }

  .custom-hero-card,
  .custom-proof-media {
    min-height: min(92vw, 420px);
  }

  .custom-card-overlay {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .custom-metrics,
  .custom-process-grid,
  .custom-industry-grid,
  .custom-stack-grid {
    grid-template-columns: 1fr;
  }

  .custom-metrics {
    margin-top: 34px;
  }

  .custom-metrics article,
  .custom-stack-card,
  .custom-process-grid article,
  .custom-industry-grid article {
    min-height: auto;
  }

  .custom-manifest,
  .custom-traits,
  .custom-stack,
  .custom-proof,
  .custom-process,
  .custom-industries,
  .custom-faq {
    padding: 52px 18px;
  }

  .custom-manifest h2,
  .custom-section-head h2,
  .custom-proof-copy h2,
  .custom-cta h2 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1;
  }

  .custom-trait-list div {
    font-size: clamp(24px, 7vw, 32px);
    gap: 14px;
  }

  .custom-stack-card h3,
  .custom-process-grid h3 {
    margin-top: 38px;
  }

  .custom-section-head {
    margin-bottom: 34px;
  }

  .custom-faq summary {
    font-size: clamp(20px, 6vw, 26px);
  }

  .custom-cta {
    margin: 0 18px 70px;
    min-height: auto;
    padding: 24px;
  }

  .service-cover {
    min-height: auto;
    padding: 126px 18px 42px;
  }

  .service-cover-layout {
    align-items: start;
    gap: 30px;
  }

  .service-cover h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: .9;
    max-width: 10ch;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .service-cover p {
    font-size: 16px;
    line-height: 1.26;
    max-width: min(100%, 34ch);
  }

  .service-cover-actions {
    width: 100%;
  }

  .service-cover-actions .button {
    flex: 1 1 100%;
    justify-content: center;
    min-width: 0;
  }

  .service-cover-rail {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .service-cover-rail strong {
    font-size: 20px;
  }

  .service-ribbon {
    grid-template-columns: 1fr;
  }

  .service-ribbon span {
    border-bottom: 1px solid #cad4df;
    border-right: 0;
    min-height: auto;
    padding: 18px;
  }

  .service-dossier,
  .service-scope {
    padding: 52px 18px;
  }

  .service-dossier-aside h2,
  .service-scope-head h2,
  .service-quote-band blockquote,
  .service-cta h2 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1;
  }

  .service-dossier-aside p,
  .service-scope-head p {
    font-size: 16px;
  }

  .service-track article,
  .service-scope-row {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .service-track article::before {
    font-size: 24px;
  }

  .service-quote-band blockquote,
  .service-quote-band aside {
    padding: 34px 18px;
  }

  .service-cta {
    margin: 0 18px 70px;
    min-height: auto;
    padding: 24px;
  }

  .service-creative {
    padding: 52px 18px;
  }

  .service-creative h2 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1;
  }

  .service-blueprint,
  .runbook,
  .hub-layout,
  .design-wall,
  .squad-board,
  .pipeline-rail,
  .qa-matrix,
  .model-loop,
  .data-river,
  .roadmap-board,
  .hub-spokes {
    grid-template-columns: 1fr;
  }

  .blueprint-map,
  .runbook-console,
  .hub-core,
  .design-wall-main {
    min-height: 300px;
  }

  .browser-stack article,
  .runbook-timeline article,
  .phone-path article {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .phone-path {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    margin-left: 0;
  }

  .phone-path article {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    padding: 22px 0;
  }

  .phone-path article::before {
    display: none;
  }

  .pipeline-rail article,
  .squad-board article,
  .qa-matrix article,
  .model-loop article,
  .data-river article,
  .roadmap-board article {
    min-height: auto;
  }

  .info-hero {
    min-height: auto;
    padding: 126px 18px 48px;
  }

  .industry-hero,
  .solution-hero {
    min-height: auto;
    padding: 126px 18px 48px;
  }

  .info-hero h1,
  .industry-hero h1,
  .solution-hero h1 {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: .98;
    max-width: 13ch;
    overflow-wrap: anywhere;
    text-align: center;
    text-wrap: balance;
  }

  .solution-hero p {
    font-size: 16px;
    line-height: 1.25;
    max-width: min(100%, 32ch);
    overflow-wrap: anywhere;
  }

  .info-hero p,
  .industry-hero p,
  .solution-hero p,
  .info-kicker,
  .industry-kicker,
  .solution-kicker {
    text-align: center;
  }

  .info-hero-copy,
  .industry-hero-copy,
  .solution-hero-copy {
    align-items: center;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
  }

  .info-actions {
    justify-content: center;
    width: 100%;
  }

  .info-actions .button {
    flex: 1 1 150px;
    justify-content: center;
    max-width: 190px;
    min-width: 0;
  }

  .info-pill-row {
    justify-content: center;
    max-width: 100%;
  }

  .industry-hero .info-actions,
  .industry-hero .info-pill-row,
  .solution-hero .info-actions,
  .solution-hero .info-pill-row {
    width: 100%;
  }

  .industry-hero .info-pill-row span,
  .solution-hero .info-pill-row span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .info-hero-media,
  .info-feature-media,
  .industry-visual,
  .solution-visual {
    min-height: min(92vw, 420px);
  }

  .info-frame-label,
  .industry-visual figcaption,
  .solution-visual figcaption {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .info-strip,
  .industry-stats,
  .industry-lanes,
  .solution-strip,
  .solution-lanes,
  .saas-cycle,
  .runway-steps,
  .retail-loop,
  .info-grid,
  .info-grid.two,
  .info-quote-grid,
  .info-contact-grid,
  .info-logo-row {
    grid-template-columns: 1fr;
  }

  .info-section,
  .info-feature,
  .industry-panel,
  .solution-panel {
    padding: 52px 18px;
  }

  .info-strip article,
  .industry-stats article,
  .industry-lanes article,
  .solution-strip article,
  .solution-lanes article,
  .saas-cycle article,
  .runway-steps article,
  .runway-steps article:first-child,
  .retail-loop article,
  .retail-loop article:nth-child(1),
  .info-card,
  .info-quote,
  .info-contact-card {
    min-height: auto;
  }

  .info-card span,
  .info-quote span,
  .info-contact-card span {
    margin-bottom: 32px;
  }

  .info-section-head h2,
  .info-feature-copy h2,
  .info-cta h2,
  .industry-head h2,
  .industry-copy h2,
  .industry-cta h2,
  .solution-head h2,
  .solution-copy h2,
  .solution-cta h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1;
  }

  .info-feature-copy p,
  .industry-copy p,
  .industry-head p,
  .solution-copy p,
  .solution-head p {
    font-size: 16px;
  }

  .info-logo-row div {
    height: 96px;
  }

  .info-form button {
    width: 100%;
  }

  .info-cta {
    margin: 0 18px 70px;
    min-height: auto;
    padding: 24px;
  }

  .industry-cta,
  .solution-cta {
    margin: 0 18px 70px;
    min-height: auto;
    padding: 24px;
  }

  .finance-ledger article,
  .media-lanes article,
  .architecture-nodes article,
  .automation-chain article,
  .legacy-steps article,
  .web-stack article {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .automation-chain article p,
  .web-stack article p {
    grid-column: auto;
  }

  .care-map,
  .route-board,
  .media-console,
  .architecture-map,
  .saas-rhythm,
  .ai-lab,
  .legacy-map,
  .mobile-journey {
    gap: 34px;
  }

  .ai-signals {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .ai-signals article {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    padding: 22px 0;
  }

  .ai-signals article::before {
    display: none;
  }

  .care-flow {
    border-left: 0;
    border-top: 1px solid #cad4df;
  }

  .care-flow article {
    border-bottom: 1px solid #cad4df;
    padding: 22px 0;
  }

  .care-flow article::before {
    display: none;
  }

  .route-map {
    min-height: 320px;
  }

  .learning-path article {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .learning-path article p {
    grid-column: auto;
  }

  .resource-panel,
  .pricing-matrix,
  .pricing-note {
    padding: 52px 18px;
  }

  .resource-copy h2,
  .blog-feature h2,
  .guide-download h2,
  .pricing-matrix h2,
  .pricing-note h2,
  .project-brief h2,
  .press-room h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1;
  }

  .resource-copy p,
  .blog-feature p,
  .guide-download p,
  .pricing-note p,
  .project-brief p,
  .press-room p {
    font-size: 16px;
  }

  .blog-ledger a {
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) 34px;
  }

  .blog-ledger a > span {
    grid-column: 1 / -1;
  }

  .blog-lanes,
  .faq-paths,
  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-row.header {
    display: none;
  }

  .guide-download {
    min-height: auto;
    padding: 24px;
  }

  .guide-stack article,
  .project-steps li {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .faq-hub,
  .press-room {
    gap: 34px;
  }
}

@media (max-width: 420px) {
  .custom-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .custom-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .custom-actions {
    gap: 10px;
  }

  .custom-actions .button {
    flex-basis: 100%;
    max-width: 260px;
  }

  .custom-manifest,
  .custom-traits,
  .custom-stack,
  .custom-proof,
  .custom-process,
  .custom-industries,
  .custom-faq {
    padding-left: 14px;
    padding-right: 14px;
  }

  .custom-cta {
    margin-left: 14px;
    margin-right: 14px;
    padding: 22px;
  }

  .info-hero,
  .info-section,
  .info-feature {
    padding-left: 14px;
    padding-right: 14px;
  }

  .info-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .info-actions {
    gap: 10px;
  }

  .info-actions .button {
    flex-basis: 100%;
    max-width: 260px;
  }

  .info-cta {
    margin-left: 14px;
    margin-right: 14px;
    padding: 22px;
  }
}

@media (max-width: 1120px) {
  .loop-grid {
    grid-template-areas:
      "feature"
      "list"
      "card-a"
      "card-b";
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .loop-feature {
    min-height: min(86vw, 560px);
  }

  .media-card {
    grid-template-rows: min(52vw, 260px) auto;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .loop {
    padding: 78px 14px 96px;
  }

  .loop-head .eyebrow {
    margin-bottom: 18px;
  }

  .loop h2 {
    font-size: clamp(38px, 12vw, 54px);
    margin-bottom: 22px;
  }

  .loop p {
    font-size: 16px;
    line-height: 1.28;
    margin-inline: auto;
    max-width: 30ch;
  }

  .loop-grid {
    gap: 14px;
    margin-top: 38px;
  }

  .loop-feature {
    min-height: 520px;
  }

  .loop-feature-copy {
    padding: 20px;
  }

  .loop-feature-copy h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .featured-list {
    padding: 18px;
  }

  .featured-list a {
    min-height: 56px;
  }

  .media-card {
    grid-template-rows: 220px auto;
  }

  .media-card div {
    padding: 16px;
  }

  .media-card h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }
}

@media (max-width: 760px) {
  .partner-gallery {
    padding: 68px 0 82px;
  }

  .partner-gallery-head {
    margin-bottom: 42px;
  }

  .partner-gallery h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .partner-gallery p {
    font-size: 15px;
    max-width: 32ch;
  }

  .partner-showcase {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 0 14px;
  }

  .partner-spotlight,
  .partner-side-panel figure {
    border-radius: 8px;
  }

  .partner-side-panel {
    gap: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .partner-side-panel figure {
    aspect-ratio: 1 / 1;
  }

  .partner-rail {
    margin-top: 16px;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .partner-rail-track {
    animation-duration: 34s;
    gap: 10px;
  }

  .partner-rail img {
    border-radius: 8px;
    height: 88px;
    width: 124px;
  }

  .partner-photo-marquee {
    gap: 12px;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .partner-photo-track,
  .partner-photo-set {
    gap: 12px;
  }

  .partner-shot {
    border-radius: 8px;
    height: 168px;
    width: 168px;
  }

  .partner-shot.slim {
    width: 112px;
  }

  .partner-shot.wide {
    width: 232px;
  }

  .partner-photo-track {
    animation-duration: 38s;
  }

  .partner-photo-row.reverse .partner-photo-track {
    animation-duration: 44s;
  }
}

@media (max-width: 1120px) {
  .loop-grid {
    grid-template-areas:
      "list"
      "card-a"
      "card-b";
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .loop {
    padding: 86px 14px 98px;
  }

  .loop h2 {
    font-size: clamp(44px, 13vw, 62px);
    margin-bottom: 22px;
    white-space: normal;
  }

  .loop p {
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.22;
    max-width: 34ch;
  }

  .loop p span {
    height: 13px;
    margin-top: 3px;
    width: 13px;
  }

  .loop-grid {
    gap: 12px;
    margin-top: 42px;
  }

  .featured-list {
    min-height: auto;
  }

  .featured-list > span {
    font-size: 13px;
  }

  .featured-list a {
    grid-template-columns: 62px minmax(0, 1fr) 32px;
    min-height: 86px;
    padding: 12px;
  }

  .featured-list a img {
    height: 62px;
    width: 62px;
  }

  .featured-list a strong {
    font-size: 15px;
  }

  .media-card {
    min-height: auto;
  }

  .media-card img {
    min-height: 250px;
  }
}
