@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,600;1,9..144,700&family=IBM+Plex+Sans:wght@400;500&family=IBM+Plex+Mono:wght@400&display=swap');

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

:root {
  --port-navy: #0E1E3A;
  --port-navy-alt: #162847;
  --steel-teal: #2A5B6E;
  --harbor-grey: #3D4D5C;
  --form-white: #F7F5F0;
  --bond-white: #FDFCF8;
  --scanner-amber: #D97C14;
  --scanner-amber-dim: #B8690F;
  --extraction-gold: #F0A83A;
  --stamp-muted: #6B7A8A;
  --paper-border: #D8D4CC;
  --success-green: #1E7B4E;
  --fg-dark-primary: #FDFCF8;
  --fg-dark-muted: #9EB0BF;
  --fg-dark-accent: #F0A83A;
  --fg-light-primary: #0E1E3A;
  --fg-light-muted: #4A5C6B;
  --fg-light-accent: #D97C14;
  --max-w: 1200px;
  --radius-card: 4px;
  --radius-form: 2px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg-light-primary);
  background: var(--bond-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

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

.TVNT-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.TVNT-section--dark {
  background: var(--port-navy);
  color: var(--fg-dark-primary);
}

.TVNT-section--dark-alt {
  background: var(--steel-teal);
  color: var(--fg-dark-primary);
}

.TVNT-section--light {
  background: var(--form-white);
  color: var(--fg-light-primary);
}

.TVNT-section--white {
  background: var(--bond-white);
  color: var(--fg-light-primary);
}

.TVNT-section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--scanner-amber);
  margin-bottom: 0.75rem;
}

.TVNT-section--dark .TVNT-section-label {
  color: var(--extraction-gold);
}

.TVNT-section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg-light-primary);
}

.TVNT-section--dark .TVNT-section-headline {
  color: var(--fg-dark-primary);
}

.TVNT-section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-light-muted);
  max-width: 60ch;
}

.TVNT-section--dark .TVNT-section-sub {
  color: var(--fg-dark-muted);
}

.TVNT-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-form);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 150ms var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.TVNT-btn--primary {
  background: var(--scanner-amber);
  color: var(--port-navy);
  border: 1.5px solid var(--scanner-amber);
}

.TVNT-btn--primary:hover {
  background: var(--scanner-amber-dim);
  border-color: var(--scanner-amber-dim);
  color: var(--port-navy);
}

.TVNT-btn--ghost-on-dark {
  background: transparent;
  color: var(--fg-dark-primary);
  border: 1.5px solid rgba(253, 252, 248, 0.4);
}

.TVNT-btn--ghost-on-dark:hover {
  border-color: var(--fg-dark-primary);
  color: var(--fg-dark-primary);
}

.TVNT-btn--ghost-on-light {
  background: transparent;
  color: var(--fg-light-primary);
  border: 1.5px solid rgba(14, 30, 58, 0.35);
}

.TVNT-btn--ghost-on-light:hover {
  border-color: var(--fg-light-primary);
  color: var(--fg-light-primary);
}

.TVNT-btn--outline-dark {
  background: transparent;
  color: var(--fg-dark-primary);
  border: 1.5px solid rgba(253, 252, 248, 0.5);
}

.TVNT-btn--outline-dark:hover {
  background: rgba(253, 252, 248, 0.08);
  color: var(--fg-dark-primary);
}

.TVNT-btn--outline-light {
  background: transparent;
  color: var(--fg-light-primary);
  border: 1.5px solid var(--paper-border);
}

.TVNT-btn--outline-light:hover {
  border-color: var(--fg-light-primary);
}

.TVNT-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}

.TVNT-page--dark-top .TVNT-nav {
  background: transparent;
}

.TVNT-page--dark-top .TVNT-nav.TVNT-nav--scrolled {
  background: var(--port-navy);
  box-shadow: 0 1px 0 rgba(240, 168, 58, 0.12);
}

.TVNT-page--light-top .TVNT-nav {
  background: var(--bond-white);
  box-shadow: 0 1px 0 var(--paper-border);
}

.TVNT-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

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

.TVNT-nav__logo img {
  height: 30px;
  width: auto;
}

.TVNT-nav__logo .TVNT-logo--dark {
  display: none;
}

.TVNT-nav__logo .TVNT-logo--light {
  display: block;
}

.TVNT-page--light-top .TVNT-nav__logo .TVNT-logo--dark {
  display: block;
}

.TVNT-page--light-top .TVNT-nav__logo .TVNT-logo--light {
  display: none;
}

.TVNT-page--dark-top .TVNT-nav--scrolled .TVNT-logo--dark {
  display: none;
}

.TVNT-page--dark-top .TVNT-nav--scrolled .TVNT-logo--light {
  display: block;
}

.TVNT-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.TVNT-nav__link {
  font-size: 14.5px;
  font-weight: 500;
  transition: color 180ms;
  position: relative;
}

.TVNT-page--dark-top .TVNT-nav__link {
  color: rgba(253, 252, 248, 0.85);
}

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

