:root {
  --nv-bg: #050b14;
  --nv-bg-soft: #081525;
  --nv-bg-deep: #03070d;
  --nv-panel: rgba(255, 255, 255, 0.06);
  --nv-panel-strong: rgba(255, 255, 255, 0.10);
  --nv-text: #f5f8fb;
  --nv-muted: #c9d4df;
  --nv-cyan: #16d9ff;
  --nv-teal: #20d6a4;
  --nv-green: #7bdc72;
  --nv-gold: #f3b941;
  --nv-warm-soft: rgba(243, 185, 65, 0.16);
  --nv-line: rgba(255, 255, 255, 0.14);
  --nv-danger-soft: rgba(255, 138, 102, 0.14);
  --nv-radius-sm: 0.75rem;
  --nv-radius-md: 1.25rem;
  --nv-radius-lg: 2rem;
  --nv-shadow-glow: 0 0 60px rgba(22, 217, 255, 0.22);
  --nv-container: 1180px;
  --nv-step-sm: clamp(0.9rem, 0.16vw + 0.86rem, 1rem);
  --nv-step-base: clamp(0.98rem, 0.22vw + 0.92rem, 1.08rem);
  --nv-step-md: clamp(1.08rem, 0.42vw + 0.96rem, 1.28rem);
  --nv-step-lg: clamp(1.42rem, 1vw + 1.08rem, 2rem);
  --nv-step-xl: clamp(1.95rem, 2.4vw + 1.08rem, 3.4rem);
  --nv-step-hero: clamp(2rem, 2.2vw + 0.9rem, 3.35rem);
  --nv-header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% 12%, rgba(243, 185, 65, 0.17), transparent 29rem),
    radial-gradient(circle at 18% 5%, rgba(22, 217, 255, 0.18), transparent 25rem),
    linear-gradient(135deg, var(--nv-bg-deep), var(--nv-bg) 44%, #061722);
  color: var(--nv-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--nv-step-base);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
video {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

a {
  color: var(--nv-cyan);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--nv-green);
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--nv-gold);
  outline-offset: 4px;
}

::selection {
  background: rgba(22, 217, 255, 0.35);
  color: var(--nv-text);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  color: var(--nv-text);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: var(--nv-step-hero);
}

h2 {
  font-size: var(--nv-step-lg);
}

h3 {
  font-size: var(--nv-step-md);
}

p {
  margin: 0 0 1.2rem;
}

ul,
ol {
  margin: 0 0 1.2rem 1.2rem;
  padding: 0;
}

li + li {
  margin-top: 0.35rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--nv-line);
  text-align: left;
  vertical-align: top;
}

th {
  width: 32%;
  color: var(--nv-text);
}

blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--nv-cyan);
  background: var(--nv-panel);
  border-radius: var(--nv-radius-sm);
}

.nv-container {
  width: min(100% - 2rem, var(--nv-container));
  margin-inline: auto;
}

.nv-main {
  min-height: 60vh;
}

.nv-skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--nv-text);
  color: var(--nv-bg);
  font-weight: 800;
}

.nv-skip-link:focus {
  transform: translateY(0);
}

.nv-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nv-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(5, 11, 20, 0.78);
  backdrop-filter: blur(18px);
}

.nv-site-header.is-scrolled {
  border-color: var(--nv-line);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.nv-header-inner {
  min-height: var(--nv-header-height);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nv-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--nv-text);
  text-decoration: none;
  flex: 0 0 auto;
}

.nv-brand__mark {
  filter: drop-shadow(0 0 18px rgba(22, 217, 255, 0.28));
}

.nv-brand__text {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  font-weight: 850;
  font-size: clamp(1.05rem, 0.9vw + 0.72rem, 1.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.nv-brand__domain {
  color: var(--nv-muted);
  font-size: 0.75em;
  align-self: flex-end;
}

.nv-primary-nav {
  margin-left: auto;
}

.nv-menu,
.nv-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nv-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.8vw, 2rem);
}

.nv-menu__link,
.nv-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--nv-text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 720;
  letter-spacing: 0.02em;
  opacity: 0.86;
}

.nv-menu__link:hover,
.nv-menu a:hover,
.nv-menu .current-menu-item > a {
  color: var(--nv-cyan);
  opacity: 1;
}

.nv-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid rgba(22, 217, 255, 0.72);
  border-radius: 999px;
  color: var(--nv-cyan);
  font-weight: 780;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nv-nav-cta:hover {
  color: var(--nv-bg);
  background: linear-gradient(135deg, var(--nv-cyan), var(--nv-teal));
}

.nv-nav-cta--mobile,
.nv-menu-toggle {
  display: none;
}

.nv-section,
.nv-page-content,
.nv-post-list,
.nv-single__body {
  padding-block: clamp(3.4rem, 6vw, 5.6rem);
}

.nv-section__header {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.nv-section__header p,
.nv-page-hero p,
.nv-hero__body,
.nv-prose p,
.nv-card p,
.nv-boundary-copy p {
  color: var(--nv-muted);
}

.nv-section__subtitle,
.nv-hero__subheadline {
  font-size: var(--nv-step-md);
  font-weight: 800;
}

.nv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--nv-cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nv-kicker::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, var(--nv-cyan), var(--nv-gold));
}

.nv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.18rem;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nv-button:hover {
  transform: translateY(-2px);
}

.nv-button--primary {
  background: linear-gradient(135deg, var(--nv-cyan), var(--nv-teal));
  color: #041018;
  box-shadow: 0 20px 55px rgba(22, 217, 255, 0.26);
}

.nv-button--primary:hover {
  color: #041018;
}

.nv-button--secondary {
  color: var(--nv-text);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.nv-button--secondary:hover {
  color: var(--nv-cyan);
  border-color: rgba(22, 217, 255, 0.72);
}

.nv-inline-actions,
.nv-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nv-hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 6.5rem) 2.5rem;
  isolation: isolate;
}

.nv-hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 65% 35%, rgba(22, 217, 255, 0.24), transparent 20rem),
    radial-gradient(circle at 86% 36%, rgba(243, 185, 65, 0.2), transparent 23rem),
    linear-gradient(90deg, rgba(5, 11, 20, 0.96) 0%, rgba(5, 11, 20, 0.72) 48%, rgba(5, 11, 20, 0.38) 100%);
}

.nv-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.nv-hero__content {
  max-width: 650px;
}

.nv-hero h1 {
  max-width: 720px;
  text-wrap: balance;
}

.nv-hero__subheadline {
  margin-bottom: 1.3rem;
  background: linear-gradient(90deg, var(--nv-cyan), var(--nv-green), var(--nv-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nv-hero__body {
  max-width: 610px;
  font-size: var(--nv-step-base);
}

.nv-hero__visual {
  position: relative;
  min-height: auto;
  margin: 0;
  display: grid;
  place-items: center;
}

.nv-hero__image-shell {
  position: relative;
  width: min(100%, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(1rem, 2vw, 1.65rem);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 52px rgba(22, 217, 255, 0.22);
}

.nv-hero__image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 11, 20, 0.34), transparent 35%, rgba(5, 11, 20, 0.16));
}

.nv-hero__image {
  width: 100%;
  aspect-ratio: 1100 / 828;
  object-fit: cover;
}

.nv-principle-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-lg);
  overflow: hidden;
  background: var(--nv-line);
}

.nv-principle-strip article {
  padding: clamp(1.1rem, 2.6vw, 1.6rem);
  background: rgba(3, 7, 13, 0.72);
}

.nv-principle-strip span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--nv-cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.nv-principle-strip h2 {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.nv-principle-strip p {
  margin: 0;
  color: var(--nv-muted);
  font-size: 0.93rem;
}

.nv-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.nv-card-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.nv-card {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 1.7rem);
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-md);
  background: linear-gradient(145deg, var(--nv-panel-strong), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.nv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 8%, rgba(22, 217, 255, 0.18), transparent 12rem);
  opacity: 0;
  transition: opacity 180ms ease;
}

.nv-card:hover::before {
  opacity: 1;
}

.nv-card > * {
  position: relative;
}

.nv-card h2,
.nv-card h3 {
  font-size: clamp(1.15rem, 1.2vw, 1.45rem);
}

.nv-card--link a {
  display: inline-flex;
  margin-top: 0.5rem;
  font-weight: 800;
}

.nv-section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.nv-faith-grid,
.nv-two-list-grid,
.nv-guardrail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.nv-panel-list,
.nv-guardrail-panel,
.nv-callout,
.nv-guardrail-panel,
.nv-guardrail-panel--never,
.nv-guardrail-panel--always {
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-md);
  background: var(--nv-panel);
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
}

.nv-panel-list ul,
.nv-guardrail-panel ul {
  list-style: none;
  margin: 0;
}

.nv-panel-list li,
.nv-guardrail-panel li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--nv-muted);
}

.nv-panel-list li::before,
.nv-guardrail-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--nv-cyan);
}

.nv-panel-list--positive li::before,
.nv-guardrail-panel--always li::before {
  background: var(--nv-green);
}

.nv-panel-list--guarded li::before,
.nv-guardrail-panel--never li::before {
  background: var(--nv-gold);
}

.nv-boundary {
  position: relative;
}

