/* =====================================================
   HOMEPAGE
   ===================================================== */

:root {
  
  color-scheme: dark;

  --card: rgba(20, 12, 37, 0.78);
  --border: rgba(190, 161, 255, 0.14);
  --border-strong: rgba(190, 161, 255, 0.3);
  --text: #ffffff;
  --text-soft: #ffffff;
  --violet: #a855f7;
  --pink: #ec4899;
  --blue: #38bdf8;
  --shadow: 0 24px 80px rgba(7, 2, 18, 0.5);
}


.nhp-shell {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #ffffff;
  background: none;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 60vh;
  position: relative;
}


.nhp-shell::before,
.nhp-shell::after {
  content: '';
  position: fixed;
  inset: -10vmax;
  pointer-events: none;
  z-index: 0;
}

.nhp-shell::before {
  background:
    radial-gradient(38vmax 32vmax at 18% 22%, rgba(168, 85, 247, 0.32), transparent 60%),
    radial-gradient(34vmax 28vmax at 82% 14%, rgba(56, 189, 248, 0.22), transparent 62%),
    radial-gradient(40vmax 30vmax at 70% 78%, rgba(236, 72, 153, 0.18), transparent 65%),
    radial-gradient(28vmax 24vmax at 12% 88%, rgba(124, 58, 237, 0.22), transparent 60%);
  filter: blur(40px) saturate(1.05);
  animation: nhp-aurora-drift 28s ease-in-out infinite alternate;
}

.nhp-shell::after {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 55%),
    radial-gradient(120vmax 70vmax at 50% 110%, rgba(7, 2, 18, 0.55), transparent 60%);
  mix-blend-mode: screen;
}

@keyframes nhp-aurora-drift {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate3d(2.5vw, -1.5vh, 0) rotate(6deg) scale(1.05); }
  100% { transform: translate3d(-2vw, 2vh, 0) rotate(-4deg) scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .nhp-shell::before { animation: none; }
}


.nhp-shell *,
.nhp-shell *::before,
.nhp-shell *::after {
  box-sizing: border-box;
}

.nhp-shell a {
  color: inherit;
  text-decoration: none;
}

.nhp-shell button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.nhp-shell h1,
.nhp-shell h2,
.nhp-shell h3 {
  letter-spacing: -0.03em;
}


.nhp-shell .container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.nhp-shell .glass-card,
.nhp-shell .faq-item,
.nhp-shell .split-panel {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}


.nhp-shell .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border-radius: 14px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nhp-shell .button:hover {
  transform: translateY(-1px);
}

.nhp-shell .button-primary {
  color: white;
  background: linear-gradient(135deg, var(--violet), #7c3aed);
}

.nhp-shell .button-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.nhp-shell .button-small {
  min-height: 42px;
  padding-inline: 1rem;
  border-radius: 999px;
}


.nhp-shell .eyebrow,
.nhp-shell .card-tag,
.nhp-shell .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nhp-shell .eyebrow::before,
.nhp-shell .section-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.45);
}

.nhp-shell .brand span,
.nhp-shell .footer-copy,
.nhp-shell .section-heading p,
.nhp-shell .hero-copy,
.nhp-shell .feature-card p,
.nhp-shell .check-list p,
.nhp-shell .card-tag,
.nhp-shell .nav-link {
  color: var(--text-soft);
}


.nhp-shell {
  --emp-ink-100: #ffffff;
  --emp-ink-300: #ffffff;
  --emp-ink-900: #0A0820;
  --emp-accent-500: #8B5CF6;
  --emp-brand-grad-1: #C084FC;
  --emp-brand-grad-2: #8B5CF6;
  --emp-brand-grad-3: #38BDF8;
  --emp-brand-gradient: linear-gradient(95deg, var(--emp-brand-grad-1) 0%, var(--emp-brand-grad-2) 50%, var(--emp-brand-grad-3) 100%);
  --emp-ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --emp-ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
}

.nhp-shell .emp-tagline-section {
  padding: 72px 0 0;
}

