:root {
  --console: #0B0F14;
  --console-raised: #141920;
  --panel: #1C2330;
  --panel-border: #2C3647;
  --enforce-green: #00C271;
  --enforce-green-dim: rgba(0,194,113,0.12);
  --enforce-green-glow: rgba(0,194,113,0.20);
  --deny-red: #D94F4F;
  --deny-red-dim: rgba(217,79,79,0.10);
  --steel: #8A95A3;
  --text-primary-dark: #EDF0F3;
  --text-secondary-dark: #7E8C9A;
  --text-primary-light: #141920;
  --text-secondary-light: #4A5668;
  --surface-light: #F4F6F8;
  --surface-white: #FFFFFF;
  --surface-light-border: #DDE2E8;
  --section-pad-y: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --grid-gap: 1.5rem;
  --card-pad: 1.75rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --ease-precise: cubic-bezier(0.25, 0, 0.1, 1);
  --dur-short: 140ms;
  --dur-med: 280ms;
  --font-head: 'Sora', Inter, system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', Inter, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary-dark);
  background: var(--console);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

.ntv-container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

.ntv-section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

.ntv-section--dark {
  background: var(--console);
  color: var(--text-primary-dark);
}

.ntv-section--dark-alt {
  background: var(--console-raised);
  color: var(--text-primary-dark);
}

.ntv-section--light {
  background: var(--surface-light);
  color: var(--text-primary-light);
}

.ntv-section--white {
  background: var(--surface-white);
  color: var(--text-primary-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
}

.ntv-hero-h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ntv-h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ntv-h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.ntv-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--enforce-green);
  margin-bottom: 0.75rem;
  display: block;
}

.ntv-label--dark {
  color: var(--text-secondary-light);
}

.ntv-subhead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary-dark);
  max-width: 56ch;
}

.ntv-subhead--light {
  color: var(--text-secondary-light);
}

.ntv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  transition: background var(--dur-short) var(--ease-precise),
              color var(--dur-short) var(--ease-precise),
              border-color var(--dur-short) var(--ease-precise),
              opacity var(--dur-short) var(--ease-precise);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.ntv-btn--primary-green {
  background: var(--enforce-green);
  color: var(--console);
  border: 1.5px solid var(--enforce-green);
  font-weight: 600;
}

.ntv-btn--primary-green:hover {
  background: #00d97c;
  border-color: #00d97c;
  color: var(--console);
}

.ntv-btn--outline-dark {
  background: transparent;
  color: var(--text-primary-dark);
  border: 1.5px solid var(--panel-border);
}

.ntv-btn--outline-dark:hover {
  border-color: var(--steel);
  color: var(--text-primary-dark);
}

.ntv-btn--outline-light {
  background: transparent;
  color: var(--text-primary-light);
  border: 1.5px solid var(--surface-light-border);
}

.ntv-btn--outline-light:hover {
  border-color: var(--text-secondary-light);
  color: var(--text-primary-light);
}

.ntv-btn--ghost-on-dark {
  background: transparent;
  color: var(--steel);
  border: 1.5px solid transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.ntv-btn--ghost-on-dark:hover {
  color: var(--text-primary-dark);
}

.ntv-btn--ghost-on-light {
  background: transparent;
  color: var(--text-secondary-light);
  border: 1.5px solid transparent;
}

.ntv-btn--ghost-on-light:hover {
  color: var(--text-primary-light);
}

.ntv-btn--text-link-dark {
  background: transparent;
  color: var(--enforce-green);
  border: none;
  padding: 0;
  font-weight: 400;
  font-size: 0.9375rem;
}

.ntv-btn--text-link-dark:hover {
  color: #00d97c;
}

.ntv-btn--text-link-light {
  background: transparent;
  color: var(--text-secondary-light);
  border: none;
  padding: 0;
  font-weight: 400;
  font-size: 0.9375rem;
}

.ntv-btn--text-link-light:hover {
  color: var(--text-primary-light);
}

.ntv-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.ntv-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur-med) var(--ease-precise),
              border-color var(--dur-med) var(--ease-precise),
              backdrop-filter var(--dur-med) var(--ease-precise);
  border-bottom: 1px solid transparent;
}

.ntv-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ntv-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.ntv-nav__logo img {
  height: 32px;
  width: auto;
}

.ntv-nav__logo-light {
  display: block;
}

.ntv-nav__logo-dark {
  display: none;
}

.ntv-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.ntv-nav__link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur-short) var(--ease-precise),
              background var(--dur-short) var(--ease-precise);
  color: var(--text-secondary-dark);
  white-space: nowrap;
  position: relative;
}

.ntv-nav__link:hover {
  color: var(--text-primary-dark);
}

.ntv-nav__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ntv-nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary-dark);
  cursor: pointer;
  background: transparent;
  border: none;
  white-space: nowrap;
  transition: color var(--dur-short) var(--ease-precise);
}

.ntv-nav__dropdown-toggle:hover {
  color: var(--text-primary-dark);
}

.ntv-nav__dropdown-caret {
  width: 12px;
  height: 12px;
  transition: transform var(--dur-short) var(--ease-precise);
}

