@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink: #1C2B3A;
  --ink-muted: #5B6B7A;
  --parchment: #F5F2ED;
  --parchment-soft: #FAFAF8;
  --alert-amber: #C8902D;
  --approval-green: #2A5E3F;
  --approval-green-light: #E8F3ED;
  --section-dark: #111B26;
  --section-dark-alt: #162233;
  --white: #FFFFFF;
  --border-light: #E2DDD8;
  --border-dark: #2A3D50;
  --text-on-dark-primary: #F0EDE8;
  --text-on-dark-muted: #8FA3B4;
  --text-on-light-primary: #1C2B3A;
  --text-on-light-muted: #5B6B7A;
  --cta-primary-bg: #C8902D;
  --cta-primary-text: #FFFFFF;
  --cta-outline-dark-border: #8FA3B4;
  --cta-outline-dark-text: #F0EDE8;
  --container-max: 1200px;
  --section-pad: 120px;
  --section-pad-sm: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--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;
}

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

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

.psvn-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
}

.psvn-btn--primary {
  background: var(--cta-primary-bg);
  color: var(--cta-primary-text);
  border: 2px solid var(--cta-primary-bg);
}

.psvn-btn--primary:hover {
  background: #b07b25;
  border-color: #b07b25;
  color: var(--cta-primary-text);
}

.psvn-btn--outline-dark {
  background: transparent;
  color: var(--cta-outline-dark-text);
  border: 2px solid var(--cta-outline-dark-border);
}

.psvn-btn--outline-dark:hover {
  background: rgba(240,237,232,0.1);
  color: var(--text-on-dark-primary);
  border-color: var(--text-on-dark-primary);
}

