:root {
  --nz-bg: #f8fbff;
  --nz-surface: #ffffff;
  --nz-surface-soft: #f1f7fb;
  --nz-surface-cool: #eaf5ff;
  --nz-ink: #07122d;
  --nz-ink-soft: #17233b;
  --nz-muted: #52647f;
  --nz-muted-strong: #384b65;
  --nz-border: #dbe7f5;
  --nz-border-strong: #c7d8ec;
  --nz-blue: #1456ff;
  --nz-blue-dark: #0f46cc;
  --nz-teal: #10b7a4;
  --nz-teal-dark: #0ea190;
  --nz-cyan: #19c2d7;
  --nz-footer: #07122d;
  --nz-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --nz-shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.06);
  --nz-radius: 28px;
  --nz-radius-md: 18px;
  --nz-radius-sm: 12px;
  --nz-content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 6%, rgba(20, 86, 255, 0.10), transparent 28rem),
    radial-gradient(circle at 10% 8%, rgba(25, 194, 215, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 460px, rgba(248, 251, 255, 0) 760px),
    var(--nz-bg);
  color: var(--nz-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a {
  color: var(--nz-blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(20, 86, 255, 0.34);
  outline-offset: 4px;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nz-main {
  overflow-x: clip;
}

.nz-container {
  width: min(var(--nz-content), calc(100% - 40px));
  margin-inline: auto;
}

.nz-container > *,
.nz-archive-hero__grid > *,
.nz-search-hero__grid > *,
.nz-discovery > *,
.nz-section__head > * {
  min-width: 0;
}

.nz-skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 10;
  padding: 10px 12px;
  background: var(--nz-ink);
  color: #fff;
}

.nz-skip-link:focus {
  top: 12px;
}

.nz-site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(219, 231, 245, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nz-site-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.nz-site-header__menu {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.nz-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--nz-ink);
  text-decoration: none;
}

.nz-brand__mark,
.nz-footer-brand__mark {
  width: 46px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  flex: 0 0 auto;
}

.nz-brand__mark img,
.nz-footer-brand__mark img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.nz-brand strong,
.nz-footer-brand__text {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

.nz-brand small {
  display: block;
  color: var(--nz-muted);
  font-size: 12px;
  line-height: 1.2;
}

.nz-menu-toggle {
  display: none;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(219, 231, 245, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--nz-ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(15, 37, 67, 0.08);
  cursor: pointer;
}

.nz-menu-toggle:hover,
.nz-menu-toggle:focus-visible {
  border-color: rgba(37, 99, 255, 0.36);
  color: var(--nz-blue);
}

.nz-menu-toggle:focus-visible {
  outline: 3px solid rgba(37, 99, 255, 0.20);
  outline-offset: 2px;
}

.nz-menu-toggle__icon {
  width: 16px;
  display: grid;
  gap: 4px;
}

.nz-menu-toggle__icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nz-site-header.is-menu-open .nz-menu-toggle__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nz-site-header.is-menu-open .nz-menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.nz-site-header.is-menu-open .nz-menu-toggle__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nz-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.nz-mobile-nav {
  display: none;
}

.nz-nav a {
  color: var(--nz-muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nz-nav a:hover {
  color: var(--nz-blue);
}

.nz-button,
.wp-block-button__link,
.nixzap-blog-cta__button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid var(--nz-teal);
  border-radius: 999px;
  background: linear-gradient(120deg, var(--nz-teal), var(--nz-teal-dark));
  color: #032224;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(16, 183, 164, 0.20);
}

.nz-button:hover,
.wp-block-button__link:hover,
.nixzap-blog-cta__button:hover {
  border-color: var(--nz-teal-dark);
  background: linear-gradient(120deg, var(--nz-teal-dark), var(--nz-teal));
}

.nz-button--secondary {
  border-color: var(--nz-border);
  background: var(--nz-surface);
  color: var(--nz-ink);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.nz-text-link {
  align-self: center;
  color: var(--nz-blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nz-eyebrow {
  margin: 0 0 14px;
  color: var(--nz-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nz-hero {
  padding: 78px 0 46px;
}

.nz-blog-hero {
  padding: 54px 0 34px;
  border-bottom: 1px solid rgba(219, 231, 245, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.52));
}

.nz-blog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 32px;
  align-items: center;
}

.nz-blog-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #0f172a;
  font-size: 66px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.nz-blog-hero p:not(.nz-eyebrow) {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--nz-muted);
  font-size: 21px;
}

.nz-blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.nz-blog-hero__topics {
  max-width: 940px;
  margin-top: 24px;
}

.nz-blog-hero__topics .nz-topic-chips {
  align-self: auto;
}

.nz-blog-hero__visual {
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.nz-blog-hero__visual img {
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(15, 23, 42, 0.12));
}

.nz-blog-hero__note {
  padding: 22px;
  border: 1px solid var(--nz-border);
  border-radius: var(--nz-radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--nz-shadow-soft);
}

.nz-blog-hero__note span {
  display: block;
  color: var(--nz-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nz-blog-hero__note strong {
  display: block;
  margin-top: 12px;
  color: var(--nz-ink);
  font-size: 22px;
  line-height: 1.14;
}

.nz-blog-hero__note small {
  display: block;
  margin-top: 12px;
  color: var(--nz-muted);
  font-size: 14px;
  line-height: 1.45;
}

.nz-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: center;
}

.nz-hero__copy h1,
.nz-article-hero h1,
.nz-archive-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #0f172a;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.nz-hero__copy p:not(.nz-eyebrow),
.nz-archive-hero p {
  max-width: 690px;
  color: var(--nz-muted);
  font-size: 21px;
}

.nz-hero__actions,
.nz-archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.nz-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 600px;
  margin: 28px 0 0;
}

.nz-hero-metrics div {
  padding: 14px 16px;
  border: 1px solid rgba(199, 216, 236, 0.78);
  border-radius: var(--nz-radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.nz-hero-metrics dt {
  color: var(--nz-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nz-hero-metrics dd {
  margin: 2px 0 0;
  color: var(--nz-ink);
  font-size: 15px;
  font-weight: 700;
}

.nz-hero-card,
.nixzap-blog-cta,
.nz-article-brief,
.nz-conversion-panel {
  border: 1px solid var(--nz-border);
  border-radius: var(--nz-radius);
  background: radial-gradient(circle at top, #ffffff, #f6f8fb);
  box-shadow: var(--nz-shadow);
}

.nz-hero-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.nz-hero-card__media {
  display: flex;
  justify-content: flex-end;
  margin: -10px -6px 4px;
}

.nz-hero-card__media img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(15, 23, 42, 0.14));
}

.nz-hero-card span,
.nz-cluster-card span,
.nz-guide-card span,
.nz-problem-card span,
.nz-footer-links span {
  display: block;
  color: var(--nz-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nz-hero-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.08;
}

.nz-hero-card ul,
.nz-article-brief ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nz-hero-card li,
.nz-article-brief li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.nz-hero-card li::before,
.nz-article-brief li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nz-blue);
}

.nz-section {
  padding: 44px 0;
}

.nz-section--first {
  padding-top: 34px;
}

.nz-section--tight {
  padding-top: 24px;
  padding-bottom: 24px;
}

.nz-section--band {
  position: relative;
}

.nz-section--band::before {
  content: "";
  position: absolute;
  inset: 18px calc((100vw - min(var(--nz-content), calc(100vw - 40px))) / -2);
  z-index: -1;
  border-top: 1px solid rgba(219, 231, 245, 0.72);
  border-bottom: 1px solid rgba(219, 231, 245, 0.72);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.54), rgba(232, 246, 255, 0.48));
}

.nz-section__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.nz-section__head h2 {
  max-width: 780px;
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
}

.nz-section__head > p {
  max-width: 340px;
  margin: 34px 0 0;
  color: var(--nz-muted);
}

.nz-topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
}

.nz-topic-chips--mobile,
.nz-discovery__mobile-heading {
  display: none;
}

.nz-discovery,
.nz-resource-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--nz-border);
  border-radius: var(--nz-radius);
  background:
    radial-gradient(circle at 96% 0%, rgba(16, 183, 164, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--nz-shadow-soft);
}

.nz-discovery {
  grid-template-columns: minmax(220px, 0.78fr) minmax(320px, 1fr);
  align-items: end;
}

.nz-editorial-search .nz-discovery {
  border-radius: var(--nz-radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.nz-discovery h2,
.nz-resource-panel h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.nz-discovery .nz-topic-chips {
  grid-column: 1 / -1;
}

.nz-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.nz-search-form input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--nz-border);
  border-radius: 999px;
  background: var(--nz-surface);
  color: var(--nz-ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
}

.nz-search-form input:focus {
  border-color: rgba(20, 86, 255, 0.42);
  outline: 3px solid rgba(20, 86, 255, 0.14);
}

.nz-search-form--hero {
  align-self: end;
  padding: 14px;
  border: 1px solid var(--nz-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--nz-shadow-soft);
}

.nz-resource-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background:
    radial-gradient(circle at 98% 0%, rgba(20, 86, 255, 0.10), transparent 18rem),
    linear-gradient(135deg, #ffffff, #eefaf8);
}

.nz-resource-panel p:not(.nz-eyebrow) {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--nz-muted);
}

.nz-chip {
  padding: 10px 13px;
  border: 1px solid var(--nz-border);
  border-radius: 999px;
  background: var(--nz-surface);
  color: var(--nz-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nz-problem-grid,
.nz-cluster-grid,
.nz-guide-grid,
.nz-post-grid,
.nz-roadmap-grid,
.nz-category-hub-grid {
  display: grid;
  gap: 18px;
}

.nz-problem-grid,
.nz-cluster-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

.nz-problem-card,
.nz-cluster-card,
.nz-guide-card,
.nz-post-card,
.nz-category-hub-card {
  border: 1px solid var(--nz-border);
  border-radius: var(--nz-radius);
  background: var(--nz-surface);
  color: var(--nz-ink);
  text-decoration: none;
  box-shadow: var(--nz-shadow-soft);
}

.nz-problem-card,
.nz-cluster-card,
.nz-guide-card,
.nz-category-hub-card {
  min-height: 222px;
  padding: 22px;
}

.nz-problem-card:hover,
.nz-cluster-card:hover,
.nz-guide-card:hover,
.nz-post-card:hover {
  border-color: rgba(20, 86, 255, 0.28);
  box-shadow: 0 22px 56px rgba(20, 86, 255, 0.10);
}

.nz-problem-card h3,
.nz-cluster-card h3,
.nz-guide-card h3,
.nz-category-hub-card h3 {
  margin: 16px 0 10px;
  font-size: 22px;
  line-height: 1.14;
}

.nz-problem-card p,
.nz-cluster-card p,
.nz-guide-card p,
.nz-category-hub-card p {
  margin: 0;
  color: var(--nz-muted);
  font-size: 15px;
}

.nz-category-hub-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(20, 86, 255, 0.08), transparent 11rem),
    var(--nz-surface);
}

.nz-category-hub-card span {
  display: block;
  color: var(--nz-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nz-guide-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(16, 183, 164, 0.11), transparent 11rem),
    var(--nz-surface);
}

.nz-post-card {
  min-height: 278px;
}

.nz-post-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  margin: -24px -24px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--nz-border);
  border-radius: var(--nz-radius) var(--nz-radius) var(--nz-radius-md) var(--nz-radius-md);
  background:
    radial-gradient(circle at 74% 14%, rgba(16, 183, 164, 0.18), transparent 11rem),
    linear-gradient(135deg, #ffffff, #eef7ff);
}

.nz-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nz-post-card__media--fallback img {
  width: 58%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(15, 23, 42, 0.14));
}

.nz-post-card__media--contain img {
  width: 58%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(15, 23, 42, 0.14));
}

.nz-conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  background:
    radial-gradient(circle at right, rgba(16, 183, 164, 0.18), transparent 20rem),
    linear-gradient(135deg, #ffffff, #f3f9ff);
}

.nz-editorial-front {
  display: grid;
  grid-template-columns: minmax(0, 1.46fr) minmax(300px, 0.74fr);
  gap: 22px;
  align-items: stretch;
}

.nz-featured-article,
.nz-latest-list {
  border: 1px solid var(--nz-border);
  border-radius: var(--nz-radius-md);
  background: var(--nz-surface);
  box-shadow: var(--nz-shadow-soft);
}

.nz-featured-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
}

.nz-featured-article__media {
  display: block;
  min-width: 0;
  width: 100%;
  border-bottom: 1px solid var(--nz-border);
  background:
    radial-gradient(circle at 70% 12%, rgba(16, 183, 164, 0.16), transparent 14rem),
    linear-gradient(135deg, #ffffff, #eef7ff);
}

.nz-featured-article__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.nz-featured-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nz-featured-article__image--contain img {
  width: 78%;
  height: 78%;
  margin: 8% 11%;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(15, 23, 42, 0.14));
}

.nz-featured-article__body {
  min-width: 0;
  width: 100%;
  padding: 30px;
}

.nz-featured-article h2 {
  margin: 16px 0 14px;
  font-size: 40px;
  line-height: 1.05;
}

.nz-featured-article h2 a {
  color: var(--nz-ink);
  text-decoration: none;
}

.nz-featured-article p:not(.nz-eyebrow) {
  margin: 0 0 22px;
  color: var(--nz-muted);
}

.nz-latest-list {
  padding: 24px;
}

.nz-latest-list__head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.nz-latest-list ol {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.nz-latest-list li + li {
  border-top: 1px solid var(--nz-border);
}

.nz-latest-list a {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  color: var(--nz-ink);
  text-decoration: none;
}

.nz-latest-list span {
  color: var(--nz-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nz-latest-list strong {
  font-size: 18px;
  line-height: 1.18;
}

.nz-latest-list small {
  color: var(--nz-muted);
  font-size: 13px;
  font-weight: 650;
}

.nz-conversion-panel h2 {
  max-width: 760px;
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.12;
}

.nz-conversion-panel p:not(.nz-eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--nz-muted);
}

.nz-roadmap-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nz-roadmap-card {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--nz-border);
  border-radius: var(--nz-radius);
  background: var(--nz-surface);
  color: var(--nz-ink);
  text-decoration: none;
  box-shadow: var(--nz-shadow-soft);
}

.nz-roadmap-card:hover {
  border-color: rgba(20, 86, 255, 0.28);
  box-shadow: 0 22px 56px rgba(20, 86, 255, 0.10);
}

.nz-roadmap-card--planned {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(241, 247, 251, 0.72));
}

.nz-roadmap-card span {
  display: block;
  color: var(--nz-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nz-roadmap-card h3 {
  margin: 16px 0 10px;
  font-size: 21px;
  line-height: 1.14;
}

.nz-roadmap-card p {
  margin: 0 0 18px;
  color: var(--nz-muted);
  font-size: 15px;
}

.nz-roadmap-card strong {
  display: inline-flex;
  margin-top: auto;
  padding: 7px 10px;
  border: 1px solid var(--nz-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--nz-muted-strong);
  font-size: 12px;
  line-height: 1.1;
}

.nz-post-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--nz-ink);
  text-decoration: none;
}

.nz-post-card__meta,
.nz-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--nz-muted);
  font-size: 13px;
  font-weight: 650;
}

