/* assets/css/styles.css */
.nm-muted{ color: var(--nm-muted) !important; }

/* Ribbon */
.nm-ribbon{
  background: linear-gradient(90deg, rgba(57,231,210,.10), rgba(139,123,255,.08), rgba(183,255,90,.06));
  border-bottom: 1px solid var(--nm-border);
}
.nm-ribbon-link{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}
.nm-ribbon-link:hover{ color: rgba(255,255,255,.98); text-decoration: underline; }
.nm-pulse{
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--nm-aqua);
  box-shadow: 0 0 0 6px rgba(57,231,210,.16);
}

/* Nav */
.navbar-toggler{
  background: linear-gradient(135deg, rgba(57,231,210,.95), rgba(139,123,255,.85))
}
.nm-nav{
  background: rgba(7,10,18,.70);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nm-nav .nav-link{ color: rgba(255,255,255,.84); }
.nm-nav .nav-link:hover{ color: rgba(255,255,255,.98); }
.nm-nav .nav-link.active{ color: var(--nm-aqua); }
.nm-logo{
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(57,231,210,.18), rgba(139,123,255,.18));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--nm-shadow-soft);
  color: rgba(255,255,255,.92);
}
.nm-pill{
  border-radius: 999px !important;
  padding: .7rem 1rem;
}
.btn-primary{
  background: linear-gradient(135deg, rgba(57,231,210,.95), rgba(139,123,255,.85));
  border: 0;
  box-shadow: 0 16px 40px rgba(57,231,210,.18);
}
.btn-primary:hover{
  filter: brightness(1.05);
}
.btn-outline-secondary{
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.86);
}
.btn-outline-secondary:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.24);
  color: rgba(255,255,255,.96);
}

/* Hero */
.nm-hero{
  position: relative;
  overflow: hidden;
}
.nm-hero-slim .nm-wave{ opacity: .75; }
.nm-blob{
  position: absolute;
  filter: blur(28px);
  opacity: .75;
  transform: translateZ(0);
}
.nm-blob-a{
  width: 420px; height: 420px;
  left: -120px; top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(57,231,210,.55), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(183,255,90,.25), transparent 55%);
}
.nm-blob-b{
  width: 460px; height: 460px;
  right: -180px; top: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(139,123,255,.52), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(255,106,163,.20), transparent 60%);
}
.nm-wave{
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  fill: rgba(255,255,255,.06);
}

/* Sections */
.nm-section{ padding: 72px 0; }
.nm-section-last{ padding-bottom: 92px; }

.nm-chipset{ display:flex; flex-wrap:wrap; gap:.5rem; justify-content:flex-end; }
.nm-chip{
  font-size: .85rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
}

/* Cards */
.nm-card, .nm-side, .nm-hero-card, .nm-contact-card, .nm-quote, .nm-price, .nm-cta{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--nm-radius);
  box-shadow: var(--nm-shadow);
}
.nm-card{ padding: 22px; }
.nm-card-accent{
  border-color: rgba(57,231,210,.22);
  box-shadow: 0 22px 70px rgba(57,231,210,.12);
}
.nm-card-top, .nm-side-top{
  display:flex; align-items:center; justify-content:space-between;
  gap: .75rem;
}
.nm-ico{
  width: 34px; height: 34px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.90);
  font-weight: 700;
}
.nm-badge{
  font-size: .78rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.84);
}
.nm-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}

