/*
 * Shared Vignova site layer: navigation, footer, breadcrumbs and the
 * components used by product, tool and guide pages. Everything is namespaced
 * with `vn-` so it can sit beside the older home, blog and page stylesheets.
 */
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/geist-latin.woff2') format('woff2');
}

:root {
  --vn-ink: #202033;
  --vn-muted: #5f5a73;
  --vn-purple: #6c4bea;
  --vn-purple-dark: #5133cc;
  --vn-violet-text: #5b36c4;
  --vn-blue: #157bdc;
  --vn-line: #e8e1f3;
  --vn-soft: #f7f3ff;
  --vn-soft-blue: #eef5ff;
  --vn-green: #1f7a55;
  --vn-amber: #9a5b00;
  --vn-red: #b42346;
  --vn-radius: 20px;
  --vn-gradient: linear-gradient(110deg, #861cf6, #5141f5 48%, #157bdc);
  --vn-shadow: 0 22px 60px -38px rgba(52, 37, 100, .45);
}

/* ---------- Header ---------- */
.vn-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #eee8f8;
  backdrop-filter: blur(14px);
  font-family: Geist, Arial, Helvetica, sans-serif;
  color: var(--vn-ink);
}
.vn-container {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}
.vn-nav-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.vn-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}
.vn-logo {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
}
.vn-logo img {
  width: 50px;
  height: 50px;
  max-width: none;
  object-fit: contain;
}
.vn-wordmark {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .035em;
  background: var(--vn-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vn-nav { flex: 1; }
.vn-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vn-top-link,
.vn-dropdown > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 550;
  color: #4b4660;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.vn-dropdown > summary::-webkit-details-marker { display: none; }
.vn-dropdown > summary::after {
  content: '';
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform .15s;
}
.vn-dropdown[open] > summary::after { transform: rotate(-135deg); margin-top: 3px; }
.vn-top-link:hover,
.vn-dropdown > summary:hover,
.vn-dropdown[open] > summary {
  background: var(--vn-soft);
  color: var(--vn-purple-dark);
}
.vn-dropdown { position: relative; }
.vn-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  width: 360px;
  padding: 10px;
  border: 1px solid var(--vn-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 60px -30px rgba(41, 25, 90, .38);
}
.vn-panel a {
  display: block;
  padding: 11px 13px;
  border-radius: 12px;
  color: var(--vn-ink);
  text-decoration: none;
}
.vn-panel a strong {
  display: block;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}
.vn-panel a span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--vn-muted);
}
.vn-panel a:hover,
.vn-panel a[aria-current='page'] { background: var(--vn-soft); }
.vn-panel a[aria-current='page'] strong { color: var(--vn-purple-dark); }
.vn-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.vn-login {
  font-size: 15px;
  font-weight: 550;
  color: #4b4660;
  text-decoration: none;
}
.vn-login:hover { color: var(--vn-purple-dark); }
.vn-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 0;
  border-radius: 11px;
  background: var(--vn-gradient);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 8px 20px -8px rgba(81, 65, 245, .55);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
}
.vn-button:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -10px rgba(81, 65, 245, .6); }
.vn-button-small { padding: 10px 16px; font-size: 14px; }
.vn-button-ghost {
  background: #fff;
  color: var(--vn-violet-text);
  border: 1px solid #d9cdf5;
  box-shadow: none;
}
.vn-button-ghost:hover { background: var(--vn-soft); box-shadow: none; }
.vn-mobile { display: none; }

/* ---------- Focus and skip link ---------- */
.vn-skip {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--vn-ink);
  color: #fff;
  font: 600 15px/1.2 Geist, Arial, Helvetica, sans-serif;
  text-decoration: none;
}
.vn-skip:focus { top: 12px; }
body:has(> .vn-header) { margin: 0; }
.vn-header a:focus-visible,
.vn-header summary:focus-visible,
.vn-footer a:focus-visible,
.vn-footer button:focus-visible,
.vn-page a:focus-visible,
.vn-page button:focus-visible,
.vn-page summary:focus-visible,
.vn-page textarea:focus-visible,
.vn-page input:focus-visible,
.vn-page select:focus-visible {
  outline: 3px solid var(--vn-purple);
  outline-offset: 3px;
}

