/* Paid landing primitives — /lp/operations-control, /lp/true-pnl, /lp/ai-operations.
   Body sections reuse shared .np-section / .np-container / .np-h* from base + site.css.
   Heroes use .np-marketing-hero*. CTAs reuse .np-hero-cta-buttons*.

   Design spine, applied identically on all three pages:
     hero → brands → stat band → beats → inline CTA → carousel → versus
     → proof → audit → paths → FAQ → final CTA → sticky mobile bar

   Image rule: conceptual/diagram art above (beats), real product UI below (carousel).

   NOTE: base.njk always renders the real site header/footer (custom-header.njk /
   custom-footer.njk). The partials/paid-landing-header.njk + -footer.njk are not
   included anywhere, so their chrome CSS was removed from this file. */

.np-paid-landing-page {
  --np-lp-violet: #5f59f0;
  --np-lp-violet-dark: #3d2e7c;
  --np-lp-lavender: #F1E9F4;
  --np-lp-ink: #212121;
  --np-lp-text: #363636;
  --np-lp-muted: #666666;
  --np-lp-border: #e5e2f2;
  --np-lp-success: #10CB88;
}

/* Lavender band. Lives here (not module-audit.css) so a page that drops the
   audit section keeps its lavender bands. */
.np-section--lavender { background: #F1E9F4; }

/* No orphan words. A single trailing word on the last line of a heading reads
   as a mistake; balance distributes the lines evenly instead. Headings here are
   short enough that the browser's line-count cap on balancing never bites. */
.np-paid-landing h1,
.np-paid-landing h2,
.np-paid-landing h3,
.np-paid-landing .np-lp-cta__title,
.np-paid-landing .np-lp-section-header .np-lead {
  text-wrap: balance;
}

/* ---------------------------------------------------------------- CTA wrappers */

.np-lp-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.np-lp-cta--final {
  align-items: center;
  text-align: center;
}

.np-lp-cta--final .np-lp-cta__title {
  margin: 0;
  color: var(--np-lp-ink);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 22ch;
}

.np-lp-cta--final .np-lp-cta__lead {
  margin: 0;
  color: #444;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.55;
  max-width: 54ch;
}

.np-lp-cta--final .np-hero-cta-buttons { align-items: center; }
.np-lp-cta--final .np-hero-cta-buttons__row { justify-content: center; }

.np-lp-cta__third {
  display: inline-block;
  margin-top: 4px;
  color: #6c6684;
  font: 500 14px/1.45 'Inter', Arial, sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.np-lp-cta__third:hover { color: var(--np-lp-violet); }
.np-lp-cta--final .np-lp-cta__third { text-align: center; }

.np-lp-inline-cta {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.np-lp-inline-cta .np-lp-cta { align-items: center; }
.np-lp-inline-cta .np-hero-cta-buttons__row { justify-content: center; }

.np-lp-final {
  background: linear-gradient(135deg, rgba(255,255,255,1) 30%, rgba(235,239,255,1) 100%);
  padding: 100px 0;
}

/* ------------------------------------------------------------ Section helpers */

.np-lp-section-header {
  max-width: 720px;
  margin: 0 0 36px;
}

.np-lp-section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.np-lp-img-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background: transparent;
}

.np-lp-img-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------------------------------------ Stat band
   Proof moved up the page: sits directly under the brands strip. */

.np-lp-statband {
  background: var(--np-lp-lavender);
  padding: clamp(36px, 6vw, 56px) 0;
}

.np-lp-statband__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 40px);
}

.np-lp-statband__item {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 18px;
  border-radius: 18px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* a stat that a named case study backs is a link — an unsourced number on a
   paid page reads as marketing, a cited one reads as evidence */
a.np-lp-statband__item:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(95, 89, 240, 0.14);
}

