/** Shopify CDN: Minification failed

Line 337:0 Unexpected "}"

**/
/* ── NPN Dash — Landing Page Styles ── */
/* Scoped to .npn to avoid conflicts with Dawn theme */

.npn {
  --accent:     #1A6FE8;
  --accent-b:   #3D8EFF;
  --bg-base:    #07090F;
  --bg-surface: #0C1019;
  --bg-card:    #111827;
  --text-pri:   #FFFFFF;
  --text-sec:   #8B9DB5;
  --text-muted: #3D4F66;
  --border-sub: #131E30;
  --border:     #1A2D48;
  --green:      #22C55E;
  --yellow:     #F59E0B;
  --red:        #EF4444;
  font-family: 'Inter', sans-serif;
  color: var(--text-pri);
  background: var(--bg-base);
}

/* Force dark background on page wrapper */
.npn-page-bg {
  background: var(--bg-base);
  min-height: 100vh;
}

/* Override Dawn header for this page */
.npn-page-bg .header-wrapper,
.npn-page-bg .shopify-section-header {
  background: rgba(7,9,15,0.9) !important;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #131E30 !important;
}
.npn-page-bg .header__heading-link,
.npn-page-bg .header__menu-item,
.npn-page-bg .header__icon {
  color: #8B9DB5 !important;
}
.npn-page-bg .header__heading-link:hover,
.npn-page-bg .header__menu-item:hover {
  color: #FFFFFF !important;
}

/* Fonts */
.npn h1, .npn h2, .npn h3, .npn h4, .npn h5 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-pri);
}

/* Container */
.npn .npn-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Section spacing */
.npn .npn-section { padding: 100px 0; }
.npn .npn-section-sm { padding: 60px 0; }

/* Tag */
.npn .npn-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-b);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.npn .npn-tag::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.npn .npn-tag-center { justify-content: center; }

.npn h2.npn-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--text-pri);
}
.npn .npn-sub {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
  max-width: 540px;
}
.npn .npn-sub.center { margin: 0 auto; text-align: center; }

/* Pill */
.npn .npn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,111,232,0.1);
  border: 1px solid rgba(26,111,232,0.28);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px; font-weight: 600;
  color: var(--accent-b);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.npn .npn-pill-dot {
  width: 6px; height: 6px;
  background: var(--accent-b);
  border-radius: 50%;
  animation: npn-blink 2.2s ease-in-out infinite;
}
@keyframes npn-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── HERO ── */
.npn .npn-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.npn .npn-hero-glow {
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-10%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,111,232,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.npn .npn-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.npn h1.npn-h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  color: var(--text-pri);
}
.npn h1.npn-h1 .grad {
  background: linear-gradient(125deg, var(--accent-b) 20%, #78B8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.npn .npn-hero-desc {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.72;
  max-width: 440px;
  margin-bottom: 32px;
}
.npn .npn-store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.npn .npn-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.npn .npn-store-btn:hover {
  border-color: var(--accent);
  background: rgba(26,111,232,0.07);
  transform: translateY(-2px);
}
.npn .npn-store-btn-ico { font-size: 24px; line-height: 1; }
.npn .npn-store-btn-text small {
  display: block;
  font-size: 10px;
  color: var(--text-sec);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.npn .npn-store-btn-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text-pri);
}
.npn .npn-kpis { display: flex; gap: 0; }
.npn .npn-kpi {
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--border-sub);
}
.npn .npn-kpi:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.npn .npn-kpi-val { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 800; }
.npn .npn-kpi-lbl { font-size: 10px; color: var(--text-sec); text-transform: uppercase; letter-spacing: 0.1em; }

/* Phone mockup */
.npn .npn-visual { display: flex; justify-content: center; position: relative; }
.npn .npn-phone-wrap { position: relative; }
.npn .npn-phone-wrap::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 40px;
  background: radial-gradient(ellipse, rgba(26,111,232,0.4) 0%, transparent 70%);
  filter: blur(14px);
}
.npn .npn-phone {
  width: 252px; height: 515px;
  border-radius: 44px;
  border: 2px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.75), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.npn .npn-phone img { width: 100%; height: 100%; object-fit: cover; }
