: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;
}

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;
  height: 64px;
  justify-content: space-between;
  margin: 0;
  padding: 0 28px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 25px;
  font-weight: 700;
  gap: 0;
  letter-spacing: -.01em;
  min-width: 150px;
  white-space: nowrap;
}

.brand-logo {
  display: inline-block;
  flex: 0 0 auto;
  height: 30px;
  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) {
  margin-left: -11px;
}

.footer-logo {
  height: 54px;
  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;
  gap: 8px;
  height: 44px;
  padding: 0;
}

.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);
}

.plus {
  background: #2e333b;
  display: inline-block;
  height: 26px;
  position: relative;
  transition: background-color .12s ease, transform .12s ease;
  width: 26px;
}

.plus::before,
.plus::after {
  background: #9ea7b4;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.plus::before {
  height: 12px;
  width: 2px;
}

.plus::after {
  height: 2px;
  width: 12px;
}

.nav-trigger.active .plus,
.primary-nav-button.active {
  background: var(--blue);
}

.nav-trigger.active .plus::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-trigger.active .plus::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.primary-nav-button {
  background: var(--blue);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  height: 40px;
  padding: 0 18px;
}

.mobile-menu-button {
  background: transparent;
  border: 1px solid #303843;
  cursor: pointer;
  display: none;
  height: 36px;
  position: relative;
  width: 36px;
}

.mobile-menu-button span {
  background: #fff;
  display: block;
  height: 2px;
  left: 8px;
  position: absolute;
  width: 18px;
}

.mobile-menu-button span:first-child {
  top: 13px;
}

.mobile-menu-button span:last-child {
  top: 21px;
}

.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 {
  grid-template-columns: 1fr;
  left: auto;
  max-width: 320px;
  right: 20px;
  transform: translateY(-8px);
  width: min(320px, calc(100vw - 40px));
}

.get-started-panel.active {
  transform: translateY(0);
}

.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;
}

.icon-spark::before {
  border: 2px solid currentColor;
  height: 11px;
  left: 6px;
  top: 6px;
  transform: rotate(45deg);
  width: 11px;
}

.icon-spark::after {
  background: currentColor;
  height: 2px;
  left: 0;
  top: 11px;
  width: 24px;
}

.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;
}

.icon-tool::before {
  border: 2px solid currentColor;
  height: 14px;
  left: 10px;
  top: 2px;
  transform: rotate(45deg);
  width: 5px;
}

.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: center;
  background:
    radial-gradient(circle at 50% 56%, 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: 18%;
  width: 86vmin;
}

.hero-title {
  align-items: center;
  display: inline-flex;
  gap: .12em;
  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: -42px;
  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;
}

/* 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 {
  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:hover {
  color: var(--blue);
  transform: translateY(-3px);
}

.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: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 {
  padding: 80px 20px 120px;
}

.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: 36px 20px 180px;
}

.traits-kicker {
  display: grid;
  font-family: var(--mono);
  font-size: 14px;
  grid-template-columns: minmax(160px, 1fr) minmax(260px, 820px) minmax(0, 1fr);
  margin-bottom: 26px;
}

.traits-kicker span {
  background: #e8ebef;
  justify-self: start;
  padding: 4px 8px;
}

.trait-list {
  margin-left: auto;
  margin-right: 20px;
  max-width: 1120px;
}

.trait-item {
  align-items: center;
  border-bottom: 2px dotted #b6c2d1;
  display: flex;
  font-size: clamp(38px, 4vw, 58px);
  justify-content: space-between;
  opacity: 0;
  padding: 24px 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.2, .8, .2, 1), transform .55s cubic-bezier(.2, .8, .2, 1);
}

.trait-item.in {
  opacity: 1;
  transform: none;
}

.trait-item i {
  align-items: center;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 18px;
  font-style: normal;
  height: 64px;
  justify-content: center;
  width: 64px;
  transition: opacity .55s ease .1s, transform .55s cubic-bezier(.2, .8, .2, 1) .1s;
}

/* the blue index badge slides in just after its row appears */
.trait-item:not(.in) i {
  opacity: 0;
  transform: translateX(18px);
}

.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;
}

.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: 160px;
}

.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: 20px;
  list-style: none;
  margin: 78px 0 28px;
  padding: 0;
}

.industry-grid li {
  font-size: 20px;
  font-weight: 700;
}

.industry-grid li::before {
  color: var(--blue);
  content: "└";
  margin-right: 8px;
}

.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;
}

.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 a::before {
  content: "└ ";
}

.footer small {
  color: #7f8a9a;
  display: block;
  font-family: var(--mono);
  margin-top: 80px;
}

