/* ============================================================
   Homepage — Sept 2026 content refresh.

   Loaded ONLY by index.html, after /enhancements.css, so it wins
   ties against both the Tailwind build and the site-wide layers.
   Every component class is namespaced .nh-* so none of script.js's
   site-wide taggers (which key off Tailwind utilities such as
   .grid, .rounded-*, .bg-white, .flex-wrap) pick them up.

   House rules carried over from enhancements.css:
   · greyscale only — motion, depth and type carry the energy
   · reveal effects are keyframe ANIMATIONS, never transitions
     (the renderer-stall note in enhancements.css)
   · reveal animations use `backwards` fill, never `both`, so once
     they finish they release `transform` back to hover styles
   · content is only ever hidden while html.nh-js is set — the
     inline head script lifts it if /home.js fails to load — and
     never under prefers-reduced-motion
   ============================================================ */

:root {
  --nh-ink: #0a0a0b;
  --nh-ink-2: #0e0e11;
  --nh-ink-3: #18181b;
  --nh-paper: #ffffff;
  --nh-paper-2: #f5f5f6;
  --nh-paper-3: #fafafa;
  --nh-line: rgba(17, 17, 17, 0.1);
  --nh-line-2: rgba(17, 17, 17, 0.2);
  --nh-text: #101012;
  --nh-text-2: #3a3b42;
  --nh-text-3: #6c6d74;
  --nh-silver: #a1a1aa;
  --nh-r: 1.25rem;
  --nh-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nh-ease-2: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------- Keyframes ---------------- */

@keyframes nh-rise { from { opacity: 0; transform: translate3d(0, 26px, 0); } to { opacity: 1; transform: none; } }
@keyframes nh-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes nh-left { from { opacity: 0; transform: translate3d(-36px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes nh-right { from { opacity: 0; transform: translate3d(36px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes nh-scale { from { opacity: 0; transform: translate3d(0, 24px, 0) scale(0.96); } to { opacity: 1; transform: none; } }
@keyframes nh-word { from { opacity: 0; transform: translate3d(0, 105%, 0) rotate(3deg); } to { opacity: 1; transform: none; } }
@keyframes nh-shine { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes nh-marquee { to { transform: translate3d(-50%, 0, 0); } }
@keyframes nh-drop-in { from { opacity: 0; transform: translate3d(0, -100%, 0); } to { opacity: 1; transform: none; } }
@keyframes nh-win-in { from { opacity: 0; transform: translate3d(0, 34px, 0) rotateX(10deg) scale(0.97); } to { opacity: 1; transform: none; } }
@keyframes nh-climb { from { transform: translate3d(0, calc(200% + 1rem), 0); } to { transform: none; } }
@keyframes nh-sink { from { transform: translate3d(0, calc(-100% - 0.5rem), 0); } to { transform: none; } }
@keyframes nh-out { from { opacity: 1; transform: none; } to { opacity: 0; transform: translate3d(0, -6px, 0); } }
@keyframes nh-in { from { opacity: 0; transform: translate3d(0, 6px, 0); } to { opacity: 1; transform: none; } }
@keyframes nh-pop { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: none; } }
@keyframes nh-pop-up { from { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.92); } to { opacity: 1; transform: none; } }
@keyframes nh-grow { from { transform: scaleX(0); } to { transform: none; } }
@keyframes nh-bar-up { from { transform: scaleY(0); } to { transform: none; } }
@keyframes nh-draw { from { stroke-dashoffset: 600; } to { stroke-dashoffset: 0; } }
@keyframes nh-icon-draw { from { stroke-dasharray: 100; stroke-dashoffset: 100; } to { stroke-dasharray: 100; stroke-dashoffset: 0; } }
@keyframes nh-donut { from { stroke-dashoffset: 263.9px; } }
@keyframes nh-float { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -10px, 0); } }
@keyframes nh-blink { 50% { opacity: 0; } }
@keyframes nh-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(24, 24, 27, 0.35); } 50% { box-shadow: 0 0 0 9px rgba(24, 24, 27, 0); } }
@keyframes nh-glow-light { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); } 50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); } }
@keyframes nh-sweep { 0% { background-position: 160% 0; } 60%, 100% { background-position: -60% 0; } }
@keyframes nh-beam { from { transform: rotate(18deg) translate3d(-4rem, 0, 0); opacity: 0.22; } to { transform: rotate(24deg) translate3d(4rem, 0, 0); opacity: 0.4; } }
@keyframes nh-drip { 0% { transform: translate3d(0, 0, 0); opacity: 0; } 15%, 80% { opacity: 1; } 100% { transform: translate3d(0, 1.6rem, 0); opacity: 0; } }
@keyframes nh-scan {
  0%, 30%, 100% { background-color: transparent; color: #d4d4d8; border-color: rgba(255, 255, 255, 0.12); }
  8%, 22% { background-color: #ffffff; color: #111114; border-color: #ffffff; }
}
@keyframes nh-chain {
  0%, 22%, 100% { background-color: transparent; color: #d4d4d8; }
  6%, 16% { background-color: #ffffff; color: #111114; }
}
@keyframes nh-spin { to { transform: rotate(360deg); } }
@keyframes nh-fade-down { from { opacity: 0; transform: translate3d(0, -6px, 0); } to { opacity: 1; transform: none; } }
@keyframes nh-ping-dark {
  0% { box-shadow: 0 0 0 0 rgba(24, 24, 27, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(24, 24, 27, 0); }
  100% { box-shadow: 0 0 0 0 rgba(24, 24, 27, 0); }
}

/* ---------------- Base utilities ---------------- */

.nh-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.nh-i {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nh-sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nh-wrap { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .nh-wrap { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nh-wrap { padding: 0 2rem; } }

.nh-sec { position: relative; padding: 6.5rem 0; background: var(--nh-paper-2); scroll-margin-top: 5rem; }
.nh-sec--white { background: var(--nh-paper); }
#faq { scroll-margin-top: 5rem; }

/* Section heads */
.nh-head { max-width: 46rem; margin-bottom: 3.5rem; }
.nh-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.nh-head--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}
.nh-head--split > div { max-width: 46rem; }
.nh-head h2,
.nh-pillars-intro h2,
.nh-alc h2,
.nh-faq-intro h2 {
  margin: 0;
  font-family: var(--nx-display);
  font-size: clamp(2rem, 3.7vw, 3.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--nh-text);
}
.nh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nh-text-3);
}
.nh-kicker::before,
.nh-head--center .nh-kicker::after,
.nh-final .nh-kicker::after {
  content: "";
  width: 1.5rem;
  height: 1.5px;
  background: currentColor;
  opacity: 0.55;
}
.nh-lede { margin: 1.15rem 0 0; font-size: 1.12rem; line-height: 1.7; color: var(--nh-text-3); }
.nh-head--dark h2 { color: #ffffff; }
.nh-head--dark .nh-lede,
.nh-head--dark .nh-kicker { color: var(--nh-silver); }

/* Buttons & links */
.nh-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.6rem;
  border-radius: 0.8rem;
  background: var(--nh-ink-3);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s var(--nh-ease-2), box-shadow 0.3s ease, background-color 0.3s ease;
}
.nh-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  z-index: -1;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.22) 50%, transparent 80%);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.nh-btn:hover { transform: translateY(-2px); background: #000000; box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22); }
.nh-btn:hover::before { left: 130%; }
.nh-btn:active { transform: translateY(0) scale(0.985); }
.nh-btn .nh-i { width: 1.1rem; height: 1.1rem; transition: transform 0.35s var(--nh-ease-2); }
.nh-btn:hover .nh-i { transform: translateX(4px); }

.nh-textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 0.25rem;
  border-bottom: 1.5px solid var(--nh-line-2);
  font-weight: 650;
  color: var(--nh-text);
  text-decoration: none;
  transition: border-color 0.3s ease;
}
.nh-textlink .nh-i { width: 1rem; height: 1rem; transition: transform 0.35s var(--nh-ease-2); }
.nh-textlink:hover { border-color: var(--nh-ink-3); }
.nh-textlink:hover .nh-i { transform: translateX(4px); }

.nh-actions-row { display: flex; justify-content: center; margin-top: 3rem; }
.nh-actions-row--start { justify-content: flex-start; margin-top: 2.25rem; }

/* ---------------- Reveal system ---------------- */
/* [data-rv] reveals the element itself; [data-rv-group] staggers its
   children (home.js sets --i on each). home.js adds .is-in on entry. */

@media (prefers-reduced-motion: no-preference) {
  .nh-js [data-rv]:not(.is-in),
  .nh-js [data-rv-group]:not(.is-in) > * { opacity: 0; }

  .nh-js [data-rv].is-in { animation: nh-rise 0.9s var(--nh-ease) backwards; }
  .nh-js [data-rv="fade"].is-in { animation-name: nh-fade; }
  .nh-js [data-rv="left"].is-in { animation-name: nh-left; }
  .nh-js [data-rv="right"].is-in { animation-name: nh-right; }
  .nh-js [data-rv="scale"].is-in { animation-name: nh-scale; animation-duration: 1s; }

  .nh-js [data-rv-group].is-in > * {
    animation: nh-rise 0.75s var(--nh-ease) backwards;
    animation-delay: calc(var(--i, 0) * 70ms);
  }
}

/* Anything with a looping animation pauses while off screen (home.js toggles .nh-off). */
.nh-off,
.nh-off *,
.nh-off *::before,
.nh-off *::after { animation-play-state: paused !important; }

/* ============================================================
   1. Top announcement / trust bar
   ============================================================ */

.nh-topbar {
  position: relative;
  overflow: hidden;
  background: var(--nh-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #d4d4d8;
  font-size: 0.8rem;
}
.nh-topbar-track { display: flex; justify-content: center; }
.nh-topbar-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.6rem 0;
  list-style: none;
}
.nh-topbar-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.25rem;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nh-topbar-list li + li { border-left: 1px solid rgba(255, 255, 255, 0.14); }
.nh-topbar-list .nh-i { width: 0.95rem; height: 0.95rem; color: #ffffff; opacity: 0.75; }
.nh-topbar-dup { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .nh-topbar-list { animation: nh-fade 0.8s ease 0.1s backwards; }
}
@media (max-width: 900px) {
  .nh-topbar-track { justify-content: flex-start; width: max-content; }
  .nh-topbar-dup { display: flex; }
  .nh-topbar-list li + li,
  .nh-topbar-dup li:first-child { border-left: 1px solid rgba(255, 255, 255, 0.14); }
}
@media (max-width: 900px) and (prefers-reduced-motion: no-preference) {
  .nh-topbar-track { animation: nh-marquee 26s linear infinite; }
}

/* ============================================================
   2. Header + mega menu
   ============================================================ */

.nh-header .h-16 { gap: 1rem; }
.nh-nav { display: none; flex: 1; justify-content: center; min-width: 0; }
.nh-nav-list { display: flex; align-items: center; gap: 0.05rem; margin: 0; padding: 0; list-style: none; }
.nh-nav-item { position: static; }

/* enhancements.css styles `header nav a` as uppercase micro-caps with an
   underline pseudo — reset that for everything inside the new nav. */
.nh-header .nh-nav a { text-transform: none; letter-spacing: 0; }
.nh-header .nh-nav a::after { display: none; }

.nh-nav-trigger,
.nh-header .nh-nav a.nh-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.62rem;
  border: 0;
  border-radius: 0.6rem;
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--nh-text-2);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nh-nav-trigger .nh-i { width: 0.9rem; height: 0.9rem; opacity: 0.6; transition: transform 0.35s var(--nh-ease-2); }
.nh-nav-trigger:hover,
.nh-header .nh-nav a.nh-nav-link:hover,
.nh-nav-item.is-open > .nh-nav-trigger { color: var(--nh-text); background: rgba(17, 17, 17, 0.06); }
.nh-nav-item.is-open > .nh-nav-trigger .nh-i { transform: rotate(180deg); opacity: 1; }

.nh-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0 1rem 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -8px, 0);
  transition: opacity 0.2s ease, transform 0.3s var(--nh-ease), visibility 0s linear 0.3s;
}
.nh-nav-item.is-open > .nh-mega,
html:not(.nh-js) .nh-nav-item:hover > .nh-mega,
html:not(.nh-js) .nh-nav-item:focus-within > .nh-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: opacity 0.22s ease, transform 0.4s var(--nh-ease), visibility 0s;
}
.nh-mega-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 19rem;
  gap: 1.5rem;
  max-width: 76rem;
  margin: 0.5rem auto 0;
  padding: 1.4rem;
  border: 1px solid var(--nh-line);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.16);
}
.nh-mega-title {
  margin: 0.3rem 0 0.7rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nh-text-3);
}
.nh-mega-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.1rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nh-mega-list--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nh-header .nh-mega-list a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--nh-text-3);
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.3s var(--nh-ease-2);
}
.nh-mega-list strong { font-size: 0.92rem; font-weight: 650; color: var(--nh-text); }
.nh-header .nh-mega-list a:hover { background: #f3f3f4; transform: translateX(3px); }
.nh-header .nh-mega-list--3 a { flex-direction: row; align-items: center; gap: 0.65rem; }
.nh-mega-list--3 .nh-i { width: 1.15rem; height: 1.15rem; color: var(--nh-text-2); }

.nh-mega-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  border-radius: 1rem;
  overflow: hidden;
  background: radial-gradient(18rem 12rem at 100% 0%, rgba(255, 255, 255, 0.14), transparent 65%), linear-gradient(160deg, #0d0d0f, #1c1c20);
  color: #c4c4cc;
}
.nh-mega-feature-ico {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.nh-mega-feature .nh-mega-feature-title {
  margin: 0 0 0.4rem;
  font-family: var(--nx-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.nh-mega-feature p { margin: 0; font-size: 0.86rem; line-height: 1.55; }
.nh-header .nh-mega-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.1rem;
  font-size: 0.86rem;
  font-weight: 650;
  color: #ffffff;
  text-decoration: none;
}
.nh-mega-feature-cta .nh-i { width: 1rem; height: 1rem; transition: transform 0.35s var(--nh-ease-2); }
.nh-mega-feature-cta:hover .nh-i { transform: translateX(4px); }
.nh-mega-feature p.nh-mega-chain,
.nh-chain { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem 0; }
.nh-mega-chain span {
  position: relative;
  margin-right: 1.15rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #e4e4e7;
}
.nh-mega-chain span:not(:last-child)::after,
.nh-chain span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1.05rem;
  top: 50%;
  transform: translateY(-50%);
  color: #71717a;
  font-weight: 400;
}

@media (prefers-reduced-motion: no-preference) {
  .nh-nav-item.is-open .nh-mega-list li,
  .nh-nav-item.is-open .nh-mega-feature {
    animation: nh-rise 0.45s var(--nh-ease) backwards;
    animation-delay: calc(var(--i, 0) * 22ms + 40ms);
  }
  .nh-nav-item.is-open .nh-mega-feature { animation-delay: 0.1s; }
}

/* Header CTA: shape/size come from enhancements' header a.nx-nav-cta. */
.nh-header a.nh-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  white-space: nowrap;
  text-decoration: none;
}
.nh-header a.nh-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.nh-header a.nh-cta:hover::before { left: 130%; }

/* Dim the page behind an open mega menu (element created by home.js). */
.nh-scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 10, 11, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
body.nh-mega-on .nh-scrim { opacity: 1; visibility: visible; transition: opacity 0.25s ease; }

/* Burger */
.nh-burger-btn {
  display: inline-grid;
  place-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  color: var(--nh-text);
  cursor: pointer;
}
.nh-burger-btn:hover { background: rgba(17, 17, 17, 0.06); }
.nh-burger-btn span {
  display: block;
  width: 20px;
  height: 1.75px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.35s var(--nh-ease), opacity 0.2s ease;
}
.nh-burger-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
.nh-burger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nh-burger-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }

/* Mobile / tablet menu */
.nh-mobile {
  max-height: calc(100vh - 4rem);
  max-height: calc(100dvh - 4rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid var(--nh-line);
}
.nh-mobile-inner { display: flex; flex-direction: column; padding: 0.75rem 1rem 1.5rem; }
.nh-m-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.35rem;
  border-bottom: 1px solid var(--nh-line);
  font-size: 1rem;
  font-weight: 650;
  color: var(--nh-text);
  list-style: none;
  cursor: pointer;
}
.nh-m-group summary::-webkit-details-marker { display: none; }
.nh-m-group summary::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.35rem;
  border-right: 1.75px solid currentColor;
  border-bottom: 1.75px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s var(--nh-ease-2);
}
.nh-m-group[open] summary::after { transform: translateY(2px) rotate(-135deg); }
.nh-m-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.1rem 0.5rem;
  margin: 0;
  padding: 0.5rem 0 0.75rem;
  list-style: none;
}
.nh-m-group ul a {
  display: block;
  padding: 0.55rem 0.35rem;
  border-radius: 0.5rem;
  font-size: 0.92rem;
  color: var(--nh-text-2);
  text-decoration: none;
}
.nh-m-group ul a:hover { background: rgba(17, 17, 17, 0.05); color: var(--nh-text); }
.nh-m-link {
  display: block;
  padding: 0.9rem 0.35rem;
  border-bottom: 1px solid var(--nh-line);
  font-weight: 650;
  color: var(--nh-text);
  text-decoration: none;
}
.nh-m-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.1rem;
  padding: 0.95rem;
  border-radius: 0.8rem;
  background: var(--nh-ink-3);
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
@media (prefers-reduced-motion: no-preference) {
  #mobile-menu:not(.hidden) .nh-mobile-inner > * { animation: nh-rise 0.45s var(--nh-ease) backwards; }
  #mobile-menu:not(.hidden) .nh-mobile-inner > :nth-child(2) { animation-delay: 0.03s; }
  #mobile-menu:not(.hidden) .nh-mobile-inner > :nth-child(3) { animation-delay: 0.06s; }
  #mobile-menu:not(.hidden) .nh-mobile-inner > :nth-child(4) { animation-delay: 0.09s; }
  #mobile-menu:not(.hidden) .nh-mobile-inner > :nth-child(5) { animation-delay: 0.12s; }
  #mobile-menu:not(.hidden) .nh-mobile-inner > :nth-child(6) { animation-delay: 0.15s; }
  #mobile-menu:not(.hidden) .nh-mobile-inner > :nth-child(7) { animation-delay: 0.18s; }
  #mobile-menu:not(.hidden) .nh-mobile-inner > :nth-child(n + 8) { animation-delay: 0.21s; }
}

/* Breakpoints: max-w-7xl caps the header row at 1216px inner width at
   every desktop size, and logo + seven items + search + currency select +
   CTA only fit in that from a 1280px viewport. Below it the burger takes
   over (Tailwind's md: split at 768px had left 768–1023px with no
   navigation at all). home.js's DESKTOP_NAV must match. */