.nz-post-card__meta span + span::before,
.nz-article-meta span + span::before {
  content: "/";
  margin-right: 12px;
  color: var(--nz-border-strong);
}

.nz-post-card h2,
.nz-post-card h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.15;
}

.nz-post-card p {
  margin: 0;
  color: var(--nz-muted);
}

.nz-post-card--featured {
  grid-column: span 2;
  min-height: 320px;
  background:
    radial-gradient(circle at 90% 4%, rgba(20, 86, 255, 0.10), transparent 16rem),
    linear-gradient(135deg, #ffffff, #f4f9ff);
}

.nz-post-card--featured .nz-post-card__media {
  aspect-ratio: 2.1 / 1;
}

.nz-post-card--featured h3 {
  max-width: 650px;
  font-size: 34px;
}

.nz-card-action {
  margin-top: auto;
  padding-top: 24px;
  color: var(--nz-blue);
  font-size: 14px;
  font-weight: 700;
}

.nz-breadcrumbs {
  margin-bottom: 24px;
}

.nz-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--nz-muted);
  font-size: 13px;
  list-style: none;
}

.nz-breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--nz-border-strong);
}

.nz-breadcrumbs a {
  color: var(--nz-muted);
  text-decoration: none;
}

.nz-archive-hero,
.nz-article-hero {
  padding: 70px 0 38px;
}