.ntv-nav__dropdown--open .ntv-nav__dropdown-caret {
  transform: rotate(180deg);
}

.ntv-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--dur-short) var(--ease-precise),
              transform var(--dur-short) var(--ease-precise);
  z-index: 200;
}

.ntv-nav__dropdown--open .ntv-nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ntv-nav__dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary-dark);
  border-radius: var(--radius-sm);
  transition: color var(--dur-short), background var(--dur-short);
}

.ntv-nav__dropdown-item:hover {
  color: var(--text-primary-dark);
  background: var(--panel-border);
}

.ntv-nav__cta-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

.ntv-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}

.ntv-nav__hamburger-bar {
  width: 22px;
  height: 2px;
  background: var(--text-secondary-dark);
  border-radius: 2px;
  transition: transform var(--dur-short), opacity var(--dur-short), background var(--dur-short);
}

.ntv-nav--open .ntv-nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ntv-nav--open .ntv-nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.ntv-nav--open .ntv-nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ntv-page--dark-top .ntv-nav {
  background: transparent;
  border-bottom-color: transparent;
}

.ntv-page--dark-top .ntv-nav--scrolled {
  background: rgba(20, 25, 32, 0.92);
  border-bottom-color: var(--panel-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ntv-page--dark-top .ntv-nav__link {
  color: var(--text-secondary-dark);
}

.ntv-page--dark-top .ntv-nav__link:hover {
  color: var(--text-primary-dark);
}

.ntv-page--dark-top .ntv-nav__dropdown-toggle {
  color: var(--text-secondary-dark);
}

.ntv-page--dark-top .ntv-nav__dropdown-toggle:hover {
  color: var(--text-primary-dark);
}

.ntv-page--dark-top .ntv-nav .ntv-nav__logo-light {
  display: block;
}

.ntv-page--dark-top .ntv-nav .ntv-nav__logo-dark {
  display: none;
}

.ntv-page--dark-top .ntv-nav .ntv-btn--ghost-on-dark {
  color: var(--steel);
  border-color: transparent;
}

.ntv-page--dark-top .ntv-nav .ntv-btn--ghost-on-dark:hover {
  color: var(--text-primary-dark);
}

.ntv-page--light-top .ntv-nav {
  background: var(--surface-white);
  border-bottom-color: var(--surface-light-border);
}

.ntv-page--light-top .ntv-nav__link {
  color: var(--text-secondary-light);
}

.ntv-page--light-top .ntv-nav__link:hover {
  color: var(--text-primary-light);
}

.ntv-page--light-top .ntv-nav__dropdown-toggle {
  color: var(--text-secondary-light);
}

.ntv-page--light-top .ntv-nav__dropdown-toggle:hover {
  color: var(--text-primary-light);
}

.ntv-page--light-top .ntv-nav .ntv-nav__logo-light {
  display: none;
}

.ntv-page--light-top .ntv-nav .ntv-nav__logo-dark {
  display: block;
}

.ntv-page--light-top .ntv-nav .ntv-btn--ghost-on-dark {
  color: var(--text-secondary-light);
  border-color: var(--surface-light-border);
}

.ntv-page--light-top .ntv-nav .ntv-btn--ghost-on-dark:hover {
  color: var(--text-primary-light);
}

.ntv-page--light-top .ntv-nav .ntv-nav__hamburger-bar {
  background: var(--text-secondary-light);
}

.ntv-page--light-top .ntv-nav__dropdown-menu {
  background: var(--surface-white);
  border-color: var(--surface-light-border);
}

.ntv-page--light-top .ntv-nav__dropdown-item {
  color: var(--text-secondary-light);
}

.ntv-page--light-top .ntv-nav__dropdown-item:hover {
  color: var(--text-primary-light);
  background: var(--surface-light);
}

.ntv-page--light-top .ntv-nav--scrolled {
  background: var(--surface-white);
  border-bottom-color: var(--surface-light-border);
}

.ntv-footer {
  background: var(--console);
  border-top: 1px solid var(--panel-border);
  padding-top: clamp(3rem, 6vw, 5rem);
  color: var(--text-primary-dark);
}

.ntv-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ntv-footer__col {
  display: flex;
  flex-direction: column;
}

.ntv-footer__col-heading {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.25rem;
}

.ntv-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ntv-footer__col-link {
  font-size: 0.9375rem;
  color: var(--text-secondary-dark);
  transition: color var(--dur-short);
}

.ntv-footer__col-link:hover {
  color: var(--text-primary-dark);
}

.ntv-footer__bottom {
  border-top: 1px solid var(--panel-border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ntv-footer__copyright {
  font-size: 0.875rem;
  color: var(--text-secondary-dark);
}

.ntv-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ntv-footer__bottom-link {
  font-size: 0.875rem;
  color: var(--text-secondary-dark);
  transition: color var(--dur-short);
}

.ntv-footer__bottom-link:hover {
  color: var(--text-primary-dark);
}

.ntv-footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ntv-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--panel-border);
  color: var(--text-secondary-dark);
  font-size: 0.875rem;
  transition: color var(--dur-short), border-color var(--dur-short);
}

.ntv-footer__social-link:hover {
  color: var(--text-primary-dark);
  border-color: var(--steel);
}

.ntv-footer__cookie-pref {
  font-size: 0.875rem;
  color: var(--text-secondary-dark);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color var(--dur-short);
}

.ntv-footer__cookie-pref:hover {
  color: var(--text-primary-dark);
}

.ntv-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--console);
  position: relative;
  overflow: hidden;
}