/* ---------- Footer ---------- */
.vn-footer {
  margin-top: 0;
  background: #fbf9fe;
  border-top: 1px solid var(--vn-line);
  color: var(--vn-muted);
  font-family: Geist, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.vn-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
  padding: 56px 0 40px;
}
.vn-footer-brand p { margin: 14px 0 10px; max-width: 280px; }
.vn-footer-brand a { color: var(--vn-violet-text); text-decoration: none; }
.vn-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.vn-footer-title {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #6f5f86;
}
.vn-footer nav a {
  color: var(--vn-muted);
  text-decoration: none;
}
.vn-footer nav a:hover { color: var(--vn-purple-dark); text-decoration: underline; }
.vn-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--vn-line);
  font-size: 12.5px;
}
.vn-footer-bottom p { margin: 0; max-width: 760px; }
.vn-footer-bottom a { color: var(--vn-muted); }

/* ---------- Page shell ---------- */
.vn-page {
  font-family: Geist, Arial, Helvetica, sans-serif;
  color: var(--vn-ink);
  font-size: 17px;
  line-height: 1.7;
}
.vn-page h1,
.vn-page h2,
.vn-page h3 {
  margin: 0;
  line-height: 1.16;
  letter-spacing: -.035em;
  color: var(--vn-ink);
}
.vn-page p { margin: 0; }
.vn-page img { display: block; max-width: 100%; height: auto; }
.vn-page a { color: inherit; }
/* A link styled as a button keeps its own colour. `.vn-page a` outweighs
   `.vn-button` on specificity, which left dark text on the gradient. */
.vn-page a.vn-button { color: #fff; }
.vn-page a.vn-button-ghost { color: var(--vn-violet-text); }
.vn-page .vn-cta-band a.vn-button { color: #3d1d6b; }
.vn-breadcrumbs { padding-top: 22px; }
.vn-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--vn-muted);
}
.vn-breadcrumbs li + li::before { content: '/'; margin-right: 10px; color: #aaa0b8; }
.vn-breadcrumbs a { text-decoration: none; }
.vn-breadcrumbs a:hover { color: var(--vn-purple-dark); text-decoration: underline; }
.vn-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--vn-violet-text);
}
.vn-gradient-text {
  background: var(--vn-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hero ---------- */
.vn-hero {
  position: relative;
  isolation: isolate;
  padding: 44px 0 64px;
}
.vn-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -40px 0 0;
  background:
    radial-gradient(ellipse at 18% 30%, #f2eaff 0, transparent 58%),
    radial-gradient(ellipse at 88% 18%, #e8f2ff 0, transparent 55%);
  pointer-events: none;
}
.vn-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: center;
}
.vn-hero-grid.vn-hero-single { grid-template-columns: 1fr; max-width: 820px; }
.vn-hero h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 760;
  letter-spacing: -.045em;
}
.vn-lead {
  margin-top: 20px !important;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--vn-muted);
}
.vn-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 30px;
}
.vn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15.5px;
  font-weight: 650;
  color: var(--vn-violet-text) !important;
  text-decoration: none;
}
.vn-text-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.vn-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--vn-muted);
}
.vn-assurances li { position: relative; padding-left: 22px; }
.vn-assurances li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--vn-purple);
  border-bottom: 2px solid var(--vn-purple);
  transform: rotate(-45deg);
}

/* ---------- Screenshots ---------- */
.vn-shot {
  margin: 0;
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 20px;
  /* A thin brand edge rather than a thick band: the screenshot is the subject,
     and the depth comes from the shadow. */
  background: linear-gradient(160deg, #faf8ff, #f2f7ff) padding-box,
    linear-gradient(120deg, rgba(134, 28, 246, .5), rgba(21, 123, 220, .5)) border-box;
  box-shadow: 0 30px 60px -34px rgba(47, 25, 90, .5), 0 2px 8px -4px rgba(47, 25, 90, .15);
}
.vn-shot img {
  width: 100%;
  border: 1px solid rgba(24, 18, 54, .07);
  border-radius: 15px;
  background: #fff;
}
.vn-shot figcaption {
  padding: 11px 6px 2px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--vn-muted);
}