.nv-boundary-diagram {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(220px, 0.9fr) minmax(160px, 1fr);
  grid-template-areas:
    "one top two"
    "left center right"
    "three bottom four";
  gap: clamp(0.75rem, 2vw, 1.2rem);
  min-height: 520px;
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 217, 255, 0.16), transparent 16rem),
    radial-gradient(circle at 70% 24%, rgba(243, 185, 65, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.nv-boundary-diagram__rings {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(22, 217, 255, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(22, 217, 255, 0.08), 0 0 60px rgba(32, 214, 164, 0.08);
}

.nv-boundary-diagram__rings::before,
.nv-boundary-diagram__rings::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nv-boundary-diagram__rings::before {
  inset: 12%;
}

.nv-boundary-diagram__rings::after {
  inset: 25%;
}

.nv-boundary-node {
  position: relative;
  z-index: 1;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--nv-radius-md);
  background: rgba(5, 11, 20, 0.74);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.nv-boundary-node--center {
  grid-area: center;
  align-self: center;
  justify-self: center;
  width: min(100%, 310px);
  text-align: center;
  background: linear-gradient(145deg, rgba(22, 217, 255, 0.18), rgba(32, 214, 164, 0.14));
  border-color: rgba(22, 217, 255, 0.45);
  box-shadow: var(--nv-shadow-glow);
}

.nv-boundary-node--center ul {
  list-style: none;
  margin: 0;
}

.nv-boundary-node--center li {
  color: var(--nv-text);
  font-size: 0.95rem;
}

.nv-boundary-node--one {
  grid-area: one;
}

.nv-boundary-node--two {
  grid-area: two;
}

.nv-boundary-node--three {
  grid-area: three;
}

.nv-boundary-node--four {
  grid-area: four;
}

.nv-boundary-node p {
  margin: 0;
  color: var(--nv-muted);
  font-size: 0.93rem;
}

.nv-boundary-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.nv-boundary-copy p {
  max-width: 720px;
  margin: 0;
}

.nv-relation-table {
  overflow: hidden;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.nv-relation-table__head,
.nv-relation-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--nv-line);
}

.nv-relation-table__head {
  color: var(--nv-cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(22, 217, 255, 0.06);
}

.nv-relation-row:last-child {
  border-bottom: 0;
}

.nv-relation-row h3,
.nv-relation-row p {
  margin: 0;
}

.nv-relation-row p {
  color: var(--nv-muted);
}

.nv-guardrail-panel--never {
  background: linear-gradient(145deg, var(--nv-danger-soft), rgba(255, 255, 255, 0.04));
}

.nv-guardrail-panel--always {
  background: linear-gradient(145deg, rgba(123, 220, 114, 0.12), rgba(255, 255, 255, 0.04));
}

.nv-cta-band__inner {
  padding: clamp(2rem, 5vw, 3.4rem);
  border: 1px solid rgba(22, 217, 255, 0.28);
  border-radius: var(--nv-radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(22, 217, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 100% 10%, rgba(243, 185, 65, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--nv-shadow-glow);
}

.nv-cta-band h2 {
  max-width: 920px;
  margin-bottom: 1.5rem;
  font-size: clamp(1.55rem, 2vw + 0.85rem, 2.65rem);
}

.nv-page-hero {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--nv-line);
  background:
    radial-gradient(circle at 20% 10%, rgba(22, 217, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 84% 18%, rgba(243, 185, 65, 0.14), transparent 20rem);
}

.nv-page-hero__inner {
  max-width: 930px;
}

.nv-page-hero h1 {
  font-size: clamp(2rem, 2.6vw + 0.9rem, 3.45rem);
}

.nv-page-section {
  padding-block: clamp(2.2rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nv-page-section:first-child {
  padding-top: 0;
}

.nv-page-section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 2rem;
  align-items: start;
}

.nv-prose {
  max-width: 850px;
}

.nv-prose > * + * {
  margin-top: 1.2rem;
}

.nv-prose img {
  border-radius: var(--nv-radius-md);
  border: 1px solid var(--nv-line);
}

.nv-definition-table-wrap {
  overflow-x: auto;
}

.nv-definition-table {
  min-width: 620px;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.nv-post-list {
  display: grid;
  gap: 1.25rem;
}

.nv-post-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-md);
  background: var(--nv-panel);
}

.nv-post-card__image img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: var(--nv-radius-sm);
}

.nv-post-card__meta {
  margin-bottom: 0.45rem;
  color: var(--nv-muted);
  font-size: 0.88rem;
}

.nv-post-card h2 {
  font-size: clamp(1.25rem, 1.5vw + 0.9rem, 1.85rem);
}

.nv-post-card h2 a {
  color: var(--nv-text);
  text-decoration: none;
}

.nv-post-card h2 a:hover {
  color: var(--nv-cyan);
}

.nav-links,
.nv-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.nav-links a,
.nav-links span,
.nv-page-links a,
.nv-page-links span {
  display: inline-flex;
  min-width: 2.5rem;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--nv-line);
  border-radius: 999px;
  text-decoration: none;
}

.alignwide {
  width: min(100vw - 2rem, 1320px);
  margin-inline: calc((100% - min(100%, 1320px)) / 2);
}

.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.nv-site-footer {
  border-top: 1px solid var(--nv-line);
  background:
    radial-gradient(circle at 15% 10%, rgba(22, 217, 255, 0.12), transparent 22rem),
    #03070d;
}

.nv-footer-top {
  display: grid;
  grid-template-columns: minmax(18rem, 1.25fr) minmax(16rem, 0.9fr) minmax(16rem, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(3rem, 7vw, 5rem) clamp(1.75rem, 3.5vw, 2.75rem);
}

.nv-footer-directory-wrap {
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.nv-footer-brand-block p,
.nv-footer-contact p,
.nv-footer-contact-list,
.nv-footer-slogans li,
.nv-footer-links a,
.nv-footer-bottom p {
  color: var(--nv-muted);
}

.nv-footer-brand-block p,
.nv-footer-contact p {
  max-width: 31rem;
}

.nv-footer-nav h2,
.nv-footer-contact h2,
.nv-footer-slogans h2 {
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.nv-footer-links {
  display: grid;
  gap: 0.45rem;
}

.nv-footer-links a {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-decoration: none;
  text-underline-offset: 0.18em;
}

.nv-footer-links a:hover {
  color: var(--nv-cyan);
}

.nv-footer-contact-list {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.nv-footer-contact-list a {
  color: var(--nv-muted);
  text-decoration: none;
  text-underline-offset: 0.18em;
}

.nv-footer-contact-list a:hover {
  color: var(--nv-cyan);
}

.nv-contact-card {
  align-self: start;
}

.nv-contact-list {
  display: grid;
  grid-template-columns: minmax(7rem, auto) 1fr;
  gap: 0.55rem 1rem;
  margin: 1.25rem 0 0;
}

.nv-contact-list dt {
  color: var(--nv-muted);
  font-weight: 760;
}

.nv-contact-list dd {
  margin: 0;
}

.nv-contact-list a {
  color: var(--nv-text);
  font-weight: 800;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.nv-footer-slogans ul {
  margin: 0;
  padding-left: 1.1rem;
}

.nv-footer-bottom {
  padding-block: 1.25rem;
  border-top: 1px solid var(--nv-line);
}

.nv-footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
}

.nv-js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

.nv-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .nv-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .nv-card-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .nv-principle-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1120px) {
  :root {
    --nv-header-height: 72px;
  }

  .nv-header-inner {
    justify-content: space-between;
  }

  .nv-primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    z-index: 110;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.5rem);
    padding: 1rem;
    border: 1px solid var(--nv-line);
    border-radius: var(--nv-radius-md);
    background: rgba(5, 11, 20, 0.97);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  }

  .nv-nav-open .nv-primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nv-menu {
    display: grid;
    gap: 0.2rem;
  }

  .nv-menu a,
  .nv-menu__link {
    width: 100%;
    min-height: 3.2rem;
    padding-inline: 0.75rem;
    border-radius: var(--nv-radius-sm);
  }

  .nv-menu a:hover,
  .nv-menu__link:hover {
    background: rgba(22, 217, 255, 0.09);
  }

  .nv-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--nv-line);
    border-radius: 999px;
    background: var(--nv-panel);
    color: var(--nv-text);
    font-weight: 800;
  }

  .nv-menu-toggle__line {
    position: relative;
    width: 1.2rem;
    height: 2px;
    background: currentColor;
  }

  .nv-menu-toggle__line::before,
  .nv-menu-toggle__line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 1.2rem;
    height: 2px;
    background: currentColor;
  }

  .nv-menu-toggle__line::before {
    top: -0.38rem;
  }

  .nv-menu-toggle__line::after {
    top: 0.38rem;
  }

  .nv-nav-cta--desktop {
    display: none;
  }

  .nv-nav-cta--mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 0.8rem;
  }

  .nv-hero__grid,
  .nv-section-split,
  .nv-page-section--split,
  .nv-footer-top {
    grid-template-columns: 1fr;
  }

  .nv-hero__visual {
    order: -1;
  }

  .nv-hero__image-shell {
    width: min(100%, 560px);
  }

  .nv-boundary-diagram {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "center center"
      "one two"
      "three four";
    min-height: auto;
  }

  .nv-boundary-diagram__rings {
    inset: 4%;
    opacity: 0.5;
  }

  .nv-boundary-copy {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .nv-container {
    width: min(100% - 1rem, var(--nv-container));
  }


  .nv-footer-links--grouped,
  .nv-footer-links--assigned {
    grid-template-columns: 1fr 1fr;
  }

  .nv-brand__text {
    font-size: 1.1rem;
  }

  .nv-brand__mark {
    width: 44px;
    height: 44px;
  }

  .nv-card-grid,
  .nv-card-grid--four,
  .nv-faith-grid,
  .nv-two-list-grid,
  .nv-guardrail-grid,
  .nv-principle-strip,
  .nv-post-card {
    grid-template-columns: 1fr;
  }

  .nv-section,
  .nv-page-content,
  .nv-post-list,
  .nv-single__body {
    padding-block: 3.5rem;
  }

  .nv-hero {
    padding-top: 2.75rem;
  }

  .nv-hero__actions,
  .nv-inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nv-button,
  .nv-nav-cta {
    width: 100%;
  }

  .nv-boundary-diagram {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "one"
      "two"
      "three"
      "four";
    padding: 0.75rem;
  }

  .nv-boundary-node--center {
    width: 100%;
  }

  .nv-relation-table__head {
    display: none;
  }

  .nv-relation-row {
    grid-template-columns: 1fr;
  }

  th,
  td {
    display: block;
    width: 100%;
  }

  .nv-page-hero h1,
  .nv-hero h1 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .nv-hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.9rem);
  }
}

@media (max-width: 420px) {
  .nv-menu-toggle__label {
    display: none;
  }

  .nv-brand__domain {
    align-self: flex-start;
  }

  .nv-hero__image-shell {
    border-radius: 1rem;
  }

  .nv-principle-strip article,
  .nv-card,
  .nv-panel-list,
  .nv-guardrail-panel,
  .nv-callout {
    padding: 1rem;
  }
}


@media (max-width: 520px) {
  .nv-footer-links--grouped,
  .nv-footer-links--assigned {
    grid-template-columns: 1fr;
  }
}

@media print {
  .nv-site-header,
  .nv-site-footer,
  .nv-hero__visual,
  .nv-button,
  .nv-nav-cta {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
  }
}

/* Conversion, trust, and governance components */
.nv-hero__trust-line {
  margin-top: 1rem;
  color: var(--nv-muted);
  font-size: 0.92rem;
}

.nv-hero__trust-line a {
  font-weight: 800;
}

.nv-hero-boundary {
  position: relative;
  width: min(100%, 560px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(1rem, 2vw, 1.65rem);
  background:
    radial-gradient(circle at 50% 48%, rgba(22, 217, 255, 0.2), transparent 11rem),
    radial-gradient(circle at 68% 30%, rgba(243, 185, 65, 0.18), transparent 14rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 52px rgba(22, 217, 255, 0.22);
}

.nv-hero-boundary__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.nv-hero-boundary__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(5, 11, 20, 0.82), rgba(5, 11, 20, 0.58)),
    radial-gradient(circle at 50% 50%, transparent 0 10rem, rgba(5, 11, 20, 0.36) 15rem);
}

.nv-hero-boundary__ring {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(22, 217, 255, 0.38);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(22, 217, 255, 0.12), 0 0 44px rgba(22, 217, 255, 0.12);
}

.nv-hero-boundary__ring--inner {
  inset: 27%;
  border-color: rgba(123, 220, 114, 0.42);
}