.nhp-shell .emp-tagline-section .section-heading {
  margin-bottom: 0;
}

.nhp-shell .emp-tagline-heading {
  margin: 0;
  color: var(--text);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}

.nhp-shell .emp-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 56px;
  align-items: stretch;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 16px 0 72px;
}

.nhp-shell .emp-hero > * {
  position: relative;
  z-index: 1;
}

.nhp-shell .emp-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nhp-shell .emp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffffff;
}

.nhp-shell .emp-eyebrow__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--emp-accent-500);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.18);
}

.nhp-shell .emp-hero__title {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-wrap: balance;
}

.nhp-shell .emp-hero__rotator {
  display: grid;
  position: relative;
}

.nhp-shell .emp-hero__line {
  grid-area: 1 / 1;
  margin: 0;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 800ms var(--emp-ease-spring),
    transform 800ms var(--emp-ease-spring),
    filter 800ms var(--emp-ease-spring);
}

.nhp-shell .emp-hero__line.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.nhp-shell .emp-hero__sub {
  margin: 0 0 18px;
  max-width: 52ch;
  color: var(--emp-ink-300);
  font-size: 18px;
  line-height: 1.55;
  animation: emp-hero-fade 480ms var(--emp-ease-out);
}

@keyframes emp-hero-fade {
  from { opacity: 0; transform: translateY(6px); }
}

.nhp-shell .emp-hero__visual {
  position: relative;
  display: block;
}

.nhp-shell .emp-hero__ctas {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.nhp-shell .emp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 180ms var(--emp-ease-out), background 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

.nhp-shell .emp-btn:hover {
  transform: translateY(-1px);
}

.nhp-shell .emp-btn--primary {
  color: #fff;
  background: var(--emp-accent-500);
  box-shadow: 0 14px 30px rgba(139, 92, 246, 0.35);
}

.nhp-shell .emp-btn--primary:hover {
  box-shadow: 0 18px 36px rgba(139, 92, 246, 0.5);
}

.nhp-shell .emp-btn--ghost {
  color: var(--emp-ink-100);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.nhp-shell .emp-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.nhp-shell .emp-hero__dots {
  display: flex;
  gap: 8px;
}

.nhp-shell .emp-hero__dot {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background 200ms var(--emp-ease-out), width 320ms var(--emp-ease-out);
}

.nhp-shell .emp-hero__dot:hover {
  background: rgba(255, 255, 255, 0.28);
}

.nhp-shell .emp-hero__dot.is-active,
.nhp-shell .emp-hero__dot.is-active:hover {
  width: 56px;
  background: var(--emp-brand-gradient);
}

.nhp-shell .emp-hero__media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  isolation: isolate;
  transition: transform 420ms var(--emp-ease-spring);
}

.nhp-shell .emp-hero__media:hover {
  transform: translateY(-4px);
}

.nhp-shell .emp-hero__stage {
  position: relative;
  height: 100%;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--emp-ink-900);
}

.nhp-shell .emp-hero__stage::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: 26px;
  background: var(--emp-brand-gradient);
  opacity: 0.55;
  filter: blur(28px);
  transition: opacity 600ms var(--emp-ease-out);
}

.nhp-shell .emp-hero__media:hover .emp-hero__stage::before {
  opacity: 0.85;
}

.nhp-shell .emp-hero__stage > * {
  position: relative;
  z-index: 1;
}

.nhp-shell .emp-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  opacity: 0;
  transform: scale(1.08);
  filter: blur(10px) saturate(0.9);
  transition:
    opacity 1100ms var(--emp-ease-spring),
    transform 1600ms var(--emp-ease-spring),
    filter 1100ms var(--emp-ease-spring);
}

.nhp-shell .emp-hero__img.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0) saturate(1);
}

.nhp-shell .emp-hero__glow {
  display: none;
}

