:root {
  color-scheme: dark;
  --bg: #02050a;
  --bg-soft: #050913;
  --panel: rgba(7, 13, 24, 0.86);
  --panel-soft: rgba(9, 17, 31, 0.72);
  --text: #f6f8fb;
  --muted: #a6afbf;
  --subtle: #6f788a;
  --line: rgba(127, 157, 204, 0.22);
  --line-strong: rgba(52, 147, 255, 0.76);
  --blue: #1583ff;
  --blue-soft: #58b2ff;
  --cyan: #40d6ff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body.ms-home {
  margin: 0;
  background:
    radial-gradient(circle at 76% 12%, rgba(16, 116, 245, 0.18), transparent 34%),
    linear-gradient(180deg, #02050a 0%, #050915 52%, #02050a 100%);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 280px 1fr minmax(520px, auto);
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 0 40px;
  background: rgba(2, 5, 10, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.system-links,
.lang-switch,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 760;
  line-height: 1;
}

.brand-mark {
  display: none;
}

.main-nav {
  justify-content: center;
  gap: 42px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.main-nav a,
.system-link,
.lang-switch a,
.nav-cta,
.btn,
.content-card,
.company-entity,
.feature-card,
.visual-section,
.contact-channel,
.visual-node,
.team-mini-list a,
.text-link {
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.main-nav a:hover,
.main-nav a.active,
.system-link:hover,
.lang-switch a:hover,
.lang-switch a.active {
  color: #fff;
}

.header-actions {
  justify-content: flex-end;
  gap: 16px;
}

.system-links {
  justify-content: flex-end;
  gap: 8px;
}

.system-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(74, 163, 255, 0.26);
  border-radius: 8px;
  color: rgba(246, 248, 251, 0.78);
  background: rgba(6, 16, 31, 0.54);
  font-size: 13px;
  font-weight: 680;
  line-height: 1;
  white-space: nowrap;
}

.system-link:hover {
  border-color: rgba(88, 214, 255, 0.58);
  background: rgba(12, 29, 55, 0.72);
  box-shadow: 0 0 0 1px rgba(88, 214, 255, 0.08) inset;
  transform: translateY(-1px);
}

.system-link em,
.footer-system-links em {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  color: #9edcff;
  background: rgba(21, 131, 255, 0.16);
  font-size: 10px;
  font-style: normal;
  font-weight: 760;
  line-height: 1;
}

.lang-switch {
  gap: 0;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(127, 157, 204, 0.16);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
}

.lang-switch a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  line-height: 1;
}

.lang-switch a:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
}

.lang-switch a:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-50%);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 178px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--blue-soft);
  font-weight: 650;
  white-space: nowrap;
}

.nav-cta:hover,
.btn:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(620px, 1.38fr);
  gap: 56px;
  align-items: center;
  min-height: 510px;
  padding: 28px 40px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.js-enhanced .ms-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.56s ease,
    transform 0.56s ease;
  transition-delay: var(--ms-reveal-delay, 0ms);
}

.js-enhanced .ms-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-compact {
  grid-template-columns: minmax(0, 720px) minmax(380px, 1fr);
  min-height: 340px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.section-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 260px;
  border: 1px solid rgba(74, 163, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 48% 42%, rgba(21, 131, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(8, 20, 39, 0.2), rgba(4, 9, 18, 0.58));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.section-hero-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(88, 178, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 178, 255, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: 0.36;
}

.section-hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 5, 10, 0.92), transparent 34%, rgba(2, 5, 10, 0.1));
  content: "";
}

.section-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  filter: saturate(1.15) contrast(1.08);
  object-fit: cover;
}

.section-hero-visual.has-media img {
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
}

.section-hero-map {
  position: absolute;
  inset: 12% 10%;
  z-index: 2;
}

.section-hero-map::before,
.section-hero-map::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.section-hero-map::before {
  inset: 14% 8%;
  border: 1px solid rgba(64, 214, 255, 0.22);
  border-radius: 999px;
}

.section-hero-map::after {
  top: 50%;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 178, 255, 0.58), transparent);
}