.psvn-btn--outline-light {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.psvn-btn--outline-light:hover {
  background: var(--ink);
  color: var(--white);
}

.psvn-btn--ghost-on-dark {
  background: transparent;
  color: var(--text-on-dark-primary);
  border: 1px solid var(--border-dark);
}

.psvn-btn--ghost-on-dark:hover {
  border-color: var(--cta-outline-dark-border);
  color: var(--text-on-dark-primary);
}

.psvn-section--dark {
  background: var(--section-dark);
}

.psvn-section--dark-alt {
  background: var(--section-dark-alt);
}

.psvn-section--light {
  background: var(--white);
}

.psvn-section--parchment {
  background: var(--parchment);
}

.psvn-section--white {
  background: var(--white);
}

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

.psvn-section-pad-sm {
  padding-top: var(--section-pad-sm);
  padding-bottom: var(--section-pad-sm);
}

.psvn-section-headline {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.15;
}

.psvn-section--dark .psvn-section-headline,
.psvn-section--dark-alt .psvn-section-headline {
  color: var(--text-on-dark-primary);
}

.psvn-section--light .psvn-section-headline,
.psvn-section--parchment .psvn-section-headline,
.psvn-section--white .psvn-section-headline {
  color: var(--ink);
}

.psvn-section-subhead {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.psvn-section--dark .psvn-section-subhead,
.psvn-section--dark-alt .psvn-section-subhead {
  color: var(--text-on-dark-muted);
}

.psvn-section--light .psvn-section-subhead,
.psvn-section--parchment .psvn-section-subhead,
.psvn-section--white .psvn-section-subhead {
  color: var(--ink-muted);
}

.psvn-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

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

.psvn-page--light-top .psvn-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.psvn-nav.psvn-nav--scrolled {
  background: var(--section-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  border-bottom: none;
}

.psvn-page--light-top .psvn-nav.psvn-nav--scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border-light);
}

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

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

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

.psvn-nav__logo-img--dark {
  display: none;
}
.psvn-nav__logo-img--light {
  display: block;
}

.psvn-page--light-top .psvn-nav__logo-img--dark {
  display: block;
}
.psvn-page--light-top .psvn-nav__logo-img--light {
  display: none;
}

.psvn-page--light-top .psvn-nav.psvn-nav--scrolled .psvn-nav__logo-img--dark {
  display: block;
}
.psvn-page--light-top .psvn-nav.psvn-nav--scrolled .psvn-nav__logo-img--light {
  display: none;
}

.psvn-nav.psvn-nav--scrolled .psvn-nav__logo-img--dark {
  display: none;
}
.psvn-nav.psvn-nav--scrolled .psvn-nav__logo-img--light {
  display: block;
}

.psvn-page--light-top .psvn-nav:not(.psvn-nav--scrolled) .psvn-nav__logo-img--dark {
  display: block;
}
.psvn-page--light-top .psvn-nav:not(.psvn-nav--scrolled) .psvn-nav__logo-img--light {
  display: none;
}

.psvn-nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.psvn-nav__item {
  position: relative;
}

.psvn-nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.psvn-page--dark-top .psvn-nav__link:hover {
  color: var(--alert-amber);
}

.psvn-page--light-top .psvn-nav__link {
  color: var(--ink);
}

.psvn-page--light-top .psvn-nav__link:hover {
  color: var(--alert-amber);
}

.psvn-nav.psvn-nav--scrolled .psvn-nav__link {
  color: var(--text-on-dark-primary);
}

.psvn-nav.psvn-nav--scrolled .psvn-nav__link:hover {
  color: var(--alert-amber);
}

.psvn-page--light-top .psvn-nav.psvn-nav--scrolled .psvn-nav__link {
  color: var(--ink);
}

.psvn-page--light-top .psvn-nav.psvn-nav--scrolled .psvn-nav__link:hover {
  color: var(--alert-amber);
}

.psvn-nav__chevron {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.psvn-nav__item:hover .psvn-nav__chevron {
  transform: rotate(180deg);
}

.psvn-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
  padding: 0.5rem 0;
}

.psvn-nav__item:hover .psvn-dropdown,
.psvn-nav__item:focus-within .psvn-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.psvn-dropdown__link {
  display: block;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}

.psvn-dropdown__link:hover {
  background: var(--parchment);
  color: var(--alert-amber);
}

.psvn-nav__ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.psvn-nav__cta-signin {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: color 0.2s ease;
}

.psvn-page--dark-top .psvn-nav__cta-signin {
  color: var(--text-on-dark-primary);
}

.psvn-page--dark-top .psvn-nav__cta-signin:hover {
  color: var(--alert-amber);
}

.psvn-page--light-top .psvn-nav__cta-signin {
  color: var(--ink);
}

.psvn-page--light-top .psvn-nav__cta-signin:hover {
  color: var(--alert-amber);
}

.psvn-nav.psvn-nav--scrolled .psvn-nav__cta-signin {
  color: var(--text-on-dark-primary);
}

.psvn-nav.psvn-nav--scrolled .psvn-nav__cta-signin:hover {
  color: var(--alert-amber);
}

.psvn-page--light-top .psvn-nav.psvn-nav--scrolled .psvn-nav__cta-signin {
  color: var(--ink);
}

.psvn-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
  padding: 0;
}

.psvn-nav__hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.psvn-page--dark-top .psvn-nav__hamburger-bar,
.psvn-nav.psvn-nav--scrolled .psvn-nav__hamburger-bar {
  background: var(--text-on-dark-primary);
}

.psvn-page--light-top .psvn-nav__hamburger-bar {
  background: var(--ink);
}

.psvn-nav__hamburger.is-open .psvn-nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.psvn-nav__hamburger.is-open .psvn-nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.psvn-nav__hamburger.is-open .psvn-nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.psvn-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--section-dark);
  z-index: 999;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-dark);
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}

.psvn-mobile-menu.is-open {
  display: block;
}

.psvn-mobile-menu__list {
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.psvn-mobile-menu__item {
  border-bottom: 1px solid var(--border-dark);
}

.psvn-mobile-menu__link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-on-dark-primary);
}

