@charset "UTF-8";
:root {
  --nl-bg: #0a0f1c;
  --nl-bg-deep: #08122b;
  --nl-bg-elevated: #0d1526;
  --nl-bg-card: #101a34;
  --nl-bg-card-2: rgba(18, 26, 48, 0.6);
  --nl-border: rgba(118, 140, 196, 0.14);
  --nl-border-strong: rgba(118, 140, 196, 0.28);
  --nl-text: #e7ecf6;
  --nl-text-bright: #eef2fb;
  --nl-text-brightest: #f4f7ff;
  --nl-muted: #a6b2cc;
  --nl-muted-2: #808eaa;
  --nl-muted-3: #737f9c;
  --nl-muted-4: #59657f;
  --nl-green: #64bc46;
  --nl-green-2: #95c959;
  --nl-green-ink: #08122b;
  --nl-blue: #415ba9;
  --nl-yellow: #f3bb1a;
  --nl-brown: #a86427;
  --nl-danger: #e0655b;
  --nl-font: IBM Plex Sans, system-ui, sans-serif;
  --nl-mono: IBM Plex Mono, ui-monospace, monospace;
  --nl-display: Sora, IBM Plex Sans, system-ui, sans-serif;
  --nl-radius: 16px;
  --nl-radius-sm: 11px;
  --nl-radius-pill: 999px;
  --nl-max: 1200px;
  --nl-header-h: 72px;
}

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--nl-bg);
  color: var(--nl-text);
  font-family: var(--nl-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nl-nav-open {
  overflow: hidden;
}

a {
  color: var(--nl-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--nl-green-2);
}

a:focus-visible,
button:focus-visible,
.nl-btn:focus-visible {
  outline: 2px solid var(--nl-green);
  outline-offset: 3px;
}

::selection {
  background: rgba(100, 188, 70, 0.3);
  color: #fff;
}

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

.nl-container {
  width: min(100% - 48px, var(--nl-max));
  margin-inline: auto;
}

.nl-main {
  min-height: 50vh;
}

/* Typography */
.nl-eyebrow {
  font-family: var(--nl-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--nl-green);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.nl-display {
  font-family: var(--nl-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--nl-text-brightest);
  margin: 0 0 18px;
}

.nl-lead {
  color: var(--nl-muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.nl-page-title {
  font-family: var(--nl-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--nl-text-bright);
  margin: 48px 0 24px;
}

.nl-page-default-title {
  padding-top: 24px;
}

.nl-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--nl-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--nl-tag-color, var(--nl-green));
  border: 1px solid color-mix(in srgb, var(--nl-tag-color, var(--nl-green)) 33%, transparent);
  border-radius: var(--nl-radius-pill);
  padding: 2px 9px;
}

.nl-blog-hero .nl-display {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 720px;
}

@keyframes nlFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nlGridPan {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 44px 44px;
  }
}
@keyframes nlPulse {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
/* Buttons */
/* Buttons */
.nl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--nl-font);
  font-weight: 600;
  font-size: 15.5px;
  border-radius: var(--nl-radius-sm);
  padding: 14px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nl-btn--primary {
  color: var(--nl-green-ink) !important;
  background: var(--nl-green);
  box-shadow: 0 8px 30px rgba(100, 188, 70, 0.28);
}

.nl-btn--primary:hover {
  background: var(--nl-green-2);
  color: var(--nl-green-ink) !important;
}

.nl-btn--ghost {
  color: var(--nl-text-bright) !important;
  background: transparent;
  border-color: var(--nl-border-strong);
}

.nl-btn--ghost:hover {
  border-color: rgba(100, 188, 70, 0.45);
  color: var(--nl-green-2) !important;
}

/* Header & webinar bar */
/* Webinar bar */
.nl-webinar-bar {
  background: linear-gradient(90deg, #0d1526, #152140);
  border-bottom: 1px solid var(--nl-border);
  font-size: 13.5px;
}

.nl-webinar-bar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.nl-webinar-bar__label {
  font-family: var(--nl-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--nl-green-ink);
  background: var(--nl-green);
  border-radius: 6px;
  padding: 3px 8px;
  font-weight: 500;
}

.nl-webinar-bar__title {
  color: var(--nl-muted);
  flex: 1;
  min-width: 200px;
}

.nl-webinar-bar__sep {
  opacity: 0.5;
  margin: 0 4px;
}

.nl-webinar-bar__cta {
  color: var(--nl-green);
  font-weight: 600;
  white-space: nowrap;
}

.nl-webinar-bar__close {
  background: none;
  border: none;
  color: var(--nl-muted-3);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

/* Header */
.nl-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nl-site-header--scrolled {
  border-bottom-color: var(--nl-border);
  background: rgba(10, 15, 28, 0.94);
}

.nl-site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--nl-header-h);
}

.nl-site-header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nl-site-header__logo {
  max-height: 40px;
  width: auto;
}

.nl-site-header__wordmark {
  font-family: var(--nl-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--nl-text-bright);
}

.nl-site-header__wordmark span {
  color: var(--nl-green);
}

.nl-site-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nl-site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nl-site-nav__list > li {
  position: relative;
}

.nl-site-nav__list > li > a {
  display: block;
  color: var(--nl-muted);
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
}

.nl-site-nav__list > li > a:hover,
.nl-site-nav__list > li.current-menu-item > a {
  color: var(--nl-text-bright);
}

.nl-site-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #101a34;
  border: 1px solid var(--nl-border);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  margin: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 20;
}

