:root {
  --np-ink: #1f2933;
  --np-ink-muted: #4b5563;
  --np-sand: #f7efe6;
  --np-foam: #e9f2f5;
  --np-coral: #e07a5f;
  --np-teal: #2a8896;
  --np-amber: #f2c14e;
  --np-cream: #fff8f0;
  --np-shadow: 0 18px 40px rgba(25, 34, 42, 0.12);
  --np-display-font: "Fraunces", "Georgia", serif;
  --np-body-font: "DM Sans", "Segoe UI", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--np-body-font);
  color: var(--np-ink);
  background:
    radial-gradient(circle at top left, rgba(226, 235, 242, 0.55), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(246, 232, 214, 0.7), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f2 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--np-display-font);
  letter-spacing: -0.02em;
}

a {
  color: var(--np-teal);
  text-decoration: none;
}

a:hover {
  color: #1b6b77;
}

.np-navbar {
  background: rgba(255, 252, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
}

.np-navbar .navbar-brand span {
  font-family: var(--np-display-font);
}

.np-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, var(--np-sand) 0%, var(--np-foam) 55%, #ffffff 100%);
}

.np-hero::before,
.np-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(224, 122, 95, 0.15);
  top: -80px;
  right: -90px;
}

.np-hero::after {
  width: 220px;
  height: 220px;
  background: rgba(42, 136, 150, 0.2);
  bottom: -90px;
  left: -70px;
  top: auto;
  right: auto;
}

.np-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(224, 122, 95, 0.25);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--np-ink);
}

.np-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--np-coral);
  box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.18);
}

.np-audience li {
  margin-bottom: 0.5rem;
  padding-left: 1.4rem;
  position: relative;
  color: var(--np-ink-muted);
}

.np-audience li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--np-amber);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.np-btn {
  background: var(--np-teal);
  border: none;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(42, 136, 150, 0.22);
}

.np-btn:hover {
  background: #1f7582;
  color: #fff;
}

.np-btn-outline {
  border-radius: 999px;
  border: 1px solid rgba(31, 41, 51, 0.2);
  padding: 0.7rem 1.4rem;
  font-weight: 600;
}

.np-device-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--np-shadow);
  border: 1px solid rgba(31, 41, 51, 0.08);
}

.np-device-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--np-ink-muted);
  margin-bottom: 10px;
}

.np-device-footer {
  margin-top: 12px;
  font-size: 0.9rem;
}

.np-section {
  scroll-margin-top: 96px;
}

.np-anchor {
  scroll-margin-top: 96px;
}

.np-section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 241, 235, 0.85) 100%);
}

.np-split-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  border: 1px solid rgba(31, 41, 51, 0.08);
  box-shadow: 0 16px 36px rgba(31, 41, 51, 0.1);
}

.np-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.np-list li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.7rem;
  color: var(--np-ink-muted);
}

.np-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--np-teal);
}

.np-smartadd {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.4rem;
}

.np-eyebrow {
  color: var(--np-ink-muted);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.np-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
  height: 100%;
}

.np-feature-column {
  position: relative;
}

@media (min-width: 992px) {
  .np-feature-column--right {
    padding-left: 2.5rem;
  }

  .np-feature-column--right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: rgba(31, 41, 51, 0.12);
  }
}

.np-feature-card p {
  margin-bottom: 0;
  color: var(--np-ink-muted);
}

.np-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 193, 78, 0.2);
  color: var(--np-teal);
  margin-bottom: 12px;
}

.np-feature-icon i {
  font-size: 1.1rem;
  line-height: 1;
}

.np-screenshot-tile {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  box-shadow: 0 10px 22px rgba(31, 41, 51, 0.08);
}

.np-screenshot-tile img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.np-mobile-shot-trigger {
  cursor: zoom-in;
}

.np-screenshot-modal-img {
  max-height: 80vh;
  object-fit: contain;
}

.np-mobile-carousel {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.np-mobile-carousel .carousel-inner {
  overflow: hidden;
  padding-bottom: 2.5rem;
}

.np-mobile-carousel .carousel-indicators {
  bottom: 0;
}

.np-mobile-carousel .carousel-control-prev,
.np-mobile-carousel .carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.np-mobile-carousel .carousel-control-prev-icon,
.np-mobile-carousel .carousel-control-next-icon {
  width: 2.2rem;
  height: 2.2rem;
  background-size: 100% 100%;
  opacity: 1;
}

.np-mobile-carousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M15 4l-8 8 8 8'/%3e%3c/svg%3e");
}

.np-mobile-carousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9 4l8 8-8 8'/%3e%3c/svg%3e");
}

@media (max-width: 767px) {
  .np-mobile-carousel {
    max-width: 420px;
  }

  .np-mobile-carousel .carousel-control-prev {
    left: -48px;
  }

  .np-mobile-carousel .carousel-control-next {
    right: -48px;
  }

  .np-desktop-carousel {
    padding: 0 40px;
  }

}

