.oss-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 24px 0 28px;
  transition: padding 0.3s ease;
}
.oss-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  margin-inline: calc(50% - 50vw);
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: 0 0 0 rgba(10, 10, 15, 0);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
.oss-nav.oss-is-scrolled {
  padding-block: 8px;
}
.oss-nav.oss-is-scrolled::before {
  background: #ffffff;
  border-bottom-color: #e5e5e5;
  box-shadow: 0 10px 28px -16px rgba(10, 10, 15, 0.18);
}
.oss-nav__logo {
  display: inline-flex;
  align-items: center;
  height: 44px;
}
.oss-nav__logo img {
  height: 100%;
  width: auto;
  display: block;
}
.oss-nav__pill {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 12px;
  box-shadow:
    0 12px 28px -12px rgba(10, 10, 15, 0.25),
    0 2px 4px rgba(10, 10, 15, 0.06);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.oss-nav.oss-is-scrolled .oss-nav__pill {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.oss-nav__links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.oss-nav__links > li > a {
  white-space: nowrap;
}
.oss-nav__links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 999px;
  transition:
    color 0.3s ease,
    background 160ms ease;
}
.oss-nav__links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.oss-nav.oss-is-scrolled .oss-nav__links a {
  color: #0a0a0f;
}
.oss-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    visibility 0s linear 160ms;
  z-index: 60;
}
.oss-has-dropdown:hover > .oss-dropdown,
.oss-has-dropdown:focus-within > .oss-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 160ms ease,
    visibility 0s linear 0s;
}
.oss-dropdown__panel {
  background: var(--oss-cyan);
  border: 1px solid var(--oss-cyan);
  border-radius: 16px;
  padding: 0;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 16px 36px -12px rgba(10, 10, 15, 0.18),
    0 2px 6px rgba(10, 10, 15, 0.05);
}
.oss-dropdown__panel a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0f;
  border-radius: 0;
  white-space: nowrap;
  transition: background 160ms ease;
}
.oss-dropdown__panel a:hover {
  background: #00aadd;
  color: #0a0a0f;
}
.oss-dropdown__panel--services {
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 10px;
  min-width: 560px;
}
.oss-dropdown__panel--services a {
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 16px;
}
.oss-dropdown__panel--services a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--oss-cyan);
}
.oss-dropdown__panel--services a[aria-current="page"] {
  color: var(--oss-cyan);
}
.oss-dropdown--wide {
  left: 0;
  transform: none;
}
.oss-dd-panel {
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 18px;
  box-shadow:
    0 28px 56px -18px rgba(0, 0, 0, 0.6),
    0 2px 8px rgba(0, 0, 0, 0.4);
  min-width: 320px;
}
.oss-dd-panel--wide {
  min-width: 680px;
}
.oss-dd-panel {
  max-width: calc(100vw - 32px);
}
.oss-dd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 2px 10px 14px;
}
.oss-dd-head__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oss-cyan);
  white-space: nowrap;
}
.oss-dd-head__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.18s ease;
}
.oss-dd-head__all:hover {
  color: var(--oss-cyan);
}
.oss-dd-head__all span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--oss-cyan);
  color: #0a0a0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.oss-dd-head__all span svg {
  width: 11px;
  height: 11px;
}
.oss-dd-div {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 0 10px;
}
.oss-dd-list {
  display: grid;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.oss-dd-list--2col {
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
}
.oss-nav__links .oss-dd-item {
  display: grid;
  grid-template-columns: 40px 1fr 16px;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: transparent;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.18s ease;
}
.oss-nav__links .oss-dd-item:hover,
.oss-nav__links .oss-dd-item[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
}
.oss-nav__links .oss-dd-tile {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #14141b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oss-cyan);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.oss-nav__links .oss-dd-tile svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
}
.oss-nav__links .oss-dd-item:hover .oss-dd-tile,
.oss-nav__links .oss-dd-item[aria-current="page"] .oss-dd-tile {
  background: var(--oss-cyan);
  border-color: var(--oss-cyan);
  color: #0a0a0f;
}
.oss-nav__links .oss-dd-text {
  display: block;
  min-width: 0;
}
.oss-nav__links .oss-dd-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
  transition: color 0.18s ease;
}
.oss-nav__links .oss-dd-item:hover .oss-dd-name,
.oss-nav__links .oss-dd-item[aria-current="page"] .oss-dd-name {
  color: var(--oss-cyan);
}
.oss-nav__links .oss-dd-desc {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
  text-wrap: pretty;
}
.oss-nav__links .oss-dd-chev {
  width: 16px;
  height: 16px;
  color: var(--oss-cyan);
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.oss-nav__links .oss-dd-item:hover .oss-dd-chev,
.oss-nav__links .oss-dd-item[aria-current="page"] .oss-dd-chev {
  opacity: 1;
  transform: translateX(2px);
}
@media (max-width: 1240px) {
  .oss-dd-panel--wide {
    min-width: 340px;
  }
  .oss-dd-list--2col {
    grid-template-columns: 1fr;
  }
}
.oss-dropdown__group-label {
  padding: 12px 20px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 15, 0.5);
  border-top: 1.5px solid rgba(10, 10, 15, 0.22);
  margin-top: 4px;
  white-space: nowrap;
}
.oss-nav .oss-nav__hamburger {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  transition: background 160ms ease;
  grid-column: 3;
  justify-self: end;
}
.oss-nav .oss-nav__hamburger:hover {
  background: #16161d;
}
.oss-nav__hamburger svg {
  width: 24px;
  height: 24px;
  display: block;
}
.oss-nav__hamburger .oss-icon-close {
  display: none;
}
.oss-nav__hamburger[aria-expanded="true"] .oss-icon-open {
  display: none;
}
.oss-nav__hamburger[aria-expanded="true"] .oss-icon-close {
  display: block;
}
.oss-nav__drawer {
  display: none;
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 4px;
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 12px;
  margin-top: 4px;
  box-shadow:
    0 16px 36px -12px rgba(10, 10, 15, 0.3),
    0 2px 6px rgba(10, 10, 15, 0.08);
  position: absolute;
  left: 0;
  right: 0;
  top: 85px;
}
.oss-nav__drawer[data-open="true"] {
  display: flex;
}
.oss-nav__drawer a.oss-drawer-link {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 160ms ease;
}
.oss-nav__drawer a.oss-drawer-link:hover {
  background: rgba(255, 255, 255, 0.08);
}
.oss-nav__drawer .oss-btn {
  margin-top: 8px;
  align-self: stretch;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .oss-nav {
    gap: 16px;
  }
  .oss-nav__pill {
    display: none;
  }
  .oss-nav__cta {
    display: none;
  }
  .oss-nav .oss-nav__hamburger {
    display: inline-flex;
  }
}

/* Re-asserted over Elementor's `.elementor img` reset — see build/split.py. */
.oss-nav__logo.oss-nav__logo img {
  height: 100%;
  width: auto;
}

/* ── Sticky nav inside Elementor's Theme Builder header ────────────────────
   Measured 2026-08-12: the nav is sticky and the design pins it at top:0, but on the live
   site it scrolled away (navTop -600 at scrollY 600). Theme Builder wraps the widget in four
   containers that are each only as tall as the nav itself (73px), and a sticky element can
   only stick inside its containing block — so there was nowhere to stick. The location
   wrapper is a direct child of <body>, so pinning that is what makes it behave as designed. */
.elementor-location-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
