:root {
  --bg: #05070a;
  --bg-soft: #0c1016;
  --panel: #0f141c;
  --panel-2: #121a24;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f4f7fb;
  --text-muted: rgba(244, 247, 251, 0.66);
  --text-faint: rgba(244, 247, 251, 0.42);
  --accent: #8fb8ff;
  --accent-2: #bfd4ff;
  --accent-3: rgba(143, 184, 255, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --gutter: clamp(20px, 4vw, 56px);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.solutions-scroll-root {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 184, 255, 0.08), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(180deg, #06080c 0%, #0a0e14 100%);
}

body.solutions-page {
  background: #ffffff;
}

body.solutions-page .site-shell {
  background: #ffffff;
}

.route-progress {
  position: absolute;
  inset: 0;
  z-index: 22;
  display: grid;
  place-items: center;
  background: #03070d;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  transition:
    opacity 160ms ease,
    visibility 0s linear 160ms;
}

.route-progress.is-visible {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 160ms ease,
    visibility 0s;
}

.route-progress-inner {
  width: min(320px, calc(100vw - 48px));
  display: grid;
  justify-items: center;
  gap: 8px;
}

.route-progress-label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 247, 255, 0.84);
}

.route-progress-value {
  margin: 0;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(248, 252, 255, 0.97);
}

.route-progress-track {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(241, 247, 255, 0.24);
  overflow: hidden;
}

.route-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  transition: width 120ms linear;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  width: 100%;
  margin: 0;
  padding: 18px 0 72px;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.home-page .site-shell {
  padding-top: 0;
}

.home-page main {
  margin-top: clamp(-86px, -7.2vw, -64px);
}

body.is-routing .site-shell {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 30px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: auto;
  margin: 0 var(--gutter) 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(235, 235, 235, 0.3);
  border: 1px solid rgba(128, 146, 170, 0.42);
  backdrop-filter: blur(10px);
}

.home-page .topbar {
  position: sticky;
  top: 30px;
  left: auto;
  right: auto;
  margin: 0 var(--gutter) 0;
}

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

.brand-title {
  font-size: 0.96rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(28, 40, 57, 0.96);
}

.eyebrow,
.practice-tag,
.pipeline-index,
.rail-index {
  color: var(--text-faint);
}

.topnav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.topnav a {
  color: rgba(48, 62, 82, 0.82);
  transition: color 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: rgba(22, 34, 50, 0.98);
}

.hero,
.business-section,
.solutions-nav-section,
.cases-section,
.contact-section {
  margin-bottom: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--bg-soft);
  border-top: 1px solid var(--line);
}

.architecture-hero,
.architecture-section {
  margin-bottom: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--bg-soft);
  border-top: 1px solid var(--line);
}

.architecture-section {
  margin-bottom: 0;
}

.business-section {
  border-top: 0;
}

.business-section .section-frame {
  padding-top: 0;
}

.architecture-hero .section-frame {
  padding-top: clamp(38px, 5vw, 76px);
  padding-bottom: clamp(26px, 4vw, 52px);
}


.architecture-hero h1 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.architecture-intro {
  max-width: min(74ch, 100%);
  margin: 16px 0 0;
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.architecture-stack {
  display: grid;
  gap: 0;
}

.architecture-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin: 10px auto 0;
  padding: 0;
}

.architecture-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(244, 247, 251, 0.66);
  transition: color 180ms ease;
}

.architecture-nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: rgba(191, 212, 255, 0.5);
  opacity: 0;
  transition: opacity 180ms ease;
}

.architecture-nav-item:hover,
.architecture-nav-item:focus-visible,
.architecture-nav-item.is-active {
  color: rgba(244, 247, 251, 0.96);
}

.architecture-nav-item:hover::after,
.architecture-nav-item:focus-visible::after,
.architecture-nav-item.is-active::after {
  opacity: 1;
}

.architecture-layers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 0;
  padding-top: 0;
}