.psvn-mobile-menu__link:hover {
  color: var(--alert-amber);
}

.psvn-mobile-submenu {
  padding: 0.25rem 0 0.75rem 1rem;
}

.psvn-mobile-submenu__link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
}

.psvn-mobile-submenu__link:hover {
  color: var(--text-on-dark-primary);
}

.psvn-mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 0;
}

.psvn-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--section-dark);
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.psvn-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--section-pad) 0;
  width: 100%;
}

.psvn-hero__content {
  position: relative;
  z-index: 2;
}

.psvn-hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alert-amber);
  margin-bottom: 1.25rem;
}

.psvn-hero__headline {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--text-on-dark-primary);
  margin-bottom: 1.5rem;
}

.psvn-hero__subhead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.psvn-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.psvn-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.psvn-hero__diagram {
  width: 100%;
  max-width: 520px;
}

.psvn-trust-band {
  padding: 3rem 0;
}

.psvn-trust-band__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 2rem;
}

.psvn-trust-band__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
}

.psvn-trust-band__name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-muted);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.psvn-trust-band__name:hover {
  opacity: 0.9;
}

.psvn-problem {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.psvn-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.psvn-problem__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-top: 1.5rem;
}

.psvn-problem__stat-block {
  position: relative;
  padding: 2.5rem;
  background: var(--parchment);
  border-left: 4px solid var(--alert-amber);
  border-radius: 4px;
}

.psvn-problem__stat-quote {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1rem;
}

.psvn-problem__stat-source {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.psvn-how-it-works {
  padding: var(--section-pad) 0;
  background: var(--parchment);
}

.psvn-steps {
  margin-top: 3.5rem;
}

.psvn-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
}

.psvn-step:last-child {
  border-bottom: none;
}

.psvn-step__number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--alert-amber);
  line-height: 1;
  min-width: 3.5rem;
  padding-top: 0.125rem;
}

.psvn-step__content {}

.psvn-step__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.psvn-step__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-muted);
}

.psvn-features {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.psvn-features__grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.psvn-feature-card {
  background: var(--parchment-soft);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.psvn-feature-card:hover {
  box-shadow: 0 8px 32px rgba(28,43,58,0.08);
  transform: translateY(-2px);
}

.psvn-feature-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--alert-amber);
}

.psvn-feature-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.psvn-feature-card__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.psvn-use-cases-preview {
  padding: var(--section-pad) 0;
}

.psvn-use-cases-preview__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.psvn-uc-card {
  background: var(--section-dark-alt);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.psvn-uc-card:hover {
  border-color: var(--alert-amber);
  transform: translateY(-2px);
}

.psvn-uc-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-on-dark-primary);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.psvn-uc-card__snippet {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.psvn-uc-card__arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--alert-amber);
  transition: gap 0.2s ease;
}

.psvn-uc-card:hover .psvn-uc-card__arrow {
  gap: 0.75rem;
}

.psvn-testimonials {
  padding: var(--section-pad) 0;
  background: var(--parchment);
}

.psvn-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.psvn-testimonial {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.psvn-testimonial__quote {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  flex: 1;
  font-style: italic;
}

.psvn-testimonial__footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.psvn-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--text-on-dark-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.psvn-testimonial__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.3;
}

.psvn-testimonial__role {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.3;
}

.psvn-cta-banner {
  padding: var(--section-pad) 0;
  text-align: center;
}

.psvn-cta-banner.psvn-section--dark,
.psvn-cta-banner.psvn-section--dark-alt {
  text-align: center;
}