.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 58%, rgba(255, 255, 255, .28) 98%);
  -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 55%, rgba(255, 255, 255, .52) 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 58%, rgba(255, 255, 255, .42) 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-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-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/deepsurge/hero-wave.webp") 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/deepsurge/about-wave.webp") 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 {
  color: #9ea7b4;
  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-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-sponsor-layout,
  .ds-newsletter {
    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: 1fr 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: 1000px) {
  .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;
    justify-content: flex-start;
    min-height: 600px;
    padding-top: 116px;
  }

  .hero-title {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    margin-top: clamp(72px, 14svh, 130px);
    min-height: auto;
    top: 0;
    width: min(100%, calc(100vw - 32px));
  }

  /* tagline + buttons flow below the title (centre-low), not pinned to the bottom */
  .hero-copy {
    bottom: auto;
    left: auto;
    margin: clamp(90px, 22svh, 220px) auto 0;
    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;
  }

  .traits-kicker {
    display: block;
  }

  .trait-list {
    margin: 0;
  }

  .trait-item {
    font-size: 36px;
    gap: 18px;
  }

  .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;
  }

  .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) {
  .navbar {
    padding: 0 12px;
  }

  .navbar .brand,
  .mobile-menu-header .brand {
    font-size: 25px;
    min-width: 0;
    padding: 0;
  }

  .navbar .brand-logo,
  .mobile-menu-header .brand-logo {
    height: 28px;
    width: auto;
  }

  .hero-copy {
    bottom: 44px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .hero-copy p {
    font-size: 18px;
    max-width: 315px;
  }

  .button {
    font-size: 14px;
    height: 44px;
    padding: 0 16px;
  }

  .partners-head p {
    font-size: 20px;
  }

  .brand-marquee .brand {
    gap: 10px;
    padding: 0 26px;
  }

  .brand-marquee .brand b {
    font-size: 21px;
  }

  .brand-marquee .brand .p-icon {
    transform: scale(.82);
  }

  .manifesto {
    padding-top: 60px;
  }

  .manifesto h1 {
    font-size: 42px;
  }

  .trait-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .stack-scene {
    min-height: auto;
    padding: 96px 12px;
  }

  .stack-heading {
    margin-bottom: 120px;
  }

  .stack-heading h2,
  .industry-heading h2,
  .loop h2 {
    font-size: 52px;
  }

  .stack-card {
    min-height: 360px;
  }

  .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;
  }

  .manifesto h1 {
    font-size: 34px;
  }

  .trait-item {
    font-size: 30px;
  }

  .stack-heading h2,
  .industry-heading h2,
  .loop h2 {
    font-size: 42px;
  }

  .benefit-column h2 {
    font-size: 38px;
  }

  .start-paths strong {
    font-size: 40px;
  }
}

@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 7s ease-in-out 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 {
  left: 30px;
  top: 39px;
  transform: translateZ(-6px) rotate(29deg);
  width: 58px;
}

.cyber-security .cl2 {
  left: 93px;
  top: 58px;
  transform: translateZ(-6px) rotate(-33deg);
  width: 52px;
}

.cyber-security .cl3 {
  left: 30px;
  top: 94px;
  transform: translateZ(-6px) rotate(-29deg);
  width: 61px;
}

.cyber-security .cl4 {
  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 {
  animation: cyberNodePulse 2.3s ease-in-out infinite;
  left: 22px;
  top: 31px;
}

.cyber-security .cn2 {
  animation: cyberNodePulse 2.3s ease-in-out .45s infinite;
  right: 22px;
  top: 27px;
}

.cyber-security .cn3 {
  animation: cyberNodePulse 2.3s ease-in-out .9s infinite;
  bottom: 22px;
  left: 24px;
}

.cyber-security .cn4 {
  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 {
  border: 1px solid rgba(120, 189, 255, .36);
  border-radius: 50% 50% 14px 14px;
  bottom: 17px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 15px;
  transform: translateZ(8px);
  z-index: 1;
}

.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(-18deg) translateY(-5px); }
  50%      { transform: rotateX(18deg) rotateY(-10deg) translateY(5px); }
}

@keyframes cyberNodePulse {
  0%, 100% { opacity: .62; transform: translateZ(12px) scale(.82); }
  50%      { opacity: 1; transform: translateZ(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 { transform: translateZ(-36px) translate(-16px, 18px); }
.layers .p2 { transform: translateZ(0) translate(4px, -2px); border-color: #41566a; background: #121a22; }

.layers .p3 {
  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);
}

.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 {
  border-bottom: 9px solid transparent;
  border-left: 9px solid #fff;
  height: 0;
  left: 64%;
  position: absolute;
  top: 58%;
  transform: translateZ(56px) rotate(-14deg);
  width: 0;
}

/* 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 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes cloudFloat {
  0%, 100% { transform: translateY(-6px) rotateY(-12deg); }
  50%      { transform: translateY(6px)  rotateY(12deg); }
}

/* clean cloud silhouette facing the viewer */
.cloud3d .cloud {
  background: linear-gradient(165deg, #eaf4ff 0%, #9cc8ff 55%, #5aa2f5 100%);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(47, 145, 255, .4), 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;
  }
}