.TVNT-page--light-top .TVNT-nav__link {
  color: var(--fg-light-muted);
}

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

.TVNT-nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.TVNT-page--dark-top .TVNT-nav .TVNT-btn--ghost-on-dark {
  color: var(--fg-dark-primary);
  border-color: rgba(253, 252, 248, 0.4);
}

.TVNT-page--light-top .TVNT-nav .TVNT-btn--ghost-on-dark {
  color: var(--fg-light-primary);
  border-color: rgba(14, 30, 58, 0.35);
}

.TVNT-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: none;
}

.TVNT-nav__hamburger span {
  display: block;
  height: 2px;
  border-radius: 1px;
  transition: transform 250ms var(--ease-out), opacity 200ms;
}

.TVNT-page--dark-top .TVNT-nav__hamburger span {
  background: var(--fg-dark-primary);
}

.TVNT-page--light-top .TVNT-nav__hamburger span {
  background: var(--fg-light-primary);
}

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

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

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

.TVNT-nav__mobile {
  display: none;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
  border-top: 1px solid rgba(253, 252, 248, 0.12);
}

.TVNT-page--light-top .TVNT-nav__mobile {
  border-top-color: var(--paper-border);
  background: var(--bond-white);
}

.TVNT-page--dark-top .TVNT-nav__mobile {
  background: var(--port-navy);
}

.TVNT-nav--open .TVNT-nav__mobile {
  display: block;
}

.TVNT-nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.TVNT-nav__mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(253, 252, 248, 0.08);
}

.TVNT-page--dark-top .TVNT-nav__mobile-link {
  color: rgba(253, 252, 248, 0.85);
}

.TVNT-page--light-top .TVNT-nav__mobile-link {
  color: var(--fg-light-primary);
  border-bottom-color: var(--paper-border);
}

.TVNT-nav__mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
}

.TVNT-nav__mobile-cta .TVNT-btn {
  justify-content: center;
}

.TVNT-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  overflow: hidden;
}

.TVNT-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.TVNT-hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--extraction-gold);
  margin-bottom: 1.25rem;
}

.TVNT-hero__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.25rem, 7vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  color: var(--fg-dark-primary);
  margin-bottom: 1.5rem;
  font-variation-settings: 'opsz' 72;
}

.TVNT-hero__sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg-dark-muted);
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

.TVNT-hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.TVNT-hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.TVNT-hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}

.TVNT-hero__content {
  position: relative;
  z-index: 1;
}

.TVNT-hero__media {
  position: relative;
  z-index: 1;
}

.TVNT-scan-mock {
  background: var(--port-navy-alt);
  border: 1px solid rgba(240, 168, 58, 0.2);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
}

.TVNT-scan-mock__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(240, 168, 58, 0.15);
}

.TVNT-scan-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 168, 58, 0.4);
}

.TVNT-scan-mock__title {
  font-size: 11px;
  color: var(--fg-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.TVNT-scan-mock__doc {
  background: rgba(253, 252, 248, 0.04);
  border: 1px solid rgba(253, 252, 248, 0.08);
  border-radius: 2px;
  padding: 1rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.TVNT-scan-mock__doc-line {
  height: 6px;
  border-radius: 2px;
  background: rgba(253, 252, 248, 0.12);
  margin-bottom: 6px;
}

.TVNT-scan-mock__doc-line--wide { width: 85%; }
.TVNT-scan-mock__doc-line--med { width: 65%; }
.TVNT-scan-mock__doc-line--short { width: 45%; }

.TVNT-scan-mock__beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--extraction-gold), transparent);
  animation: TVNT-scanbeam 2.4s ease-in-out infinite;
  box-shadow: 0 0 12px var(--extraction-gold);
}

@keyframes TVNT-scanbeam {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.TVNT-scan-mock__fields {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.TVNT-scan-mock__field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 8px;
  background: rgba(240, 168, 58, 0.06);
  border-left: 2px solid var(--extraction-gold);
  border-radius: 0 2px 2px 0;
  animation: TVNT-fieldin 0.4s ease-out backwards;
}

.TVNT-scan-mock__field:nth-child(1) { animation-delay: 0.3s; }
.TVNT-scan-mock__field:nth-child(2) { animation-delay: 0.6s; }
.TVNT-scan-mock__field:nth-child(3) { animation-delay: 0.9s; }
.TVNT-scan-mock__field:nth-child(4) { animation-delay: 1.2s; }
.TVNT-scan-mock__field:nth-child(5) { animation-delay: 1.5s; }

@keyframes TVNT-fieldin {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.TVNT-scan-mock__field-key {
  color: var(--fg-dark-muted);
  font-size: 10px;
}

.TVNT-scan-mock__field-val {
  color: var(--extraction-gold);
  font-size: 10px;
  font-weight: 500;
}

.TVNT-problem-strip {
  padding: 4rem 0;
}

.TVNT-problem-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
  text-align: center;
}

.TVNT-problem-strip__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.TVNT-problem-strip__number {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--extraction-gold);
  line-height: 1;
}

