/* V4.4 root-homepage patch. */
main h1,
main h2,
main h3 {
  font-weight: 700;
}

.site-header .nav-cta-secondary {
  border-color: rgba(210, 189, 255, .82);
}

.site-header .nav-cta-secondary:hover,
.site-header .nav-cta-secondary:focus-visible {
  border-color: #d2bdff;
}

.site-footer {
  position: relative;
}

.pathworks-site-version {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: rgba(247, 244, 255, .38);
  font-family: Oxanium, Manrope, sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
  pointer-events: none;
  user-select: none;
}

.pw-principles-route {
  display: none !important;
}

.pathworks-hero-poster {
  grid-area: logo;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}

.va1-canvas {
  z-index: 1;
}

html.pathworks-hero-model-ready .pathworks-hero-poster {
  opacity: 0;
  visibility: hidden;
}

.section-bridge {
  height: clamp(72px, 6vw, 88px);
}

.section-bridge span {
  top: calc(50% - 2px);
  width: calc(50% - 7px);
  height: 5px;
  overflow: hidden;
  container-type: inline-size;
}

.section-bridge span::after {
  width: clamp(140px, 16vw, 220px);
  height: 5px;
}

.section-bridge i {
  z-index: 3;
  width: 14px;
  height: 14px;
  border-color: rgba(255, 255, 255, .5);
  background: var(--color-canvas);
  box-shadow: 0 0 14px rgba(166, 123, 255, .42);
}

.section-bridge.motion-active span:first-child::after {
  animation: bridge-packet-in 6s cubic-bezier(.45, 0, .55, 1) infinite;
}

.section-bridge.motion-active i {
  animation: bridge-node-transfer 6s ease-in-out infinite;
}

.section-bridge.motion-active span:last-child::after {
  animation: bridge-packet-out 6s cubic-bezier(.45, 0, .55, 1) infinite;
}

.proof-metric::before {
  background: linear-gradient(90deg, transparent, rgba(210, 189, 255, .78), transparent);
}

.proof-symbol {
  border-color: rgba(166, 123, 255, .3);
  background: radial-gradient(circle, rgba(166, 123, 255, .075), rgba(166, 123, 255, .025) 62%, transparent);
  box-shadow: 0 0 10px rgba(255, 255, 255, .16), 0 0 20px rgba(166, 123, 255, .16);
}

.proof-section {
  padding-top: clamp(52px, 5vw, 70px);
}

@media (max-width: 620px) {
  .proof-section {
    padding-top: 36px;
  }

  .section-bridge {
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pathworks-hero-poster {
    transition: none;
  }

  .section-bridge span::after,
  .section-bridge i {
    animation: none !important;
  }
}

