/* Production marketing site. Tokens match docs/13 (system display/body + self-hosted
   JetBrains Mono). Source composition: website/Navpil - Website.dc.html */

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/JetBrainsMono-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/JetBrainsMono-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/JetBrainsMono-Bold.woff2') format('woff2');
}

:root {
  --paper: #fbfaf7;
  --surface: #ffffff;
  --paper-edge: #f1efe8;
  --ink: #1a1a17;
  --ink-2: #6b6a63;
  --ink-3: #9b9a90;
  --line: #e2e0d6;
  --amber: #e8a53d;
  --amber-tint: #fdf3df;
  --amber-ink: #8a5a12;
  --teal: #2d7d6e;
  --rust: #c2553d;
  --on-teal: #ffffff;
  --on-rust: #ffffff;
  --on-amber: #1a1a17;
  --font-display: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --radius-sm: 8px;
  --radius-md: 11px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(40, 34, 20, 0.06), 0 1px 3px rgba(40, 34, 20, 0.05);
  --shadow-md: 0 2px 6px rgba(40, 34, 20, 0.07), 0 6px 16px rgba(40, 34, 20, 0.06);
  --shadow-lg: 0 4px 12px rgba(40, 34, 20, 0.08), 0 12px 32px rgba(40, 34, 20, 0.08);
  --divider-dashed: 1.5px dashed var(--line);
}

[data-theme='dark'] {
  --paper: #171613;
  --surface: #201e1a;
  --paper-edge: #2a2822;
  --ink: #f3f1ea;
  --ink-2: #a8a69c;
  --ink-3: #6e6c64;
  --line: #34322b;
  --amber: #f0b65a;
  --amber-tint: #2e2413;
  --amber-ink: #f0b65a;
  --teal: #4fb39f;
  --rust: #e0755c;
  --on-teal: #12201c;
  --on-rust: #241210;
  --on-amber: #1a1a17;
}

html,
body {
  margin: 0;
  padding: 0;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: var(--amber-ink);
  text-decoration: none;
}
a:hover {
  color: var(--ink);
}
::selection {
  background: var(--amber-tint);
  color: var(--ink);
}

.np-page {
  background: var(--paper);
  overflow-x: hidden;
}

.np-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.np-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.np-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 28px;
}
.np-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.np-brand:hover {
  color: var(--ink);
}
.np-brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.np-brand__name span {
  color: var(--amber-ink);
}
.np-navlinks {
  display: flex;
  align-items: center;
  gap: 30px;
}
.np-navlinks a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.np-navlinks a:hover {
  color: var(--ink);
}
.np-nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.np-nav__signin {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 9px 4px;
}
.np-nav__signin:hover {
  color: var(--ink);
}

.np-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 600;
  border-radius: 11px;
  border: 1px solid transparent;
  transition:
    transform 0.18s cubic-bezier(0.2, 0, 0, 1),
    box-shadow 0.18s cubic-bezier(0.2, 0, 0, 1),
    opacity 0.18s,
    border-color 0.18s,
    background 0.18s;
}
.np-btn:hover {
  color: inherit;
}
.np-btn--ink {
  color: var(--paper);
  background: var(--ink);
}
.np-btn--ink:hover {
  color: var(--paper);
  opacity: 0.92;
  transform: translateY(-1px);
}
.np-btn--lg {
  gap: 9px;
  font-size: 16px;
  border-radius: 13px;
  padding: 16px 26px;
  box-shadow: var(--shadow-md);
}
.np-btn--lg:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.np-btn--ghost {
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
  border-radius: 13px;
  padding: 16px 24px;
}
.np-btn--ghost:hover {
  color: var(--ink);
  border-color: var(--ink-3);
  transform: translateY(-2px);
}
.np-btn--nav {
  font-size: 14.5px;
  padding: 11px 18px;
}
.np-btn--block {
  display: flex;
  width: 100%;
  max-width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: 12px;
}
.np-btn--outline {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}
.np-btn--outline:hover {
  color: var(--ink);
  border-color: var(--ink-3);
}
.np-store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--amber-tint);
  border: 1px solid color-mix(in srgb, var(--amber) 36%, transparent);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber-ink);
}
.np-store:hover {
  color: var(--amber-ink);
  border-color: var(--amber);
  transform: translateY(-2px);
}
.np-store--footer {
  padding: 8px 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink);
}
.np-store--footer:hover {
  color: var(--ink);
  border-color: var(--ink-3);
}