.TVNT-problem-strip__label {
  font-size: 14px;
  color: rgba(253, 252, 248, 0.75);
  max-width: 18ch;
  line-height: 1.4;
}

.TVNT-problem-strip__divider {
  width: 1px;
  height: 56px;
  background: rgba(240, 168, 58, 0.25);
  flex-shrink: 0;
}

.TVNT-hiw-preview {
  padding: 5rem 0;
}

.TVNT-hiw-preview__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.TVNT-hiw-preview__header .TVNT-section-headline {
  margin-bottom: 0.75rem;
}

.TVNT-steps-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.TVNT-step-card {
  background: var(--bond-white);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  position: relative;
}

.TVNT-step-card__num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(217, 124, 20, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.TVNT-step-card__title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  margin-bottom: 0.75rem;
}

.TVNT-step-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-light-muted);
}

.TVNT-step-card__connector {
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--scanner-amber), transparent);
  z-index: 1;
}

.TVNT-step-card:last-child .TVNT-step-card__connector {
  display: none;
}

.TVNT-product-accuracy {
  padding: 5rem 0;
}

.TVNT-product-accuracy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.TVNT-product-accuracy__left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.TVNT-product-accuracy__right {
  display: flex;
  flex-direction: column;
}

.TVNT-accuracy-stat {
  margin-bottom: 2rem;
}

.TVNT-accuracy-stat__num {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--extraction-gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.TVNT-accuracy-stat__label {
  font-size: 15px;
  color: var(--fg-dark-muted);
  line-height: 1.6;
  max-width: 38ch;
}

.TVNT-accuracy-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(42, 91, 110, 0.4);
  border-left: 3px solid var(--extraction-gold);
  border-radius: 0 2px 2px 0;
}

.TVNT-accuracy-note__icon {
  color: var(--extraction-gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.TVNT-accuracy-note__text {
  font-size: 14px;
  color: var(--fg-dark-muted);
  line-height: 1.55;
}

.TVNT-extraction-table {
  background: rgba(22, 40, 71, 0.8);
  border: 1px solid rgba(240, 168, 58, 0.15);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.TVNT-extraction-table__head {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(240, 168, 58, 0.08);
  border-bottom: 1px solid rgba(240, 168, 58, 0.15);
}

.TVNT-extraction-table__head-cell {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dark-muted);
}

.TVNT-extraction-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(253, 252, 248, 0.04);
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
}

.TVNT-extraction-table__row:last-child {
  border-bottom: none;
}

.TVNT-extraction-table__field {
  color: var(--fg-dark-muted);
}

.TVNT-extraction-table__value {
  color: var(--fg-dark-primary);
}

.TVNT-extraction-table__check {
  font-size: 13px;
  color: #4ade80;
}

.TVNT-extraction-table__flag {
  font-size: 13px;
  color: var(--extraction-gold);
}

.TVNT-integration-strip {
  padding: 4.5rem 0;
}

.TVNT-integration-strip__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.TVNT-integration-strip__header .TVNT-section-headline {
  margin-bottom: 0.75rem;
}

.TVNT-integration-strip__sub {
  font-size: 15px;
  color: var(--fg-light-muted);
}

.TVNT-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.TVNT-logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 1.25rem;
  background: var(--bond-white);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-light-muted);
  letter-spacing: 0.01em;
}

.TVNT-integration-strip__cta {
  text-align: center;
  margin-top: 1.5rem;
}

.TVNT-testimonials {
  padding: 5rem 0;
}

.TVNT-testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.TVNT-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.TVNT-quote-card {
  padding: 2.5rem;
  background: var(--form-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--paper-border);
  position: relative;
}

.TVNT-quote-card__mark {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--scanner-amber);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
  font-style: normal;
}

.TVNT-quote-card__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-light-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.TVNT-quote-card__attr {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-light-muted);
}

.TVNT-cta-close {
  padding: 5.5rem 0;
  text-align: center;
}

.TVNT-cta-close__heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--fg-dark-primary);
  margin-bottom: 1.5rem;
  max-width: 24ch;
  margin-inline: auto;
}

.TVNT-cta-close__sub {
  font-size: 17px;
  color: var(--fg-dark-muted);
  margin-bottom: 2.5rem;
}

.TVNT-cta-close__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.TVNT-footer {
  background: var(--port-navy);
  color: var(--fg-dark-primary);
  padding: 4rem 0 2rem;
}

.TVNT-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.TVNT-footer__brand {
  display: flex;
  flex-direction: column;
}

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

.TVNT-footer__brand-logo {
  height: 28px;
  width: auto;
  margin-bottom: 1rem;
}

.TVNT-footer__brand-desc {
  font-size: 14px;
  color: var(--fg-dark-muted);
  line-height: 1.7;
  max-width: 28ch;
}

.TVNT-footer__col-heading {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--extraction-gold);
  margin-bottom: 1.25rem;
}

.TVNT-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.TVNT-footer__link {
  font-size: 14px;
  color: var(--fg-dark-muted);
  transition: color 180ms;
}

.TVNT-footer__link:hover {
  color: var(--fg-dark-primary);
}