/* ---------- Hero: pill, accent, buttons, hints, tilt ---------- */
.vn-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(124, 77, 236, .24);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(134, 28, 246, .10), rgba(21, 123, 220, .10));
  color: var(--vn-violet-text);
}
/* The closing words of the headline, in the brand gradient. Only a short
   accent gets the drawn underline: a long phrase wraps, and a bar under a
   wrapped phrase sits in the wrong place. */
.vn-highlight {
  background: var(--vn-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vn-highlight-bar { position: relative; white-space: nowrap; }
.vn-highlight-bar::after {
  content: '';
  position: absolute;
  left: 1%;
  right: 1%;
  bottom: -.16em;
  height: .2em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M3 8.5c26-7 68-8 114-3.5' fill='none' stroke='%236f3ae6' stroke-width='3.4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/100% 100%;
}
.vn-button .vn-ico { width: 18px; height: 18px; flex: none; }
.vn-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 20px 9px 10px;
  border: 1px solid #e0d6f7;
  border-radius: 12px;
  background: #fff;
  color: var(--vn-ink);
  font-size: 16px;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 6px 18px -12px rgba(63, 31, 110, .5);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.vn-button-outline:hover { border-color: #c9b6f3; box-shadow: 0 10px 22px -12px rgba(63, 31, 110, .55); transform: translateY(-1px); }
.vn-play {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--vn-gradient);
  color: #fff;
  flex: none;
}
.vn-play svg { width: 14px; height: 14px; }
/* Assurances as icon tiles rather than ticks. */
.vn-assurances-tiles { gap: 12px 26px; margin-top: 26px; font-size: 14.5px; }
.vn-assurances-tiles li { display: inline-flex; align-items: center; gap: 10px; padding-left: 0; color: #4a4560; }
.vn-assurances-tiles li::before { content: none; }
.vn-tile { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; flex: none; }
.vn-tile svg { width: 16px; height: 16px; }
.vn-tile-violet { background: #efe7ff; color: #6b34d6; }
.vn-tile-blue { background: #e3eeff; color: #1d64c4; }
.vn-tile-green { background: #e2f5ea; color: #1d7a4b; }
.vn-hero-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px !important;
  font-size: 15px;
  color: #5d5578;
}
.vn-hero-note .vn-flag { width: 22px; height: 22px; flex: none; }
.vn-hero-note span {
  padding-bottom: .42em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M3 8.5c26-7 68-8 114-3.5' fill='none' stroke='%236f3ae6' stroke-width='3.4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat 0 100%/100% .42em;
}

/* The screenshot and the notes pinned around it. */
.vn-hero-visual { position: relative; }
.vn-hero-visual .vn-shot { position: relative; z-index: 1; }
.vn-hint {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: 232px;
  padding: 12px 16px;
  border: 1px solid #ece3fb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 38px -22px rgba(47, 25, 90, .55);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.34;
  color: var(--vn-ink);
}
/* The icon sits in a tinted tile, as on the reference. */
.vn-hint-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 11px; flex: none; }
.vn-hint-icon svg { width: 17px; height: 17px; }
.vn-hint-icon-violet { background: #efe7ff; color: #6b34d6; }
.vn-hint-icon-green { background: #e2f6ea; color: #17864a; }
.vn-hint-icon-blue { background: #e4eeff; color: #1d64c4; }
/* A curved arrow from each card to the screenshot. */
.vn-hint::after { content: ''; position: absolute; background-repeat: no-repeat; background-size: contain; }
.vn-hint-1 { top: -34px; left: 1%; transform: rotate(-2deg); }
.vn-hint-1::after { right: -38px; bottom: -34px; width: 42px; height: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 42' fill='none' stroke='%238b5cf6' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4c3 19 13 29 32 33'/%3E%3Cpath d='M27 34l9 3-3-9'/%3E%3C/svg%3E"); }
.vn-hint-2 { top: -44px; right: -5%; }
.vn-hint-2::after { right: 18px; bottom: -40px; width: 30px; height: 44px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 46' fill='none' stroke='%232f7fe0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M29 4c3 18-3 31-19 37'/%3E%3Cpath d='M18 37l-8 4 1-9'/%3E%3C/svg%3E"); }
.vn-hint-3 { bottom: 20px; left: 5%; transform: rotate(1.5deg); }
.vn-hint-3::after { right: -44px; top: -10px; width: 44px; height: 38px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 46 40' fill='none' stroke='%232f7fe0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 36c6-18 18-27 38-30'/%3E%3Cpath d='M33 3l9 3-3 9'/%3E%3C/svg%3E"); }

/* Starts tilted, straightens as the page scrolls (site.js sets --vn-tilt). */
.vn-shot-tilt {
  transform:
    perspective(1600px)
    rotateY(calc(var(--vn-tilt, 1) * -7deg))
    rotateX(calc(var(--vn-tilt, 1) * 3deg))
    rotate(calc(var(--vn-tilt, 1) * -1deg));
  transform-origin: 62% 50%;
  transition: transform .3s ease-out;
  will-change: transform;
}

/* A soft dotted panel behind the copy, as on the reference. */
.vn-hero-dots {
  position: absolute;
  z-index: -1;
  left: -74px;
  bottom: -18px;
  width: 170px;
  height: 120px;
  background-image: radial-gradient(#cdbdf3 1.6px, transparent 1.6px);
  background-size: 18px 18px;
  opacity: .55;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .vn-hint { display: none; }
  .vn-hero-dots { display: none; }
}
@media (max-width: 900px) {
  .vn-shot-tilt { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .vn-shot-tilt { transform: none; transition: none; }
}

/* ---------- Sections ---------- */
.vn-section { padding: 72px 0; }
.vn-section-tint { background: linear-gradient(125deg, #fcfaff, #f6fbff); }
.vn-section-head { max-width: 760px; margin-bottom: 36px; }
.vn-section-head.vn-center { margin-inline: auto; text-align: center; }
.vn-section-head h2 { font-size: clamp(28px, 3.1vw, 40px); font-weight: 740; }
.vn-section-head p { margin-top: 16px; font-size: 18px; color: var(--vn-muted); }
.vn-prose { max-width: 760px; color: #3d3953; }
.vn-prose > * + * { margin-top: 18px !important; }
.vn-prose h2 { font-size: clamp(26px, 2.8vw, 34px); margin-top: 44px !important; }
.vn-prose h3 { font-size: 21px; margin-top: 30px !important; }
.vn-prose ul,
.vn-prose ol { padding-left: 22px; }
.vn-prose li + li { margin-top: 8px; }
.vn-prose a {
  color: var(--vn-violet-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vn-prose strong { color: var(--vn-ink); }
.vn-grid {
  display: grid;
  gap: 20px;
}
.vn-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vn-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vn-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vn-card {
  padding: 26px;
  border: 1px solid var(--vn-line);
  border-radius: var(--vn-radius);
  background: #fff;
}
.vn-card h3,
.vn-card-heading { font-size: 19px; letter-spacing: -.02em; }
.vn-card p { margin-top: 10px; font-size: 15.5px; color: var(--vn-muted); }
.vn-card ul { margin: 12px 0 0; padding-left: 18px; font-size: 15px; color: var(--vn-muted); }
.vn-card li + li { margin-top: 6px; }
.vn-card-link {
  display: block;
  text-decoration: none;
  transition: border-color .18s, background .18s, transform .18s;
}
.vn-card-link:hover { border-color: #cbb8f3; background: #fdfbff; transform: translateY(-2px); }
.vn-card-link .vn-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 650;
  color: var(--vn-violet-text);
}
.vn-icon-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(140deg, #efe6ff, #e3eeff);
  color: var(--vn-purple-dark);
  font-size: 15px;
  font-weight: 800;
}

/* Numbered steps */
.vn-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: vn-step;
}
.vn-steps > li {
  position: relative;
  padding: 24px 22px 22px;
  border: 1px solid var(--vn-line);
  border-radius: 18px;
  background: #fff;
  counter-increment: vn-step;
}
.vn-steps > li::before {
  content: counter(vn-step, decimal-leading-zero);
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #8c66d8;
}
.vn-steps h3 { font-size: 18px; }
.vn-steps p { margin-top: 8px; font-size: 15px; color: var(--vn-muted); }

/* Split rows */
.vn-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: center;
}
/* The figure moves to the first column, so the wider track moves with it. */
.vn-split.vn-reverse { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
.vn-split + .vn-split { margin-top: 64px; }
.vn-split.vn-reverse > :first-child { order: 2; }
.vn-split h2 { font-size: clamp(27px, 3vw, 36px); }
.vn-split h3 { font-size: 22px; }
.vn-split p { margin-top: 14px; color: var(--vn-muted); }
.vn-checklist {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.vn-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
}
.vn-checklist li + li { margin-top: 9px; }
.vn-checklist li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--vn-purple);
  border-bottom: 2px solid var(--vn-purple);
  transform: rotate(-45deg);
}

/* Pipeline tokens for flows such as profile + job description -> resume */
.vn-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(145deg, #3f1f6e, #2f2360 55%, #244d88);
  color: #fff;
}
.vn-flow span {
  padding: 10px 14px;
  border: 1px solid rgba(203, 172, 249, .38);
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  font-size: 15px;
  font-weight: 600;
}
.vn-flow b { color: #cdb4ff; font-weight: 700; }

/* Example panels: before / analysis / after */
.vn-example {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.vn-example-panel {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--vn-line);
  background: #fff;
}
.vn-example-panel h3 {
  margin-bottom: 12px !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.vn-example-before h3 { color: #8a5a00; }
.vn-example-analysis h3 { color: var(--vn-violet-text); }
.vn-example-after h3 { color: var(--vn-green); }
.vn-example-after { border-color: #bfe3d2; background: #fbfefc; }
.vn-example-panel p,
.vn-example-panel li { font-size: 15px; color: #3d3953; }
.vn-example-panel ul { margin: 0; padding-left: 18px; }
.vn-example-panel li + li { margin-top: 7px; }
.vn-quote {
  padding: 14px 16px;
  border-radius: 12px;
  background: #faf8fd;
  border: 1px dashed #d8cdea;
  font-size: 15px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.vn-note { margin-top: 12px !important; font-size: 13px !important; color: var(--vn-muted) !important; }

/* Callouts */
.vn-callout {
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid #e3d7fa;
  background: linear-gradient(110deg, #f6f0ff, #eef6ff);
  color: #3b3354;
}
.vn-callout strong { color: var(--vn-ink); }
.vn-callout p + p { margin-top: 10px; }
.vn-disclaimer {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f8f7fa;
  border: 1px solid #ebe8f0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #5f5a73;
}

/* Tables */
.vn-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--vn-line);
  border-radius: 16px;
  background: #fff;
}
.vn-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
}
.vn-table th,
.vn-table td {
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #f0ebf7;
}
.vn-table th {
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6f5f86;
  background: #faf7fe;
}
.vn-table tr:last-child td { border-bottom: 0; }
.vn-table td:first-child { font-weight: 650; color: var(--vn-ink); }

/* FAQ */
.vn-faq { max-width: 860px; }
.vn-faq details {
  border-bottom: 1px solid var(--vn-line);
}
.vn-faq summary {
  position: relative;
  padding: 20px 44px 20px 0;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}
.vn-faq summary::-webkit-details-marker { display: none; }
.vn-faq summary::after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 16px;
  font-size: 26px;
  font-weight: 400;
  color: var(--vn-purple);
}
.vn-faq details[open] summary::after { content: '\2212'; }
.vn-faq .vn-answer {
  padding: 0 0 22px;
  color: var(--vn-muted);
  font-size: 16px;
}
.vn-faq .vn-answer p + p { margin-top: 10px; }
.vn-faq .vn-answer a { color: var(--vn-violet-text); text-decoration: underline; text-underline-offset: 3px; }

/* Related guides */
.vn-guides {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.vn-guide {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--vn-line);
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  transition: border-color .18s, transform .18s;
}
.vn-guide:hover { border-color: #cbb8f3; transform: translateY(-2px); }
.vn-guide small {
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a5fb5;
}
.vn-guide strong { margin-top: 8px; font-size: 17px; line-height: 1.35; color: var(--vn-ink); }
.vn-guide span { margin-top: 8px; font-size: 14.5px; line-height: 1.55; color: var(--vn-muted); }

/* Closing call to action */
.vn-cta-band {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: 26px;
  background: linear-gradient(135deg, #3d1d6b, #2d2463 55%, #1f4f8f);
  color: #fff;
}
.vn-cta-band h2 { color: #fff !important; font-size: clamp(27px, 3vw, 38px); }
.vn-cta-band p { margin-top: 12px; color: #dcd0f5; font-size: 17px; }
.vn-cta-band .vn-button {
  background: #fff;
  color: #3d1d6b;
  box-shadow: none;
  white-space: nowrap;
}
.vn-cta-band .vn-button:hover { background: #f4efff; }

/* ---------- Free tools ---------- */
.vn-tool {
  padding: 26px;
  border: 1px solid #ddd0f6;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--vn-shadow);
}
.vn-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.vn-field label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 14.5px;
  font-weight: 650;
  color: var(--vn-ink);
}
.vn-field label small { font-weight: 500; color: var(--vn-muted); }
.vn-field textarea {
  display: block;
  width: 100%;
  min-height: 230px;
  padding: 14px 15px;
  border: 1px solid #d9d1e8;
  border-radius: 14px;
  background: #fcfbfe;
  color: var(--vn-ink);
  font: 15px/1.55 Geist, Arial, Helvetica, sans-serif;
  resize: vertical;
}
.vn-field textarea:focus { border-color: var(--vn-purple); background: #fff; }
.vn-tool-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 18px;
}
.vn-tool-privacy { font-size: 13.5px; color: var(--vn-muted); }
.vn-tool-error {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff1f4;
  border: 1px solid #f5c9d4;
  color: var(--vn-red);
  font-size: 14.5px;
}
.vn-results { margin-top: 26px; }
.vn-results[hidden],
.vn-tool-error[hidden] { display: none !important; }
.vn-score-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border-radius: 18px;
  background: var(--vn-soft);
}
.vn-score {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: conic-gradient(var(--vn-purple) calc(var(--vn-score, 0) * 1%), #e4dcf3 0);
}
.vn-score b {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  font-size: 26px;
  font-weight: 800;
  color: var(--vn-ink);
}
.vn-score-row h3 { font-size: 20px; }
.vn-score-row p { margin-top: 6px; font-size: 15px; color: var(--vn-muted); }
.vn-result-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.vn-result-group {
  padding: 18px;
  border: 1px solid var(--vn-line);
  border-radius: 16px;
}
.vn-result-group h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .02em;
}
.vn-result-group p { font-size: 14px; color: var(--vn-muted); }
.vn-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vn-chips li {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13.5px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.vn-chips-found li { background: #e7f6ee; color: #175c40; }
.vn-chips-missing li { background: #fff3e0; color: #7a4600; }
.vn-chips-neutral li { background: #f1edf8; color: #4b3f66; }
.vn-copy {
  padding: 7px 12px;
  border: 1px solid #d9cdf5;
  border-radius: 9px;
  background: #fff;
  color: var(--vn-violet-text);
  font: 600 13px/1.2 Geist, Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.vn-copy:hover { background: var(--vn-soft); }
.vn-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Responsive ---------- */
/* On a large screen the screenshot carries the page, so it takes more of the
   row than the text; the text column still holds about 60 characters. */
@media (min-width: 1400px) {
  .vn-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); }
  .vn-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
  .vn-split.vn-reverse { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
}

@media (max-width: 1100px) {
  .vn-menu { gap: 0; }
  .vn-top-link,
  .vn-dropdown > summary { padding: 9px 9px; font-size: 14.5px; }
  .vn-login { display: none; }
  .vn-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vn-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .vn-container { width: calc(100% - 44px); }
  .vn-nav,
  .vn-actions .vn-login { display: none; }
  .vn-nav-row { min-height: 66px; gap: 12px; }
  .vn-actions { gap: 10px; }
  .vn-mobile { display: block; }
  .vn-mobile > summary {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    border: 1px solid var(--vn-line);
    cursor: pointer;
    list-style: none;
  }
  .vn-mobile > summary::-webkit-details-marker { display: none; }
  .vn-mobile > summary span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--vn-ink);
    transition: transform .15s, opacity .15s;
  }
  .vn-mobile[open] > summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .vn-mobile[open] > summary span:nth-child(2) { opacity: 0; }
  .vn-mobile[open] > summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .vn-mobile-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
    padding: 12px 22px 26px;
    background: #fff;
    border-bottom: 1px solid var(--vn-line);
    box-shadow: 0 24px 40px -30px rgba(41, 25, 90, .4);
  }
  .vn-mobile-group + .vn-mobile-group { margin-top: 12px; border-top: 1px solid #f0ebf7; padding-top: 12px; }
  .vn-mobile-group p {
    margin: 4px 0 6px;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #7a6a91;
  }
  .vn-mobile-group a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 550;
    color: var(--vn-ink);
    text-decoration: none;
  }
  .vn-mobile-group a[aria-current='page'] { color: var(--vn-purple-dark); }
  .vn-hero-grid,
  .vn-split { grid-template-columns: 1fr; gap: 34px; }
  .vn-split.vn-reverse > :first-child { order: 0; }
  .vn-grid-3,
  .vn-grid-4,
  .vn-guides { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vn-example { grid-template-columns: 1fr; }
  .vn-cta-band { grid-template-columns: 1fr; padding: 34px; }
}

@media (max-width: 680px) {
  .vn-container { width: calc(100% - 36px); }
  .vn-wordmark { font-size: 20px; }
  .vn-logo { width: 34px; height: 34px; }
  .vn-logo img { width: 43px; height: 43px; }
  .vn-actions .vn-button-small { padding: 9px 12px; font-size: 13px; }
  .vn-page { font-size: 16px; }
  .vn-hero { padding: 26px 0 44px; }
  .vn-lead { font-size: 17px; }
  .vn-section { padding: 52px 0; }
  .vn-section-head p { font-size: 16.5px; }
  .vn-grid-2,
  .vn-grid-3,
  .vn-grid-4,
  .vn-guides,
  .vn-tool-grid,
  .vn-result-groups { grid-template-columns: 1fr; }
  .vn-card { padding: 22px; }
  .vn-tool { padding: 18px; border-radius: 20px; }
  .vn-field textarea { min-height: 180px; }
  .vn-score-row { grid-template-columns: 1fr; justify-items: start; }
  .vn-faq summary { font-size: 16.5px; }
  .vn-cta-band { padding: 26px; border-radius: 22px; }
  .vn-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; padding-top: 42px; }
  .vn-button { padding: 13px 19px; font-size: 15px; }
}

@media (max-width: 380px) {
  .vn-container { width: calc(100% - 28px); }
  .vn-wordmark { font-size: 18px; }
  .vn-actions .vn-button-small { padding: 8px 10px; font-size: 12px; }
  .vn-footer-grid { grid-template-columns: 1fr; }
  .vn-hero h1 { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .vn-button,
  .vn-card-link,
  .vn-guide,
  .vn-dropdown > summary::after,
  .vn-mobile > summary span { transition: none !important; }
  .vn-button:hover,
  .vn-card-link:hover,
  .vn-guide:hover { transform: none; }
}