.architecture-carousel {
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.architecture-carousel-track {
  display: block;
  width: 100%;
}

.architecture-carousel-slide {
  width: 100%;
}

.architecture-carousel-slide[data-arch-slide="ontology"] {
  display: none;
}

.architecture-three-viewport {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 54vw, 740px);
  margin: 0;
  border: 1px solid rgba(79, 111, 154, 0.46);
  border-radius: 14px;
  background: linear-gradient(180deg, #000000 0%, #7f7f7f 100%);
  overflow: hidden;
  isolation: isolate;
  contain: layout paint style;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.architecture-three-viewport.arch-slide-left {
  animation: architectureViewportSlideLeft 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.architecture-three-viewport.arch-slide-right {
  animation: architectureViewportSlideRight 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes architectureViewportSlideLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  46% {
    transform: translate3d(-106%, 0, 0);
  }
  54% {
    transform: translate3d(106%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes architectureViewportSlideRight {
  0% {
    transform: translate3d(0, 0, 0);
  }
  46% {
    transform: translate3d(106%, 0, 0);
  }
  54% {
    transform: translate3d(-106%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.architecture-section .architecture-three-viewport {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.architecture-three-viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #03070d;
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.architecture-three-viewport.is-scene-loading::before {
  opacity: 1;
}

.architecture-three-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ontology-cy {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.ontology-three-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ontology-three-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.ontology-cy-fallback {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(49, 68, 96, 0.72);
}

.architecture-three-viewport.is-ontology-empty .architecture-three-canvas,
.architecture-three-viewport.is-ontology-empty .architecture-db-popup,
.architecture-three-viewport.is-ontology-empty .architecture-task-popup,
.architecture-three-viewport.is-ontology-empty .architecture-three-overlay,
.architecture-three-viewport.is-ontology-empty .architecture-camera-panel {
  opacity: 0;
  pointer-events: none;
}

.architecture-three-viewport.is-ontology-empty .ontology-cy {
  opacity: 1;
  pointer-events: auto;
}

.architecture-three-canvas,
.ontology-cy,
.architecture-db-popup,
.architecture-task-popup,
.architecture-three-overlay {
  transition: opacity 240ms ease;
}

.architecture-three-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.architecture-three-overlay {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 3;
  padding: 4px 8px;
  border: 1px solid rgba(94, 130, 178, 0.36);
  border-radius: 6px;
  background: rgba(8, 14, 24, 0.74);
  color: rgba(193, 214, 246, 0.9);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.architecture-vector-label-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.architecture-vector-label {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
  color: rgba(12, 16, 24, 0.96);
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  font-size: var(--vector-label-font-size, 14px);
  font-weight: 500;
  letter-spacing: var(--vector-label-letter-spacing, 0.08em);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: translate3d(0, 0, 0);
  transform-origin: center center;
  white-space: nowrap;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  will-change: left, top, width, height;
}

.architecture-vector-label[hidden] {
  display: none;
}

.architecture-vector-label-line {
  display: block;
  max-width: 100%;
}

.architecture-vector-label-headline {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.architecture-vector-label-panel,
.architecture-vector-label-badge {
  color: rgba(12, 16, 24, 0.96);
}

.architecture-vector-label-badge {
  font-weight: 500;
  letter-spacing: 0.06em;
}

.architecture-vector-label-stack {
  flex-direction: column;
  justify-content: center;
  white-space: normal;
  line-height: 1.14;
  font-weight: 500;
}

.architecture-camera-panel {
  display: none;
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 18;
  width: min(420px, calc(100% - 28px));
  padding: 10px 10px 8px;
  border: 1px solid rgba(86, 109, 143, 0.34);
  border-radius: 12px;
  background: rgba(7, 13, 22, 0.78);
  color: rgba(221, 234, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.architecture-camera-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.architecture-camera-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.architecture-camera-status {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(165, 195, 238, 0.9);
}

.architecture-camera-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.architecture-camera-fields label {
  display: grid;
  gap: 2px;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(181, 206, 241, 0.86);
}

.architecture-camera-fields input {
  height: 24px;
  padding: 0 6px;
  border: 1px solid rgba(84, 116, 162, 0.52);
  border-radius: 6px;
  background: rgba(9, 16, 27, 0.86);
  color: rgba(230, 240, 255, 0.96);
  font-size: 0.68rem;
}

.architecture-camera-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.architecture-camera-actions button {
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(95, 126, 172, 0.56);
  border-radius: 999px;
  background: rgba(12, 20, 33, 0.9);
  color: rgba(228, 239, 255, 0.94);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.architecture-camera-json {
  width: 100%;
  height: 96px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(84, 116, 162, 0.45);
  border-radius: 8px;
  background: rgba(6, 12, 20, 0.92);
  color: rgba(214, 231, 255, 0.94);
  font-size: 0.62rem;
  line-height: 1.45;
  resize: vertical;
}

@media (max-width: 980px) {
  .architecture-camera-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ontology-camera-panel {
  display: none;
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 18;
  width: min(420px, calc(100% - 28px));
  padding: 10px 10px 8px;
  border: 1px solid rgba(86, 109, 143, 0.34);
  border-radius: 12px;
  background: rgba(7, 13, 22, 0.78);
  color: rgba(221, 234, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ontology-camera-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.ontology-camera-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ontology-camera-status {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(165, 195, 238, 0.9);
}

.ontology-camera-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.ontology-camera-fields label {
  display: grid;
  gap: 2px;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(181, 206, 241, 0.86);
}

.ontology-camera-fields input {
  height: 24px;
  padding: 0 6px;
  border: 1px solid rgba(84, 116, 162, 0.52);
  border-radius: 6px;
  background: rgba(9, 16, 27, 0.86);
  color: rgba(230, 240, 255, 0.96);
  font-size: 0.68rem;
}

.ontology-camera-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.ontology-camera-actions button {
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(95, 126, 172, 0.56);
  border-radius: 999px;
  background: rgba(12, 20, 33, 0.9);
  color: rgba(228, 239, 255, 0.94);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ontology-camera-json {
  width: 100%;
  height: 96px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(84, 116, 162, 0.45);
  border-radius: 8px;
  background: rgba(6, 12, 20, 0.92);
  color: rgba(214, 231, 255, 0.94);
  font-size: 0.62rem;
  line-height: 1.45;
  resize: vertical;
}

@media (max-width: 980px) {
  .ontology-camera-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ontology-node-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 19;
  width: min(420px, 34%);
  max-height: none;
  overflow: auto;
  padding: 14px 14px 12px;
  border-left: 1px solid rgba(78, 105, 140, 0.34);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background: rgba(9, 15, 24, 0.9);
  color: rgba(225, 236, 252, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ontology-node-panel-inner {
  display: grid;
  gap: 12px;
}

.ontology-node-panel-kicker {
  margin: 0;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(156, 189, 235, 0.9);
}

.ontology-node-panel-title {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.32;
  font-weight: 700;
  color: rgba(238, 245, 255, 0.98);
}

.ontology-node-panel-section {
  display: grid;
  gap: 8px;
}

.ontology-node-panel-section-title {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(158, 189, 230, 0.88);
}

.ontology-node-panel-summary {
  margin: 0;
  padding: 9px 10px;
  border: 1px solid rgba(84, 116, 162, 0.34);
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1.58;
  color: rgba(214, 229, 248, 0.93);
  background: rgba(11, 18, 29, 0.74);
}

.ontology-node-panel-meta {
  display: grid;
  gap: 6px;
}

.ontology-node-panel-meta-item {
  display: grid;
  gap: 4px;
}

.ontology-node-panel-meta-key {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(155, 181, 216, 0.86);
}

.ontology-node-panel-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(95, 128, 172, 0.46);
  border-radius: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  color: rgba(225, 237, 255, 0.95);
  background: rgba(17, 27, 42, 0.68);
}

.ontology-node-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.ontology-node-panel-list li {
  padding: 7px 8px;
  border: 1px solid rgba(84, 116, 162, 0.34);
  border-radius: 8px;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(221, 235, 255, 0.92);
  background: rgba(11, 18, 29, 0.74);
}

@media (max-width: 980px) {
  .ontology-node-panel {
    width: min(300px, 56%);
  }
}

.architecture-three-welcome {
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 4;
  margin: 0;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0.006em;
  word-spacing: 0;
  color: rgba(255, 255, 255, 0.96);
  display: inline-block;
  padding: 27px 38px 30px;
  border-radius: 10px;
  background: rgba(138, 149, 166, 0.72);
  border: 0;
  pointer-events: none;
}

.architecture-db-popup {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 16;
  width: min(384px, calc(100% - 28px));
  padding: 14px 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(62, 82, 110, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.86)),
    rgba(248, 252, 255, 0.84);
  box-shadow:
    0 16px 34px rgba(25, 39, 57, 0.14),
    0 2px 10px rgba(25, 39, 57, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  color: rgba(22, 34, 50, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

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

.architecture-db-popup-kicker {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(58, 77, 104, 0.66);
}

.architecture-db-popup-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(66, 88, 118, 0.18);
  background: rgba(240, 247, 255, 0.66);
  color: rgba(34, 52, 78, 0.76);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.architecture-db-popup-title {
  margin: 8px 0 0;
  padding-right: 34px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(18, 30, 46, 0.94);
  text-wrap: balance;
}

.architecture-db-popup-summary {
  margin: 7px 0 0;
  font-size: 0.76rem;
  line-height: 1.58;
  color: rgba(38, 53, 76, 0.74);
}

.architecture-db-popup-metrics {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 10px;
  border: 1px solid rgba(74, 95, 123, 0.14);
  background: rgba(245, 250, 255, 0.64);
  overflow: hidden;
}

.architecture-db-popup-metric {
  padding: 7px 9px 8px;
  border-right: 1px solid rgba(74, 95, 123, 0.12);
}

.architecture-db-popup-metric:last-child {
  border-right: 0;
}

.architecture-db-popup-metric-label {
  display: block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(64, 85, 112, 0.62);
}

.architecture-db-popup-metric-value {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.36;
  color: rgba(27, 43, 64, 0.9);
}

.architecture-db-popup-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(74, 95, 123, 0.14);
}

.architecture-db-popup-list li {
  margin: 0;
  padding: 6px 2px;
  display: grid;
  grid-template-columns: minmax(90px, 114px) minmax(0, 1fr);
  gap: 10px;
  border-bottom: 1px solid rgba(74, 95, 123, 0.1);
}

.architecture-db-popup-list li:last-child {
  border-bottom: 0;
}

.architecture-db-popup-list-key {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(72, 92, 118, 0.66);
}

.architecture-db-popup-list-value {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(29, 45, 66, 0.86);
}

.architecture-db-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(72, 96, 126, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(42, 60, 84, 0.66);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.architecture-db-popup-close:hover {
  background: rgba(255, 255, 255, 0.84);
  color: rgba(30, 47, 70, 0.86);
  border-color: rgba(72, 96, 126, 0.24);
}

.architecture-task-popup {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 17;
  width: min(384px, calc(100% - 28px));
  padding: 14px 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(58, 80, 112, 0.18);
  background:
    linear-gradient(180deg, rgba(247, 252, 255, 0.9), rgba(239, 247, 255, 0.88)),
    rgba(247, 251, 255, 0.86);
  box-shadow:
    0 16px 36px rgba(24, 40, 66, 0.16),
    0 2px 10px rgba(24, 40, 66, 0.08);
  color: rgba(20, 33, 52, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.architecture-task-popup-kicker {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(64, 85, 112, 0.68);
}

.architecture-task-popup-title {
  margin: 8px 0 0;
  padding-right: 34px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(20, 33, 52, 0.96);
}

.architecture-task-popup-summary {
  margin: 7px 0 0;
  font-size: 0.76rem;
  line-height: 1.58;
  color: rgba(34, 52, 78, 0.76);
}

.architecture-task-popup-meta {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.architecture-task-popup-meta-item {
  padding: 7px 8px;
  border-radius: 8px;
  border: 1px solid rgba(76, 102, 138, 0.16);
  background: rgba(245, 250, 255, 0.72);
}

.architecture-task-popup-meta-label {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(67, 89, 118, 0.64);
}

.architecture-task-popup-meta-value {
  display: block;
  margin-top: 3px;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.32;
  color: rgba(24, 40, 61, 0.92);
}

.architecture-task-popup-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(76, 102, 138, 0.14);
  margin-bottom: 2px;
}

.architecture-task-popup-list li {
  margin: 0;
  padding: 6px 2px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.44;
  color: rgba(30, 48, 71, 0.84);
  border-bottom: 1px solid rgba(76, 102, 138, 0.1);
}

.architecture-task-popup-list li:last-child {
  border-bottom: 0;
}

.architecture-task-popup-progressbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  border-radius: 0 0 12px 12px;
  background:
    linear-gradient(90deg, rgba(172, 194, 223, 0.12), rgba(172, 194, 223, 0.04)),
    rgba(229, 239, 251, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(107, 132, 168, 0.08);
  overflow: hidden;
}

.architecture-task-popup-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 0;
  border-radius: 0 10px 10px 12px;
  background:
    linear-gradient(90deg, rgba(90, 48, 176, 0.9), rgba(118, 72, 204, 0.86)),
    rgba(102, 60, 190, 0.88);
  box-shadow:
    0 0 10px rgba(103, 66, 183, 0.26),
    inset 0 -1px 0 rgba(73, 41, 140, 0.28);
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.architecture-task-popup-progressbar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.16) 0,
    rgba(255, 255, 255, 0.16) 5px,
    rgba(255, 255, 255, 0.02) 5px,
    rgba(255, 255, 255, 0.02) 10px
  );
  animation: taskProgressStripe 1800ms linear infinite;
}

.architecture-task-popup-progressbar-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.34) 46%, transparent 74%);
  transform: translateX(-120%);
  animation: taskProgressSheen 2600ms ease-in-out infinite;
}

@keyframes taskProgressStripe {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(20px);
  }
}

@keyframes taskProgressSheen {
  0% {
    transform: translateX(-120%);
  }
  55% {
    transform: translateX(140%);
  }
  100% {
    transform: translateX(140%);
  }
}

.architecture-task-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(72, 96, 126, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(42, 60, 84, 0.66);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.architecture-task-popup-close:hover {
  background: rgba(255, 255, 255, 0.84);
  color: rgba(30, 47, 70, 0.86);
  border-color: rgba(72, 96, 126, 0.24);
}

@media (max-width: 720px) {
  .architecture-db-popup {
    top: 10px;
    right: 10px;
    width: calc(100% - 20px);
    padding: 14px 14px 12px;
    border-radius: 12px;
  }

  .architecture-db-popup-title {
    font-size: 0.98rem;
  }

  .architecture-db-popup-summary {
    font-size: 0.76rem;
  }

  .architecture-db-popup-metrics {
    grid-template-columns: 1fr;
  }

  .architecture-db-popup-metric {
    border-right: 0;
    border-bottom: 1px solid rgba(74, 95, 123, 0.12);
  }

  .architecture-db-popup-metric:last-child {
    border-bottom: 0;
  }

  .architecture-task-popup {
    top: 10px;
    right: 10px;
    width: calc(100% - 20px);
    padding: 12px 12px 16px;
  }

  .architecture-task-popup-meta {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.hero {
  --hero-fg: #f4f7fb;
  --hero-muted: rgba(244, 247, 251, 0.84);
  --hero-accent: #bfd4ff;
  --hero-line: rgba(191, 212, 255, 0.72);
  --hero-line-fade: rgba(191, 212, 255, 0.14);
  --hero-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
  --hero-secondary-bg: rgba(7, 12, 20, 0.14);
  --hero-secondary-border: rgba(214, 228, 255, 0.32);
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  border-top: none;
  isolation: isolate;
  background: transparent;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(1.08) contrast(1.16) brightness(1.02);
}

.hero-video-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 12% 46%, rgba(10, 16, 26, 0.03), transparent 66%),
    radial-gradient(52% 72% at 78% 22%, rgba(10, 16, 26, 0.04), transparent 72%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.05), rgba(8, 12, 18, 0.1) 38%, rgba(8, 11, 17, 0.16) 100%);
}

.hero-grid,
.section-frame {
  width: 100%;
  margin: 0;
  padding: clamp(24px, 3vw, 40px) var(--gutter);
}

.architecture-section .section-frame {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.home-page .hero {
  margin-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 4vw, 64px);
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  z-index: 2;
}

.home-page .hero-grid {
  grid-template-columns: 1fr;
  padding-top: clamp(96px, 9vw, 132px);
}

.home-page .hero-copy {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.home-page .hero .eyebrow {
  color: var(--hero-muted);
  text-shadow: var(--hero-shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 8px 0;
  max-width: min(72vw, 980px);
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 {
  display: inline-flex;
  align-items: baseline;
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 900;
  min-height: 1.1em;
  padding-right: 0.12em;
  position: relative;
  text-wrap: balance;
}

.home-page .hero h1 {
  color: var(--hero-fg);
  text-shadow: var(--hero-shadow);
}

.hero h1 .typing-content,
.business-panel-name .typing-content {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  min-height: inherit;
}

.hero h1.typing .typed-char {
  display: inline-block;
  opacity: 0;
  animation: char-flash 220ms ease-out forwards;
}

.hero h1.typing .typing-content::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 0.045em;
  height: 0.88em;
  margin-left: 0.06em;
  background: var(--hero-accent);
  transform: translateY(-52%);
  animation: caret-blink 900ms steps(1) infinite;
}

.hero h1.typing.done .typing-content::after {
  animation:
    caret-blink 900ms steps(1) 2,
    caret-fade 420ms ease forwards;
  animation-delay: 0s, 500ms;
}

.hero-text,
.section-heading p,
.business-summary,
.practice-description,
.pipeline-card p,
.rail-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-text {
  max-width: 64ch;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.9;
}

.home-page .hero .hero-text.typing .typing-content {
  display: inline;
  min-height: 0;
}

.home-page .hero .hero-text .typing-content {
  display: inline;
  min-height: 0;
  white-space: inherit;
}

.home-page .hero .hero-text.typing .typed-char {
  display: inline-block;
  opacity: 0;
  animation: char-flash 220ms ease-out forwards;
}

.home-page .hero .hero-text {
  color: var(--hero-muted);
  text-shadow: var(--hero-shadow);
  font-size: 1.2rem;
  white-space: pre-wrap;
}

.home-page .hero .hero-actions .button {
  border: 0;
  background: transparent;
  border-radius: 0;
  min-height: auto;
  padding: 0;
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.home-page .hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--text);
  background: transparent;
  justify-content: flex-start;
  min-height: auto;
  padding: 0 28px 0 0;
  border: 0;
  border-radius: 0;
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .hero .button-primary {
  color: var(--hero-fg);
  text-shadow: var(--hero-shadow);
  padding: 0;
}

.button-primary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--hero-line), var(--hero-line-fade));
}

.button-primary::after {
  content: "\2192";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--hero-accent);
}

.home-page .hero .button-primary::before,
.home-page .hero .button-primary::after {
  content: none;
}

.button-secondary,
.button-download {
  color: var(--text);
  border-color: transparent;
  background: transparent;
}

.home-page .hero .button-secondary {
  color: var(--hero-fg);
  border-color: transparent;
  background: transparent;
  text-shadow: var(--hero-shadow);
  padding: 0;
  min-height: auto;
  border-radius: 0;
}

.hero-rail {
  display: grid;
  gap: 0;
  align-content: end;
}

.rail-card,
.practice-card,
.pipeline-card {
  background: none;
  border: 0;
}

.rail-card {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.rail-card:first-child {
  border-top: 0;
}

.rail-index,
.pipeline-index {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.rail-card strong,
.pipeline-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 600;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.logo-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(220px, 20vw, 300px);
  min-height: 112px;
  padding: 24px 38px;
  overflow: visible;
  color: var(--text-faint);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid var(--line);
}

.logo-item img {
  width: 130px;
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(1.06) contrast(1.04);
  transition: filter 180ms ease, opacity 180ms ease;
}

.logo-item:hover img {
  opacity: 1;
  filter: brightness(1.02) contrast(1.02);
}

.logo-item.placeholder::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 14px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(143, 184, 255, 0.05);
}

.section-frame {
  display: grid;
  gap: 28px;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: min(72ch, 62vw);
}

.business-heading {
  margin-bottom: 6px;
}

.section-heading-wide {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  max-width: none;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
}

.business-panels {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.business-panel {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
  padding: 0;
  border-bottom: 0;
  margin-bottom: 0;
  cursor: pointer;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease;
  position: relative;
  will-change: transform;
}

.business-panel:hover,
.business-panel:focus-visible {
  transform: translateX(2px);
}

.business-panel:active {
  transform: translateX(2px);
}

.business-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 212, 255, 0.28), rgba(191, 212, 255, 0));
  opacity: 0;
  transition: opacity 180ms ease;
}

.business-panel:hover::after,
.business-panel:focus-visible::after {
  opacity: 1;
}

.business-panel:hover .business-panel-name,
.business-panel:focus-visible .business-panel-name {
  color: #ffffff;
}

.business-panel:hover .business-panel-body,
.business-panel:focus-visible .business-panel-body {
  border-top-color: rgba(191, 212, 255, 0.42);
}

.business-panel-nav {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 0 18px;
}

.business-panel-index {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.business-panel-name {
  display: inline-flex;
  align-items: baseline;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: clamp(4.62rem, 6.48vw, 7.05rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.085em;
  white-space: nowrap;
  color: var(--accent-2);
  min-height: 0.95em;
  padding-right: 0.12em;
  position: relative;
}

.business-panel-name.typing {
  display: inline-flex;
}

.business-panel-name.typing .typed-char {
  display: inline-block;
  opacity: 0;
  animation: char-flash 220ms ease-out forwards;
}

.business-panel-name.typing .typing-content::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 0.045em;
  height: 0.88em;
  margin-left: 0.06em;
  background: var(--accent-2);
  transform: translateY(-52%);
  animation: caret-blink 900ms steps(1) infinite;
}

.business-panel-name.typing.done .typing-content::after {
  animation:
    caret-blink 900ms steps(1) 2,
    caret-fade 420ms ease forwards;
  animation-delay: 0s, 500ms;
}

.business-panel-tagline {
  display: block;
  margin-top: 4px;
  padding-left: 4px;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.business-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding-left: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(191, 212, 255, 0.36);
  transition: color 180ms ease, transform 180ms ease;
}

.business-panel-links {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
  margin-left: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.business-panel-industries {
  margin-top: 0;
  margin-left: 40px;
  padding-left: 0;
  font-size: 0.99rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(191, 212, 255, 0.58);
  white-space: nowrap;
}

.business-panel-cta::after {
  content: "\2192";
  font-size: 0.9rem;
}

.business-panel:hover .business-panel-cta,
.business-panel:focus-visible .business-panel-cta {
  color: var(--accent-2);
  transform: translateX(2px);
}

.business-summary-inline {
  max-width: 36ch;
  margin-top: 10px;
  color: var(--text);
}

.business-summary-nowrap {
  white-space: nowrap;
  max-width: none;
}

.business-panel-body {
  position: relative;
  overflow: hidden;
  padding: 28px 0 12px;
  border-top: 1px solid var(--line);
  min-height: 300px;
}

.business-panel-photo {
  position: absolute;
  left: 50px;
  top: 50%;
  width: min(calc(100% - 50px), 900px);
  aspect-ratio: 2638 / 1066;
  height: auto;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  filter: none;
  transform: translateY(-50%);
}

.business-panel-photo.reveal-photo {
  opacity: 0;
  transform: translateY(calc(-50% + 24px)) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.business-panel-photo.reveal-photo.is-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.business-summary {
  color: var(--text);
  font-size: 0.61rem;
  font-weight: 600;
  line-height: 1.6;
}

.solutions-nav-list {
  display: grid;
}

.solution-nav-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  padding: 22px 0;
  transition: transform 180ms ease, background 180ms ease;
}

.solution-nav-item:hover,
.solution-nav-item:focus-visible {
  transform: translateX(2px);
}

.solution-nav-main {
  display: grid;
  gap: 8px;
  padding-left: 400px;
}

.solution-nav-title {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(0.544rem, 0.92vw, 0.824rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(235, 244, 255, 0.96);
}

.practice-stream {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.practice-card {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.7fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
  margin: 0;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease;
}

.practice-card:hover {
  transform: translateY(-2px);
  border-bottom-color: rgba(191, 212, 255, 0.32);
}

.practice-media {
  background:
    radial-gradient(circle at top left, rgba(143, 184, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #101722 0%, #0a0f16 100%);
}

.practice-card-bridge .practice-media {
  background: transparent;
}

.practice-card-supply .practice-media {
  background: transparent;
}

.practice-card-bridge .workflow-board {
  background: transparent;
}

.practice-card-supply .workflow-board {
  background: transparent;
}

.practice-card-bridge .workflow-board::before {
  display: none;
}

.practice-card-supply .workflow-board::before {
  display: none;
}

.practice-card-voiceagent-1 .practice-media {
  background: #161616;
}

.practice-card-bridge .practice-tag {
  margin-top: 24px;
}

.practice-card-bridge .practice-actions {
  transform: translateY(-20px);
}

.practice-media iframe,
.practice-media video,
.practice-media .media-placeholder,
.practice-media .audio-player,
.practice-media .workflow-board {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.media-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(244, 247, 251, 0.72);
  text-align: center;
  line-height: 1.7;
}

.audio-player {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(143, 184, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #101722 0%, #0a0f16 100%);
}

.audio-player-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.audio-player audio {
  width: 100%;
}

.workflow-board {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(180px, 1fr) minmax(170px, 1.05fr) minmax(180px, 1fr);
  gap: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  align-items: stretch;
  background:
    radial-gradient(circle at 8% 14%, rgba(143, 184, 255, 0.18), transparent 22%),
    radial-gradient(circle at 76% 18%, rgba(143, 184, 255, 0.1), transparent 18%),
    linear-gradient(180deg, #0f1621 0%, #091018 100%);
}

.workflow-board::before {
  content: "";
  position: absolute;
  inset: 24px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.34;
  pointer-events: none;
}

.workflow-column {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 72px minmax(264px, 1fr);
  gap: 14px;
  min-height: 100%;
}

.workflow-column-header {
  display: grid;
  gap: 6px;
  height: 72px;
  align-content: start;
}

.workflow-column-header strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.workflow-column-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.workflow-kicker {
  color: var(--text-faint);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.workflow-source,
.workflow-task,
.workflow-team,
.workflow-manager-core {
  border: 1px solid rgba(191, 212, 255, 0.14);
  background: rgba(9, 15, 24, 0.8);
  backdrop-filter: blur(10px);
  animation: workflow-fade-in 780ms ease forwards;
  animation-delay: var(--workflow-delay, 0ms);
  opacity: 0;
}

.workflow-source {
  padding: 12px 14px;
  display: grid;
  align-content: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text);
  position: relative;
}

.workflow-source strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.workflow-source-head,
.workflow-source-meta,
.workflow-task-meta,
.workflow-manager-status,
.workflow-manager-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.workflow-source-code,
.workflow-source-state,
.workflow-task-meta span,
.workflow-manager-status,
.workflow-manager-metrics span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.workflow-source-code,
.workflow-source-state,
.workflow-task-meta span {
  color: var(--text-faint);
}

.workflow-source-meta span {
  color: var(--text-muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.workflow-manager {
  align-content: stretch;
}

.workflow-manager-core {
  min-height: 0;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 0;
  background: rgba(156, 163, 174, 0.9);
  --manager-corner-cut: 18px;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--manager-corner-cut)) 0,
    100% var(--manager-corner-cut),
    100% 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    calc(100% - var(--manager-corner-cut)) 0,
    100% var(--manager-corner-cut),
    100% 100%,
    0 100%
  );
  box-shadow: none;
}

.workflow-manager-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(74%, 220px);
}

.workflow-manager-core .workflow-manager-status,
.workflow-manager-core .workflow-manager-metrics span {
  color: rgba(49, 61, 79, 0.8);
}

.workflow-manager-core strong {
  color: rgba(28, 39, 56, 0.92);
}

.workflow-sources,
.workflow-tasks,
.workflow-teams {
  align-content: stretch;
}

.workflow-stack {
  display: grid;
  gap: 14px;
  min-height: 0;
  height: 100%;
}

.workflow-sources .workflow-source,
.workflow-tasks .workflow-task,
.workflow-teams .workflow-team {
  min-height: 0;
  height: 100%;
}

.workflow-manager-core strong {
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.workflow-manager-status {
  justify-content: center;
  color: var(--accent-2);
}

.workflow-manager-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(191, 212, 255, 0.92);
  box-shadow: 0 0 12px rgba(191, 212, 255, 0.42);
}

.workflow-manager-metrics {
  justify-content: center;
  flex-wrap: wrap;
}

.workflow-manager-code-stream {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  top: 12px;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.84) 18%, rgba(0, 0, 0, 0.96) 100%);
}

.workflow-code-stack {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 2px;
}

.workflow-code-history-line,
.workflow-code-current {
  display: block;
  color: rgba(191, 212, 255, 0.54);
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  font-size: 0.56rem;
  line-height: 1.28;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: left;
}

.workflow-code-current {
  position: relative;
  overflow: hidden;
  width: max-content;
  max-width: 100%;
  border-right: 1px solid rgba(191, 212, 255, 0.7);
}

.workflow-code-current.is-static {
  border-right: 0;
}

.workflow-code-current.is-typing {
  animation: workflow-code-caret 700ms steps(1) infinite;
}

.workflow-code-history-line {
  position: relative;
  transition: opacity 180ms ease;
}

.workflow-manager-metrics span {
  padding: 0;
  border: 0;
  background: transparent;
}

.workflow-core-pulse,
.workflow-core-ring {
  position: absolute;
  border-radius: 999px;
}

.workflow-core-pulse {
  width: 92px;
  height: 92px;
  background: radial-gradient(circle, rgba(191, 212, 255, 0.26), rgba(143, 184, 255, 0.06));
  animation: workflow-pulse 2.4s ease-in-out infinite;
}

.workflow-core-ring {
  width: 156px;
  height: 156px;
  border: 1px solid rgba(191, 212, 255, 0.24);
  animation: workflow-ring 3.6s linear infinite;
}

.workflow-core-ring-secondary {
  width: 214px;
  height: 214px;
  animation-duration: 5.2s;
  opacity: 0.42;
}

.workflow-task {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  position: relative;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(0) scaleX(1);
  transform-origin: left center;
}

.workflow-tasks .workflow-task {
  background: linear-gradient(
    180deg,
    rgba(247, 250, 254, 0.98) 0%,
    rgba(237, 243, 250, 0.96) 68%,
    rgba(20, 26, 36, 0.9) 69%,
    rgba(10, 14, 22, 0.94) 100%
  );
  border-color: rgba(204, 214, 230, 0.44);
  align-items: start;
  padding-bottom: 40px;
}

.workflow-tasks .workflow-task-body {
  padding-top: 2px;
}

.workflow-tasks .workflow-task-label {
  color: rgba(25, 37, 53, 0.95);
}

.workflow-tasks .workflow-task-meta span {
  color: rgba(55, 71, 93, 0.8);
}

.workflow-tasks .workflow-task-index {
  color: rgba(76, 91, 112, 0.75);
}

.workflow-tasks .workflow-task-foot {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.workflow-tasks .workflow-task-chip {
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(214, 222, 234, 0.92);
  background: rgba(255, 255, 255, 0.96);
  color: rgba(36, 49, 68, 0.9);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.workflow-tasks .workflow-task-pulse {
  margin-left: auto;
  width: 3.5px;
  height: 3.5px;
  border-radius: 999px;
  background: rgba(187, 160, 255, 0.95);
  box-shadow: 0 0 6px rgba(166, 128, 255, 0.58);
  animation: workflow-node-pulse 2.8s ease-in-out infinite;
}

.workflow-tasks .workflow-task-pulse[data-priority="p0"] {
  background: rgba(255, 112, 141, 0.96);
  box-shadow: 0 0 6px rgba(255, 98, 132, 0.62);
}

.workflow-tasks .workflow-task-pulse[data-priority="p1"] {
  background: rgba(255, 182, 86, 0.96);
  box-shadow: 0 0 6px rgba(240, 163, 66, 0.58);
}

.workflow-tasks .workflow-task-pulse[data-priority="p2"] {
  background: rgba(167, 139, 250, 0.96);
  box-shadow: 0 0 6px rgba(146, 111, 241, 0.6);
}

.workflow-task.no-reveal,
.workflow-team.no-reveal {
  animation: none;
  opacity: 1;
}

.workflow-task-index {
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.workflow-task-label {
  font-size: 0.84rem;
  line-height: 1.5;
}

.workflow-task-body {
  display: grid;
  gap: 8px;
  min-width: 0;
  transition: opacity 260ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-task-index {
  transition: opacity 260ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-input-link {
  position: absolute;
  top: 50%;
  left: -24px;
  width: 24px;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(191, 212, 255, 0.06), rgba(191, 212, 255, 0.68), rgba(191, 212, 255, 0.14)),
    linear-gradient(90deg, rgba(191, 212, 255, 0.75) 0 20%, rgba(191, 212, 255, 0) 20% 100%);
  background-repeat: no-repeat, repeat-x;
  background-size: 100% 1px, 14px 1px;
  animation: workflow-line-flow 2.1s linear infinite;
  transform: translateY(-50%) scaleX(1);
  transform-origin: right center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
}

.workflow-team {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform-origin: left center;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(0);
}

.workflow-task.is-archived,
.workflow-team.is-archived {
  opacity: 0;
  transform: translateX(118%);
  border-color: rgba(191, 212, 255, 0.02);
  pointer-events: none;
}

.workflow-task.is-archiving,
.workflow-team.is-archiving {
  transition: none;
  animation: workflow-row-exit-paired 940ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  border-color: rgba(191, 212, 255, 0.04);
}

.workflow-task.is-entering,
.workflow-team.is-entering {
  opacity: 0;
  transform: translateX(-32px);
}

.workflow-team.is-entering.is-entering-from-link {
  opacity: 1;
  transform: translateX(0) scaleX(0.02);
  border-color: rgba(191, 212, 255, 0.08);
}

.workflow-task.is-awaiting-link .workflow-task-body {
  opacity: 0;
  transform: translateX(-10px);
}

.workflow-task.is-awaiting-link .workflow-task-index {
  opacity: 0;
  transform: translateX(-10px);
}

.workflow-task.is-awaiting-link .workflow-input-link {
  opacity: 1;
  transform: translateY(-50%) scaleX(0);
}

.workflow-task.is-awaiting-link {
  border-color: rgba(191, 212, 255, 0.02);
  background: transparent;
  transform: translateX(0) scaleX(0.62);
}

.workflow-task.is-linking-in .workflow-input-link {
  transform: translateY(-50%) scaleX(1);
}

.workflow-task.is-spawning {
  border-color: rgba(191, 212, 255, 0.24);
  background: rgba(9, 15, 24, 0.76);
  transform: translateX(0) scaleX(0.82);
}

.workflow-task.is-spawning .workflow-task-index,
.workflow-task.is-spawning .workflow-task-body {
  opacity: 0;
  transform: translateX(-8px);
}

.workflow-task::after {
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
}

.workflow-task::before {
  transition: opacity 240ms ease;
}

.workflow-task.is-awaiting-link::before,
.workflow-task.is-awaiting-link::after,
.workflow-task.is-output-linking::before,
.workflow-task.is-output-linking::after,
.workflow-team.is-entering::before,
.workflow-team.is-entering::after {
  opacity: 0;
}

.workflow-task.is-output-linking::before,
.workflow-task.is-output-linking::after,
.workflow-task.has-output-link::before,
.workflow-task.has-output-link::after {
  opacity: 1;
}

.workflow-task.is-output-linking::after {
  transform: scaleX(1);
}

.workflow-task:not(.has-output-link):not(.is-output-linking)::after {
  transform: scaleX(0);
}

.workflow-task:not(.has-output-link):not(.is-output-linking)::before {
  opacity: 0;
}

.workflow-team.is-entering .workflow-team-meta,
.workflow-team.is-entering .workflow-team-progress,
.workflow-team.is-entering .workflow-team-value {
  opacity: 0;
}

.workflow-team-title {
  display: grid;
  gap: 4px;
}

.workflow-team-title span {
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-source::after,
.workflow-task::after,
.workflow-team::after,
.workflow-manager-core::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(191, 212, 255, 0.14), rgba(191, 212, 255, 0.68), rgba(191, 212, 255, 0.06)),
    linear-gradient(90deg, rgba(191, 212, 255, 0.75) 0 20%, rgba(191, 212, 255, 0) 20% 100%);
  background-repeat: no-repeat, repeat-x;
  background-size: 100% 1px, 14px 1px;
  animation: workflow-line-flow 2.1s linear infinite;
}

.workflow-source::before,
.workflow-task::before,
.workflow-team::before,
.workflow-manager-core::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 999px;
  background: rgba(191, 212, 255, 0.92);
  box-shadow: 0 0 12px rgba(191, 212, 255, 0.42);
  animation: workflow-node-pulse 2.8s ease-in-out infinite;
}

.workflow-team::before,
.workflow-team::after {
  display: none;
}

.workflow-team-meta,
.workflow-team-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.workflow-team-meta strong {
  font-size: 0.86rem;
  font-weight: 700;
}

.workflow-team-meta span,
.workflow-team-value {
  color: var(--text-faint);
  font-size: 0.74rem;
}

.workflow-team-progress {
  order: 3;
  margin-top: auto;
  margin-left: -14px;
  margin-right: -14px;
  margin-bottom: -12px;
  width: calc(100% + 28px);
  height: 5px;
  overflow: hidden;
  border-radius: 0;
  background: rgba(38, 26, 66, 0.36);
}

.workflow-team-bar {
  display: block;
  position: relative;
  height: 100%;
  width: var(--workflow-progress, 0%);
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(60, 30, 132, 0.98), rgba(110, 62, 184, 0.98));
  animation: workflow-progress 1.4s ease-out forwards;
  transform-origin: left center;
  transition: width 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-team-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(190, 163, 255, 0.26) 0 8px,
      rgba(190, 163, 255, 0.05) 8px 16px
    );
  background-size: 36px 100%;
  will-change: background-position;
  animation: workflow-zebra-slide 1.2s linear infinite;
}

.practice-side {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 20px;
  align-content: start;
  min-height: 100%;
  height: 100%;
}

.practice-body {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0;
}

.practice-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.practice-title-row h3 {
  flex: 1;
  min-width: 0;
}

.practice-actions {
  display: flex;
  align-items: flex-start;
  align-self: end;
  gap: 10px;
}

.practice-actions .button-download {
  min-height: auto;
  padding: 0;
  justify-content: flex-start;
}

.practice-mailbox {
  position: relative;
  flex-shrink: 0;
  isolation: isolate;
}

.mailbox-trigger {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(191, 212, 255, 0.28);
  background: rgba(8, 13, 22, 0.82);
  color: var(--accent-2);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mailbox-trigger:hover,
.mailbox-trigger:focus-visible {
  border-color: rgba(191, 212, 255, 0.52);
  background: rgba(16, 25, 40, 0.88);
  transform: translateY(-1px);
}

.mailbox-trigger svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.mailbox-trigger-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #0a0f16;
  background: var(--accent-2);
}

.mailbox-panel {
  position: absolute;
  left: auto;
  right: 0;
  top: calc(100% + 8px);
  width: min(420px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  max-height: 340px;
  overflow: auto;
  border: 1px solid rgba(191, 212, 255, 0.28);
  background:
    radial-gradient(circle at top right, rgba(143, 184, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(11, 17, 27, 0.96), rgba(8, 13, 21, 0.98));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
  padding: 14px;
  z-index: 9990;
  transform-origin: top right;
}

.mailbox-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.mailbox-panel-head strong {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mailbox-panel-count {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 600;
}

.mailbox-empty {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.mailbox-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mailbox-item-link {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  cursor: pointer;
  border: 1px solid rgba(191, 212, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, background 180ms ease;
}

.mailbox-item-link:hover,
.mailbox-item-link:focus-visible {
  border-color: rgba(191, 212, 255, 0.46);
  background: rgba(143, 184, 255, 0.08);
}

.mailbox-item-subject {
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.45;
}

.mailbox-item-meta {
  color: var(--text-faint);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

body.mailbox-viewer-open {
  overflow: hidden;
}

.mailbox-viewer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(4, 8, 14, 0.72);
  display: grid;
  place-items: center;
  padding: 20px;
}

.mailbox-viewer[hidden],
.mailbox-panel[hidden] {
  display: none !important;
}

.mailbox-viewer-shell {
  width: min(1040px, calc(100vw - 40px));
  height: min(80vh, 760px);
  border: 1px solid rgba(191, 212, 255, 0.28);
  background: rgba(7, 12, 20, 0.98);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.52);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.mailbox-viewer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(191, 212, 255, 0.2);
}

.mailbox-viewer-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mailbox-viewer-close {
  border: 1px solid rgba(191, 212, 255, 0.24);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  cursor: pointer;
}

.mailbox-viewer-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #06090f;
}

.practice-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.practice-body h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.practice-description {
  font-size: 0.98rem;
  line-height: 1.85;
}

.practice-description p {
  margin: 0;
}

.practice-description p + p {
  margin-top: 14px;
}

.practice-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(191, 212, 255, 0.86);
}

.button-download[aria-disabled="true"] {
  opacity: 0.56;
  pointer-events: none;
}

.practices-shell {
  padding-top: 18px;
}

.practices-page {
  min-height: calc(100vh - 48px);
  border-top: 0;
}

.practices-header {
  gap: 22px;
}

.practices-page h1 {
  margin: 0;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.practices-intro {
  max-width: min(44ch, 100%);
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.practice-filter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.practice-filter-link {
  display: grid;
  gap: 8px;
  padding: 18px 0 20px 20px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: color 180ms ease, background 180ms ease;
}

.practice-filter-link:last-child {
  border-right: 0;
}

.practice-filter-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 212, 255, 0.88), rgba(191, 212, 255, 0));
  opacity: 0;
  transition: opacity 180ms ease;
}

.practice-filter-link:hover,
.practice-filter-link:focus-visible,
.practice-filter-link.is-active {
  color: var(--accent-2);
}

.practice-filter-link.is-active {
  background: linear-gradient(180deg, rgba(143, 184, 255, 0.06), rgba(143, 184, 255, 0));
}

.practice-filter-link:hover::after,
.practice-filter-link:focus-visible::after,
.practice-filter-link.is-active::after {
  opacity: 1;
}

.practice-filter-index {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.practice-filter-name {
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.solutions-shell {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 100dvh;
  transform: none;
  transition: none;
}

.solutions-shell main {
  display: block;
  margin-top: 0;
}

.solutions-shell .topbar {
  position: relative;
  top: 0;
  margin: 20px var(--gutter) 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(126, 138, 156, 0.22);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  box-shadow: 0 10px 30px rgba(15, 17, 21, 0.08);
}

.solutions-shell .brand-copy strong {
  color: #000000;
}

.solutions-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px var(--gutter) 24px;
  padding: 0 16px;
  position: relative;
  top: 0;
  z-index: 10;
  background: transparent;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(48, 62, 82, 0.66);
}

.solutions-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.solutions-breadcrumb a:hover,
.solutions-breadcrumb a:focus-visible {
  color: rgba(22, 34, 50, 0.98);
}

.solutions-breadcrumb-current {
  color: rgba(22, 34, 50, 0.98);
}

.solution-page {
  min-height: calc(100vh - 48px);
  border-top: 0;
}

.solutions-shell main > .solution-page {
  height: auto;
  min-height: 100dvh;
  overflow: visible;
}

.solutions-shell main > .solution-page > .section-frame {
  height: auto;
  min-height: 100dvh;
  overflow: visible;
}

/* Release the solutions deck from viewport-locked panels.
   Embedded apps like Superset need normal document flow to avoid focus/scroll jumps. */
.property-slide-container,
.property-challenge-container,
.property-needs-container,
.property-org-container,
.property-framework-container,
.property-demo-container,
.property-workbench-container,
.property-compliance-container {
  height: auto;
  min-height: 100dvh;
  overflow: visible;
}

.property-solution-frame {
  gap: 0;
  min-height: 100dvh;
  padding: 0;
}

.property-slide-container {
  width: 100%;
  height: auto;
  min-height: 100dvh;
  background: #ffffff;
  display: flex;
  position: relative;
  overflow: hidden;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
}

.property-solution-page {
  min-height: 100dvh;
  margin-bottom: 0;
  border-top: 0;
  background: #ffffff;
}

.property-solution-page .section-frame {
  padding: 0;
  min-height: 100dvh;
  height: auto;
}

.solutions-shell main {
  padding-top: 0;
}

.property-left-content {
  flex: 1;
  padding-top: 185px;
  padding-left: 80px;
  z-index: 2;
}

.solution-page .property-slide-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 0;
  color: #333333;
  line-height: 1.2;
}

.property-title-line {
  position: absolute;
  left: 80px;
  right: 80px;
  top: 418px;
  height: 2px;
  background: #2f3136;
  z-index: 1;
}

.property-video-wrap {
  position: absolute;
  left: 80px;
  top: 454px;
  width: min(42vw, 680px);
  aspect-ratio: 16 / 9;
  z-index: 2;
  overflow: hidden;
  border-radius: 14px;
  background: #0f1115;
  box-shadow: 0 16px 40px rgba(15, 17, 21, 0.16);
}

.property-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-video-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  font-family: "Montserrat", "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.property-video-line {
  position: absolute;
  left: 80px;
  right: 80px;
  top: auto;
  bottom: 0;
  height: 2px;
  background: #2f3136;
  z-index: 1;
}

.property-slide-copy {
  position: absolute;
  right: 80px;
  top: 273px;
  max-width: 420px;
  z-index: 2;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 600;
  color: #333333;
  text-align: left;
}

.property-slide-copy p {
  margin: 0;
}

.property-slide-copy-lead {
  font-size: 1.02rem;
  line-height: 1.4;
}

.property-slide-copy-lead + .property-slide-copy-lead {
  margin-top: 8px;
}

.property-slide-copy-body-block {
  position: absolute;
  right: 80px;
  top: 454px;
  max-width: 640px;
  z-index: 2;
}

.property-slide-copy-body {
  margin: 0;
  font-size: 1.376rem;
  line-height: 1.65;
  font-weight: 500;
  color: #45484e;
}

.property-slide-copy-note {
  margin: 66px 0 0;
  font-size: 0.688rem;
  line-height: 1.7;
  font-weight: 500;
  color: #5f6670;
}

.property-challenge-page {
  min-height: auto;
  margin-bottom: 0;
  border-top: 0;
  background: #ffffff;
}

.solutions-shell main > .property-challenge-page {
  height: auto;
  min-height: auto;
  overflow: visible;
}

.property-efficiency-page {
  min-height: 50dvh;
  margin-bottom: 0;
  border-top: 0;
  background: #f3f4f6;
}

.solutions-shell main > .property-efficiency-page {
  height: 50dvh;
  min-height: 50dvh;
  overflow: hidden;
}

.property-efficiency-frame {
  min-height: 50dvh;
  padding: 0;
}

.solutions-shell main > .property-efficiency-page > .property-efficiency-frame {
  height: 50dvh;
  min-height: 50dvh;
  overflow: hidden;
}

.property-efficiency-container {
  width: 100%;
  min-height: 50dvh;
  box-sizing: border-box;
  padding: 56px 80px 40px;
  background: #f3f4f6;
  position: relative;
}

.property-efficiency-chart-column {
  position: absolute;
  left: 80px;
  top: 150px;
  width: min(42vw, 680px);
  height: min(33.8vh, 338px);
}

.property-efficiency-chart-card {
  width: 100%;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
}

.property-efficiency-source {
  margin: 12px 0 0;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
}

.property-efficiency-copy {
  position: absolute;
  left: calc(80px + min(42vw, 680px) + 448px);
  top: 268px;
  width: min(28vw, 420px);
}

.property-efficiency-copy-text {
  margin: 0;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 500;
  color: #4b5563;
}

.property-efficiency-header {
  margin: 0;
  position: relative;
  z-index: 1;
}

.property-efficiency-title {
  margin: 0;
  max-width: 980px;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #333333;
}

.property-efficiency-bottom-line {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 0;
  height: 2px;
  background: #2f3136;
}

.property-ai-impact-page {
  min-height: 72dvh;
  margin-bottom: 0;
  border-top: 0;
  background: #ffffff;
}

.property-ai-impact-frame {
  min-height: 72dvh;
  padding: 0;
}

.property-ai-impact-container {
  width: 100%;
  min-height: 72dvh;
  box-sizing: border-box;
  padding: 72px 80px 56px;
  background: #ffffff;
  position: relative;
}

.solutions-shell main > .property-ai-impact-page {
  height: 72dvh;
  min-height: 72dvh;
  overflow: hidden;
}

.solutions-shell main > .property-ai-impact-page > .property-ai-impact-frame {
  height: 72dvh;
  min-height: 72dvh;
  overflow: hidden;
}

.property-ai-impact-header {
  margin: 0;
}

.property-ai-impact-title {
  margin: 0;
  max-width: 980px;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #333333;
}

.property-ai-impact-copy {
  position: absolute;
  left: 50%;
  top: 50dvh;
  width: min(52vw, 860px);
  transform: translate(-50%, -184%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.property-ai-impact-copy-body {
  flex: 1;
}

.property-ai-impact-copy-text {
  margin: 0;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
  font-size: 1.08rem;
  line-height: 1.95;
  font-weight: 500;
  color: #4b5563;
  text-align: center;
}

.property-ai-impact-copy-text + .property-ai-impact-copy-text {
  margin-top: 18px;
}

.property-ai-impact-quote {
  flex: 0 0 auto;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 3.24rem;
  line-height: 1;
  font-weight: 600;
  color: #9ca3af;
  transform: translateY(-50px);
}

.property-ai-impact-metrics {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 130px;
  width: min(58vw, 920px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 300px;
}

.property-ai-impact-metric-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.property-ai-impact-metric-badge {
  position: absolute;
  left: calc(100% + 12px);
  top: auto;
  bottom: 0;
  max-width: 180px;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
}

.property-ai-impact-metric {
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 3.78rem;
  line-height: 1;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0.02em;
}

.property-ai-impact-bottom-line {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 0;
  height: 2px;
  background: #2f3136;
}

.property-kpi-page {
  min-height: auto;
  margin-bottom: 0;
  border-top: 0;
  background: #ffffff;
}

.property-kpi-frame {
  min-height: auto;
  padding: 0;
}

.property-kpi-container {
  width: 100%;
  min-height: auto;
  box-sizing: border-box;
  padding: 72px 80px 52px;
  background: #ffffff;
  position: relative;
}

.solutions-shell main > .property-kpi-page {
  height: auto;
  min-height: auto;
  overflow: visible;
}

.solutions-shell main > .property-kpi-page > .property-kpi-frame {
  height: auto;
  min-height: auto;
  overflow: visible;
}

.property-kpi-header {
  margin: 0;
}

.property-kpi-title {
  margin: 0;
  max-width: 980px;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #333333;
}

.property-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 72px;
}

.property-kpi-card {
  min-height: 420px;
  padding: 32px 32px 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.property-kpi-card-hard {
  background: #d1d5db;
}

.property-kpi-card-experience {
  background: #6b7280;
}

.property-kpi-card-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 1.32rem;
  line-height: 1.45;
  font-weight: 600;
  color: #111827;
}

.property-kpi-card-experience .property-kpi-card-title,
.property-kpi-card-experience .property-kpi-item {
  color: #f9fafb;
}

.property-kpi-list {
  margin: 28px 0 0;
  padding-left: 1.2em;
}

.property-kpi-item {
  margin: 0;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
  font-size: 1.02rem;
  line-height: 1.85;
  font-weight: 500;
  color: #374151;
}

.property-kpi-item + .property-kpi-item {
  margin-top: 18px;
}

.property-kpi-bottom-line {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 0;
  height: 2px;
  background: #2f3136;
}

.property-challenge-frame {
  gap: 0;
  min-height: auto;
  padding: 0;
}

.solutions-shell main > .property-challenge-page > .property-challenge-frame {
  height: auto;
  min-height: auto;
  overflow: visible;
}

.property-challenge-container {
  width: 100%;
  min-height: auto;
  background: #ffffff;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
  box-sizing: border-box;
  padding: 60px 80px 0;
}

.property-challenge-header {
  margin: 0;
}

.property-challenge-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #333333;
  line-height: 1.3;
}

.property-challenge-accent-line {
  width: 60px;
  height: 4px;
  background: #e07a5f;
  margin-top: 10px;
}

.property-challenge-content {
  display: flex;
  gap: 40px;
  padding-top: 60px;
}

.property-challenge-text-column {
  flex: 1;
  padding-right: 12px;
}

.property-challenge-chart-column {
  flex: 1;
}

.property-challenge-highlight-text {
  margin: 26px 0 0;
  font-size: 16px;
  color: #4f4f4f;
  line-height: 1.6;
}

.property-challenge-highlight-line {
  width: calc(200% + 40px);
  height: 2px;
  margin-top: 162px;
  margin-left: 0;
  background: #2f3136;
}

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

.property-role-card {
  position: relative;
  border: 1px solid rgba(184, 191, 204, 0.42);
  border-radius: 16px;
  min-height: 190px;
  overflow: hidden;
}

.property-role-image {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  background: #dde3ea;
}

.property-role-name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
  background: linear-gradient(180deg, rgba(15, 17, 21, 0.08), rgba(15, 17, 21, 0.34));
}

.property-challenge-point-item {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  font-size: 18px;
  color: #4f4f4f;
  line-height: 1.6;
}

.property-challenge-point-dot {
  width: 8px;
  height: 8px;
  margin-right: 12px;
  margin-top: 0.58em;
  flex: 0 0 8px;
  background: #3d5a80;
}

.property-challenge-chart-container {
  height: 430px;
  position: relative;
}

.property-challenge-source-tag {
  margin: 10px 0 0;
  width: 100%;
  font-size: 14px;
  color: #888888;
  text-align: center;
}

.property-needs-page {
  min-height: 100dvh;
  margin-bottom: 0;
  border-top: 0;
  background: #ffffff;
}

.property-needs-frame {
  gap: 0;
  min-height: 100dvh;
  padding: 0;
}

.property-needs-container {
  width: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: 0 80px 56px;
  background: #ffffff;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
}

.property-needs-header {
  margin: 0 0 40px;
}

.property-needs-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #333333;
  line-height: 1.3;
}

.property-needs-accent-line {
  width: 60px;
  height: 4px;
  margin-top: 10px;
  background: #e07a5f;
}

.property-needs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-top: 20px;
}

.property-need-item {
  min-height: 180px;
  padding: 30px;
  background: #1a222d;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.property-need-icon {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 28px;
  color: #ffffff;
}

.property-need-title {
  margin: 0 0 10px;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.property-need-desc {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.property-needs-summary {
  margin: 68px 0 0;
  font-size: 36px;
  line-height: 1.65;
  color: #3f4752;
}

.property-needs-summary-line {
  width: 100%;
  height: 2px;
  margin-top: 70px;
  background: #2f3136;
}

.property-org-page {
  min-height: 100dvh;
  margin-bottom: 0;
  border-top: 0;
  background: #0f1115;
}

.property-org-frame {
  gap: 0;
  min-height: 100dvh;
  padding: 0;
}

.property-org-container {
  width: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: 60px 80px 86px;
  background: #0f1115;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
}

.property-org-header {
  margin: 40px 0 40px;
}

.property-org-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #f3f5f7;
}

.property-org-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  position: relative;
}

.property-org-summary {
  padding-top: 30px;
  position: relative;
  z-index: 2;
}

.property-org-summary-kicker {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.property-org-summary-title {
  margin: 0 0 22px;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.property-org-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.property-org-summary-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 5px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.property-org-summary-item:first-child {
  margin-top: 0;
}

.property-org-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  transform: translateY(30px);
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding: 32px 28px 30px;
  padding-left: 428px;
  background-color: transparent;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.property-org-grid::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 120px;
  left: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

.property-org-grid::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 120px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 0;
}

.property-org-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.property-org-link {
  fill: rgba(255, 255, 255, 0.22);
}

.property-org-bottom-line {
  width: 100%;
  height: 2px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.92);
}

.property-framework-page {
  min-height: 100dvh;
  margin-bottom: 0;
  border-top: 0;
  background: #ffffff;
}

.property-framework-frame {
  gap: 0;
  min-height: 100dvh;
  padding: 0;
}

.property-framework-container {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: 250px 80px 56px;
  background: #ffffff;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
}

.property-framework-header {
  margin: -50px 0 30px;
}

.property-framework-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #333333;
}

.property-framework-accent-line {
  width: 60px;
  height: 4px;
  margin-top: 10px;
  background: #e07a5f;
  display: none;
}

.property-framework-loop-banner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  min-height: 60px;
  margin-top: 50px;
  padding: 0 20px;
  background: #2f3136;
  color: #ffffff;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 18px;
}

.property-framework-loop-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.property-framework-loop-arrow {
  color: rgba(255, 255, 255, 0.5);
  flex: 0 0 auto;
}

.property-framework-modules {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding-top: 140px;
}

.property-framework-top-line {
  width: 100%;
  height: 2px;
  margin-top: 40px;
  transform: translateY(100px);
  background: #111318;
}

.property-framework-bottom-line {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 24px;
  height: 1px;
  background: #111111;
}

.property-framework-card {
  min-height: 380px;
  padding: 30px 20px 24px;
  background: #f8f9fa;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.property-framework-card-icon {
  margin-bottom: 20px;
  font-size: 32px;
  color: #111318;
}

.property-framework-card-title {
  min-height: 50px;
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}

.property-framework-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  color: #4f4f4f;
}

.property-framework-card-list li {
  position: relative;
  margin-top: 8px;
  padding-left: 15px;
}

.property-framework-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e07a5f;
}

.property-demo-page {
  min-height: 100dvh;
  margin-bottom: 0;
  border-top: 0;
  background: #ffffff;
}

.property-demo-frame {
  gap: 0;
  min-height: 100dvh;
  padding: 0;
  background: transparent;
}

.property-demo-container {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: 150px 80px 56px;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
  background: #ffffff;
}

.property-demo-header {
  margin: -50px 0 30px;
}

.property-demo-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #333333;
}

.property-demo-summary {
  max-width: 920px;
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: #4e5562;
}

.property-demo-pipeline {
  display: grid;
  grid-template-columns: repeat(9, auto);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(41, 49, 68, 0.08);
  backdrop-filter: blur(14px);
}

.property-demo-pipeline-item {
  display: grid;
  gap: 2px;
}

.property-demo-pipeline-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7b6e58;
}

.property-demo-pipeline-item strong {
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 0.95rem;
  color: #1f2430;
}

.property-demo-pipeline-arrow {
  color: rgba(31, 36, 48, 0.36);
}

.property-demo-bottom-line {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 24px;
  height: 1px;
  background: #111111;
}

.property-intake-page {
  min-height: 100dvh;
  margin-bottom: 0;
  border-top: 0;
  background: #ffffff;
}

.property-intake-frame {
  gap: 0;
  min-height: 100dvh;
  padding: 0;
  background: transparent;
}

.property-intake-container {
  width: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: 250px 80px 56px;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
  background: #ffffff;
}

.property-intake-header {
  margin: -50px 0 30px;
}

.property-intake-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #333333;
}

.property-intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
  gap: 28px;
  align-items: stretch;
}

.property-intake-stage,
.property-intake-panel {
  min-height: 670px;
  box-sizing: border-box;
}

.property-intake-stage {
  position: relative;
  display: grid;
  align-content: stretch;
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.property-intake-orb-shell {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: transparent;
}

.property-intake-orb-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.property-intake-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.property-intake-status {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  width: min(320px, calc(100% - 56px));
  max-width: 38ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #5d6675;
}

.property-intake-progress {
  position: absolute;
  top: 108px;
  left: 28px;
  z-index: 3;
  width: min(280px, calc(100% - 56px));
  display: none;
  gap: 10px;
}

.property-intake-progress[data-active="true"] {
  display: grid;
}

.property-intake-progress-track {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 5px;
  background: rgba(17, 22, 29, 0.08);
}

.property-intake-progress-bar {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #11161d, #4f5968);
  animation: propertyDemoWorkorderProgress 1.2s linear infinite;
}

.property-intake-progress-text {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d7380;
}

.property-intake-transcript {
  position: absolute;
  left: 28px;
  bottom: -22px;
  z-index: 3;
  width: min(360px, calc(100% - 56px));
  min-height: 72px;
}

.property-intake-chat-list {
  display: grid;
  gap: 8px;
  min-height: 72px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.property-intake-chat-list::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.property-intake-panel {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 28px 30px;
  background: #f7f8fa;
}

.property-intake-panel-head {
  display: grid;
  gap: 8px;
}

.property-intake-panel-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c818b;
}

.property-intake-panel-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 24px;
  line-height: 1.4;
  color: #1f2430;
}

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

.property-intake-field {
  display: grid;
  gap: 8px;
}

.property-intake-field-full {
  grid-column: 1 / -1;
}

.property-intake-field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a919d;
}

.property-intake-field-value {
  min-height: 24px;
  font-size: 15px;
  line-height: 1.75;
  color: #202633;
  word-break: break-word;
}

.property-intake-field-value[id="property-intake-status-value"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  border: 1px solid rgba(113, 123, 140, 0.22);
  background: rgba(113, 123, 140, 0.08);
  color: #5f6a7e;
}

.property-intake-field-value[id="property-intake-status-value"][data-status-tone="pending"] {
  border-color: rgba(212, 149, 24, 0.24);
  background: rgba(255, 196, 63, 0.14);
  color: #9b6700;
}

.property-intake-field-value[id="property-intake-status-value"][data-status-tone="active"] {
  border-color: rgba(29, 132, 214, 0.24);
  background: rgba(64, 165, 255, 0.14);
  color: #005ea6;
}

.property-intake-field-value[id="property-intake-status-value"][data-status-tone="done"] {
  border-color: rgba(35, 161, 92, 0.24);
  background: rgba(45, 196, 108, 0.14);
  color: #157348;
}

.property-intake-field-value[id="property-intake-status-value"][data-status-tone="alert"] {
  border-color: rgba(214, 68, 68, 0.24);
  background: rgba(255, 95, 95, 0.14);
  color: #b42318;
}

.property-intake-field-value[id="property-intake-status-value"][data-status-tone="neutral"] {
  border-color: rgba(113, 123, 140, 0.22);
  background: rgba(113, 123, 140, 0.08);
  color: #5f6a7e;
}

.property-profile-page {
  min-height: 100dvh;
  height: auto !important;
  margin-bottom: 0;
  border-top: 0;
  background: #ffffff;
  position: relative;
  z-index: 2;
  overflow: visible !important;
}

.property-profile-frame {
  gap: 0;
  min-height: auto;
  height: auto !important;
  padding: 0;
  background: transparent;
  overflow: visible !important;
}

.property-profile-container {
  width: 100%;
  min-height: auto;
  height: auto;
  box-sizing: border-box;
  padding: 100px 80px 140px;
  background: transparent;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
}

.property-profile-header {
  max-width: 980px;
  margin: -50px 0 34px;
}

.property-profile-kicker {
  margin: 0 0 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #65748a;
}

.property-profile-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #1f2430;
}

.property-profile-summary {
  max-width: 860px;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: #536173;
}

.property-profile-layout {
  display: grid;
  grid-template-columns: minmax(560px, 1.28fr) minmax(260px, 0.72fr) minmax(280px, 0.84fr);
  gap: 22px;
  align-items: stretch;
}

.property-profile-graph,
.property-profile-stack,
.property-profile-side {
  min-height: 520px;
}

.property-profile-graph {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  background:
    linear-gradient(90deg, rgba(31, 36, 48, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(31, 36, 48, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 28px 28px, 28px 28px, auto;
  backdrop-filter: blur(14px);
  padding: 20px;
}

.property-profile-graph-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(31, 36, 48, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.property-profile-graph-panel-relations {
  background: rgba(20, 27, 38, 0.96);
  border-color: rgba(73, 167, 255, 0.14);
}

.property-profile-graph-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-profile-graph-kicker,
.property-profile-stack-kicker,
.property-profile-side-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.property-profile-graph-kicker,
.property-profile-stack-kicker {
  color: #728198;
}

.property-profile-entity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.property-profile-entity-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 12px;
  border: 1px solid rgba(31, 36, 48, 0.12);
  background: rgba(244, 247, 251, 0.96);
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #1f2430;
  text-align: center;
}

.property-profile-entity-card-primary {
  border-color: rgba(73, 167, 255, 0.36);
  background: rgba(73, 167, 255, 0.12);
  color: #18446b;
}

.property-profile-relation-board {
  display: grid;
  gap: 10px;
}

.property-profile-relation-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.property-profile-relation-node {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(243, 247, 252, 0.92);
  text-align: center;
}

.property-profile-relation-node-primary {
  border-color: rgba(73, 167, 255, 0.34);
  color: #8dccff;
}

.property-profile-relation-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 28px;
  padding: 0 12px;
  background: linear-gradient(90deg, rgba(73, 167, 255, 0.2), rgba(73, 167, 255, 0.5));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eff6ff;
}

.property-profile-graph-panel-output {
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: start;
}

.property-profile-output-core {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 152px;
  padding: 0 16px;
  border: 1px solid rgba(73, 167, 255, 0.18);
  background: rgba(73, 167, 255, 0.08);
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #1f2430;
  text-align: center;
}

.property-profile-output-list {
  display: grid;
  gap: 10px;
}

.property-profile-output-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.property-profile-output-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 30px;
  padding: 0 10px;
  background: rgba(31, 36, 48, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #607086;
}

.property-profile-output-tag {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(31, 36, 48, 0.1);
  background: rgba(255, 255, 255, 0.94);
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1f2430;
}

.property-profile-stack {
  display: grid;
  gap: 14px;
  align-content: start;
}

.property-profile-stack-item,
.property-profile-side-card {
  padding: 22px 22px 20px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.property-profile-stack-kicker {
  color: #67768b;
}

.property-profile-stack-copy {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: #536173;
}

.property-profile-side {
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.property-profile-side-title {
  margin: 10px 0 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 24px;
  line-height: 1.4;
  color: #1f2430;
}

.property-profile-side-copy {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: #556274;
}

.property-profile-metric-list {
  display: grid;
  gap: 12px;
}

.property-profile-metric {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(31, 36, 48, 0.1);
}

.property-profile-metric:first-child {
  padding-top: 0;
  border-top: 0;
}

.property-profile-metric strong {
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 14px;
  color: #1f2430;
}

.property-profile-metric span {
  font-size: 13px;
  line-height: 1.7;
  color: #657488;
}

.property-profile-runtime {
  position: relative;
  margin-top: 30px;
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.property-profile-superset-frame {
  display: block;
  width: 100%;
  min-height: 980px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.property-profile-superset-frame.is-hidden {
  display: none;
}

.property-profile-superset-status {
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 420px;
  padding: 40px 44px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.98));
  color: #1f2430;
}

.property-profile-superset-status-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
}

.property-profile-superset-status-copy {
  max-width: 640px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #556070;
}

.property-profile-superset-status-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  color: #1f2430;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-workbench-page {
  min-height: 100dvh;
  margin-bottom: 0;
  border-top: 0;
  background: #3d4147;
  position: relative;
  z-index: 1;
}

.property-workbench-frame {
  gap: 0;
  min-height: 100dvh;
  padding: 0;
  background: transparent;
}

.property-workbench-container {
  width: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  position: relative;
  padding: 250px 80px 56px;
  background: #3d4147;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
}

.property-workbench-top-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 216px;
  background: #8d8f94;
}

.property-workbench-header {
  position: absolute;
  top: 64px;
  left: 80px;
  z-index: 2;
  margin: 0;
}

.property-workbench-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
}

.property-workbench-top-ontology {
  position: absolute;
  top: 134px;
  left: 80px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.96);
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  font-size: 11.2px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.property-workbench-top-ontology p {
  margin: 0;
}

.property-workbench-top-ontology p + p {
  margin-top: 2px;
}

.property-workbench-flowboard {
  --workbench-head-height: 56px;
  --workbench-head-gap: 22px;
  --workbench-node-height: 46px;
  --workbench-node-gap: 16px;
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  padding: 232px 80px 64px;
  display: flex;
  align-items: flex-start;
  gap: 120px;
  transform: translateY(50px);
}

.property-workbench-lane {
  position: relative;
  width: 280px;
  min-height: calc(
    var(--workbench-head-height) +
    var(--workbench-head-gap) +
    (var(--workbench-node-height) * 8) +
    (var(--workbench-node-gap) * 7)
  );
}

.property-workbench-lane-agent {
  transform: translateX(50px);
}

.property-workbench-lane-workforce {
  min-height: 180px;
  transform: translateX(100px);
}

.property-workbench-lane-workforce .property-workbench-lane-title {
  white-space: nowrap;
}

.property-workbench-lane-head {
  height: var(--workbench-head-height);
  margin-bottom: var(--workbench-head-gap);
}

.property-workbench-lane-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.property-workbench-lane-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.property-workbench-arrow {
  position: absolute;
  pointer-events: none;
}

.property-workbench-arrow-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(194, 245, 24, 0.14) 0%, rgba(194, 245, 24, 0.92) 100%);
}

.property-workbench-arrow-head {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 22px solid rgba(194, 245, 24, 0.92);
}

.property-workbench-arrow-head-left,
.property-workbench-arrow-head-right {
  top: 50%;
  transform: translateY(-50%);
}

.property-workbench-arrow-head-left {
  left: 0;
  right: auto;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 22px solid rgba(194, 245, 24, 0.92);
  border-left: 0;
}

.property-workbench-arrow-head-right {
  right: 0;
  left: auto;
}

.property-workbench-arrow-agent-task1 {
  position: absolute;
  left: 50%;
  top: 132px;
  width: 36px;
  height: 54px;
  margin: 0;
  transform: translateX(-50%);
}

.property-workbench-arrow-agent-task1 .property-workbench-arrow-line {
  top: 0;
  left: 50%;
  right: auto;
  width: 18px;
  height: calc(100% - 18px);
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(194, 245, 24, 0.14) 0%, rgba(194, 245, 24, 0.92) 100%);
}

.property-workbench-arrow-agent-task1 .property-workbench-arrow-head {
  top: auto;
  right: auto;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-top: 22px solid rgba(194, 245, 24, 0.92);
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-bottom: 0;
}

.property-workbench-arrow-task4-audit {
  position: absolute;
  left: 50%;
  top: calc(
    var(--workbench-head-height) +
    var(--workbench-head-gap) +
    ((var(--workbench-node-height) + var(--workbench-node-gap)) * 6) - 210px
  );
  width: 36px;
  height: 54px;
  margin: 0;
  transform: translateX(-50%);
}

.property-workbench-arrow-task4-audit .property-workbench-arrow-line {
  top: 0;
  left: 50%;
  right: auto;
  width: 18px;
  height: calc(100% - 18px);
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(194, 245, 24, 0.14) 0%, rgba(194, 245, 24, 0.92) 100%);
}

.property-workbench-arrow-task4-audit .property-workbench-arrow-head {
  top: auto;
  right: auto;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-top: 22px solid rgba(194, 245, 24, 0.92);
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-bottom: 0;
}

.property-workbench-arrow-audit-workforce8 {
  left: 828px;
  top: 750px;
  width: 130px;
  height: 36px;
}

.property-workbench-arrow-audit-workforce8 .property-workbench-arrow-line {
  left: 22px;
  right: 22px;
}

.property-workbench-arrow-notice-task2 {
  left: 396px;
  top: 520px;
  width: 95px;
  height: 36px;
}

.property-workbench-data-stack {
  display: grid;
  gap: var(--workbench-node-gap);
}

.property-workbench-agent-system,
.property-workbench-task-node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: var(--workbench-node-height);
  padding: 0 14px;
  border: 1px solid #C2F518;
  background: transparent;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-align: center;
}

.property-workbench-agent-system {
  position: absolute;
  top: calc(var(--workbench-head-height) + var(--workbench-head-gap));
  left: 0;
  right: 0;
  margin-bottom: 0;
}

.property-workbench-task-stack {
  position: absolute;
  top: calc(
    var(--workbench-head-height) +
    var(--workbench-head-gap) +
    ((var(--workbench-node-height) + var(--workbench-node-gap)) * 2)
  );
  left: 0;
  right: 0;
  display: grid;
  gap: var(--workbench-node-gap);
  margin-top: 0;
}

.property-workbench-task-node-audit {
  transform: translateY(calc(var(--workbench-node-height) + var(--workbench-node-gap)));
}

.property-workbench-workforce-stack {
  display: grid;
  gap: var(--workbench-node-gap);
}

.property-workbench-workforce-node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: var(--workbench-node-height);
  padding: 0 14px;
  border: 1px solid #C2F518;
  background: transparent;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-align: center;
}