.ntv-hero__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.ntv-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ntv-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ntv-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.ntv-hero__title em {
  font-style: normal;
  color: var(--enforce-green);
}

.ntv-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.7;
  max-width: 50ch;
}

.ntv-hero__ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.ntv-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntv-trust-bar {
  background: var(--console-raised);
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
  padding: 1.5rem 0;
}

.ntv-trust-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ntv-trust-bar__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.ntv-trust-bar__items {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ntv-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--steel);
}

.ntv-trust-bar__divider {
  width: 1px;
  height: 20px;
  background: var(--panel-border);
  flex-shrink: 0;
}

.ntv-page-hero {
  background: var(--console);
  padding-top: calc(64px + clamp(3rem, 5vw, 5rem));
  padding-bottom: clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.ntv-page-hero--light {
  background: var(--surface-light);
  padding-top: calc(64px + clamp(2.5rem, 4vw, 4rem));
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.ntv-page-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ntv-page-hero__inner--centered {
  grid-template-columns: 1fr;
  max-width: 780px;
  text-align: center;
}

.ntv-page-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.ntv-page-hero--light .ntv-page-hero__title {
  color: var(--text-primary-light);
}

.ntv-page-hero__sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.7;
  max-width: 55ch;
}

.ntv-page-hero--light .ntv-page-hero__sub {
  color: var(--text-secondary-light);
}

.ntv-page-hero__ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.ntv-page-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntv-section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.ntv-section-heading__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--text-primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.ntv-section-heading--light .ntv-section-heading__title {
  color: var(--text-primary-light);
}

.ntv-section-heading__sub {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.7;
}

.ntv-section-heading--light .ntv-section-heading__sub {
  color: var(--text-secondary-light);
}

.ntv-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ntv-problem-prose {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ntv-problem-prose__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--text-primary-dark);
  line-height: 1.25;
}

.ntv-problem-prose__body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.75;
}

.ntv-terminal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ntv-terminal {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ntv-terminal__header {
  background: var(--console-raised);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--panel-border);
}

.ntv-terminal__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--panel-border);
}

.ntv-terminal__title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary-dark);
  margin-left: auto;
  text-align: right;
}

.ntv-terminal__title--deny {
  color: var(--deny-red);
}

.ntv-terminal__title--allow {
  color: var(--enforce-green);
}

.ntv-terminal__body {
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-secondary-dark);
  overflow-x: auto;
}

.ntv-terminal__line {
  display: block;
  color: var(--text-secondary-dark);
}

.ntv-terminal__line--green {
  color: var(--enforce-green);
}

.ntv-terminal__line--red {
  color: var(--deny-red);
}

.ntv-terminal__line--dim {
  color: var(--panel-border);
}

.ntv-terminal__badge {
  display: inline-block;
  padding: 0.1em 0.4em;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-mono);
}

.ntv-terminal__badge--red {
  background: var(--deny-red-dim);
  color: var(--deny-red);
}

.ntv-terminal__badge--green {
  background: var(--enforce-green-dim);
  color: var(--enforce-green);
}

.ntv-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.ntv-how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.ntv-how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.75rem;
  right: -1px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--panel-border), transparent);
}

.ntv-how-step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--panel-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--enforce-green);
  margin-bottom: 1.25rem;
  background: var(--console);
  position: relative;
  z-index: 1;
}

.ntv-how-step__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary-dark);
  margin-bottom: 0.5rem;
}

.ntv-how-step__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.6;
}

.ntv-how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  pointer-events: none;
}

.ntv-usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.ntv-usecase-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--dur-short), transform var(--dur-short);
  color: inherit;
  text-decoration: none;
}

.ntv-usecase-card:hover {
  border-color: var(--enforce-green);
  transform: translateY(-2px);
  color: inherit;
}

.ntv-usecase-card__icon {
  width: 40px;
  height: 40px;
  background: var(--enforce-green-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--enforce-green);
  font-size: 1.125rem;
}

.ntv-usecase-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary-dark);
  line-height: 1.3;
}

.ntv-usecase-card__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.6;
  flex: 1;
}

.ntv-usecase-card__link {
  font-size: 0.875rem;
  color: var(--enforce-green);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
  transition: gap var(--dur-short);
}

.ntv-usecase-card:hover .ntv-usecase-card__link {
  gap: 0.5rem;
}

.ntv-control-map {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ntv-control-map__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--panel-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--console-raised);
}

.ntv-control-map__title {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary-dark);
}