.npn .npn-notch {
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #000;
  border-radius: 16px;
  z-index: 10;
}
.npn .npn-float {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 13px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.npn .npn-float-l { left: -108px; top: 170px; }
.npn .npn-float-r { right: -108px; top: 290px; }
.npn .npn-float-lbl { font-size: 9px; color: var(--text-sec); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px; }
.npn .npn-float-val { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; }
.npn .c-blue  { color: var(--accent-b); }
.npn .c-green { color: var(--green); }

/* ── COMPAT ── */
.npn .npn-compat {
  padding: 26px 0;
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
}
.npn .npn-compat-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.npn .npn-compat-lbl { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.13em; }
.npn .npn-models { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.npn .npn-chip {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text-sec);
  border: 1px solid var(--border-sub);
  border-radius: 8px;
  padding: 5px 13px;
  transition: border-color 0.2s, color 0.2s;
}
.npn .npn-chip:hover { border-color: var(--accent); color: var(--accent-b); }

/* ── FEATURES ── */
.npn .npn-feat-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-top: 48px;
}
.npn .npn-feat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-sub);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.npn .npn-feat-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.npn .npn-feat-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(26,111,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.npn .npn-ico {
  width: 48px; height: 48px;
  background: rgba(26,111,232,0.1);
  border: 1px solid rgba(26,111,232,0.22);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.npn .npn-feat-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 9px; color: var(--text-pri); }
.npn .npn-feat-card p  { font-size: 14px; color: var(--text-sec); line-height: 1.65; margin-bottom: 14px; }
.npn .npn-list { list-style: none; display: flex; flex-direction: column; gap: 6px; padding: 0; margin: 0; }
.npn .npn-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-sec); }
.npn .npn-list li::before { content: '→'; color: var(--accent-b); font-size: 12px; flex-shrink: 0; margin-top: 1px; }

/* ── BLE ── */
.npn .npn-ble-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.npn .npn-ble-visual { display: flex; justify-content: center; }
.npn .npn-ble-gfx { position: relative; width: 240px; height: 240px; display: flex; align-items: center; justify-content: center; }
.npn .npn-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,111,232,0.5);
  background: rgba(26,111,232,0.04);
}
}
.npn .r1 { width:240px;height:240px; animation: npn-rpulse 3s ease-in-out infinite; }
.npn .r2 { width:170px;height:170px; animation: npn-rpulse 3s ease-in-out infinite 0.5s; }
.npn .r3 { width:108px;height:108px; animation: npn-rpulse 3s ease-in-out infinite 1s; }
@keyframes npn-rpulse { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.04)} }
.npn .npn-ble-ctr {
  width: 64px; height: 64px;
  background: linear-gradient(140deg, var(--accent), #0A48C0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 36px rgba(26,111,232,0.5);
  z-index: 1;
}
.npn .npn-ble-pts { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.npn .npn-ble-pt { display: flex; gap: 13px; align-items: flex-start; }
.npn .npn-ble-ico {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.npn .npn-ble-pt h4 { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--text-pri); }
.npn .npn-ble-pt p  { font-size: 13px; color: var(--text-sec); line-height: 1.6; }

/* ── SHOWCASE ── */
.npn .npn-show-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.npn .npn-show-items { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.npn .npn-show-item {
  display: flex; align-items: center; gap: 13px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: 8px;
  padding: 13px 16px;
  transition: border-color 0.2s;
}
.npn .npn-show-item:hover { border-color: var(--accent); }
.npn .npn-show-ico {
  width: 40px; height: 40px;
  background: rgba(26,111,232,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.npn .npn-show-item h5 { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 2px; color: var(--text-pri); }
.npn .npn-show-item p  { font-size: 12px; color: var(--text-sec); }
.npn .npn-phone-sm {
  width: 215px; height: 430px;
  border-radius: 38px;
  border: 2px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 72px rgba(0,0,0,0.65);
  margin: 0 auto;
}
.npn .npn-phone-sm img { width: 100%; height: 100%; object-fit: cover; }

/* ── SCREENSHOTS ── */
.npn .npn-ss-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.npn .npn-ss-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.npn .npn-ss-phone {
  width: 165px; height: 348px;
  border-radius: 28px;
  border: 2px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 52px rgba(0,0,0,0.6);
  transition: transform 0.25s;
}
.npn .npn-ss-phone:hover { transform: translateY(-6px); }
.npn .npn-ss-phone img { width: 100%; height: 100%; object-fit: cover; }
.npn .npn-ss-lbl { font-size: 12px; font-weight: 500; color: var(--text-sec); }

/* ── PRIVACY ── */
.npn .npn-priv-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 46px;
}
.npn .npn-priv-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-sub);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.npn .npn-priv-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.npn .npn-priv-ico { font-size: 32px; margin-bottom: 12px; }
.npn .npn-priv-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text-pri); }
.npn .npn-priv-card p  { font-size: 13px; color: var(--text-sec); line-height: 1.65; }
.npn .npn-priv-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-muted); }
.npn .npn-priv-note a { color: var(--accent-b); }