.np-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-ink);
}
.np-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 66px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 22px 0 0;
  text-wrap: balance;
}
.np-h1 span {
  color: var(--amber-ink);
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  line-height: 1.08;
}
.np-lead {
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 22px 0 0;
  max-width: 520px;
  text-wrap: pretty;
}

.np-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 40px;
}
.np-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-ink);
  background: var(--amber-tint);
  border: 1px solid color-mix(in srgb, var(--amber) 30%, transparent);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
}
.np-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.np-herocta,
.np-herochips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.np-herochips {
  gap: 10px 22px;
  margin-top: 26px;
}
.np-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.np-heroart {
  position: relative;
  height: 660px;
  min-width: 0;
}
.np-float-a {
  animation: np-float 7s ease-in-out infinite;
}
.np-float-b {
  animation: np-float-2 8s ease-in-out infinite;
}
.np-proof {
  position: absolute;
  top: 76px;
  left: -8px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: var(--shadow-md);
  animation: np-float 6s ease-in-out infinite;
}
.np-proof__icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--teal) 14%, transparent);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.np-proof__k {
  font-size: 11.5px;
  color: var(--ink-2);
  line-height: 1.1;
}
.np-proof__v {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.2;
}

@keyframes np-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes np-float-2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.np-stats-wrap {
  border-top: 1.5px dashed var(--line);
  border-bottom: 1.5px dashed var(--line);
  background: var(--paper-edge);
}
.np-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 28px;
  text-align: center;
}
.np-stats__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.np-stats__l {
  font-size: 13.5px;
  color: var(--ink-2);
  margin-top: 8px;
}

.np-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 28px 8px;
}
.np-section--how {
  padding: 88px 28px 40px;
}
.np-section--feat {
  padding: 64px 28px 40px;
}
.np-section--beyond {
  padding: 80px 28px 8px;
}
.np-section--price {
  max-width: 1080px;
  padding: 96px 28px 40px;
}
.np-section--faq {
  max-width: 820px;
  padding: 80px 28px 40px;
}
.np-section--cta {
  padding: 60px 28px 96px;
}
.np-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.np-center p,
.np-section--feat .np-center p,
.np-section--beyond .np-center p,
.np-section--price .np-center p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 14px 0 0;
}
.np-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.np-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.np-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 20px 0 0;
}
.np-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 9px 0 0;
  text-wrap: pretty;
}
.np-ico {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--amber-tint);
  color: var(--amber-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.np-ico--sm {
  width: 48px;
  height: 48px;
}
.np-ico--teal {
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  color: var(--teal);
}
.np-plus {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: transparent;
}
.np-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.np-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 22px;
}
.np-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.np-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin: 22px 0 0;
}
.np-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 10px 0 0;
  text-wrap: pretty;
}
.np-step__n {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--amber-ink);
}

.np-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.np-flexcard {
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 52px;
}
.np-flexcard--ink {
  background: var(--ink);
  color: var(--paper);
  border: 0;
}
.np-flexcard h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 16px 0 0;
  line-height: 1.1;
}
.np-flexcard p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 14px 0 0;
  max-width: 460px;
  text-wrap: pretty;
}
.np-flexcard--ink h3 {
  font-size: 27px;
  line-height: 1.12;
}
.np-flexcard--ink p {
  font-size: 15.5px;
  color: color-mix(in srgb, var(--paper) 72%, transparent);
  max-width: 360px;
  margin-top: 12px;
}
.np-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 5px 11px;
}
.np-tag--teal {
  color: var(--teal);
  background: color-mix(in srgb, var(--teal) 12%, transparent);
}
.np-tag--amber {
  color: var(--amber);
  background: color-mix(in srgb, var(--amber) 18%, transparent);
}
.np-tag--tint {
  color: var(--amber-ink);
  background: var(--amber-tint);
}
.np-tile {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.np-tile h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 20px 0 0;
}
.np-tile p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 10px 0 0;
  text-wrap: pretty;
}
.np-qr {
  flex: none;
  width: 132px;
  height: 132px;
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.5);
}

