/* VADIX shared navigation — the homepage nav, on every other page (sticky, in flow) */
#vx-nav { min-height: 61px; }
.vx-nav { position: sticky; top: 0; z-index: 100; background: rgba(6,8,13,.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid #1B2332; font-family: 'DM Sans', system-ui, sans-serif; }
.vx-nav-in { display: flex; align-items: center; justify-content: space-between; padding: .95rem 4vw; position: relative; }
.vx-nav-logo { text-decoration: none; display: inline-flex; align-items: center; gap: .55em; }
.vx-nav-logo svg { display: block; }
.vx-nav .vadix-wordmark { font-family: 'Space Grotesk', 'DM Sans', system-ui, sans-serif; font-weight: 600; letter-spacing: .14em; line-height: 1; color: #ECF0F5; font-size: 22px; }
.vx-nav ul { display: flex; gap: 2.2rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.vx-nav ul a { color: #8390A0; text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .25s; }
.vx-nav ul a:hover, .vx-nav ul a[aria-current="page"] { color: #22D3EE; }
.vx-nav .nav-cta { background: #22D3EE; color: #06080D; font-weight: 700; padding: .5rem 1.3rem; border-radius: 6px; font-size: .84rem; transition: opacity .25s; }
.vx-nav .nav-cta:hover { opacity: .85; color: #06080D; }
.vx-nav .nav-toggle { display: none; position: relative; width: 44px; height: 44px; margin: -6px -8px -6px 0; padding: 0; background: transparent; border: 0; border-radius: 8px; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.vx-nav .nav-toggle span { position: absolute; left: 11px; width: 22px; height: 2px; border-radius: 2px; background: #ECF0F5; transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s; }
.vx-nav .nav-toggle span:nth-child(1) { top: 14px; }
.vx-nav .nav-toggle span:nth-child(2) { top: 21px; }
.vx-nav .nav-toggle span:nth-child(3) { top: 28px; }
.vx-nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vx-nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.vx-nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1200px) { .vx-nav ul { gap: 1.4rem; } }
@media (max-width: 1024px) {
  .vx-nav .nav-toggle { display: inline-flex; }
  .vx-nav ul { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: .4rem 4vw 1.1rem; background: rgba(6,8,13,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid #1B2332; box-shadow: 0 24px 48px rgba(0,0,0,.45); max-height: calc(100dvh - 72px); overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-8px); pointer-events: none; transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s; }
  .vx-nav.is-open ul { opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition: opacity .22s ease, transform .22s ease, visibility 0s; }
  .vx-nav ul li a { display: block; padding: .85rem 0; font-size: 1rem; color: #ECF0F5; border-bottom: 1px solid #1B2332; }
  .vx-nav ul li a.nav-cta { display: block; text-align: center; margin-top: .9rem; padding: .85rem 1.3rem; border-bottom: 0; color: #06080D; }
}
/* optional context line under the nav: which product or service this page belongs to */
.vx-subbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .55rem 4vw; border-bottom: 1px solid #1B2332; background: #0A0E14; font-family: 'DM Sans', system-ui, sans-serif; font-size: .82rem; color: #8390A0; }
.vx-subbar b { color: #ECF0F5; font-weight: 600; letter-spacing: .02em; }
.vx-subbar a { color: #8390A0; text-decoration: none; }
.vx-subbar a:hover { color: #ECF0F5; }