.nv-hero-boundary__center {
  position: absolute;
  left: 50%;
  top: 49%;
  width: min(62%, 270px);
  min-height: 130px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid rgba(22, 217, 255, 0.5);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(22, 217, 255, 0.22), rgba(32, 214, 164, 0.14));
  box-shadow: var(--nv-shadow-glow);
}

.nv-hero-boundary__center strong {
  display: block;
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.45rem);
  line-height: 1.1;
}

.nv-hero-boundary__center span {
  display: block;
  max-width: 14rem;
  color: var(--nv-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.nv-hero-boundary__chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.25rem;
  min-height: 2.35rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 11, 20, 0.78);
  color: var(--nv-text);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.nv-hero-boundary__chip--one { left: 8%; top: 17%; }
.nv-hero-boundary__chip--two { right: 7%; top: 18%; }
.nv-hero-boundary__chip--three { left: 7%; bottom: 27%; }
.nv-hero-boundary__chip--four { right: 7%; bottom: 27%; }

.nv-hero-boundary__repair {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 6%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.nv-hero-boundary__repair span,
.nv-trust-grid span,
.nv-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--nv-muted);
  font-size: 0.82rem;
  font-weight: 760;
  text-align: center;
}

.nv-card-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.nv-step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  counter-reset: nv-step;
}

.nv-step-list li {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-md);
  background: linear-gradient(145deg, var(--nv-panel-strong), rgba(255, 255, 255, 0.035));
  counter-increment: nv-step;
}

.nv-step-list li > span::before {
  content: counter(nv-step, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--nv-cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.nv-step-list h3,
.nv-step-list p {
  margin: 0;
}

.nv-step-list p {
  margin-top: 0.6rem;
  color: var(--nv-muted);
}

.nv-trust-grid,
.nv-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.nv-trust-grid span {
  border-color: rgba(22, 217, 255, 0.22);
}

.nv-trust-proof__actions,
.nv-section-actions {
  margin-top: 1.25rem;
}

.nv-faq-list {
  display: grid;
  gap: 0.8rem;
}

.nv-faq-item {
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-md);
  background: var(--nv-panel);
  overflow: hidden;
}

.nv-faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  color: var(--nv-text);
  font-weight: 850;
}

.nv-faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--nv-muted);
}

.nv-form-status {
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-md);
  font-weight: 780;
}

.nv-form-status--success {
  border-color: rgba(123, 220, 114, 0.38);
  background: rgba(123, 220, 114, 0.12);
}

.nv-form-status--error {
  border-color: rgba(255, 138, 102, 0.38);
  background: rgba(255, 138, 102, 0.12);
}

.nv-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  padding: clamp(1.15rem, 2.6vw, 1.8rem);
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.nv-form-field {
  margin: 0;
}

.nv-form-field--full {
  grid-column: 1 / -1;
}

.nv-form-field label,
.nv-form-consent label {
  display: grid;
  gap: 0.45rem;
  color: var(--nv-text);
  font-weight: 780;
}

.nv-form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--nv-muted);
  font-weight: 620;
}

.nv-contact-form input,
.nv-contact-form textarea,
.nv-contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--nv-radius-sm);
  background: rgba(3, 7, 13, 0.72);
  color: var(--nv-text);
  padding: 0.8rem 0.9rem;
}

.nv-contact-form textarea {
  resize: vertical;
}

.nv-footer-nav--fallback,
.nv-footer-nav--assigned {
  width: 100%;
}

.nv-footer-links--grouped {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10.5rem), 1fr));
  gap: clamp(1.15rem, 2.5vw, 2rem);
  padding-top: clamp(1.25rem, 2.4vw, 2rem);
  border-top: 1px solid var(--nv-line);
}

.nv-footer-links--assigned {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: 0.55rem 1rem;
  margin-top: 1rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--nv-line);
  list-style: none;
}

.nv-footer-links--assigned li {
  margin: 0;
}

.nv-footer-link-group {
  min-width: 0;
}

.nv-footer-link-group h3 {
  margin-bottom: 0.7rem;
  color: var(--nv-text);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.nv-footer-link-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nv-footer-link-group li + li {
  margin-top: 0.45rem;
}

.nv-definition-table--wide {
  min-width: 860px;
}

.nv-cta-band__inner p {
  max-width: 760px;
  color: var(--nv-muted);
}


@media (max-width: 1180px) {
  .nv-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .nv-footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1160px) {
  .nv-primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    z-index: 110;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.5rem);
    padding: 1rem;
    border: 1px solid var(--nv-line);
    border-radius: var(--nv-radius-md);
    background: rgba(5, 11, 20, 0.97);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  }

  .nv-nav-open .nv-primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nv-menu {
    display: grid;
    gap: 0.2rem;
  }

  .nv-menu a,
  .nv-menu__link {
    width: 100%;
    min-height: 3.2rem;
    padding-inline: 0.75rem;
    border-radius: var(--nv-radius-sm);
  }

  .nv-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--nv-line);
    border-radius: 999px;
    background: var(--nv-panel);
    color: var(--nv-text);
    font-weight: 800;
  }

  .nv-nav-cta--desktop {
    display: none;
  }

  .nv-nav-cta--mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 0.8rem;
  }
}

@media (max-width: 1100px) {
  .nv-step-list {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 1120px) {
  .nv-hero-boundary {
    min-height: 480px;
  }

  .nv-hero-boundary__repair {
    grid-template-columns: repeat(2, 1fr);
  }

  .nv-contact-form,
  .nv-card-grid--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nv-step-list {
    grid-template-columns: 1fr;
  }

  .nv-hero-boundary {
    min-height: 430px;
  }

  .nv-hero-boundary__chip {
    min-width: 0;
    font-size: 0.74rem;
  }

  .nv-hero-boundary__chip--one { left: 4%; top: 13%; }
  .nv-hero-boundary__chip--two { right: 4%; top: 13%; }
  .nv-hero-boundary__chip--three { left: 4%; bottom: 31%; }
  .nv-hero-boundary__chip--four { right: 4%; bottom: 31%; }

  .nv-hero-boundary__center {
    width: 72%;
  }
}


@media (max-width: 1180px) {
  .nv-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .nv-footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1160px) {
  .nv-header-inner {
    justify-content: space-between;
  }

  .nv-menu a:hover,
  .nv-menu__link:hover {
    background: rgba(22, 217, 255, 0.09);
  }

  .nv-menu-toggle__line {
    position: relative;
    width: 1.2rem;
    height: 2px;
    background: currentColor;
  }

  .nv-menu-toggle__line::before,
  .nv-menu-toggle__line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 1.2rem;
    height: 2px;
    background: currentColor;
  }

  .nv-menu-toggle__line::before {
    top: -0.38rem;
  }

  .nv-menu-toggle__line::after {
    top: 0.38rem;
  }
}


.nv-form-field--guard {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.nv-breadcrumbs {
  margin: 0 0 1rem;
  color: var(--nv-muted);
  font-size: var(--nv-step-sm);
}

.nv-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nv-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
}

.nv-breadcrumbs li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.38);
}

.nv-breadcrumbs a {
  color: var(--nv-muted);
  text-decoration: none;
}

.nv-breadcrumbs a:hover,
.nv-breadcrumbs a:focus-visible {
  color: var(--nv-cyan);
}

.nv-breadcrumbs [aria-current="page"] {
  color: var(--nv-text);
}

.nv-card--glossary p {
  margin-bottom: 0.8rem;
}

.nv-card--glossary dl {
  margin: 1rem 0 0;
}

.nv-card--glossary dt {
  color: var(--nv-text);
  font-weight: 800;
}

.nv-card--glossary dd {
  margin: 0 0 0.85rem;
  color: var(--nv-muted);
}

.nv-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.nv-sitemap-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.nv-sitemap-card li + li {
  margin-top: 0.55rem;
}

.nv-sitemap-card a {
  color: var(--nv-text);
  text-decoration: none;
}

.nv-sitemap-card a:hover,
.nv-sitemap-card a:focus-visible {
  color: var(--nv-cyan);
}

@media (max-width: 680px) {
  .nv-sitemap-grid {
    grid-template-columns: 1fr;
  }
}



/* v1.2.5 UI/UX cleanup: footer, scan-friendly grouped links, and SEO-supporting utility links. */
.nv-site-footer {
  font-size: 0.96rem;
  line-height: 1.58;
}