.section-hero-map span {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(88, 178, 255, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 29, 55, 0.9), rgba(4, 9, 18, 0.72)), rgba(3, 9, 18, 0.72);
  box-shadow:
    0 0 0 1px rgba(88, 214, 255, 0.06) inset,
    0 0 28px rgba(21, 131, 255, 0.22);
}

.section-hero-map span::before {
  position: absolute;
  inset: 18px;
  border: 2px solid var(--blue-soft);
  border-radius: 4px;
  content: "";
}

.section-hero-map span:nth-child(1) {
  top: 12%;
  left: 18%;
}

.section-hero-map span:nth-child(2) {
  top: 36%;
  left: 42%;
  width: 72px;
  height: 72px;
}

.section-hero-map span:nth-child(3) {
  top: 14%;
  right: 18%;
}

.section-hero-map span:nth-child(4) {
  bottom: 12%;
  left: 28%;
}

.section-hero-map span:nth-child(5) {
  right: 26%;
  bottom: 14%;
}

.section-hero-visual-team .section-hero-map span {
  border-radius: 999px;
}

.section-hero-visual-team .section-hero-map span::before {
  inset: 15px 17px 19px;
  border-radius: 999px 999px 8px 8px;
}

.section-hero-visual-resources .section-hero-map span::before {
  inset: 14px 17px;
  border-top: 2px solid var(--blue-soft);
  border-right: 0;
  border-bottom: 2px solid var(--blue-soft);
  border-left: 0;
  border-radius: 0;
}

.section-hero-visual-contact .section-hero-map span:nth-child(2) {
  border-radius: 999px;
}

.section-hero-visual-contact .section-hero-map span::before {
  border-radius: 999px;
}

.eyebrow,
.section-heading > p:first-child,
.content-card span,
.signal-card span {
  margin: 0 0 24px;
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 26px;
  color: #fff;
  font-size: 64px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 28px;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.24;
}

.hero-summary {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 188px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--blue-soft);
  font-size: 17px;
  font-weight: 680;
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #138bff, #0a55ff);
  color: #fff;
  box-shadow: 0 18px 42px rgba(13, 83, 255, 0.34);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.01);
}

.architecture-visual {
  position: relative;
  min-height: 452px;
}

.architecture-panel {
  position: relative;
  height: 452px;
  border: 1px solid rgba(127, 157, 204, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(21, 131, 255, 0.22), transparent 29%),
    rgba(3, 9, 18, 0.72);
  overflow: hidden;
}

.architecture-flow {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.architecture-flow .flow-link {
  fill: none;
  stroke: rgba(91, 181, 255, 0.46);
  stroke-dasharray: 6 12;
  stroke-linecap: round;
  stroke-width: 1.4;
  opacity: 0.86;
  animation: ms-flow-dash 10s linear infinite;
}

.architecture-flow .flow-link.is-active {
  stroke: rgba(88, 214, 255, 0.92);
  stroke-width: 2.1;
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(64, 214, 255, 0.7));
}

.architecture-flow .flow-packet {
  fill: var(--cyan);
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(64, 214, 255, 0.72));
}

.architecture-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.architecture-panel.has-art {
  background: #020812;
}

.architecture-panel.has-art .architecture-art {
  transform: translate3d(var(--ms-parallax-x, 0), var(--ms-parallax-y, 0), 0) scale(1.035);
  transition: transform 0.18s ease-out;
}

.architecture-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(127, 157, 204, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 157, 204, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.9;
}

.architecture-panel::before,
.architecture-panel::after {
  content: "";
  position: absolute;
  inset: 64px 108px;
  border: 1px solid rgba(38, 127, 255, 0.2);
  border-radius: 50%;
}

.architecture-panel::after {
  inset: 108px 204px;
  border-color: rgba(64, 214, 255, 0.18);
}

.architecture-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 164px;
  height: 116px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 116, 255, 0.28), rgba(5, 20, 45, 0.82)), var(--panel);
  box-shadow:
    0 0 0 1px rgba(64, 214, 255, 0.2) inset,
    0 0 34px rgba(21, 131, 255, 0.46);
  transform: translate(-50%, -50%) rotate(45deg);
}