.nz-archive-hero--compact {
  padding: 46px 0 24px;
}

.nz-archive-hero h1,
.nz-article-hero h1 {
  font-size: 66px;
  overflow-wrap: anywhere;
}

.nz-archive-hero--compact h1 {
  font-size: 56px;
}

.nz-archive-hero p {
  max-width: 720px;
}

.nz-archive-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  align-items: end;
}

.nz-search-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 36px;
  align-items: end;
}

.nz-archive-playbook {
  padding: 28px;
  border: 1px solid var(--nz-border);
  border-radius: var(--nz-radius);
  background:
    radial-gradient(circle at right top, rgba(16, 183, 164, 0.16), transparent 14rem),
    var(--nz-surface);
  box-shadow: var(--nz-shadow-soft);
}

.nz-archive-playbook h2 {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.12;
}

.nz-archive-playbook ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nz-archive-playbook li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  color: var(--nz-muted-strong);
  font-weight: 650;
  line-height: 1.35;
}

.nz-archive-playbook li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--nz-blue);
}

.nz-archive-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.nz-archive-signals span {
  padding: 7px 10px;
  border: 1px solid var(--nz-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--nz-muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.nz-archive-feed-first {
  padding-top: 26px;
}

.nz-archive-discovery {
  padding-top: 12px;
}

.nz-author-panel {
  width: min(var(--nz-content), calc(100% - 40px));
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) minmax(260px, 0.82fr);
  gap: 24px;
  align-items: center;
  margin: 18px auto 0;
  padding: 24px;
  border: 1px solid var(--nz-border);
  border-radius: var(--nz-radius);
  background:
    radial-gradient(circle at right top, rgba(16, 183, 164, 0.13), transparent 18rem),
    var(--nz-surface);
  box-shadow: var(--nz-shadow-soft);
}

.nz-author-panel img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.12));
}