.nl-site-nav__list > li:hover > .sub-menu,
.nl-site-nav__list > li:focus-within > .sub-menu {
  display: block;
}

.nl-site-nav__list .sub-menu a {
  display: block;
  color: var(--nl-muted);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.nl-site-nav__list .sub-menu a:hover {
  background: rgba(100, 188, 70, 0.08);
  color: var(--nl-green-2);
}

.nl-site-header__cta {
  flex-shrink: 0;
  padding: 11px 18px;
  font-size: 14px;
}

.nl-site-header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--nl-border);
  border-radius: 10px;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nl-site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--nl-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nl-mobile-nav {
  display: none;
  border-top: 1px solid var(--nl-border);
  background: var(--nl-bg-deep);
  padding: 16px 24px 28px;
}

.nl-mobile-nav__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.nl-mobile-nav__list a {
  display: block;
  color: var(--nl-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--nl-border);
  font-weight: 500;
}

.nl-mobile-nav__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 14px;
}

.nl-mobile-nav__cta {
  width: 100%;
}

@media (max-width: 960px) {
  .nl-site-nav,
  .nl-site-header__cta {
    display: none;
  }
  .nl-site-header__toggle {
    display: flex;
    margin-left: auto;
  }
  .nl-mobile-nav:not([hidden]) {
    display: block;
  }
}
/* Footer */
/* Footer */
.nl-site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--nl-border);
  background: #070b16;
  padding: 64px 0 32px;
}

.nl-site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.nl-site-footer__logo {
  max-height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.nl-site-footer__tagline {
  color: var(--nl-muted-3);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 320px;
  margin: 16px 0 0;
}

.nl-site-footer__heading {
  font-family: var(--nl-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--nl-muted-3);
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 500;
}

.nl-site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nl-site-footer__list a {
  color: var(--nl-muted);
  display: inline-block;
  padding: 6px 0;
  font-size: 14.5px;
}

.nl-site-footer__list a:hover {
  color: var(--nl-green-2);
}

.nl-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--nl-border);
  color: var(--nl-muted-4);
  font-size: 13px;
}

.nl-site-footer__bottom p {
  margin: 0;
}

.nl-site-footer__bottom a {
  color: var(--nl-muted-3);
}

@media (max-width: 800px) {
  .nl-site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .nl-site-footer__grid {
    grid-template-columns: 1fr;
  }
}
/* Shared components (insight/featured cards) */
.nl-featured-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: linear-gradient(180deg, rgba(18, 26, 48, 0.7), rgba(13, 20, 36, 0.45));
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  overflow: hidden;
  margin-bottom: 36px;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.nl-featured-card:hover {
  border-color: rgba(100, 188, 70, 0.35);
  transform: translateY(-3px);
  color: inherit;
}

.nl-featured-card__media {
  position: relative;
  min-height: 280px;
  background: #152140;
  overflow: hidden;
}