.TVNT-footer__bottom {
  border-top: 1px solid rgba(253, 252, 248, 0.1);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.TVNT-footer__copy {
  font-size: 13px;
  color: var(--fg-dark-muted);
}

.TVNT-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.TVNT-footer__legal-link {
  font-size: 13px;
  color: var(--fg-dark-muted);
  transition: color 180ms;
}

.TVNT-footer__legal-link:hover {
  color: var(--fg-dark-primary);
}

.TVNT-page-hero {
  padding-top: 120px;
  padding-bottom: 4.5rem;
}

.TVNT-page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.TVNT-page-hero--centered .TVNT-page-hero__inner {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.TVNT-page-hero--centered .TVNT-section-sub {
  margin-inline: auto;
}

.TVNT-page-hero__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.TVNT-section--dark .TVNT-page-hero__title {
  color: var(--fg-dark-primary);
}

.TVNT-section--light .TVNT-page-hero__title,
.TVNT-section--white .TVNT-page-hero__title {
  color: var(--fg-light-primary);
}

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

.TVNT-page-hero__ornament svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.TVNT-page-hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.TVNT-page-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.TVNT-page-hero__stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--extraction-gold);
  line-height: 1;
}

.TVNT-page-hero__stat-label {
  font-size: 13px;
  color: var(--fg-dark-muted);
}

.TVNT-pipeline {
  padding: 5rem 0;
}

.TVNT-pipeline__header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.TVNT-pipeline__stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.TVNT-pipeline-stage {
  text-align: center;
}

.TVNT-pipeline-stage__icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  background: rgba(217, 124, 20, 0.1);
  border: 1px solid rgba(217, 124, 20, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--scanner-amber);
  font-size: 18px;
}

.TVNT-pipeline-stage__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--scanner-amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.TVNT-pipeline-stage__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-light-primary);
  margin-bottom: 0.5rem;
}

.TVNT-pipeline-stage__desc {
  font-size: 13px;
  color: var(--fg-light-muted);
  line-height: 1.55;
}

.TVNT-pipeline-detail {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.TVNT-pipeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.TVNT-pipeline-item__num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(217, 124, 20, 0.3);
  line-height: 1;
  min-width: 2.5rem;
}

.TVNT-pipeline-item__content h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--fg-light-primary);
  margin-bottom: 0.6rem;
}

.TVNT-pipeline-item__content p {
  font-size: 15px;
  color: var(--fg-light-muted);
  line-height: 1.65;
}

.TVNT-doc-types {
  padding: 5rem 0;
}

.TVNT-doc-types__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.TVNT-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.TVNT-doc-card {
  padding: 1.5rem;
  background: var(--form-white);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
}

.TVNT-doc-card__icon {
  font-size: 20px;
  color: var(--scanner-amber);
  margin-bottom: 0.75rem;
}

.TVNT-doc-card__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-light-primary);
  margin-bottom: 0.35rem;
}

.TVNT-doc-card__fields {
  font-size: 13px;
  color: var(--fg-light-muted);
}

.TVNT-field-extraction {
  padding: 5rem 0;
}

.TVNT-field-extraction__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.TVNT-field-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.TVNT-field-list__group {
  background: rgba(253, 252, 248, 0.03);
  border: 1px solid rgba(253, 252, 248, 0.06);
  border-radius: 8px;
  padding: 1rem 1.125rem;
}

.TVNT-field-list__group-title {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--extraction-gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(240, 168, 58, 0.2);
}

.TVNT-field-list__item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--fg-dark-muted);
  display: inline-block;
  background: rgba(253, 252, 248, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin: 0.2rem 0.25rem 0.2rem 0;
}

.TVNT-validation-layers {
  padding: 5rem 0;
}

.TVNT-validation-layers__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.TVNT-validation-layers__header {
  margin-bottom: 2rem;
}

.TVNT-validation-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.TVNT-validation-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.TVNT-validation-item__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(217, 124, 20, 0.15);
  border: 1px solid rgba(217, 124, 20, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--scanner-amber);
  flex-shrink: 0;
}

.TVNT-validation-item__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-light-primary);
  margin-bottom: 0.35rem;
}

.TVNT-validation-item__desc {
  font-size: 14px;
  color: var(--fg-light-muted);
  line-height: 1.6;
}

.TVNT-hiw-steps {
  padding: 0;
}

.TVNT-hiw-step {
  padding: 4.5rem 0;
}

.TVNT-hiw-step__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.TVNT-hiw-step__num {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--scanner-amber);
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.TVNT-section--white .TVNT-hiw-step__num,
.TVNT-section--light .TVNT-hiw-step__num {
  color: rgba(217, 124, 20, 0.4);
}

.TVNT-hiw-step__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.TVNT-section--dark .TVNT-hiw-step__title {
  color: var(--fg-dark-primary);
}

.TVNT-section--light .TVNT-hiw-step__title,
.TVNT-section--white .TVNT-hiw-step__title {
  color: var(--fg-light-primary);
}