.nhp-shell .emp-hero__media-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 46%;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(to top, rgba(8, 6, 24, 0.82), rgba(8, 6, 24, 0.32) 45%, transparent);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .nhp-shell .emp-hero__line,
  .nhp-shell .emp-hero__img,
  .nhp-shell .emp-hero__sub,
  .nhp-shell .emp-hero__media {
    animation: none !important;
    transition-duration: 200ms !important;
  }
  .nhp-shell .emp-hero__stage::before {
    animation: none !important;
  }
}


.nhp-shell .section-heading p,
.nhp-shell .hero-copy {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.nhp-shell .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.nhp-shell .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 18px rgba(74, 222, 128, 0.65);
}


.nhp-shell .trust-strip,
.nhp-shell .section {
  padding: 2rem 0 4.5rem;
}

.nhp-shell .section-heading {
  margin-bottom: 2rem;
}

.nhp-shell .section-heading.center {
  text-align: center;
}

.nhp-shell .section-heading.center p {
  margin-inline: auto;
}

.nhp-shell .section-heading h2 {
  margin: 0.6rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}


.nhp-shell .logo-marquee {
  display: flex;
  overflow: hidden;
  padding: 1rem 0;
  color: #ffffff;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.nhp-shell .logo-marquee-track {
  display: flex;
  flex: 0 0 100%;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  min-width: max-content;
  white-space: nowrap;
  animation: nhp-marquee 120s linear infinite;
}

.nhp-shell .logo-marquee span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 0.25rem;
}

@keyframes nhp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}


.nhp-shell .tab-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.nhp-shell .tab-button {
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
}

.nhp-shell .tab-button.active {
  color: white;
  border-color: var(--border-strong);
  background: rgba(168, 85, 247, 0.18);
}


.nhp-shell .cards-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.nhp-shell .feature-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  min-height: 100%;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(22, 12, 36, 0.95), rgba(13, 7, 23, 0.92));
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.nhp-shell .feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.nhp-shell .feature-card-media-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nhp-shell .feature-card-media-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 3, 15, 0), rgba(8, 3, 15, 0.16));
  pointer-events: none;
}

.nhp-shell .feature-card-media {
  width: 100%;
  height: 138px;
  object-fit: cover;
  display: block;
  transition: transform 280ms ease;
}

.nhp-shell .feature-card:hover .feature-card-media {
  transform: scale(1.03);
}

.nhp-shell .feature-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 0.35rem 0.35rem;
  justify-content: center;
}

.nhp-shell .feature-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.nhp-shell .feature-card p {
  margin: 0;
  line-height: 1.65;
}

.nhp-shell .feature-card-violet { box-shadow: inset 0 1px 0 rgba(168, 85, 247, 0.18); }
.nhp-shell .feature-card-pink   { box-shadow: inset 0 1px 0 rgba(236, 72, 153, 0.2); }
.nhp-shell .feature-card-blue   { box-shadow: inset 0 1px 0 rgba(56, 189, 248, 0.18); }


.nhp-shell .blog-section { position: relative; overflow: hidden; }

.nhp-shell .blog-section-shell {
  position: relative;
  padding-top: 1rem;
}

.nhp-shell .blog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 1rem;
  min-height: 520px;
}

.nhp-shell .blog-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  padding: 1.1rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #0B0F14;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: border-color 180ms ease;
}

.nhp-shell .blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(11, 15, 20, 0.82) 0%,
    rgba(11, 15, 20, 0.32) 46%,
    transparent 78%
  );
}

.nhp-shell .blog-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.nhp-shell .blog-card-featured {
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
}

.nhp-shell .blog-card-compact { min-height: 250px; }
.nhp-shell .blog-card-compact .blog-card-content { gap: 0.55rem; max-width: calc(100% - 1rem); }
.nhp-shell .blog-card-compact .blog-card-content h3 { font-size: clamp(1.05rem, 1.25vw, 1.35rem); line-height: 1.18; }
.nhp-shell .blog-card-compact .blog-card-meta { gap: 0.45rem; font-size: 0.88rem; }
.nhp-shell .blog-card-compact .blog-pill { padding: 0.32rem 0.62rem; font-size: 0.77rem; }
.nhp-shell .blog-card-compact .blog-stats { gap: 0.45rem; font-size: 0.88rem; }