.ntv-control-map__badge {
  background: var(--enforce-green-dim);
  color: var(--enforce-green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2em 0.6em;
  border-radius: 12px;
  font-family: var(--font-mono);
}

.ntv-control-map__table {
  width: 100%;
  border-collapse: collapse;
}

.ntv-control-map__table th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--panel-border);
  text-align: left;
  background: var(--console-raised);
}

.ntv-control-map__table td {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-primary-dark);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(44,54,71,0.5);
}

.ntv-control-map__table tr:last-child td {
  border-bottom: none;
}

.ntv-control-map__status-attached {
  color: var(--enforce-green);
  font-weight: 500;
}

.ntv-control-map__status-unattached {
  color: var(--steel);
}

.ntv-control-map__status-partial {
  color: #F59E0B;
}

.ntv-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.ntv-quote-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ntv-quote-card__mark {
  color: var(--enforce-green);
  font-size: 2rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.ntv-quote-card__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-primary-dark);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.ntv-quote-card__attr {
  font-size: 0.875rem;
  color: var(--text-secondary-dark);
  font-weight: 400;
}

.ntv-cta-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.ntv-cta-section__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary-dark);
  letter-spacing: -0.01em;
  max-width: 700px;
}

.ntv-cta-section__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  max-width: 50ch;
  line-height: 1.7;
}

.ntv-cta-section__buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ntv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  align-items: start;
}

.ntv-tier-card {
  background: var(--surface-light);
  border: 1.5px solid var(--surface-light-border);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text-primary-light);
}

.ntv-tier-card--featured {
  background: var(--panel);
  border-color: var(--enforce-green);
  color: var(--text-primary-dark);
  position: relative;
}

.ntv-tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--enforce-green);
  color: var(--console);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2em 0.8em;
  border-radius: 12px;
  white-space: nowrap;
}

.ntv-tier-card__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary-light);
}

.ntv-tier-card--featured .ntv-tier-card__name {
  color: var(--text-primary-dark);
}

.ntv-tier-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.ntv-tier-card__price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary-light);
  line-height: 1;
}

.ntv-tier-card--featured .ntv-tier-card__price {
  color: var(--text-primary-dark);
}

.ntv-tier-card__price-period {
  font-size: 0.875rem;
  color: var(--text-secondary-light);
}

.ntv-tier-card--featured .ntv-tier-card__price-period {
  color: var(--text-secondary-dark);
}

.ntv-tier-card__cap {
  font-size: 0.875rem;
  color: var(--text-secondary-light);
  line-height: 1.5;
  padding-top: 0.25rem;
}

.ntv-tier-card--featured .ntv-tier-card__cap {
  color: var(--text-secondary-dark);
}

.ntv-tier-card__divider {
  border: none;
  border-top: 1px solid var(--surface-light-border);
}

.ntv-tier-card--featured .ntv-tier-card__divider {
  border-color: var(--panel-border);
}

.ntv-tier-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.ntv-tier-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-secondary-light);
  line-height: 1.4;
}

.ntv-tier-card--featured .ntv-tier-card__feature {
  color: var(--text-secondary-dark);
}

.ntv-tier-card__feature-icon {
  color: var(--enforce-green);
  flex-shrink: 0;
  margin-top: 0.1em;
  font-size: 0.875rem;
}

.ntv-tier-card__cta {
  width: 100%;
  justify-content: center;
  padding: 0.75rem;
}

.ntv-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ntv-billing-toggle__label {
  font-size: 0.9375rem;
  color: var(--text-secondary-light);
  font-weight: 400;
}

.ntv-billing-toggle__label--active {
  color: var(--text-primary-light);
  font-weight: 500;
}

.ntv-billing-toggle__switch {
  width: 44px;
  height: 24px;
  background: var(--surface-light-border);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  border: none;
  transition: background var(--dur-short);
}

.ntv-billing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--surface-white);
  border-radius: 50%;
  transition: transform var(--dur-short);
}

.ntv-billing-toggle__switch--annual {
  background: var(--enforce-green);
}

.ntv-billing-toggle__switch--annual::after {
  transform: translateX(20px);
}

.ntv-billing-toggle__note {
  font-size: 0.8125rem;
  color: var(--enforce-green);
  font-weight: 500;
  padding: 0.2em 0.6em;
  background: var(--enforce-green-dim);
  border-radius: 12px;
}

.ntv-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.ntv-faq-item {
  border-bottom: 1px solid var(--surface-light-border);
}

.ntv-faq-item:first-child {
  border-top: 1px solid var(--surface-light-border);
}

.ntv-faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary-light);
  text-align: left;
  transition: color var(--dur-short);
}

.ntv-faq-item__question:hover {
  color: var(--text-primary-light);
}

.ntv-faq-item__caret {
  color: var(--text-secondary-light);
  flex-shrink: 0;
  transition: transform var(--dur-short);
  font-size: 0.875rem;
}

.ntv-faq-item--open .ntv-faq-item__caret {
  transform: rotate(180deg);
}

.ntv-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease-precise);
}

.ntv-faq-item--open .ntv-faq-item__answer {
  max-height: 400px;
}