.nz-author-panel h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.12;
}

.nz-author-panel p:not(.nz-eyebrow) {
  margin: 0;
  color: var(--nz-muted);
}

.nz-author-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nz-author-panel li {
  color: var(--nz-muted-strong);
  font-size: 15px;
  line-height: 1.38;
}

.nz-article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 38px;
  align-items: start;
}

.nz-article-hero__side {
  display: grid;
  gap: 16px;
}

.nz-article-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--nz-border);
  border-radius: var(--nz-radius);
  background:
    radial-gradient(circle at 78% 14%, rgba(16, 183, 164, 0.18), transparent 16rem),
    linear-gradient(135deg, #ffffff, #edf7ff);
  box-shadow: var(--nz-shadow);
}

.nz-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nz-article-cover--fallback img {
  width: 62%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(15, 23, 42, 0.16));
}

.nz-article-cover--contain img {
  width: 62%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(15, 23, 42, 0.16));
}

.nz-article-meta {
  margin-top: 22px;
}

.nz-article-brief {
  padding: 24px;
}

.nixzap-blog-cta p {
  color: var(--nz-muted);
}

.nz-article-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 720px);
  gap: 40px;
  align-items: start;
  justify-content: center;
  padding: 26px 0 84px;
}

.nz-article-left {
  align-self: start;
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 128px);
  overflow-y: auto;
}