.architecture-core::before,
.architecture-core::after {
  content: "";
  position: absolute;
  background: var(--blue);
  box-shadow: 0 0 22px rgba(21, 131, 255, 0.72);
}

.architecture-core::before {
  top: -102px;
  left: 50%;
  width: 2px;
  height: 102px;
}

.architecture-core::after {
  right: -110px;
  top: 50%;
  width: 110px;
  height: 2px;
}

.architecture-core strong {
  width: 124px;
  color: var(--blue-soft);
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

.architecture-core-content {
  display: grid;
  gap: 6px;
  justify-items: center;
  transform: rotate(-45deg);
}

.architecture-core-content small {
  width: 132px;
  color: rgba(246, 248, 251, 0.78);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: center;
}

.core-glyph {
  display: none;
}

.architecture-nodes {
  position: absolute;
  z-index: 4;
  inset: 0;
}

.architecture-node {
  position: absolute;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  width: 220px;
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(127, 157, 204, 0.48);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 24, 43, 0.94), rgba(6, 13, 25, 0.9));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.architecture-node strong {
  color: #fff;
  font-size: 16px;
}

.architecture-node p {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.38;
}

.node-icon {
  position: relative;
  grid-row: 1 / span 2;
  display: block;
  width: 28px;
  height: 28px;
  color: var(--blue-soft);
}

.node-icon::before,
.node-icon::after {
  position: absolute;
  content: "";
}