@media (max-width: 1279px) {
  .nh-header .nh-actions.md\:flex { display: none; }
  .nh-header .nh-burger.md\:hidden { display: flex; align-items: center; gap: 0.25rem; }
  .nh-header #mobile-menu.md\:hidden:not(.hidden) { display: block; }
}
@media (min-width: 1280px) {
  .nh-nav { display: flex; }
  .nh-header .nh-actions { display: flex; align-items: center; gap: 0.5rem; }
  .nh-header .nh-burger,
  .nh-header #mobile-menu { display: none !important; }
  /* script.js injects a search pill and a currency <select> into this
     wrapper; both are compacted so the row fits (Ctrl K still opens search). */
  .nh-header .nx-search-btn span { display: none; }
  .nh-header .nx-search-btn { padding: 0.5rem; }
  .nh-header [data-currency-switcher] { margin-right: 0; padding: 0.35rem 0.4rem; font-size: 0.78rem; }
  .nh-nav-trigger,
  .nh-header .nh-nav a.nh-nav-link { padding: 0.5rem 0.5rem; font-size: 0.85rem; }
}

/* ============================================================
   3. Hero
   ============================================================ */

.nh-hero { min-height: 0; }
.nh-hero .nx-hero-inner { padding-top: 5rem; padding-bottom: 5.5rem; }
@media (min-width: 1024px) {
  .nh-hero .nx-hero-inner.nx-hero-split {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 3.25rem;
    padding-top: 5.5rem;
    padding-bottom: 6.5rem;
  }
}

.nh-hero .nx-hero-bg { transform: translate3d(calc(var(--px, 0) * 30px), calc(var(--py, 0) * 22px), 0); transition: transform 0.8s var(--nh-ease-2); }
.nh-hero-beam {
  position: absolute;
  top: -30%;
  left: 52%;
  width: 34rem;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07) 40%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.07) 60%, transparent);
  filter: blur(30px);
  transform: rotate(18deg);
  opacity: 0.3;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .nh-hero-beam { animation: nh-beam 11s ease-in-out infinite alternate; }
}

/* Headline: animated word-by-word, so the site-wide h1 entrance
   (enhancements .nx-h1 and script.js v7 [data-nx7-enter]) is switched
   off for it. v9's gradient headline is removed by home.js too — a
   background-clip:text parent renders transformed children invisible. */