.ntv-faq-item__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary-light);
  line-height: 1.7;
  font-weight: 300;
}

.ntv-docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.ntv-docs-sidebar {
  position: sticky;
  top: calc(64px + 1.5rem);
}

.ntv-docs-sidebar__section {
  margin-bottom: 1.5rem;
}

.ntv-docs-sidebar__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary-light);
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}

.ntv-docs-sidebar__link {
  display: block;
  padding: 0.4rem 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary-light);
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: color var(--dur-short), border-color var(--dur-short), background var(--dur-short);
}

.ntv-docs-sidebar__link:hover {
  color: var(--text-primary-light);
  background: var(--surface-light);
}

.ntv-docs-sidebar__link--active {
  color: var(--enforce-green);
  border-left-color: var(--enforce-green);
  background: var(--enforce-green-dim);
}

.ntv-docs-content {
  min-width: 0;
  background: var(--surface-white);
}

.ntv-docs-content h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.ntv-docs-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.ntv-docs-content p {
  color: var(--text-secondary-light);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 300;
}

.ntv-docs-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.ntv-docs-content li {
  color: var(--text-secondary-light);
  line-height: 1.7;
  margin-bottom: 0.375rem;
  font-weight: 300;
}

.ntv-docs-content pre {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.ntv-docs-content code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-primary-dark);
}

.ntv-docs-content pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--text-primary-dark);
  line-height: 1.6;
}

.ntv-inline-code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--console-raised);
  color: var(--enforce-green);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  border: 1px solid var(--panel-border);
}

.ntv-section--light .ntv-inline-code,
.ntv-section--white .ntv-inline-code {
  background: var(--surface-light);
  color: var(--text-primary-light);
  border-color: var(--surface-light-border);
}

.ntv-code-block {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ntv-code-block__header {
  background: var(--console-raised);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--panel-border);
}

.ntv-code-block__lang {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary-dark);
}

.ntv-code-block__body {
  padding: 1.25rem;
  overflow-x: auto;
}

.ntv-code-block__body pre {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-primary-dark);
  margin: 0;
  background: none;
  border: none;
  padding: 0;
}

.ntv-code-block__body pre .kw { color: #7EB8F0; }
.ntv-code-block__body pre .str { color: #C3E88D; }
.ntv-code-block__body pre .num { color: #F78C6C; }
.ntv-code-block__body pre .cm { color: var(--text-secondary-dark); font-style: italic; }
.ntv-code-block__body pre .key { color: var(--enforce-green); }
.ntv-code-block__body pre .val { color: #C3E88D; }
.ntv-code-block__body pre .op { color: var(--steel); }

.ntv-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.ntv-blog-card {
  background: var(--surface-white);
  border: 1px solid var(--surface-light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--text-primary-light);
  text-decoration: none;
  transition: border-color var(--dur-short), transform var(--dur-short);
}

.ntv-blog-card:hover {
  border-color: var(--surface-light-border);
  transform: translateY(-2px);
  color: var(--text-primary-light);
}

.ntv-blog-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-light);
}

.ntv-blog-card__cover img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform var(--dur-med);
  aspect-ratio: 16/9;
}

.ntv-blog-card:hover .ntv-blog-card__cover img {
  transform: scale(1.03);
}

.ntv-blog-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.ntv-blog-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--enforce-green);
}

.ntv-blog-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary-light);
  line-height: 1.4;
}

.ntv-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary-light);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}

.ntv-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-secondary-light);
  padding-top: 0.25rem;
}

.ntv-blog-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--surface-light-border);
  flex-shrink: 0;
}

.ntv-topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ntv-topic-tag {
  display: inline-block;
  padding: 0.3em 0.75em;
  background: var(--surface-white);
  border: 1px solid var(--surface-light-border);
  border-radius: 20px;
  font-size: 0.8125rem;
  color: var(--text-secondary-light);
  transition: color var(--dur-short), border-color var(--dur-short), background var(--dur-short);
  cursor: pointer;
  text-decoration: none;
}

.ntv-topic-tag:hover {
  color: var(--text-primary-light);
  border-color: var(--text-secondary-light);
}

.ntv-topic-tag--active {
  background: var(--enforce-green-dim);
  color: var(--enforce-green);
  border-color: var(--enforce-green);
}

.ntv-article-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3rem;
  align-items: start;
}

.ntv-article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}

.ntv-article-body h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-top: 2.5em;
  margin-bottom: 0.75rem;
}

.ntv-article-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-top: 2em;
  margin-bottom: 0.5rem;
}

.ntv-article-body p {
  color: var(--text-secondary-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.ntv-article-body ul,
.ntv-article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.ntv-article-body ul {
  list-style: disc;
}

.ntv-article-body ol {
  list-style: decimal;
}

.ntv-article-body li {
  color: var(--text-secondary-light);
  line-height: 1.75;
  margin-bottom: 0.375rem;
  font-weight: 300;
}

.ntv-article-body blockquote {
  border-left: 3px solid var(--enforce-green);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-secondary-light);
}

.ntv-article-body pre {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.ntv-article-body pre code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-primary-dark);
  background: none;
  border: none;
  padding: 0;
  line-height: 1.6;
}