.nv-footer-shell {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.nv-footer-overview {
  display: grid;
  grid-template-columns: minmax(18rem, 1.35fr) minmax(16rem, 0.95fr) minmax(16rem, 0.95fr);
  gap: clamp(1rem, 2vw, 1.65rem);
  padding-bottom: clamp(1.1rem, 2vw, 1.6rem);
}

.nv-footer-brand-block,
.nv-footer-card,
.nv-footer-nav-panel,
.nv-footer-link-group {
  min-width: 0;
}

.nv-footer-brand-block {
  padding: clamp(0.35rem, 1vw, 0.65rem) clamp(1rem, 1.8vw, 1.35rem) clamp(0.5rem, 1vw, 0.75rem) 0;
}

.nv-footer-brand-block .nv-brand {
  margin-bottom: 1rem;
}

.nv-footer-brand-block p {
  max-width: 25rem;
  margin: 0;
  line-height: 1.7;
}

.nv-footer-card,
.nv-footer-nav-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--nv-radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.nv-footer-card {
  padding: clamp(1.2rem, 2vw, 1.55rem);
}

.nv-footer-nav h2,
.nv-footer-contact h2,
.nv-footer-slogans h2 {
  margin: 0;
  color: var(--nv-text);
  font-size: 0.88rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nv-footer-contact p {
  max-width: 24rem;
  margin: 0.8rem 0 0;
  line-height: 1.65;
}

.nv-footer-contact-list {
  display: grid;
  gap: 0.58rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.nv-footer-contact-list li {
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: baseline;
}

.nv-footer-contact-label {
  color: rgba(175, 189, 202, 0.78);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nv-footer-contact-list a,
.nv-footer-link-group a,
.nv-footer-links a,
.nv-footer-sitemap-link,
.nv-footer-legal a {
  overflow-wrap: anywhere;
  text-underline-offset: 0.2em;
}

.nv-footer-contact-list a {
  display: inline-flex;
  min-height: 2.1rem;
  align-items: center;
}

.nv-footer-slogans ul {
  display: grid;
  gap: 0.7rem;
  margin: 0.85rem 0 0;
  padding-left: 1.05rem;
}

.nv-footer-slogans li {
  padding-left: 0.12rem;
  line-height: 1.62;
}

.nv-footer-nav-panel {
  margin-block: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.15rem, 2vw, 1.55rem);
}

.nv-footer-nav-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nv-footer-nav-header p {
  max-width: 42rem;
  margin: 0.45rem 0 0;
  color: var(--nv-muted);
  font-size: 0.92rem;
}

.nv-footer-sitemap-link {
  flex: 0 0 auto;
  color: var(--nv-cyan);
  font-weight: 800;
  text-decoration: none;
}

.nv-footer-sitemap-link:hover,
.nv-footer-sitemap-link:focus-visible {
  color: var(--nv-text);
}

.nv-footer-links--grouped {
  display: grid;
  grid-template-columns: repeat(5, minmax(9.5rem, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  margin-top: 1.25rem;
}

.nv-footer-nav-panel .nv-footer-links:not(.nv-footer-links--grouped) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.55rem 1.4rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.nv-footer-link-group {
  padding: 0.85rem;
  border-radius: var(--nv-radius-sm);
  background: rgba(255, 255, 255, 0.032);
}

.nv-footer-link-group h3 {
  margin: 0 0 0.6rem;
  color: var(--nv-text);
  font-size: 0.76rem;
  line-height: 1.25;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.nv-footer-link-group ul {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nv-footer-link-group li + li,
.nv-footer-nav-panel .nv-footer-links:not(.nv-footer-links--grouped) li {
  margin-top: 0;
}

.nv-footer-link-group a,
.nv-footer-nav-panel .nv-footer-links:not(.nv-footer-links--grouped) a {
  display: inline-flex;
  min-height: 1.85rem;
  align-items: center;
  color: var(--nv-muted);
  font-size: 0.93rem;
  line-height: 1.38;
  text-decoration: none;
}

.nv-footer-link-group a:hover,
.nv-footer-link-group a:focus-visible,
.nv-footer-nav-panel .nv-footer-links:not(.nv-footer-links--grouped) a:hover,
.nv-footer-nav-panel .nv-footer-links:not(.nv-footer-links--grouped) a:focus-visible,
.nv-footer-legal a:hover,
.nv-footer-legal a:focus-visible {
  color: var(--nv-cyan);
}

.nv-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0 1.35rem;
}

.nv-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.nv-footer-legal a {
  color: var(--nv-muted);
  text-decoration: none;
}

@media (max-width: 1180px) {
  .nv-footer-overview {
    grid-template-columns: minmax(18rem, 1.1fr) repeat(2, minmax(14rem, 1fr));
  }

  .nv-footer-links--grouped {
    grid-template-columns: repeat(3, minmax(10rem, 1fr));
  }
}

@media (max-width: 880px) {
  .nv-footer-overview {
    grid-template-columns: 1fr;
    padding-block-start: 0;
  }

  .nv-footer-brand-block {
    padding-right: 0;
  }

  .nv-footer-brand-block p {
    max-width: 34rem;
  }

  .nv-footer-nav-header {
    display: grid;
    align-items: start;
  }

  .nv-footer-sitemap-link {
    justify-self: start;
  }

  .nv-footer-links--grouped {
    grid-template-columns: repeat(2, minmax(10rem, 1fr));
  }

  .nv-footer-bottom {
    display: grid;
    justify-content: stretch;
  }
}

@media (max-width: 560px) {
  .nv-footer-card,
  .nv-footer-nav-panel {
    padding: 1rem;
    border-radius: 1rem;
  }

  .nv-footer-links--grouped {
    grid-template-columns: 1fr;
  }

  .nv-footer-link-group {
    padding: 0.8rem;
  }
}

@media (max-width: 420px) {
  .nv-footer-contact-list li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}


/* v1.2.6: page-level orientation, related paths, and cornerstone pages. */
.nv-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
  color: var(--nv-muted);
  font-size: 0.9rem;
}

.nv-page-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border: 1px solid var(--nv-line);
  border-radius: 999px;
  padding: 0.28rem 0.72rem;
  background: rgba(255, 255, 255, 0.045);
}

.nv-cornerstone-summary {
  align-self: start;
  border: 1px solid rgba(243, 185, 65, 0.28);
  border-radius: var(--nv-radius-md);
  padding: clamp(1rem, 2vw, 1.4rem);
  background: rgba(243, 185, 65, 0.09);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.nv-cornerstone-summary strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--nv-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.nv-related-pages {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 8% 0%, rgba(22, 217, 255, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.045);
}

.nv-related-pages h2 {
  margin: 0.3rem 0 0.65rem;
}

.nv-related-pages p {
  max-width: 58ch;
  margin: 0;
  color: var(--nv-muted);
}

.nv-related-pages ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nv-related-pages a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(5, 11, 20, 0.45);
  color: var(--nv-text);
  text-decoration: none;
}

.nv-related-pages a::after {
  content: '→';
  color: var(--nv-cyan);
}

.nv-related-pages a:hover,
.nv-related-pages a:focus-visible {
  border-color: rgba(22, 217, 255, 0.42);
  color: var(--nv-cyan);
}

@media (max-width: 760px) {
  .nv-related-pages {
    grid-template-columns: 1fr;
  }

  .nv-page-meta {
    gap: 0.4rem;
  }

  .nv-page-meta span {
    width: 100%;
    justify-content: center;
  }
}


/* v1.2.6 assigned footer menu safe mode. */
.nv-footer-custom-menu {
  display: grid;
  gap: 0.85rem;
  margin: -1rem 0 clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--nv-radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.nv-footer-custom-menu h2 {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nv-footer-custom-menu p {
  max-width: 44rem;
  margin: 0.35rem 0 0;
  color: var(--nv-muted);
  font-size: 0.9rem;
}

.nv-footer-custom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nv-footer-custom-links a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.32rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--nv-muted);
  text-decoration: none;
}

.nv-footer-custom-links a:hover,
.nv-footer-custom-links a:focus-visible {
  color: var(--nv-cyan);
  border-color: rgba(22, 217, 255, 0.38);
}

@media (max-width: 560px) {
  .nv-footer-custom-links a {
    width: 100%;
  }
}


/* v1.2.6 continuation: active fallback states, Start Here header route, and SEO-supporting related-link events. */
.nv-menu__item.is-current > a,
.nv-menu a[aria-current="page"] {
  color: var(--nv-text);
  background: rgba(22, 217, 255, 0.11);
  box-shadow: inset 0 0 0 1px rgba(22, 217, 255, 0.20);
}

.nv-footer-link-group a.is-current,
.nv-footer-link-group a[aria-current="page"] {
  color: var(--nv-text);
  text-decoration: underline;
  text-decoration-color: rgba(22, 217, 255, 0.9);
  text-underline-offset: 0.22em;
}

.nv-related-links a:focus-visible,
.nv-related-links a:hover {
  border-color: rgba(22, 217, 255, 0.55);
  background: rgba(22, 217, 255, 0.08);
}

.nv-page-meta-list strong {
  color: var(--nv-text);
}


/* v1.3.3 life-centered foundations and Neurovanic Totem. */
.nv-totem-section {
  position: relative;
  overflow: hidden;
}

.nv-totem-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.nv-totem-diagram {
  margin: 0;
}

.nv-totem-diagram > figcaption {
  font-size: 0.8rem;
  color: var(--nv-muted);
  margin-bottom: 0.8rem;
}

.nv-totem-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid var(--nv-line);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 217, 255, 0.17), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(123, 220, 114, 0.10), transparent 52%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--nv-shadow-glow);
}

.nv-totem-ring {
  position: absolute;
  inset: var(--ring-inset, 8%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: start center;
  pointer-events: none;
}

.nv-totem-ring span {
  transform: translateY(-50%);
  display: inline-flex;
  min-height: 1.85rem;
  align-items: center;
  padding: 0.18rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(5, 11, 20, 0.88);
  color: var(--nv-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nv-totem-ring--repair { --ring-inset: 6%; }
.nv-totem-ring--cooperation { --ring-inset: 17%; }
.nv-totem-ring--evidence { --ring-inset: 28%; }
.nv-totem-ring--boundary { --ring-inset: 39%; }

.nv-totem-center {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(22, 217, 255, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 217, 255, 0.22), rgba(32, 214, 164, 0.11));
  text-align: center;
  padding: 1rem;
}

.nv-totem-center strong {
  line-height: 1.1;
}

.nv-totem-center small {
  max-width: 11ch;
  color: var(--nv-muted);
  font-size: 0.7rem;
}

.nv-totem-distortions {
  position: absolute;
  inset: auto 6% 6%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nv-totem-distortions li,
.nv-positive-ring span,
.nv-repair-steps li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--nv-muted);
  padding: 0.32rem 0.62rem;
  font-size: 0.76rem;
}

.nv-totem-cards .nv-card h3 {
  margin-top: 0;
}

.nv-totem-explainer {
  max-width: 72rem;
  margin: clamp(1.25rem, 3vw, 2rem) auto 0;
  color: var(--nv-muted);
}

.nv-totem-actions {
  justify-content: center;
  margin-top: 1.25rem;
}

.nv-life-centered-orientation__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
}

.nv-callout--gold {
  border-color: rgba(243, 185, 65, 0.28);
  background: radial-gradient(circle at 0% 0%, rgba(243, 185, 65, 0.12), transparent 40%), rgba(255, 255, 255, 0.045);
}

.nv-positive-ring {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  width: min(46%, 360px);
  left: 50%;
  bottom: 23%;
  transform: translateX(-50%);
  pointer-events: none;
}

.nv-claim-boundary-box,
.nv-accessible-summary,
.nv-totem-anchor,
.nv-impact-box,
.nv-repair-box {
  border: 1px solid rgba(243, 185, 65, 0.25);
  border-radius: var(--nv-radius-md);
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(243, 185, 65, 0.08);
}

.nv-claim-boundary-box strong,
.nv-accessible-summary strong,
.nv-totem-anchor strong {
  display: block;
  color: var(--nv-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 0.4rem;
}

.nv-totem-anchor {
  background: radial-gradient(circle at 0% 0%, rgba(32, 214, 164, 0.12), transparent 44%), rgba(255, 255, 255, 0.04);
  border-color: rgba(32, 214, 164, 0.22);
}

.nv-repair-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nv-repair-steps li {
  color: var(--nv-text);
}

.nv-footer-totem {
  margin: 0 0 0.8rem;
  color: var(--nv-gold);
  font-weight: 800;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .nv-principle-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nv-totem-layout,
  .nv-life-centered-orientation__grid {
    grid-template-columns: 1fr;
  }

  .nv-totem-visual {
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .nv-principle-strip {
    grid-template-columns: 1fr;
  }

  .nv-totem-center {
    width: 42%;
  }

  .nv-totem-ring span {
    font-size: 0.62rem;
  }

  .nv-totem-distortions {
    position: static;
    padding: 1rem;
  }
}

/* v1.3.6 professional navigation pass. */
.nv-site-header .nv-container {
  max-width: min(1480px, calc(100vw - 2rem));
}

.nv-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(0.8rem, 1.25vw, 1.25rem);
}

.nv-brand {
  min-width: 0;
}

.nv-brand img,
.nv-brand svg {
  flex: 0 0 auto;
}

.nv-brand__text {
  font-size: clamp(1rem, 0.54vw + 0.86rem, 1.26rem);
  letter-spacing: -0.045em;
}

.nv-primary-nav {
  justify-self: center;
  margin-left: 0;
  min-width: 0;
}

.nv-menu {
  align-items: center;
  justify-content: center;
  gap: clamp(0.12rem, 0.35vw, 0.38rem);
  flex-wrap: nowrap;
  min-width: 0;
}

.nv-menu > li {
  position: relative;
  flex: 0 0 auto;
}

.nv-menu__link,
.nv-menu a {
  min-height: 2.4rem;
  padding: 0.56rem 0.72rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: clamp(0.77rem, 0.18vw + 0.73rem, 0.86rem);
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nv-menu__link:hover,
.nv-menu a:hover,
.nv-menu__item.is-ancestor > .nv-menu__link,
.nv-menu .current-menu-ancestor > a,
.nv-menu .current-menu-parent > a {
  color: var(--nv-cyan);
  background: rgba(22, 217, 255, 0.07);
  border-color: rgba(22, 217, 255, 0.18);
  opacity: 1;
}

.nv-menu__item.is-current > a,
.nv-menu a[aria-current="page"],
.nv-menu .current-menu-item > a {
  color: var(--nv-text);
  background: linear-gradient(180deg, rgba(22, 217, 255, 0.16), rgba(22, 217, 255, 0.07));
  border-color: rgba(22, 217, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 0 24px rgba(22, 217, 255, 0.08);
  opacity: 1;
}

.nv-menu > .menu-item-has-children > a,
.nv-menu__item--has-children > .nv-menu__link {
  gap: 0.42rem;
}

.nv-menu > .menu-item-has-children > a::after,
.nv-menu__item--has-children > .nv-menu__link::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.08rem);
  opacity: 0.72;
}

.nv-menu .sub-menu,
.nv-menu__submenu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  z-index: 130;
  min-width: 14.5rem;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: rgba(5, 11, 20, 0.98);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44), 0 0 40px rgba(22, 217, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -0.4rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nv-menu .sub-menu::before,
.nv-menu__submenu::before {
  content: "";
  position: absolute;
  top: -0.55rem;
  left: 0;
  right: 0;
  height: 0.55rem;
}

.nv-menu > li:hover > .sub-menu,
.nv-menu > li:focus-within > .sub-menu,
.nv-menu__item--has-children:hover > .nv-menu__submenu,
.nv-menu__item--has-children:focus-within > .nv-menu__submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nv-menu .sub-menu a,
.nv-menu__submenu a {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  min-height: 2.35rem;
  padding: 0.62rem 0.72rem;
  border-radius: 0.75rem;
  color: var(--nv-muted);
  font-size: 0.86rem;
  line-height: 1.18;
  letter-spacing: 0;
  white-space: normal;
}

.nv-menu .sub-menu a:hover,
.nv-menu .sub-menu a:focus-visible,
.nv-menu__submenu a:hover,
.nv-menu__submenu a:focus-visible,
.nv-menu .sub-menu a[aria-current="page"],
.nv-menu__submenu a[aria-current="page"] {
  color: var(--nv-text);
  background: rgba(22, 217, 255, 0.10);
  border-color: transparent;
}

.nv-nav-cta {
  min-height: 2.74rem;
  padding: 0.64rem 1.05rem;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 1121px) {
  .nv-primary-nav {
    display: block;
  }

  .nv-menu-toggle,
  .nv-nav-cta--mobile {
    display: none;
  }
}

@media (max-width: 1260px) and (min-width: 1121px) {
  .nv-site-header .nv-container {
    max-width: calc(100vw - 1.25rem);
  }

  .nv-header-inner {
    gap: 0.62rem;
  }

  .nv-menu__link,
  .nv-menu a {
    padding-inline: 0.58rem;
    font-size: 0.76rem;
  }

  .nv-nav-cta {
    padding-inline: 0.82rem;
    font-size: 0.82rem;
  }

  .nv-brand__text {
    font-size: 1rem;
  }
}

@media (max-width: 1120px) {
  .nv-header-inner {
    display: flex;
    justify-content: space-between;
  }

  .nv-primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    z-index: 110;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.5rem);
    max-height: min(76vh, 680px);
    overflow: auto;
    padding: 1rem;
    border: 1px solid var(--nv-line);
    border-radius: var(--nv-radius-md);
    background: rgba(5, 11, 20, 0.985);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  }

  .nv-nav-open .nv-primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nv-menu {
    display: grid;
    gap: 0.18rem;
    justify-content: stretch;
  }

  .nv-menu > li {
    width: 100%;
  }

  .nv-menu a,
  .nv-menu__link {
    width: 100%;
    min-height: 2.85rem;
    justify-content: flex-start;
    padding: 0.72rem 0.85rem;
    border-radius: var(--nv-radius-sm);
    font-size: 0.96rem;
  }

  .nv-menu .sub-menu,
  .nv-menu__submenu {
    position: static;
    min-width: 0;
    margin: 0.1rem 0 0.55rem 0.7rem;
    padding: 0.2rem 0 0.2rem 0.7rem;
    border: 0;
    border-left: 1px solid rgba(22, 217, 255, 0.22);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nv-menu .sub-menu::before,
  .nv-menu__submenu::before {
    display: none;
  }

  .nv-menu .sub-menu a,
  .nv-menu__submenu a {
    min-height: 2.5rem;
    padding: 0.58rem 0.7rem;
    font-size: 0.9rem;
  }

  .nv-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--nv-line);
    border-radius: 999px;
    background: var(--nv-panel);
    color: var(--nv-text);
    font-weight: 800;
  }

  .nv-nav-cta--desktop {
    display: none;
  }

  .nv-nav-cta--mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 0.8rem;
  }
}