.nh-hero .nx-h1.nh-h1,
body.nx-ready .nh-hero h1.nh-h1[data-nx7-enter] { animation: none; }
.nh-hero .nx-h1.nh-h1 {
  max-width: 40rem;
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 4.4vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #ffffff;
  -webkit-text-fill-color: currentColor;
  background: none;
}
.nh-w {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
  vertical-align: top;
}
.nh-w > span { display: inline-block; }
.nh-w--mark { position: relative; padding-bottom: 0.3em; margin-bottom: -0.3em; }
.nh-grad {
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 35%, #8a8a93 50%, #ffffff 65%, #ffffff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.nh-underline {
  position: absolute;
  left: 0;
  bottom: 0.06em;
  width: 100%;
  height: 0.24em;
  overflow: visible;
}
.nh-underline path { fill: none; stroke: #d4d4d8; stroke-width: 3.5; stroke-linecap: round; vector-effect: non-scaling-stroke; }

@media (prefers-reduced-motion: no-preference) {
  .nh-w > span { animation: nh-word 1s var(--nh-ease) backwards; animation-delay: calc(0.12s + var(--wi, 0) * 55ms); }
  .nh-w > .nh-grad {
    animation: nh-word 1s var(--nh-ease) backwards, nh-shine 7s linear infinite;
    animation-delay: calc(0.12s + var(--wi, 10) * 55ms), 2.2s;
  }
  .nh-underline path { stroke-dasharray: 240; animation: nh-draw 1.1s var(--nh-ease) 1.05s backwards; }
}

.nh-stats { margin: 0; padding-left: 0; list-style: none; }

/* ---- Visibility console (decorative) ---- */

.nh-console { position: relative; min-height: 31rem; perspective: 1600px; }
.nh-layer {
  position: absolute;
  transform: translate3d(calc(var(--px, 0) * var(--d, 10px)), calc(var(--py, 0) * var(--d, 10px)), 0);
  transition: transform 0.7s var(--nh-ease-2);
}
.nh-layer--serp { top: 0; left: 0; z-index: 1; width: 84%; --d: 12px; }
.nh-layer--ai { top: 15.25rem; right: 0; z-index: 2; width: 70%; --d: 24px; }
.nh-layer--chip1 { bottom: 0; left: 3%; z-index: 3; --d: 36px; }
.nh-layer--chip2 { top: -1.4rem; right: 0; z-index: 3; --d: 30px; }

.nh-win {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.15rem;
  background: rgba(22, 22, 26, 0.86);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #e4e4e7;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.nh-serp { padding: 1rem 1.1rem 1.15rem; }
.nh-win-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8a93;
}
.nh-win-bar i { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: #3a3a40; }
.nh-win-bar span { margin-left: 0.4rem; }
.nh-serp-q {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  background: #0e0e11;
  font-size: 0.88rem;
  color: #f4f4f5;
}
.nh-serp-q .nh-i { width: 1rem; height: 1rem; color: #8a8a93; }
.nh-caret { width: 1.5px; height: 1.05em; margin-left: 1px; background: #ffffff; }
.nh-serp-list { display: grid; gap: 0.5rem; margin: 0; padding: 0; list-style: none; }
.nh-serp-row {
  position: relative;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  height: 3.4rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.035);
}
.nh-serp-row.is-you {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.nh-serp-row.is-you::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.16) 50%, transparent 65%);
  background-size: 250% 100%;
  background-position: 160% 0;
  pointer-events: none;
}
.nh-rank { position: relative; display: block; height: 1.25em; font-family: var(--nx-display); font-size: 0.98rem; font-weight: 700; color: #ffffff; }
.nh-rank b { position: absolute; inset: 0; font-weight: inherit; }
.nh-rank b:first-child { opacity: 0; }
.nh-serp-txt { min-width: 0; }
.nh-serp-txt b { display: block; overflow: hidden; font-size: 0.82rem; font-weight: 600; color: #ffffff; text-overflow: ellipsis; white-space: nowrap; }
.nh-serp-txt i { display: block; width: var(--w); height: 0.3rem; margin-top: 0.35rem; border-radius: 9999px; background: rgba(255, 255, 255, 0.14); }
.nh-delta { padding: 0.25rem 0.5rem; border-radius: 9999px; background: #ffffff; font-size: 0.68rem; font-weight: 800; color: #111114; }

.nh-ai {
  padding: 1rem 1.1rem 1.15rem;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(250, 250, 250, 0.97);
  color: var(--nh-text);
}
.nh-ai-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; }
.nh-ai-spark { display: grid; place-items: center; width: 1.9rem; height: 1.9rem; flex-shrink: 0; border-radius: 0.6rem; background: var(--nh-ink-3); color: #ffffff; }
.nh-ai-spark .nh-i { width: 1rem; height: 1rem; }
.nh-ai-tabs { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.nh-ai-tabs em {
  padding: 0.28rem 0.5rem;
  border-radius: 9999px;
  background: #ececed;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 650;
  color: var(--nh-text-3);
  transition: background-color 0.4s ease, color 0.4s ease;
}
.nh-ai-tabs em.is-on { background: var(--nh-ink-3); color: #ffffff; }
.nh-ai-q { margin: 0 0 0.7rem; font-size: 0.86rem; font-weight: 650; color: var(--nh-text); }
.nh-ai-lines i { display: block; width: var(--w); height: 0.42rem; margin-top: 0.45rem; border-radius: 9999px; background: #e4e4e7; transform-origin: left; }
.nh-cite {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  padding: 0.4rem 0.75rem 0.4rem 0.4rem;
  border-radius: 9999px;
  background: var(--nh-ink-3);
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
}
.nh-cite-n { display: grid; place-items: center; width: 1.3rem; height: 1.3rem; border-radius: 50%; background: #ffffff; font-size: 0.66rem; font-weight: 800; color: #111114; }
.nh-cite em { padding-left: 0.5rem; border-left: 1px solid rgba(255, 255, 255, 0.2); font-size: 0.62rem; font-style: normal; letter-spacing: 0.12em; text-transform: uppercase; color: var(--nh-silver); }

.nh-chip {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 10.5rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  color: var(--nh-text);
}
.nh-chip-k { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--nh-text-3); }
.nh-chip strong { font-family: var(--nx-display); font-size: 1.6rem; line-height: 1.05; letter-spacing: -0.03em; }
.nh-spark { display: block; width: 100%; height: 2rem; margin-top: 0.3rem; overflow: visible; }
.nh-spark path { fill: none; stroke: var(--nh-ink-3); stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.nh-chip--cite { flex-direction: row; align-items: center; gap: 0.7rem; min-width: 0; border: 1px solid rgba(255, 255, 255, 0.12); background: #18181b; color: #ffffff; }
.nh-chip--cite > span:last-child { display: flex; flex-direction: column; gap: 0.1rem; }
.nh-chip--cite .nh-chip-k { color: var(--nh-silver); }
.nh-chip-ico { display: grid; place-items: center; width: 2.15rem; height: 2.15rem; border-radius: 0.65rem; background: rgba(255, 255, 255, 0.1); }
.nh-chip-ico .nh-i { width: 1.05rem; height: 1.05rem; }

/* Console choreography: plays once when home.js adds .is-play, then idles. */
@media (prefers-reduced-motion: no-preference) {
  .nh-js .nh-console:not(.is-play) .nh-win,
  .nh-js .nh-console:not(.is-play) .nh-chip { opacity: 0; }

  .nh-caret { animation: nh-blink 1s steps(1) infinite; }
  .nh-console.is-play .nh-serp { animation: nh-win-in 0.9s var(--nh-ease) 0.3s backwards; }
  .nh-console.is-play .nh-serp-row.is-you { animation: nh-climb 1.3s var(--nh-ease) 1.9s backwards; }
  .nh-console.is-play .nh-serp-row:not(.is-you) { animation: nh-sink 1.3s var(--nh-ease) 1.9s backwards; }
  .nh-console.is-play .nh-serp-row.is-you::after { animation: nh-sweep 5s ease-in-out 3.6s infinite; }
  .nh-console.is-play .nh-rank b:first-child { animation: nh-out 0.35s ease 2.45s backwards; }
  .nh-console.is-play .nh-rank b:last-child { animation: nh-in 0.35s ease 2.45s backwards; }
  .nh-console.is-play .nh-delta { animation: nh-pop 0.5s var(--nh-ease) 2.85s backwards; }
  .nh-console.is-play .nh-ai { animation: nh-win-in 0.9s var(--nh-ease) 3s backwards; }
  .nh-console.is-play .nh-ai-lines i { animation: nh-grow 0.7s var(--nh-ease) 3.55s backwards; }
  .nh-console.is-play .nh-ai-lines i:nth-child(2) { animation-delay: 3.75s; }
  .nh-console.is-play .nh-ai-lines i:nth-child(3) { animation-delay: 3.95s; }
  .nh-console.is-play .nh-cite { animation: nh-pop 0.55s var(--nh-ease) 4.35s backwards, nh-glow 2.8s ease-in-out 5.2s infinite; }
  .nh-console.is-play .nh-chip--cite { animation: nh-pop-up 0.7s var(--nh-ease) 4.5s backwards, nh-float 6s ease-in-out 5.3s infinite; }
  .nh-console.is-play .nh-chip--traffic { animation: nh-pop-up 0.7s var(--nh-ease) 4.75s backwards, nh-float 7s ease-in-out 5.6s infinite; }
  .nh-console.is-play .nh-spark path { stroke-dasharray: 600; animation: nh-draw 1.6s var(--nh-ease) 5s backwards; }
  .nh-ai-spark { animation: nh-glow 3s ease-in-out 5s infinite; }
}

@media (max-width: 1023px) {
  .nh-console { max-width: 34rem; min-height: 0; margin: 0.5rem auto 0; display: grid; }
  .nh-layer { position: relative; inset: auto; width: auto !important; transform: none !important; }
  .nh-layer--ai { margin: -2.75rem 0 0 16%; }
  .nh-layer--chip1,
  .nh-layer--chip2 { display: none; }
}
@media (max-width: 520px) {
  .nh-layer--ai { margin-left: 7%; }
  .nh-serp { padding: 0.85rem 0.85rem 0.95rem; }
  .nh-serp-row { height: 3rem; gap: 0.55rem; padding: 0 0.7rem; }
  .nh-serp-q { font-size: 0.8rem; }
  .nh-delta { display: none; }
}

@media (max-width: 767px) {
  .nh-hero .nx-h1.nh-h1 { font-size: clamp(2rem, 8.6vw, 2.6rem) !important; line-height: 1.05 !important; }
  .nh-hero .nx-hero-inner { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}

/* ============================================================
   Brands we've grown
   ============================================================ */

.nh-brands {
  position: relative;
  padding: 5rem 0 4.75rem;
  overflow: hidden;
  background: var(--nh-ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.nh-brands .nh-head { margin-bottom: 2.75rem; }
.nh-brands h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.nh-brands h2::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 2px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, transparent, #a1a1aa, transparent);
}
.nh-brands .nh-lede { margin-top: 1rem; font-size: 1rem; }
.nh-logos {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.nh-logos-track { display: flex; width: max-content; }
.nh-logo-set { display: flex; gap: 1.1rem; margin: 0; padding: 0 1.1rem 0 0; list-style: none; }
.nh-logo {
  display: grid;
  place-items: center;
  width: 10.5rem;
  height: 5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 0.9rem;
  background: #ffffff;
  transition: transform 0.35s var(--nh-ease-2), box-shadow 0.35s ease;
}
.nh-logo img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(1) contrast(1.05); opacity: 0.85; transition: filter 0.4s ease, opacity 0.4s ease; }
.nh-logo:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45); }
.nh-logo:hover img { filter: none; opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .nh-logos-track { animation: nh-marquee 48s linear infinite; }
  .nh-logos:hover .nh-logos-track { animation-play-state: paused; }
}

/* ============================================================
   Why businesses choose NSP — trust cards
   ============================================================ */

.nh-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) { .nh-trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .nh-trust-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.1rem; } }
.nh-trust {
  position: relative;
  padding: 1.5rem 1.25rem 1.4rem;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: 1.1rem;
  background: var(--nh-paper-3);
  transition: transform 0.4s var(--nh-ease-2), border-color 0.3s ease, box-shadow 0.4s ease, background-color 0.3s ease;
}
.nh-trust::before,
.nh-diff::before,
.nh-svc-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  z-index: 1;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #18181b, #a1a1aa);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s var(--nh-ease);
  pointer-events: none;
}
.nh-trust:hover { transform: translateY(-6px); border-color: var(--nh-line-2); background: #ffffff; box-shadow: 0 22px 44px rgba(0, 0, 0, 0.09); }
.nh-trust:hover::before,
.nh-diff:hover::before,
.nh-svc-link:hover::before { transform: scaleX(1); }

.nh-trust-ico,
.nh-svc-ico,
.nh-diff-ico {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--nh-line);
  border-radius: 0.85rem;
  background: #ffffff;
  color: var(--nh-ink-3);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.45s var(--nh-ease-2);
}
.nh-trust-ico .nh-i,
.nh-svc-ico .nh-i,
.nh-diff-ico .nh-i { width: 1.3rem; height: 1.3rem; }
.nh-trust:hover .nh-trust-ico,
.nh-diff:hover .nh-diff-ico,
.nh-svc-link:hover .nh-svc-ico { border-color: var(--nh-ink-3); background: var(--nh-ink-3); color: #ffffff; transform: rotate(-6deg) scale(1.05); }
.nh-trust-ico { margin-bottom: 1.1rem; }
.nh-trust-val { margin: 0; font-family: var(--nx-display); font-size: 1.4rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; color: var(--nh-text); }
.nh-trust-val [data-count-to] { font-weight: 700; }
.nh-trust-txt { margin: 0.4rem 0 0; font-size: 0.86rem; line-height: 1.45; color: var(--nh-text-3); }

@media (prefers-reduced-motion: no-preference) {
  .nh-js [data-rv-group].is-in .nh-trust-ico .nh-i,
  .nh-js [data-rv-group].is-in .nh-diff-ico .nh-i {
    animation: nh-icon-draw 1.5s var(--nh-ease) backwards;
    animation-delay: calc(var(--i, 0) * 70ms + 0.3s);
  }
}

/* ============================================================
   Google rankings are no longer enough
   ============================================================ */

.nh-shift-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .nh-shift-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.nh-flow {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: 1.5rem;
  background: #ffffff;
}
.nh-flow-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; }
.nh-flow-head h3 { margin: 0; font-size: 1.35rem; color: var(--nh-text); }
.nh-flow-tag {
  order: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 9999px;
  background: #ececed;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nh-text-3);
}
.nh-flow-steps { display: flex; flex-direction: column; gap: 1.9rem; margin: 0; padding: 0; list-style: none; }
.nh-flow-steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--nh-line);
  border-radius: 0.95rem;
  background: var(--nh-paper-2);
  font-weight: 650;
  color: var(--nh-text-2);
}
.nh-flow-ico { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; flex-shrink: 0; border: 1px solid var(--nh-line); border-radius: 0.7rem; background: #ffffff; color: var(--nh-text-2); }
.nh-flow-ico .nh-i { width: 1.1rem; height: 1.1rem; }
/* Connector + a pulse travelling down it */
.nh-flow-steps li + li::before,
.nh-flow--ai .nh-flow-steps li::before {
  content: "";
  position: absolute;
  top: -1.9rem;
  left: calc(2.125rem - 0.75px);
  width: 1.5px;
  height: 1.9rem;
  background: var(--nh-line-2);
}
.nh-flow-steps li + li::after,
.nh-flow--ai .nh-flow-steps li::after {
  content: "";
  position: absolute;
  top: -1.9rem;
  left: calc(2.125rem - 2.5px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nh-text-3);
  opacity: 0;
}

.nh-flow--ai {
  border-color: rgba(255, 255, 255, 0.08);
  background: radial-gradient(28rem 20rem at 100% 0%, rgba(255, 255, 255, 0.12), transparent 60%), var(--nh-ink-2);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.22);
  color: #ffffff;
}
.nh-flow--ai h3 { color: #ffffff; }
.nh-flow--ai .nh-flow-tag { background: #ffffff; color: #111114; }
.nh-flow--ai .nh-flow-steps li { border-color: rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.06); color: #ffffff; }
.nh-flow--ai .nh-flow-ico { border: 0; background: #ffffff; color: #111114; }
.nh-flow--ai .nh-flow-steps li::before { background: rgba(255, 255, 255, 0.22); }
.nh-flow--ai .nh-flow-steps li::after { background: #ffffff; box-shadow: 0 0 10px rgba(255, 255, 255, 0.8); }
.nh-engines { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 0 0 1.9rem; padding: 0; list-style: none; }
.nh-engines li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #d4d4d8;
}
.nh-engines li::before { content: ""; width: 0.42rem; height: 0.42rem; flex-shrink: 0; border-radius: 50%; background: currentColor; opacity: 0.6; }

@media (prefers-reduced-motion: no-preference) {
  .nh-flow-steps li + li::after { animation: nh-drip 2.6s ease-in infinite; }
  .nh-flow--ai .nh-flow-steps li::after { animation: nh-drip 1.6s ease-in infinite; }
  .nh-flow--ai .nh-flow-steps li:nth-child(2)::after { animation-delay: 0.4s; }
  .nh-flow--ai .nh-flow-steps li:nth-child(3)::after { animation-delay: 0.8s; }
  .nh-engines li { animation: nh-scan 6s ease-in-out infinite; }
  .nh-engines li:nth-child(2) { animation-delay: 1.5s; }
  .nh-engines li:nth-child(3) { animation-delay: 3s; }
  .nh-engines li:nth-child(4) { animation-delay: 4.5s; }

  .nh-js .nh-flow:not(.is-in) .nh-flow-steps li,
  .nh-js .nh-flow:not(.is-in) .nh-engines { opacity: 0; }
  .nh-flow.is-in .nh-flow-steps li,
  .nh-flow.is-in .nh-engines { animation: nh-rise 0.6s var(--nh-ease) backwards; }
  .nh-flow.is-in .nh-engines { animation-delay: 0.2s; }
  .nh-flow.is-in .nh-flow-steps li:nth-child(1) { animation-delay: 0.3s; }
  .nh-flow.is-in .nh-flow-steps li:nth-child(2) { animation-delay: 0.5s; }
  .nh-flow.is-in .nh-flow-steps li:nth-child(3) { animation-delay: 0.7s; }
}

/* ============================================================
   Services
   ============================================================ */

.nh-svc-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin: 0; padding: 0; list-style: none; }
@media (min-width: 640px) {
  .nh-svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nh-svc--feature { grid-column: 1 / -1; }
}
@media (min-width: 1100px) {
  .nh-svc-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .nh-svc { grid-column: span 4; }
  .nh-svc--feature { grid-column: span 6; }
}
.nh-svc-link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-r);
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.4s ease, transform 0.18s ease-out;
}
.nh-svc-link:hover { border-color: var(--nh-line-2); box-shadow: 0 26px 52px rgba(0, 0, 0, 0.1); }
.nh-svc h3 { margin: 1.2rem 0 0.5rem; font-size: 1.2rem; line-height: 1.25; color: var(--nh-text); }
.nh-svc-desc { display: block; flex: 1; font-size: 0.93rem; line-height: 1.6; color: var(--nh-text-3); }
.nh-svc-cta { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.4rem; font-size: 0.88rem; font-weight: 650; color: var(--nh-text); }
.nh-svc-cta .nh-i { width: 1rem; height: 1rem; transition: transform 0.35s var(--nh-ease-2); }
.nh-svc-link:hover .nh-svc-cta .nh-i { transform: translateX(5px); }

.nh-svc--feature .nh-svc-link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  min-height: 19rem;
  padding: 2rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: radial-gradient(28rem 18rem at 100% 0%, rgba(255, 255, 255, 0.11), transparent 60%), var(--nh-ink-2);
  color: #ffffff;
}
@media (min-width: 640px) { .nh-svc--feature .nh-svc-link { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); align-items: stretch; } }
.nh-svc--feature .nh-svc-link:hover { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); }
.nh-svc--feature .nh-svc-link::before { background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.3)); }
.nh-svc--feature .nh-svc-link.nx-spot::after { background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.1), transparent 60%); }
.nh-svc-body { display: flex; flex-direction: column; }
.nh-svc--feature h3 { font-size: 1.55rem; color: #ffffff; }
.nh-svc--feature .nh-svc-desc { font-size: 1rem; color: var(--nh-silver); }
.nh-svc--feature .nh-svc-cta { color: #ffffff; }
.nh-svc--feature .nh-svc-ico { border-color: rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.08); color: #ffffff; }
.nh-svc--feature .nh-svc-link:hover .nh-svc-ico { border-color: #ffffff; background: #ffffff; color: #111114; }

.nh-viz {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 11rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}
.nh-viz-k { position: absolute; top: 1rem; left: 1.1rem; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #8a8a93; }
.nh-bars { display: flex; align-items: flex-end; gap: 0.45rem; height: 7.25rem; }
.nh-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 0.35rem 0.35rem 0.15rem 0.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18));
  transform-origin: bottom;
}
.nh-bars i:last-child { background: #ffffff; box-shadow: 0 0 22px rgba(255, 255, 255, 0.35); }
.nh-viz--chat { justify-content: center; gap: 0.65rem; }
.nh-bubble { display: block; max-width: 88%; padding: 0.65rem 0.8rem; border-radius: 0.9rem; font-size: 0.8rem; }
.nh-bubble--q { align-self: flex-end; border-bottom-right-radius: 0.25rem; background: #ffffff; font-weight: 650; color: #111114; }
.nh-bubble--a {
  align-self: flex-start;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.07);
}
.nh-bubble--a i { display: block; width: var(--w); height: 0.38rem; margin: 0.25rem 0 0.45rem; border-radius: 9999px; background: rgba(255, 255, 255, 0.28); transform-origin: left; }
.nh-mini-cite {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
  padding: 0.28rem 0.6rem 0.28rem 0.3rem;
  border-radius: 9999px;
  background: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  color: #111114;
}
.nh-mini-cite::before { content: "1"; display: grid; place-items: center; width: 1rem; height: 1rem; border-radius: 50%; background: #111114; font-size: 0.58rem; color: #ffffff; }

@media (prefers-reduced-motion: no-preference) {
  .nh-js [data-rv-group].is-in .nh-bars i { animation: nh-bar-up 0.9s var(--nh-ease) backwards; }
  .nh-js [data-rv-group].is-in .nh-bars i:nth-child(1) { animation-delay: 0.35s; }
  .nh-js [data-rv-group].is-in .nh-bars i:nth-child(2) { animation-delay: 0.42s; }
  .nh-js [data-rv-group].is-in .nh-bars i:nth-child(3) { animation-delay: 0.49s; }
  .nh-js [data-rv-group].is-in .nh-bars i:nth-child(4) { animation-delay: 0.56s; }
  .nh-js [data-rv-group].is-in .nh-bars i:nth-child(5) { animation-delay: 0.63s; }
  .nh-js [data-rv-group].is-in .nh-bars i:nth-child(6) { animation-delay: 0.7s; }
  .nh-js [data-rv-group].is-in .nh-bars i:nth-child(7) { animation-delay: 0.77s; }
  .nh-js [data-rv-group].is-in .nh-bubble--q { animation: nh-pop-up 0.6s var(--nh-ease) 0.45s backwards; }
  .nh-js [data-rv-group].is-in .nh-bubble--a { animation: nh-pop-up 0.6s var(--nh-ease) 0.85s backwards; }
  .nh-js [data-rv-group].is-in .nh-bubble--a i { animation: nh-grow 0.7s var(--nh-ease) 1.1s backwards; }
  .nh-js [data-rv-group].is-in .nh-bubble--a i + i { animation-delay: 1.25s; }
  .nh-js [data-rv-group].is-in .nh-mini-cite { animation: nh-pop 0.5s var(--nh-ease) 1.5s backwards, nh-glow-light 2.8s ease-in-out 2.2s infinite; }
}

/* ============================================================
   Pillars
   ============================================================ */

.nh-pillars-layout { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) {
  .nh-pillars-layout { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 5rem; align-items: start; }
  .nh-pillars-intro { position: sticky; top: 7.5rem; }
}
.nh-pillar-progress { display: flex; gap: 0.4rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.nh-pillar-progress li { position: relative; flex: 0 0 2.5rem; height: 3px; overflow: hidden; border-radius: 9999px; background: var(--nh-line-2); }
.nh-pillar-progress li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--nh-ink-3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--nh-ease);
}
.nh-pillar-progress li.is-on::after { transform: none; }
.nh-pillar-list { margin: 0; padding: 0; list-style: none; }
.nh-pillar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--nh-line);
}
.nh-pillar:last-child { border-bottom: 1px solid var(--nh-line); }
.nh-pillar-num {
  min-width: 4.5rem;
  font-family: var(--nx-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--nh-ink-3);
  -webkit-text-stroke: 1.25px var(--nh-ink-3);
  transition: color 0.5s ease, -webkit-text-stroke-color 0.5s ease;
}
.nh-pillar h3 { margin: 0.3rem 0 1rem; font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--nh-text); transition: color 0.4s ease; }
.nh-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; list-style: none; }
.nh-tags li {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--nh-line);
  border-radius: 9999px;
  background: #ffffff;
  font-size: 0.86rem;
  font-weight: 550;
  color: var(--nh-text-2);
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
/* Scroll-tracked emphasis (desktop only; home.js adds .is-tracking). Muted
   through colour rather than opacity so it can't fight the reveal animation. */
