:root {
  color-scheme: light;
  --ink: #111827;
  --ink-strong: #050816;
  --paper: #fffdf7;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.14);
  --line-strong: rgba(17, 24, 39, 0.28);
  --coral: #ff4d6d;
  --lemon: #ffd166;
  --green: #06d6a0;
  --blue: #118ab2;
  --violet: #7c3aed;
  --orange: #f97316;
  --cyan: #22d3ee;
  --max: 1160px;
  --nav-height: 64px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #070b18;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

main {
  position: relative;
  width: 100%;
}

.nl-section {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-height) + 64px) 24px 72px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.nl-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--section-bg, var(--paper));
}

.nl-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.34;
  pointer-events: none;
}

.nl-section-inner {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.nl-section-copy {
  position: relative;
  z-index: 3;
  max-width: 740px;
}

.nl-problem-section {
  --section-bg: #ffd166;
  --heading: #211400;
  --body: rgba(33, 20, 0, 0.78);
  isolation: auto;
  padding-top: 88px;
  padding-bottom: 88px;
}

.nl-problem-section::before {
  z-index: 0;
}

.nl-problem-section::after {
  display: none;
}

.nl-problem-section .nl-section-inner {
  gap: 52px;
}

.nl-problem-copy {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
}

.nl-section .nl-problem-copy h2 {
  max-width: 100%;
  margin: 0 0 28px;
  color: var(--heading);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nl-problem-body {
  width: min(75%, 820px);
  color: var(--body);
}

.nl-problem-body p {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 1.58;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.nl-problem-keyline {
  width: min(78%, 900px);
  margin: 34px 0 0;
  padding: 18px 22px 18px 24px;
  color: var(--heading);
  background: rgba(255, 209, 102, 0.62);
  border-left: 5px solid var(--coral);
  font-size: 24px;
  line-height: 1.38;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.nl-section .nl-problem-copy h2,
.nl-problem-body p {
  width: fit-content;
  padding: 4px 8px;
  background: rgba(255, 209, 102, 0.62);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  backdrop-filter: blur(10px);
}

.nl-problem-image {
  position: relative;
  z-index: 1;
  width: min(70%, 1120px);
  margin: 0 auto;
  opacity: var(--problem-image-opacity, 0);
}

.nl-problem-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nl-promise-section {
  --section-bg: #ff4d6d;
  --heading: #21020c;
  --body: rgba(33, 2, 12, 0.78);
  padding-top: 88px;
  padding-bottom: 88px;
}

.nl-promise-section::after {
  opacity: 0.22;
}

.nl-promise-section .nl-section-inner {
  gap: 36px;
}

.nl-promise-copy {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
}

.nl-section .nl-promise-copy h2 {
  max-width: 100%;
  margin: 0;
  color: var(--heading);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nl-comparison-shell {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
}

.nl-scroll-hint {
  display: none;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 8px 12px;
  color: #fffdf7;
  background: #21020c;
  border: 1px solid rgba(255, 253, 247, 0.18);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.nl-comparison-shell.is-scrollable .nl-scroll-hint {
  display: flex;
  align-items: center;
}

.nl-scroll-arrow {
  display: inline-block;
  margin-left: 8px;
  animation: nl-scroll-nudge 1100ms ease-in-out infinite;
}

.nl-comparison-wrap {
  width: fit-content;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: none;
  overscroll-behavior-inline: none;
  -webkit-overflow-scrolling: auto;
  border: 1px solid rgba(33, 2, 12, 0.18);
  background: #fffdf7;
  box-shadow: 0 24px 70px rgba(33, 2, 12, 0.22);
  scrollbar-color: #21020c rgba(255, 253, 247, 0.65);
  scrollbar-width: thin;
}

.nl-comparison-wrap::-webkit-scrollbar {
  height: 10px;
}

.nl-comparison-wrap::-webkit-scrollbar-track {
  background: rgba(255, 253, 247, 0.65);
}

.nl-comparison-wrap::-webkit-scrollbar-thumb {
  background: #21020c;
}

.nl-comparison-wrap:focus-visible {
  outline: 3px solid rgba(255, 77, 109, 0.5);
  outline-offset: 4px;
}

.nl-comparison-table {
  --comparison-first-column: 230px;
  --comparison-column: 126px;
  --comparison-last-column: 150px;
  width: calc(var(--comparison-first-column) + (6 * var(--comparison-column)) + var(--comparison-last-column));
  table-layout: fixed;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  color: #21020c;
}

.nl-comparison-table th,
.nl-comparison-table td {
  min-width: var(--comparison-column);
  width: var(--comparison-column);
  padding: 18px 14px;
  border-right: 1px solid rgba(33, 2, 12, 0.12);
  border-bottom: 1px solid rgba(33, 2, 12, 0.12);
  text-align: center;
  vertical-align: middle;
}

.nl-comparison-col-need,
.nl-comparison-table th:first-child,
.nl-comparison-table td:first-child {
  min-width: var(--comparison-first-column);
  width: var(--comparison-first-column);
}

.nl-comparison-col-standard {
  min-width: var(--comparison-column);
  width: var(--comparison-column);
}

.nl-comparison-col-newletters,
.nl-comparison-table th:last-child,
.nl-comparison-table td:last-child {
  min-width: var(--comparison-last-column);
  width: var(--comparison-last-column);
}

.nl-comparison-table thead th {
  color: #21020c;
  background: #ffd166;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.nl-comparison-table tbody th {
  color: #21020c;
  background: #fff8df;
  text-align: left;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 760;
}

.nl-comparison-table th:first-child,
.nl-comparison-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff8df;
  box-shadow: 12px 0 18px rgba(33, 2, 12, 0.1);
  touch-action: pan-y;
}

.nl-comparison-table thead th:first-child {
  background: #ffd166;
}

.nl-comparison-table th:last-child,
.nl-comparison-table td:last-child {
  position: sticky;
  right: 0;
  z-index: 2;
  border-right: 0;
  background: #21020c;
  box-shadow: -12px 0 18px rgba(33, 2, 12, 0.1);
  touch-action: pan-y;
}

.nl-comparison-table thead th:first-child,
.nl-comparison-table thead th:last-child {
  z-index: 4;
}

.nl-comparison-table thead th:last-child,
.nl-comparison-table tbody td:last-child {
  color: #fffdf7;
}

.nl-table-mark {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.nl-table-yes {
  color: #062218;
  background: var(--green);
}

.nl-table-no {
  color: #fffdf7;
  background: var(--coral);
}

.nl-promise-conclusion {
  position: relative;
  z-index: 3;
  width: min(78%, 900px);
  margin: 0;
  padding: 18px 22px 18px 24px;
  color: #21020c;
  background: rgba(255, 253, 247, 0.38);
  border-left: 5px solid var(--lemon);
  font-size: 24px;
  line-height: 1.38;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.nl-how-it-works-copy {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
}

.nl-section .nl-how-it-works-copy h2 {
  max-width: 100%;
  margin: 0;
  color: var(--heading);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nl-who-is-it-for-copy {
  width: min(100%, var(--max));
}

.nl-section .nl-who-is-it-for-copy h2 {
  max-width: 100%;
  margin: 0;
  color: var(--heading);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nl-who-is-it-for-section {
  padding-bottom: 40px;
}

.nl-who-is-it-for-section::before {
  background-color: var(--section-bg);
  background-image: url("/assets/who-is-it-for-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.nl-who-is-it-for-section .nl-section-inner {
  gap: 42px;
}

.nl-bubble-cloud {
  position: relative;
  left: 50%;
  width: 100vw;
  height: clamp(520px, 58vw, 720px);
  margin-left: -50vw;
  overflow: hidden;
}

.nl-audience-bubble {
  --bubble-parallax-x: 0px;
  --bubble-parallax-y: 0px;
  position: absolute;
  left: var(--bubble-x);
  top: var(--bubble-y);
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 18px 28px;
  color: #211400;
  text-align: center;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 650;
  border: 1px solid rgba(33, 20, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(93, 62, 0, 0.1);
  transform: translate3d(
    calc(-50% + var(--bubble-parallax-x)),
    calc(-50% + var(--bubble-parallax-y)),
    0
  );
  will-change: transform;
}

.nl-audience-bubble span {
  max-width: 16ch;
}

.nl-audience-bubble-large {
  width: clamp(220px, 22vw, 330px);
  min-height: 112px;
  padding: 24px 34px;
  font-size: clamp(20px, 1.7vw, 26px);
}

.nl-audience-bubble-medium {
  width: clamp(190px, 17vw, 250px);
  min-height: 88px;
  font-size: clamp(17px, 1.35vw, 21px);
}

.nl-audience-bubble-small {
  width: clamp(155px, 14vw, 205px);
  min-height: 66px;
  padding: 16px 22px;
  font-size: 16px;
}

.nl-audience-bubble-paper {
  background: #fffdf7;
}

.nl-audience-bubble-mint {
  background: #e9f8ed;
}

.nl-audience-bubble-rose {
  background: #fff0ee;
}

.nl-audience-bubble-sky {
  background: #eaf5fa;
}

.nl-audience-bubble-lilac {
  background: #f3efff;
}

.nl-audience-bubble-peach {
  background: #fff3df;
}

.nl-audience-bubble.has-tail::after {
  content: "";
  position: absolute;
  left: 24%;
  bottom: -8px;
  width: 22px;
  height: 18px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 30% 100%);
}

.nl-features-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.nl-features-section .nl-section-inner {
  width: min(100%, 1380px);
  gap: 44px;
}

.nl-features-intro {
  max-width: 900px;
}

.nl-section .nl-features-intro h2 {
  max-width: 880px;
  margin: 0;
  color: var(--heading);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nl-features-intro > p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--body);
  font-size: 30px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nl-feature-poster-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 32px);
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 253, 247, 0.72), rgba(255, 253, 247, 0.72)),
    repeating-linear-gradient(0deg, rgba(64, 45, 22, 0.025) 0 1px, transparent 1px 5px),
    #d9b98a;
  border: 1px solid rgba(55, 39, 18, 0.2);
  border-radius: 8px;
  box-shadow:
    inset 0 0 36px rgba(64, 45, 22, 0.12),
    0 28px 70px rgba(0, 37, 27, 0.18);
}

.nl-feature-group {
  --feature-paper: #fff4b8;
  --feature-paper-deep: #f1dc76;
  --feature-ink: #382d05;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  min-width: 0;
  padding: 3px;
}

.nl-feature-group-2 {
  --feature-paper: #e5f3ff;
  --feature-paper-deep: #bfddf3;
  --feature-ink: #12334a;
}

.nl-feature-group-3 {
  --feature-paper: #dcf6e9;
  --feature-paper-deep: #addfc8;
  --feature-ink: #123c2a;
}

.nl-feature-group-4 {
  --feature-paper: #eee5ff;
  --feature-paper-deep: #d1bdf1;
  --feature-ink: #352451;
}

.nl-feature-group-title {
  position: relative;
  min-height: 92px;
  margin: 0;
  padding: 28px 20px 20px;
  color: var(--feature-ink);
  background: var(--feature-paper-deep);
  font-size: clamp(30px, 2.55vw, 40px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  border: 1px solid rgba(30, 30, 20, 0.08);
  box-shadow: 0 10px 22px rgba(64, 45, 22, 0.12);
  transform: rotate(-0.45deg);
}

.nl-feature-group:nth-child(even) .nl-feature-group-title {
  transform: rotate(0.45deg);
}

.nl-feature-pin {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 11px;
  height: 11px;
  background: #f97316;
  border: 2px solid rgba(72, 29, 0, 0.25);
  border-radius: 50%;
  box-shadow: 0 3px 4px rgba(72, 29, 0, 0.2);
  transform: translateX(-50%);
}

.nl-feature-note-list {
  display: grid;
  gap: 14px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nl-feature-note {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 22px 16px 17px;
  color: var(--feature-ink);
  background: var(--feature-paper);
  font-family: "Segoe Print", "Bradley Hand", "Chalkboard SE", "Comic Sans MS", cursive;
  font-size: 29px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  border: 1px solid rgba(30, 30, 20, 0.07);
  box-shadow: 0 9px 18px rgba(64, 45, 22, 0.1);
  transform: rotate(-0.55deg);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.nl-feature-note:nth-child(even) {
  transform: translateX(3px) rotate(0.65deg);
}

.nl-feature-note:nth-child(3n) {
  transform: translateX(-3px) rotate(-0.25deg);
}

.nl-feature-note:hover {
  z-index: 2;
  box-shadow: 0 15px 28px rgba(64, 45, 22, 0.16);
  transform: translateY(-3px) rotate(0deg);
}

.nl-feature-tape {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 48px;
  height: 15px;
  background: rgba(255, 253, 235, 0.66);
  border-inline: 1px solid rgba(95, 75, 40, 0.06);
  transform: translateX(-50%) rotate(-2deg);
}

.nl-feature-note:nth-child(even) .nl-feature-tape {
  transform: translateX(-50%) rotate(2deg);
}

.nl-feature-caption {
  min-height: 92px;
  margin: 0;
  padding: 18px 17px;
  color: var(--feature-ink);
  background: rgba(255, 253, 247, 0.74);
  border-top: 3px solid var(--feature-paper-deep);
  font-size: 23px;
  line-height: 1.45;
  font-weight: 650;
  font-style: italic;
  box-shadow: 0 8px 16px rgba(64, 45, 22, 0.08);
}

.nl-demo-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.nl-demo-section .nl-section-inner {
  width: min(100%, 1280px);
  gap: 34px;
}

.nl-demo-intro {
  max-width: 900px;
}

.nl-section .nl-demo-intro h2 {
  max-width: 880px;
  margin: 0;
  color: var(--heading);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nl-demo-intro > p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--body);
  font-size: 30px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nl-demo-tabs-shell {
  position: relative;
  z-index: 4;
  max-width: 100%;
  margin-bottom: -42px;
  padding-left: 14px;
  overflow: visible;
}

.nl-demo-tabs {
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: 0;
  align-items: flex-end;
  padding: 14px 10px 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.nl-demo-tabs::-webkit-scrollbar {
  display: none;
}

.nl-demo-tab {
  position: relative;
  flex: 0 0 auto;
  min-height: 52px;
  margin-left: -4px;
  padding: 4px 21px 0;
  color: #4d3564;
  background: #ddd0f2;
  border: 1px solid rgba(49, 17, 92, 0.2);
  border-bottom-color: rgba(49, 17, 92, 0.14);
  border-radius: 9px 9px 3px 3px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow:
    0 -3px 10px rgba(35, 8, 70, 0.08),
    inset 0 -5px 8px rgba(73, 43, 105, 0.06);
  transform: translateY(7px);
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease),
    box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}

.nl-demo-tab:first-child {
  margin-left: 0;
}

.nl-demo-tab:nth-child(2n) {
  background: #e8ddf8;
}

.nl-demo-tab:hover {
  z-index: 2;
  color: #31115c;
  background: #f1eafb;
  transform: translateY(3px);
}

.nl-demo-tab[aria-selected="true"] {
  z-index: 3;
  min-height: 58px;
  color: #31115c;
  background: #fffdf7;
  border-color: rgba(49, 17, 92, 0.24);
  border-bottom-color: #fffdf7;
  box-shadow:
    0 -8px 22px rgba(35, 8, 70, 0.2),
    0 4px 0 #fffdf7;
  transform: translateY(1px);
}

.nl-demo-tab:focus-visible {
  outline: 3px solid var(--lemon);
  outline-offset: 2px;
}

.nl-demo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
  gap: 16px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.nl-demo-stage.is-switching {
  animation: nl-demo-switch 260ms var(--ease);
}

.nl-demo-preview-panel {
  min-height: 620px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(64, 32, 92, 0.1);
  border-radius: 8px;
}

.nl-demo-preview-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  background: #ffffff;
  border: 0;
  opacity: 0;
  transition: opacity 220ms var(--ease);
}

.nl-demo-preview-iframe.is-loaded {
  opacity: 1;
}

.nl-demo-qr-image.is-missing {
  display: none;
}

.nl-demo-info-card {
  display: grid;
  align-content: space-between;
  gap: 32px;
  padding: clamp(24px, 3vw, 36px);
  color: #241536;
  background: #fffdf7;
  border: 1px solid rgba(64, 32, 92, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(39, 18, 60, 0.16);
}

.nl-demo-info-cover {
  width: min(100%, 280px);
  aspect-ratio: 3 / 4;
  margin: 0 auto 28px;
  overflow: hidden;
  background: #eee8f5;
  border: 1px solid rgba(36, 21, 54, 0.12);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(39, 18, 60, 0.14);
}

.nl-demo-info-cover-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nl-demo-info-cover-image.is-missing {
  display: none;
}

.nl-demo-info-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.nl-demo-info-copy > p:last-child {
  margin: 0;
  color: #5e526a;
  font-size: 17px;
  line-height: 1.55;
}

.nl-demo-qr-wrap {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.nl-demo-qr-frame {
  position: relative;
  width: 75%;
  max-width: 260px;
  aspect-ratio: 1;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(36, 21, 54, 0.12);
  border-radius: 6px;
}

.nl-demo-qr-image {
  position: absolute;
  inset: 16px;
  z-index: 2;
  display: block;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  background: #ffffff;
}

.nl-demo-qr-fallback {
  position: absolute;
  inset: 16px;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, #241536 0 8px, transparent 8px 15px),
    repeating-linear-gradient(0deg, rgba(36, 21, 54, 0.7) 0 7px, transparent 7px 14px);
  opacity: 0.82;
}

.nl-demo-qr-fallback span {
  position: absolute;
  width: 28%;
  aspect-ratio: 1;
  background: #ffffff;
  border: 8px solid #241536;
  box-shadow: inset 0 0 0 6px #ffffff, inset 0 0 0 12px #241536;
}

.nl-demo-qr-fallback span:nth-child(1) {
  top: 0;
  left: 0;
}

.nl-demo-qr-fallback span:nth-child(2) {
  top: 0;
  right: 0;
}

.nl-demo-qr-fallback span:nth-child(3) {
  bottom: 0;
  left: 0;
}

.nl-demo-qr-wrap > strong {
  font-size: 15px;
}

@keyframes nl-demo-switch {
  from {
    opacity: 0.72;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nl-closing-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.nl-closing-section .nl-section-inner {
  width: min(100%, 1280px);
}

.nl-closing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
}

.nl-closing-message {
  position: relative;
  z-index: 2;
  align-self: start;
  padding: clamp(32px, 5vw, 72px);
  color: #231000;
  background: #fffdf7;
  border: 1px solid rgba(35, 16, 0, 0.12);
  border-radius: 8px;
  box-shadow:
    16px 18px 0 rgba(35, 16, 0, 0.14),
    0 28px 70px rgba(90, 36, 0, 0.18);
  transform: rotate(-0.65deg);
}

.nl-closing-message .nl-kicker {
  --badge-bg: #231000;
  --badge-ink: #fffdf7;
  --badge-line: #231000;
}

.nl-section .nl-closing-message h2 {
  max-width: 880px;
  margin: 0;
  color: #231000;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nl-closing-body {
  max-width: 680px;
  margin-top: 30px;
  color: rgba(35, 16, 0, 0.76);
}

.nl-closing-body p {
  margin: 0 0 18px;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nl-closing-body p:last-child {
  margin-bottom: 0;
}

.nl-closing-form-panel {
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(35, 16, 0, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(90, 36, 0, 0.18);
}

.nl-interest-form {
  display: grid;
  gap: 24px;
}

.nl-interest-form h3 {
  margin: 0 0 6px;
  color: #231000;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.nl-form-field {
  display: grid;
  gap: 9px;
}

.nl-form-field label {
  color: #231000;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.nl-form-field label span {
  display: block;
  margin-top: 3px;
  color: rgba(35, 16, 0, 0.6);
  font-size: 13px;
  font-weight: 600;
}

.nl-form-field input,
.nl-form-field textarea {
  width: 100%;
  padding: 15px 16px;
  color: #231000;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  background: #fffdf7;
  border: 1px solid rgba(35, 16, 0, 0.28);
  border-radius: 6px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.nl-form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.nl-form-field input::placeholder,
.nl-form-field textarea::placeholder {
  color: rgba(35, 16, 0, 0.48);
}

.nl-form-field input:focus,
.nl-form-field textarea:focus {
  border-color: #231000;
  outline: 3px solid rgba(249, 115, 22, 0.25);
  outline-offset: 1px;
}

.nl-form-field input.is-invalid,
.nl-form-field textarea.is-invalid {
  border-color: #a61b1b;
}

.nl-form-error {
  margin: -2px 0 0;
  color: #8f1515;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.nl-form-submit-error {
  max-width: 560px;
  margin: -8px 0 0;
  color: #8f1515;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.nl-form-submit-status {
  max-width: 560px;
  margin: -8px 0 0;
  color: rgba(35, 16, 0, 0.72);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.nl-interest-submit {
  justify-self: start;
  margin-top: 4px;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.nl-interest-submit.nl-button:disabled,
.nl-interest-submit.nl-button:disabled:hover,
.nl-interest-submit.nl-button:disabled:focus-visible {
  color: rgba(255, 253, 247, 0.66);
  background: rgba(35, 16, 0, 0.48);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.nl-interest-reassurance {
  max-width: 560px;
  margin: -6px 0 0;
  color: rgba(35, 16, 0, 0.66);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 550;
}

.nl-interest-success {
  display: grid;
  min-height: 420px;
  align-content: center;
  justify-items: start;
  gap: 32px;
}

.nl-interest-success h3 {
  max-width: 620px;
  margin: 0;
  color: #231000;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.nl-interest-success h3:focus {
  outline: none;
}

.nl-interest-new-request {
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.nl-how-it-works-steps {
  display: grid;
  gap: 28px;
}

.nl-how-step {
  --how-accent: var(--cyan);
  --how-highlight-bg: rgba(34, 211, 238, 0.18);
  --how-title-size: clamp(3rem, 9vw, 8.5rem);
  --how-title-offset: calc(var(--how-title-size) * 0.72);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 34%);
  gap: 32px;
  align-items: stretch;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 253, 247, 0.28);
}

.nl-how-step:first-child {
  padding-top: 0;
  border-top: 0;
}

.nl-how-step-one {
  --how-accent: #f97316;
  --how-highlight-bg: rgba(249, 115, 22, 0.2);
}

.nl-how-step-two {
  --how-accent: var(--green);
  --how-highlight-bg: rgba(6, 214, 160, 0.2);
}

.nl-how-step-three {
  --how-accent: var(--lemon);
  --how-highlight-bg: rgba(255, 209, 102, 0.24);
}

.nl-how-step-copy {
  min-width: 0;
}

.nl-how-step h3 {
  display: grid;
  grid-template-columns: var(--how-title-offset) minmax(0, 1fr);
  align-items: baseline;
  margin: 0 0 14px;
  color: var(--how-accent);
  font-size: var(--how-title-size);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
}

.nl-how-step h3 span {
  color: #071721;
}

.nl-how-step p {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.58;
  letter-spacing: -0.01em;
}

.nl-how-step .nl-how-step-subheadline {
  margin-left: var(--how-title-offset);
  color: #071721;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
  font-weight: 650;
  letter-spacing: 0;
}

.nl-how-highlight {
  width: min(100%, 760px);
  padding: 18px 22px 18px 24px;
  color: var(--heading);
  background: var(--how-highlight-bg);
  border-left: 5px solid var(--how-accent);
  font-size: 22px;
  line-height: 1.38;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.nl-how-step-media {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(255, 253, 247, 0.62);
  border-radius: 12px;
  box-shadow:
    0 22px 60px rgba(7, 23, 33, 0.18),
    0 0 0 8px rgba(255, 253, 247, 0.12);
}

.nl-how-step-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(1.08) contrast(1.02);
}

.nl-how-step-media-contain img {
  object-fit: contain;
}

.nl-how-actions {
  position: relative;
  z-index: 3;
  margin-top: 12px;
}

.nl-how-actions .nl-button-secondary {
  color: #fffdf7;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.nl-how-actions .nl-button-secondary:hover,
.nl-how-actions .nl-button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

@keyframes nl-scroll-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

.nl-hero {
  --section-bg: transparent;
  --heading: #fffdf7;
  --body: rgba(255, 253, 247, 0.78);
  --number: var(--lemon);
  z-index: 2;
  min-height: 100svh;
  overflow: visible;
}

.nl-hero::after {
  opacity: 0.18;
}

.nl-hero-grid {
  position: relative;
  isolation: isolate;
  width: min(100%, var(--max));
  min-height: calc(100svh - 160px);
  margin: 0 auto;
  display: block;
}

.nl-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.nl-hero-grid > .nl-kicker {
  position: relative;
  z-index: 6;
  max-width: 100%;
}

.nl-hero-copy {
  position: relative;
  z-index: 5;
  isolation: isolate;
  width: min(75vw, 1080px);
  max-width: 1080px;
  padding: 24px 96px 24px 0;
}

.nl-hero-copy > :not(.nl-kicker) {
  max-width: 960px;
}

.nl-hero-eyebrow,
.nl-section .nl-hero-copy h1,
.nl-section .nl-hero-copy .nl-lede {
  width: fit-content;
  padding: 4px 8px;
  background: rgba(7, 11, 24, 0.46);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  backdrop-filter: blur(10px);
}

.nl-section .nl-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nl-hero-card {
  position: absolute;
  top: 40px;
  right: 0;
  bottom: 40px;
  width: min(58vw, 860px);
  height: auto;
  min-height: 520px;
  max-width: 100%;
  margin: 0;
  transform: translate(var(--hero-image-shift, 10%), var(--hero-image-y, 0px));
  will-change: transform;
  pointer-events: none;
}

.nl-hero-card.is-handoff {
  z-index: 1;
}

.nl-hero-card::before {
  content: "";
  position: absolute;
  inset: 8% 0 4% 18%;
  background: radial-gradient(circle at 70% 50%, rgba(255, 209, 102, 0.32), transparent 38%),
    radial-gradient(circle at 48% 46%, rgba(34, 211, 238, 0.26), transparent 44%);
  filter: blur(34px);
  opacity: 0.8;
}

.nl-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: saturate(0.96) contrast(1.02);
}

.nl-hero .nl-actions {
  margin-top: 36px;
}

.nl-kicker {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 9px 14px;
  color: var(--badge-ink, var(--ink));
  background: var(--badge-bg, rgba(255, 255, 255, 0.78));
  border: 1px solid var(--badge-line, rgba(255, 255, 255, 0.36));
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
}

.nl-value-quote,
.nl-hero-eyebrow {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--heading, var(--ink));
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.nl-section h1,
.nl-section h2 {
  margin: 0;
  max-width: 980px;
  color: var(--heading, var(--ink));
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.92;
  font-weight: 950;
}

.nl-section-number {
  display: inline-block;
  margin-right: 0.16em;
  color: var(--number, rgba(255, 255, 255, 0.7));
}

.nl-lede {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--body, rgba(17, 24, 39, 0.78));
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
  font-weight: 520;
}

.nl-section .nl-hero-copy .nl-lede {
  max-width: 640px;
  margin-bottom: 32px;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.nl-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.nl-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--ink-strong);
  background: var(--lemon);
  border: 1px solid rgba(17, 24, 39, 0.2);
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.nl-button:hover,
.nl-button:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.18);
}

.nl-button-secondary {
  color: var(--heading, var(--ink));
  background: rgba(255, 255, 255, 0.72);
}

.nl-hero .nl-button {
  min-height: 54px;
  padding: 0 22px;
  color: #071721;
  background: var(--lemon);
  border-color: rgba(255, 209, 102, 0.82);
  box-shadow: 0 18px 44px rgba(255, 209, 102, 0.18);
}

.nl-hero .nl-button-secondary {
  color: #fffdf7;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.nl-hero .nl-button-secondary:hover,
.nl-hero .nl-button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.nl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}

.nl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.theme-ink {
  --section-bg: #101828;
  --heading: #fffdf7;
  --body: rgba(255, 253, 247, 0.78);
  --number: var(--lemon);
  --badge-bg: rgba(255, 209, 102, 0.18);
  --badge-ink: #fff6d7;
  --badge-line: rgba(255, 209, 102, 0.35);
}

.theme-paper {
  --section-bg: #fffdf7;
  --heading: #101828;
  --body: #475467;
  --number: var(--coral);
  --badge-bg: #101828;
  --badge-ink: #fffdf7;
  --badge-line: #101828;
}

.theme-coral {
  --section-bg: #ff4d6d;
  --heading: #21020c;
  --body: rgba(33, 2, 12, 0.78);
  --number: #fffdf7;
}

.theme-lemon {
  --section-bg: #ffd166;
  --heading: #211400;
  --body: rgba(33, 20, 0, 0.78);
  --number: #fffdf7;
}

.theme-green {
  --section-bg: #06d6a0;
  --heading: #00251b;
  --body: rgba(0, 37, 27, 0.78);
  --number: #fffdf7;
}

.theme-blue {
  --section-bg: #1aa0c8;
  --heading: #f8fdff;
  --body: rgba(248, 253, 255, 0.82);
  --number: #071721;
}

.theme-violet {
  --section-bg: #7c3aed;
  --heading: #fffdf7;
  --body: rgba(255, 253, 247, 0.82);
  --number: #d8b4fe;
}

.theme-orange {
  --section-bg: #f97316;
  --heading: #231000;
  --body: rgba(35, 16, 0, 0.78);
  --number: #fffdf7;
}

.site-footer {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 28px 20px;
  background: var(--ink-strong);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  color: #ffffff;
  text-underline-offset: 4px;
}

.nl-page-scroll-hint {
  position: fixed;
  right: 50%;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 26px 12px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(7, 11, 24, 0.32);
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 12px);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    border-color 180ms ease,
    background 180ms ease;
  backdrop-filter: blur(14px);
}

.nl-page-scroll-hint.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
}

.nl-page-scroll-hint:hover,
.nl-page-scroll-hint:focus-visible {
  color: #fffdf7;
  background: rgba(7, 11, 24, 0.46);
  border-color: rgba(255, 253, 247, 0.34);
}

.nl-page-scroll-hint:focus-visible {
  outline: 3px solid rgba(255, 209, 102, 0.65);
  outline-offset: 4px;
}

.nl-page-scroll-hint-arrow {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: nl-page-scroll-hint-nudge 1200ms ease-in-out infinite;
}

@keyframes nl-page-scroll-hint-nudge {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(45deg) translate(3px, 3px);
  }
}

.nl-section-navigation {
  position: fixed;
  z-index: 30;
  pointer-events: none;
}

.nl-section-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  display: grid;
  gap: 4px;
  padding: 10px 8px;
  background: rgba(7, 11, 24, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(7, 11, 24, 0.18);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translate(12px, -50%);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
  pointer-events: auto;
}

.nl-section-navigation.is-past-hero .nl-section-rail {
  opacity: 1;
  transform: translate(0, -50%);
}

.nl-section-rail-item {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #fffdf7;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nl-section-rail-marker {
  width: 7px;
  height: 7px;
  background: rgba(255, 253, 247, 0.5);
  border-radius: 50%;
  transition: width 180ms var(--ease), height 180ms var(--ease), background 180ms var(--ease);
}

.nl-section-rail-item:hover .nl-section-rail-marker,
.nl-section-rail-item:focus-visible .nl-section-rail-marker {
  background: #ffffff;
}

.nl-section-rail-item.is-active .nl-section-rail-marker {
  width: 7px;
  height: 20px;
  background: var(--lemon);
  border-radius: 999px;
}

.nl-section-rail-label {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  width: max-content;
  max-width: 180px;
  padding: 7px 10px;
  color: #fffdf7;
  background: #070b18;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  opacity: 0;
  transform: translate(6px, -50%);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease);
  pointer-events: none;
}

.nl-section-rail-item:hover .nl-section-rail-label,
.nl-section-rail-item:focus-visible .nl-section-rail-label {
  opacity: 1;
  transform: translate(0, -50%);
}

.nl-section-rail-item:focus-visible {
  outline: 2px solid var(--lemon);
  outline-offset: 1px;
  border-radius: 4px;
}

.nl-section-mobile-nav {
  display: none;
}

@media (max-width: 980px) {
  .nl-feature-poster-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .nl-demo-stage {
    grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  }

  .nl-demo-preview-panel {
    min-height: 520px;
  }

  .nl-closing-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .nl-section {
    padding-inline: 18px;
  }

  .nl-kicker {
    width: auto;
    max-width: 100%;
    line-height: 1.25;
  }

  .nl-problem-section,
  .nl-promise-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .nl-problem-copy h2,
  .nl-promise-copy h2,
  .nl-how-it-works-copy h2,
  .nl-who-is-it-for-copy h2,
  .nl-features-intro h2,
  .nl-demo-intro h2,
  .nl-closing-message h2 {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .nl-problem-body,
  .nl-problem-keyline {
    width: 100%;
  }

  .nl-problem-body p {
    font-size: 17px;
    line-height: 1.55;
  }

  .nl-problem-keyline {
    font-size: 19px;
  }

  .nl-problem-image {
    opacity: 1;
    width: min(84%, 1120px);
  }

  .nl-who-is-it-for-section {
    padding-bottom: 64px;
  }

  .nl-who-is-it-for-section .nl-section-inner {
    gap: 34px;
  }

  .nl-bubble-cloud {
    left: auto;
    display: flex;
    width: 100%;
    height: auto;
    margin-left: 0;
    padding: 28px 4px 42px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 26px 8px;
    overflow: visible;
  }

  .nl-audience-bubble,
  .nl-audience-bubble-large,
  .nl-audience-bubble-medium,
  .nl-audience-bubble-small {
    position: relative;
    inset: auto;
    width: auto;
    max-width: min(100%, 260px);
    min-height: 58px;
    padding: 15px 20px;
    font-size: 16px;
    transform: translate3d(
      calc(var(--mobile-offset-x, 0px) + var(--bubble-parallax-x)),
      calc(var(--mobile-offset-y, 0px) + var(--bubble-parallax-y)),
      0
    );
    will-change: transform;
  }

  .nl-audience-bubble-large {
    min-height: 72px;
    padding: 18px 24px;
    font-size: 18px;
  }

  .nl-audience-bubble:nth-child(4n + 1) {
    --mobile-offset-x: -32px;
    --mobile-offset-y: -12px;
  }

  .nl-audience-bubble:nth-child(4n + 2) {
    --mobile-offset-x: 30px;
    --mobile-offset-y: 16px;
  }

  .nl-audience-bubble:nth-child(4n + 3) {
    --mobile-offset-x: -18px;
    --mobile-offset-y: 24px;
  }

  .nl-audience-bubble:nth-child(4n) {
    --mobile-offset-x: 38px;
    --mobile-offset-y: -18px;
  }

  .nl-audience-bubble:nth-child(3n) {
    margin-inline: 28px 0;
  }

  .nl-audience-bubble:nth-child(5n) {
    margin-inline: 0 34px;
  }

  .nl-audience-bubble:nth-child(6n + 1) {
    margin-top: 22px;
  }

  .nl-audience-bubble:nth-child(6n + 4) {
    margin-bottom: 26px;
  }

  .nl-features-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .nl-features-section .nl-section-inner {
    gap: 34px;
  }

  .nl-features-intro > p:last-child {
    margin-top: 20px;
    font-size: 25px;
    line-height: 1.5;
  }

  .nl-feature-poster-wall {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 22px 16px;
  }

  .nl-feature-group {
    gap: 16px;
  }

  .nl-feature-group-title {
    min-height: 0;
    padding: 27px 18px 18px;
    font-size: 33px;
    transform: none;
  }

  .nl-feature-group:nth-child(even) .nl-feature-group-title {
    transform: none;
  }

  .nl-feature-note-list {
    gap: 12px;
  }

  .nl-feature-note,
  .nl-feature-note:nth-child(even),
  .nl-feature-note:nth-child(3n) {
    min-height: 68px;
    padding: 20px 14px 15px;
    font-size: 26px;
    transform: none;
  }

  .nl-feature-caption {
    min-height: 0;
  }

  .nl-demo-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .nl-demo-section .nl-section-inner {
    gap: 28px;
  }

  .nl-demo-intro > p:last-child {
    margin-top: 20px;
    font-size: 25px;
    line-height: 1.5;
  }

  .nl-demo-tabs-shell {
    width: calc(100% + 18px);
  }

  .nl-demo-tabs {
    width: 100%;
    max-width: none;
    padding-right: 24px;
    border-radius: 8px 0 0 8px;
  }

  .nl-demo-stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nl-demo-preview-panel {
    min-height: 0;
  }

  .nl-demo-preview-iframe {
    min-height: 560px;
  }

  .nl-demo-info-card {
    gap: 28px;
    padding: 24px 20px;
  }

  .nl-demo-qr-frame {
    width: 75%;
    max-width: 240px;
  }

  .nl-closing-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .nl-closing-layout {
    gap: 34px;
  }

  .nl-closing-message {
    padding: 30px 24px 36px;
    box-shadow:
      8px 10px 0 rgba(35, 16, 0, 0.14),
      0 20px 44px rgba(90, 36, 0, 0.16);
    transform: none;
  }

  .nl-closing-body {
    margin-top: 24px;
  }

  .nl-closing-body p {
    font-size: 17px;
    line-height: 1.5;
  }

  .nl-closing-form-panel {
    padding: 24px 18px;
  }

  .nl-interest-form {
    gap: 20px;
  }

  .nl-section-rail {
    display: none;
  }

  .nl-section-mobile-nav {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    max-width: 390px;
    min-height: 52px;
    margin: 0 auto;
    padding: 4px;
    color: #fffdf7;
    background: rgba(7, 11, 24, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(7, 11, 24, 0.22);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 240ms var(--ease), transform 240ms var(--ease);
    pointer-events: auto;
  }

  .nl-section-navigation.is-past-hero .nl-section-mobile-nav {
    opacity: 1;
    transform: translateY(0);
  }

  .nl-section-mobile-arrow,
  .nl-section-mobile-current {
    height: 42px;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .nl-section-mobile-arrow {
    position: relative;
    display: grid;
    place-items: center;
  }

  .nl-section-mobile-arrow span {
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
  }

  .nl-section-mobile-previous span {
    transform: rotate(-45deg);
  }

  .nl-section-mobile-next span {
    transform: rotate(135deg);
  }

  .nl-section-mobile-arrow:disabled {
    opacity: 0.28;
    cursor: default;
  }

  .nl-section-mobile-current {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 0 8px;
    text-align: left;
  }

  .nl-section-mobile-count {
    color: var(--lemon);
    font-size: 12px;
    font-weight: 800;
  }

  .nl-section-mobile-label {
    overflow: hidden;
    font-size: 14px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nl-section-mobile-arrow:focus-visible,
  .nl-section-mobile-current:focus-visible {
    outline: 2px solid var(--lemon);
    outline-offset: -2px;
    border-radius: 4px;
  }

  .nl-comparison-table {
    --comparison-first-column: 190px;
    --comparison-column: 112px;
    --comparison-last-column: 150px;
  }

  .nl-comparison-table th,
  .nl-comparison-table td {
    padding: 15px 12px;
  }

  .nl-promise-conclusion {
    width: 100%;
    font-size: 19px;
  }


  .nl-how-step {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nl-how-step .nl-how-step-subheadline,
  .nl-how-highlight {
    font-size: 19px;
  }

  .nl-how-step p {
    font-size: 17px;
    line-height: 1.55;
  }

  .nl-how-step-media {
    min-height: 180px;
  }

  .nl-hero {
    align-items: start;
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .nl-hero-grid {
    display: flex;
    min-height: calc(100svh - 72px);
    flex-direction: column;
    align-items: stretch;
  }

  .nl-hero-media {
    position: relative;
    inset: auto;
    z-index: 1;
    min-height: clamp(300px, 58svh, 460px);
    margin-top: -8px;
  }

  .nl-hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .nl-hero-copy > :not(.nl-kicker),
  .nl-section .nl-hero-copy h1,
  .nl-section .nl-hero-copy .nl-lede {
    max-width: 100%;
  }

  .nl-hero-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 520px);
    min-height: clamp(300px, 58svh, 460px);
    margin-left: auto;
    transform: translate(var(--hero-image-shift, 6%), var(--hero-image-y, 0px));
  }

  .nl-section .nl-hero-copy h1 {
    font-size: 40px;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .nl-section .nl-hero-copy .nl-lede {
    font-size: 17px;
    line-height: 1.5;
  }

  .nl-actions {
    flex-direction: column;
  }
}

@media (max-width: 632px) {
  .nl-promise-section .nl-comparison-shell {
    width: calc(100% + 36px);
    margin-inline: -18px;
  }

  .nl-promise-section .nl-comparison-wrap {
    width: 100%;
    max-width: none;
    border-right: 0;
    border-left: 0;
  }

  .nl-promise-section .nl-comparison-table {
    --comparison-first-column: calc(190px * 0.8);
    --comparison-last-column: calc(150px * 0.65);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nl-feature-note {
    transition: none;
  }

  .nl-feature-note:hover {
    transform: none;
  }

  .nl-demo-tab {
    transition: none;
  }

  .nl-demo-stage.is-switching {
    animation: none;
  }

  .nl-demo-preview-iframe {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .nl-reveal,
  .nl-button {
    transition: none;
  }
}