.ntv-article-body img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.ntv-article-header {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--surface-light-border);
  margin-bottom: 2.5rem;
}

.ntv-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.ntv-article-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--enforce-green);
  background: var(--enforce-green-dim);
  padding: 0.2em 0.6em;
  border-radius: 3px;
}

.ntv-article-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary-light);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.ntv-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary-light);
  flex-wrap: wrap;
}

.ntv-article-author {
  font-weight: 500;
  color: var(--text-primary-light);
}

.ntv-article-sidebar {
  position: sticky;
  top: calc(64px + 2rem);
}

.ntv-related-articles {
  background: var(--surface-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.ntv-related-articles__heading {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary-light);
  margin-bottom: 1rem;
}

.ntv-related-articles__link {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--surface-light-border);
  line-height: 1.4;
  transition: color var(--dur-short);
}

.ntv-related-articles__link:hover {
  color: var(--text-primary-light);
}

.ntv-related-articles__link:last-child {
  border-bottom: none;
}

.ntv-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.ntv-contact-form-panel {
  background: var(--surface-white);
}

.ntv-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ntv-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ntv-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary-light);
}

.ntv-form-input,
.ntv-form-textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary-light);
  background: var(--surface-white);
  border: 1px solid var(--surface-light-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.875rem;
  transition: border-color var(--dur-short);
  outline: none;
  width: 100%;
}

.ntv-form-input:focus,
.ntv-form-textarea:focus {
  border-color: var(--enforce-green);
}

.ntv-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.ntv-form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ntv-form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-secondary-light);
  cursor: pointer;
}

.ntv-form-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--enforce-green);
}

.ntv-contact-info-card {
  background: var(--surface-light);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--text-primary-light);
}

.ntv-contact-info-card__heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary-light);
}

.ntv-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary-light);
}

.ntv-contact-info-item__icon {
  color: var(--enforce-green);
  flex-shrink: 0;
  margin-top: 0.15em;
  width: 16px;
  text-align: center;
}

.ntv-contact-info-item a {
  color: var(--text-secondary-light);
  transition: color var(--dur-short);
}

.ntv-contact-info-item a:hover {
  color: var(--text-primary-light);
}

.ntv-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ntv-team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-primary-dark);
}

.ntv-team-card__portrait {
  aspect-ratio: 5/6;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.ntv-team-card__portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 5/6;
}

.ntv-team-card__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary-dark);
}

.ntv-team-card__role {
  font-size: 0.875rem;
  color: var(--enforce-green);
  font-weight: 500;
}

.ntv-team-card__bio {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.65;
}

.ntv-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.ntv-value-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ntv-value-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary-dark);
}

.ntv-value-card__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.65;
}

.ntv-changelog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.ntv-changelog-list::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--panel-border);
}

.ntv-changelog-entry {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--panel-border);
  position: relative;
}

.ntv-changelog-entry:last-child {
  border-bottom: none;
}

.ntv-changelog-entry__date-col {
  text-align: right;
  padding-right: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.ntv-changelog-entry__date-col::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 1.25rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--panel-border);
  border: 2px solid var(--console-raised);
}

.ntv-changelog-entry__date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary-dark);
}

.ntv-changelog-entry__version {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--enforce-green);
  font-weight: 500;
}

.ntv-changelog-entry__content {
  padding-top: 1.1rem;
}

.ntv-changelog-entry__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary-dark);
  margin-bottom: 0.5rem;
}

.ntv-changelog-entry__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.65;
}

.ntv-changelog-entry__tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.625rem;
}

.ntv-changelog-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.15em 0.5em;
  border-radius: 3px;
}

.ntv-changelog-tag--feature {
  background: var(--enforce-green-dim);
  color: var(--enforce-green);
}

.ntv-changelog-tag--fix {
  background: var(--deny-red-dim);
  color: var(--deny-red);
}

.ntv-changelog-tag--infra {
  background: rgba(138,149,163,0.1);
  color: var(--steel);
}

.ntv-security-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 820px;
}

.ntv-security-item {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ntv-security-item__heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary-dark);
}

.ntv-security-item__icon {
  width: 32px;
  height: 32px;
  background: var(--enforce-green-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--enforce-green);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.ntv-security-item__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.7;
}

.ntv-integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.ntv-integration-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  color: var(--text-primary-dark);
}

.ntv-integration-card__logo {
  width: 48px;
  height: 48px;
  background: var(--console-raised);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--steel);
}

.ntv-integration-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary-dark);
}

.ntv-integration-card__status {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ntv-integration-card__status--available {
  color: var(--enforce-green);
}

.ntv-integration-card__status--soon {
  color: var(--steel);
}

.ntv-page--fullscreen-auth {
  min-height: 100vh;
  background: var(--console);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntv-auth-page {
  min-height: 100vh;
  background: var(--console);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  position: relative;
}

.ntv-auth-page__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
}

.ntv-auth-logo {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntv-auth-logo img {
  height: 36px;
  width: auto;
}

.ntv-auth-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.ntv-auth-card__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary-dark);
  margin-bottom: 0.375rem;
}