.nh-pillar-list.is-tracking .nh-pillar:not(.is-active) .nh-pillar-num { color: transparent; -webkit-text-stroke-color: #c7c7cc; }
.nh-pillar-list.is-tracking .nh-pillar:not(.is-active) h3 { color: #a1a1aa; }
.nh-pillar-list.is-tracking .nh-pillar:not(.is-active) .nh-tags li { color: #a1a1aa; }
.nh-pillar.is-active .nh-tags li { border-color: var(--nh-ink-3); background: var(--nh-ink-3); color: #ffffff; }
.nh-pillar.is-active .nh-tags li:nth-child(2) { transition-delay: 0.05s; }
.nh-pillar.is-active .nh-tags li:nth-child(3) { transition-delay: 0.1s; }
.nh-pillar.is-active .nh-tags li:nth-child(4) { transition-delay: 0.15s; }
.nh-pillar.is-active .nh-tags li:nth-child(5) { transition-delay: 0.2s; }

/* ============================================================
   Industries
   ============================================================ */

.nh-ind-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; margin: 0; padding: 0; list-style: none; }
@media (min-width: 768px) { .nh-ind-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; } }
@media (min-width: 1100px) { .nh-ind-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.nh-ind {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  height: 100%;
  padding: 1.05rem 1.1rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--nh-line);
  border-radius: 1rem;
  background: var(--nh-paper-3);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--nh-text);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.35s var(--nh-ease-2), box-shadow 0.35s ease;
}
.nh-ind::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--nh-ink-3);
  transform: translate3d(0, 101%, 0);
  transition: transform 0.45s var(--nh-ease);
}
.nh-ind:hover { transform: translateY(-3px); border-color: var(--nh-ink-3); box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14); color: #ffffff; }
.nh-ind:hover::before { transform: none; }
.nh-ind-ico {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border: 1px solid var(--nh-line);
  border-radius: 0.75rem;
  background: #ffffff;
  color: var(--nh-text-2);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.45s var(--nh-ease-2);
}
.nh-ind-ico .nh-i { width: 1.15rem; height: 1.15rem; }
.nh-ind:hover .nh-ind-ico { border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.1); color: #ffffff; transform: rotate(-8deg); }
.nh-ind-go { width: 1rem; height: 1rem; margin-left: auto; opacity: 0; transform: translate3d(-6px, 0, 0); transition: opacity 0.3s ease, transform 0.35s var(--nh-ease-2); }
.nh-ind:hover .nh-ind-go { opacity: 1; transform: none; }
@media (hover: none) { .nh-ind-go { opacity: 0.45; transform: none; } }