.np-beyond {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.np-beyond-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  padding: 36px 36px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.np-beyond-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 16px 0 0;
  line-height: 1.14;
}
.np-beyond-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 11px 0 0;
  text-wrap: pretty;
}
.np-beyond-copy {
  flex: 1;
  min-width: 0;
  padding-bottom: 36px;
}

.np-dark {
  background: #171613;
  color: #f3f1ea;
  margin-top: 80px;
}
.np-dark__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.np-dark .np-eyebrow {
  color: var(--amber);
}
.np-dark h2 {
  font-size: 44px;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  line-height: 1.06;
}
.np-dark p {
  font-size: 17px;
  line-height: 1.6;
  color: #a8a69c;
  margin: 20px 0 0;
  max-width: 460px;
  text-wrap: pretty;
}
.np-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.np-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #f3f1ea;
  background: #201e1a;
  border: 1px solid #34322b;
  border-radius: var(--radius-pill);
  padding: 9px 15px;
}
.np-swatch {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.np-g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.np-price {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.np-price > .np-btn {
  margin: 22px 0 26px;
}
.np-price--plus > .np-btn {
  margin: 22px 0 8px;
}
.np-price--plus {
  position: relative;
  border: 1.5px solid var(--amber);
  box-shadow: var(--shadow-md);
}
.np-price__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.np-price__who {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 4px;
}
.np-price__amt {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 4px;
}
.np-price__amt strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46px;
  letter-spacing: -0.02em;
}
.np-price__amt span {
  font-size: 15px;
  color: var(--ink-3);
}
.np-price__note {
  font-size: 13px;
  color: var(--ink-2);
}
.np-price__fine {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.np-price__list {
  border-top: var(--divider-dashed);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.np-price__row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.4;
}
.np-price__row svg {
  flex: none;
  margin-top: 1px;
}
.np-ribbon {
  position: absolute;
  top: -13px;
  left: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--on-amber);
  background: var(--amber);
  border-radius: var(--radius-pill);
  padding: 6px 13px;
  box-shadow: var(--shadow-sm);
}

.np-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.np-faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.np-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17.5px;
  color: var(--ink);
}
.np-faq summary::-webkit-details-marker {
  display: none;
}
.np-faq summary svg {
  flex: none;
  color: var(--ink-3);
  transition: transform 0.2s;
}
.np-faq details[open] summary svg {
  transform: rotate(45deg);
}
.np-faq__a {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 640px;
  text-wrap: pretty;
}

.np-final {
  position: relative;
  overflow: hidden;
  background: var(--amber);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
}
.np-final__lines {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 26px,
    color-mix(in srgb, var(--on-amber) 6%, transparent) 26px 27px
  );
  pointer-events: none;
}
.np-final__inner {
  position: relative;
}
.np-final h2 {
  font-size: 46px;
  letter-spacing: -0.025em;
  color: var(--on-amber);
  margin: 0;
  line-height: 1.05;
  text-wrap: balance;
}
.np-final p {
  font-size: 17px;
  color: color-mix(in srgb, var(--on-amber) 72%, transparent);
  margin: 18px auto 0;
  max-width: 470px;
}
.np-final__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
.np-btn--on-amber {
  font-size: 16px;
  font-weight: 600;
  color: var(--on-amber);
  background: color-mix(in srgb, var(--on-amber) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--on-amber) 22%, transparent);
  border-radius: 13px;
  padding: 16px 26px;
}
.np-btn--on-amber:hover {
  color: var(--on-amber);
  background: color-mix(in srgb, var(--on-amber) 16%, transparent);
}

