:root {
  --npp-black: #070707;
  --npp-ink: #141414;
  --npp-muted: #666a64;
  --npp-line: #e8eae1;
  --npp-soft: #f7f8f3;
  --npp-lime: #b7ff2a;
  --npp-white: #fff;
}

* {
  box-sizing: border-box;
}

body.npp-site {
  background: var(--npp-white);
  color: var(--npp-ink);
  font-family: Inter, Manrope, Arial, sans-serif;
  margin: 0;
}

.npp-header {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--npp-line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 14px 28px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

.npp-brand {
  align-items: center;
  color: var(--npp-black);
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  text-decoration: none;
}

.npp-brand-mark {
  align-items: center;
  background: var(--npp-black);
  border-radius: 8px;
  color: var(--npp-lime);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.npp-nav {
  align-items: center;
  display: flex;
  gap: 18px;
}

.npp-nav ul {
  align-items: center;
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.npp-nav a {
  color: var(--npp-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.npp-nav-cta,
.npp-hero-actions a:first-child,
.npp-footer-actions a:first-child {
  background: var(--npp-black);
  border-radius: 999px;
  color: var(--npp-white) !important;
  display: inline-flex;
  min-height: 44px;
  padding: 12px 18px;
}

.npp-menu-toggle {
  background: transparent;
  border: 1px solid var(--npp-line);
  border-radius: 999px;
  display: none;
  min-height: 42px;
  padding: 0 16px;
}

.npp-hero {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(7, 7, 7, .95), rgba(7, 7, 7, .72)),
    radial-gradient(circle at 80% 20%, rgba(183, 255, 42, .28), transparent 30%),
    var(--npp-black);
  color: var(--npp-white);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .55fr);
  min-height: 640px;
  padding: 72px 48px 56px;
}

.npp-eyebrow {
  color: var(--npp-lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.npp-hero h1 {
  font-size: clamp(44px, 7vw, 96px);
  letter-spacing: 0;
  line-height: .92;
  margin: 0 0 22px;
  max-width: 980px;
}

.npp-hero p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.6;
  max-width: 780px;
}

.npp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.npp-hero-actions a,
.npp-footer-actions a {
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: var(--npp-white);
  font-weight: 800;
  min-height: 48px;
  padding: 14px 20px;
  text-decoration: none;
}

.npp-quote-preview {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 28px;
}

.npp-quote-preview span {
  color: var(--npp-lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.npp-quote-preview strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  margin: 14px 0 24px;
}

.npp-quote-preview dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.npp-quote-preview div,
.npp-quote-preview dl div {
  display: flex;
  justify-content: space-between;
}

.npp-quote-preview dt,
.npp-quote-preview dd {
  margin: 0;
}

.npp-quote-preview dt {
  color: rgba(255, 255, 255, .62);
}

.npp-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--npp-line);
  border-top: 1px solid var(--npp-line);
}

.npp-strip article {
  padding: 28px;
}

.npp-strip article + article {
  border-left: 1px solid var(--npp-line);
}

.npp-strip span {
  color: var(--npp-muted);
  font-weight: 900;
}

.npp-strip h2,
.npp-how h3 {
  margin: 12px 0 8px;
}

.npp-strip p,
.npp-section-head p,
.npp-how p,
.npp-delivery p,
.npp-page-content {
  color: var(--npp-muted);
  line-height: 1.65;
}

.npp-section,
.npp-page {
  padding: 64px 32px;
}

.npp-section-head {
  margin: 0 auto 28px;
  max-width: 980px;
  text-align: center;
}

.npp-section-head h1,
.npp-section-head h2,
.npp-how h2,
.npp-delivery h2,
.npp-page h1 {
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 18px;
}

.npp-how {
  background: var(--npp-soft);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.npp-how-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.npp-how-grid article {
  background: var(--npp-white);
  border: 1px solid var(--npp-line);
  border-radius: 8px;
  padding: 20px;
}

.npp-delivery,
.npp-footer {
  align-items: center;
  background: var(--npp-black);
  color: var(--npp-white);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .5fr);
  padding: 56px 48px;
}

.npp-delivery p,
.npp-footer p {
  color: rgba(255, 255, 255, .72);
}

.npp-footer h2,
.npp-delivery h2 {
  margin: 0;
}

.npp-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.npp-page {
  margin: 0 auto;
  max-width: 980px;
}

@media (max-width: 920px) {
  .npp-menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .npp-nav {
    background: var(--npp-white);
    border-bottom: 1px solid var(--npp-line);
    display: none;
    left: 0;
    padding: 18px 28px;
    position: absolute;
    right: 0;
    top: 76px;
  }

  .npp-nav.is-open,
  .npp-nav ul {
    align-items: stretch;
    display: grid;
  }

  .npp-hero,
  .npp-how,
  .npp-delivery,
  .npp-footer {
    grid-template-columns: 1fr;
  }

  .npp-strip,
  .npp-how-grid {
    grid-template-columns: 1fr;
  }

  .npp-strip article + article {
    border-left: 0;
    border-top: 1px solid var(--npp-line);
  }

  .npp-footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .npp-header,
  .npp-hero,
  .npp-section,
  .npp-delivery,
  .npp-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