.property-workbench-copy {
  position: absolute;
  top: 582px;
  right: 80px;
  width: 280px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.9;
}

.property-workbench-copy p {
  margin: 0;
}

.property-workbench-copy p + p {
  margin-top: 18px;
}

.property-workbench-data-node {
  min-height: var(--workbench-node-height);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 14px;
  background: transparent;
  border: 1px solid #C2F518;
  box-shadow: none;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-align: center;
}

.property-demo-layout {
  display: block;
  padding-top: 0;
}

.property-compliance-page {
  min-height: 100dvh;
  margin-bottom: 0;
  border-top: 0;
  background: #ffffff;
}

.property-compliance-frame {
  gap: 0;
  min-height: 100dvh;
  padding: 0;
  background: transparent;
}

.property-compliance-container {
  width: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: 250px 80px 56px;
  background: #ffffff;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
}

.property-compliance-header {
  max-width: 980px;
  margin: -50px 0 40px;
}

.property-compliance-kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7c818b;
}

.property-compliance-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #333333;
}

.property-compliance-summary {
  max-width: 820px;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #4e5562;
}

.property-compliance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.property-compliance-card-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c818b;
}

.property-compliance-card-title {
  max-width: 18ch;
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.32;
  color: #1f2430;
}

.property-compliance-card-copy {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: #4e5562;
}