.nhp-shell .blog-card-link { position: absolute; inset: 0; z-index: 3; }

.nhp-shell .blog-card-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.7rem;
  max-width: calc(100% - 1rem);
}

.nhp-shell .blog-card-content h3 {
  margin: 0;
  width: fit-content;
  max-width: 100%;
  padding: 0.35rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(10px);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.12;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.nhp-shell .blog-card-featured .blog-card-content h3 { font-size: clamp(1.6rem, 2.4vw, 30px); }

.nhp-shell .blog-card-meta {
  display: grid;
  gap: 0.55rem;
  color: #ffffff;
  font-size: 0.95rem;
}

.nhp-shell .blog-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.84rem;
}

.nhp-shell .blog-stats {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.98rem;
}

.nhp-shell .blog-rating { color: #F5A623; letter-spacing: 0.08em; }


.nhp-shell .blog-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.nhp-shell .blog-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nhp-shell .blog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 3, 12, 0.38);
  backdrop-filter: blur(18px);
}

.nhp-shell .blog-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 1rem));
  max-height: min(88vh, 980px);
  overflow: auto;
  border-radius: 32px;
  background: rgba(11, 7, 20, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nhp-shell .blog-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  color: white;
  background: rgba(10, 5, 18, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.nhp-shell .blog-modal-hero {
  min-height: 320px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.nhp-shell .blog-modal-hero::after {
  content: '';
  display: block;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(6, 3, 12, 0.06), rgba(6, 3, 12, 0.78));
}

.nhp-shell .blog-modal-body {
  margin-top: -7rem;
  position: relative;
  z-index: 2;
  padding: 0 2rem 2rem;
}

.nhp-shell .blog-modal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nhp-shell .blog-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-soft);
}

.nhp-shell .blog-modal-body h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.08;
}

.nhp-shell .blog-modal-intro {
  margin: 0 0 1.5rem;
  max-width: 760px;
  font-size: 1.04rem;
  line-height: 1.6;
  color: #ffffff;
}

.nhp-shell .blog-modal-intro strong { display: block; font-weight: 800; color: white; }
.nhp-shell .blog-modal-source { display: block; margin-top: 0.25rem; font-weight: 800; color: #b785ff; }

.nhp-shell .blog-modal-content { display: grid; gap: 1rem; }
.nhp-shell .blog-modal-content p { margin: 0; line-height: 1.65; color: #ffffff; }
.nhp-shell .blog-modal-content h3 { margin: 1rem 0 0.5rem; font-size: 1.2rem; color: white; }

.nhp-shell .blog-modal-figure { margin: 1.1rem auto 0; text-align: center; }
.nhp-shell .blog-modal-inline-image { display: block; width: min(100%, 460px); margin: 0 auto; border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.1); }
.nhp-shell .blog-modal-caption { margin-top: 0.65rem; font-size: 0.92rem; color: #ffffff; }


.nhp-shell .split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(32, 15, 54, 0.95), rgba(14, 8, 27, 0.95));
  border-radius: 28px;
}

.nhp-shell .check-list { display: grid; gap: 0.9rem; }
.nhp-shell .check-list p { margin: 0; padding: 1rem 1.1rem; border-radius: 18px; background: rgba(255, 255, 255, 0.04); }


.nhp-shell .ia-video-section { position: relative; overflow: hidden; }

.nhp-shell .ia-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.nhp-shell .ia-content h2 { margin: 0.5rem 0 1rem; font-size: clamp(2rem, 4vw, 3rem); }

.nhp-shell .ia-visual { padding: 0; overflow: hidden; border-radius: 28px; }

.nhp-shell .ia-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(168, 85, 247, 0.1);
  font-size: 0.8125rem;
  color: var(--text-soft);
}