/* Hero card */
.nm-hero-card{ overflow:hidden; }
.nm-hero-card-top{
  padding: 22px;
  background: radial-gradient(900px 220px at 20% 0%, rgba(57,231,210,.14), transparent 65%),
              radial-gradient(900px 220px at 80% 0%, rgba(139,123,255,.12), transparent 65%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nm-hero-card-body{ padding: 22px; }
.nm-tag{
  font-size: .8rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
}

/* Mini row */
.nm-minirow{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
@media (max-width: 992px){
  .nm-minirow{ grid-template-columns: 1fr; }
}
.nm-mini{
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.nm-mini-top{ display:flex; align-items:center; gap:.6rem; margin-bottom:.25rem; }
.nm-mini-title{ font-weight: 600; color: rgba(255,255,255,.92); }

/* Device grid */
.nm-device-grid{
  display:grid;
  gap: .75rem;
}
.nm-device{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 14px 14px 12px;
}
.nm-device-badge{
  display:inline-block;
  font-size:.75rem;
  padding:.2rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(57,231,210,.10);
  color: rgba(255,255,255,.88);
}
.nm-device-name{ font-weight:700; margin-top:.4rem; }

/* Pricing */
.nm-price{ overflow:hidden; }
.nm-price-top{
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: radial-gradient(700px 220px at 20% 0%, rgba(183,255,90,.10), transparent 62%),
              radial-gradient(700px 220px at 80% 0%, rgba(255,207,90,.10), transparent 62%);
  display:flex; align-items:center; justify-content:space-between;
}
.nm-price-featured{
  border-color: rgba(57,231,210,.24);
  box-shadow: 0 24px 80px rgba(57,231,210,.14);
}
.nm-price-tag{
  font-weight:700;
  padding:.25rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.nm-price-body{ padding: 20px; }
.nm-price-title{ font-size: 1.2rem; font-weight: 800; }
.nm-price-note{ margin-top:.35rem; }

.nm-check{
  list-style:none;
  padding-left:0;
  margin: 14px 0 18px;
}
.nm-check li{
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: .45rem;
  color: rgba(255,255,255,.86);
}
.nm-check li::before{
  content:"";
  width: .7rem; height: .7rem;
  border-radius: 4px;
  position:absolute;
  left: 0;
  top: .35rem;
  background: linear-gradient(135deg, rgba(57,231,210,.95), rgba(139,123,255,.85));
  box-shadow: 0 10px 22px rgba(57,231,210,.16);
}

/* Quotes */
.nm-quote{ padding: 20px; }
.nm-quote-top{ display:flex; align-items:center; justify-content:space-between; }
.nm-quote-mark{ font-size: 1.6rem; opacity:.7; }
.nm-quote p{ color: rgba(255,255,255,.90); }

/* Accordion */
.nm-acc .accordion-item{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: .75rem;
}
.nm-acc .accordion-button{
  background: transparent;
  color: rgba(255,255,255,.92);
}
.nm-acc .accordion-button:focus{
  box-shadow: 0 0 0 .2rem rgba(57,231,210,.20);
}
.nm-acc .accordion-button:not(.collapsed){
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.98);
}
.nm-acc .accordion-body{ background: rgba(0,0,0,.10); }

/* CTA */
.nm-cta{
  padding: 22px;
  background: radial-gradient(900px 320px at 20% 0%, rgba(57,231,210,.14), transparent 60%),
              radial-gradient(900px 320px at 80% 0%, rgba(139,123,255,.12), transparent 60%),
              linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.nm-cta-foot{ opacity:.9; }

/* Form */
.nm-form{ margin-top: 10px; }
.nm-input{
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.92) !important;
  border-radius: 16px !important;
}
.nm-input::placeholder{ color: rgba(255,255,255,.50) !important; }
.form-check-input{
  border-color: rgba(255,255,255,.22);
}
.form-check-input:checked{
  background-color: rgba(57,231,210,.95);
  border-color: rgba(57,231,210,.95);
}
.is-invalid{ border-color: rgba(255,106,163,.85) !important; }

/* Contact map placeholder */
.nm-map img{
  border: 1px solid rgba(255,255,255,.10);
}

/* Footer */
.nm-footer{
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(7,10,18,.60);
}
.nm-footer-title{
  font-weight: 700;
  margin-bottom: .6rem;
}

/* Slightly increase vertical spacing for section blocks site-wide */
[class*="-section"] {
  margin-top: 3.5rem;
}
.nm-footer-links a{
  color: rgba(255,255,255,.82);
  text-decoration: none;
}
.nm-footer-links a:hover{ color: rgba(255,255,255,.98); text-decoration: underline; }
.nm-footline{ opacity:.9; }

/* Notes */
.nm-note{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
}