.nl-featured-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.nl-featured-card__media--placeholder {
  background: linear-gradient(135deg, rgba(100, 188, 70, 0.15), transparent 50%), linear-gradient(225deg, rgba(65, 91, 169, 0.2), #152140);
}

.nl-featured-card__body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nl-featured-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nl-featured-card__date {
  color: var(--nl-muted-3);
  font-size: 13px;
}

.nl-featured-card h2 {
  font-family: var(--nl-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  color: var(--nl-text-bright);
  margin: 14px 0 12px;
  line-height: 1.2;
}

.nl-featured-card p {
  color: var(--nl-muted);
  margin: 0 0 18px;
  line-height: 1.6;
}

.nl-featured-card__cta {
  font-weight: 600;
  color: var(--nl-green);
  font-size: 14.5px;
}

.nl-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nl-insight-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(18, 26, 48, 0.6), rgba(13, 20, 36, 0.4));
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  overflow: hidden;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.nl-insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 188, 70, 0.4);
  color: inherit;
}

.nl-insight-card__media {
  position: relative;
  aspect-ratio: 16/10;
  background: #152140;
  overflow: hidden;
}

.nl-insight-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.nl-insight-card__media--placeholder {
  background: linear-gradient(135deg, rgba(100, 188, 70, 0.15), transparent 50%), linear-gradient(225deg, rgba(65, 91, 169, 0.2), #152140);
}

.nl-insight-card__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.nl-insight-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nl-insight-card__date {
  color: var(--nl-muted-3);
  font-size: 12.5px;
}

.nl-insight-card h3 {
  font-family: var(--nl-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--nl-text-bright);
  margin: 0;
  line-height: 1.3;
}

.nl-insight-card p {
  color: var(--nl-muted-2);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .nl-featured-card {
    grid-template-columns: 1fr;
  }
  .nl-featured-card__body {
    padding: 24px;
  }
  .nl-insights-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .nl-insights-grid {
    grid-template-columns: 1fr;
  }
  .nl-container {
    width: min(100% - 32px, var(--nl-max));
  }
}
@keyframes nlFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nlGridPan {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 44px 44px;
  }
}
@keyframes nlPulse {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
/* Page templates: blog, single, prose */
.nl-page-title {
  font-family: var(--nl-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--nl-text-bright);
  margin: 48px 0 24px;
}

.nl-page-default-title {
  padding-top: 24px;
}

.nl-blog-hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--nl-border);
  background: radial-gradient(800px 400px at 80% 0%, rgba(100, 188, 70, 0.12), transparent 60%), var(--nl-bg);
}

.nl-blog-hero .nl-display {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 720px;
}

.nl-blog-feed {
  padding: 48px 0 80px;
}

.nl-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.nl-pagination a,
.nl-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--nl-border);
  color: var(--nl-muted);
  font-weight: 500;
  font-size: 14.5px;
  text-decoration: none;
}

.nl-pagination a:hover {
  color: var(--nl-green);
  border-color: rgba(100, 188, 70, 0.4);
}

.nl-pagination .current {
  color: var(--nl-green-ink);
  background: var(--nl-green);
  border-color: var(--nl-green);
}

.nl-single {
  padding: 56px 0 80px;
}

.nl-single__inner {
  max-width: 760px;
}

.nl-single__title {
  font-family: var(--nl-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--nl-text-brightest);
  margin: 16px 0 12px;
}

.nl-single__meta {
  color: var(--nl-muted-3);
  margin: 0 0 28px;
  font-size: 14.5px;
}

.nl-single__media {
  margin: 0 0 36px;
  border-radius: var(--nl-radius);
  overflow: hidden;
  border: 1px solid var(--nl-border);
}

.nl-single__media img {
  width: 100%;
}

.nl-prose,
.nl-main .entry-content,
.nl-content-panel__inner {
  color: var(--nl-muted);
  font-size: 17.5px;
  line-height: 1.7;
}

.nl-prose h2,
.nl-prose h3,
.nl-main h2:not([class]),
.nl-main h3:not([class]),
.nl-content-panel__inner h2,
.nl-content-panel__inner h3 {
  font-family: var(--nl-display);
  color: var(--nl-text-bright);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nl-prose a,
.nl-content-panel__inner a {
  color: var(--nl-green);
}

.nl-prose ul,
.nl-prose ol,
.nl-content-panel__inner ul,
.nl-content-panel__inner ol {
  padding-left: 1.25em;
}

.nl-prose table,
.nl-main table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin: 24px 0;
}