.property-compliance-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.property-compliance-chip {
  padding: 10px 14px;
  border: 1px solid rgba(36, 48, 68, 0.14);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f3440;
  background: rgba(255, 255, 255, 0.78);
}

.property-compliance-code-stream {
  position: relative;
  min-height: 380px;
  padding: 4px 0 0;
  background: transparent;
  overflow-anchor: none;
}

.property-compliance-code-stream-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.property-compliance-code-label,
.property-compliance-code-status {
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c818b;
}

.property-compliance-code-list {
  display: grid;
  gap: 6px;
  grid-auto-rows: 20px;
  align-content: start;
  margin-top: 35px;
  min-height: 270px;
  max-height: 470px;
  overflow: hidden;
  overflow-anchor: none;
}

.property-compliance-code-line {
  font-family: "IBM Plex Sans", "SFMono-Regular", "Menlo", monospace;
  font-size: 13px;
  line-height: 20px;
  min-height: 20px;
  color: #2a3140;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}

.property-compliance-code-line-match {
  color: #0e141e;
  background: linear-gradient(90deg, rgba(194, 245, 24, 0.24), rgba(194, 245, 24, 0.04));
}

.property-compliance-code-line-fresh {
  animation: propertyComplianceLineIn 260ms ease;
}

.property-compliance-code-query {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 18px;
}

.property-compliance-code-query-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: calc(100% - 111px);
  min-height: 24px;
  padding: 0 64px 0 10px;
  border: 1px solid rgba(42, 49, 64, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.property-compliance-code-query-prompt,
.property-compliance-code-query-run,
.property-compliance-code-query-input,
.property-compliance-code-query-status {
  font-family: "IBM Plex Sans", "SFMono-Regular", "Menlo", monospace;
}

.property-compliance-code-query-prompt {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #88909d;
}

.property-compliance-code-query-input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 11px;
  line-height: 1.4;
  color: #1e2532;
}

.property-compliance-code-query-input::placeholder {
  color: #9aa2ae;
}

.property-compliance-code-query-run {
  position: absolute;
  top: 1px;
  right: 111px;
  min-width: 52px;
  min-height: 22px;
  padding: 0 10px;
  border: 0;
  background: rgba(17, 22, 29, 0.92);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4f6f9;
  cursor: pointer;
}

.property-compliance-code-query-status {
  min-height: 18px;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c818b;
}

.property-compliance-code-tooltip {
  position: absolute;
  z-index: 3;
  min-width: 240px;
  max-width: 320px;
  padding: 12px 14px;
  border: 1px solid rgba(42, 49, 64, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(17, 22, 29, 0.08);
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.property-compliance-code-tooltip.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.property-compliance-code-tooltip-title {
  margin: 0 0 8px;
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7c818b;
}

.property-compliance-code-tooltip-grid {
  display: grid;
  gap: 6px;
}

.property-compliance-code-tooltip-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.property-compliance-code-tooltip-key,
.property-compliance-code-tooltip-value {
  font-family: "IBM Plex Sans", "SFMono-Regular", "Menlo", monospace;
  font-size: 11px;
  line-height: 1.45;
}

.property-compliance-code-tooltip-key {
  color: #88909d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.property-compliance-code-tooltip-value {
  color: #1e2532;
  word-break: break-word;
}

.property-compliance-side-copy {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.72;
  color: #4e5562;
}

.property-compliance-compact {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 4px;
}

.property-compliance-compact-item {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(27, 35, 48, 0.1);
}

.property-compliance-compact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.property-compliance-bottom-line {
  width: 100%;
  height: 1px;
  margin-top: 24px;
  background: rgba(27, 35, 48, 0.14);
}

.property-next-page {
  height: 600px;
  min-height: 600px;
  margin-bottom: 0;
  border-top: 0;
  background: #f1f1f1;
}

.solutions-shell main > .property-next-page {
  height: 600px;
  min-height: 600px;
  overflow: hidden;
}

.property-next-frame {
  gap: 0;
  height: 600px;
  min-height: 600px;
  padding: 0;
  background: transparent;
}

.solutions-shell main > .property-next-page > .property-next-frame {
  height: 600px;
  min-height: 600px;
  overflow: hidden;
}

.property-next-container {
  width: 100%;
  height: 600px;
  min-height: 600px;
  box-sizing: border-box;
  padding: 0 80px;
  background: #f1f1f1;
}

.property-next-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.property-next-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
  height: 100%;
  transform: translateX(200px);
}

.property-next-image {
  display: block;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
}

.property-next-copy {
  position: relative;
  display: flex;
  align-items: center;
  width: 700px;
  height: 321px;
  min-height: 321px;
  padding: 32px 36px;
  box-sizing: border-box;
  margin-right: 280px;
  transform: translateY(-1px);
  flex-shrink: 0;
  background: #ffffff;
}

.property-next-copy-body {
  display: block;
  width: 100%;
  transform: translateY(-20px);
}

.property-next-copy-text {
  margin: 0;
  font-family: "Open Sans", "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  color: #3a3a3a;
}

.property-next-copy-text-secondary {
  font-size: 12px;
}

.property-next-copy-action {
  position: absolute;
  left: 36px;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 38px;
  padding: 0 18px;
  background: #11161d;
  font-family: "IBM Plex Sans", "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}

@keyframes propertyComplianceLineIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.property-demo-stage,
.property-demo-chat,
.property-demo-ticket {
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.property-demo-stage {
  position: relative;
  top: auto;
  display: grid;
  align-content: start;
  gap: 0;
  min-height: calc(100dvh - 280px);
  overflow: hidden;
  background: #ffffff;
}

.property-demo-stage::after {
  content: none;
}

.property-demo-orb-shell {
  position: relative;
  min-height: calc(100dvh - 400px);
  overflow: hidden;
  background: #ffffff;
}

.property-demo-orb-shell::before {
  content: none;
}

.property-demo-orb-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.property-demo-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.property-demo-workorder-progress {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 3;
  width: min(280px, calc(100% - 96px));
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.property-demo-workorder-progress[data-active="true"] {
  opacity: 1;
  transform: translateY(0);
}

.property-demo-workorder-progress-track {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: rgba(31, 36, 48, 0.08);
}

.property-demo-workorder-progress-bar {
  position: absolute;
  inset: 0 auto 0 -38%;
  width: 38%;
  background: linear-gradient(90deg, rgba(31, 36, 48, 0), rgba(31, 36, 48, 0.86), rgba(31, 36, 48, 0));
  animation: property-demo-progress-slide 1.15s linear infinite;
}

.property-demo-workorder-progress-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: rgba(31, 36, 48, 0.54);
}

@keyframes property-demo-progress-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(360%);
  }
}

.property-demo-transcript {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  width: min(360px, calc(100% - 56px));
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.property-demo-drawer-toggle {
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 6;
  width: 44px;
  height: 92px;
  padding: 0;
  border: 1px solid rgba(40, 40, 45, 0.08);
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.property-demo-drawer-toggle-icon {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  border-top: 2px solid #2f3136;
  border-right: 2px solid #2f3136;
  transform: rotate(45deg);
}

.property-demo-drawer {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: min(460px, 42vw);
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-left: 1px solid rgba(40, 40, 45, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.property-demo-stage[data-drawer-open="true"] .property-demo-drawer {
  transform: translateX(0);
}

.property-demo-stage[data-drawer-open="true"] .property-demo-drawer-toggle-icon {
  width: 14px;
  height: 14px;
  border: 0;
  transform: none;
}

.property-demo-stage[data-drawer-open="true"] .property-demo-drawer-toggle-icon::before,
.property-demo-stage[data-drawer-open="true"] .property-demo-drawer-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #2f3136;
  transform-origin: center;
}

.property-demo-stage[data-drawer-open="true"] .property-demo-drawer-toggle-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.property-demo-stage[data-drawer-open="true"] .property-demo-drawer-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.property-demo-drawer-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 22px;
  background: transparent;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.property-demo-drawer-list-panel {
  transform: translateX(0);
}

.property-demo-drawer-detail-panel {
  transform: translateX(100%);
  opacity: 0;
}

.property-demo-drawer[data-detail-open="true"] .property-demo-drawer-list-panel {
  transform: translateX(-18%);
  opacity: 0;
  pointer-events: none;
}

.property-demo-drawer[data-detail-open="true"] .property-demo-drawer-detail-panel {
  transform: translateX(0);
  opacity: 1;
}

.property-demo-drawer-head {
  margin-bottom: 18px;
}

.property-demo-drawer-head-detail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.property-demo-drawer-head-detail > div {
  display: flex;
  align-items: center;
  min-height: 21px;
  transform: translateY(1px);
}

.property-demo-drawer-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(47, 49, 54, 0.48);
}

.property-demo-drawer-title {
  margin: 0;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: #1f2430;
}

.property-demo-drawer-back {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(47, 49, 54, 0.56);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  cursor: pointer;
}

.property-demo-workorder-list {
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: none;
}

.property-demo-workorder-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.property-demo-workorder-item {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(40, 40, 45, 0.08);
  background: rgba(245, 245, 245, 0.72);
  cursor: pointer;
}

.property-demo-workorder-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.property-demo-workorder-no {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: #1f2430;
}

.property-demo-workorder-time {
  font-size: 0.8rem;
  color: rgba(47, 49, 54, 0.48);
  white-space: nowrap;
}

.property-demo-workorder-summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #2f3136;
}

.property-demo-workorder-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.property-demo-workorder-owner {
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(47, 49, 54, 0.52);
  white-space: nowrap;
}

.property-demo-workorder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.property-demo-workorder-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid rgba(40, 40, 45, 0.08);
  font-size: 0.72rem;
  color: rgba(47, 49, 54, 0.76);
  background: rgba(255, 255, 255, 0.78);
}

.property-demo-detail-body {
  display: grid;
  gap: 18px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: none;
}

.property-demo-detail-body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.property-demo-detail-section {
  display: grid;
  gap: 10px;
}

.property-demo-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.property-demo-detail-field-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47, 49, 54, 0.46);
}

