.nv-guide {
  --nv-ink: #071a38;
  --nv-muted: #52647f;
  --nv-blue: #1265e8;
  --nv-blue-dark: #0746b8;
  --nv-soft: #eef5ff;
  --nv-line: #dce6f4;
  --nv-white: #ffffff;
  color: var(--nv-ink);
  background: #f7faff;
}

.nv-guide *,
.nv-guide *::before,
.nv-guide *::after {
  box-sizing: border-box;
}

.nv-guide a {
  color: inherit;
}

.nv-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nv-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 86% 18%, rgba(69, 137, 255, 0.24), transparent 32%),
    linear-gradient(145deg, #f7fbff 0%, #edf4ff 52%, #f8fbff 100%);
  border-bottom: 1px solid var(--nv-line);
}

.nv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.nv-kicker {
  margin: 0 0 14px;
  color: var(--nv-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nv-hero h1,
.nv-section-head h2,
.nv-panel h2,
.nv-cta h2 {
  color: var(--nv-ink);
  letter-spacing: -0.04em;
}

.nv-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.nv-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--nv-muted);
  font-size: clamp(1.05rem, 2vw, 1.27rem);
  line-height: 1.7;
}

.nv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.nv-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid #b8c9df;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.nv-button:hover {
  transform: translateY(-2px);
  border-color: var(--nv-blue);
  box-shadow: 0 12px 28px rgba(16, 80, 170, 0.12);
}

.nv-button--primary {
  border-color: var(--nv-blue);
  color: #fff;
  background: linear-gradient(135deg, #1e73ef, #0753d2);
}

.nv-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  color: #29496f;
  font-size: 0.92rem;
  list-style: none;
}

.nv-trust li::before {
  content: "✓";
  margin-right: 8px;
  color: #0ba760;
  font-weight: 900;
}

.nv-hero-media {
  position: relative;
}

.nv-hero-media img,
.nv-wide-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #d6e1f0;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(22, 69, 132, 0.16);
}