.TVNT-hiw-step__body {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.TVNT-section--dark .TVNT-hiw-step__body {
  color: var(--fg-dark-muted);
}

.TVNT-section--light .TVNT-hiw-step__body,
.TVNT-section--white .TVNT-hiw-step__body {
  color: var(--fg-light-muted);
}

.TVNT-hiw-step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.TVNT-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(217, 124, 20, 0.1);
  border: 1px solid rgba(217, 124, 20, 0.3);
  border-radius: 2px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  color: var(--scanner-amber);
}

.TVNT-section--dark .TVNT-tag {
  background: rgba(240, 168, 58, 0.12);
  border-color: rgba(240, 168, 58, 0.3);
  color: var(--extraction-gold);
}

.TVNT-hiw-step__diagram {
  display: flex;
  justify-content: center;
  align-items: center;
}

.TVNT-hiw-step__image {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.TVNT-hiw-step__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.TVNT-integrations-hero {
  padding-top: 120px;
  padding-bottom: 4rem;
}

.TVNT-integration-cats {
  padding: 5rem 0;
}

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

.TVNT-integration-cat {
  padding: 2rem;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  background: var(--bond-white);
}

.TVNT-integration-cat__icon {
  font-size: 22px;
  color: var(--scanner-amber);
  margin-bottom: 0.75rem;
}

.TVNT-integration-cat__name {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-light-primary);
  margin-bottom: 0.5rem;
}

.TVNT-integration-cat__items {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
}

.TVNT-integration-cat__item {
  font-size: 14px;
  color: var(--fg-light-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.TVNT-integration-cat__item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--scanner-amber);
  flex-shrink: 0;
}

.TVNT-api-section {
  padding: 5rem 0;
}

.TVNT-api-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.TVNT-api-section__metrics {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.TVNT-api-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.TVNT-api-metric__num {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--extraction-gold);
  line-height: 1;
}

.TVNT-api-metric__label {
  font-size: 12px;
  color: var(--fg-dark-muted);
}

.TVNT-code-block {
  background: rgba(22, 40, 71, 0.9);
  border: 1px solid rgba(240, 168, 58, 0.15);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.TVNT-code-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  background: rgba(240, 168, 58, 0.06);
  border-bottom: 1px solid rgba(240, 168, 58, 0.12);
}

.TVNT-code-block__label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dark-muted);
}

.TVNT-code-block__method {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--extraction-gold);
}

.TVNT-code-block pre {
  padding: 1.25rem;
  overflow-x: auto;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  line-height: 1.6;
  color: var(--fg-dark-primary);
}

.TVNT-code-block pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.TVNT-code-key { color: var(--fg-dark-muted); }
.TVNT-code-str { color: #86efac; }
.TVNT-code-num { color: var(--extraction-gold); }
.TVNT-code-method { color: #93c5fd; }
.TVNT-code-comment { color: var(--stamp-muted); }

.TVNT-webhooks {
  padding: 5rem 0;
}

.TVNT-webhooks__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.TVNT-security-hero {
  padding-top: 120px;
  padding-bottom: 4rem;
}

.TVNT-data-handling {
  padding: 5rem 0;
}

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

.TVNT-security-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  background: var(--form-white);
}

.TVNT-security-card__icon {
  font-size: 22px;
  color: var(--scanner-amber);
  margin-bottom: 1rem;
}

.TVNT-security-card__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-light-primary);
  margin-bottom: 0.75rem;
}

.TVNT-security-card__body {
  font-size: 14px;
  color: var(--fg-light-muted);
  line-height: 1.65;
}

.TVNT-data-residency {
  padding: 5rem 0;
}

.TVNT-data-residency__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.TVNT-residency-chips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.TVNT-residency-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--bond-white);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
}

.TVNT-residency-chip__icon {
  font-size: 18px;
  color: var(--scanner-amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.TVNT-residency-chip__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-light-primary);
  margin-bottom: 0.2rem;
}

.TVNT-residency-chip__detail {
  font-size: 13px;
  color: var(--fg-light-muted);
}

.TVNT-cbp-note {
  padding: 4rem 0;
}

.TVNT-cbp-note__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.TVNT-cbp-note__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 4px 12px;
  background: rgba(240, 168, 58, 0.12);
  border: 1px solid rgba(240, 168, 58, 0.3);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--extraction-gold);
  margin-bottom: 1.5rem;
}

.TVNT-cbp-note__heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--fg-dark-primary);
  margin-bottom: 1rem;
}

.TVNT-cbp-note__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-dark-muted);
}

.TVNT-pricing-hero {
  padding-top: 120px;
  padding-bottom: 4rem;
}

.TVNT-pricing-tiers {
  padding: 5rem 0;
}

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

.TVNT-pricing-card {
  padding: 2rem;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  background: var(--form-white);
}

.TVNT-pricing-card--featured {
  background: var(--port-navy);
  border-color: rgba(240, 168, 58, 0.3);
  position: relative;
}

.TVNT-pricing-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(240, 168, 58, 0.15);
  border: 1px solid rgba(240, 168, 58, 0.35);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--extraction-gold);
  margin-bottom: 1.25rem;
}