.node-workspace .node-icon::before {
  left: 2px;
  bottom: 3px;
  width: 24px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.node-workspace .node-icon::after {
  left: 4px;
  top: 3px;
  width: 10px;
  height: 6px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.node-runtime .node-icon::before {
  left: 4px;
  top: 4px;
  width: 20px;
  height: 20px;
  background:
    linear-gradient(135deg, transparent 39%, currentColor 40%, currentColor 48%, transparent 49%),
    linear-gradient(45deg, transparent 39%, currentColor 40%, currentColor 48%, transparent 49%);
  transform: rotate(45deg);
}

.node-runtime .node-icon::after {
  left: 6px;
  top: 12px;
  width: 16px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.node-execution .node-icon::before {
  left: 3px;
  top: 5px;
  width: 22px;
  height: 18px;
  border-left: 2px solid currentColor;
}

.node-execution .node-icon::after {
  left: 8px;
  top: 5px;
  width: 17px;
  height: 18px;
  background:
    linear-gradient(currentColor, currentColor) 0 2px / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 9px / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 16px / 100% 2px no-repeat;
}

.node-publish .node-icon::before {
  left: 6px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(35deg);
}

.node-publish .node-icon::after {
  left: 4px;
  top: 18px;
  width: 22px;
  height: 2px;
  background: currentColor;
  transform: rotate(-28deg);
}

.node-governance .node-icon::before {
  left: 5px;
  top: 2px;
  width: 18px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 4px;
  clip-path: polygon(50% 0, 100% 18%, 90% 72%, 50% 100%, 10% 72%, 0 18%);
}

.node-governance .node-icon::after {
  left: 11px;
  top: 9px;
  width: 8px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.node-observability .node-icon::before {
  left: 4px;
  bottom: 4px;
  width: 4px;
  height: 10px;
  background: currentColor;
  box-shadow:
    8px -6px 0 currentColor,
    16px -12px 0 currentColor;
}

.node-observability .node-icon::after {
  left: 2px;
  bottom: 3px;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.node-workspace {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.node-runtime {
  top: 146px;
  left: 18px;
}

.node-execution {
  top: 194px;
  right: 100px;
}

.node-publish {
  top: 96px;
  right: 22px;
}

.node-governance {
  right: 22px;
  bottom: 48px;
}

.node-observability {
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}

.architecture-panel.has-art .architecture-grid,
.architecture-panel.has-art::before,
.architecture-panel.has-art::after,
.architecture-panel.has-art .architecture-core::before,
.architecture-panel.has-art .architecture-core::after {
  display: none;
}

.architecture-panel.has-art .architecture-core {
  width: 238px;
  height: 96px;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.architecture-panel.has-art .architecture-core-content {
  min-width: 178px;
  padding: 14px 20px;
  border: 1px solid rgba(74, 163, 255, 0.44);
  border-radius: 8px;
  background: rgba(3, 13, 29, 0.42);
  box-shadow: 0 0 34px rgba(21, 131, 255, 0.24);
  backdrop-filter: blur(8px);
  transform: none;
}

.architecture-panel.has-art .architecture-node {
  border-color: rgba(127, 183, 255, 0.46);
  background: linear-gradient(180deg, rgba(9, 18, 34, 0.82), rgba(5, 11, 22, 0.72));
  backdrop-filter: blur(10px);
}

.architecture-panel.is-interactive .architecture-core-content,
.architecture-panel.is-interactive .architecture-node {
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    filter 0.18s ease,
    transform 0.18s ease;
}

.architecture-panel.is-interactive .architecture-node {
  cursor: default;
}

.architecture-panel.is-interactive .architecture-core-content,
.architecture-panel.is-interactive .architecture-node.is-active,
.architecture-panel.is-interactive .architecture-node:hover {
  border-color: rgba(88, 214, 255, 0.82);
  box-shadow:
    0 0 0 1px rgba(88, 214, 255, 0.16) inset,
    0 16px 40px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(21, 131, 255, 0.24);
}

.architecture-panel.is-interactive .architecture-node.is-active {
  background: linear-gradient(180deg, rgba(14, 40, 72, 0.9), rgba(6, 16, 32, 0.78));
}

@keyframes ms-flow-dash {
  to {
    stroke-dashoffset: -108;
  }
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  min-height: 126px;
  padding: 30px 8vw 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.feature-card > *,
.content-card > *,
.team-mini-list a > *,
.company-entity > * {
  position: relative;
  z-index: 1;
}

.feature-card::before,
.content-card::before,
.team-mini-list a::before,
.company-entity::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 36%,
    rgba(64, 214, 255, 0.14) 50%,
    transparent 64%,
    transparent 100%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-80%);
  transition:
    opacity 0.2s ease,
    transform 0.52s ease;
}

.feature-card:hover::before,
.feature-card.is-active::before,
.content-card:hover::before,
.team-mini-list a:hover::before,
.company-entity:hover::before {
  opacity: 1;
  transform: translateX(80%);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card:hover,
.feature-card.is-active,
.content-card:hover,
.team-mini-list a:hover {
  background: rgba(12, 29, 55, 0.62);
}

.feature-card.is-active {
  box-shadow:
    inset 0 1px 0 rgba(88, 214, 255, 0.28),
    inset 0 -1px 0 rgba(88, 214, 255, 0.18);
}

.feature-icon {
  position: relative;
  grid-row: 1 / span 2;
  align-self: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--blue-soft);
  border-radius: 8px;
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.feature-connect .feature-icon::before,
.feature-aaas .feature-icon::before {
  left: 9px;
  top: 14px;
  width: 16px;
  height: 10px;
  border: 2px solid var(--blue-soft);
  border-radius: 10px;
  transform: rotate(-36deg);
}

.feature-connect .feature-icon::after,
.feature-aaas .feature-icon::after {
  right: 9px;
  bottom: 14px;
  width: 16px;
  height: 10px;
  border: 2px solid var(--blue-soft);
  border-radius: 10px;
  transform: rotate(-36deg);
}

.feature-govern .feature-icon::before,
.feature-scap .feature-icon::before {
  left: 12px;
  top: 8px;
  width: 22px;
  height: 28px;
  border: 2px solid var(--blue-soft);
  clip-path: polygon(50% 0, 100% 18%, 88% 72%, 50% 100%, 12% 72%, 0 18%);
}

.feature-govern .feature-icon::after,
.feature-scap .feature-icon::after {
  left: 19px;
  top: 19px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blue-soft);
  border-bottom: 2px solid var(--blue-soft);
  transform: rotate(-45deg);
}

.feature-deliver .feature-icon::before,
.feature-resources .feature-icon::before {
  left: 16px;
  top: 13px;
  width: 17px;
  height: 17px;
  border-top: 2px solid var(--blue-soft);
  border-right: 2px solid var(--blue-soft);
  transform: rotate(35deg);
}

.feature-deliver .feature-icon::after,
.feature-resources .feature-icon::after {
  left: 12px;
  top: 29px;
  width: 27px;
  height: 2px;
  background: var(--blue-soft);
  transform: rotate(-28deg);
}

.feature-card h2 {
  margin-bottom: 6px;
  font-size: 22px;
}

.feature-card p,
.section-heading p,
.content-card p,
.signal-card p,
.content-main p,
.content-main li,
.line-list span,
.proof-copy p,
.team-strip p,
.metric span,
.team-mini-copy > span {
  color: var(--muted);
  line-height: 1.62;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) 1.5fr;
  gap: 42px;
  align-items: center;
  padding: 36px 104px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-copy {
  max-width: 430px;
}

.proof-copy h2 {
  font-size: 24px;
}

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

.metric {
  min-height: 72px;
  padding: 0 44px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-soft);
  font-size: 42px;
  font-weight: 520;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.metric span {
  font-size: 14px;
}

.company-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 42px;
  padding: 52px 104px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(9, 23, 43, 0.92), rgba(3, 8, 17, 0.94));
}

.company-copy {
  max-width: 500px;
}

.company-copy h2,
.visual-head h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 28px;
  line-height: 1.22;
}

.company-copy p:not(.eyebrow),
.visual-head p:not(.eyebrow),
.company-entity p,
.visual-node p {
  color: var(--muted);
  line-height: 1.62;
}

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

.company-entity {
  position: relative;
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 12, 24, 0.76);
  overflow: hidden;
}

.company-entity:hover,
.visual-node:hover {
  border-color: rgba(88, 214, 255, 0.56);
  box-shadow:
    0 0 0 1px rgba(88, 214, 255, 0.08) inset,
    0 16px 34px rgba(0, 0, 0, 0.2);
}

.company-entity span,
.visual-node em {
  display: block;
  color: var(--blue-soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-entity strong {
  display: block;
  margin: 10px 0 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.company-entity em {
  display: block;
  margin-top: 14px;
  color: rgba(246, 248, 251, 0.72);
  font-size: 13px;
  font-style: normal;
}

.service-scene-grid {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}

.service-scene-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(74, 163, 255, 0.34);
  border-radius: 8px;
  color: rgba(246, 248, 251, 0.86);
  background: rgba(9, 20, 38, 0.72);
  font-size: 13px;
  font-weight: 620;
}

.visual-band {
  display: grid;
  gap: 26px;
  padding: 56px 104px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-stack {
  display: grid;
  gap: 24px;
  margin: 34px 0;
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(9, 19, 39, 0.86), rgba(4, 9, 18, 0.72));
}

.visual-section:hover {
  border-color: rgba(88, 214, 255, 0.48);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.visual-stack .visual-section {
  grid-template-columns: 1fr;
}

.content-main.has-visuals .visual-stack .visual-section,
.listing-band .visual-stack .visual-section {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  background:
    radial-gradient(circle at 72% 20%, rgba(21, 131, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(9, 19, 39, 0.88), rgba(4, 9, 18, 0.74));
}

.content-main.has-visuals .visual-stack .visual-with-image .visual-figure,
.listing-band .visual-stack .visual-with-image .visual-figure {
  min-height: 300px;
}

.content-main.has-visuals .visual-stack .visual-with-image .visual-figure img,
.listing-band .visual-stack .visual-with-image .visual-figure img {
  min-height: 300px;
}

.visual-head {
  align-self: center;
}

.visual-figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  border: 1px solid rgba(74, 163, 255, 0.26);
  border-radius: 8px;
  background: rgba(1, 6, 13, 0.82);
  overflow: hidden;
}

.visual-figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.visual-with-image .visual-grid {
  grid-column: 1 / -1;
}

.visual-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.visual-node {
  position: relative;
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(127, 157, 204, 0.24);
  border-radius: 8px;
  background: rgba(3, 9, 18, 0.74);
  overflow: hidden;
}

.visual-node::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(64, 214, 255, 0));
  content: "";
}

.visual-node-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid rgba(74, 163, 255, 0.42);
  border-radius: 8px;
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 760;
}

.visual-node strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.visual-node p {
  margin-bottom: 12px;
  font-size: 14px;
}

.visual-flow .visual-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visual-flow .visual-node::after {
  position: absolute;
  top: 34px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(64, 214, 255, 0.56);
  border-right: 1px solid rgba(64, 214, 255, 0.56);
  content: "";
  transform: rotate(45deg);
}

.visual-flow .visual-node:last-child::after {
  display: none;
}

.visual-matrix .visual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-strip {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr) minmax(132px, 150px);
  gap: 28px;
  align-items: center;
  padding: 30px clamp(56px, 6vw, 104px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.team-strip-intro h2 {
  margin-bottom: 8px;
  font-size: 20px;
}

.team-strip-intro p {
  margin-bottom: 0;
  font-size: 14px;
}

.team-mini-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-mini-list a {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 0 clamp(14px, 1.2vw, 20px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.team-mini-avatar {
  display: block;
  width: 48px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(74, 163, 255, 0.34);
  border-radius: 8px;
  background: rgba(3, 9, 18, 0.82);
  overflow: hidden;
}

.team-mini-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-mini-avatar.empty::before {
  display: block;
  width: 18px;
  height: 18px;
  margin: 14px auto;
  border: 2px solid rgba(151, 199, 255, 0.56);
  border-radius: 50%;
  content: "";
}

.team-mini-copy {
  display: block;
  min-width: 0;
}

.team-mini-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-mini-copy > span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--blue-soft);
  font-size: 15px;
}

.band {
  padding: 74px 104px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading > p:not(:first-child) {
  font-size: 18px;
}

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

.signal-card,
.content-card,
.empty-state {
  min-height: 224px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(9, 19, 39, 0.92), rgba(4, 9, 18, 0.78));
}

.content-card {
  position: relative;
  overflow: hidden;
}

.resources-band {
  padding-top: 64px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 46px 104px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(12, 29, 55, 0.92), rgba(4, 10, 20, 0.92)), var(--bg-soft);
}

.cta-copy {
  max-width: 760px;
}

.cta-copy h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.cta-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card-avatar {
  width: 96px;
  aspect-ratio: 1 / 1;
  margin-bottom: 24px;
  border: 1px solid rgba(74, 163, 255, 0.36);
  border-radius: 8px;
  background: rgba(3, 9, 18, 0.88);
  overflow: hidden;
}

.team-card-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card:hover .team-card-avatar {
  border-color: var(--line-strong);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: start;
}

.line-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.line-list a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.line-list strong {
  color: #fff;
}

.listing-band {
  padding-top: 54px;
  background:
    radial-gradient(circle at 16% 0%, rgba(64, 214, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(3, 8, 17, 0.94), rgba(2, 5, 10, 0.96));
}

.listing-band .section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(280px, 0.58fr);
  gap: 12px 34px;
  align-items: end;
  max-width: none;
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.listing-band .section-heading > p:first-child {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.listing-band .section-heading h2 {
  margin-bottom: 0;
  font-size: 36px;
}

.listing-band .section-heading > p:not(:first-child) {
  margin-bottom: 0;
  font-size: 17px;
}

.listing-band .visual-stack {
  margin: 32px 0 0;
}

.listing-band .content-card {
  min-height: 246px;
}

.listing-section-team .card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.listing-section-team .content-card {
  min-height: 286px;
}

.listing-section-team .team-card-avatar {
  width: 112px;
  margin-bottom: 20px;
}

.content-band {
  display: flex;
  justify-content: center;
  padding-top: 54px;
  background:
    radial-gradient(circle at 50% 0%, rgba(21, 131, 255, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(3, 8, 17, 0.92), rgba(2, 5, 10, 0.98));
}

.content-main {
  position: relative;
  width: min(920px, 100%);
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(64, 214, 255, 0.1), transparent 28%),
    rgba(8, 17, 34, 0.92);
  overflow: hidden;
}

.content-main::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 178, 255, 0.7), transparent);
  content: "";
}

.content-main > * {
  position: relative;
  z-index: 1;
}

.content-main.has-visuals {
  width: min(1160px, 100%);
  padding: 42px;
}

.content-main.has-visuals > p:first-of-type {
  max-width: 800px;
  color: rgba(246, 248, 251, 0.86);
  font-size: 18px;
}

.content-main.has-visuals .visual-stack {
  margin-bottom: 0;
}

.detail-section-contact .content-main {
  width: min(980px, 100%);
  background:
    radial-gradient(circle at 78% 12%, rgba(64, 214, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(9, 19, 39, 0.9), rgba(4, 9, 18, 0.8));
}

.team-detail-head {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.team-detail-head .detail-meta {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.team-detail-avatar {
  width: 168px;
  aspect-ratio: 1 / 1;
  margin: 0;
  border: 1px solid rgba(74, 163, 255, 0.42);
  border-radius: 8px;
  background: rgba(3, 9, 18, 0.88);
  overflow: hidden;
}

.team-detail-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-main h2 {
  margin: 42px 0 16px;
  font-size: 26px;
}

.content-main ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.contact-channel {
  display: grid;
  gap: 12px;
  margin: 32px 0 8px;
  padding: 24px;
  border: 1px solid rgba(74, 163, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(14, 41, 78, 0.78), rgba(4, 11, 23, 0.84));
}

.content-main.has-contact-channel .contact-channel {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  margin-top: 36px;
  padding: 28px 30px;
}

.contact-channel > span {
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.content-main.has-contact-channel .contact-channel > span {
  margin-bottom: 0;
  font-size: 14px;
}

.contact-channel a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: #fff;
  background: rgba(8, 24, 49, 0.9);
  font-size: 18px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.content-main.has-contact-channel .contact-channel a {
  min-width: 310px;
}

.contact-channel a:hover {
  background: rgba(21, 131, 255, 0.22);
  transform: translateY(-1px);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.detail-meta span,
.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(74, 163, 255, 0.34);
  border-radius: 8px;
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 650;
}

.detail-meta b {
  margin-right: 8px;
  color: #fff;
}

.section-list,
.content-block-list {
  display: grid;
  gap: 16px;
}

.section-item,
.content-block-list section {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 11, 23, 0.68);
}

.section-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.section-item strong {
  display: block;
  color: #fff;
  font-size: 19px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.empty-state {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 30px 104px;
  color: var(--subtle);
  font-size: 14px;
}

.footer-brand {
  color: rgba(246, 248, 251, 0.82);
  font-weight: 720;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-system-links {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-system-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-footer a:hover,
.footer-system-links a:hover {
  color: var(--text);
}

@media (max-width: 1440px) {
  .team-mini-list a {
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
    min-height: 112px;
    padding: 14px 12px;
    text-align: center;
  }

  .team-mini-copy {
    width: 100%;
  }
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: 238px minmax(0, 1fr) minmax(450px, auto);
    gap: 18px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .brand {
    font-size: 26px;
  }

  .main-nav {
    gap: 28px;
  }

  .header-actions {
    gap: 12px;
  }

  .system-link {
    padding-right: 10px;
    padding-left: 10px;
  }

  .system-link em {
    display: none;
  }

  .lang-switch {
    padding-right: 14px;
    padding-left: 14px;
  }

  .nav-cta {
    min-width: 160px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    grid-template-columns: minmax(350px, 0.9fr) minmax(560px, 1.25fr);
    gap: 34px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero.hero-compact {
    grid-template-columns: minmax(0, 620px) minmax(320px, 1fr);
  }

  h1 {
    font-size: 58px;
  }

  .architecture-node {
    width: 200px;
    padding: 15px;
  }

  .node-execution {
    right: 76px;
  }

  .listing-section-team .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 28px;
  }

  .brand {
    font-size: 26px;
  }

  .main-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 46px 28px;
  }

  .hero.hero-compact {
    grid-template-columns: 1fr;
  }

  .section-hero-visual {
    display: none;
  }

  .architecture-panel {
    height: 500px;
  }

  .proof-band,
  .company-panel,
  .visual-band,
  .cta-panel,
  .team-strip {
    padding-right: 28px;
    padding-left: 28px;
  }

  .company-panel,
  .visual-section {
    grid-template-columns: 1fr;
  }

  .listing-band .section-heading,
  .content-main.has-visuals .visual-stack .visual-section,
  .listing-band .visual-stack .visual-section {
    grid-template-columns: 1fr;
  }

  .team-strip {
    grid-template-columns: 1fr;
  }

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

  .team-mini-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .band {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    min-height: 0;
    padding: 18px 22px 16px;
  }

  .brand {
    font-size: 24px;
  }

  .main-nav {
    width: calc(100vw - 44px);
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 2px;
    overflow-x: auto;
    font-size: 14px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .system-links {
    width: 100%;
    justify-content: flex-start;
  }

  .system-link {
    min-height: 34px;
    font-size: 12px;
  }

  .lang-switch {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .nav-cta {
    min-width: 0;
    min-height: 36px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    gap: 28px;
    padding: 34px 22px 30px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .hero-summary {
    margin-bottom: 26px;
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .architecture-panel {
    height: auto;
    padding: 18px;
  }

  .architecture-flow {
    display: none;
  }

  .architecture-panel::before,
  .architecture-panel::after {
    display: none;
  }

  .architecture-core,
  .architecture-node,
  .node-workspace,
  .node-runtime,
  .node-execution,
  .node-publish,
  .node-governance,
  .node-observability {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .architecture-core {
    height: 82px;
    margin-bottom: 14px;
  }

  .architecture-panel.has-art .architecture-core {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 82px;
    transform: none;
  }

  .architecture-panel.has-art .architecture-core-content {
    width: 100%;
    min-width: 0;
  }

  .architecture-core::before,
  .architecture-core::after {
    display: none;
  }

  .architecture-core strong,
  .core-glyph,
  .architecture-core-content {
    transform: none;
  }

  .architecture-nodes {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .architecture-node {
    grid-template-columns: 26px 1fr;
    column-gap: 8px;
    min-height: 58px;
    padding: 11px;
  }

  .architecture-node strong {
    align-self: center;
    font-size: 13px;
    line-height: 1.28;
  }

  .architecture-node p {
    display: none;
  }

  .node-icon {
    width: 24px;
    height: 24px;
  }

  .feature-strip,
  .proof-band,
  .company-entity-grid,
  .visual-grid,
  .visual-flow .visual-grid,
  .visual-matrix .visual-grid,
  .metric-row,
  .signal-grid,
  .card-grid,
  .split,
  .team-mini-list {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 26px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .metric {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .team-strip,
  .company-panel,
  .visual-band,
  .band,
  .site-footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .team-mini-list a {
    grid-template-columns: 48px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .visual-section {
    padding: 22px;
  }

  .content-main,
  .content-main.has-visuals {
    padding: 24px;
  }

  .listing-section-team .card-grid {
    grid-template-columns: 1fr;
  }

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

  .content-main.has-contact-channel .contact-channel a {
    min-width: 0;
  }

  .contact-channel {
    padding: 20px;
  }

  .contact-channel a {
    width: 100%;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    padding: 0 12px;
    font-size: 15px;
    white-space: normal;
  }

  .visual-figure,
  .visual-figure img {
    min-height: 190px;
  }

  .visual-flow .visual-node::after {
    display: none;
  }

  .team-detail-head {
    grid-template-columns: 1fr;
  }

  .team-detail-avatar {
    width: min(168px, 100%);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-system-links {
    padding-left: 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-enhanced .ms-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .architecture-flow .flow-link {
    animation: none;
  }

  .architecture-flow .flow-packet {
    display: none;
  }
}