.np-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-edge);
}
.np-footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.np-footer__brand {
  max-width: 300px;
}
.np-footer__brand p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 14px 0 0;
}
.np-footer__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.np-footer__cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.np-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.np-footer__col strong {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 2px;
}
.np-footer__col a {
  font-size: 14px;
  color: var(--ink-2);
}
.np-footer__col a:hover {
  color: var(--ink);
}
.np-footer__bot {
  border-top: 1px solid var(--line);
}
.np-footer__bot-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-3);
  font-family: var(--font-mono);
}
.np-footer__addr {
  flex: 1 0 100%;
}

/* iPhone bezel used for product shots */
.np-phone {
  width: 418px;
  height: 842px;
  background: #0e0d0a;
  border-radius: 58px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
  pointer-events: none;
  user-select: none;
}
/* GuestEntry mockups stay inert. Signed-in / loan / recurring screens scroll in the design. */
.np-phone--live {
  pointer-events: auto;
}
.np-phone__screen {
  position: relative;
  width: 390px;
  height: 814px;
  background: var(--paper);
  border-radius: 44px;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--font-body);
}
.np-phone__status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 0 34px;
  z-index: 12;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.np-phone__status-icons {
  display: flex;
  align-items: center;
  gap: 7px;
}
.np-phone__notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 34px;
  background: #0e0d0a;
  border-radius: 20px;
  z-index: 20;
}
.np-phone__body {
  position: absolute;
  top: 50px;
  bottom: 34px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.np-phone__home {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 14;
}
.np-phone__home i {
  width: 140px;
  height: 5px;
  border-radius: 3px;
  background: var(--ink);
  opacity: 0.9;
  display: block;
}

.np-shot--hero-dark {
  position: absolute;
  top: 14px;
  right: -6px;
  transform: rotate(3.5deg);
  transform-origin: top right;
  filter: drop-shadow(0 34px 60px rgba(26, 26, 23, 0.2));
}
.np-shot--hero-dark .np-phone {
  transform: scale(0.64);
  transform-origin: top right;
}
.np-shot--hero-light {
  position: absolute;
  bottom: 0;
  left: -6px;
  transform-origin: bottom left;
  filter: drop-shadow(0 40px 70px rgba(26, 26, 23, 0.26));
}
.np-shot--hero-light .np-phone {
  transform: scale(0.76);
  transform-origin: bottom left;
}
.np-shot--guest {
  position: absolute;
  top: -22px;
  right: 0;
  transform: scale(0.72);
  transform-origin: top right;
  filter: drop-shadow(0 26px 48px rgba(26, 26, 23, 0.2));
}
.np-shot-slot {
  flex: none;
  width: 300px;
  height: 330px;
  position: relative;
}
.np-shot-slot--sm {
  width: 196px;
  height: 300px;
}
.np-shot--loan,
.np-shot--recurring {
  position: absolute;
  top: 14px;
  left: 0;
  transform: scale(0.56);
  transform-origin: top left;
  filter: drop-shadow(0 24px 44px rgba(26, 26, 23, 0.2));
}
.np-dark__phone {
  position: relative;
  height: 520px;
}
.np-shot--dark {
  position: absolute;
  top: 0;
  left: 20px;
  transform: scale(0.74);
  transform-origin: top left;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.55));
}