.TVNT-pricing-card__name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--fg-light-primary);
}

.TVNT-pricing-card--featured .TVNT-pricing-card__name {
  color: var(--fg-dark-primary);
}

.TVNT-pricing-card__price {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--fg-light-primary);
  margin-bottom: 0.25rem;
}

.TVNT-pricing-card--featured .TVNT-pricing-card__price {
  color: var(--fg-dark-primary);
}

.TVNT-pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-light-muted);
  vertical-align: middle;
}

.TVNT-pricing-card--featured .TVNT-pricing-card__price span {
  color: var(--fg-dark-muted);
}

.TVNT-pricing-card__cap {
  font-size: 14px;
  color: var(--fg-light-muted);
  margin-bottom: 1.5rem;
}

.TVNT-pricing-card--featured .TVNT-pricing-card__cap {
  color: var(--fg-dark-muted);
}

.TVNT-pricing-card__divider {
  height: 1px;
  background: var(--paper-border);
  margin-bottom: 1.5rem;
}

.TVNT-pricing-card--featured .TVNT-pricing-card__divider {
  background: rgba(253, 252, 248, 0.12);
}

.TVNT-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.TVNT-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 14px;
  color: var(--fg-light-muted);
  line-height: 1.5;
}

.TVNT-pricing-card--featured .TVNT-pricing-card__feature {
  color: var(--fg-dark-muted);
}

.TVNT-pricing-card__feature-check {
  color: var(--scanner-amber);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.TVNT-pricing-card--featured .TVNT-pricing-card__feature-check {
  color: var(--extraction-gold);
}

.TVNT-pricing-card .TVNT-btn {
  width: 100%;
  justify-content: center;
}

.TVNT-pricing-card__overage {
  font-size: 12px;
  color: var(--fg-light-muted);
  margin-top: 0.75rem;
  text-align: center;
}

.TVNT-pricing-card--featured .TVNT-pricing-card__overage {
  color: var(--fg-dark-muted);
}

.TVNT-pricing-trial {
  text-align: center;
  margin-top: 2.5rem;
}

.TVNT-pricing-trial__text {
  font-size: 15px;
  color: var(--fg-light-muted);
}

.TVNT-pricing-trial__text strong {
  color: var(--scanner-amber);
}

.TVNT-pricing-faq {
  padding: 5rem 0;
}

.TVNT-pricing-faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.TVNT-faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--paper-border);
}

.TVNT-faq-item {
  border-bottom: 1px solid var(--paper-border);
}

.TVNT-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.TVNT-faq-item__question {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-light-primary);
  line-height: 1.4;
}

.TVNT-faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--paper-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-light-muted);
  font-size: 12px;
  transition: transform 250ms var(--ease-out), background 200ms;
}

.TVNT-faq-item--open .TVNT-faq-item__icon {
  transform: rotate(45deg);
  background: var(--scanner-amber);
  border-color: var(--scanner-amber);
  color: var(--port-navy);
}

.TVNT-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease-out);
}

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

.TVNT-faq-item__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 15px;
  color: var(--fg-light-muted);
  line-height: 1.7;
}

.TVNT-about-hero {
  padding-top: 130px;
  padding-bottom: 5rem;
}

.TVNT-about-hero__inner {
  max-width: 760px;
}

.TVNT-mission {
  padding: 5rem 0;
}

.TVNT-mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.TVNT-mission__quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.45;
  color: var(--fg-light-primary);
  border-left: 3px solid var(--scanner-amber);
  padding-left: 1.5rem;
}

.TVNT-team {
  padding: 5rem 0;
}

.TVNT-team__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.TVNT-team-card {
  text-align: center;
}

.TVNT-team-card__photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-card);
  margin-bottom: 1.25rem;
  height: auto;
}

.TVNT-team-card__name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  margin-bottom: 0.25rem;
}

.TVNT-team-card__role {
  font-size: 14px;
  font-weight: 500;
  color: var(--scanner-amber);
  margin-bottom: 0.75rem;
}

.TVNT-team-card__bio {
  font-size: 14px;
  color: var(--fg-light-muted);
  line-height: 1.65;
}

.TVNT-nyc-note {
  padding: 4rem 0;
}

.TVNT-nyc-note__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.TVNT-nyc-note__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-dark-muted);
}

.TVNT-nyc-note__address {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--fg-dark-muted);
  line-height: 1.8;
  padding: 1rem 1.25rem;
  background: rgba(253, 252, 248, 0.04);
  border: 1px solid rgba(240, 168, 58, 0.15);
  border-radius: var(--radius-card);
}

.TVNT-nyc-note__address strong {
  color: var(--extraction-gold);
  font-weight: 400;
}

.TVNT-blog-hero {
  padding-top: 120px;
  padding-bottom: 3.5rem;
}

.TVNT-blog-hero__inner {
  max-width: 680px;
}

.TVNT-blog-grid-section {
  padding: 3rem 0 5rem;
}

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

.TVNT-blog-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--paper-border);
  background: var(--bond-white);
  transition: box-shadow 220ms var(--ease-out);
}