.nhp-shell .ia-topbar-note {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.nhp-shell .ia-dots { display: flex; gap: 5px; }
.nhp-shell .ia-dot { width: 9px; height: 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); }

.nhp-shell .ia-rows { display: flex; flex-direction: column; gap: 0.75rem; padding: 1.25rem; }

.nhp-shell .ia-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 200ms ease, background 200ms ease;
}

.nhp-shell .ia-row:hover { border-color: var(--border-strong); background: rgba(168, 85, 247, 0.06); }

.nhp-shell .ia-row-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(168, 85, 247, 0.18);
  display: grid; place-items: center; flex-shrink: 0; color: var(--violet);
}

.nhp-shell .ia-row-icon svg { width: 16px; height: 16px; }
.nhp-shell .ia-row-info { flex: 1; min-width: 0; }
.nhp-shell .ia-row-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.nhp-shell .ia-row-meta { display: block; font-size: 0.76rem; line-height: 1.45; color: var(--text-soft); margin-bottom: 0.5rem; }

.nhp-shell .ia-progress { height: 4px; background: rgba(255, 255, 255, 0.07); border-radius: 2px; overflow: hidden; }
.nhp-shell .ia-progress-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--violet), var(--blue)); }

.nhp-shell .ia-badge { font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.65rem; border-radius: 999px; flex-shrink: 0; white-space: nowrap; }
.nhp-shell .ia-badge-active  { background: rgba(74, 222, 128, 0.15); color: #4ade80; box-shadow: 0 0 12px rgba(74, 222, 128, 0.18); }
.nhp-shell .ia-badge-beta    { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.nhp-shell .ia-badge-live    { background: rgba(74, 222, 128, 0.15); color: #4ade80; box-shadow: 0 0 12px rgba(74, 222, 128, 0.18); }
.nhp-shell .ia-badge-interaction { background: rgba(56, 189, 248, 0.14); color: #38bdf8; box-shadow: 0 0 12px rgba(56, 189, 248, 0.16); }
.nhp-shell .ia-badge-replay  { background: rgba(168, 85, 247, 0.16); color: #c084fc; box-shadow: 0 0 12px rgba(168, 85, 247, 0.16); }
.nhp-shell .ia-badge-orga    { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }


.nhp-shell .modules-wrap { overflow-x: auto; border-radius: 28px; }

.nhp-shell .modules-wrap-collapsed {
  position: relative;
  max-height: 430px;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.nhp-shell .modules-wrap-collapsed::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0; left: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(9, 4, 15, 0) 0%, rgba(9, 4, 15, 0.68) 52%, rgba(9, 4, 15, 0.94) 82%, rgba(9, 4, 15, 1) 100%);
  pointer-events: none;
}

.nhp-shell .modules-wrap-collapsed.is-expanded { max-height: none; overflow: visible; }
.nhp-shell .modules-wrap-collapsed.is-expanded::after { display: none; }

.nhp-shell .modules-table { min-width: 580px; padding: 0; overflow: hidden; border-radius: 28px; }

.nhp-shell .modules-actions {
  display: flex;
  justify-content: center;
  position: sticky;
  bottom: 1rem;
  margin-top: 0.8rem;
  z-index: 1;
  pointer-events: none;
}

.nhp-shell .modules-toggle {
  pointer-events: auto;
}

.nhp-shell .modules-toggle {
  gap: 0.85rem; min-height: 54px; padding-inline: 1.35rem; border-radius: 999px;
  border: 1px solid rgba(190, 161, 255, 0.24); color: var(--text);
  background: linear-gradient(135deg, rgba(27, 14, 45, 0.96), rgba(12, 6, 22, 0.96));
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(7, 2, 18, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: inline-flex; align-items: center;
}

.nhp-shell .modules-toggle:hover {
  border-color: rgba(190, 161, 255, 0.38);
  background: linear-gradient(135deg, rgba(34, 17, 56, 0.98), rgba(14, 8, 27, 0.98));
}

.nhp-shell .modules-toggle [data-modules-toggle-label] { font-weight: 600; letter-spacing: 0.01em; }

.nhp-shell .modules-toggle::before {
  content: 'Voir plus';
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.35rem 0.7rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #d9c2ff; background: rgba(168, 85, 247, 0.16);
}

.nhp-shell .modules-toggle-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.8rem; height: 1.8rem; border-radius: 999px; color: white;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.85), rgba(56, 189, 248, 0.78));
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.nhp-shell .modules-toggle:hover .modules-toggle-arrow { box-shadow: 0 0 24px rgba(168, 85, 247, 0.34); }

.nhp-shell .modules-wrap-collapsed.is-expanded + .modules-actions .modules-toggle-arrow { transform: rotate(180deg); }
.nhp-shell .modules-wrap-collapsed.is-expanded + .modules-actions .modules-toggle::before { content: 'Réduire'; color: #c7f0ff; background: rgba(56, 189, 248, 0.14); }

.nhp-shell .modules-row {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
  transition: background 180ms ease;
}

.nhp-shell .modules-row:last-child { border-bottom: none; }
.nhp-shell .modules-row:not(.modules-header):hover { background: rgba(168, 85, 247, 0.05); }
.nhp-shell .modules-header { background: rgba(168, 85, 247, 0.1); border-bottom: 1px solid var(--border-strong); }

.nhp-shell .modules-cell {
  display: flex; align-items: center;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--border);
  font-size: 0.9375rem;
}

.nhp-shell .modules-cell:last-child { border-right: none; }

.nhp-shell .modules-col-head {
  flex-direction: column; gap: 0.5rem;
  font-weight: 700; font-size: 0.875rem; color: var(--text);
  text-align: center; justify-content: center;
}

.nhp-shell .modules-col-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(168, 85, 247, 0.18);
  display: grid; place-items: center; flex-shrink: 0; color: var(--violet);
}

.nhp-shell .modules-col-icon svg { width: 16px; height: 16px; }
.nhp-shell .modules-feat { font-weight: 500; color: var(--text); }

.nhp-shell .modules-cell:not(.modules-feat):not(.modules-col-head):not(.modules-feat-col) { justify-content: center; }

.nhp-shell .mod-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 999px;
  background: rgba(74, 222, 128, 0.15); color: #4ade80;
  font-weight: 700; font-size: 0.875rem;
}

.nhp-shell .mod-dash { color: var(--text-soft); font-size: 1.1rem; opacity: 0.45; }


.nhp-shell .cas-clients-section { background: transparent; padding: 4rem 0; }

.nhp-shell .ccs-showcase {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.nhp-shell .ccs-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.nhp-shell .ccs-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nhp-shell .ccs-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 70px rgba(7, 2, 18, 0.6);
}

.nhp-shell .ccs-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.nhp-shell .ccs-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.nhp-shell .ccs-card:hover .ccs-card-media img {
  transform: scale(1.05);
}

.nhp-shell .ccs-card-badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #7c3aed);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.45);
}