/* v1.3.6 menu stabilization overrides: keep the professional desktop menu active down to 1121px despite older breakpoint rules. */
@media (min-width: 1121px) {
  .nv-primary-nav {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    visibility: visible;
    opacity: 1;
    transform: none;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nv-menu--primary {
    display: flex;
  }
}

/* v1.3.6 menu polish: reduce visual weight and make the CTA feel like a header action, not a second hero button. */
.nv-nav-cta--desktop {
  min-width: 0;
  max-width: 12rem;
  text-align: center;
}

.nv-menu--primary > .nv-menu__item > .nv-menu__link {
  font-weight: 760;
}

.nv-menu--primary > .nv-menu__item.is-current > .nv-menu__link,
.nv-menu--primary > .nv-menu__item.is-ancestor > .nv-menu__link {
  box-shadow: inset 0 -2px 0 rgba(22, 217, 255, 0.9);
}

/* v1.3.6 professional disclosure navigation: compact top level, click-open flyout panels, and mobile-safe disclosure. */
.nv-site-header {
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.94), rgba(5, 11, 20, 0.8));
}

.nv-site-header.is-scrolled .nv-header-inner {
  min-height: clamp(4.15rem, 5vw, 4.85rem);
}

.nv-menu--primary {
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.032);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 18px 42px rgba(0, 0, 0, 0.12);
}

.nv-menu--primary > .nv-menu__item > .nv-menu__link,
.nv-menu--primary > .nv-menu__item > .nv-menu__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 2.5rem;
  padding: 0.58rem clamp(0.68rem, 0.5vw + 0.42rem, 0.92rem);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(245, 248, 251, 0.86);
  font: inherit;
  font-size: clamp(0.79rem, 0.14vw + 0.75rem, 0.88rem);
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
  text-decoration: none;
}

.nv-menu--primary > .nv-menu__item > .nv-menu__button {
  cursor: pointer;
}

.nv-menu__button::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.08rem);
  opacity: 0.72;
  transition: transform 160ms ease;
}

.nv-menu__item.is-submenu-open > .nv-menu__button::after,
.nv-menu__button[aria-expanded="true"]::after {
  transform: rotate(225deg) translate(-0.12rem, -0.12rem);
}

.nv-menu--primary > .nv-menu__item > .nv-menu__link:hover,
.nv-menu--primary > .nv-menu__item > .nv-menu__link:focus-visible,
.nv-menu--primary > .nv-menu__item > .nv-menu__button:hover,
.nv-menu--primary > .nv-menu__item > .nv-menu__button:focus-visible,
.nv-menu--primary > .nv-menu__item.is-ancestor > .nv-menu__button,
.nv-menu--primary > .nv-menu__item.is-submenu-open > .nv-menu__button {
  color: var(--nv-text);
  background: rgba(22, 217, 255, 0.08);
  border-color: rgba(22, 217, 255, 0.18);
}

.nv-menu--primary > .nv-menu__item.is-current > .nv-menu__link,
.nv-menu__item.is-current > .nv-menu__button,
.nv-menu__button[aria-expanded="true"] {
  color: var(--nv-text);
  background: linear-gradient(180deg, rgba(22, 217, 255, 0.16), rgba(22, 217, 255, 0.07));
  border-color: rgba(22, 217, 255, 0.34);
  box-shadow: inset 0 -2px 0 rgba(22, 217, 255, 0.9), 0 0 24px rgba(22, 217, 255, 0.08);
}

.nv-nav-cta--desktop {
  min-height: 2.66rem;
  max-width: 10.7rem;
  padding: 0.62rem 0.98rem;
  border-color: rgba(22, 217, 255, 0.55);
  background: rgba(22, 217, 255, 0.045);
  color: rgba(22, 217, 255, 0.96);
  font-size: 0.84rem;
  font-weight: 840;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
}

.nv-nav-cta--desktop:hover,
.nv-nav-cta--desktop:focus-visible {
  color: var(--nv-bg);
  background: linear-gradient(135deg, var(--nv-cyan), var(--nv-teal));
  box-shadow: 0 0 34px rgba(22, 217, 255, 0.22);
}

.nv-menu__panel {
  display: none;
}