.nl-prose th,
.nl-prose td,
.nl-main th,
.nl-main td {
  border: 1px solid var(--nl-border);
  padding: 12px 14px;
  text-align: left;
}

.nl-prose th,
.nl-main th {
  background: rgba(18, 26, 48, 0.7);
  color: var(--nl-text-bright);
  font-weight: 600;
}

@keyframes nlFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nlGridPan {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 44px 44px;
  }
}
@keyframes nlPulse {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
.nl-prose,
.nl-main .entry-content,
.nl-content-panel__inner {
  color: var(--nl-muted);
  font-size: 17.5px;
  line-height: 1.7;
}

.nl-prose h2,
.nl-prose h3,
.nl-main h2:not([class]),
.nl-main h3:not([class]),
.nl-content-panel__inner h2,
.nl-content-panel__inner h3 {
  font-family: var(--nl-display);
  color: var(--nl-text-bright);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nl-prose a,
.nl-content-panel__inner a {
  color: var(--nl-green);
}

.nl-prose ul,
.nl-prose ol,
.nl-content-panel__inner ul,
.nl-content-panel__inner ol {
  padding-left: 1.25em;
}

.nl-prose table,
.nl-main table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin: 24px 0;
}

.nl-prose th,
.nl-prose td,
.nl-main th,
.nl-main td {
  border: 1px solid var(--nl-border);
  padding: 12px 14px;
  text-align: left;
}

.nl-prose th,
.nl-main th {
  background: rgba(18, 26, 48, 0.7);
  color: var(--nl-text-bright);
  font-weight: 600;
}

.nl-main .wp-block-buttons .wp-block-button__link,
.nl-main .wp-block-button__link {
  background: var(--nl-green);
  color: var(--nl-green-ink);
  border-radius: var(--nl-radius-sm);
  font-weight: 600;
}

.nl-main .wp-block-quote {
  border-left: 3px solid var(--nl-green);
  margin: 28px 0;
  padding: 8px 0 8px 20px;
  color: var(--nl-text-bright);
}

.nl-main .wp-block-group {
  margin-block: 24px;
}

.nl-main .alignwide {
  max-width: var(--nl-max);
  margin-left: auto;
  margin-right: auto;
}

.nl-main .alignfull {
  width: 100%;
  max-width: none;
}

@keyframes nlFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nlGridPan {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 44px 44px;
  }
}
@keyframes nlPulse {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
.nl-container--policy,
.is-style-nl-policy-narrow > .wp-block-group__inner-container,
.is-style-nl-policy-narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* TOC */
.is-style-nl-policy-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px auto 0;
  max-width: 900px;
  padding: 0 24px;
}

.is-style-nl-policy-toc .wp-block-button {
  margin: 0;
}