.np-lp-statband__source {
  margin: 2px 0 0;
  color: var(--np-lp-violet-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.75;
}

a.np-lp-statband__item .np-lp-statband__source::after {
  content: " →";
  font-weight: 700;
}

a.np-lp-statband__item:hover .np-lp-statband__source { opacity: 1; }

.np-lp-statband__note {
  margin: 22px auto 0;
  max-width: 70ch;
  color: var(--np-lp-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.np-lp-statband__note a {
  color: var(--np-lp-violet-dark);
  font-weight: 600;
}

.np-lp-statband__value {
  margin: 0;
  color: var(--np-lp-violet-dark);
  font-size: clamp(44px, 5.4vw, 64px);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1;
  /* keep "150+ hrs" / "Up to 50%" from breaking mid-number */
  white-space: nowrap;
}

.np-lp-statband__label {
  margin: 0;
  max-width: 26ch;
  color: var(--np-lp-text);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .np-lp-statband__value { font-size: clamp(36px, 6.5vw, 48px); }
}

@media (max-width: 720px) {
  .np-lp-statband__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------------------------------------------------------------------- Beats
   The page's actual argument. Alternating splits, conceptual art only.
   Media leads on mobile — the visual is the hook on paid traffic. */

.np-lp-beat {
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.np-lp-beat__copy { order: 1; }
.np-lp-beat__media { order: 2; }

.np-lp-beat--reverse { grid-template-columns: minmax(0, 58fr) minmax(0, 42fr); }
.np-lp-beat--reverse .np-lp-beat__copy { order: 2; }
.np-lp-beat--reverse .np-lp-beat__media { order: 1; }

/* a beat that opens a section carries its own header, so no extra top margin */
.np-lp-beat--lead + .np-lp-panels { margin-top: clamp(40px, 5vw, 64px); }

.np-lp-beat + .np-lp-beat { margin-top: clamp(56px, 8vw, 100px); }

.np-lp-beat__num {
  display: block;
  margin-bottom: 12px;
  color: var(--np-lp-violet);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.np-lp-beat__copy .np-h2 { margin-top: 0; }

.np-lp-beat__ticks {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.np-lp-beat__ticks li {
  position: relative;
  padding-left: 30px;
  color: var(--np-lp-text);
  font-size: 15px;
  line-height: 1.5;
}

.np-lp-beat__ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--np-lp-success);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .np-lp-beat,
  .np-lp-beat--reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .np-lp-beat .np-lp-beat__media,
  .np-lp-beat--reverse .np-lp-beat__media { order: 1; }

  .np-lp-beat .np-lp-beat__copy,
  .np-lp-beat--reverse .np-lp-beat__copy { order: 2; }
}

/* -------------------------------------------------------------------- Versus
   Compact 5v5. Hard cap of ~8 words per line — nobody reads a prose table
   on paid traffic. */

.np-lp-versus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.np-lp-versus__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 30px;
  border-radius: 20px;
}

.np-lp-versus__card--before {
  background: #fafafa;
  border: 1px solid #e8e8e8;
}

.np-lp-versus__card--after {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  border: 1.5px solid var(--np-lp-violet);
  box-shadow: 0 18px 48px rgba(95, 89, 240, 0.12);
}

/* header row: a chip carries the side's identity so the two columns read as a
   deliberate comparison rather than two unrelated lists */
.np-lp-versus__title {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.np-lp-versus__card--before .np-lp-versus__title {
  background: #ededed;
  color: #6b6b6b;
}

.np-lp-versus__card--after .np-lp-versus__title {
  background: var(--np-lp-violet);
  color: #fff;
}

/* the line that states the payoff — without it the right column is just a list */
.np-lp-versus__payoff {
  margin: 4px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--np-lp-border);
  font-size: 15px;
  line-height: 1.5;
}

.np-lp-versus__card--before .np-lp-versus__payoff {
  border-top-color: #e8e8e8;
  color: var(--np-lp-muted);
}

.np-lp-versus__card--after .np-lp-versus__payoff {
  color: var(--np-lp-ink);
  font-weight: 650;
}

.np-lp-versus__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.np-lp-versus__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.45;
}

.np-lp-versus__list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.np-lp-versus__card--before .np-lp-versus__list li { color: var(--np-lp-muted); }
.np-lp-versus__card--before .np-lp-versus__list li::before {
  content: "–";
  color: #b4b4b4;
}

.np-lp-versus__card--after .np-lp-versus__list li {
  color: var(--np-lp-ink);
  font-weight: 550;
}

.np-lp-versus__card--after .np-lp-versus__list li::before {
  content: "✓";
  color: var(--np-lp-success);
}

@media (max-width: 800px) {
  .np-lp-versus { grid-template-columns: 1fr; gap: 16px; }
  .np-lp-versus__card { padding: 26px 24px; }
}

/* --------------------------------------------------------------------- Paths
   Routed exits for non-converters — replaces the single repeated grey
   /pricing#fit link. */

.np-lp-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* Each card states what it is, what you get, and what it costs you in effort.
   The earlier version was a bare title plus an arrow, which gave a visitor no
   reason to prefer one exit over another. */
.np-lp-paths__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 24px 22px;
  background: #fff;
  border: 1px solid var(--np-lp-border);
  border-radius: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.np-lp-paths__kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--np-lp-lavender);
  color: var(--np-lp-violet-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.np-lp-paths__title {
  color: var(--np-lp-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.np-lp-paths__body {
  color: var(--np-lp-muted);
  font-size: 14px;
  line-height: 1.5;
}

.np-lp-paths__go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--np-lp-violet);
  font-size: 14px;
  font-weight: 650;
}

.np-lp-paths__go::after {
  content: "→";
  transition: transform 0.2s ease;
}

.np-lp-paths__card:hover {
  border-color: var(--np-lp-violet);
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(95, 89, 240, 0.16);
}

.np-lp-paths__card:hover .np-lp-paths__go::after { transform: translateX(4px); }

@media (max-width: 900px) {
  .np-lp-paths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .np-lp-paths { grid-template-columns: 1fr; }
}

/* --------------------------------------------------- Slim strips + callouts */

.np-lp-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1px solid var(--np-lp-border);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.np-lp-strip__title {
  margin: 0 0 14px;
  color: var(--np-lp-ink);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.25;
}

.np-lp-options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.np-lp-options li {
  padding-left: 16px;
  border-left: 3px solid var(--np-lp-violet);
  color: var(--np-lp-text);
  font-size: 15px;
  line-height: 1.5;
}

.np-lp-options strong {
  display: block;
  color: var(--np-lp-ink);
  font-size: 16px;
}

.np-lp-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
}

.np-lp-logos img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.78;
}

.np-lp-callout {
  margin: 26px 0 0;
  padding: 16px 20px;
  background: var(--np-lp-lavender);
  border-left: 4px solid #6C69FF;
  border-radius: 0 10px 10px 0;
  color: var(--np-lp-text);
  font-size: 15px;
  line-height: 1.55;
}

.np-lp-callout a {
  color: var(--np-lp-violet-dark);
  font-weight: 600;
}

@media (max-width: 860px) {
  .np-lp-strip { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------- Panels
   Numbered explainer panels — LP3 "why Claude plus the API stops working". */

.np-lp-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.np-lp-panels__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid var(--np-lp-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.np-lp-panels__n {
  color: var(--np-lp-violet);
  font-size: clamp(32px, 3.4vw, 40px);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0.85;
}

.np-lp-panels__title {
  margin: 0;
  color: var(--np-lp-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.np-lp-panels__body {
  margin: 0;
  color: var(--np-lp-text);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .np-lp-panels { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------- Layers
   The four-layer stack — LP3. */

.np-lp-layers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.np-lp-layers li {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--np-lp-border);
  border-radius: 14px;
}

.np-lp-layers__name {
  color: var(--np-lp-violet-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.np-lp-layers__body {
  color: var(--np-lp-text);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .np-lp-layers li { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------------------------------------------------------------- Questions
   Wrapping grid of question chips — LP3. */

.np-lp-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.np-lp-questions li {
  padding: 14px 20px;
  background: var(--np-lp-lavender);
  border-radius: 14px;
  color: var(--np-lp-violet-dark);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.4;
}

/* -------------------------------------------------------------------- Fleet
   Agent roster — LP3. Name + role, no image needed. */

.np-lp-fleet {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.np-lp-fleet li {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--np-lp-border);
  border-radius: 16px;
}

.np-lp-fleet strong {
  display: block;
  color: var(--np-lp-ink);
  font-size: 17px;
  font-weight: 700;
}

.np-lp-fleet span {
  display: block;
  margin-top: 2px;
  color: var(--np-lp-muted);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .np-lp-fleet { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------- Ways in
   Three delivery channels with real UI above each — LP3. */

.np-lp-ways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.np-lp-ways article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--np-lp-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.np-lp-ways figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eceaf6;
  /* the three source screenshots have very different aspect ratios —
     normalise so the card titles below them line up */
  aspect-ratio: 16 / 10;
  background: #f7f6fb;
}

.np-lp-ways img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.np-lp-ways h3 {
  margin: 0;
  color: var(--np-lp-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.np-lp-ways p {
  margin: 0;
  color: var(--np-lp-text);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .np-lp-ways { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------- Proof */

.np-lp-proof {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: stretch;
}

/* one wide, well-set testimonial beats two cramped ones */
.np-lp-proof--single { grid-template-columns: minmax(0, 1fr); }

.np-lp-proof--single .np-lp-proof__card {
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: clamp(36px, 5vw, 52px) clamp(28px, 5vw, 64px);
}

.np-lp-proof--single .np-lp-proof__logo {
  max-width: 168px;
  max-height: 52px;
  margin: 0 auto;
}

.np-lp-proof--single blockquote {
  max-width: 30ch;
  color: var(--np-lp-ink);
  font-size: clamp(21px, 2.6vw, 30px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.np-lp-proof--single cite { font-size: 15px; }

.np-lp-proof__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 168px;
  background: #fff;
  border: 1px solid var(--np-lp-border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* a customer quote with nowhere to go is a dead end — link it to the study */
a.np-lp-proof__card:hover {
  border-color: var(--np-lp-violet);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(95, 89, 240, 0.16);
}

.np-lp-proof__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--np-lp-violet);
  font-size: 14px;
  font-weight: 650;
}

.np-lp-proof__read::after {
  content: "→";
  transition: transform 0.2s ease;
}

a.np-lp-proof__card:hover .np-lp-proof__read::after { transform: translateX(4px); }

.np-lp-proof__card--metric {
  align-items: center;
  text-align: center;
}

.np-lp-proof__card--quote {
  align-items: flex-start;
  text-align: left;
  gap: 14px;
}

.np-lp-proof__metric-value {
  margin: 0;
  color: var(--np-lp-violet-dark);
  font-size: clamp(34px, 3.6vw, 44px);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.np-lp-proof__metric-label {
  margin: 0;
  max-width: 18em;
  color: var(--np-lp-muted);
  font-size: 15px;
  line-height: 1.45;
}

.np-lp-proof__logo {
  display: block;
  max-width: 132px;
  width: auto;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  margin: 0 auto 4px;
}

.np-lp-proof__card--quote .np-lp-proof__logo {
  margin: 0 0 2px;
  max-height: 32px;
}

.np-lp-proof__card blockquote {
  margin: 0;
  color: var(--np-lp-ink);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
  font-weight: 500;
}

.np-lp-proof__card cite {
  display: block;
  color: var(--np-lp-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .np-lp-proof { grid-template-columns: 1fr; }

  .np-lp-proof__card { min-height: 0; padding: 24px 22px; }

  .np-lp-proof__card--quote {
    align-items: center;
    text-align: center;
  }

  .np-lp-proof__card--quote .np-lp-proof__logo {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------------------------------------------------------- Sticky mobile CTA
   After the hero scrolls away there is otherwise no CTA for ~6 screens.
   Shown only on mobile, and hidden again once the final CTA is reached so the
   two never overlap. Toggled by assets/js/lp-sticky-cta.js. */

.np-lp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(8px);
  border-top: 1px solid var(--np-lp-border);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.28s ease;
}

.np-lp-sticky.is-visible { transform: translateY(0); }

.np-lp-sticky__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--np-lp-violet);
  color: #fff !important;
  font: 600 15px/1 'Inter', Arial, sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.np-lp-sticky__link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--np-lp-violet);
  font: 600 15px/1 'Inter', Arial, sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.np-lp-sticky__link:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .np-lp-sticky { display: flex; }
  /* keep the bar from covering the last of the page content */
  .np-paid-landing { padding-bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  .np-lp-sticky { transition: none; }

  .np-paid-landing-page * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