.ntv-auth-card__sub {
  font-size: 0.9rem;
  color: var(--text-secondary-dark);
  margin-bottom: 2rem;
  font-weight: 300;
}

.ntv-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ntv-auth-form .ntv-form-label {
  color: var(--text-secondary-dark);
}

.ntv-auth-form .ntv-form-input {
  background: var(--console);
  border-color: var(--panel-border);
  color: var(--text-primary-dark);
}

.ntv-auth-form .ntv-form-input:focus {
  border-color: var(--enforce-green);
}

.ntv-auth-form .ntv-form-input::placeholder {
  color: var(--text-secondary-dark);
  opacity: 0.6;
}

.ntv-auth-submit {
  width: 100%;
  justify-content: center;
  padding: 0.8rem;
  margin-top: 0.25rem;
  font-size: 0.9375rem;
}

.ntv-auth-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.ntv-auth-link {
  font-size: 0.875rem;
  color: var(--text-secondary-dark);
  transition: color var(--dur-short);
}

.ntv-auth-link a {
  color: var(--enforce-green);
}

.ntv-auth-link a:hover {
  color: #00d97c;
}

.ntv-auth-legal {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--panel-border);
  text-align: center;
}

.ntv-auth-legal p {
  font-size: 0.8125rem;
  color: var(--text-secondary-dark);
  line-height: 1.5;
}

.ntv-auth-legal a {
  color: var(--text-secondary-dark);
  text-decoration: underline;
  text-decoration-color: var(--panel-border);
  transition: color var(--dur-short);
}

.ntv-auth-legal a:hover {
  color: var(--text-primary-dark);
}

.ntv-legal-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: calc(64px + clamp(3rem, 5vw, 5rem)) clamp(1rem, 4vw, 2rem) clamp(3rem, 5vw, 5rem);
  background: var(--surface-white);
}

.ntv-legal-layout h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary-light);
  margin-bottom: 0.5rem;
}

.ntv-legal-layout .ntv-legal-updated {
  font-size: 0.875rem;
  color: var(--text-secondary-light);
  margin-bottom: 2.5rem;
  display: block;
}

.ntv-legal-layout h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.ntv-legal-layout h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary-light);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.ntv-legal-layout p {
  font-size: 0.9375rem;
  color: var(--text-secondary-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.ntv-legal-layout ul,
.ntv-legal-layout ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.ntv-legal-layout ul {
  list-style: disc;
}

.ntv-legal-layout ol {
  list-style: decimal;
}

.ntv-legal-layout li {
  font-size: 0.9375rem;
  color: var(--text-secondary-light);
  line-height: 1.75;
  margin-bottom: 0.375rem;
  font-weight: 300;
}

.ntv-legal-layout a {
  color: var(--text-primary-light);
  text-decoration: underline;
  text-decoration-color: var(--surface-light-border);
  transition: color var(--dur-short);
}

.ntv-legal-layout a:hover {
  color: var(--enforce-green);
}

.ntv-page--light-top .ntv-legal-layout {
  background: var(--surface-white);
  color: var(--text-primary-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--panel);
  border-top: 1px solid var(--panel-border);
  transform: translateY(100%);
  transition: transform var(--dur-med) var(--ease-precise);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-secondary-dark);
  line-height: 1.5;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--text-primary-dark);
  text-decoration: underline;
  text-decoration-color: var(--panel-border);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--dur-short), color var(--dur-short), border-color var(--dur-short);
  white-space: nowrap;
  background: transparent;
  color: var(--text-primary-dark);
  border: 1.5px solid var(--panel-border);
}

.cookie-banner__btn:hover {
  border-color: var(--steel);
  color: var(--text-primary-dark);
}

.cookie-banner__btn--accept {
  background: var(--enforce-green);
  color: var(--console);
  border-color: var(--enforce-green);
  font-weight: 600;
}

.cookie-banner__btn--accept:hover {
  background: #00d97c;
  border-color: #00d97c;
  color: var(--console);
}

.ntv-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-med) var(--ease-precise),
              transform var(--dur-med) var(--ease-precise);
}

.ntv-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.ntv-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ntv-about-story__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ntv-about-story__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-primary-dark);
  line-height: 1.3;
}

.ntv-about-story__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.75;
}

.ntv-about-story__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntv-stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2.5rem;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
}

.ntv-stat-band__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.ntv-stat-band__number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--enforce-green);
  line-height: 1;
}

.ntv-stat-band__label {
  font-size: 0.8125rem;
  color: var(--text-secondary-dark);
  font-weight: 400;
}

.ntv-docs-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.ntv-docs-card {
  background: var(--surface-white);
  border: 1px solid var(--surface-light-border);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  color: var(--text-primary-light);
  text-decoration: none;
  transition: border-color var(--dur-short), transform var(--dur-short);
}

.ntv-docs-card:hover {
  border-color: var(--text-secondary-light);
  transform: translateY(-2px);
  color: var(--text-primary-light);
}