.is-style-nl-policy-toc-link .wp-block-button__link,
.wp-block-button.is-style-nl-policy-toc-link .wp-block-button__link {
  font-family: var(--nl-mono, "IBM Plex Mono", monospace) !important;
  font-size: 11.5px !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em;
  color: #c0c9de !important;
  background: transparent !important;
  border: 1px solid rgba(118, 140, 196, 0.2) !important;
  border-radius: 999px !important;
  padding: 7px 14px !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.is-style-nl-policy-toc-link .wp-block-button__link:hover,
.wp-block-button.is-style-nl-policy-toc-link .wp-block-button__link:hover {
  border-color: rgba(100, 188, 70, 0.5) !important;
  color: #8fd873 !important;
}

/* Section spacing */
.is-style-nl-policy-section {
  max-width: 900px;
  margin: 64px auto 0;
  padding: 0 24px;
}

.is-style-nl-policy-section.is-style-nl-policy-section--spaced {
  margin-top: 76px;
}

/* Subheadings */
.is-style-nl-policy-h3,
h3.is-style-nl-policy-h3 {
  font-family: var(--nl-display, "Sora", sans-serif) !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  margin: 0 0 16px !important;
  color: #c0c9de !important;
}

.is-style-nl-policy-copy,
p.is-style-nl-policy-copy {
  font-size: 15.5px !important;
  line-height: 1.75 !important;
  color: #a6b2cc !important;
  margin: 0 0 28px !important;
}

.is-style-nl-policy-copy a {
  font-weight: 600;
  color: var(--nl-green, #64bc46);
}

.is-style-nl-policy-note,
p.is-style-nl-policy-note {
  font-size: 13px !important;
  color: #737f9c !important;
  font-family: var(--nl-mono, "IBM Plex Mono", monospace) !important;
  margin: 16px 0 0 !important;
}

/* Cards */
.is-style-nl-policy-card,
.is-style-nl-policy-card-blue,
.is-style-nl-policy-card-accent {
  border: 1px solid rgba(118, 140, 196, 0.14);
  border-radius: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(18, 26, 48, 0.5), transparent);
  height: 100%;
  box-sizing: border-box;
}

.is-style-nl-policy-card-blue {
  border-color: rgba(65, 91, 169, 0.25);
}

.is-style-nl-policy-card-accent {
  border-color: rgba(100, 188, 70, 0.24);
  margin-bottom: 24px;
}

.is-style-nl-policy-card .nl-eyebrow,
.is-style-nl-policy-card-blue .nl-eyebrow,
.is-style-nl-policy-card .is-style-nl-policy-label,
.is-style-nl-policy-card-blue .is-style-nl-policy-label,
.is-style-nl-policy-card > p:first-child strong,
.is-style-nl-policy-card-blue > p:first-child strong {
  font-family: var(--nl-mono, "IBM Plex Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--nl-green, #64bc46);
  font-weight: 400;
  display: block;
  margin-bottom: 14px;
}

.is-style-nl-policy-card-blue > p:first-child strong,
.is-style-nl-policy-card-blue .nl-eyebrow {
  color: #7f97d6;
}

/* Lists inside policy */
.is-style-nl-policy-list,
ul.is-style-nl-policy-list {
  margin: 0 !important;
  padding: 0 0 0 18px !important;
  color: #a6b2cc;
  font-size: 14px;
  line-height: 1.85;
}

.is-style-nl-policy-list-columns,
ul.is-style-nl-policy-list-columns {
  margin: 0 !important;
  padding: 0 0 0 18px !important;
  color: #a6b2cc;
  font-size: 14.5px;
  line-height: 1.9;
  columns: 2;
  column-gap: 32px;
}

.is-style-nl-policy-list-columns li {
  break-inside: avoid;
}

/* Retention + rights cells */
.is-style-nl-policy-retention {
  border: 1px solid rgba(100, 188, 70, 0.2);
  border-radius: 12px;
  padding: 18px 16px;
  background: rgba(13, 20, 36, 0.5);
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

.is-style-nl-policy-retention .nl-eyebrow,
.is-style-nl-policy-retention > p:first-child {
  font-family: var(--nl-mono, "IBM Plex Mono", monospace);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--nl-green, #64bc46);
  margin: 0 0 8px;
}

.is-style-nl-policy-retention > p:last-child,
.is-style-nl-policy-retention h4 {
  font-family: var(--nl-display, "Sora", sans-serif);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--nl-text-bright, #eef2fb);
  margin: 0;
}

.is-style-nl-policy-right {
  border: 1px solid rgba(118, 140, 196, 0.14);
  border-radius: 12px;
  padding: 18px;
  background: rgba(13, 20, 36, 0.5);
  height: 100%;
  box-sizing: border-box;
}

.is-style-nl-policy-right h4,
.is-style-nl-policy-right > p:first-child strong {
  font-family: var(--nl-display, "Sora", sans-serif);
  font-weight: 600;
  font-size: 14px;
  color: var(--nl-text-bright, #eef2fb);
  display: block;
  margin: 0 0 6px;
}

.is-style-nl-policy-right > p:last-child {
  font-size: 12.5px;
  line-height: 1.55;
  color: #96a3bf;
  margin: 0;
}

.is-style-nl-policy-grid {
  margin-bottom: 36px;
}

.is-style-nl-policy-grid > .wp-block-column {
  margin-bottom: 0;
}

/* Section header — numbered policy variant */
/* Policy numbered headers — keep in sync with blocks/section-header/style.scss */
.nl-section-header--policy {
  padding: 0;
  max-width: none;
  margin: 0 0 26px;
}

.nl-section-header--policy .nl-section-header__inner.nl-container,
.nl-section-header--policy .nl-section-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px 16px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
}

.nl-section-header--policy .nl-section-header__number {
  font-family: var(--nl-display, "Sora", sans-serif);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: rgba(100, 188, 70, 0.35);
  display: block;
  flex: 0 0 auto;
}

.nl-section-header--policy.nl-section-header--tone-blue .nl-section-header__number {
  color: rgba(65, 91, 169, 0.4);
}

.nl-section-header--policy .nl-section-header__title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1;
  margin: 0;
  padding: 0;
  max-width: none;
}

.nl-section-header--policy .nl-eyebrow,
.nl-section-header--policy .nl-section-header__sub {
  display: none;
}

/* Page hero callout + updated chip */
.nl-page-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.nl-page-hero__updated {
  font-family: var(--nl-mono, "IBM Plex Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #737f9c;
  border: 1px solid rgba(118, 140, 196, 0.18);
  border-radius: 999px;
  padding: 4px 11px;
}

.nl-page-hero__meta .nl-eyebrow {
  margin-bottom: 0;
}

.nl-page-hero__callout {
  border-left: 3px solid #f3bb1a;
  border-radius: 2px;
  padding: 14px 0 14px 22px;
  max-width: 660px;
  margin-top: 28px;
}

.nl-page-hero__callout p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--nl-text-bright, #eef2fb);
  margin: 0;
}

.nl-policy-email {
  font-family: var(--nl-mono, "IBM Plex Mono", monospace);
  font-weight: 600;
  font-size: 15px;
  color: var(--nl-green, #64bc46);
}

@media (max-width: 720px) {
  .is-style-nl-policy-list-columns {
    columns: 1;
  }
  .nl-section-header--policy .nl-section-header__number {
    font-size: 36px;
  }
}
.nl-container--course {
  max-width: 900px;
}

.nl-course-landing .nl-page-hero__inner {
  max-width: 900px;
}

.nl-course-landing .nl-page-hero__actions {
  margin-top: 30px;
}

.nl-course-landing__highlights {
  padding: 44px 0 0;
}

.nl-course-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 26px 30px;
  border: 1px solid rgba(118, 140, 196, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 26, 48, 0.5), transparent);
}

.nl-course-highlights__item {
  flex: 1;
  min-width: 130px;
}

.nl-course-highlights__value {
  font-family: var(--nl-display, "Sora", sans-serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--nl-text-bright, #eef2fb);
}

.nl-course-highlights__label {
  font-size: 12px;
  color: #737f9c;
  font-family: var(--nl-mono, "IBM Plex Mono", monospace);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.nl-course-landing__learn {
  padding: 64px 0 0;
}

.nl-course-landing__details {
  padding: 76px 0 0;
}

.nl-course-landing__different {
  padding: 76px 0 0;
}

.nl-course-landing__cta {
  padding: 52px 0 92px;
}

.nl-course-landing__heading {
  font-family: var(--nl-display, "Sora", sans-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--nl-text-bright, #eef2fb);
}

.nl-course-landing__intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--nl-muted, #a6b2cc);
  margin: 0 0 32px;
  max-width: 620px;
}

.nl-course-modules {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nl-course-module {
  display: flex;
  gap: 24px;
  border: 1px solid rgba(118, 140, 196, 0.14);
  border-radius: 16px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(18, 26, 48, 0.5), transparent);
}

.nl-course-module__num {
  font-family: var(--nl-display, "Sora", sans-serif);
  font-weight: 800;
  font-size: 34px;
  color: rgba(100, 188, 70, 0.35);
  line-height: 1;
  flex-shrink: 0;
}

.nl-course-module__title {
  font-family: var(--nl-display, "Sora", sans-serif);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--nl-text-bright, #eef2fb);
}

.nl-course-module__body {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--nl-muted, #a6b2cc);
  margin: 0;
}

.nl-course-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.nl-course-details__item {
  border: 1px solid rgba(65, 91, 169, 0.25);
  border-radius: 14px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(18, 26, 48, 0.5), transparent);
}

.nl-course-details__label {
  font-family: var(--nl-mono, "IBM Plex Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #7f97d6;
  margin-bottom: 10px;
}

.nl-course-details__value {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--nl-text-bright, #eef2fb);
}

.nl-course-landing__prose {
  max-width: 720px;
}

.nl-course-landing__prose p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--nl-muted, #a6b2cc);
  margin: 0 0 16px;
}

.nl-course-cta {
  border: 1px solid rgba(100, 188, 70, 0.28);
  border-radius: 18px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 32px;
  align-items: center;
  background: radial-gradient(500px 300px at 80% 0%, rgba(100, 188, 70, 0.1), transparent), linear-gradient(180deg, rgba(18, 26, 48, 0.4), transparent);
}

.nl-course-cta h3 {
  font-family: var(--nl-display, "Sora", sans-serif);
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 12px;
  color: var(--nl-text-bright, #eef2fb);
}

.nl-course-cta p {
  color: var(--nl-muted, #a6b2cc);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.nl-course-cta .nl-eyebrow {
  margin-bottom: 10px;
}

@media (max-width: 720px) {
  .nl-course-details {
    grid-template-columns: 1fr;
  }
  .nl-course-module {
    flex-direction: column;
    gap: 12px;
    padding: 22px;
  }
  .nl-course-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
}
.nl-container--book {
  max-width: 900px;
}

.nl-book-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(118, 140, 196, 0.1);
}

.nl-book-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 420px at 78% 0%, rgba(100, 188, 70, 0.14), transparent 60%);
  pointer-events: none;
}

.nl-book-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 56px;
}