.psvn-cta-banner__headline {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.psvn-section--dark .psvn-cta-banner__headline,
.psvn-section--dark-alt .psvn-cta-banner__headline {
  color: var(--text-on-dark-primary);
}

.psvn-section--light .psvn-cta-banner__headline,
.psvn-section--parchment .psvn-cta-banner__headline,
.psvn-section--white .psvn-cta-banner__headline {
  color: var(--ink);
}

.psvn-cta-banner__subhead {
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}

.psvn-section--dark .psvn-cta-banner__subhead,
.psvn-section--dark-alt .psvn-cta-banner__subhead {
  color: var(--text-on-dark-muted);
}

.psvn-section--light .psvn-cta-banner__subhead,
.psvn-section--parchment .psvn-cta-banner__subhead {
  color: var(--ink-muted);
}

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

.psvn-footer {
  background: var(--section-dark);
  padding: 4rem 0 2rem;
}

.psvn-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}

.psvn-footer__col-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-primary);
  margin-bottom: 1.25rem;
}

.psvn-footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  margin-top: 1rem;
}

.psvn-footer__col-logo {
  margin-bottom: 0.5rem;
}

.psvn-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.psvn-footer__link {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  transition: color 0.2s ease;
  display: inline-block;
}

.psvn-footer__link:hover {
  color: var(--text-on-dark-primary);
}

.psvn-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.psvn-footer__bottom-text {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
}

.psvn-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.psvn-footer__bottom-link {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  transition: color 0.2s ease;
}

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

.psvn-sub-hero {
  padding-top: calc(68px + var(--section-pad));
  padding-bottom: var(--section-pad);
  position: relative;
}

.psvn-sub-hero--dark {
  background: var(--section-dark);
}

.psvn-sub-hero--light {
  background: var(--white);
}

.psvn-sub-hero__ornament {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
}

.psvn-sub-hero--dark .psvn-sub-hero__ornament {
  opacity: 0.07;
}

.psvn-sub-hero__headline {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  max-width: 780px;
}

.psvn-sub-hero--dark .psvn-sub-hero__headline {
  color: var(--text-on-dark-primary);
}

.psvn-sub-hero--light .psvn-sub-hero__headline {
  color: var(--ink);
}

.psvn-sub-hero__subhead {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 640px;
}

.psvn-sub-hero--dark .psvn-sub-hero__subhead {
  color: var(--text-on-dark-muted);
}

.psvn-sub-hero--light .psvn-sub-hero__subhead {
  color: var(--ink-muted);
}

.psvn-sub-hero__diagram {
  margin-top: 3.5rem;
  width: 100%;
}

.psvn-feature-detail {
  padding: var(--section-pad) 0;
}

.psvn-feature-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.psvn-feature-detail__grid--reversed {
  direction: rtl;
}

.psvn-feature-detail__grid--reversed > * {
  direction: ltr;
}

.psvn-feature-detail__headline {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.psvn-section--parchment .psvn-feature-detail__headline {
  color: var(--ink);
}

.psvn-feature-detail__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.psvn-feature-detail__detail {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-muted);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--alert-amber);
  background: rgba(200, 144, 45, 0.05);
  margin-top: 1.25rem;
  border-radius: 0 4px 4px 0;
}

.psvn-feature-detail__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.psvn-inline-svg {
  width: 100%;
  border-radius: 8px;
}

.psvn-metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border-light);
}

.psvn-metric {
  text-align: center;
}

.psvn-metric__value {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.psvn-metric__label {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.psvn-integrations {
  padding: var(--section-pad) 0;
}

.psvn-integrations__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.psvn-integration-card {
  background: var(--section-dark-alt);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s ease;
}

.psvn-integration-card:hover {
  border-color: var(--cta-outline-dark-border);
}

.psvn-integration-card__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.875rem;
  color: var(--text-on-dark-muted);
}

.psvn-integration-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-on-dark-primary);
  margin-bottom: 0.25rem;
}

.psvn-integration-card__type {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
}

.psvn-use-case-feature-list {
  padding: var(--section-pad) 0;
}

.psvn-feature-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.psvn-feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--parchment-soft);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}