.nz-toc {
  padding: 18px 0;
  border-top: 1px solid var(--nz-border);
}

.nz-topic-sidebar {
  padding: 18px 0;
  border-top: 1px solid var(--nz-border);
}

.nz-toc span,
.nz-topic-sidebar > span {
  display: block;
  margin-bottom: 12px;
  color: var(--nz-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nz-toc ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nz-topic-sidebar ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nz-toc a {
  color: var(--nz-muted-strong);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  text-decoration: none;
}

.nz-topic-sidebar__link {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  color: var(--nz-muted-strong);
  text-decoration: none;
}

.nz-topic-sidebar__link strong {
  font-size: 14px;
  line-height: 1.2;
}

.nz-topic-sidebar__link small {
  color: var(--nz-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.nz-toc a:hover {
  color: var(--nz-blue);
}

.nz-topic-sidebar__link:hover strong,
.nz-topic-sidebar__link.is-active strong {
  color: var(--nz-blue);
}

.nz-topic-sidebar__link.is-active {
  padding-left: 10px;
  border-left: 3px solid var(--nz-teal);
}

.nz-article-main {
  min-width: 0;
}

.nz-article-brief {
  margin-bottom: 34px;
  background:
    radial-gradient(circle at right top, rgba(20, 86, 255, 0.08), transparent 14rem),
    var(--nz-surface);
}

.nz-article-content > * {
  margin-top: 0;
  margin-bottom: 1.25em;
}

.nz-article-content h2 {
  scroll-margin-top: 106px;
  margin-top: 1.65em;
  margin-bottom: 0.55em;
  color: var(--nz-ink);
  font-size: 36px;
  line-height: 1.12;
}

.nz-article-content h3 {
  scroll-margin-top: 106px;
  margin-top: 1.35em;
  font-size: 26px;
  line-height: 1.18;
}

.nz-article-content p,
.nz-article-content li {
  color: #26384f;
  font-size: 20px;
}

.nz-article-content a {
  font-weight: 700;
}

.nixzap-blog-cta h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.16;
}

.nz-article-recirc {
  margin-top: 54px;
}

.nz-post-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nixzap-blog-cta {
  margin: 42px 0;
  padding: 28px;
  background: linear-gradient(135deg, var(--nz-surface), var(--nz-surface-soft));
}

.nz-pagination {
  margin-top: 28px;
}

.nz-empty {
  color: var(--nz-muted);
}

.nz-search-hero .nz-archive-playbook {
  align-self: start;
}

.nz-search-results {
  padding-top: 28px;
}

.nz-site-footer {
  border-top: 1px solid rgba(219, 231, 245, 0.16);
  background:
    radial-gradient(circle at 82% 10%, rgba(16, 183, 164, 0.16), transparent 22rem),
    var(--nz-footer);
  color: #f8fbff;
}

.nz-site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(260px, auto);
  gap: 34px;
  padding: 38px 0;
  align-items: start;
}

.nz-site-footer p {
  max-width: 460px;
  margin: 10px 0 0;
  color: #b9c7dd;
}

.nz-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.nz-footer-links {
  display: grid;
  gap: 7px;
}

.nz-footer-links span {
  color: #7f91ad;
}

.nz-footer-links a {
  color: #dbe7f5;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nz-footer-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: #dceee6;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .nz-article-layout {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 28px;
  }

  .nz-toc a {
    font-size: 13px;
  }
}

@media (max-width: 920px) {
  .nz-hero__grid,
  .nz-blog-hero__grid,
  .nz-editorial-front,
  .nz-featured-article,
  .nz-archive-hero__grid,
  .nz-search-hero__grid,
  .nz-article-hero__grid,
  .nz-article-layout,
  .nz-author-panel,
  .nz-site-footer__inner {
    grid-template-columns: 1fr;
  }

  .nz-site-header__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .nz-site-header__menu {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nz-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nz-button--header {
    width: fit-content;
  }

  .nz-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nz-hero__copy h1,
  .nz-blog-hero h1,
  .nz-article-hero h1,
  .nz-archive-hero h1 {
    font-size: 54px;
  }

  .nz-archive-hero--compact h1 {
    font-size: 48px;
  }

  .nz-hero__copy p:not(.nz-eyebrow),
  .nz-blog-hero p:not(.nz-eyebrow),
  .nz-archive-hero p {
    font-size: 19px;
  }

  .nz-problem-grid,
  .nz-cluster-grid,
  .nz-guide-grid,
  .nz-post-grid,
  .nz-post-grid--compact,
  .nz-roadmap-grid,
  .nz-category-hub-grid,
  .nz-discovery,
  .nz-resource-panel {
    grid-template-columns: 1fr 1fr;
  }

  .nz-conversion-panel {
    grid-template-columns: 1fr;
  }

  .nz-post-card--featured {
    grid-column: span 2;
  }

  .nz-featured-article__image {
    min-height: 300px;
  }

  .nz-footer-cta {
    justify-content: flex-start;
  }

  .nz-blog-hero__visual {
    justify-content: flex-start;
    margin-top: -10px;
  }

  .nz-blog-hero__visual img {
    width: min(320px, 76vw);
  }
}

@media (max-width: 640px) {
  html,
  body,
  .nz-main,
  .nz-site-header {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  .nz-container {
    width: calc(100% - 28px);
    max-width: var(--nz-content);
  }

  .nz-site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    min-height: 0;
    padding: 9px 0 8px;
  }

  .nz-brand {
    gap: 10px;
    min-width: 0;
  }

  .nz-brand__mark {
    width: 40px;
    height: 36px;
  }

  .nz-brand__mark img {
    width: 100%;
    height: 100%;
  }

  .nz-brand strong {
    font-size: 16px;
  }

  .nz-brand small {
    display: none;
  }

  .nz-menu-toggle {
    display: inline-flex;
    justify-self: end;
    max-width: 92px;
    padding-inline: 10px;
  }

  .nz-site-header__menu {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(219, 231, 245, 0.96);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(15, 37, 67, 0.10);
  }

  .nz-site-header.is-menu-open .nz-site-header__menu {
    display: grid;
  }

  .nz-nav--topics {
    display: none;
  }

  .nz-mobile-nav {
    display: grid;
    gap: 2px;
  }

  .nz-mobile-nav a,
  .nz-button--header {
    min-width: 0;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 9px 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--nz-ink);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    overflow-wrap: anywhere;
  }

  .nz-button--header {
    width: auto;
    max-width: 100%;
    color: var(--nz-teal-dark);
    white-space: normal;
  }

  .nz-blog-hero__topics {
    display: none;
  }

  .nz-hero,
  .nz-blog-hero,
  .nz-archive-hero,
  .nz-article-hero {
    padding-top: 30px;
  }

  .nz-hero__copy h1,
  .nz-blog-hero h1,
  .nz-article-hero h1,
  .nz-archive-hero h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .nz-hero__copy p:not(.nz-eyebrow),
  .nz-blog-hero p:not(.nz-eyebrow),
  .nz-archive-hero p {
    max-width: 100%;
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .nz-blog-hero__note {
    padding: 18px;
  }

  .nz-blog-hero__note strong {
    font-size: 20px;
  }

  .nz-blog-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nz-blog-hero__actions .nz-button {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .nz-blog-hero__visual {
    justify-content: center;
    margin-top: 18px;
  }

  .nz-blog-hero__visual img {
    width: min(210px, 58vw);
  }

  .nz-hero-metrics,
  .nz-problem-grid,
  .nz-cluster-grid,
  .nz-guide-grid,
  .nz-post-grid,
  .nz-post-grid--compact,
  .nz-roadmap-grid,
  .nz-category-hub-grid,
  .nz-toc ol,
  .nz-conversion-panel,
  .nz-discovery,
  .nz-resource-panel,
  .nz-search-form {
    grid-template-columns: 1fr;
  }

  .nz-discovery,
  .nz-resource-panel {
    padding: 20px;
  }

  .nz-editorial-search .nz-discovery {
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nz-discovery__copy h2,
  .nz-search-form--discovery,
  .nz-topic-chips--desktop {
    display: none;
  }

  .nz-discovery__mobile-heading {
    display: block;
    margin: 0;
    color: var(--nz-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
  }

  .nz-topic-chips--mobile {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 14px 8px;
    margin-inline: -14px;
    scroll-snap-type: x proximity;
  }

  .nz-topic-chips--mobile .nz-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .nz-search-form--hero {
    padding: 10px;
    border-radius: var(--nz-radius-md);
  }

  .nz-discovery h2,
  .nz-resource-panel h2 {
    font-size: 24px;
  }

  .nz-discovery .nz-topic-chips {
    gap: 8px;
  }

  .nz-discovery .nz-chip {
    padding: 8px 10px;
    font-size: 12px;
  }

  .nz-post-card--featured {
    grid-column: auto;
  }

  .nz-post-card--featured h3 {
    font-size: 26px;
  }

  .nz-featured-article__body {
    padding: 22px;
  }

  .nz-featured-article__image {
    min-height: 230px;
  }

  .nz-featured-article h2 {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

  .nz-featured-article h2 a,
  .nz-latest-list h2,
  .nz-latest-list strong,
  .nz-section__head h2,
  .nz-post-card h2,
  .nz-post-card h3 {
    overflow-wrap: anywhere;
  }

  .nz-latest-list {
    padding: 20px;
  }

  .nz-section {
    padding: 34px 0;
  }

  .nz-section__head {
    display: grid;
  }

  .nz-section__head h2 {
    font-size: 30px;
  }

  .nz-section__head > p {
    margin: 0;
  }

  .nz-article-layout {
    padding-bottom: 48px;
  }

  .nz-article-hero__side {
    gap: 12px;
  }

  .nz-article-cover {
    aspect-ratio: 16 / 9;
    border-radius: 22px;
  }

  .nz-article-brief {
    margin-bottom: 24px;
    padding: 20px;
  }

  .nz-article-left {
    display: none;
  }

  .nz-toc {
    padding: 18px;
    border: 1px solid var(--nz-border);
    border-radius: var(--nz-radius-md);
    background: rgba(255, 255, 255, 0.72);
  }

  .nz-article-content p,
  .nz-article-content li {
    font-size: 18px;
  }

  .nz-article-content h2 {
    font-size: 30px;
  }

  .nz-archive-hero--compact {
    padding-top: 26px;
    padding-bottom: 12px;
  }

  .nz-archive-feed-first,
  .nz-search-results {
    padding-top: 18px;
  }

  .nz-archive-playbook {
    padding: 22px;
  }

  .nz-archive-hero--compact .nz-archive-playbook {
    display: none;
  }

  .nz-archive-playbook h2 {
    font-size: 24px;
  }

  .nz-conversion-panel {
    padding: 24px;
  }

  .nz-conversion-panel h2 {
    font-size: 26px;
  }

  .nz-author-panel {
    width: calc(100% - 28px);
    max-width: var(--nz-content);
    gap: 16px;
    padding: 20px;
  }

  .nz-author-panel img {
    width: 86px;
    height: 86px;
  }

  .nz-author-panel h2 {
    font-size: 24px;
  }

  .nz-footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