.nv-product-nav {
  position: sticky;
  z-index: 8;
  top: 0;
  border-bottom: 1px solid var(--nv-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nv-product-nav .nv-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 58px;
  overflow-x: auto;
}

.nv-product-nav strong {
  margin-right: auto;
  white-space: nowrap;
}

.nv-product-nav a {
  color: #405777;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nv-section {
  padding: 76px 0;
}

.nv-section--white {
  background: #fff;
}

.nv-section--blue {
  color: #fff;
  background: #071d42;
}

.nv-section--blue .nv-kicker {
  color: #77a8ff;
}

.nv-section--blue h2,
.nv-section--blue h3 {
  color: #fff;
}

.nv-section--blue p,
.nv-section--blue li {
  color: #c7d5e9;
}

.nv-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.nv-section-head h2,
.nv-panel h2,
.nv-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.nv-section-head > p:last-child,
.nv-panel > p,
.nv-cta > p {
  color: var(--nv-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.nv-grid-3,
.nv-grid-2,
.nv-screenshot-grid {
  display: grid;
  gap: 22px;
}

.nv-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nv-grid-2,
.nv-screenshot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nv-card,
.nv-panel,
.nv-faq details,
.nv-shot {
  border: 1px solid var(--nv-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(19, 56, 105, 0.06);
}

.nv-card {
  padding: 26px;
}

.nv-card-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 10px;
  color: var(--nv-blue);
  background: var(--nv-soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.nv-card h3,
.nv-shot h3 {
  margin: 0 0 10px;
  color: var(--nv-ink);
  font-size: 1.25rem;
}

.nv-card p,
.nv-card li,
.nv-shot p {
  color: var(--nv-muted);
  line-height: 1.65;
}

.nv-card ul,
.nv-panel ul {
  padding-left: 20px;
}

.nv-panel {
  padding: clamp(28px, 5vw, 52px);
}

.nv-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.nv-popup-pair {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
}

.nv-popup-pair img,
.nv-popup-single {
  display: block;
  width: min(calc(50% - 9px), 340px);
  height: auto;
  border: 1px solid #d9e2ef;
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(10, 41, 85, 0.18);
}

.nv-popup-single {
  width: min(100%, 340px);
}

.nv-popup-pair img:last-child {
  margin-top: 54px;
}

.nv-shot {
  overflow: hidden;
}

.nv-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.nv-shot-copy {
  padding: 22px 24px 26px;
}

.nv-note {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 4px solid var(--nv-blue);
  border-radius: 0 12px 12px 0;
  color: #294666;
  background: #eef5ff;
  line-height: 1.65;
}

.nv-warning {
  border-left-color: #e89616;
  background: #fff7e8;
}

.nv-faq {
  display: grid;
  gap: 12px;
}

.nv-faq details {
  padding: 0 22px;
}

.nv-faq summary {
  padding: 20px 0;
  color: var(--nv-ink);
  font-weight: 800;
  cursor: pointer;
}

.nv-faq details p {
  margin: -4px 0 22px;
  color: var(--nv-muted);
  line-height: 1.7;
}

.nv-cta {
  padding: clamp(34px, 6vw, 64px);
  border-radius: 24px;
  background: linear-gradient(145deg, #eaf3ff, #fff);
  box-shadow: inset 0 0 0 1px #d7e5f7;
}

.nv-cta .nv-actions {
  margin-bottom: 0;
}

.nv-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.nv-meta-pill {
  padding: 9px 12px;
  border: 1px solid #cad9eb;
  border-radius: 999px;
  color: #36516f;
  background: rgba(255,255,255,.75);
  font-size: .86rem;
  font-weight: 750;
}

.nv-guide code {
  padding: 2px 6px;
  border-radius: 6px;
  color: #113c78;
  background: #eaf2ff;
  font-size: 0.9em;
}

/* Direct-section layout used by the update and uninstall guides. */
.nv-hero > .nv-hero__copy,
.nv-hero > .nv-hero__visual,
.nv-section > .nv-section__heading,
.nv-section > .nv-card-grid,
.nv-section > .nv-shot-grid,
.nv-section > .nv-feature,
.nv-section > .nv-steps,
.nv-section > .nv-callout,
.nv-section > .nv-faq,
.nv-section > .nv-support {
  width: min(1120px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.nv-hero:has(> .nv-hero__copy) {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 54px;
  align-items: center;
  padding-right: max(20px, calc((100% - 1120px) / 2));
  padding-left: max(20px, calc((100% - 1120px) / 2));
}

.nv-hero > .nv-hero__copy,
.nv-hero > .nv-hero__visual {
  width: auto;
  margin: 0;
}

.nv-hero__visual img,
.nv-feature img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #d6e1f0;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(22, 69, 132, .16);
}

.nv-hero__visual figcaption,
.nv-shot figcaption {
  padding: 14px 6px 0;
  color: var(--nv-muted);
  font-size: .9rem;
  line-height: 1.55;
}

.nv-product-nav:not(:has(.nv-wrap)) {
  display: flex;
  gap: 24px;
  justify-content: center;
  min-height: 58px;
  align-items: center;
  overflow-x: auto;
  padding: 0 20px;
}

.nv-section--tint { background: #eef5ff; }
.nv-section--compact { padding-top: 58px; }

.nv-section__heading {
  max-width: 760px;
  margin-bottom: 34px !important;
}

.nv-section__heading h2,
.nv-feature h2,
.nv-support h2 {
  margin: 0;
  color: var(--nv-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.nv-section__heading > p:last-child,
.nv-feature p,
.nv-feature li,
.nv-support p {
  color: var(--nv-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.nv-card-grid,
.nv-shot-grid { display: grid; gap: 22px; }
.nv-card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nv-card-grid--two,
.nv-shot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.nv-step {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 10px;
  color: var(--nv-blue);
  background: var(--nv-soft);
  font-size: .78rem;
  font-weight: 850;
}

.nv-shot-grid { max-width: 780px; margin-top: 34px !important; }
.nv-shot-grid .nv-shot { padding: 24px; text-align: center; }
.nv-shot-grid .nv-shot img { width: min(100%, 340px); margin: 0 auto; border-radius: 14px; }

.nv-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr);
  gap: 44px;
  align-items: center;
}

.nv-feature--reverse > :first-child { order: 2; }
.nv-feature figure { margin: 0; }
.nv-checks { padding-left: 20px; }
.nv-text-link { color: var(--nv-blue) !important; font-weight: 750; }

.nv-steps { display: grid; gap: 14px; padding: 0; list-style: none; }
.nv-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--nv-line);
  border-radius: 16px;
  background: #fff;
}
.nv-steps li > span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--nv-blue);
  font-weight: 850;
}
.nv-steps h3,
.nv-steps p { margin: 0; }
.nv-steps p { margin-top: 6px; color: var(--nv-muted); line-height: 1.6; }

.nv-callout {
  margin-top: 22px !important;
  padding: 20px 22px;
  border-left: 4px solid var(--nv-blue);
  border-radius: 0 12px 12px 0;
  color: #294666;
  background: #fff;
  line-height: 1.65;
}

.nv-support {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px !important;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 22px;
  background: linear-gradient(145deg, #eaf3ff, #fff);
  box-shadow: inset 0 0 0 1px #d7e5f7;
}

@media (max-width: 900px) {
  .nv-hero-grid,
  .nv-split,
  .nv-grid-3,
  .nv-grid-2,
  .nv-screenshot-grid {
    grid-template-columns: 1fr;
  }

  .nv-hero:has(> .nv-hero__copy),
  .nv-card-grid--three,
  .nv-card-grid--two,
  .nv-shot-grid,
  .nv-feature {
    grid-template-columns: 1fr;
  }

  .nv-feature--reverse > :first-child { order: initial; }

  .nv-hero-media {
    max-width: 720px;
  }

  .nv-product-nav strong {
    display: none;
  }
}

@media (max-width: 620px) {
  .nv-wrap {
    width: min(100% - 28px, 1120px);
  }

  .nv-hero {
    padding-top: 52px;
  }

  .nv-section {
    padding: 56px 0;
  }

  .nv-popup-pair {
    align-items: center;
    flex-direction: column;
  }

  .nv-popup-pair img:last-child {
    margin-top: 0;
  }

  .nv-popup-pair img,
  .nv-popup-single {
    width: min(100%, 340px);
  }

  .nv-hero:has(> .nv-hero__copy) {
    padding-right: 14px;
    padding-left: 14px;
  }

  .nv-hero > .nv-hero__copy,
  .nv-hero > .nv-hero__visual,
  .nv-section > .nv-section__heading,
  .nv-section > .nv-card-grid,
  .nv-section > .nv-shot-grid,
  .nv-section > .nv-feature,
  .nv-section > .nv-steps,
  .nv-section > .nv-callout,
  .nv-section > .nv-faq,
  .nv-section > .nv-support { width: min(100% - 28px, 1120px); }

  .nv-product-nav:not(:has(.nv-wrap)) { justify-content: flex-start; }
  .nv-support { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .nv-button {
    transition: none;
  }
}
