:root {
  --nm-purple: #7F2C87;
  --nm-purple-dark: #5C2063;
  --nm-purple-tint: #F7F0F8;
  --nm-green: #98B521;
  --nm-green-dark: #748C19;
  --nm-ink: #2B2B2B;
  --nm-gray: #595959;
  --nm-gray-light: #8A8A8A;
  --nm-line: #E7E1E8;
  --bs-body-font-family: 'Work Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { color: var(--nm-ink); background: #fff; }
h1, h2, h3, h4, .display-font { font-family: 'Baloo 2', sans-serif; font-weight: 700; letter-spacing: .2px; }

.eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nm-green-dark);
}

.btn-nm-primary {
  background: var(--nm-purple);
  border-color: var(--nm-purple);
  color: #fff;
  border-radius: 100px;
  padding: .7rem 1.6rem;
  font-weight: 600;
}
.btn-nm-primary:hover { background: var(--nm-purple-dark); border-color: var(--nm-purple-dark); color: #fff; }

.btn-nm-outline {
  border: 1.5px solid var(--nm-purple);
  color: var(--nm-purple);
  border-radius: 100px;
  padding: .65rem 1.5rem;
  font-weight: 600;
  background: transparent;
}
.btn-nm-outline:hover { background: var(--nm-purple); color: #fff; }

/* navbar */
.nm-navbar { background: rgba(255,255,255,.92); backdrop-filter: blur(6px); border-bottom: 1px solid var(--nm-line); }
.nm-navbar .nav-link { color: var(--nm-ink); font-weight: 500; margin: 0 .5rem; }
.nm-navbar .nav-link:hover { color: var(--nm-purple); }
.nm-logo-img { height: 38px; }

/* dot motif */
.nm-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--nm-green);
  margin-right: .5rem;
  vertical-align: middle;
}
.nm-dot-lg { width: 14px; height: 14px; }

/* hero */
.nm-hero {
  background: var(--nm-purple);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
}
.nm-hero::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--nm-purple-dark);
  opacity: .55;
}
.nm-hero::after {
  content: "";
  position: absolute;
  right: 120px;
  bottom: -60px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--nm-green);
}
.nm-hero-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
}
.nm-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.12; }
.nm-hero .lead { color: rgba(255,255,255,.88); font-size: 1.15rem; max-width: 640px; }

/* section header bar */
.nm-section-bar {
  background: var(--nm-purple);
  color: #fff;
  padding: 3.2rem 0 2.2rem;
}
.nm-section-bar h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .35rem; }
.nm-section-bar p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin: 0; }

section { padding: 4.5rem 0; }

.nm-pullquote {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--nm-purple);
}
.nm-pullquote b { color: var(--nm-purple-dark); }

.nm-stack-card {
  border: 1px solid var(--nm-line);
  border-radius: 16px;
  padding: 1.6rem;
  height: 100%;
  background: #fff;
  transition: border-color .15s, transform .15s;
}
.nm-stack-card:hover { border-color: var(--nm-purple); transform: translateY(-3px); }
.nm-stack-card i { font-size: 1.6rem; color: var(--nm-purple); }
.nm-stack-card h3 { font-size: 1.05rem; margin: .75rem 0 .4rem; }
.nm-stack-card p { color: var(--nm-gray); font-size: .92rem; margin: 0; }

/* clients */
.nm-client-row {
  border-top: 1px solid var(--nm-line);
  padding: 2rem 0;
}
.nm-client-row:last-child { border-bottom: 1px solid var(--nm-line); }
.nm-client-num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--nm-line);
  line-height: 1;
}
.nm-client-name { font-weight: 600; font-size: 1.05rem; margin-bottom: .15rem; }
.nm-client-loc { color: var(--nm-gray-light); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.nm-client-note {
    color: var(--nm-gray-light);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.nm-client-desc { color: var(--nm-gray); font-size: .95rem; margin-top: .6rem; }

.nm-tint { background: var(--nm-purple-tint); }

/* footer */
.nm-footer { background: #1E1421; color: rgba(255,255,255,.75); padding: 3.5rem 0 2rem; }
.nm-footer a { color: rgba(255,255,255,.75); text-decoration: none; }
.nm-footer a:hover { color: var(--nm-green); }
.nm-footer .nm-logo-img { height: 32px; margin-bottom: 1rem; }
.nm-footer hr { border-color: rgba(255,255,255,.12); margin: 2rem 0 1.25rem; }
.nm-footer .small-print { font-size: .82rem; color: rgba(255,255,255,.5); }

@media (max-width: 767.98px) {
  section { padding: 3rem 0; }
  .nm-hero { padding: 5.5rem 0 4rem; }
}