@media (min-width: 1121px) {
  .nv-header-inner {
    grid-template-columns: minmax(12rem, auto) minmax(0, 1fr) auto;
    min-height: clamp(4.55rem, 5.3vw, 5.15rem);
  }

  .nv-menu--primary {
    gap: clamp(0.2rem, 0.42vw, 0.5rem);
  }

  .nv-menu__panel {
    position: absolute;
    top: calc(100% + 0.62rem);
    left: 50%;
    z-index: 140;
    grid-template-columns: minmax(13rem, 0.78fr) minmax(17rem, 1.22fr);
    gap: 0.75rem;
    width: min(38rem, calc(100vw - 2.5rem));
    padding: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.15rem;
    background:
      radial-gradient(circle at top left, rgba(22, 217, 255, 0.13), transparent 38%),
      linear-gradient(145deg, rgba(8, 21, 37, 0.985), rgba(5, 11, 20, 0.985));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52), 0 0 45px rgba(22, 217, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -0.35rem);
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  .nv-menu__panel::before {
    content: "";
    position: absolute;
    top: -0.62rem;
    left: 0;
    right: 0;
    height: 0.62rem;
  }

  .nv-menu__item.is-submenu-open > .nv-menu__panel {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nv-menu__item--slug-trust-center .nv-menu__panel,
  .nv-menu__item--slug-resources .nv-menu__panel {
    left: auto;
    right: 0;
    transform: translate(0, -0.35rem);
  }

  .nv-menu__item--slug-trust-center.is-submenu-open > .nv-menu__panel,
  .nv-menu__item--slug-resources.is-submenu-open > .nv-menu__panel {
    transform: translate(0, 0);
  }

  .nv-menu__panel-lead {
    display: grid;
    align-content: start;
    gap: 0.7rem;
    min-height: 100%;
    padding: 0.95rem;
    border: 1px solid rgba(22, 217, 255, 0.14);
    border-radius: 0.95rem;
    background: rgba(22, 217, 255, 0.055);
  }

  .nv-menu__panel-kicker {
    color: var(--nv-cyan);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .nv-menu__panel-lead p {
    margin: 0;
    color: var(--nv-muted);
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .nv-menu__panel-overview {
    align-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    width: 100%;
    min-height: 2.45rem;
    padding: 0.65rem 0.78rem;
    border: 1px solid rgba(22, 217, 255, 0.22);
    border-radius: 0.85rem;
    color: var(--nv-text);
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.86rem;
    font-weight: 820;
    text-decoration: none;
  }

  .nv-menu__panel-overview::after {
    content: "→";
    color: var(--nv-cyan);
  }

  .nv-menu__panel-overview:hover,
  .nv-menu__panel-overview:focus-visible {
    color: var(--nv-bg);
    background: linear-gradient(135deg, var(--nv-cyan), var(--nv-teal));
    border-color: transparent;
  }

  .nv-menu__panel .sub-menu,
  .nv-menu__panel .nv-menu__submenu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.16rem;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nv-menu__panel .sub-menu::before,
  .nv-menu__panel .nv-menu__submenu::before {
    display: none;
  }

  .nv-menu__panel .sub-menu a,
  .nv-menu__panel .nv-menu__submenu a {
    display: grid;
    gap: 0.18rem;
    min-height: 0;
    padding: 0.68rem 0.78rem;
    border: 1px solid transparent;
    border-radius: 0.85rem;
    color: var(--nv-text);
    background: transparent;
    line-height: 1.24;
    text-decoration: none;
  }

  .nv-menu__subitem-title {
    color: currentColor;
    font-size: 0.88rem;
    font-weight: 820;
  }

  .nv-menu__subitem-desc {
    color: var(--nv-muted);
    font-size: 0.77rem;
    font-weight: 560;
    line-height: 1.35;
  }

  .nv-menu__panel .sub-menu a:hover,
  .nv-menu__panel .sub-menu a:focus-visible,
  .nv-menu__panel .sub-menu a[aria-current="page"] {
    color: var(--nv-text);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(22, 217, 255, 0.16);
  }

  .nv-menu__panel .sub-menu a[aria-current="page"] .nv-menu__subitem-title {
    color: var(--nv-cyan);
  }
}

@media (max-width: 1320px) and (min-width: 1121px) {
  .nv-header-inner {
    gap: 0.55rem;
  }

  .nv-menu--primary > .nv-menu__item > .nv-menu__link,
  .nv-menu--primary > .nv-menu__item > .nv-menu__button {
    padding-inline: 0.62rem;
    font-size: 0.76rem;
  }

  .nv-nav-cta--desktop {
    max-width: 9.3rem;
    padding-inline: 0.78rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 1120px) {
  .nv-menu--primary {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nv-menu--primary > .nv-menu__item > .nv-menu__link,
  .nv-menu--primary > .nv-menu__item > .nv-menu__button {
    width: 100%;
    min-height: 2.85rem;
    justify-content: space-between;
    padding: 0.72rem 0.85rem;
    border-radius: var(--nv-radius-sm);
    color: var(--nv-text);
    font-size: 0.96rem;
  }

  .nv-menu__button::after {
    margin-left: auto;
  }

  .nv-menu__item.is-submenu-open > .nv-menu__panel {
    display: grid;
  }

  .nv-menu__panel {
    gap: 0.65rem;
    margin: 0.1rem 0 0.75rem 0.85rem;
    padding: 0 0 0 0.72rem;
    border-left: 1px solid rgba(22, 217, 255, 0.22);
  }

  .nv-menu__panel-lead {
    display: grid;
    gap: 0.45rem;
    padding: 0.55rem 0.35rem 0.2rem 0;
  }

  .nv-menu__panel-kicker {
    color: var(--nv-cyan);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .nv-menu__panel-lead p {
    margin: 0;
    color: var(--nv-muted);
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .nv-menu__panel-overview {
    color: var(--nv-text);
    font-size: 0.9rem;
    font-weight: 790;
    text-decoration: none;
  }

  .nv-menu__panel .sub-menu,
  .nv-menu__panel .nv-menu__submenu {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .nv-menu__panel .sub-menu a,
  .nv-menu__panel .nv-menu__submenu a {
    display: grid;
    gap: 0.12rem;
    padding: 0.56rem 0.58rem;
  }

  .nv-menu__subitem-title {
    font-weight: 800;
  }

  .nv-menu__subitem-desc {
    color: var(--nv-muted);
    font-size: 0.79rem;
    line-height: 1.34;
  }

  .nv-nav-cta--mobile {
    margin-top: 0.55rem;
  }
}

@media (max-width: 460px) {
  .nv-brand__text {
    font-size: 0.94rem;
  }

  .nv-menu-toggle__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nv-menu__button,
  .nv-menu__button::after,
  .nv-menu__panel {
    transition: none;
  }
}


/* v1.3.6 navigation behavior and polish: stable desktop flyouts, cleaner mobile disclosure, and safe body scroll handling. */
body.nv-mobile-nav-open {
  overflow: hidden;
}

body.nv-mobile-nav-open .nv-site-header {
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.46);
}

.nv-menu__item--disclosure {
  isolation: isolate;
}

.nv-menu__button[aria-haspopup="true"] {
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1121px) {
  .nv-menu--primary {
    position: relative;
  }

  .nv-menu__panel {
    overflow: hidden;
  }

  .nv-menu__item--panel-left > .nv-menu__panel {
    left: 0;
    right: auto;
    transform: translate(0, -0.35rem);
  }

  .nv-menu__item--panel-left.is-submenu-open > .nv-menu__panel {
    transform: translate(0, 0);
  }

  .nv-menu__item--panel-right > .nv-menu__panel {
    left: auto;
    right: 0;
    transform: translate(0, -0.35rem);
  }

  .nv-menu__item--panel-right.is-submenu-open > .nv-menu__panel {
    transform: translate(0, 0);
  }

  .nv-menu--primary > .nv-menu__item > .nv-menu__button:focus-visible,
  .nv-menu__panel a:focus-visible {
    outline: 2px solid rgba(22, 217, 255, 0.92);
    outline-offset: 3px;
  }

  .nv-menu__panel .sub-menu a::before,
  .nv-menu__panel .nv-menu__submenu a::before {
    content: "";
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.34;
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 0.35rem;
  }

  .nv-menu__panel .sub-menu a,
  .nv-menu__panel .nv-menu__submenu a {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.62rem;
  }

  .nv-menu__subitem-title,
  .nv-menu__subitem-desc {
    grid-column: 2;
  }
}

@media (max-width: 1120px) {
  .nv-primary-nav {
    max-height: min(82vh, 720px);
    overscroll-behavior: contain;
  }

  .nv-menu__item:not(.is-submenu-open) > .nv-menu__panel {
    display: none;
  }

  .nv-menu__item.is-submenu-open > .nv-menu__button {
    color: var(--nv-text);
    border-color: rgba(22, 217, 255, 0.28);
    background: rgba(22, 217, 255, 0.08);
  }

  .nv-menu__panel-overview {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.12rem;
  }

  .nv-menu__panel-overview::after {
    content: "→";
    color: var(--nv-cyan);
  }

  .nv-menu__subitem-desc {
    color: var(--nv-muted);
    font-size: 0.8rem;
    line-height: 1.35;
  }
}


/* v1.3.6 professional navigation reliability and fit pass. */
.nv-menu--primary {
  isolation: isolate;
}

.nv-menu--primary > .nv-menu__item > .nv-menu__button[aria-haspopup="true"] {
  -webkit-tap-highlight-color: transparent;
}

.nv-menu__panel {
  contain: layout paint;
}

@media (min-width: 1121px) {
  .nv-menu__item--has-children {
    position: relative;
  }

  .nv-menu__panel {
    width: min(40rem, calc(100vw - 3rem));
  }

  .nv-menu__item--slug-framework .nv-menu__panel {
    left: 0;
    transform: translate(0, -0.35rem);
  }

  .nv-menu__item--slug-framework.is-submenu-open > .nv-menu__panel {
    transform: translate(0, 0);
  }

  .nv-menu__item--slug-trust-center .nv-menu__panel,
  .nv-menu__item--slug-resources .nv-menu__panel {
    right: 0;
  }

  .nv-menu__panel-lead {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .nv-menu__panel .sub-menu a {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.8rem;
  }

  .nv-menu__panel .sub-menu a::after {
    content: "›";
    align-self: center;
    color: rgba(22, 217, 255, 0.76);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-0.15rem);
    transition: opacity 150ms ease, transform 150ms ease;
  }

  .nv-menu__panel .sub-menu a:hover::after,
  .nv-menu__panel .sub-menu a:focus-visible::after,
  .nv-menu__panel .sub-menu a[aria-current="page"]::after {
    opacity: 1;
    transform: translateX(0);
  }

  .nv-menu__subitem-title,
  .nv-menu__subitem-desc {
    grid-column: 1;
  }
}

@media (max-width: 1230px) and (min-width: 1121px) {
  .nv-nav-cta--desktop {
    max-width: 8.15rem;
    padding-inline: 0.72rem;
    font-size: 0.75rem;
  }

  .nv-menu--primary > .nv-menu__item > .nv-menu__link,
  .nv-menu--primary > .nv-menu__item > .nv-menu__button {
    padding-inline: 0.54rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 1120px) {
  html.nv-nav-open body {
    overflow: hidden;
  }

  .nv-nav-open .nv-primary-nav {
    max-height: calc(100dvh - 5.4rem);
    overflow: auto;
    overscroll-behavior: contain;
  }

  .nv-menu__panel[role="region"] {
    border-radius: 0.85rem;
  }
}


/* v1.3.6 navigation refinement: professional nav shell, Solutions grouping, and accessible hover/click flyouts. */
@media (min-width: 1121px) {
  .nv-site-header {
    background:
      linear-gradient(180deg, rgba(5, 11, 20, 0.94), rgba(5, 11, 20, 0.82));
  }

  .nv-header-inner {
    grid-template-columns: minmax(11.5rem, auto) minmax(0, 1fr) auto;
    gap: clamp(0.65rem, 1vw, 1.05rem);
  }

  .nv-menu--primary {
    padding: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
  }

  .nv-menu--primary > .nv-menu__item > .nv-menu__link,
  .nv-menu--primary > .nv-menu__item > .nv-menu__button {
    min-height: 2.28rem;
    padding: 0.52rem 0.7rem;
    border-color: transparent;
    color: rgba(245, 248, 251, 0.9);
    font-size: clamp(0.74rem, 0.14vw + 0.72rem, 0.84rem);
    font-weight: 780;
  }

  .nv-menu--primary > .nv-menu__item > .nv-menu__link:hover,
  .nv-menu--primary > .nv-menu__item > .nv-menu__link:focus-visible,
  .nv-menu--primary > .nv-menu__item > .nv-menu__button:hover,
  .nv-menu--primary > .nv-menu__item > .nv-menu__button:focus-visible,
  .nv-menu--primary > .nv-menu__item.is-submenu-open > .nv-menu__button,
  .nv-menu--primary > .nv-menu__item.is-ancestor > .nv-menu__button {
    color: var(--nv-text);
    background: rgba(22, 217, 255, 0.075);
    border-color: rgba(22, 217, 255, 0.18);
  }

  .nv-menu--primary > .nv-menu__item.is-current > .nv-menu__link,
  .nv-menu__item.is-current > .nv-menu__button,
  .nv-menu__button[aria-expanded="true"] {
    color: var(--nv-text);
    background: linear-gradient(180deg, rgba(22, 217, 255, 0.18), rgba(22, 217, 255, 0.075));
    border-color: rgba(22, 217, 255, 0.32);
  }

  .nv-menu__item.is-submenu-open > .nv-menu__panel {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nv-menu__item--slug-trust-center.is-submenu-open > .nv-menu__panel,
  .nv-menu__item--slug-resources.is-submenu-open > .nv-menu__panel {
    transform: translate(0, 0);
  }

  .nv-menu__panel {
    width: min(39rem, calc(100vw - 2rem));
    padding: 0.78rem;
    border-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
  }

  .nv-menu__panel-lead {
    background:
      radial-gradient(circle at top left, rgba(22, 217, 255, 0.14), transparent 44%),
      rgba(22, 217, 255, 0.045);
  }

  .nv-nav-cta--desktop {
    min-height: 2.5rem;
    padding: 0.6rem 0.9rem;
    max-width: none;
    border-color: rgba(22, 217, 255, 0.48);
    background: rgba(22, 217, 255, 0.035);
    font-size: 0.82rem;
  }
}

@media (max-width: 1240px) and (min-width: 1121px) {
  .nv-site-header .nv-container {
    max-width: calc(100vw - 0.8rem);
  }

  .nv-header-inner {
    gap: 0.5rem;
    grid-template-columns: minmax(10.75rem, auto) minmax(0, 1fr) auto;
  }

  .nv-brand__domain {
    display: none;
  }

  .nv-menu--primary > .nv-menu__item > .nv-menu__link,
  .nv-menu--primary > .nv-menu__item > .nv-menu__button {
    padding-inline: 0.54rem;
    font-size: 0.74rem;
  }

  .nv-nav-cta--desktop {
    padding-inline: 0.72rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 1120px) {
  .nv-primary-nav {
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  .nv-menu--primary > .nv-menu__item > .nv-menu__link,
  .nv-menu--primary > .nv-menu__item > .nv-menu__button {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
  }

  .nv-menu--primary > .nv-menu__item > .nv-menu__link:hover,
  .nv-menu--primary > .nv-menu__item > .nv-menu__link:focus-visible,
  .nv-menu--primary > .nv-menu__item > .nv-menu__button:hover,
  .nv-menu--primary > .nv-menu__item > .nv-menu__button:focus-visible,
  .nv-menu__item.is-submenu-open > .nv-menu__button {
    background: rgba(22, 217, 255, 0.075);
    border-color: rgba(22, 217, 255, 0.18);
  }
}

/* v1.3.6 flyout claim-boundary notes and Solutions fit correction. */
.nv-menu__panel-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.15rem;
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(123, 220, 114, 0.22);
  border-radius: 999px;
  color: rgba(231, 246, 234, 0.94);
  background: rgba(123, 220, 114, 0.08);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.25;
}

@media (min-width: 1121px) {
  .nv-menu__item--slug-use-cases .nv-menu__panel,
  .nv-menu__item--slug-framework .nv-menu__panel {
    left: 0;
    right: auto;
    transform: translate(0, -0.35rem);
  }

  .nv-menu__item--slug-use-cases.is-submenu-open > .nv-menu__panel,
  .nv-menu__item--slug-framework.is-submenu-open > .nv-menu__panel {
    transform: translate(0, 0);
  }

  .nv-nav-cta--desktop {
    white-space: nowrap;
  }
}

@media (max-width: 1120px) {
  .nv-menu__panel-note {
    border-radius: 0.7rem;
    font-size: 0.75rem;
  }
}


/* v1.3.8 UI/UX and SEO readability pass: shorter homepage, clearer search path, stronger contrast. */
:root {
  --nv-muted: #c6d3df;
  --nv-muted-strong: #d9e4ee;
}

.nv-front-page .nv-section,
.nv-front-page .nv-page-content {
  padding-block: clamp(2.7rem, 5vw, 4.6rem);
}

.nv-front-page .nv-section__header {
  max-width: 780px;
}

.nv-section__header--compact {
  margin-bottom: clamp(1.35rem, 3vw, 2.2rem);
}

.nv-hero {
  padding-block: clamp(2.4rem, 5vw, 5rem) 2.1rem;
}

.nv-hero__grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.74fr);
  gap: clamp(1.4rem, 4vw, 3.4rem);
}

.nv-hero__content {
  max-width: 690px;
}

.nv-hero h1 {
  font-size: clamp(2.35rem, 4.3vw, 4.6rem);
  line-height: 0.98;
}

.nv-hero__body,
.nv-section__header p,
.nv-card p,
.nv-boundary-copy p,
.nv-prose p {
  color: var(--nv-muted);
}

.nv-hero-boundary {
  min-height: clamp(24rem, 39vw, 32rem);
}

.nv-principle-strip article {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.nv-principle-strip p {
  color: var(--nv-muted-strong);
}

.nv-ux-summary {
  position: relative;
}

.nv-ux-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.nv-ux-summary__card {
  display: grid;
  gap: 0.55rem;
  min-height: 100%;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--nv-radius-md);
  color: var(--nv-text);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nv-ux-summary__card:hover,
.nv-ux-summary__card:focus-visible {
  border-color: rgba(22, 217, 255, 0.38);
  background: linear-gradient(145deg, rgba(22, 217, 255, 0.12), rgba(255, 255, 255, 0.045));
  color: var(--nv-text);
}

.nv-ux-summary__card span {
  color: var(--nv-cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.nv-ux-summary__card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 0.6vw + 0.92rem, 1.26rem);
  letter-spacing: -0.03em;
}

.nv-ux-summary__card p {
  margin: 0;
  color: var(--nv-muted-strong);
  font-size: 0.96rem;
  line-height: 1.55;
}

.nv-menu-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
  margin-top: 0.1rem;
}

.nv-menu-search input {
  min-width: 0;
  min-height: 2.35rem;
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.78rem;
  color: var(--nv-text);
  background: rgba(3, 7, 13, 0.58);
}

.nv-menu-search input::placeholder {
  color: rgba(198, 211, 223, 0.72);
}

.nv-menu-search button {
  min-height: 2.35rem;
  padding: 0.58rem 0.74rem;
  border: 1px solid rgba(22, 217, 255, 0.32);
  border-radius: 0.78rem;
  color: var(--nv-text);
  background: rgba(22, 217, 255, 0.1);
  font-weight: 800;
}

.nv-menu-search button:hover,
.nv-menu-search button:focus-visible {
  color: var(--nv-bg);
  border-color: transparent;
  background: linear-gradient(135deg, var(--nv-cyan), var(--nv-teal));
}

@media (max-width: 1080px) {
  .nv-ux-summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nv-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .nv-ux-summary__grid,
  .nv-principle-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .nv-menu-search {
    margin: 0.35rem 0 0.6rem 0;
  }
}


/* v1.3.8 UI/UX round: header tools, search, readable contrast, and optional light mode. */
html[data-theme="light"] {
  color-scheme: light;
  --nv-bg: #f7fbff;
  --nv-bg-soft: #eaf3fb;
  --nv-bg-deep: #ffffff;
  --nv-panel: rgba(4, 18, 32, 0.06);
  --nv-panel-strong: rgba(4, 18, 32, 0.10);
  --nv-text: #061525;
  --nv-muted: #35485c;
  --nv-muted-strong: #40566c;
  --nv-line: rgba(6, 21, 37, 0.16);
  --nv-danger-soft: rgba(176, 74, 42, 0.11);
  --nv-shadow-glow: 0 0 52px rgba(22, 137, 184, 0.18);
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 74% 10%, rgba(243, 185, 65, 0.16), transparent 27rem),
    radial-gradient(circle at 14% 0%, rgba(22, 217, 255, 0.14), transparent 24rem),
    linear-gradient(135deg, var(--nv-bg-deep), var(--nv-bg) 52%, #edf7fb);
}

html[data-theme="light"] .nv-site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 255, 0.82));
}

html[data-theme="light"] .nv-menu__panel,
html[data-theme="light"] .nv-primary-nav,
html[data-theme="light"] .nv-search-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.985), rgba(235, 246, 252, 0.985));
}

[hidden] { display: none !important; }

.nv-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.nv-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
}

.nv-header-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 2.5rem;
  padding: 0.54rem 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--nv-text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.8rem;
  font-weight: 780;
  letter-spacing: 0.005em;
}