.TVNT-blog-card:hover {
  box-shadow: 0 4px 16px rgba(14, 30, 58, 0.1);
  color: inherit;
}

.TVNT-blog-card__cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
}

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

.TVNT-blog-card__date {
  font-size: 12px;
  color: var(--stamp-muted);
  margin-bottom: 0.5rem;
}

.TVNT-blog-card__title {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.TVNT-blog-card__excerpt {
  font-size: 13.5px;
  color: var(--fg-light-muted);
  line-height: 1.6;
  flex: 1;
}

.TVNT-contact-hero {
  padding-top: 120px;
  padding-bottom: 5rem;
}

.TVNT-contact-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

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

.TVNT-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.TVNT-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.TVNT-form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-light-muted);
}

.TVNT-form-input,
.TVNT-form-select,
.TVNT-form-textarea {
  padding: 0.65rem 0.875rem;
  background: var(--bond-white);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-form);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--fg-light-primary);
  transition: border-color 180ms;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.TVNT-form-input:focus,
.TVNT-form-select:focus,
.TVNT-form-textarea:focus {
  border-color: var(--scanner-amber);
  box-shadow: 0 0 0 3px rgba(217, 124, 20, 0.12);
}

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

.TVNT-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.TVNT-contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.TVNT-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.TVNT-contact-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(217, 124, 20, 0.1);
  border: 1px solid rgba(217, 124, 20, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--scanner-amber);
  font-size: 14px;
  flex-shrink: 0;
}

.TVNT-contact-item__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stamp-muted);
  margin-bottom: 0.25rem;
}

.TVNT-contact-item__value {
  font-size: 15px;
  color: var(--fg-light-primary);
  line-height: 1.5;
}

.TVNT-contact-item__value a {
  color: var(--scanner-amber);
  transition: color 180ms;
}

.TVNT-contact-item__value a:hover {
  color: var(--scanner-amber-dim);
}

.TVNT-legal-page {
  padding-top: 100px;
  padding-bottom: 5rem;
  min-height: 80vh;
}

.TVNT-legal-page main,
.TVNT-legal-content {
  background: var(--bond-white);
  color: var(--fg-light-primary);
}

.TVNT-legal-container {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.TVNT-legal-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg-light-primary);
  margin-bottom: 0.5rem;
}

.TVNT-legal-date {
  font-size: 14px;
  color: var(--stamp-muted);
  margin-bottom: 2.5rem;
}

.TVNT-legal-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--fg-light-primary);
}

.TVNT-legal-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.TVNT-legal-body h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-light-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.TVNT-legal-body p {
  margin-bottom: 1rem;
  color: var(--fg-light-primary);
}

.TVNT-legal-body ul,
.TVNT-legal-body ol {
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

.TVNT-legal-body ul { list-style: disc; }
.TVNT-legal-body ol { list-style: decimal; }

.TVNT-legal-body li {
  margin-bottom: 0.4rem;
  color: var(--fg-light-primary);
}

.TVNT-legal-body a {
  color: var(--scanner-amber);
  text-decoration: underline;
}

.TVNT-legal-body strong {
  color: var(--fg-light-primary);
  font-weight: 500;
}

.TVNT-auth-page {
  min-height: 100vh;
  background: var(--port-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.TVNT-auth-card {
  background: var(--bond-white);
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 440px;
  padding: 2.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.TVNT-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.TVNT-auth-card__logo img {
  height: 28px;
  width: auto;
}

.TVNT-auth-card__title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg-light-primary);
  margin-bottom: 0.35rem;
  text-align: center;
}

.TVNT-auth-card__subtitle {
  font-size: 14px;
  color: var(--fg-light-muted);
  text-align: center;
  margin-bottom: 2rem;
}

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

.TVNT-auth-form__forgot {
  font-size: 13px;
  color: var(--scanner-amber);
  display: block;
  text-align: right;
  margin-top: -0.5rem;
  transition: color 180ms;
}

.TVNT-auth-form__forgot:hover {
  color: var(--scanner-amber-dim);
}

.TVNT-auth-form .TVNT-btn {
  width: 100%;
  justify-content: center;
  padding: 0.75rem;
  font-size: 16px;
  margin-top: 0.5rem;
}

.TVNT-auth-card__links {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 14px;
  color: var(--fg-light-muted);
}

.TVNT-auth-card__links a {
  color: var(--scanner-amber);
  transition: color 180ms;
}

.TVNT-auth-card__links a:hover {
  color: var(--scanner-amber-dim);
}

.TVNT-auth-card__legal {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--paper-border);
  font-size: 12px;
  color: var(--stamp-muted);
}

.TVNT-auth-card__legal a {
  color: var(--stamp-muted);
  text-decoration: underline;
  transition: color 180ms;
}

.TVNT-auth-card__legal a:hover {
  color: var(--fg-light-primary);
}

.TVNT-blog-article {
  padding-top: 100px;
}

.TVNT-blog-article__hero {
  padding: 2rem 0 3rem;
}

.TVNT-blog-article__hero-inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.TVNT-blog-article__cover {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 3rem;
  display: block;
}

.TVNT-blog-article__cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.TVNT-blog-article__body {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding-bottom: 5rem;
}

.TVNT-blog-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-light-primary);
}