.psvn-feature-list__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--approval-green);
}

.psvn-feature-list__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.psvn-problem-detail {
  padding: var(--section-pad) 0;
}

.psvn-problem-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.psvn-problem-detail__headline {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.psvn-problem-detail__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-muted);
}

.psvn-single-testimonial {
  padding: var(--section-pad) 0;
}

.psvn-single-testimonial__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.psvn-single-testimonial__quote {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  line-height: 1.5;
  color: var(--text-on-dark-primary);
  margin-bottom: 2rem;
}

.psvn-single-testimonial__attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.psvn-single-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--section-dark-alt);
  border: 2px solid var(--border-dark);
  color: var(--text-on-dark-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.psvn-single-testimonial__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-on-dark-primary);
  line-height: 1.3;
}

.psvn-single-testimonial__role {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  line-height: 1.3;
}

.psvn-pricing-hero {
  padding-top: calc(68px + var(--section-pad));
  padding-bottom: var(--section-pad);
  background: var(--white);
}

.psvn-pricing-hero .psvn-sub-hero__headline {
  color: var(--ink);
}

.psvn-pricing-hero .psvn-sub-hero__subhead {
  color: var(--ink-muted);
}

.psvn-pricing-tiers {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.psvn-pricing-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.psvn-pricing-card {
  background: var(--parchment-soft);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.psvn-pricing-card:hover {
  box-shadow: 0 8px 40px rgba(28,43,58,0.1);
}

.psvn-pricing-card--highlighted {
  border-color: var(--alert-amber);
  background: var(--white);
  box-shadow: 0 8px 40px rgba(200,144,45,0.12);
}

.psvn-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--alert-amber);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
}

.psvn-pricing-card__tier {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.psvn-pricing-card__price {
  margin-bottom: 0.5rem;
}

.psvn-pricing-card__amount {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.psvn-pricing-card__currency {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink-muted);
  vertical-align: super;
}

.psvn-pricing-card__period {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.psvn-pricing-card__billing-note {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.psvn-pricing-card__target {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.psvn-pricing-card__features {
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.psvn-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.psvn-pricing-card__feature-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--approval-green);
}

.psvn-pricing-card__cta {
  display: block;
  text-align: center;
}

.psvn-pricing-comparison {
  padding: var(--section-pad) 0;
  background: var(--parchment);
}

.psvn-comparison-table {
  margin-top: 3rem;
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(28,43,58,0.06);
}

.psvn-comparison-table th {
  background: var(--ink);
  color: var(--text-on-dark-primary);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
}

.psvn-comparison-table th:first-child {
  width: 40%;
}

.psvn-comparison-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  line-height: 1.5;
}

.psvn-comparison-table td:first-child {
  font-weight: 500;
  color: var(--ink);
}

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

.psvn-comparison-table tr:nth-child(even) td {
  background: var(--parchment-soft);
}

.psvn-comparison-icon--yes {
  color: var(--approval-green);
  font-size: 0.875rem;
}

.psvn-comparison-icon--no {
  color: var(--ink-muted);
  opacity: 0.4;
  font-size: 0.875rem;
}

.psvn-faq {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.psvn-faq__list {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.psvn-faq__item {
  border-bottom: 1px solid var(--border-light);
}

.psvn-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.psvn-faq__question:hover {
  color: var(--alert-amber);
}

.psvn-faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: transform 0.3s ease, color 0.2s ease;
}

.psvn-faq__item.is-open .psvn-faq__icon {
  transform: rotate(45deg);
  color: var(--alert-amber);
}

.psvn-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.psvn-faq__answer-inner {
  padding-bottom: 1.5rem;
}

.psvn-faq__answer-inner p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-muted);
}

.psvn-faq__item.is-open .psvn-faq__answer {
  max-height: 500px;
}

.psvn-about-story {
  padding: var(--section-pad) 0;
  background: var(--parchment);
}

.psvn-about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.psvn-about-story__text {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ink-muted);
}