.property-demo-detail-field-value {
  font-size: 14px;
  line-height: 1.6;
  color: #1f2430;
}

.property-demo-detail-conversation {
  display: grid;
  gap: 8px;
}

.property-demo-detail-timeline {
  position: relative;
  display: grid;
  gap: 10px;
}

.property-demo-detail-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(47, 49, 54, 0.12);
}

.property-demo-timeline-item {
  position: relative;
  padding-left: 0;
}

.property-demo-timeline-summary {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  list-style: none;
  cursor: pointer;
}

.property-demo-timeline-summary::-webkit-details-marker {
  display: none;
}

.property-demo-timeline-dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border: 1px solid rgba(47, 49, 54, 0.16);
  font-size: 12px;
  font-weight: 700;
  color: #2f3136;
}

.property-demo-timeline-main {
  display: grid;
  gap: 2px;
  padding-top: 3px;
}

.property-demo-timeline-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.property-demo-timeline-title {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: #1f2430;
}

.property-demo-timeline-time {
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(47, 49, 54, 0.46);
  white-space: nowrap;
}

.property-demo-timeline-meta {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(47, 49, 54, 0.52);
}

.property-demo-timeline-detail {
  margin: 8px 0 0 40px;
  font-size: 13px;
  line-height: 1.7;
  color: #2f3136;
}