.TVNT-blog-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.TVNT-blog-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg-light-primary);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.TVNT-blog-content p {
  margin-bottom: 1.2rem;
}

.TVNT-blog-content ul,
.TVNT-blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.TVNT-blog-content ul { list-style: disc; }
.TVNT-blog-content ol { list-style: decimal; }

.TVNT-blog-content li {
  margin-bottom: 0.4rem;
}

.TVNT-blog-content blockquote {
  border-left: 3px solid var(--scanner-amber);
  padding-left: 1.25rem;
  margin-block: 1.5rem;
  color: var(--fg-light-muted);
  font-style: italic;
}

.TVNT-blog-content pre {
  background: var(--port-navy-alt);
  border: 1px solid rgba(240, 168, 58, 0.15);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  overflow-x: auto;
  margin-block: 1.5rem;
}

.TVNT-blog-content pre code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--fg-dark-primary);
  background: transparent;
  border: none;
  padding: 0;
}

.TVNT-blog-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  background: rgba(14, 30, 58, 0.08);
  border: 1px solid var(--paper-border);
  border-radius: 3px;
  padding: 1px 5px;
  color: var(--fg-light-primary);
}

.TVNT-blog-content img {
  max-width: 100%;
  border-radius: var(--radius-card);
  margin-block: 1.5rem;
}

.TVNT-blog-article__meta {
  font-size: 13px;
  color: var(--stamp-muted);
  margin-bottom: 1rem;
}

.TVNT-blog-article__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--fg-light-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.TVNT-blog-article__subtitle {
  font-size: 18px;
  color: var(--fg-light-muted);
  line-height: 1.65;
}

.TVNT-section-cta {
  padding: 4.5rem 0;
  text-align: center;
}

.TVNT-section-cta__heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--fg-dark-primary);
  margin-bottom: 1rem;
}

.TVNT-section-cta__sub {
  font-size: 16px;
  color: var(--fg-dark-muted);
  margin-bottom: 2rem;
}

.TVNT-section-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.TVNT-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.TVNT-fade-in.TVNT-visible {
  opacity: 1;
  transform: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--port-navy-alt);
  border-top: 1px solid rgba(240, 168, 58, 0.2);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 350ms var(--ease-out);
}

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

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 14px;
  color: var(--fg-dark-muted);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--extraction-gold);
  text-decoration: underline;
}

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

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.125rem;
  border-radius: 2px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
  background: var(--scanner-amber);
  color: var(--port-navy);
  border: 1.5px solid var(--scanner-amber);
}

.cookie-banner__btn:hover {
  background: var(--scanner-amber-dim);
  border-color: var(--scanner-amber-dim);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--fg-dark-muted);
  border: 1.5px solid rgba(253, 252, 248, 0.25);
}

.cookie-banner__btn--secondary:hover {
  border-color: rgba(253, 252, 248, 0.5);
  color: var(--fg-dark-primary);
}

@media (max-width: 1024px) {
  .TVNT-pipeline__stages {
    grid-template-columns: repeat(3, 1fr);
  }

  .TVNT-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .TVNT-nav__links,
  .TVNT-nav__cta {
    display: none;
  }

  .TVNT-nav__hamburger {
    display: flex;
  }

  .TVNT-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .TVNT-hero {
    padding-top: 100px;
    padding-bottom: 3.5rem;
  }

  .TVNT-hero__title {
    font-size: clamp(2.5rem, 9vw, 3.75rem);
  }

  .TVNT-problem-strip__divider {
    display: none;
  }

  .TVNT-problem-strip__inner {
    gap: 2rem;
  }

  .TVNT-steps-flow {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .TVNT-step-card__connector {
    display: none;
  }

  .TVNT-product-accuracy__inner,
  .TVNT-page-hero__inner,
  .TVNT-field-extraction__inner,
  .TVNT-validation-layers__inner,
  .TVNT-api-section__inner,
  .TVNT-webhooks__inner,
  .TVNT-data-residency__inner,
  .TVNT-nyc-note__inner,
  .TVNT-mission__inner,
  .TVNT-contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .TVNT-hiw-step__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .TVNT-integration-cats__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .TVNT-data-handling__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .TVNT-pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .TVNT-team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .TVNT-blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .TVNT-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .TVNT-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }

  .TVNT-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .TVNT-pipeline__stages {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .TVNT-form-row {
    grid-template-columns: 1fr;
  }

  .TVNT-auth-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .TVNT-team-grid {
    grid-template-columns: 1fr;
  }

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

  .TVNT-footer__grid {
    grid-template-columns: 1fr;
  }

  .TVNT-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .TVNT-pipeline__stages {
    grid-template-columns: 1fr;
  }

  .TVNT-hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .TVNT-logos-row {
    gap: 1rem;
  }

  .TVNT-pricing-card__price {
    font-size: 2.25rem;
  }
}