.np-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--paper);
}
.np-ui__pad {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  gap: 22px;
}
.np-ui__logo {
  display: flex;
  align-items: center;
  gap: 13px;
}
.np-ui__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.np-ui__word span {
  color: var(--amber-ink);
}
.np-ui__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
}
.np-ui__host {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.np-avatar {
  flex: none;
  border-radius: 50%;
  background: var(--amber-tint);
  color: var(--amber-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}
.np-avatar--28 {
  width: 28px;
  height: 28px;
}
.np-avatar--40 {
  width: 40px;
  height: 40px;
  font-size: 15px;
}
.np-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.np-pill {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
}
.np-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.np-field div {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 15px;
}
.np-ui-btn {
  height: 52px;
  min-height: 52px;
  flex: none;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}
.np-split-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.np-split-cta .np-ui-btn {
  flex: 1;
  min-width: 0;
}
.np-ui-cam {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.np-ui-btn--full {
  margin: 0 20px;
}
.np-ui__hint {
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
}
.np-dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 10px;
}
.np-dash-head .k {
  font-size: 13px;
  color: var(--ink-2);
}
.np-dash-head .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
}
.np-dash-head,
.np-screen-head,
.np-tabs,
.np-ui-foot {
  flex: none;
}
.np-scroll,
.np-dash-body {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  pointer-events: auto;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--ink) 28%, transparent) transparent;
}
.np-scroll::-webkit-scrollbar,
.np-dash-body::-webkit-scrollbar {
  width: 4px;
}
.np-scroll::-webkit-scrollbar-thumb,
.np-dash-body::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--ink) 28%, transparent);
  border-radius: 99px;
}
.np-dash-body {
  padding: 6px 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.np-scroll {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.np-net {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px 20px;
}
.np-net__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-2);
}
.np-net__amt {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
}
.np-net__amt b {
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.np-net__split {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: var(--divider-dashed);
}
.np-net__cell {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--paper-edge);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 11px 12px;
}
.np-net__cell .n {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}
.np-net__cell .l {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.2;
}
.np-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 13px 16px 14px;
  box-shadow: var(--shadow-sm);
}
.np-row__top {
  display: flex;
  align-items: center;
  gap: 9px;
}
.np-row__cat {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-tint);
  color: var(--amber-ink);
}
.np-row__name {
  flex: 1;
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}
.np-row__amt {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.np-row__amt.teal {
  color: var(--teal);
}
.np-row__amt.rust {
  color: var(--rust);
}
.np-row__tear {
  border-top: 1px dashed var(--line);
  margin: 11px 0;
}
.np-row__bot {
  font-size: 13px;
  color: var(--ink-2);
}
.np-plus-nudge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--amber-tint);
  border: 1px solid color-mix(in srgb, var(--amber) 26%, transparent);
  border-radius: var(--radius-md);
}
.np-plus-nudge b {
  font-weight: 700;
}
.np-plus-nudge span {
  font-size: 13.5px;
  color: var(--ink);
}
.np-plus-nudge em {
  font-style: normal;
  color: var(--ink-2);
}
.np-sec {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.np-sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.np-sec-head__left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.np-sec-head .np-sec {
  margin-bottom: 0;
}
.np-sec-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 6%, var(--surface));
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}
.np-see-all {
  flex: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
}
.np-ledger {
  display: flex;
  flex-direction: column;
}
.np-ledger__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px 12px 0;
  border-top: var(--divider-dashed);
  min-height: 44px;
}
.np-ledger__main {
  flex: 1;
  min-width: 0;
}
.np-ledger__t {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.np-ledger__s {
  font-size: 13px;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.np-ledger__amt {
  flex: none;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.np-cat {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.np-cat--food {
  background: color-mix(in srgb, var(--amber) 16%, var(--surface));
  color: var(--amber);
  border-color: color-mix(in srgb, var(--amber) 28%, transparent);
}
.np-cat--drinks {
  background: color-mix(in srgb, #7b6ba8 18%, var(--surface));
  color: #9b87c4;
  border-color: color-mix(in srgb, #7b6ba8 32%, transparent);
}
.np-cat--transport {
  background: color-mix(in srgb, var(--teal) 14%, var(--surface));
  color: var(--teal);
  border-color: color-mix(in srgb, var(--teal) 28%, transparent);
}
.np-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: var(--divider-dashed);
}
.np-line:last-child {
  border-bottom: none;
}
.np-line__ico {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--paper-edge);
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.np-line__ico--teal {
  background: color-mix(in srgb, var(--teal) 14%, transparent);
  color: var(--teal);
  border-radius: 50%;
}
.np-line__t {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.np-line__s {
  font-size: 12px;
  color: var(--ink-3);
}
.np-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2px 16px;
}
.np-next {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: var(--amber-tint);
  border: 1px solid color-mix(in srgb, var(--amber) 30%, transparent);
  border-radius: var(--radius-md);
}
.np-ui-foot {
  display: flex;
  gap: 10px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 14px 16px;
}
.np-ui-foot span {
  flex: 1;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14.5px;
}
.np-ui-foot .sec {
  background: var(--paper-edge);
  color: var(--ink);
}
.np-ui-foot .pri {
  flex: 1.3;
  background: var(--ink);
  color: var(--paper);
}
.np-tabs {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  position: relative;
  box-shadow: var(--shadow-md);
}
.np-tabs__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 0;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
}
.np-tabs__item.on {
  color: var(--ink);
  font-weight: 600;
}
.np-tabs__center {
  flex: 0 0 72px;
  display: flex;
  justify-content: center;
}
.np-tabs__fab {
  width: 52px;
  height: 52px;
  margin-top: -22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: 3px solid var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.np-screen-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px 14px 8px;
  border-bottom: 1px solid var(--line);
}
.np-screen-head__t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.1;
}
.np-screen-head__s {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
}
.np-hero-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow-md);
  padding: 20px 20px 22px;
}
.np-hero-card .l {
  font-size: 13px;
  color: var(--ink-2);
}
.np-hero-card .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.02;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
}
.np-meter {
  height: 8px;
  border-radius: 99px;
  background: var(--paper-edge);
  margin-top: 16px;
  overflow: hidden;
}
.np-meter i {
  display: block;
  height: 100%;
  width: 66%;
  background: var(--teal);
  border-radius: 99px;
}
.np-roster {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.np-roster div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .np-hero {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  .np-heroart {
    display: none;
  }
  .np-herocopy {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .np-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .np-herocta,
  .np-herochips {
    justify-content: center;
  }
  .np-g2,
  .np-beyond,
  .np-dark__inner {
    grid-template-columns: 1fr;
  }
  .np-flexcard,
  .np-beyond-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .np-flexcard p,
  .np-flexcard--ink p {
    max-width: none;
  }
  .np-shot-slot,
  .np-shot-slot--sm,
  .np-dark__phone {
    display: none;
  }
}
@media (max-width: 820px) {
  .np-navlinks {
    display: none;
  }
  .np-bento {
    grid-template-columns: 1fr;
  }
  .np-bento > * {
    grid-column: auto;
  }
  .np-flexcard {
    gap: 26px;
    padding: 34px;
  }
  .np-h1 {
    font-size: 52px;
  }
}
@media (max-width: 560px) {
  .np-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 14px;
  }
  .np-h1 {
    font-size: 40px;
    line-height: 1.06;
  }
  .np-hero {
    padding-top: 44px;
  }
  h2 {
    font-size: 33px;
  }
  .np-flexcard {
    padding: 26px;
  }
  .np-price {
    padding: 28px 22px;
  }
  .np-ribbon {
    left: 22px;
  }
  .np-herocta .np-btn {
    width: 100%;
  }
  .np-final {
    padding: 48px 24px;
  }
  .np-final h2 {
    font-size: 34px;
  }
  .np-final__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .np-final__cta .np-btn {
    width: 100%;
  }
  .np-nav__signin {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .np-float-a,
  .np-float-b,
  .np-proof,
  .np-btn,
  .np-store {
    animation: none;
    transition: none;
  }
}

/* ---- Legal documents (privacy, terms) ---- */
/* Plain, readable, and deliberately not styled like a marketing page: a privacy notice
   that looks like an advert reads like one. */
.np-legal {
  max-width: 68ch;
  margin: 0 auto;
  padding: 48px 20px 96px;
  line-height: 1.65;
}
.np-legal h1 {
  font-size: clamp(28px, 5vw, 40px);
  margin: 0 0 16px;
}
.np-legal h2 {
  font-size: clamp(19px, 3vw, 23px);
  margin: 40px 0 8px;
}
.np-legal p,
.np-legal li {
  margin: 0 0 14px;
}
.np-legal ul {
  padding-left: 20px;
}
.np-legal__lede {
  font-size: 1.1em;
}
.np-legal__meta {
  opacity: 0.7;
  font-size: 0.9em;
}
.np-legal__foot {
  margin-top: 48px;
}
.np-legal address {
  display: block;
  font-style: normal;
  margin: 0 0 14px;
}