.nv-header-tool:hover,
.nv-header-tool:focus-visible,
.nv-header-tool[aria-expanded="true"],
.nv-header-tool[aria-pressed="true"] {
  color: var(--nv-text);
  border-color: rgba(22, 217, 255, 0.32);
  background: rgba(22, 217, 255, 0.10);
}

.nv-search-panel {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  z-index: 150;
  padding: 1rem 0 1.15rem;
  border-top: 1px solid var(--nv-line);
  border-bottom: 1px solid var(--nv-line);
  background: rgba(5, 11, 20, 0.985);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
}

.nv-search-form {
  display: grid;
  gap: 0.55rem;
  max-width: 780px;
  margin-inline: auto;
}

.nv-search-form label {
  color: var(--nv-text);
  font-size: 0.86rem;
  font-weight: 840;
}

.nv-search-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}

.nv-search-form input[type="search"] {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.74rem 0.9rem;
  border: 1px solid rgba(22, 217, 255, 0.24);
  border-radius: 0.9rem;
  color: var(--nv-text);
  background: rgba(255, 255, 255, 0.065);
}

.nv-search-form button {
  min-height: 3.1rem;
  padding: 0.74rem 1rem;
  border: 0;
  border-radius: 0.9rem;
  color: var(--nv-bg);
  background: linear-gradient(135deg, var(--nv-cyan), var(--nv-teal));
  font-weight: 850;
}

.nv-search-form p {
  margin: 0;
  color: var(--nv-muted);
  font-size: 0.88rem;
}