.psvn-about-story__text p {
  margin-bottom: 1.25rem;
}

.psvn-about-story__text p:last-child {
  margin-bottom: 0;
}

.psvn-about-story__aside {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.psvn-about-story__aside-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alert-amber);
  margin-bottom: 0.75rem;
}

.psvn-about-story__aside-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.psvn-team {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.psvn-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.psvn-team-card {
  text-align: left;
}

.psvn-team-card__portrait {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  background: var(--parchment);
  height: auto;
}

.psvn-team-card__name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.psvn-team-card__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--alert-amber);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.psvn-team-card__bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.psvn-milestones {
  padding: var(--section-pad) 0;
  background: var(--parchment);
}

.psvn-milestones__intro {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  max-width: 700px;
}

.psvn-timeline {
  position: relative;
  padding-left: 3rem;
}

.psvn-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.psvn-timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.psvn-timeline-item:last-child {
  padding-bottom: 0;
}

.psvn-timeline-item::before {
  content: '';
  position: absolute;
  left: -3.375rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--alert-amber);
  border: 2px solid var(--white);
}

.psvn-timeline-item__year {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--alert-amber);
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
}

.psvn-timeline-item__event {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.psvn-contact {
  padding-top: 68px;
  padding-bottom: 0;
  background: var(--white);
}

.psvn-contact__split {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem clamp(1.5rem, 4vw, 3rem);
}

.psvn-contact-sidebar {
  margin-bottom: 2.5rem;
}

.psvn-contact-form-panel {

}

.psvn-contact-sidebar__headline {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.psvn-contact-sidebar__subhead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-on-light-muted);
  margin-bottom: 2rem;
}

.psvn-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.psvn-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.psvn-contact-info__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--alert-amber);
}

.psvn-contact-info__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-on-light-muted);
}

.psvn-contact-info__text a {
  color: var(--ink);
  transition: color 0.2s ease;
}

.psvn-contact-info__text a:hover {
  color: var(--alert-amber);
}


.psvn-form {
  width: 100%;
}

.psvn-form__row {
  margin-bottom: 1.5rem;
}

.psvn-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.psvn-form__input,
.psvn-form__select,
.psvn-form__textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.5;
}

.psvn-form__input:focus,
.psvn-form__select:focus,
.psvn-form__textarea:focus {
  outline: none;
  border-color: var(--alert-amber);
  box-shadow: 0 0 0 3px rgba(200,144,45,0.12);
}

.psvn-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.psvn-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='%235B6B7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.psvn-form__submit {
  margin-top: 0.5rem;
}

.psvn-narrative {
  padding: var(--section-pad) 0;
}

.psvn-blog-listing {
  padding-top: calc(68px + var(--section-pad-sm));
  padding-bottom: var(--section-pad-sm);
  background: var(--white);
}

.psvn-blog-listing__headline {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.psvn-blog-listing__subhead {
  font-size: 1.0625rem;
  color: var(--ink-muted);
}

.psvn-blog-grid {
  padding: var(--section-pad-sm) 0;
  background: var(--white);
}

.psvn-blog-featured {
  margin-bottom: 4rem;
}

.psvn-blog-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--parchment-soft);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
}

.psvn-blog-featured__card:hover {
  box-shadow: 0 8px 40px rgba(28,43,58,0.1);
}

.psvn-blog-featured__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.psvn-blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.psvn-blog-featured__content {
  padding: 2.5rem;
}

.psvn-blog-featured__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alert-amber);
  margin-bottom: 0.875rem;
}

.psvn-blog-featured__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.875rem;
}

.psvn-blog-featured__excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.psvn-blog-featured__meta {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

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

.psvn-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--parchment-soft);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.psvn-blog-card:hover {
  box-shadow: 0 6px 24px rgba(28,43,58,0.09);
  transform: translateY(-2px);
}