.ntv-docs-card__icon {
  width: 40px;
  height: 40px;
  background: var(--enforce-green-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--enforce-green);
  font-size: 1.125rem;
}

.ntv-docs-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary-light);
}

.ntv-docs-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary-light);
  line-height: 1.55;
  font-weight: 300;
}

.ntv-docs-search {
  display: flex;
  align-items: center;
  background: var(--surface-white);
  border: 1px solid var(--surface-light-border);
  border-radius: var(--radius-md);
  padding: 0.625rem 1rem;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.ntv-docs-search__icon {
  color: var(--text-secondary-light);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.ntv-docs-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary-light);
  background: transparent;
}

.ntv-docs-search__input::placeholder {
  color: var(--text-secondary-light);
}

.ntv-content-section {
  max-width: 860px;
  margin: 0 auto;
}

.ntv-platform-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ntv-platform-feature__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ntv-platform-feature__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-primary-dark);
  line-height: 1.3;
}

.ntv-platform-feature__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-secondary-dark);
  line-height: 1.75;
}

.ntv-platform-feature__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ntv-platform-feature__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-secondary-dark);
}

.ntv-platform-feature__list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--enforce-green);
  margin-top: 0.55em;
  flex-shrink: 0;
}

.ntv-platform-feature__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntv-platform-feature--reversed .ntv-platform-feature__content {
  order: 2;
}

.ntv-platform-feature--reversed .ntv-platform-feature__visual {
  order: 1;
}

@media (max-width: 960px) {
  .ntv-nav__links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--panel-border);
    padding: 1rem;
    gap: 0.25rem;
  }

  .ntv-nav--open .ntv-nav__links {
    display: flex;
  }

  .ntv-nav__cta-group {
    display: none;
  }

  .ntv-nav--open .ntv-nav__cta-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.75rem 1rem 1.25rem;
  }

  .ntv-nav__hamburger {
    display: flex;
  }

  .ntv-hero__inner {
    grid-template-columns: 1fr;
  }

  .ntv-hero__visual {
    display: none;
  }

  .ntv-problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ntv-terminal-split {
    grid-template-columns: 1fr;
  }

  .ntv-how-steps {
    grid-template-columns: 1fr;
  }

  .ntv-how-step:not(:last-child)::after {
    display: none;
  }

  .ntv-usecase-grid {
    grid-template-columns: 1fr;
  }

  .ntv-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .ntv-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .ntv-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ntv-contact-grid {
    grid-template-columns: 1fr;
  }

  .ntv-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ntv-values-grid {
    grid-template-columns: 1fr;
  }

  .ntv-docs-layout {
    grid-template-columns: 1fr;
  }

  .ntv-docs-sidebar {
    position: static;
  }

  .ntv-article-layout {
    grid-template-columns: 1fr;
  }

  .ntv-article-sidebar {
    position: static;
  }

  .ntv-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ntv-page-hero__inner {
    grid-template-columns: 1fr;
  }

  .ntv-page-hero__ornament {
    display: none;
  }

  .ntv-integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ntv-about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ntv-stat-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .ntv-platform-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ntv-platform-feature--reversed .ntv-platform-feature__content {
    order: 0;
  }

  .ntv-platform-feature--reversed .ntv-platform-feature__visual {
    order: 0;
  }

  .ntv-docs-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ntv-footer__grid {
    grid-template-columns: 1fr;
  }

  .ntv-team-grid {
    grid-template-columns: 1fr;
  }

  .ntv-blog-grid {
    grid-template-columns: 1fr;
  }

  .ntv-stat-band {
    grid-template-columns: 1fr;
  }

  .ntv-trust-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ntv-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .ntv-cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }

  .ntv-changelog-list::before {
    display: none;
  }

  .ntv-changelog-entry {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .ntv-changelog-entry__date-col {
    text-align: left;
    align-items: flex-start;
    flex-direction: row;
    gap: 0.75rem;
    padding-right: 0;
  }

  .ntv-changelog-entry__date-col::after {
    display: none;
  }

  .ntv-changelog-entry__content {
    padding-top: 0;
  }

  .ntv-integrations-grid {
    grid-template-columns: 1fr;
  }

  .ntv-auth-card {
    padding: 1.75rem 1.25rem;
  }

  .ntv-billing-toggle {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.ntv-page--light-top {
  background: var(--surface-white);
  color: var(--text-primary-light);
}

.ntv-page-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-article {
  display: block;
}

.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--surface-light-border);
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-secondary-light);
  margin-top: 0.375rem;
  display: block;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.legal-table th {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary-light);
  text-align: left;
  padding: 0.625rem 0.875rem;
  background: var(--surface-light);
  border-bottom: 2px solid var(--surface-light-border);
}

.legal-table td {
  padding: 0.625rem 0.875rem;
  color: var(--text-secondary-light);
  border-bottom: 1px solid var(--surface-light-border);
  vertical-align: top;
  line-height: 1.55;
  font-weight: 300;
  font-size: 0.9rem;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.cookie-banner--notice {
  display: block;
}