.nv-section__header p,
.nv-prose p,
.nv-page-hero p,
.nv-hero__body,
.nv-hero__trust-line,
.nv-callout p,
.nv-card p {
  max-width: 72ch;
}

.nv-section__header p,
.nv-card p,
.nv-prose p,
.nv-boundary-copy p,
.nv-hero__body,
.nv-hero__trust-line,
.nv-footer-card p,
.nv-footer-card li {
  color: #c7d3de;
}

html[data-theme="light"] .nv-section__header p,
html[data-theme="light"] .nv-card p,
html[data-theme="light"] .nv-prose p,
html[data-theme="light"] .nv-boundary-copy p,
html[data-theme="light"] .nv-hero__body,
html[data-theme="light"] .nv-hero__trust-line,
html[data-theme="light"] .nv-footer-card p,
html[data-theme="light"] .nv-footer-card li {
  color: var(--nv-muted);
}

@media (max-width: 1320px) and (min-width: 1121px) {
  .nv-header-tool span:not([aria-hidden="true"]),
  .nv-theme-toggle [data-theme-toggle-label] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nv-header-tool { width: 2.52rem; padding-inline: 0; }
}

@media (max-width: 1120px) {
  .nv-header-inner { display: flex; }
  .nv-header-actions { margin-left: auto; }
  .nv-nav-cta--desktop,
  .nv-theme-toggle { display: none; }
  .nv-search-toggle span:not([aria-hidden="true"]) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nv-search-toggle { width: 2.74rem; padding-inline: 0; }
}

@media (max-width: 620px) {
  .nv-search-form__row { grid-template-columns: 1fr; }
  .nv-header-tool { min-height: 2.42rem; }
}


/* v1.3.8 UX readability/accessibility pass: search, theme toggle, progress indicator, light mode, and clearer content rhythm. */
html[data-theme="light"] {
  color-scheme: light;
  --nv-bg: #f5f8fb;
  --nv-bg-soft: #eaf2f8;
  --nv-bg-deep: #ffffff;
  --nv-panel: rgba(5, 18, 32, 0.065);
  --nv-panel-strong: rgba(5, 18, 32, 0.1);
  --nv-text: #071421;
  --nv-muted: #31465a;
  --nv-line: rgba(5, 18, 32, 0.16);
  --nv-warm-soft: rgba(178, 112, 0, 0.12);
  --nv-shadow-glow: 0 0 50px rgba(13, 132, 156, 0.14);
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 78% 8%, rgba(243, 185, 65, 0.2), transparent 28rem),
    radial-gradient(circle at 10% 7%, rgba(22, 217, 255, 0.16), transparent 24rem),
    linear-gradient(135deg, #ffffff, #f5f8fb 52%, #edf6f8);
}

html[data-theme="light"] .nv-site-header,
html[data-theme="light"] .nv-primary-nav,
html[data-theme="light"] .nv-menu__panel,
html[data-theme="light"] .nv-search-panel {
  background: rgba(255, 255, 255, 0.94);
  color: var(--nv-text);
}

html[data-theme="light"] .nv-menu--primary,
html[data-theme="light"] .nv-card,
html[data-theme="light"] .nv-panel-list,
html[data-theme="light"] .nv-callout,
html[data-theme="light"] .nv-guardrail-panel,
html[data-theme="light"] .nv-boundary-node,
html[data-theme="light"] .nv-boundary-copy,
html[data-theme="light"] .nv-relation-table,
html[data-theme="light"] .nv-page-hero,
html[data-theme="light"] .nv-disclosure {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 18px 48px rgba(19, 47, 72, 0.08);
}

html[data-theme="light"] .nv-principle-strip article {
  background: rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .nv-hero__glow {
  background:
    radial-gradient(circle at 65% 35%, rgba(22, 217, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 86% 36%, rgba(243, 185, 65, 0.16), transparent 23rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 248, 251, 0.86) 56%, rgba(235, 246, 248, 0.6) 100%);
}

html[data-theme="light"] .nv-hero-boundary,
html[data-theme="light"] .nv-totem-visual,
html[data-theme="light"] .nv-boundary-diagram {
  background: rgba(255, 255, 255, 0.72);
}

.nv-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
}

.nv-header-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--nv-text);
  font-size: 0.79rem;
  font-weight: 760;
  line-height: 1;
}

.nv-header-tool:hover,
.nv-header-tool:focus-visible,
.nv-search-open .nv-search-toggle,
.nv-theme-toggle[aria-pressed="true"] {
  border-color: rgba(22, 217, 255, 0.36);
  background: rgba(22, 217, 255, 0.09);
  color: var(--nv-text);
}

.nv-scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  overflow: hidden;
  background: transparent;
}

.nv-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--nv-cyan), var(--nv-teal), var(--nv-gold));
}

.nv-search-panel {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.65rem);
  z-index: 130;
  width: min(48rem, calc(100vw - 2rem));
  padding: 0.8rem;
  border: 1px solid var(--nv-line);
  border-radius: 1rem;
  transform: translateX(-50%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.nv-search-panel[hidden] {
  display: none;
}

.nv-search-form {
  display: grid;
  gap: 0.65rem;
}

.nv-search-form label {
  color: var(--nv-muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.nv-search-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.nv-search-form input[type="search"] {
  min-height: 2.85rem;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--nv-line);
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--nv-text);
}

.nv-search-form button {
  min-height: 2.85rem;
  padding-inline: 1rem;
  border: 0;
  border-radius: 0.78rem;
  background: linear-gradient(135deg, var(--nv-cyan), var(--nv-teal));
  color: #041018;
  font-weight: 850;
}

.nv-search-form p {
  margin: 0;
  color: var(--nv-muted);
  font-size: 0.9rem;
}

.nv-prose,
.nv-page-content__inner > .nv-prose {
  max-width: 72ch;
}

.nv-prose p,
.nv-prose li,
.nv-page-content p,
.nv-card p {
  line-height: 1.68;
}

.nv-section__header p,
.nv-hero__body,
.nv-boundary-copy p,
.nv-card p {
  max-width: 72ch;
}

.nv-card-grid {
  align-items: stretch;
}

.nv-card {
  height: 100%;
}

.nv-principle-strip article {
  min-height: 9.4rem;
}

.nv-disclosure-stack {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0.85rem;
}

.nv-disclosure {
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-md);
  background: var(--nv-panel);
  overflow: hidden;
}

.nv-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 0.95rem 1.15rem;
  color: var(--nv-text);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.nv-disclosure summary::-webkit-details-marker {
  display: none;
}

.nv-disclosure summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid var(--nv-line);
  border-radius: 999px;
  color: var(--nv-cyan);
}

.nv-disclosure[open] summary::after {
  content: "–";
}

.nv-disclosure .nv-panel-list {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--nv-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1240px) and (min-width: 1121px) {
  .nv-header-tool span:last-child {
    display: none;
  }
}

@media (max-width: 1120px) {
  .nv-header-inner {
    gap: 0.6rem;
  }

  .nv-header-actions {
    margin-left: auto;
  }

  .nv-header-tool span:last-child,
  .nv-nav-cta--desktop {
    display: none;
  }

  .nv-header-tool {
    width: 2.65rem;
    padding-inline: 0.55rem;
  }

  .nv-search-panel {
    top: calc(100% + 0.45rem);
  }

  .nv-search-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .nv-header-actions {
    gap: 0.32rem;
  }

  .nv-header-tool {
    width: 2.45rem;
    min-height: 2.45rem;
  }
}


/* v1.3.8 continuation: homepage orientation rail, search close control, and readability refinements. */
:root {
  --nv-reading-width: 72ch;
}

.nv-search-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nv-search-form__close {
  min-height: auto;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--nv-line);
  border-radius: 999px;
  color: var(--nv-text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.76rem;
  font-weight: 820;
}

.nv-search-form__close:hover,
.nv-search-form__close:focus-visible {
  border-color: rgba(22, 217, 255, 0.38);
  background: rgba(22, 217, 255, 0.11);
}

.nv-home-progress {
  position: sticky;
  top: var(--nv-header-offset, 76px);
  z-index: 60;
  border-block: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(5, 11, 20, 0.78);
  backdrop-filter: blur(16px);
}

.nv-home-progress__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 3.15rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.nv-home-progress__label {
  flex: 0 0 auto;
  color: var(--nv-muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nv-home-progress ul {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nv-home-progress a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.35rem 0.62rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--nv-muted-strong, var(--nv-muted));
  font-size: 0.8rem;
  font-weight: 760;
  white-space: nowrap;
}

.nv-home-progress a:hover,
.nv-home-progress a:focus-visible {
  color: var(--nv-text);
  border-color: rgba(22, 217, 255, 0.24);
  background: rgba(22, 217, 255, 0.08);
}

.nv-home-progress.is-compact {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

html[data-theme="light"] .nv-home-progress {
  background: rgba(255, 255, 255, 0.83);
  border-block-color: rgba(6, 21, 37, 0.10);
}

html[data-theme="light"] .nv-search-form input[type="search"] {
  background: rgba(255, 255, 255, 0.85);
}

html[data-theme="light"] .nv-search-form__close {
  background: rgba(4, 18, 32, 0.055);
}

.nv-main p,
.nv-prose li,
.nv-card p,
.nv-callout p,
.nv-footer-card p,
.nv-footer-card li {
  line-height: 1.72;
}

.nv-main p,
.nv-prose p,
.nv-prose li,
.nv-card p,
.nv-callout p {
  font-size: max(1rem, var(--nv-step-base, 1rem));
}

.nv-section__header,
.nv-prose,
.nv-callout,
.nv-page-hero__inner,
.nv-totem-explainer,
.nv-boundary-copy {
  max-width: var(--nv-reading-width);
}

.nv-section__header {
  margin-inline: auto;
}

.nv-card-grid--compact .nv-card p {
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .nv-home-progress {
    top: 65px;
  }

  .nv-home-progress__inner {
    min-height: 2.9rem;
  }
}

@media (max-width: 620px) {
  .nv-home-progress__label {
    display: none;
  }

  .nv-home-progress__inner {
    padding-inline: 1rem;
  }
}


/* v1.3.8 final polish: visible diagram caption, scroll progress, and search close controls. */
.nv-hero__visual-caption {
  max-width: 58ch;
  margin: 0.85rem auto 0;
  color: var(--nv-muted-strong, var(--nv-muted));
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.nv-principle-strip article > span {
  padding: 0.16rem 0.44rem;
  border: 1px solid rgba(22, 217, 255, 0.2);
  border-radius: 999px;
  background: rgba(22, 217, 255, 0.07);
}

.nv-scroll-progress span {
  will-change: transform;
}

html[data-theme="light"] .nv-hero__visual-caption {
  color: var(--nv-muted);
}

@media (prefers-reduced-motion: reduce) {
  .nv-scroll-progress span { transition: none; }
}

/* Keep the reader theme control available on mobile as an icon-only button. */
@media (max-width: 1120px) {
  .nv-header-actions .nv-theme-toggle {
    display: inline-flex;
  }
}