.psvn-blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--parchment);
}

.psvn-blog-card__img {
  width: 100%;
  height: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.psvn-blog-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.psvn-blog-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alert-amber);
  margin-bottom: 0.5rem;
}

.psvn-blog-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.625rem;
}

.psvn-blog-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.psvn-blog-card__meta {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: auto;
}

.psvn-article-hero {
  padding-top: calc(68px + 4rem);
  padding-bottom: 3rem;
  background: var(--white);
}

.psvn-article-hero__category {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alert-amber);
  margin-bottom: 1rem;
}

.psvn-article-hero__title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 1.25rem;
}

.psvn-article-hero__meta {
  font-size: 0.875rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.psvn-article-hero__cover-wrap {
  margin: 3rem auto 0;
  max-width: 860px;
  border-radius: 8px;
  overflow: hidden;
}

.psvn-article-hero__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.psvn-article-body {
  padding: 4rem 0;
  background: var(--white);
}

.psvn-blog-content {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.psvn-blog-content p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.psvn-blog-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.psvn-blog-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.psvn-blog-content ul,
.psvn-blog-content ol {
  list-style: disc;
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.psvn-blog-content ol {
  list-style: decimal;
}

.psvn-blog-content li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.psvn-blog-content blockquote {
  border-left: 3px solid var(--alert-amber);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--parchment);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--ink-muted);
}

.psvn-blog-content pre {
  background: var(--ink);
  color: var(--text-on-dark-primary);
  padding: 1.5rem;
  border-radius: 6px;
  overflow-x: auto;
  margin: 2rem 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}

.psvn-blog-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875em;
  background: var(--parchment);
  padding: 0.2em 0.45em;
  border-radius: 3px;
  color: var(--ink);
}

.psvn-blog-content pre code {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
}

.psvn-blog-content img {
  max-width: 100%;
  border-radius: 6px;
  margin: 2rem auto;
}

.psvn-article-drop-cap p:first-child::first-letter {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5em;
  float: left;
  line-height: 0.85;
  margin-right: 0.12em;
  color: var(--ink);
  font-weight: 400;
}

.psvn-inline-article-cta {
  padding: 4rem 0;
  background: var(--parchment);
  text-align: center;
}

.psvn-inline-article-cta__headline {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.psvn-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--section-dark);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.psvn-auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,144,45,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(22,34,51,0.8) 0%, transparent 50%);
  pointer-events: none;
}

.psvn-auth-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

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

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

.psvn-auth-card__heading {
  font-family: 'DM Serif Display', serif;
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  margin-bottom: 0.5rem;
}

.psvn-auth-card__subtext {
  font-size: 0.875rem;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 2rem;
}

.psvn-auth-form {
  width: 100%;
}

.psvn-auth-form__row {
  margin-bottom: 1.25rem;
}

.psvn-auth-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.psvn-auth-form__input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.psvn-auth-form__input:focus {
  outline: none;
  border-color: var(--alert-amber);
  box-shadow: 0 0 0 3px rgba(200,144,45,0.12);
}

.psvn-auth-form__forgot {
  display: block;
  text-align: right;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-top: 0.4rem;
  transition: color 0.2s ease;
}

.psvn-auth-form__forgot:hover {
  color: var(--alert-amber);
}

.psvn-auth-form__submit {
  display: block;
  width: 100%;
  padding: 0.875rem;
  background: var(--alert-amber);
  color: var(--white);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.2s ease;
  text-align: center;
}

.psvn-auth-form__submit:hover {
  background: #b07b25;
}

.psvn-auth-card__switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.psvn-auth-card__switch a {
  color: var(--alert-amber);
  font-weight: 500;
  transition: color 0.2s ease;
}

.psvn-auth-card__switch a:hover {
  color: #b07b25;
}