/* ============================================================
   Alcohol & spirits
   ============================================================ */

.nh-alc { overflow: hidden; background: radial-gradient(50rem 30rem at 0% 0%, rgba(255, 255, 255, 0.07), transparent 60%), var(--nh-ink); color: #ffffff; }
.nh-alc-layout { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .nh-alc-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4.5rem; } }
.nh-alc h2 { color: #ffffff; }
.nh-alc .nh-kicker { color: var(--nh-silver); }
.nh-alc .nh-lede { color: #c4c4cc; }
.nh-alc-media { position: relative; margin: 0; }
.nh-alc-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translate3d(0, var(--nh-par, 0px), 0);
}
.nh-alc-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: 50% 35%;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 1.2s var(--nh-ease-2);
}
.nh-alc-media:hover .nh-alc-frame img { transform: scale(1.05); }
.nh-alc-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 11, 0.45)); pointer-events: none; }
/* Top-right: the photo's empty bokeh area, clear of the bottles and glass. */
.nh-alc-badge {
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.05rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  font-size: 0.85rem;
  font-weight: 650;
  color: #111114;
}
.nh-alc-badge .nh-i { width: 1.15rem; height: 1.15rem; padding: 0.2rem; border-radius: 50%; background: #111114; color: #ffffff; stroke-width: 2.5; }
.nh-alc-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.nh-alc-chips a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  font-weight: 600;
  color: #f4f4f5;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--nh-ease-2);
}
.nh-alc-chips a::before { content: ""; width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--nh-silver); transition: background-color 0.3s ease; }
.nh-alc-chips a:hover { transform: translateY(-2px); border-color: #ffffff; background: #ffffff; color: #111114; }
.nh-alc-chips a:hover::before { background: #111114; }
@media (prefers-reduced-motion: no-preference) {
  .nh-alc-badge { animation: nh-float 7s ease-in-out 1s infinite; }
}
/* On phones the badge is too wide for the top strip, so it hangs off the
   bottom edge over the bar top instead. */
@media (max-width: 640px) { .nh-alc-badge { top: auto; right: auto; bottom: -1.1rem; left: 0.75rem; font-size: 0.78rem; } }

/* ============================================================
   Results
   ============================================================ */

.nh-res-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) {
  .nh-res-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nh-res--feature,
  .nh-res--wide { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .nh-res-grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr); }
  .nh-res--feature { grid-column: 1; grid-row: 1 / span 2; }
  .nh-res--wide { grid-column: 2 / span 2; }
}
.nh-res {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 14rem;
  padding: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-r);
  background: var(--nh-paper-3);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.4s ease, transform 0.18s ease-out;
}
.nh-res:hover { border-color: var(--nh-line-2); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1); }
.nh-res-tag {
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  border-radius: 9999px;
  background: #ececed;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nh-text-3);
}
.nh-res-num { margin-top: 1.5rem; font-family: var(--nx-display); font-size: clamp(2.75rem, 5vw, 3.6rem); font-weight: 700; line-height: 1; letter-spacing: -0.045em; color: var(--nh-text); }
.nh-res-num [data-count-to] { font-weight: 700; }
.nh-res-label { margin-top: 0.5rem; font-size: 0.95rem; line-height: 1.5; color: var(--nh-text-3); }
.nh-res-more { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.25rem; font-size: 0.88rem; font-weight: 650; color: #ffffff; }
.nh-res-more .nh-i { width: 1rem; height: 1rem; transition: transform 0.35s var(--nh-ease-2); }
.nh-res:hover .nh-res-more .nh-i { transform: translateX(5px); }

.nh-res--feature {
  min-height: 26rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: radial-gradient(30rem 22rem at 100% 0%, rgba(255, 255, 255, 0.1), transparent 60%), var(--nh-ink-2);
  color: #ffffff;
}
.nh-res--feature:hover { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); }
.nh-res--feature.nx-spot::after { background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.1), transparent 60%); }
.nh-res--feature .nh-res-tag { background: rgba(255, 255, 255, 0.1); color: #d4d4d8; }
.nh-res--feature .nh-res-num { font-size: clamp(3.5rem, 7vw, 5.5rem); color: #ffffff; }
.nh-res--feature .nh-res-label { font-size: 1.05rem; color: var(--nh-silver); }
.nh-res-chart { display: block; width: calc(100% + 3.5rem); height: 9.5rem; margin: auto -1.75rem -1.75rem; }
.nh-res-area { fill: url(#nh-area); }
.nh-res-line { fill: none; stroke: #ffffff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.nh-roas { display: flex; align-items: flex-end; gap: 0.5rem; height: 4.5rem; margin-top: auto; padding-top: 1.25rem; }
.nh-roas i { width: 1.6rem; border-radius: 0.3rem 0.3rem 0.1rem 0.1rem; background: #d4d4d8; transform-origin: bottom; }
.nh-roas i:first-child { height: 8%; }
.nh-roas i:last-child { height: 100%; background: var(--nh-ink-3); }
.nh-res-spark { display: block; width: 100%; height: 3rem; margin-top: auto; overflow: visible; }
.nh-res-spark path { fill: none; stroke: var(--nh-ink-3); stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.nh-dots { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 1.25rem; }
.nh-dots i { width: 0.7rem; height: 0.7rem; border-radius: 50%; background: var(--nh-ink-3); }
.nh-dots i:nth-child(3n + 2) { background: #71717a; }
.nh-dots i:nth-child(3n) { background: #c7c7cc; }

@media (prefers-reduced-motion: no-preference) {
  .nh-js [data-rv-group].is-in .nh-res-line { stroke-dasharray: 600; animation: nh-draw 1.8s var(--nh-ease) 0.4s backwards; }
  .nh-js [data-rv-group].is-in .nh-res-area { animation: nh-fade 1.2s ease 1s backwards; }
  .nh-js [data-rv-group].is-in .nh-res-spark path { stroke-dasharray: 600; animation: nh-draw 1.6s var(--nh-ease) 0.6s backwards; }
  .nh-js [data-rv-group].is-in .nh-roas i { animation: nh-bar-up 0.9s var(--nh-ease) 0.5s backwards; }
  .nh-js [data-rv-group].is-in .nh-roas i:last-child { animation-delay: 0.75s; }
  .nh-js [data-rv-group].is-in .nh-dots i { animation: nh-pop 0.45s var(--nh-ease) 0.5s backwards; }
  .nh-js [data-rv-group].is-in .nh-dots i:nth-child(3n + 2) { animation-delay: 0.65s; }
  .nh-js [data-rv-group].is-in .nh-dots i:nth-child(3n) { animation-delay: 0.8s; }
}

/* ============================================================
   Process
   ============================================================ */

.nh-process { overflow: hidden; background: radial-gradient(50rem 30rem at 50% 0%, rgba(255, 255, 255, 0.07), transparent 65%), var(--nh-ink); color: #ffffff; }
.nh-steps-wrap { position: relative; }
.nh-steps { position: relative; display: grid; gap: 2.25rem; margin: 0; padding: 0 0 0 4.25rem; list-style: none; }
.nh-steps-rail {
  position: absolute;
  top: 1.6rem;
  bottom: 1.6rem;
  left: calc(1.6rem - 1px);
  width: 2px;
  overflow: hidden;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
}
.nh-steps-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff, #a1a1aa);
  transform: scaleY(var(--p, 1));
  transform-origin: top;
}
.nh-step { position: relative; transition: opacity 0.5s ease; }
.nh-step-node {
  position: absolute;
  top: 0;
  left: -4.25rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: #16161a;
  color: var(--nh-silver);
  transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s var(--nh-ease-2);
}
.nh-step-node .nh-i { width: 1.25rem; height: 1.25rem; }
.nh-step-num { display: block; margin-bottom: 0.5rem; padding-top: 0.2rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; color: #71717a; }
.nh-step h3 { margin: 0 0 0.5rem; font-size: 1.3rem; color: #ffffff; }
.nh-step p { margin: 0; font-size: 0.92rem; line-height: 1.6; color: var(--nh-silver); }
.nh-step.is-on .nh-step-node { border-color: #ffffff; background: #ffffff; color: #111114; box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08), 0 0 30px rgba(255, 255, 255, 0.25); }
.nh-steps.is-tracking .nh-step:not(.is-on) { opacity: 0.45; }
.nh-loop { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin: 3.5rem 0 0; font-size: 0.95rem; text-align: center; color: var(--nh-silver); }
.nh-loop .nh-i { width: 1.1rem; height: 1.1rem; }
@media (min-width: 1024px) {
  .nh-steps { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.5rem; padding: 0; }
  .nh-steps-rail { top: calc(1.6rem - 1px); bottom: auto; left: 10%; right: 10%; width: auto; height: 2px; }
  .nh-steps-fill { background: linear-gradient(90deg, #a1a1aa, #ffffff); transform: scaleX(var(--p, 1)); transform-origin: left; }
  .nh-step { padding-top: 4.6rem; text-align: center; }
  .nh-step-node { left: 50%; transform: translateX(-50%); }
  .nh-step.is-on .nh-step-node { transform: translateX(-50%) scale(1.06); }
}
@media (prefers-reduced-motion: no-preference) {
  .nh-loop .nh-i { animation: nh-spin 6s linear infinite; }
}

/* ============================================================
   Visibility dashboard
   ============================================================ */

.nh-dash { max-width: 62rem; margin: 0 auto; overflow: hidden; border: 1px solid var(--nh-line); border-radius: 1.5rem; background: #ffffff; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08); }
.nh-dash-bar { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--nh-line); background: var(--nh-paper-3); }
.nh-dash-dots { display: flex; gap: 0.35rem; }
.nh-dash-dots i { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: #d4d4d8; }
.nh-dash-title { font-size: 0.88rem; font-weight: 650; color: var(--nh-text); }
.nh-dash-live { display: inline-flex; align-items: center; gap: 0.45rem; margin-left: auto; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--nh-text-3); }
.nh-dash-live i { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--nh-ink-3); }
.nh-dash-body { display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { .nh-dash-body { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); } }
.nh-dash-table-wrap { padding: 0.5rem 1.25rem 1rem; overflow-x: auto; }
.nh-dash-table { display: table; width: 100%; overflow: visible; border-collapse: collapse; border-radius: 0; box-shadow: none; font-size: 0.95rem; }
/* enhancements.css paints every `main table` head black and stripes the
   body cells, all with !important — undone here for the dashboard only. */
.nh-dash .nh-dash-table thead th {
  background: transparent !important;
  color: var(--nh-text-3) !important;
  border-color: var(--nh-line) !important;
}
.nh-dash .nh-dash-table tbody td,
.nh-dash .nh-dash-table tbody tr:nth-child(odd) td,
.nh-dash .nh-dash-table tbody tr:nth-child(even) td {
  background-color: transparent !important;
  color: var(--nh-text) !important;
  border-color: var(--nh-line) !important;
}
.nh-dash-table th,
.nh-dash-table td { padding: 1rem 0.75rem; border-bottom: 1px solid var(--nh-line); text-align: left; vertical-align: middle; }
.nh-dash-table thead th { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; color: var(--nh-text-3); }
.nh-dash-table tbody th { font-weight: 650; color: var(--nh-text); }
.nh-dash-table tbody tr:last-child th,
.nh-dash-table tbody tr:last-child td { border-bottom: 0; }
.nh-dash-table tbody tr,
.nh-dash-table tbody tr:nth-child(even) { background-color: transparent; transition: background-color 0.25s ease; }
.nh-dash-table tbody tr:hover { background: var(--nh-paper-3); }
.nh-val { display: block; font-family: var(--nx-display); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; color: var(--nh-text); }
.nh-val--na { color: var(--nh-silver); }
.nh-meter { position: relative; display: block; max-width: 11rem; height: 0.4rem; margin-top: 0.5rem; overflow: hidden; border-radius: 9999px; background: #ececed; }
.nh-meter::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: calc(var(--v) * 100%); border-radius: inherit; transform-origin: left; }
.nh-meter--g::before,
.nh-key--g { background: var(--nh-ink-3); }
.nh-meter--a::before,
.nh-key--a { background: repeating-linear-gradient(135deg, #71717a 0 4px, #a1a1aa 4px 8px); }
.nh-key { display: inline-block; width: 0.6rem; height: 0.6rem; margin-right: 0.45rem; border-radius: 0.15rem; vertical-align: -0.05em; }
.nh-donuts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.5rem 1.25rem; border-top: 1px solid var(--nh-line); background: var(--nh-paper-3); }
@media (min-width: 900px) { .nh-donuts { grid-template-columns: 1fr; align-content: center; gap: 2rem; padding: 2rem; border-top: 0; border-left: 1px solid var(--nh-line); } }
.nh-donut { position: relative; display: grid; justify-items: center; text-align: center; }
.nh-donut svg { width: 7.5rem; height: 7.5rem; transform: rotate(-90deg); }
.nh-donut circle { fill: none; stroke-width: 9; }
.nh-donut-track { stroke: #e4e4e7; }
.nh-donut-fill { stroke: var(--nh-ink-3); stroke-linecap: round; stroke-dasharray: 263.9px; stroke-dashoffset: calc(263.9px * (1 - var(--v))); }
.nh-donut--a .nh-donut-fill { stroke: #8a8a93; }
.nh-donut-val { position: absolute; top: 3.75rem; transform: translateY(-50%); font-family: var(--nx-display); font-size: 1.35rem; font-weight: 700; color: var(--nh-text); }
.nh-donut-k { margin-top: 0.6rem; font-size: 0.78rem; font-weight: 600; color: var(--nh-text-3); }

@media (prefers-reduced-motion: no-preference) {
  .nh-dash-live i { animation: nh-ping-dark 2s ease-out infinite; }
  .nh-js .nh-dash.is-in .nh-meter::before { animation: nh-grow 1.3s var(--nh-ease) 0.45s backwards; }
  .nh-js .nh-dash.is-in tbody tr:nth-child(2) .nh-meter::before { animation-delay: 0.55s; }
  .nh-js .nh-dash.is-in tbody tr:nth-child(3) .nh-meter::before { animation-delay: 0.65s; }
  .nh-js .nh-dash.is-in tbody tr:nth-child(4) .nh-meter::before { animation-delay: 0.75s; }
  .nh-js .nh-dash.is-in tbody tr:nth-child(5) .nh-meter::before { animation-delay: 0.85s; }
  .nh-js .nh-dash.is-in .nh-donut-fill { animation: nh-donut 1.8s var(--nh-ease) 0.6s backwards; }
  .nh-js .nh-dash.is-in .nh-donut--a .nh-donut-fill { animation-delay: 0.8s; }
}

/* ============================================================
   Differentiators
   ============================================================ */

.nh-diff-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin: 0; padding: 0; list-style: none; }
@media (min-width: 640px) { .nh-diff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .nh-diff-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.nh-diff {
  position: relative;
  padding: 1.9rem 1.75rem;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-r);
  background: var(--nh-paper-3);
  transition: transform 0.4s var(--nh-ease-2), border-color 0.3s ease, box-shadow 0.4s ease, background-color 0.3s ease;
}
.nh-diff:hover { transform: translateY(-6px); border-color: var(--nh-line-2); background: #ffffff; box-shadow: 0 24px 48px rgba(0, 0, 0, 0.09); }
.nh-diff h3 { margin: 1.2rem 0 0.45rem; font-size: 1.2rem; color: var(--nh-text); }
.nh-diff p { margin: 0; font-size: 0.94rem; line-height: 1.6; color: var(--nh-text-3); }
.nh-diff--funnel { border-color: rgba(255, 255, 255, 0.08); background: radial-gradient(24rem 16rem at 100% 0%, rgba(255, 255, 255, 0.12), transparent 60%), var(--nh-ink-2); }
.nh-diff--funnel:hover { background: radial-gradient(24rem 16rem at 100% 0%, rgba(255, 255, 255, 0.16), transparent 60%), var(--nh-ink-2); box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28); }
.nh-diff--funnel::before { background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.3)); }
.nh-diff--funnel h3 { color: #ffffff; }
.nh-diff--funnel .nh-diff-ico { border-color: rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.08); color: #ffffff; }
.nh-diff--funnel:hover .nh-diff-ico { border-color: #ffffff; background: #ffffff; color: #111114; }
.nh-diff p.nh-chain { margin-top: 0.35rem; }
.nh-chain span { position: relative; margin-right: 1.25rem; padding: 0.3rem 0.6rem; border-radius: 9999px; font-size: 0.88rem; font-weight: 650; color: #d4d4d8; }
@media (prefers-reduced-motion: no-preference) {
  .nh-chain span { animation: nh-chain 6s ease-in-out infinite; }
  .nh-chain span:nth-child(2) { animation-delay: 1.2s; }
  .nh-chain span:nth-child(3) { animation-delay: 2.4s; }
  .nh-chain span:nth-child(4) { animation-delay: 3.6s; }
  .nh-chain span:nth-child(5) { animation-delay: 4.8s; }
}

/* ============================================================
   Testimonials
   ============================================================ */

.nh-testi-wrap { position: relative; max-width: 76rem; margin: 0 auto; }
/* The padding that keeps card shadows unclipped lives on each slide, not the
   viewport, so the clip edge lands exactly on a slide boundary. */
.nh-testi-viewport { margin: -0.75rem; overflow: hidden; }
.nh-testi-track { display: flex; touch-action: pan-y; transition: transform 0.7s var(--nh-ease); }
.nh-testi-slide { display: grid; flex: 0 0 100%; grid-template-columns: 1fr; gap: 1.25rem; padding: 0.75rem; }
@media (min-width: 768px) { .nh-testi-slide { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.nh-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.9rem 1.75rem 1.5rem;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-r);
  background: #ffffff;
  transition: transform 0.4s var(--nh-ease-2), box-shadow 0.4s ease, border-color 0.3s ease;
}
.nh-quote::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  right: 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  color: #ececed;
  pointer-events: none;
}
.nh-quote:hover { transform: translateY(-4px); border-color: var(--nh-line-2); box-shadow: 0 22px 44px rgba(0, 0, 0, 0.08); }
.nh-stars { display: inline-flex; gap: 0.15rem; color: var(--nh-ink-3); }
.nh-stars .nh-i { width: 1rem; height: 1rem; }
.nh-quote blockquote { flex: 1; margin: 1rem 0 1.5rem; font-size: 0.97rem; line-height: 1.7; color: var(--nh-text-2); }
.nh-quote figcaption { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.1rem; border-top: 1px solid var(--nh-line); }
.nh-quote figcaption strong { display: block; font-size: 0.95rem; color: var(--nh-text); }
.nh-quote figcaption > span:last-child > span { font-size: 0.82rem; color: var(--nh-text-3); }
.nh-mono { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; flex-shrink: 0; border-radius: 50%; background: linear-gradient(145deg, #3a3a40, #0a0a0b); font-family: var(--nx-display); font-weight: 700; color: #ffffff; }
.nh-testi-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  border: 1px solid var(--nh-line);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  color: var(--nh-text);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.3s var(--nh-ease-2);
}
.nh-testi-arrow .nh-i { width: 1.1rem; height: 1.1rem; }
.nh-testi-arrow--prev { left: -1.5rem; }
.nh-testi-arrow--prev .nh-i { transform: rotate(180deg); }
.nh-testi-arrow--next { right: -1.5rem; }
.nh-testi-arrow:hover { border-color: var(--nh-ink-3); background: var(--nh-ink-3); color: #ffffff; transform: scale(1.06); }
@media (max-width: 1023px) { .nh-testi-arrow { display: none; } }
.nh-testi-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 2rem; }
.nh-testi-dots button {
  position: relative;
  width: 0.6rem;
  height: 0.6rem;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
  transition: width 0.4s var(--nh-ease), background-color 0.3s ease;
}
.nh-testi-dots button::after { content: ""; position: absolute; inset: -10px; }
.nh-testi-dots button.bg-blue-600 { width: 1.9rem; background: var(--nh-ink-3); }
.nh-testi-dots button.bg-gray-300 { background: #d4d4d8; }
.nh-ratings { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1rem; margin: 3rem 0 0; padding: 0; list-style: none; }
.nh-ratings li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--nh-line);
  border-radius: 9999px;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--nh-text);
}

/* ============================================================
   FAQ
   ============================================================ */

.nh-faq-layout { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) {
  .nh-faq-layout { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 4.5rem; align-items: start; }
  .nh-faq-intro { position: sticky; top: 7.5rem; }
}
.nh-faq-help { margin-top: 2rem; padding: 1.5rem; border: 1px solid var(--nh-line); border-radius: 1.1rem; background: var(--nh-paper-2); }
.nh-faq-help p { margin: 0 0 1rem; font-size: 0.95rem; line-height: 1.6; color: var(--nh-text-3); }
.nh-faq-help strong { color: var(--nh-text); }
.nh-faq .nx-faq-item { background: var(--nh-paper-3); }
.nh-faq .nx-faq-item:hover { border-color: var(--nh-line-2); }
.nh-faq .nx-faq-item[open] { background: #ffffff; }
.nh-faq .nx-faq-item summary { padding: 1.2rem 1.4rem; }
.nh-faq .nx-faq-item summary h3 {
  margin: 0;
  font-family: var(--nx-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--nh-text);
}
.nh-faq .nx-faq-body p { margin: 0; }
@supports (interpolate-size: allow-keywords) {
  .nh-faq { interpolate-size: allow-keywords; }
  .nh-faq .nx-faq-item::details-content {
    block-size: 0;
    overflow: clip;
    transition: block-size 0.4s var(--nh-ease), content-visibility 0.4s allow-discrete;
  }
  .nh-faq .nx-faq-item[open]::details-content { block-size: auto; }
}
@media (prefers-reduced-motion: no-preference) {
  .nh-faq .nx-faq-item[open] .nx-faq-body { animation: nh-fade-down 0.45s var(--nh-ease); }
}

/* ============================================================
   Final CTA
   ============================================================ */

.nh-final { padding: 7.5rem 0; overflow: hidden; background: var(--nh-ink); text-align: center; color: #ffffff; }
.nh-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(40rem 22rem at 50% 50%, black 20%, transparent 75%);
  mask-image: radial-gradient(40rem 22rem at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}
.nh-final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56rem;
  height: 56rem;
  margin: -28rem 0 0 -28rem;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 58%, rgba(255, 255, 255, 0.16) 74%, transparent 90%);
  filter: blur(60px);
  pointer-events: none;
}
.nh-final-inner { position: relative; z-index: 1; max-width: 50rem; }
.nh-final h2 { margin: 0; font-family: var(--nx-display); font-size: clamp(2.2rem, 5vw, 3.9rem); line-height: 1.04; letter-spacing: -0.045em; color: #ffffff; }
.nh-final .nh-kicker { color: var(--nh-silver); }
.nh-final .nh-lede { max-width: 38rem; margin: 1.25rem auto 1rem; font-size: 1.2rem; color: #c4c4cc; }
.nh-final .nx-cta-row { margin-top: 2rem; }
@media (prefers-reduced-motion: no-preference) {
  .nh-final-glow { animation: nh-spin 18s linear infinite; }
}

/* ============================================================
   Footer
   ============================================================ */

.nh-foot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 1.5rem; }
.nh-foot-brand { grid-column: 1 / -1; }
@media (min-width: 768px) { .nh-foot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1200px) {
  .nh-foot-grid { grid-template-columns: minmax(0, 1.7fr) repeat(5, minmax(0, 1fr)); gap: 2rem; }
  .nh-foot-brand { grid-column: auto; padding-right: 1.5rem; }
}
.nh-foot-col h2 { margin: 0 0 1.1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #ffffff; }
.nh-foot-col ul { display: grid; gap: 0.7rem; margin: 0; padding: 0; list-style: none; }
.nh-foot-col a { font-size: 0.9rem; line-height: 1.4; color: var(--nh-silver); text-decoration: none; transition: color 0.2s ease; }
.nh-foot-col a:hover { color: #ffffff; }
.nh-foot-more { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.75rem 1.25rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #2a2a30; }
.nh-foot-more-k { margin-right: 0.25rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #71717a; }
.nh-foot-more ul { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin: 0; padding: 0; list-style: none; }
.nh-foot-more a { font-size: 0.82rem; color: #8a8a93; text-decoration: none; transition: color 0.2s ease; }
.nh-foot-more a:hover { color: #ffffff; }

/* ============================================================
   Responsive rhythm
   ============================================================ */

@media (max-width: 1023px) {
  .nh-sec { padding: 5rem 0; }
  .nh-head { margin-bottom: 2.5rem; }
  .nh-final { padding: 5.5rem 0; }
}
@media (max-width: 640px) {
  .nh-sec { padding: 4rem 0; }
  .nh-brands { padding: 3.75rem 0 3.5rem; }
  .nh-lede { font-size: 1rem; }
  .nh-flow { padding: 1.5rem; }
  .nh-svc-link,
  .nh-svc--feature .nh-svc-link,
  .nh-res,
  .nh-diff { padding: 1.4rem; }
  .nh-res-chart { width: calc(100% + 2.8rem); margin: auto -1.4rem -1.4rem; }
  .nh-res--feature { min-height: 22rem; }
  .nh-pillar { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.75rem 0; }
  .nh-ind { padding: 0.85rem; gap: 0.65rem; font-size: 0.9rem; }
  .nh-ind-ico { width: 2.1rem; height: 2.1rem; }
  .nh-ind-go { display: none; }
  .nh-trust { padding: 1.25rem 1.1rem; }
  .nh-trust-val { font-size: 1.2rem; }
  .nh-dash-table th,
  .nh-dash-table td { padding: 0.85rem 0.5rem; }
  .nh-val { font-size: 1.05rem; }
  .nh-donut svg { width: 6rem; height: 6rem; }
  .nh-donut-val { top: 3rem; font-size: 1.1rem; }
  .nh-actions-row .nh-btn { width: 100%; justify-content: center; }
  .nh-m-group ul { grid-template-columns: 1fr; }
}

/* ============================================================
   Reduced motion: every loop off, hover lifts flattened
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .nh-layer,
  .nh-hero .nx-hero-bg { transform: none !important; transition: none; }
  .nh-logos-track { flex-wrap: wrap; justify-content: center; width: auto; }
  .nh-logo-set { flex-wrap: wrap; justify-content: center; padding: 0 1rem; }
  .nh-logo-set[aria-hidden="true"],
  .nh-topbar-dup { display: none !important; }
  .nh-topbar-track { overflow-x: auto; }
  .nh-testi-track,
  .nh-mega,
  .nh-scrim,
  .nh-ind::before { transition: none; }
  .nh-trust:hover,
  .nh-diff:hover,
  .nh-quote:hover,
  .nh-ind:hover,
  .nh-logo:hover,
  .nh-alc-chips a:hover,
  .nh-btn:hover { transform: none; }
  .nh-alc-media:hover .nh-alc-frame img { transform: none; }
  .nh-alc-frame { transform: none; }
}