/* ── CTA ── */
.npn .npn-cta-wrap { position: relative; overflow: hidden; }
.npn .npn-cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,111,232,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.npn .npn-cta-inner { text-align: center; position: relative; z-index: 1; }
.npn .npn-cta-inner h2 { margin-bottom: 10px; }
.npn .npn-cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.npn .npn-store-btn-white {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #fff;
  border-radius: 8px; padding: 10px 16px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}
.npn .npn-store-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,255,255,0.15); }
.npn .npn-store-btn-white .npn-store-btn-text small  { color: #555; }
.npn .npn-store-btn-white .npn-store-btn-text strong { color: #000; }
.npn .npn-cta-note { margin-top: 16px; font-size: 12px; color: var(--text-muted); }

/* ── LEGAL PAGE ── */
.npn.npn-legal { padding: 60px 0 80px; }
.npn .npn-legal-header { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border-sub); }
.npn .npn-legal-header h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px,4vw,40px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; color: var(--text-pri); }
.npn .npn-legal-meta { font-size: 12px; color: var(--text-muted); }
.npn .npn-legal-body h2 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-pri); margin: 32px 0 8px; border-left: 3px solid var(--accent); padding-left: 11px; }
.npn .npn-legal-body p  { font-size: 15px; color: var(--text-sec); line-height: 1.75; margin-bottom: 10px; }
.npn .npn-legal-body ul { list-style: none; margin: 0 0 12px; padding: 0; }
.npn .npn-legal-body ul li { font-size: 15px; color: var(--text-sec); line-height: 1.75; padding: 2px 0 2px 18px; position: relative; }
.npn .npn-legal-body ul li::before { content: '·'; position: absolute; left: 5px; color: var(--accent-b); font-weight: 700; }
.npn .npn-legal-body a { color: var(--accent-b); }
.npn .npn-legal-body a:hover { text-decoration: underline; }
.npn .npn-legal-back { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--border-sub); }
.npn .npn-legal-back a { font-size: 14px; color: var(--text-sec); }
.npn .npn-legal-back a:hover { color: var(--text-pri); }

/* Dark sections */
.npn .npn-dark { background: var(--bg-surface); border-top: 1px solid var(--border-sub); border-bottom: 1px solid var(--border-sub); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .npn .npn-hero-grid  { grid-template-columns: 1fr; }
  .npn .npn-visual     { order: -1; }
  .npn .npn-float      { display: none; }
  .npn .npn-feat-grid  { grid-template-columns: 1fr; }
  .npn .npn-ble-grid   { grid-template-columns: 1fr; }
  .npn .npn-ble-visual { order: -1; }
  .npn .npn-show-grid  { grid-template-columns: 1fr; }
  .npn .npn-phone-sm   { order: -1; }
  .npn .npn-priv-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .npn .npn-section { padding: 64px 0; }
  .npn .npn-compat-inner { flex-direction: column; gap: 14px; }
  .npn .npn-ss-phone { width: 136px; height: 286px; }
  .npn .npn-cta-row { flex-direction: column; align-items: center; }
}