.property-demo-detail-line {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
}

.property-demo-detail-role {
  font-size: 13px;
  font-weight: 700;
  color: rgba(47, 49, 54, 0.54);
}

.property-demo-detail-text {
  font-size: 14px;
  line-height: 1.7;
  color: #1f2430;
}

.property-demo-empty {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(47, 49, 54, 0.52);
}

.property-demo-chat-list {
  display: grid;
  gap: 8px;
  min-height: 72px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.property-demo-chat-list::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.property-demo-message {
  display: grid;
  grid-template-columns: 92px 20ch;
  align-items: baseline;
  justify-content: start;
  gap: 12px;
  max-width: none;
  padding: 0;
  background: transparent;
}

.property-demo-message-role {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  width: 92px;
  white-space: nowrap;
}

.property-demo-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  width: 20ch;
  max-width: 20ch;
  word-break: break-all;
}

.property-demo-message-user {
  justify-self: start;
  color: #273140;
}

.property-demo-message-user .property-demo-message-role {
  color: #657083;
}

.property-demo-message-agent {
  justify-self: start;
  color: #2f3136;
}

.property-demo-message-agent .property-demo-message-role {
  color: rgba(47, 49, 54, 0.56);
}

.property-org-card {
  min-height: 0;
  padding: 0;
  background: transparent;
  clip-path: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  column-gap: 24px;
  align-items: start;
}