.nhp-shell .ccs-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  padding: 1.5rem 1.4rem 1.4rem;
}

.nhp-shell .ccs-card-quote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text);
}
.nhp-shell .ccs-card-quote::before {
  content: '\201C';
  display: block;
  font-size: 2.6rem;
  line-height: 0.6;
  font-style: normal;
  color: var(--violet);
  margin-bottom: 0.35rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.nhp-shell .ccs-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #c4a6ff;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.nhp-shell .ccs-card-cta:hover {
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
}


@media (max-width: 980px) {
  .nhp-shell .emp-hero,
  .nhp-shell .split-panel,
  .nhp-shell .ia-split { grid-template-columns: 1fr; }
  .nhp-shell .emp-hero { gap: 40px; padding: 28px 0 72px; }
  .nhp-shell .emp-tagline-section { padding-top: 48px; }
  .nhp-shell .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nhp-shell .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(220px, 1fr));
    min-height: auto;
  }
  .nhp-shell .blog-card-featured { grid-column: 1 / -1; grid-row: 1 / span 1; }
  .nhp-shell .blog-modal-body { margin-top: -5rem; padding-inline: 1.4rem; }
  .nhp-shell .ccs-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .nhp-shell .emp-hero { padding: 20px 0 56px; gap: 28px; }
  .nhp-shell .emp-tagline-section { padding-top: 32px; }
  .nhp-shell .container { width: min(100% - 1.2rem, 1180px); }
  .nhp-shell .cards-grid { grid-template-columns: 1fr; }
  .nhp-shell .ccs-cards { grid-template-columns: 1fr; }
  .nhp-shell .blog-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .nhp-shell .blog-card,
  .nhp-shell .blog-card-featured { min-height: 220px; }
  .nhp-shell .blog-card-content { max-width: 100%; }
  .nhp-shell .blog-modal { padding: 0.7rem; }
  .nhp-shell .blog-modal-panel { width: 100%; max-height: 92vh; border-radius: 24px; }
  .nhp-shell .blog-modal-hero,
  .nhp-shell .blog-modal-hero::after { min-height: 230px; }
  .nhp-shell .blog-modal-body { margin-top: -3rem; padding: 0 1rem 1.2rem; }
  .nhp-shell .blog-modal-back,
  .nhp-shell .blog-modal-meta { font-size: 0.92rem; }
}