@media (min-width: 768px) {
  .np-mobile-carousel .carousel-control-prev {
    left: -80px;
  }

  .np-mobile-carousel .carousel-control-next {
    right: -80px;
  }

}

.np-screenshot-tile figcaption {
  font-size: 0.85rem;
  color: var(--np-ink-muted);
  margin-top: 10px;
}

.np-desktop-carousel {
  position: relative;
  padding: 0 64px;
  overflow: visible;
}

.np-desktop-carousel .carousel-inner {
  border-radius: 16px;
  overflow: hidden;
}

.np-desktop-carousel .carousel-item img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #fff;
}

@media (max-width: 767px) {
  .np-desktop-carousel .carousel-item img {
    height: 240px;
  }
}

@media (min-width: 768px) {
  .np-desktop-carousel .carousel-item img {
    height: 380px;
  }
}

@media (min-width: 1200px) {
  .np-desktop-carousel .carousel-item img {
    height: 440px;
  }
}

.np-desktop-carousel .carousel-control-prev,
.np-desktop-carousel .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

.np-desktop-carousel .carousel-control-prev {
  left: 0;
}

.np-desktop-carousel .carousel-control-next {
  right: 0;
}

.np-desktop-carousel .carousel-control-prev-icon,
.np-desktop-carousel .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-size: 100% 100%;
  opacity: 1;
}

.np-desktop-carousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M15 4l-8 8 8 8'/%3e%3c/svg%3e");
}

.np-desktop-carousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9 4l8 8-8 8'/%3e%3c/svg%3e");
}

.np-carousel-thumbs {
  position: static;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.np-carousel-thumbs [data-bs-target] {
  width: 90px;
  height: 64px;
  padding: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  background: transparent;
}

.np-carousel-thumbs [data-bs-target].active {
  border-color: var(--np-teal);
}

.np-carousel-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.np-googleplay-badge img {
  width: 190px;
  height: auto;
  display: inline-block;
}

.np-platform-card {
  display: flex;
  flex-direction: column;
}

.np-platform-list {
  flex-grow: 1;
}

@media (min-width: 992px) {
  .np-platform-cta {
    min-height: 64px;
  }
}

.np-android-featured-hero {
  margin: 0 0 1rem;
}

.np-android-featured-hero img,
.np-desktop-featured-hero img {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  border: 1px solid rgba(31, 41, 51, 0.12);
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.14);
}

.np-desktop-featured-hero {
  margin: 0 0 1rem;
}

.np-footer-copy {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #cdd7db;
}

.np-testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
  height: 100%;
}

.np-testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.np-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(31, 41, 51, 0.08);
}

.np-testimonial-name {
  font-weight: 700;
}

.np-testimonial-role {
  font-size: 0.85rem;
  color: var(--np-ink-muted);
}

.np-testimonial p {
  margin-bottom: 1rem;
}

.np-testimonial-meta {
  font-size: 0.85rem;
  color: var(--np-ink-muted);
  font-weight: 600;
}

.np-pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.1);
}

.np-pricing-compare {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.1);
}

.np-pricing-table {
  margin-bottom: 0;
}

.np-pricing-table thead th {
  font-family: var(--np-display-font);
  letter-spacing: -0.01em;
}

.np-pricing-table th,
.np-pricing-table td {
  vertical-align: middle;
  border-color: rgba(31, 41, 51, 0.08);
}

.np-pricing-table i {
  color: var(--np-teal);
  margin-right: 6px;
}

.np-pricing-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.np-tag-live {
  background: rgba(42, 136, 150, 0.16);
  color: var(--np-teal);
}

.np-tag-soon {
  background: rgba(224, 122, 95, 0.16);
  color: var(--np-coral);
}

.np-pricing-footnote {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--np-ink-muted);
}

.np-pricing-note {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.np-pricing-pill {
  padding: 8px 16px;
  background: rgba(42, 136, 150, 0.12);
  border-radius: 999px;
  font-weight: 600;
  color: var(--np-teal);
}

.np-privacy-card {
  background: var(--np-cream);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(31, 41, 51, 0.08);
}

.np-footer {
  background: #0e1b1e;
  color: #e4ecef;
}

.np-footer-contact {
  color: #f7fafc;
  font-weight: 600;
}

.np-footer-contact a {
  color: #f7fafc;
}

.np-footer-contact a:hover {
  color: var(--np-amber);
}

.np-footer a {
  color: #e4ecef;
}

.np-footer a:hover {
  color: var(--np-amber);
}

.np-footer-note {
  opacity: 0.7;
  font-size: 0.85rem;
}

.np-social {
  opacity: 0.85;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(228, 236, 239, 0.25);
}

.np-social:hover {
  opacity: 1;
  border-color: rgba(242, 193, 78, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal-up 0.7s ease forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 991px) {
  .np-hero::before,
  .np-hero::after {
    opacity: 0.6;
  }

  .np-device-card {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .np-btn,
  .np-btn-outline {
    width: 100%;
    text-align: center;
  }

  .np-pricing-note {
    justify-content: flex-start;
  }
}