.nl-book-hero__cover {
  width: 220px;
}

.nl-book-hero__cover img,
.nl-book-cover-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 220/314;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
}

.nl-book-cover-placeholder {
  display: grid;
  place-items: center;
  border: 1px solid rgba(118, 140, 196, 0.24);
  background: linear-gradient(145deg, #18284c, #0c1427);
  color: #7f97d6;
  font: 12px var(--nl-mono, "IBM Plex Mono", monospace);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nl-book-hero__copy .nl-eyebrow {
  margin-bottom: 14px;
}

.nl-book-hero__copy h1 {
  max-width: 600px;
  margin: 0 0 18px;
  color: var(--nl-text-bright, #f4f7ff);
  font-family: var(--nl-display, "Sora", sans-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.nl-book-hero__copy p {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--nl-muted, #a6b2cc);
  font-size: 18px;
  line-height: 1.65;
}

.nl-book-landing__overview,
.nl-book-landing__learn,
.nl-book-landing__audience {
  padding-top: 64px;
}

.nl-book-landing__cta {
  padding: 52px 0 92px;
}

.nl-book-landing h2 {
  margin: 0 0 22px;
  color: var(--nl-text-bright, #eef2fb);
  font-family: var(--nl-display, "Sora", sans-serif);
  font-size: clamp(1.4rem, 3vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nl-book-landing__prose {
  max-width: 760px;
}

.nl-book-landing__prose p {
  margin: 0 0 18px;
  color: var(--nl-muted, #a6b2cc);
  font-size: 15.5px;
  line-height: 1.8;
}

.nl-book-learn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.nl-book-learn__item {
  padding: 22px 24px;
  border: 1px solid rgba(118, 140, 196, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 26, 48, 0.5), transparent);
}

.nl-book-learn__item p {
  margin: 0;
  color: var(--nl-muted, #a6b2cc);
  font-size: 14.5px;
  line-height: 1.7;
}

.nl-book-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nl-book-audience span {
  padding: 8px 16px;
  border: 1px solid rgba(118, 140, 196, 0.2);
  border-radius: 999px;
  color: #c0c9de;
  font-family: var(--nl-mono, "IBM Plex Mono", monospace);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.nl-book-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  border: 1px solid rgba(100, 188, 70, 0.28);
  border-radius: 18px;
  background: radial-gradient(500px 300px at 80% 0%, rgba(100, 188, 70, 0.1), transparent);
}

.nl-book-cta h3 {
  margin: 0 0 10px;
  color: var(--nl-text-bright, #eef2fb);
  font-family: var(--nl-display, "Sora", sans-serif);
  font-size: 24px;
  font-weight: 700;
}

.nl-book-cta p {
  max-width: 440px;
  margin: 0;
  color: var(--nl-muted, #a6b2cc);
  font-size: 15px;
  line-height: 1.65;
}

.nl-book-cta .nl-btn {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .nl-book-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 56px;
  }
  .nl-book-hero__cover {
    width: min(190px, 58vw);
  }
  .nl-book-learn {
    grid-template-columns: 1fr;
  }
  .nl-book-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 22px;
  }
}
/* Motion */
/* Motion */
@keyframes nlFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nlGridPan {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 44px 44px;
  }
}
@keyframes nlPulse {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}