.nhp-shell .wp-block-group { padding: 0; }


.nhp-shell .wp-block-group.hero-section   { padding: 5rem 0 3rem; }
.nhp-shell .wp-block-group.section        { padding: 4rem 0; }
.nhp-shell .wp-block-group.trust-strip    { padding: 2rem 0 3rem; }
.nhp-shell .wp-block-group.ia-video-section { padding: 4rem 0; }
.nhp-shell .wp-block-group.modules-section { padding: 4rem 0; }
.nhp-shell .wp-block-group.blog-section   { padding: 4rem 0; }
@media (max-width: 720px) {
  .nhp-shell .wp-block-group.hero-section { padding: 3rem 0; }
}

.nhp-shell .wp-block-columns.hero-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
  gap: 2rem;
  flex-wrap: unset;
}
.nhp-shell .wp-block-columns.hero-grid > .wp-block-column {
  flex: unset !important;
  min-width: 0;
}
@media (max-width: 980px) {
  .nhp-shell .wp-block-columns.hero-grid { grid-template-columns: 1fr; }
}

.nhp-shell .wp-block-buttons.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.nhp-shell .wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border-radius: 14px;
  font-weight: inherit;
  font-size: inherit;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  color: var(--text);
  background: transparent;
  border: none;
}
.nhp-shell .wp-block-button.button-primary .wp-block-button__link {
  color: white;
  background: linear-gradient(135deg, var(--violet), #7c3aed);
}
.nhp-shell .wp-block-button.button-secondary .wp-block-button__link {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.nhp-shell .wp-block-button .wp-block-button__link:hover {
  transform: translateY(-1px);
}

/* =====================================================
   NOTRE DIFFÉRENCE
   ===================================================== */
.nhp-shell .nhp-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.nhp-shell .nhp-diff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 28px;
  border-radius: 24px;
  transition:
    transform 260ms var(--emp-ease-spring, ease),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.nhp-shell .nhp-diff-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 90px rgba(124, 58, 237, 0.28);
}

.nhp-shell .nhp-diff-card__title {
  margin: 0 0 10px;
  font-family: inherit;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.nhp-shell .nhp-diff-card__sub {
  margin: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-soft);
}

.nhp-shell .nhp-diff-card__media {
  position: relative;
  width: 100%;
  margin-top: auto;
}

.nhp-shell .nhp-diff-card__media img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
}

.nhp-shell .nhp-diff-card__btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), #7c3aed);
  box-shadow: 0 10px 26px rgba(124, 58, 237, 0.5);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nhp-shell .nhp-diff-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(124, 58, 237, 0.65);
}

@media (max-width: 900px) {
  .nhp-shell .nhp-diff-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
}
