: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: #afbdca;
  --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(2.15rem, 3vw + 0.95rem, 4.1rem);
  --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-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

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

.nv-footer-nav h2,
.nv-footer-slogans h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nv-footer-links a {
  text-decoration: none;
}

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

.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: 920px) {
  :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-grid {
    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-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 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;
  }
}