.property-org-card-manager {
  transform: translateY(-30px);
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

.property-org-card-hq {
  transform: translateY(-60px);
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

.property-org-card + .property-org-card {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.property-org-card-manager {
  border-top: 0;
  padding-top: 0;
}

.property-org-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  margin-left: 20px;
}

.property-org-card-title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans SC", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #f3f5f7;
}

.property-org-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  grid-column: 1;
  grid-row: 1;
}

.property-org-item {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.property-org-item:first-child {
  margin-top: 0;
}

.property-org-item-icon {
  margin-top: 0.42em;
  font-size: 13px;
  color: #ffffff;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  border-top: 1px solid var(--line);
}

.pipeline-card {
  padding: 22px 0;
  border-right: 1px solid var(--line);
}

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

.button:focus-visible,
.business-panel:focus-visible,
.solution-nav-item:focus-visible,
.practice-filter-link:focus-visible,
.topnav a:focus-visible {
  outline: 2px solid rgba(143, 184, 255, 0.42);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .business-panel,
  .section-heading-wide,
  .pipeline-grid,
  .practice-filter {
    grid-template-columns: 1fr;
  }

  .architecture-layers {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .architecture-nav {
    gap: 18px;
    padding: 0;
  }

  .architecture-three-viewport {
    min-height: clamp(468px, 86vw, 594px);
    margin: 0;
  }

  .property-slide-container {
    min-height: 100dvh;
  }

  .property-left-content {
    padding-top: 185px;
    padding-left: 56px;
  }

  .solution-page .property-slide-title {
    font-size: 46px;
  }

  .property-title-line {
    left: 56px;
    right: 56px;
    top: 370px;
  }

  .property-video-wrap {
    left: 56px;
    top: 400px;
    width: min(44vw, 540px);
  }

  .property-video-line {
    left: 56px;
    right: 56px;
    top: auto;
    bottom: 0;
  }

  .property-slide-copy {
    right: 56px;
    top: 279px;
    max-width: 280px;
    font-size: 0.95rem;
  }

  .property-slide-copy-body-block {
    right: 56px;
    top: 400px;
    max-width: 420px;
  }

  .property-challenge-container {
    min-height: auto;
    padding: 50px 56px 0;
  }

  .property-challenge-title {
    font-size: 28px;
  }

  .property-challenge-content {
    gap: 28px;
    padding-top: 42px;
  }

  .property-challenge-highlight-text {
    font-size: 18px;
  }

  .property-challenge-highlight-line {
    width: calc(200% + 28px);
    height: 2px;
    margin-top: 162px;
  }

  .property-role-grid {
    gap: 14px;
  }

  .property-role-image {
    height: 168px;
  }

  .property-challenge-point-item {
    font-size: 16px;
  }

  .property-challenge-chart-container {
    height: 360px;
  }

  .property-needs-container {
    padding: 0 56px 44px;
  }

  .property-needs-title {
    font-size: 28px;
  }

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

  .property-needs-summary {
    margin-top: 64px;
    font-size: 28px;
  }

  .property-needs-summary-line {
    margin-top: 68px;
  }

  .property-org-container {
    padding: 50px 56px 74px;
  }

  .property-org-title {
    font-size: 28px;
  }

  .property-org-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
  }

  .property-org-summary {
    padding-top: 22px;
  }

  .property-org-summary-title {
    margin-bottom: 18px;
    font-size: 1.32rem;
  }

  .property-org-summary-item {
    min-height: 0;
    padding: 4px 10px;
    font-size: 0.84rem;
  }

  .property-org-grid {
    gap: 0;
    transform: translateY(30px);
    min-height: 560px;
    padding: 26px 22px 24px;
    padding-left: 242px;
  }

  .property-org-bottom-line {
    margin-top: 32px;
  }

  .property-framework-container {
    padding: 244px 56px 44px;
  }

  .property-framework-title {
    font-size: 28px;
  }

  .property-framework-loop-banner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    padding: 14px 18px;
    min-height: 0;
    font-size: 16px;
  }

  .property-framework-modules {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 132px;
  }

  .property-framework-top-line {
    margin-top: 32px;
    transform: translateY(100px);
  }

  .property-framework-card {
    min-height: 320px;
    padding: 24px 18px 20px;
  }

  .property-framework-card-title {
    min-height: 42px;
    font-size: 16px;
  }

  .property-demo-container {
    padding: 50px 56px 44px;
  }

  .property-demo-title {
    font-size: 28px;
  }

  .property-demo-pipeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-items: center;
    row-gap: 12px;
  }

  .property-demo-pipeline-arrow {
    display: none;
  }

  .property-demo-layout {
    gap: 18px;
  }

  .property-demo-stage {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .property-demo-chat-list {
    min-height: 0;
    max-height: 360px;
  }

  .property-profile-container {
    padding: 50px 56px 44px;
  }

  .property-profile-title {
    font-size: 28px;
  }

  .property-profile-layout {
    grid-template-columns: 1fr;
  }

  .property-profile-runtime {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .property-profile-graph,
  .property-profile-stack,
  .property-profile-side {
    min-height: 0;
  }

  .property-profile-graph {
    min-height: 560px;
  }

  .property-profile-entity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-workbench-top-band {
    height: 216px;
  }

  .property-workbench-header {
    top: 56px;
    left: 56px;
  }

  .property-workbench-title {
    font-size: 28px;
    line-height: 1.24;
  }

  .property-workbench-top-ontology {
    left: 56px;
    font-size: 14px;
  }

  .property-workbench-flowboard {
    padding: 232px 56px 44px;
    gap: 72px;
  }

  .property-workbench-arrow-notice-task2 {
    left: 352px;
    top: 520px;
    width: 78px;
  }

  .property-workbench-arrow-audit-workforce8 {
    left: 724px;
    top: 750px;
    width: 112px;
  }

  .property-workbench-lane {
    width: 240px;
  }

  .property-compliance-container {
    padding: 50px 56px 44px;
  }

  .property-compliance-title {
    font-size: 28px;
  }

  .property-compliance-layout {
    grid-template-columns: 1fr;
  }

  .property-compliance-hero-card {
    min-height: 0;
  }

  .property-workbench-copy {
    right: 56px;
    width: 220px;
    font-size: 14px;
  }

  .property-workbench-data-node {
    min-height: 58px;
    font-size: 16px;
  }

  .property-org-card {
    min-height: 0;
    padding: 0;
    grid-template-columns: minmax(0, 1fr) 88px;
    column-gap: 18px;
  }

  .property-org-card-manager {
    transform: translateY(-30px);
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  .property-org-card-hq {
    transform: translateY(-60px);
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  .property-org-card + .property-org-card {
    margin-top: 8px;
    padding-top: 8px;
  }

  .property-org-card-manager {
    padding-top: 0;
  }

  .property-org-card-header {
    gap: 8px;
    margin-bottom: 0;
    margin-left: 20px;
  }

  .property-org-card-title {
    font-size: 19px;
  }

  .property-org-item {
    margin-top: 0;
    grid-template-columns: 12px minmax(0, 1fr);
    column-gap: 8px;
    font-size: 14px;
  }

  .property-org-links {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 12vw, 4.6rem);
  }

}

@media (max-width: 720px) {
  .site-shell {
    width: 100%;
  }

  .home-page main {
    margin-top: 0;
  }

  .topbar,
  .hero-grid,
  .section-frame {
    width: 100%;
    padding: 18px var(--gutter);
  }

  .topbar {
    position: sticky;
    top: 30px;
    margin-inline: var(--gutter);
  }

  .solutions-shell .topbar {
    position: relative;
    top: 0;
    margin: 20px var(--gutter) 0;
  }

  .solutions-breadcrumb {
    gap: 8px;
    margin: 8px var(--gutter) 24px;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    padding-bottom: 0;
    top: 0;
  }

  .home-page .topbar {
    position: sticky;
    top: 30px;
    left: auto;
    right: auto;
    margin: 0 var(--gutter) 0;
  }

  .home-page .hero-grid {
    padding-top: 18px;
  }

  .architecture-nav {
    gap: 14px;
  }

  .architecture-nav-item {
    font-size: 0.9rem;
  }

  .topnav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .business-summary {
    font-size: 1.12rem;
  }

  .solution-nav-item {
    gap: 0;
  }

  .property-solution-page .section-frame {
    padding: 0;
  }

  .property-efficiency-container {
    min-height: 50dvh;
    padding: 48px 28px 32px;
  }

  .property-efficiency-chart-card {
    padding: 0;
  }

  .property-efficiency-title {
    font-size: 32px;
    line-height: 1.26;
  }

  .property-efficiency-chart-column {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: 286px;
    margin-top: 20px;
  }

  .property-efficiency-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin-top: 20px;
  }

  .property-efficiency-bottom-line {
    left: 28px;
    right: 28px;
  }

  .property-ai-impact-container {
    min-height: 72dvh;
    padding: 72px 28px 40px;
  }

  .property-ai-impact-title {
    font-size: 32px;
    line-height: 1.26;
  }

  .property-ai-impact-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    margin-top: 28px;
  }

  .property-ai-impact-metrics {
    position: absolute;
    left: 28px;
    right: 28px;
    top: auto;
    bottom: 30px;
    width: auto;
    transform: none;
    margin-top: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .property-ai-impact-metric-badge {
    position: static;
    display: block;
    max-width: none;
    margin-bottom: 10px;
    text-align: center;
    white-space: normal;
  }

  .property-ai-impact-metric-item {
    flex-direction: column;
  }

  .property-ai-impact-metric {
    font-size: 3.1rem;
  }

  .property-ai-impact-bottom-line {
    left: 28px;
    right: 28px;
  }

  .property-kpi-container {
    min-height: auto;
    padding: 72px 28px 52px;
  }

  .property-kpi-title {
    font-size: 32px;
    line-height: 1.26;
  }

  .property-kpi-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .property-kpi-card {
    min-height: auto;
    padding: 24px 20px 22px;
  }

  .property-kpi-bottom-line {
    left: 28px;
    right: 28px;
  }

  .property-slide-container {
    min-height: 100dvh;
  }

  .property-left-content {
    padding-top: 185px;
    padding-left: 28px;
    padding-right: 24px;
  }

  .solution-page .property-slide-title {
    font-size: 32px;
    line-height: 1.26;
  }

  .property-title-line {
    left: 28px;
    right: 28px;
    top: 345px;
  }

  .property-video-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: 28px 28px 0;
    aspect-ratio: 16 / 10;
  }

  .property-video-line {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    height: 2px;
    margin: 18px 28px 0;
  }

  .property-slide-copy {
    position: relative;
    right: auto;
    top: auto;
    max-width: none;
    margin: 28px 28px 0;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .property-slide-copy-body-block {
    position: relative;
    right: auto;
    top: auto;
    max-width: none;
    margin: 18px 28px 0;
  }

  .property-challenge-container {
    min-height: auto;
    padding: 34px 28px 0;
  }

  .property-challenge-title {
    font-size: 22px;
    line-height: 1.35;
  }

  .property-challenge-accent-line {
    width: 44px;
    height: 3px;
    margin-top: 8px;
  }

  .property-challenge-content {
    flex-direction: column;
    gap: 18px;
    padding-top: 24px;
  }

  .property-challenge-text-column {
    padding-right: 0;
  }

  .property-challenge-highlight-text {
    margin-top: 18px;
    font-size: 16px;
  }

  .property-challenge-highlight-line {
    width: 100%;
    height: 2px;
    margin-top: 160px;
  }

  .property-role-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .property-role-card {
    min-height: 144px;
  }

  .property-role-image {
    height: 144px;
  }

  .property-role-name {
    font-size: 0.94rem;
  }

  .property-challenge-point-item {
    margin-top: 12px;
    font-size: 14px;
  }

  .property-challenge-chart-container {
    height: 300px;
  }

  .property-challenge-source-tag {
    margin-top: 8px;
    font-size: 12px;
  }

  .property-needs-container {
    padding: 0 28px 30px;
  }

  .property-needs-header {
    margin-bottom: 26px;
  }

  .property-needs-title {
    font-size: 22px;
    line-height: 1.35;
  }

  .property-needs-accent-line {
    width: 44px;
    height: 3px;
    margin-top: 8px;
  }

  .property-needs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 10px;
  }

  .property-need-item {
    min-height: auto;
    padding: 20px 18px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  }

  .property-need-icon {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .property-need-title {
    font-size: 18px;
  }

  .property-need-desc {
    font-size: 14px;
  }

  .property-needs-summary {
    margin-top: 60px;
    font-size: 20px;
  }

  .property-needs-summary-line {
    margin-top: 66px;
  }

  .property-org-container {
    padding: 34px 28px 60px;
  }


  .property-org-header {
    margin: 24px 0 24px;
  }

  .property-org-title {
    font-size: 22px;
    line-height: 1.35;
  }

  .property-org-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .property-org-summary {
    padding-top: 0;
  }

  .property-org-summary-kicker {
    margin-bottom: 8px;
    font-size: 0.64rem;
  }

  .property-org-summary-title {
    margin-bottom: 14px;
    font-size: 1.08rem;
  }

  .property-org-summary-item {
    min-height: 0;
    padding: 4px 8px;
    font-size: 0.88rem;
  }

  .property-org-grid {
    grid-template-columns: 1fr;
    gap: 0;
    transform: translateY(30px);
    min-height: auto;
    padding: 22px 18px 20px;
    padding-left: 18px;
  }

  .property-org-bottom-line {
    margin-top: 24px;
  }

  .property-framework-container {
    padding: 234px 28px 30px;
  }

  .property-framework-header {
    margin: -50px 0 22px;
  }

  .property-framework-title {
    font-size: 22px;
    line-height: 1.35;
  }

  .property-framework-accent-line {
    width: 44px;
    height: 3px;
    margin-top: 8px;
    display: none;
  }

  .property-framework-loop-banner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    padding: 12px 14px;
    min-height: 0;
    font-size: 13px;
  }

  .property-framework-modules {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 124px;
  }

  .property-framework-top-line {
    margin-top: 24px;
    transform: translateY(100px);
  }

  .property-framework-card {
    min-height: auto;
    padding: 20px 16px 18px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  }

  .property-profile-container {
    padding: 34px 28px 30px;
  }

  .property-profile-header {
    margin: 24px 0 24px;
  }

  .property-profile-title {
    font-size: 22px;
    line-height: 1.35;
  }

  .property-profile-summary {
    font-size: 14px;
    line-height: 1.75;
  }

  .property-profile-graph {
    min-height: 520px;
  }

  .property-profile-graph {
    padding: 16px;
    gap: 12px;
  }

  .property-profile-entity-grid {
    grid-template-columns: 1fr;
  }

  .property-profile-relation-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .property-profile-relation-arrow {
    min-width: 0;
    width: fit-content;
  }

  .property-profile-graph-panel-output {
    grid-template-columns: 1fr;
  }

  .property-profile-side-title {
    font-size: 20px;
  }

  .property-profile-runtime {
    margin-top: 22px;
    padding: 12px;
    gap: 12px;
    min-height: 0;
  }

  .property-profile-superset-frame {
    min-height: 360px;
  }

  .property-framework-card-icon {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .property-workbench-top-band {
    height: 216px;
  }

  .property-workbench-header {
    top: 28px;
    left: 28px;
    right: 28px;
  }

  .property-workbench-title {
    font-size: 26px;
    line-height: 1.24;
  }

  .property-workbench-top-ontology {
    top: 88px;
    left: 28px;
    right: 28px;
    font-size: 13px;
    line-height: 1.65;
  }

  .property-workbench-flowboard {
    padding: 224px 28px 30px;
    gap: 28px;
    flex-direction: column;
  }

  .property-workbench-arrow {
    display: none;
  }

  .property-workbench-lane {
    width: min(100%, 240px);
  }

  .property-compliance-container {
    padding: 34px 28px 30px;
  }

  .property-compliance-header {
    margin: 24px 0 24px;
  }

  .property-compliance-title {
    font-size: 22px;
    line-height: 1.35;
  }

  .property-compliance-summary {
    font-size: 14px;
    line-height: 1.75;
  }

  .property-compliance-card-title {
    font-size: 22px;
  }

  .property-compliance-layout {
    grid-template-columns: 1fr;
  }

  .property-compliance-compact-item {
    min-height: auto;
    padding-bottom: 12px;
  }

  .property-workbench-copy {
    position: static;
    width: min(100%, 320px);
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }

  .property-workbench-lane-title {
    font-size: 20px;
  }

  .property-workbench-data-stack {
    gap: 12px;
  }

  .property-workbench-data-node {
    min-height: 52px;
    padding: 0 16px;
    font-size: 15px;
  }

  .property-framework-card-title {
    min-height: auto;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .property-framework-card-list {
    font-size: 13px;
    line-height: 1.7;
  }

  .property-framework-card-list li {
    margin-top: 6px;
  }

  .property-demo-container {
    padding: 34px 28px 30px;
  }

  .property-demo-header {
    margin-bottom: 22px;
  }

  .property-demo-title {
    font-size: 22px;
    line-height: 1.35;
  }

  .property-demo-layout {
    padding-top: 18px;
    gap: 14px;
  }

  .property-demo-stage {
    gap: 18px;
    min-height: 0;
  }

  .property-demo-orb-shell {
    min-height: 290px;
  }

  .property-demo-transcript {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 0;
  }

  .property-demo-drawer-toggle {
    right: 12px;
    width: 38px;
    height: 78px;
  }

  .property-demo-drawer {
    width: min(100%, 420px);
  }

  .property-demo-drawer-panel {
    padding: 20px 16px 16px;
  }

  .property-demo-detail-grid {
    grid-template-columns: 1fr;
  }

  .property-demo-orb {
    width: 168px;
    height: 168px;
  }

  .property-demo-orb-ring-a {
    width: 220px;
    height: 220px;
  }

  .property-demo-orb-ring-b {
    width: 264px;
    height: 264px;
  }

  .property-demo-orb-ring-c {
    width: 308px;
    height: 308px;
  }

  .property-demo-message {
    max-width: none;
    padding: 0;
  }

  .property-demo-message-role {
    font-size: 14px;
    line-height: 1.7;
    width: 92px;
  }

  .property-demo-message p {
    font-size: 14px;
    line-height: 1.7;
    width: 20ch;
    max-width: 20ch;
  }

  .property-org-card {
    min-height: 0;
    padding: 0;
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .property-org-card-manager {
    transform: translateY(-30px);
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  .property-org-card-hq {
    transform: translateY(-60px);
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  .property-org-grid {
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  }

  .property-org-card + .property-org-card {
    margin-top: 10px;
    padding-top: 10px;
  }

  .property-org-card-header {
    gap: 10px;
    margin-bottom: 10px;
    margin-left: 0;
    grid-column: 1;
    grid-row: auto;
  }

  .property-org-card-title {
    font-size: 17px;
  }

  .property-org-item {
    margin-top: 0;
    grid-template-columns: 11px minmax(0, 1fr);
    column-gap: 7px;
    font-size: 14px;
  }

  .property-org-list {
    grid-column: 1;
    grid-row: auto;
  }

  .property-org-card + .property-org-card {
    margin-top: 8px;
    padding-top: 8px;
  }

  .property-org-item-icon {
    margin-right: 8px;
    font-size: 11px;
  }

  .property-org-links {
    display: none;
  }

  .business-panel-nav,
  .business-panel-body {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .business-panel-name {
    font-size: clamp(3.1rem, 14vw, 5rem);
    white-space: nowrap;
  }

  .business-panel-photo {
    width: 100%;
    opacity: 0.28;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 82%);
  }

  .architecture-hero h1 {
    font-size: clamp(2.2rem, 11vw, 4.2rem);
  }

  .architecture-three-viewport {
    min-height: clamp(432px, 106vw, 558px);
  }

  .practice-card {
    grid-template-columns: 1fr;
  }

  .workflow-board {
    grid-template-columns: 1fr;
  }

  .workflow-source::after,
  .workflow-task::after,
  .workflow-team::after,
  .workflow-manager-core::after,
  .workflow-source::before,
  .workflow-task::before,
  .workflow-team::before,
  .workflow-manager-core::before {
    display: none;
  }

  .hero-video {
    object-position: center 50%;
  }

  .pipeline-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pipeline-card:last-child {
    border-bottom: 0;
  }
}

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

  .button,
  .topnav a,
  .solution-nav-item {
    transition: none;
  }

  .hero h1.typing::after {
    animation: none;
  }

  .business-panel-photo.reveal-photo {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    transition: none;
  }

  .workflow-team-bar::before {
    animation: none;
  }

  .architecture-three-overlay {
    transition: none;
  }
}

@keyframes caret-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes workflow-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes workflow-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }

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

@keyframes workflow-ring {
  from {
    transform: scale(0.96);
    opacity: 0.18;
  }

  50% {
    opacity: 0.44;
  }

  to {
    transform: scale(1.03);
    opacity: 0.18;
  }
}

@keyframes workflow-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes workflow-node-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.9);
  }

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

@keyframes workflow-line-flow {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, 18px 0;
  }
}

@keyframes workflow-row-exit-paired {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  70% {
    opacity: 1;
    transform: translateX(84%);
  }

  100% {
    opacity: 0;
    transform: translateX(118%);
  }
}

@keyframes workflow-zebra-slide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 36px 0;
  }
}

@keyframes workflow-code-caret {
  0%,
  49% {
    border-right-color: rgba(191, 212, 255, 0.75);
  }

  50%,
  100% {
    border-right-color: transparent;
  }
}



@keyframes caret-fade {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes char-flash {
  0% {
    opacity: 0;
    filter: brightness(1.6);
  }

  45% {
    opacity: 1;
    filter: brightness(1.25);
  }

  100% {
    opacity: 1;
    filter: brightness(1);
  }
}