.psvn-auth-card__legal {
  text-align: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.psvn-auth-card__legal a {
  color: var(--ink-muted);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.psvn-auth-card__legal a:hover {
  color: var(--ink);
}

.psvn-legal-page {
  padding-top: calc(68px + 4rem);
  padding-bottom: 6rem;
}

.psvn-legal-page main {
  background: var(--white);
}

.psvn-legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  background: var(--white);
}

.psvn-legal-content .legal-article {
  color: var(--ink);
}

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

.psvn-legal-content .legal-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.psvn-legal-content .legal-meta {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.psvn-legal-content section {
  margin-bottom: 2.5rem;
}

.psvn-legal-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.875rem;
  margin-top: 2rem;
  line-height: 1.25;
}

.psvn-legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.5rem;
  margin-bottom: 0.625rem;
}

.psvn-legal-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 0.875rem;
}

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

.psvn-legal-content li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: 0.375rem;
}

.psvn-legal-content address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--ink-muted);
  padding: 1.25rem;
  background: var(--parchment);
  border-radius: 4px;
}

.psvn-legal-content a {
  color: var(--alert-amber);
  transition: color 0.2s ease;
}

.psvn-legal-content a:hover {
  color: #b07b25;
}

.psvn-legal-content .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.psvn-legal-content .legal-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--parchment);
  border: 1px solid var(--border-light);
  font-weight: 600;
  color: var(--ink);
}

.psvn-legal-content .legal-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  color: var(--ink-muted);
  line-height: 1.6;
}

.psvn-gap-assessment-mock {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28,43,58,0.08);
}

.psvn-gap-mock__header {
  background: var(--ink);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.psvn-gap-mock__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-on-dark-primary);
}

.psvn-gap-mock__badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: var(--alert-amber);
  color: var(--white);
}

.psvn-gap-mock__body {
  padding: 1.5rem;
}

.psvn-gap-mock__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}

.psvn-gap-mock__row:last-child {
  border-bottom: none;
}

.psvn-gap-mock__key {
  font-weight: 600;
  color: var(--ink-muted);
  font-size: 0.8125rem;
}

.psvn-gap-mock__val {
  color: var(--ink);
  line-height: 1.5;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--section-dark);
  border-top: 1px solid var(--border-dark);
}

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

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

.cookie-banner__text a {
  color: var(--text-on-dark-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-banner__text a:hover {
  color: var(--alert-amber);
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-dark-primary);
  background: transparent;
  border: 1px solid var(--cta-outline-dark-border);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cookie-banner__btn:hover {
  background: rgba(240,237,232,0.1);
  color: var(--text-on-dark-primary);
  border-color: var(--text-on-dark-primary);
}

.psvn-btn--block {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.psvn-section-headline--lg {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.psvn-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

  .psvn-integrations__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .psvn-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .psvn-pricing-tiers__grid {
    gap: 1.5rem;
  }

  .psvn-team__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 80px;
    --section-pad-sm: 60px;
  }

  .psvn-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 0 4rem;
  }

  .psvn-hero__visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .psvn-hero__subhead {
    max-width: 100%;
  }

  .psvn-problem__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .psvn-use-cases-preview__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .psvn-feature-detail__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .psvn-feature-detail__grid--reversed {
    direction: ltr;
  }

  .psvn-about-story__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .psvn-pricing-tiers__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .psvn-integrations__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .psvn-nav__hamburger {
    display: flex;
  }

  .psvn-features__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .psvn-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 60px;
    --section-pad-sm: 40px;
  }

  .psvn-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .psvn-cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

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

  .psvn-team__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .psvn-milestones__intro {
    font-size: 1rem;
  }

  .psvn-auth-card {
    padding: 2.5rem 1.75rem;
  }

  .psvn-comparison-table {
    font-size: 0.8rem;
  }

  .psvn-comparison-table th,
  .psvn-comparison-table td {
    padding: 0.625rem 0.75rem;
  }

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

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

  .psvn-cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
