/*
 * NEWPHORIA — "Obsidian Titanium" design system.
 * Hyper-contemporary / Apple-Pro / Linear inspired.
 * Foglio condiviso tra la versione React e l'export statico FTP.
 */

/* ==== Proxima Nova (self-hosted, tutti i pesi) ==== */
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proximanova-100.woff2") format("woff2");
  font-weight: 100 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proximanova-100i.woff2") format("woff2");
  font-weight: 100 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proximanova-400.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proximanova-600i.woff2") format("woff2");
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proximanova-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proximanova-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proximanova-700i.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proximanova-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proximanova-800i.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proximanova-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/proximanova-900i.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}


:root {
  --np-void: #2e0c0b;
  --np-void-2: #1d0706;
  --np-zinc: #fffaf8;
  --np-grey: #d8c2ba;
  --np-grey-2: #ecdcd5;
  --np-line: rgba(253, 246, 243, 0.16);
  --np-line-strong: rgba(253, 246, 243, 0.3);
  --np-accent: #ff5a26;
  --np-accent-2: #ff8f52;
  --np-accent-3: #ffe3d6;
  --np-accent-soft: rgba(255, 90, 38, 0.18);
  --np-accent-glow: rgba(255, 90, 38, 0.42);
  --np-glass: rgba(255, 255, 255, 0.055);
  --np-glass-2: rgba(255, 255, 255, 0.09);

  --np-sans: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --np-display: var(--np-sans);
  --np-serif: var(--np-sans);
  --np-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --np-spring: cubic-bezier(0.16, 1.06, 0.3, 1);
  --np-gutter: clamp(1.25rem, 4vw, 5rem);
  --np-radius: 18px;
  --np-mark: url("newphoria-mark.svg");
}


/* reset locale — indispensabile per l'export statico (nessun preflight Tailwind) */
.np-root,
.np-root *,
.np-root *::before,
.np-root *::after {
  box-sizing: border-box;
}

:where(.np-root) {
  margin: 0;
}

:where(.np-root h1, .np-root h2, .np-root h3, .np-root h4, .np-root p, .np-root figure, .np-root blockquote, .np-root ul, .np-root ol) {
  margin: 0;
}

:where(.np-root ul, .np-root ol) {
  padding: 0;
  list-style: none;
}

:where(.np-root img, .np-root svg, .np-root canvas) {
  display: block;
  max-width: 100%;
}

:where(.np-root button, .np-root input, .np-root textarea, .np-root select) {
  font: inherit;
  color: inherit;
  margin: 0;
}

.np-root {
  background:
    radial-gradient(90% 55% at 12% 4%, rgba(232, 72, 24, 0.22), transparent 62%),
    radial-gradient(70% 45% at 92% 18%, rgba(255, 122, 60, 0.14), transparent 65%),
    radial-gradient(120% 70% at 50% 108%, rgba(232, 72, 24, 0.18), transparent 62%),
    linear-gradient(180deg, #4a1614 0%, var(--np-void) 38%, #2a0b0a 100%);
  color: var(--np-zinc);

  font-family: var(--np-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.008em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.np-root ::selection {
  background: var(--np-accent);
  color: var(--np-void);
}

.np-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.np-shell {
  position: relative;
  z-index: 1;
}

.np-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--np-grey);
  margin-bottom: 1.75rem;
}

.np-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--np-accent), transparent);
}

/* ---------- progress bar ---------- */
.np-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, rgba(232, 72, 24, 0.2), var(--np-accent), #ffffff);
  box-shadow: 0 0 18px var(--np-accent-glow);
  z-index: 90;
  pointer-events: none;
}

/* ---------- header / menu ---------- */
.np-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--np-gutter);
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.5s var(--np-ease),
    border-color 0.5s var(--np-ease),
    backdrop-filter 0.5s var(--np-ease);
}

.np-header[data-stuck="true"] {
  background: rgba(5, 5, 7, 0.62);
  backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: var(--np-line);
}

.np-wordmark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
  min-width: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none;
}


.np-wordmark-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--np-zinc);
  white-space: nowrap;
}

.np-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--np-accent);
  box-shadow: 0 0 12px var(--np-accent);
  animation: np-breathe 2.8s ease-in-out infinite;
  flex: none;
}

@keyframes np-breathe {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.8);
  }
}

.np-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  padding: 0.3rem;
  border: 1px solid var(--np-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

.np-nav-link {
  position: relative;
  border: 0;
  background: none;
  color: var(--np-grey-2);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition:
    color 0.35s var(--np-ease),
    background-color 0.35s var(--np-ease);
}

.np-nav-link:hover,
.np-nav-link[data-active="true"] {
  color: var(--np-zinc);
  background: rgba(255, 255, 255, 0.06);
}

.np-nav-link[data-active="true"] {
  box-shadow: inset 0 0 0 1px rgba(232, 72, 24, 0.25);
}

.np-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.np-clock {
  display: none;
  font-size: 12px;
  color: var(--np-grey);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.np-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--np-line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--np-zinc);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 0.62rem 1.15rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.35s var(--np-spring),
    background-color 0.35s var(--np-ease),
    border-color 0.35s var(--np-ease),
    box-shadow 0.45s var(--np-ease);
}

.np-btn:hover {
  border-color: rgba(232, 72, 24, 0.5);
  background: rgba(232, 72, 24, 0.1);
  box-shadow: 0 0 34px rgba(232, 72, 24, 0.18);
}

.np-btn-primary {
  background: linear-gradient(135deg, var(--np-accent-3), var(--np-accent) 42%, var(--np-accent-2));
  color: #0a0616;
  border-color: rgba(230, 220, 255, 0.35);
  font-weight: 700;
  box-shadow: 0 10px 34px -14px rgba(255, 122, 60, 0.75);
}

.np-btn-primary:hover {
  background: linear-gradient(135deg, #ffffff, var(--np-accent) 45%, var(--np-accent-2));
  box-shadow: 0 0 46px rgba(255, 122, 60, 0.5);
}

.np-btn-wa {
  border-color: rgba(232, 72, 24, 0.28);
  color: var(--np-accent-3);
}

.np-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--np-line-strong);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.np-burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--np-zinc);
  transition: transform 0.4s var(--np-ease), opacity 0.3s var(--np-ease);
}

.np-burger[data-open="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.np-burger[data-open="true"] span:nth-child(2) {
  opacity: 0;
}
.np-burger[data-open="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.np-drawer {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(5, 5, 7, 0.86);
  backdrop-filter: blur(26px) saturate(150%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 6rem var(--np-gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--np-ease), visibility 0.45s;
}

.np-drawer[data-open="true"] {
  opacity: 1;
  visibility: visible;
}

.np-drawer a {
  font-family: var(--np-serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1.15;
  color: var(--np-zinc);
  text-decoration: none;
  border-bottom: 1px solid var(--np-line);
  padding: 0.5rem 0;
}

.np-drawer a:hover {
  color: var(--np-accent);
}

.np-drawer-foot {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 1060px) {
  .np-nav {
    display: flex;
  }
  .np-clock {
    display: inline;
  }
  .np-burger {
    display: none;
  }
}

/* ---------- layout ---------- */
.np-section {
  padding: clamp(5.5rem, 13vh, 10rem) var(--np-gutter);
  max-width: 1560px;
  margin: 0 auto;
  scroll-margin-top: 5rem;
}

.np-h2 {
  font-family: var(--np-serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 5.4vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}

.np-para {
  color: var(--np-grey-2);
  font-size: clamp(1rem, 1.08vw, 1.1rem);
  line-height: 1.85;
  margin: 0 0 1.6rem;
  max-width: 68ch;
}

/* ---------- icons ---------- */
.np-icon {
  width: 22px;
  height: 22px;
  flex: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.np-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--np-line-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
  color: var(--np-accent);
  transition:
    box-shadow 0.5s var(--np-ease),
    border-color 0.5s var(--np-ease),
    transform 0.5s var(--np-spring);
}

/* ---------- hero ---------- */
.np-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem var(--np-gutter) 5rem;
  max-width: 1560px;
  margin: 0 auto;
}

.np-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--np-grey-2);
  border: 1px solid var(--np-line);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2.5rem;
}

.np-hero-h1 {
  font-family: var(--np-serif);
  font-weight: 400;
  font-size: clamp(3rem, 10.5vw, 10rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 20%, #a9b0bb 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.np-hero-sub {
  margin-top: 2rem;
  max-width: 48ch;
  color: var(--np-zinc);
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  line-height: 1.6;
  font-weight: 500;
}

.np-hero-body {
  margin-top: 1.5rem;
  max-width: 62ch;
  color: var(--np-grey);
  font-size: clamp(0.95rem, 1vw, 1.02rem);
  line-height: 1.85;
}

.np-hero-actions {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.np-hero-foot {
  margin-top: clamp(3rem, 8vh, 6rem);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--np-grey);
}

.np-scroll-line {
  display: inline-block;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--np-accent), transparent);
  animation: np-slide 2.4s var(--np-ease) infinite;
}

@keyframes np-slide {
  0% {
    transform: translateX(-8px);
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(8px);
    opacity: 0.2;
  }
}

/* ---------- glass primitives ---------- */
.np-glass {
  border: 1px solid var(--np-line);
  border-radius: var(--np-radius);
  background: linear-gradient(165deg, var(--np-glass-2), var(--np-glass));
  backdrop-filter: blur(18px) saturate(140%);
  position: relative;
  overflow: hidden;
}

.np-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 40%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- manifesto (01) ---------- */
.np-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 6rem);
}

@media (min-width: 960px) {
  .np-grid-2 {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

.np-sticky {
  position: sticky;
  top: 7.5rem;
  align-self: start;
}

/* ---------- dichotomy (02) ---------- */
.np-statements {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}

@media (min-width: 900px) {
  .np-statements {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.np-statement {
  padding: clamp(1.5rem, 2.2vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.6s var(--np-spring), box-shadow 0.6s var(--np-ease);
}

.np-statement:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px rgba(232, 72, 24, 0.35);
}

.np-statement:hover .np-icon-box {
  border-color: rgba(232, 72, 24, 0.5);
  box-shadow: 0 0 26px rgba(232, 72, 24, 0.22);
}

.np-statement p {
  margin: 0;
  color: var(--np-grey-2);
  font-size: 0.98rem;
  line-height: 1.75;
}

.np-flips {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

@media (min-width: 760px) {
  .np-flips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1240px) {
  .np-flips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.np-flip {
  display: block;
  perspective: 1400px;
  min-height: 260px;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.np-flip-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.85s var(--np-ease);
}

.np-flip:hover .np-flip-inner,
.np-flip[data-flipped="true"] .np-flip-inner {
  transform: rotateY(180deg);
}

.np-flip-face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid var(--np-line);
  border-radius: var(--np-radius);
  background: linear-gradient(165deg, var(--np-glass-2), var(--np-glass));
  backdrop-filter: blur(18px) saturate(140%);
  padding: clamp(1.5rem, 2.2vw, 2.1rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.np-flip-back {
  transform: rotateY(180deg);
  border-color: rgba(232, 72, 24, 0.4);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(232, 72, 24, 0.14), transparent 60%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 40px rgba(232, 72, 24, 0.08);
}

.np-flip-neg {
  font-family: var(--np-serif);
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  line-height: 1.15;
  color: var(--np-zinc);
  margin: 0;
}

.np-flip-aff {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.6;
  color: var(--np-zinc);
  font-weight: 500;
  margin: 0;
}

.np-flip-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--np-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.np-flip-back .np-flip-meta {
  color: var(--np-accent);
}

/* ---------- obsession (03) ---------- */
.np-rail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.np-rail-nav {
  display: flex;
  gap: 0.5rem;
}

.np-round {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--np-line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--np-zinc);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.35s var(--np-ease), border-color 0.35s var(--np-ease);
}

.np-round:hover {
  border-color: rgba(232, 72, 24, 0.5);
  background: rgba(232, 72, 24, 0.1);
}

.np-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 72, 24, 0.3) transparent;
}

.np-rail::-webkit-scrollbar {
  height: 3px;
}
.np-rail::-webkit-scrollbar-thumb {
  background: rgba(232, 72, 24, 0.35);
  border-radius: 999px;
}

.np-obs {
  scroll-snap-align: start;
  flex: 0 0 clamp(230px, 27vw, 320px);
  min-height: 250px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  transition: transform 0.6s var(--np-spring), box-shadow 0.6s var(--np-ease);
}

.np-obs:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -35px rgba(232, 72, 24, 0.4);
}

.np-obs:hover .np-icon-box {
  transform: scale(1.06);
  border-color: rgba(232, 72, 24, 0.5);
  box-shadow: 0 0 26px rgba(232, 72, 24, 0.25);
}

.np-obs-text {
  font-family: var(--np-serif);
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  line-height: 1.2;
  color: var(--np-zinc);
  margin: 0;
}

.np-obs-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--np-grey);
}

.np-quote {
  font-family: var(--np-serif);
  font-size: clamp(1.9rem, 4.4vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--np-zinc);
  margin: clamp(3rem, 8vh, 5.5rem) auto 0;
  max-width: 22ch;
  text-align: center;
}

/* ---------- disclosure ---------- */
.np-disclosure {
  border-top: 1px solid var(--np-line);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 980px) {
  .np-disclosure {
    grid-template-columns: 16rem minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
  }
}

.np-disclosure-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--np-grey);
  align-self: start;
}

.np-clamp {
  position: relative;
  max-height: 6.2em;
  overflow: hidden;
  transition: max-height 0.8s var(--np-ease);
}

.np-clamp::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4em;
  background: linear-gradient(180deg, transparent, var(--np-void));
  transition: opacity 0.5s var(--np-ease);
}

.np-clamp[data-open="true"] {
  max-height: 200em;
}

.np-clamp[data-open="true"]::after {
  opacity: 0;
}

.np-toggle {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  background: none;
  color: var(--np-accent);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.np-toggle:hover {
  text-shadow: 0 0 18px var(--np-accent-glow);
}

.np-toggle .np-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.5s var(--np-ease);
}

.np-toggle[data-open="true"] .np-icon {
  transform: rotate(180deg);
}

/* ---------- architecture hub (04) ---------- */
.np-hub {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

@media (min-width: 1080px) {
  .np-hub {
    grid-template-columns: 22rem minmax(0, 1fr);
  }
}

.np-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

@media (min-width: 1080px) {
  .np-tabs {
    flex-direction: column;
    overflow: visible;
    position: sticky;
    top: 7.5rem;
    align-self: start;
    padding: 0.6rem;
    border: 1px solid var(--np-line);
    border-radius: var(--np-radius);
    background: linear-gradient(165deg, var(--np-glass-2), var(--np-glass));
    backdrop-filter: blur(18px);
  }
}

.np-tab {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: none;
  border: 1px solid var(--np-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--np-grey-2);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 0.85rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.4s var(--np-ease),
    background-color 0.4s var(--np-ease),
    border-color 0.4s var(--np-ease),
    transform 0.4s var(--np-spring);
}

@media (min-width: 1080px) {
  .np-tab {
    white-space: normal;
  }
}

.np-tab .np-icon {
  width: 20px;
  height: 20px;
  color: var(--np-grey);
  transition: color 0.4s var(--np-ease);
}

.np-tab:hover {
  color: var(--np-zinc);
  border-color: var(--np-line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.np-tab[data-active="true"] {
  color: var(--np-zinc);
  border-color: rgba(232, 72, 24, 0.45);
  background:
    radial-gradient(120% 140% at 0% 50%, rgba(232, 72, 24, 0.16), transparent 70%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 30px -8px rgba(232, 72, 24, 0.35);
}

.np-tab[data-active="true"] .np-icon {
  color: var(--np-accent);
}

.np-tab-num {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--np-grey);
}

.np-panel {
  animation: np-panel-in 0.6s var(--np-ease) both;
}

@keyframes np-panel-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.np-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.np-panel-title {
  font-family: var(--np-serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

.np-panel-lead {
  color: var(--np-grey-2);
  font-size: 1rem;
  margin: 0.5rem 0 0;
  max-width: 60ch;
}

.np-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .np-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1320px) {
  .np-bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.np-cell {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 168px;
  transition:
    transform 0.55s var(--np-spring),
    border-color 0.55s var(--np-ease),
    box-shadow 0.55s var(--np-ease);
}

.np-cell:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 72, 24, 0.35);
  box-shadow: 0 26px 60px -34px rgba(232, 72, 24, 0.45);
}

.np-cell:hover .np-icon-box {
  color: #ffffff;
  border-color: rgba(232, 72, 24, 0.55);
  box-shadow: 0 0 24px rgba(232, 72, 24, 0.28);
}

.np-cell-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--np-zinc);
  letter-spacing: -0.01em;
}

.np-cell-desc {
  color: var(--np-grey);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.75;
  transition: opacity 0.5s var(--np-ease), color 0.5s var(--np-ease);
}

.np-cell:hover .np-cell-desc {
  opacity: 1;
  color: var(--np-grey-2);
}

.np-icon-box-sm {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.np-icon-box-sm .np-icon {
  width: 18px;
  height: 18px;
}

/* ---------- contact (06) ---------- */
.np-contact {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  border-radius: 26px;
}

.np-contact-head {
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

.np-contact-title {
  font-family: var(--np-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}

.np-contact-hi {
  color: var(--np-zinc);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
  margin: 1.75rem 0 0;
  max-width: 40ch;
}

.np-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 820px) {
  .np-form-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .np-field-full {
    grid-column: 1 / -1;
  }
}

.np-field {
  position: relative;
}

.np-field input,
.np-field textarea {
  width: 100%;
  border: 1px solid var(--np-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
  color: var(--np-zinc);
  font: inherit;
  font-size: 0.98rem;
  padding: 1.55rem 1rem 0.65rem;
  outline: none;
  transition:
    border-color 0.4s var(--np-ease),
    box-shadow 0.4s var(--np-ease),
    background-color 0.4s var(--np-ease);
}

.np-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.65;
}

.np-field label {
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  font-size: 0.95rem;
  color: var(--np-grey);
  pointer-events: none;
  transform-origin: 0 0;
  transition: transform 0.35s var(--np-ease), color 0.35s var(--np-ease);
}

.np-field input:focus,
.np-field textarea:focus {
  border-color: rgba(232, 72, 24, 0.6);
  background: rgba(232, 72, 24, 0.05);
  box-shadow: 0 0 0 4px rgba(232, 72, 24, 0.09), 0 0 40px -12px var(--np-accent-glow);
}

.np-field input:focus + label,
.np-field textarea:focus + label,
.np-field input:not(:placeholder-shown) + label,
.np-field textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.72rem) scale(0.74);
  color: var(--np-accent);
}

.np-pills-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--np-grey);
  margin: 2rem 0 0.9rem;
}

.np-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.np-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--np-line-strong);
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--np-grey-2);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    color 0.35s var(--np-ease),
    border-color 0.35s var(--np-ease),
    background-color 0.35s var(--np-ease),
    box-shadow 0.4s var(--np-ease);
}

.np-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.np-pill:hover {
  color: var(--np-zinc);
  border-color: rgba(232, 72, 24, 0.4);
}

.np-pill[data-checked="true"] {
  color: #3d1110;
  background: linear-gradient(180deg, #ffffff, #cdefff);
  border-color: transparent;
  box-shadow: 0 0 34px -8px var(--np-accent-glow);
}

.np-form-foot {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.np-submit {
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 1.05rem 1.9rem;
}

.np-spinner {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.6px solid rgba(5, 5, 7, 0.25);
  border-top-color: #3d1110;
  animation: np-spin 0.7s linear infinite;
}

@keyframes np-spin {
  to {
    transform: rotate(360deg);
  }
}

.np-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--np-accent);
  font-weight: 600;
  font-size: 0.95rem;
  animation: np-panel-in 0.5s var(--np-ease) both;
}

.np-contact-foot {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--np-line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  align-items: center;
}

.np-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--np-grey-2);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.35s var(--np-ease);
}

.np-contact-link .np-icon {
  width: 18px;
  height: 18px;
  color: var(--np-accent);
}

.np-contact-link:hover {
  color: var(--np-zinc);
}

/* ---------- footer ---------- */
.np-footer {
  border-top: 1px solid var(--np-line);
  padding: 2.5rem var(--np-gutter) 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--np-grey);
  max-width: 1560px;
  margin: 0 auto;
}

/* ---------- WhatsApp floating ---------- */
.np-wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 70;
  box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.9);
}

/* ---------- reveal ---------- */
.np-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s var(--np-ease),
    transform 0.9s var(--np-ease);
}

.np-reveal.np-in {
  opacity: 1;
  transform: none;
}

.np-stagger > * {
  transition-delay: calc(var(--np-i, 0) * 70ms);
}

@media (prefers-reduced-motion: reduce) {
  .np-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .np-dot,
  .np-scroll-line,
  .np-spinner {
    animation: none;
  }
}

html,
body {
  background: var(--np-void);
}

/* =========================================================
 * GIORNALE — editorial layout
 * ========================================================= */
.np-paper-head {
  border-top: 1px solid var(--np-line-strong);
  border-bottom: 1px solid var(--np-line);
  padding: 1.6rem 0 1.2rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.np-paper-title {
  font-family: var(--np-serif);
  font-size: clamp(2.9rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--np-zinc);
}

.np-paper-meta {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--np-grey);
}

.np-paper-lede {
  font-family: var(--np-serif);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.32;
  color: var(--np-zinc);
  margin: 0 0 2.5rem;
  max-width: 34ch;
  border-left: 1px solid var(--np-accent);
  padding-left: clamp(1rem, 2vw, 2rem);
}

.np-paper-cols {
  column-gap: clamp(2rem, 4vw, 4rem);
  column-rule: 1px solid var(--np-line);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 760px) {
  .np-paper-cols {
    column-count: 2;
  }
}

@media (min-width: 1180px) {
  .np-paper-cols-3 {
    column-count: 3;
  }
}

.np-paper-p {
  margin: 0 0 1.35rem;
  color: var(--np-grey-2);
  font-size: 1rem;
  line-height: 1.85;
  text-align: justify;
  hyphens: auto;
  break-inside: avoid-column;
}

.np-paper-cols .np-paper-p:first-child::first-letter {
  font-family: var(--np-sans, inherit);
  float: left;
  font-size: 3.1em;
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: -0.06em;
  padding: 0.1em 0.16em 0 0;
  color: transparent;
  background: linear-gradient(150deg, #ffffff 10%, var(--np-accent) 55%, var(--np-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(255, 122, 60, 0.28));
}

/* dichotomy ledger */
.np-ledger {
  border-top: 1px solid var(--np-line-strong);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 820px) {
  .np-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 4vw, 4rem);
  }
}

.np-ledger-item {
  border-bottom: 1px solid var(--np-line);
  padding: 1.75rem 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon neg" ". aff";
  gap: 0.5rem 1.1rem;
  align-items: start;
  transition: background-color 0.5s var(--np-ease);
}

.np-ledger-item .np-icon-box {
  grid-area: icon;
  transition: border-color 0.4s var(--np-ease), box-shadow 0.4s var(--np-ease);
}

.np-ledger-item:hover .np-icon-box {
  border-color: rgba(232, 72, 24, 0.55);
  box-shadow: 0 0 24px rgba(232, 72, 24, 0.22);
}

.np-ledger-neg {
  grid-area: neg;
  margin: 0;
  font-family: var(--np-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  font-weight: 400;
  color: var(--np-zinc);
}

.np-ledger-aff {
  grid-area: aff;
  margin: 0;
  color: var(--np-grey-2);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 46ch;
}

.np-ledger-item:hover .np-ledger-aff {
  color: var(--np-zinc);
}

/* obsession rows */
.np-obs-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--np-line);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 720px) {
  .np-obs-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 4vw, 4rem);
  }
}

.np-obs-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--np-line);
  font-family: var(--np-serif);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  color: var(--np-zinc);
}

.np-obs-row:hover .np-icon-box {
  border-color: rgba(232, 72, 24, 0.55);
  box-shadow: 0 0 22px rgba(232, 72, 24, 0.2);
}

/* essays (philosophy) */
.np-essay {
  border-top: 1px solid var(--np-line);
  padding: clamp(1.8rem, 3vw, 2.6rem) 0;
}

.np-essay-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.np-essay-title {
  margin: 0;
  font-family: var(--np-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--np-zinc);
}

.np-essay-text {
  margin: 0;
  color: var(--np-grey-2);
  font-size: 1.02rem;
  line-height: 1.9;
  text-align: justify;
  hyphens: auto;
  column-gap: clamp(2rem, 4vw, 4rem);
  column-rule: 1px solid var(--np-line);
}

@media (min-width: 900px) {
  .np-essay-text {
    column-count: 2;
  }
}

.np-essay-text::first-line {
  color: var(--np-zinc);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.np-essay-text::first-letter {
  font-family: inherit;
  font-size: inherit;
  float: none;
  color: inherit;
  background: none;
}

/* =========================================================
 * SPLASH — system initialization
 * ========================================================= */
html[data-np-splash="on"] body {
  overflow: hidden;
}

.np-splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  background:
    radial-gradient(60% 50% at 50% 55%, rgba(255, 90, 38, 0.16), transparent 72%),
    radial-gradient(90% 70% at 50% 120%, rgba(255, 143, 82, 0.12), transparent 70%),
    #150403;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition:
    clip-path 1.15s cubic-bezier(0.76, 0, 0.24, 1),
    transform 1.15s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.75s 0.25s ease-out,
    filter 0.9s ease-out;
}

.np-splash[data-exit="true"] {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.06);
  filter: blur(10px);
  opacity: 0;
}

.np-splash[data-exit="true"] .np-splash-core {
  transform: translateY(-4vh) scale(0.97);
  opacity: 0;
  transition:
    transform 0.9s var(--np-ease),
    opacity 0.6s ease-out;
}

.np-splash-grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(255, 226, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 226, 214, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(65% 55% at 50% 50%, #000, transparent 80%);
  animation: np-splash-drift 9s linear infinite;
}

@keyframes np-splash-drift {
  to {
    transform: translate3d(68px, 68px, 0);
  }
}

.np-splash-horizon {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--np-accent), transparent);
  opacity: 0.35;
  filter: blur(0.4px);
  box-shadow: 0 0 70px 8px rgba(255, 90, 38, 0.25);
  animation: np-splash-horizon 2.6s var(--np-ease) forwards;
}

@keyframes np-splash-horizon {
  0% {
    transform: scaleX(0.05);
    opacity: 0;
  }
  60% {
    opacity: 0.6;
  }
  100% {
    transform: scaleX(1);
    opacity: 0.28;
  }
}

.np-splash-top,
.np-splash-bottom {
  position: relative;
  z-index: 2;
}

.np-splash-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--np-grey);
  animation: np-splash-in 0.9s var(--np-ease) both;
}

.np-splash-core {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 1.75rem);
  transition:
    transform 0.9s var(--np-ease),
    opacity 0.6s ease-out;
}

.np-splash-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--np-grey-2);
  animation: np-splash-in 1s 0.15s var(--np-ease) both;
}

/* --- kinetic lettering --- */
.np-splash-line {
  margin: 0;
  position: relative;
  font-family: var(--np-display);
  font-weight: 500;
  font-size: clamp(2.35rem, 8.4vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #fffaf8;
  max-width: 18ch;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.28em;
}

.np-splash-word {
  display: inline-flex;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.np-splash-word[data-em="true"] {
  font-family: var(--np-serif);
  font-style: italic;
  font-weight: 300;
}

.np-splash-word[data-em="true"] .np-splash-char {
  background: linear-gradient(100deg, #ffe3d6 0%, var(--np-accent-2) 55%, var(--np-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.np-splash-char {
  display: inline-block;
  white-space: pre;
  transform: translateY(115%) rotate(6deg);
  opacity: 0;
  animation: np-splash-char 1.15s var(--np-spring) forwards;
  animation-delay: calc(0.28s + var(--i, 0) * 0.032s);
}

@keyframes np-splash-char {
  0% {
    transform: translateY(115%) rotate(6deg);
    opacity: 0;
    filter: blur(6px);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

/* sweep di luce sul lettering */
.np-splash-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 620px);
  aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 38, 0.28);
  opacity: 0;
  animation: np-splash-ring 2.8s 0.4s var(--np-ease) infinite;
}

.np-splash-ring[data-delay="1"] {
  animation-delay: 1.3s;
}

@keyframes np-splash-ring {
  0% {
    transform: scale(0.55);
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@keyframes np-splash-in {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.np-splash-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.np-splash-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: rgba(255, 226, 214, 0.12);
  overflow: hidden;
}

.np-splash-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, rgba(255, 90, 38, 0.35), var(--np-accent), #ffe3d6);
  box-shadow: 0 0 20px var(--np-accent-glow);
  animation: np-splash-fill 2.5s cubic-bezier(0.4, 0, 0.1, 1) forwards;
}

@keyframes np-splash-fill {
  to {
    transform: scaleX(1);
  }
}

.np-splash-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.np-splash-micro {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--np-grey);
}

.np-splash-count {
  font-family: var(--np-display);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--np-zinc);
  line-height: 1;
  animation: np-splash-in 0.8s 0.2s var(--np-ease) both;
}

@media (prefers-reduced-motion: reduce) {
  .np-splash {
    display: none;
  }
}


/* =========================================================
 * AURORA + SPOTLIGHT (micro-interazione forte)
 * ========================================================= */
.np-aurora {
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 34% at 20% 26%, rgba(255, 122, 60, 0.24), transparent 70%),
    radial-gradient(32% 30% at 80% 62%, rgba(232, 72, 24, 0.18), transparent 70%),
    radial-gradient(30% 26% at 55% 92%, rgba(101, 78, 200, 0.2), transparent 70%);
  filter: blur(38px);
  opacity: 0.75;
  animation: np-aurora-drift 22s ease-in-out infinite alternate;
}

@keyframes np-aurora-drift {
  0% {
    transform: translate3d(-3%, -2%, 0) scale(1);
  }
  50% {
    transform: translate3d(3%, 2%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-2%, 3%, 0) scale(1.03);
  }
}

.np-spotlight {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--np-ease);
  background: radial-gradient(
    340px 340px at var(--np-mx, 50%) var(--np-my, 50%),
    rgba(232, 72, 24, 0.16),
    rgba(255, 122, 60, 0.07) 42%,
    transparent 70%
  );
  mix-blend-mode: screen;
}

@media (hover: hover) and (pointer: fine) {
  .np-spotlight {
    opacity: 1;
  }
}

.np-shell {
  z-index: 2;
}

/* interactive lift for glass surfaces */
.np-glass,
.np-cell,
.np-tab {
  position: relative;
}

.np-cell {
  transition:
    transform 0.5s var(--np-spring),
    border-color 0.4s var(--np-ease),
    box-shadow 0.5s var(--np-ease);
}

.np-cell:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 72, 24, 0.4);
  box-shadow: 0 22px 60px -30px rgba(255, 122, 60, 0.85);
}

.np-ledger-item:hover {
  background: linear-gradient(90deg, rgba(255, 122, 60, 0.08), transparent 65%);
}

/* =========================================================
 * MOBILE — densità + dock di navigazione
 * ========================================================= */
.np-dock {
  position: fixed;
  z-index: 82;
  left: 0.6rem;
  right: 0.6rem;
  bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid var(--np-line-strong);
  background: rgba(8, 7, 14, 0.78);
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 18px 44px -20px rgba(0, 0, 0, 0.9);
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  transform: translateY(160%);
  transition: transform 0.5s var(--np-spring);
}

.np-dock::-webkit-scrollbar {
  display: none;
}

.np-dock[data-visible="true"] {
  transform: translateY(0);
}

.np-dock-link {
  flex: none;
  scroll-snap-align: center;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  background: none;
  color: var(--np-grey-2);
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s var(--np-ease), background-color 0.3s var(--np-ease);
}

.np-dock-link .np-icon {
  width: 15px;
  height: 15px;
}

.np-dock-link[data-active="true"] {
  color: #0a0616;
  background: linear-gradient(135deg, var(--np-accent-3), var(--np-accent) 50%, var(--np-accent-2));
  box-shadow: 0 6px 22px -10px rgba(255, 122, 60, 0.9);
}

.np-dock-cta {
  flex: none;
  margin-left: auto;
  position: sticky;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(232, 72, 24, 0.4);
  background: rgba(255, 122, 60, 0.18);
  color: var(--np-accent-3);
}

@media (min-width: 1060px) {
  .np-dock {
    display: none;
  }
}

@media (max-width: 1059px) {
  .np-drawer {
    justify-content: flex-start;
    padding: 5.5rem var(--np-gutter) 7rem;
    gap: 0;
    overflow-y: auto;
  }
  .np-drawer a {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
    padding: 0.85rem 0;
  }
}

@media (max-width: 720px) {
  :root {
    --np-gutter: 1.1rem;
  }
  .np-root {
    font-size: 15px;
  }
  .np-section {
    padding: 3.6rem var(--np-gutter);
    scroll-margin-top: 4rem;
  }
  .np-eyebrow {
    margin-bottom: 1rem;
  }
  .np-para,
  .np-paper-p,
  .np-essay-text {
    line-height: 1.62;
    text-align: left;
    font-size: 0.95rem;
  }
  .np-paper-p {
    margin-bottom: 0.9rem;
  }
  .np-essay {
    padding: 1.4rem 0;
  }
  .np-ledger-item {
    padding: 1.05rem 0;
    gap: 0.35rem 0.8rem;
  }
  .np-ledger-neg {
    font-size: 1.22rem;
  }
  .np-ledger-aff {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .np-obs-row {
    padding: 0.7rem 0;
    font-size: 1.05rem;
  }
  .np-hero {
    min-height: auto;
  }
  .np-hero-actions .np-btn {
    flex: 1 1 100%;
  }
  .np-paper-lede {
    margin-bottom: 1.6rem;
  }
  .np-tabs {
    display: flex;
    overflow-x: auto;
    gap: 0.4rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.3rem;
  }
  .np-tabs::-webkit-scrollbar {
    display: none;
  }
  .np-tab {
    flex: none;
    scroll-snap-align: start;
  }
  .np-tab-num {
    display: none;
  }
  .np-cell {
    padding: 1rem;
  }
  .np-contact,
  .np-glass {
    padding: 1.1rem;
  }
  main {
    padding-bottom: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .np-aurora {
    animation: none;
  }
}

/* =========================================================
 * SERVICES FINDER — mobile guided questions
 * ========================================================= */
.np-finder {
  display: none;
}

@media (max-width: 899px) {
  .np-hub {
    display: none;
  }

  .np-finder {
    display: block;
    margin-top: 1.5rem;
  }
}

.np-finder-head {
  margin-bottom: 1.1rem;
}

.np-finder-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--np-accent);
}

.np-finder-hint {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  color: var(--np-grey-2);
}

.np-ask {
  border-radius: 20px;
  border: 1px solid var(--np-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  backdrop-filter: blur(14px);
  margin-bottom: 0.7rem;
  overflow: hidden;
  transition:
    border-color 0.35s var(--np-ease),
    box-shadow 0.35s var(--np-ease);
}

.np-ask[data-open="true"] {
  border-color: rgba(232, 72, 24, 0.42);
  box-shadow: 0 20px 60px -30px rgba(255, 122, 60, 0.6);
}

.np-ask-q {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.05rem;
  background: none;
  border: 0;
  text-align: left;
  color: var(--np-zinc);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.np-ask-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--np-accent);
  opacity: 0.85;
}

.np-ask-plus {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid var(--np-line-strong);
  color: var(--np-accent);
  transition: transform 0.4s var(--np-ease);
}

.np-ask[data-open="true"] .np-ask-plus {
  transform: rotate(90deg);
  background: linear-gradient(140deg, var(--np-accent), var(--np-accent-2));
  color: #0a0a0d;
  border-color: transparent;
}

.np-ask-body {
  padding: 0 1.05rem 1.15rem;
  animation: np-ask-in 0.45s var(--np-ease) both;
}

@keyframes np-ask-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.np-ask-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--np-line);
}

.np-ask-title h3 {
  margin: 0;
  font-family: var(--np-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--np-zinc);
  letter-spacing: -0.01em;
}

.np-ask-lead {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--np-grey-2);
}

.np-ask-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.np-ask-item {
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
}

.np-ask-item .np-cell-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--np-zinc);
}

.np-ask-item .np-cell-desc {
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--np-grey);
}

/* =========================================================
 * SPLASH — restyle (contemporary)
 * ========================================================= */
.np-splash {
  background:
    radial-gradient(60% 45% at 50% 42%, rgba(255, 122, 60, 0.18), transparent 70%),
    radial-gradient(80% 60% at 80% 100%, rgba(232, 72, 24, 0.1), transparent 70%),
    #3d1110;
}

.np-splash-grid {
  background-image: none;
  background:
    radial-gradient(40% 30% at 50% 50%, rgba(232, 72, 24, 0.12), transparent 72%);
  animation: none;
  mask-image: none;
  filter: blur(30px);
}

.np-splash-horizon {
  height: 1px;
  opacity: 0.25;
  box-shadow: 0 0 90px 10px rgba(232, 72, 24, 0.16);
}

.np-splash-top,
.np-splash-micro {
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: color-mix(in oklab, var(--np-grey) 85%, transparent);
}

.np-splash-kicker {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--np-line-strong);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  letter-spacing: 0.18em;
  font-size: 10px;
}

.np-splash-line {
  filter: drop-shadow(0 12px 50px rgba(255, 122, 60, 0.28));
}

.np-splash-bar {
  height: 2px;
  border-radius: 999px;
}

/* ================= LANDING ================= */
.np-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--np-accent-3);
  backdrop-filter: blur(12px);
}
.np-btn-ghost:hover {
  border-color: var(--np-accent);
  box-shadow: 0 0 24px rgba(232, 72, 24, 0.18);
}

.np-ld-hero .np-hero-h1 {
  max-width: 18ch;
}

.np-ld-stats {
  margin-top: clamp(3rem, 8vw, 5rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
}
.np-ld-stat {
  background: #07070b;
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.np-ld-stat-v {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #ffffff, var(--np-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.np-ld-stat-l {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(228, 228, 231, 0.55);
}

.np-ld-services {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  gap: 0.9rem;
}
.np-ld-service {
  padding: 0;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.np-ld-service[data-open="true"] {
  border-color: rgba(232, 72, 24, 0.35);
}
.np-ld-service-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: none;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.np-ld-service-titles {
  display: grid;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}
.np-ld-service-num {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(232, 72, 24, 0.7);
}
.np-ld-service-name {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: -0.02em;
}
.np-ld-service-q {
  font-size: 0.85rem;
  color: rgba(228, 228, 231, 0.5);
}
.np-ld-service-plus {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  flex: none;
}
.np-ld-service[data-open="true"] .np-ld-service-plus {
  transform: rotate(135deg);
  border-color: var(--np-accent);
}
.np-ld-service-body {
  padding: 0 1.25rem 1.35rem;
}
.np-ld-service-lead {
  color: rgba(228, 228, 231, 0.75);
  margin: 0 0 1rem;
  max-width: 70ch;
}
.np-ld-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.np-ld-service-list li {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.np-ld-partner {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(228, 228, 231, 0.6);
}
.np-ld-partner a {
  color: var(--np-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 72, 24, 0.4);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.np-ld-partner a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.np-ld-ai-lead {
  position: relative;
  overflow: clip;
  margin-top: clamp(0.9rem, 2vw, 1.25rem);
  padding: clamp(0.95rem, 2vw, 1.35rem);
  display: grid;
  gap: 0.45rem;
}
.np-ld-ai-lead .np-ld-ai-mark {
  position: absolute !important;
  right: -6%;
  top: 50%;
  translate: 0 -50%;
  width: min(150px, 20%) !important;
  opacity: 0.28;
  pointer-events: none;
}
.np-ld-ai-claim {
  position: relative;
  margin: 0;
  max-width: 34ch;
  font-family: var(--np-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.np-ld-ai-lead .np-para {
  position: relative;
  max-width: 74ch;
  font-size: 0.88rem;
  line-height: 1.5;
}
.np-ld-ai-lead .np-ld-partner {
  position: relative;
  margin: 0.1rem 0 0;
  font-size: 0.82rem;
}

.np-ld-ai-grid {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.np-ld-ai-card {
  padding: 0.8rem 0.85rem;
  display: grid;
  gap: 0.35rem;
  align-content: start;
}
.np-ld-ai-card .np-cell-desc {
  font-size: 0.8rem;
  line-height: 1.4;
}
.np-ld-ai-card-t {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.np-ld-ai-actions {
  margin-top: clamp(0.8rem, 1.6vw, 1.1rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* compressione sezione AI + disclosure "leggi tutto" */
.np-ld-ai-clamp {
  max-height: 4.4em;
  display: grid;
  gap: 0.35rem;
}
.np-ld-ai-clamp::after {
  height: 2.6em;
  background: linear-gradient(180deg, transparent, rgba(46, 12, 11, 0.92));
}
.np-ld-ai-clamp[data-open="true"] {
  max-height: 60em;
}
.np-ld-ai-toggle {
  margin-top: 0.5rem;
  font-size: 11px;
  justify-self: start;
}
.np-ld-ai-grid[data-open="false"] > .np-ld-ai-card:nth-child(n + 4) {
  display: none;
}


/* prodotti */
.np-ld-prod-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.np-ld-prod {
  padding: clamp(1.4rem, 3vw, 2rem);
  display: grid;
  gap: 0.6rem;
  align-content: start;
}
.np-ld-prod-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--np-accent);
}
.np-ld-prod-t {
  margin: 0;
  font-family: var(--np-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: -0.01em;
}
.np-ld-prod-cta {
  margin-top: 0.5rem;
  justify-self: start;
}

/* prodotto in evidenza + mockup telefono */
.np-ld-prod-hero {
  margin-top: clamp(1.6rem, 4vw, 2.5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  overflow: clip;
}
.np-ld-prod-hero-copy {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}
.np-ld-prod-hero .np-ld-prod-t {
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
}
.np-ld-prod-badge {
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(232, 72, 24, 0.45);
  border-radius: 999px;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--np-accent);
}
.np-ld-prod-points {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.np-ld-prod-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--np-text-2, rgba(255, 255, 255, 0.72));
}
.np-ld-prod-points svg {
  flex: none;
  width: 15px;
  height: 15px;
  margin-top: 0.18rem;
  color: var(--np-accent);
}

.np-phone {
  justify-self: center;
  perspective: 1200px;
}
.np-phone-frame {
  position: relative;
  width: min(258px, 62vw);
  aspect-ratio: 540 / 988;
  padding: 9px;
  border-radius: 38px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.09) inset,
    0 0 60px rgba(232, 72, 24, 0.18);
  transform: rotateY(-11deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.np-ld-prod-hero:hover .np-phone-frame {
  transform: rotateY(-4deg) rotateX(1deg) translateY(-6px);
}
.np-phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  translate: -50% 0;
  width: 34%;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2;
}
.np-phone-frame video {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.6);
  display: block;
}

@media (max-width: 900px) {
  .np-ld-prod-hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .np-phone-frame {
    transform: none;
  }
}
@media (max-width: 720px) {
  .np-ld-prod-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



.np-ld-steps,
.np-ld-why {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.np-ld-why {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.np-ld-step,
.np-ld-why-item {
  padding: 1.4rem;
  display: grid;
  gap: 0.65rem;
  align-content: start;
}
.np-ld-step-n {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: rgba(232, 72, 24, 0.7);
}
.np-ld-step-t {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}

.np-ld-investors {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.np-ld-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.np-ld-bullets li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: rgba(228, 228, 231, 0.78);
  font-size: 0.95rem;
  line-height: 1.5;
}
.np-ld-bullets svg {
  color: var(--np-accent);
  flex: none;
  margin-top: 0.15rem;
}

.np-ld-cta {
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.np-ld-cta-t {
  font-family: var(--np-sans);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
}

@media (max-width: 900px) {
  .np-ld-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .np-ld-service-list,
  .np-ld-steps,
  .np-ld-why,
  .np-ld-ai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .np-ld-ai-mark {
    display: none;
  }
  .np-ld-investors {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .np-ld-service-list,
  .np-ld-steps,
  .np-ld-why,
  .np-ld-ai-grid {
    grid-template-columns: 1fr;
  }
  .np-ld-ai-actions .np-btn {
    width: 100%;
    justify-content: center;
  }
  .np-ld-service-head {
    padding: 1rem;
  }
}

/* =========================================================
 * FIX ALLINEAMENTI — header mobile, overlay, elementi nascosti
 * ========================================================= */
[hidden] {
  display: none !important;
}

@media (max-width: 1059px) {
  .np-header {
    gap: 0.6rem;
  }
  .np-header-right {
    flex: none;
    gap: 0.5rem;
    min-width: 0;
  }
  /* la CTA vive già nella dock in basso: evita l'overflow del burger */
  .np-header-right > .np-btn {
    display: none;
  }
  .np-wordmark-text {
    font-size: 13px;
    letter-spacing: 0.28em;
  }
  /* il pulsante WhatsApp flottante si sovrapponeva alla dock */
  .np-wa-float {
    display: none;
  }
}

@media (max-width: 420px) {
  .np-wordmark-text {
    letter-spacing: 0.2em;
  }
}

/* =========================================================
 * v3 — WARM EMBER / typography + 3D mark
 * ========================================================= */
.np-hero-h1,
.np-h2,
.np-ld-stat-v,
.np-wordmark-text,
.np-eyebrow,
.np-btn {
  font-family: var(--np-display);
  font-optical-sizing: auto;
}

.np-hero-h1,
.np-h2 {
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.035em;
}

.np-hero-h1 em,
.np-h2 em {
  font-family: var(--np-serif);
  font-optical-sizing: auto;
}

.np-splash-line {
  font-optical-sizing: auto;
}

/* ---- 3D pictogram ---- */
.np-mark3d {
  position: relative;
  width: var(--np-mark-size, 220px);
  aspect-ratio: 1.1 / 1;
  perspective: 900px;
  pointer-events: none;
}

.np-mark3d-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: np-mark-spin 16s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transition: transform 0.6s var(--np-spring);
}

.np-mark3d-face {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #ffd9c9 0%, var(--np-accent) 45%, #8f1f06 100%);
  -webkit-mask-image: var(--np-mark);
  mask-image: var(--np-mark);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  filter: drop-shadow(0 24px 60px rgba(232, 72, 24, 0.45));
}

/* extrusion: copie sfalsate in profondità */
.np-mark3d-face[data-depth] {
  opacity: 0.9;
  filter: none;
}

.np-mark3d-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(232, 72, 24, 0.45), transparent 70%);
  filter: blur(28px);
  animation: np-mark-pulse 4.5s ease-in-out infinite;
}

@keyframes np-mark-spin {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  50% {
    transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(0deg) rotateY(360deg) rotateZ(0deg);
  }
}


@keyframes np-mark-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

/* hero mark */
.np-ld-hero {
  position: relative;
  overflow: clip;
}


.np-hero-mark {
  position: absolute;
  top: clamp(2rem, 8vh, 7rem);
  right: clamp(-2rem, 2vw, 4rem);
  --np-mark-size: clamp(180px, 26vw, 380px);
  z-index: 0;
  opacity: 0.95;
}

.np-ld-hero > *:not(.np-hero-mark) {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .np-hero-mark {
    --np-mark-size: 150px;
    top: auto;
    bottom: -2rem;
    right: -1.5rem;
    opacity: 0.35;
  }
}

/* ---- splash: più fluido ---- */
.np-splash {
  background:
    radial-gradient(70% 50% at 50% 40%, rgba(232, 72, 24, 0.2), transparent 70%),
    linear-gradient(180deg, #4a1614, #2a0b0a);
  transition:
    transform 1.15s cubic-bezier(0.65, 0, 0.15, 1),
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    filter 1s ease;
  will-change: transform, opacity;
}

.np-splash[data-exit="true"] {
  transform: translateY(-8%) scale(1.06);
  opacity: 0;
  filter: blur(14px);
}

.np-splash[data-exit="true"] .np-splash-core,
.np-splash[data-exit="true"] .np-splash-top,
.np-splash[data-exit="true"] .np-splash-bottom {
  transition:
    opacity 0.5s ease,
    transform 0.7s var(--np-ease);
  opacity: 0;
  transform: translateY(-18px);
}

.np-splash-mark {
  --np-mark-size: clamp(84px, 14vw, 150px);
  animation: np-splash-in 1.1s 0.05s var(--np-ease) both;
}

.np-splash-mark .np-mark3d-inner {
  animation-duration: 5.5s;
}

.np-splash-bar-fill {
  animation-duration: 2.7s;
  animation-timing-function: cubic-bezier(0.3, 0.8, 0.2, 1);
}

@keyframes np-splash-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

/* ---- wow: tilt / shine per le card ---- */
.np-glass {
  position: relative;
  overflow: hidden;
}

.np-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    22rem 22rem at var(--np-cx, 50%) var(--np-cy, 0%),
    rgba(255, 122, 60, 0.14),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s var(--np-ease);
  pointer-events: none;
}

.np-glass:hover::after {
  opacity: 1;
}

.np-hero-h1 {
  line-height: 1.02;
  padding-bottom: 0.08em;
}

/* ================= ROADMAP ================= */
.np-rm-hero {
  padding: clamp(6rem, 16vh, 11rem) var(--np-gutter) clamp(2.5rem, 7vh, 4rem);
  display: grid;
  gap: 1.15rem;
  justify-items: start;
}

.np-rm-hero-h1 {
  margin: 0;
  font-family: var(--np-display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-size: clamp(2.5rem, 7.5vw, 5.4rem);
  color: #fffaf8;
  max-width: 16ch;
}

.np-rm-hero-claim {
  margin: 0;
  font-family: var(--np-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  background: linear-gradient(100deg, #ffe3d6 0%, var(--np-accent-2) 55%, var(--np-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.np-rm-hero-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  width: 100%;
  margin-top: 1.2rem;
}

.np-rm-hero-year {
  display: grid;
  gap: 0.3rem;
  padding: 0.85rem 0.9rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--np-ease), border-color 0.45s var(--np-ease);
}

.np-rm-hero-year::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--np-accent), transparent);
  transform: scaleX(calc((var(--i) + 1) / 5));
  transform-origin: left;
  opacity: 0.75;
}

.np-rm-hero-year:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 38, 0.5);
}

.np-rm-hero-year span {
  font-family: var(--np-display);
  font-size: 1.24rem;
  color: #fffaf8;
  letter-spacing: -0.02em;
}

.np-rm-hero-year em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--np-zinc);
}

/* ---- chapter index ---- */
.np-rm-index {
  position: sticky;
  top: 64px;
  z-index: 30;
  margin: 0 0 1.5rem;
  padding: 0.5rem 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(20, 6, 5, 0.97), rgba(20, 6, 5, 0.9));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.np-rm-index-in {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.35rem clamp(1.1rem, 5vw, 3.5rem);
  scrollbar-width: none;
}

.np-rm-index-in::-webkit-scrollbar {
  display: none;
}

.np-rm-index-link {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
  color: var(--np-zinc);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.35s var(--np-ease);
}

.np-rm-index-link b {
  font-family: var(--np-display);
  color: var(--np-accent);
  font-weight: 500;
}

.np-rm-index-link:hover {
  color: #fffaf8;
  border-color: rgba(255, 90, 38, 0.45);
}

.np-rm-index-link[data-active="1"] {
  color: #1a0705;
  background: linear-gradient(120deg, var(--np-accent-2), var(--np-accent));
  border-color: transparent;
}

.np-rm-index-link[data-active="1"] b {
  color: rgba(26, 7, 5, 0.65);
}

/* ---- section shell ---- */
.np-rm-section {
  padding-block: clamp(2.6rem, 5.5vw, 4.2rem);
  scroll-margin-top: 150px;
}

.np-rm-cols {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.np-rm-aside {
  position: sticky;
  top: 156px;
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.np-rm-head {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.1rem;
}

.np-rm-num {
  font-family: var(--np-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--np-accent);
  border: 1px solid rgba(255, 90, 38, 0.35);
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  flex: none;
}

.np-rm-title {
  margin: 0;
  font-family: var(--np-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  color: #fffaf8;
}

.np-rm-aside-rule {
  width: 56px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--np-accent), transparent);
}

.np-rm-ghost {
  font-family: var(--np-display);
  font-size: 7rem;
  line-height: 0.8;
  font-weight: 500;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}

.np-rm-body {
  display: grid;
  gap: 1.15rem;
  max-width: 72ch;
}

.np-rm-lead {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.36rem);
  line-height: 1.5;
  color: #f6e8e3;
}

.np-rm-p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--np-zinc);
}

/* ---- callout ---- */
.np-rm-strong {
  position: relative;
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 90, 38, 0.22);
  background: linear-gradient(120deg, rgba(255, 90, 38, 0.12), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.np-rm-strong p {
  margin: 0;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.45;
  font-weight: 600;
  color: #fff6f2;
}

.np-rm-strong-bar {
  display: block;
  align-self: stretch;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--np-accent-2), var(--np-accent));
}

.np-rm-sub {
  margin: 0.4rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--np-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff2ec;
  border: 1px solid rgba(255, 90, 38, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  width: fit-content;
  background: rgba(255, 90, 38, 0.08);
}

.np-rm-sub-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--np-accent);
  box-shadow: 0 0 12px var(--np-accent);
  animation: npPulseDot 2.4s var(--np-ease) infinite;
}

@keyframes npPulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

.np-rm-quote {
  position: relative;
  margin: 0.4rem 0;
  padding: clamp(1.4rem, 3vw, 2.1rem) clamp(1.3rem, 3vw, 2rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  overflow: hidden;
}

.np-rm-quote p {
  margin: 0;
  position: relative;
  font-family: var(--np-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.8vw, 1.85rem);
  line-height: 1.35;
  color: #fff4ef;
}

.np-rm-quote-mark {
  position: absolute;
  right: -28px;
  top: -34px;
  width: 190px;
  height: 190px;
  background: var(--np-mark) center/contain no-repeat;
  opacity: 0.09;
  animation: npSpinSlow 40s linear infinite;
}

@keyframes npSpinSlow {
  to { transform: rotate(360deg); }
}

/* ---- tiles (list) ---- */
.np-rm-grid {
  list-style: none;
  margin: 0.2rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.6rem;
}

.np-rm-tile {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.028);
  transition: transform 0.4s var(--np-ease), border-color 0.4s var(--np-ease), background 0.4s var(--np-ease);
}

.np-rm-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 38, 0.4);
  background: rgba(255, 90, 38, 0.07);
}

.np-rm-tile-n {
  font-family: var(--np-display);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--np-accent);
  padding-top: 0.18rem;
  flex: none;
}

.np-rm-tile-t {
  font-size: 0.94rem;
  line-height: 1.45;
  color: #efe0db;
}

/* ---- beats ladder ---- */
.np-rm-beats {
  list-style: none;
  margin: 0.2rem 0;
  padding: 0 0 0 1.1rem;
  display: grid;
  gap: 0.55rem;
  position: relative;
}

.np-rm-beats::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  bottom: 0.7rem;
  width: 1px;
  background: linear-gradient(180deg, var(--np-accent), rgba(255, 90, 38, 0.05));
}

.np-rm-beat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.42rem 0 0.42rem 0.7rem;
  position: relative;
}

.np-rm-beat::before {
  content: "";
  position: absolute;
  left: -0.28rem;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--np-accent);
  box-shadow: 0 0 10px rgba(255, 90, 38, 0.7);
}

.np-rm-beat-n {
  font-family: var(--np-display);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  flex: none;
}

.np-rm-beat-t {
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.4;
  color: #f3e5e0;
}

/* ---- chain pipeline ---- */
.np-rm-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(120% 140% at 0% 0%, rgba(255, 90, 38, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.02);
}

.np-rm-chain-node {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  font-family: var(--np-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: #fff3ee;
  transition: transform 0.35s var(--np-ease), border-color 0.35s var(--np-ease);
}

.np-rm-chain-node:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 38, 0.55);
}

.np-rm-chain-k {
  font-size: 0.6rem;
  color: var(--np-accent);
  letter-spacing: 0.1em;
}

.np-rm-chain-arrow {
  position: relative;
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.np-rm-chain-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--np-accent), transparent);
  animation: npFlow 2.2s linear infinite;
}

@keyframes npFlow {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* ---- cards ---- */
.np-rm-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.75rem;
}

.np-rm-card {
  position: relative;
  padding: 1.1rem 1.15rem 1.25rem;
  border-radius: 20px;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  overflow: hidden;
  transition: transform 0.5s var(--np-ease);
}

.np-rm-card:hover {
  transform: translateY(-6px);
}

.np-rm-card h3 {
  margin: 0;
  font-family: var(--np-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff5f1;
}

.np-rm-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--np-zinc);
}

.np-rm-card-k {
  position: absolute;
  right: 0.9rem;
  top: 0.85rem;
  font-family: var(--np-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.22);
}

/* ---- flow steps ---- */
.np-rm-flow {
  list-style: none;
  margin: 0.3rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.75rem;
}

.np-rm-flow-item {
  position: relative;
  padding: 1.15rem 1.15rem 1.3rem;
  border-radius: 20px;
  display: grid;
  gap: 0.45rem;
  align-content: start;
  overflow: hidden;
}

.np-rm-flow-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--np-accent), transparent);
}

.np-rm-flow-k {
  font-family: var(--np-display);
  font-size: 2.1rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 90, 38, 0.55);
}

.np-rm-flow-item h3 {
  margin: 0;
  font-family: var(--np-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--np-accent);
}

.np-rm-flow-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #f2e3de;
}

.np-rm-flow-line {
  display: none;
}

/* ---- timeline ---- */
.np-rm-timeline {
  padding-block: clamp(3rem, 8vw, 6rem);
  scroll-margin-top: 150px;
}

.np-rm-track {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.6rem);
  padding-left: 0;
}

.np-rm-rail {
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 2px;
  overflow: hidden;
}

.np-rm-rail-fill {
  position: absolute;
  inset: 0 0 auto 0;
  height: var(--np-rail, 0%);
  background: linear-gradient(180deg, var(--np-accent-2), var(--np-accent));
  box-shadow: 0 0 18px rgba(255, 90, 38, 0.6);
  transition: height 0.2s linear;
}

.np-rm-year {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  padding-left: 2.2rem;
  align-items: start;
}

.np-rm-year-side {
  position: sticky;
  top: 160px;
  display: grid;
  gap: 0.35rem;
  justify-items: start;
}

.np-rm-dot {
  position: absolute;
  left: 1px;
  top: 0.55rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--np-void);
  border: 2px solid var(--np-accent);
  box-shadow: 0 0 16px rgba(255, 90, 38, 0.55);
}

.np-rm-year-n {
  font-family: var(--np-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #fff1ea, var(--np-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.np-rm-year-l {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--np-zinc);
}

.np-rm-phase {
  display: inline-flex;
  gap: 5px;
  margin-top: 0.35rem;
}

.np-rm-phase i {
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.np-rm-phase i[data-on="1"] {
  background: var(--np-accent);
  box-shadow: 0 0 10px rgba(255, 90, 38, 0.6);
}

.np-rm-year-card {
  padding: clamp(1.1rem, 3vw, 1.8rem);
  border-radius: 22px;
  display: grid;
  gap: 1rem;
}

.np-rm-goal {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 38, 0.28);
  background: rgba(255, 90, 38, 0.08);
  font-size: 0.95rem;
  color: #fff2ec;
  width: fit-content;
  max-width: 100%;
}

.np-rm-goal .np-icon {
  width: 17px;
  height: 17px;
  color: var(--np-accent);
  flex: none;
}

.np-rm-group {
  display: grid;
  gap: 0.6rem;
}

.np-rm-group-h {
  margin: 0;
  font-family: var(--np-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--np-accent);
}

.np-rm-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.np-rm-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.86rem;
  color: #ecdcd7;
  transition: all 0.35s var(--np-ease);
}

.np-rm-chips li:hover {
  border-color: rgba(255, 90, 38, 0.45);
  color: #fff5f1;
  transform: translateY(-2px);
}

.np-rm-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--np-accent);
  flex: none;
}

.np-rm-year-close {
  margin: 0;
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 0.85rem;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #fff3ee;
}

/* ---- note grid (paragrafi consecutivi) ---- */
.np-rm-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0.6rem;
  margin: 0.4rem 0 0.2rem;
}

.np-rm-note {
  position: relative;
  margin: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  font-size: 0.97rem;
  line-height: 1.5;
  color: #eadad5;
  overflow: hidden;
  transition: border-color 0.35s var(--np-ease), transform 0.35s var(--np-ease), background 0.35s var(--np-ease);
}

.np-rm-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--np-accent), transparent);
  opacity: 0.55;
}

.np-rm-note:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 38, 0.4);
  background: linear-gradient(160deg, rgba(255, 90, 38, 0.09), rgba(255, 255, 255, 0.015));
  color: #fff3ee;
}

.np-rm-note-i {
  font-family: var(--np-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  line-height: 1.8;
  color: rgba(255, 90, 38, 0.85);
}

/* la nota "spaiata" occupa tutta la riga per evitare buchi nella griglia */
.np-rm-notes > .np-rm-note:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

/* ---- revenue stack ---- */
.np-rm-stack {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.np-rm-rev {
  display: grid;
  grid-template-columns: 84px minmax(120px, 1fr) minmax(70px, 1.1fr);
  align-items: center;
  gap: 0.7rem;
  padding: 0.42rem 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.np-rm-rev:last-child {
  border-bottom: 0;
}

.np-rm-rev-n {
  font-family: var(--np-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.38);
}

.np-rm-rev-v {
  font-size: 0.95rem;
  color: #f3e4df;
}

.np-rm-rev-bar {
  display: block;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.np-rm-rev-bar i {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 90, 38, 0.45), var(--np-accent));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s var(--np-ease);
  transition-delay: calc(var(--i) * 60ms);
}

.np-reveal[data-shown="1"] .np-rm-rev-bar i,
.np-rm-stack.np-in i {
  transform: scaleX(1);
}

/* ---- flywheel ---- */
.np-rm-wheel {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin: 1rem auto;
  display: grid;
  place-items: center;
  --np-r: clamp(130px, 20vw, 208px);
}

.np-rm-wheel-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 90, 38, 0.35);
  animation: npSpinSlow 26s linear infinite;
}

.np-rm-wheel-core {
  position: absolute;
  width: 34%;
  height: 34%;
  border-radius: 50%;
  background: var(--np-mark) center/contain no-repeat;
  opacity: 0.35;
  filter: drop-shadow(0 0 24px rgba(255, 90, 38, 0.45));
  animation: npSpinSlow 22s linear infinite reverse;
}

.np-rm-wheel-step {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(24, 8, 6, 0.9);
  font-family: var(--np-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #fff3ee;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(var(--a)) translate(var(--np-r)) rotate(calc(-1 * var(--a)));
  transition: border-color 0.35s var(--np-ease), box-shadow 0.35s var(--np-ease);
}

.np-rm-wheel-step:hover {
  border-color: var(--np-accent);
  box-shadow: 0 0 26px rgba(255, 90, 38, 0.35);
}

.np-rm-wheel-i {
  font-size: 0.6rem;
  color: var(--np-accent);
}

/* ---- outro ---- */
.np-rm-outro {
  padding-block: clamp(4rem, 12vw, 8rem);
  text-align: center;
}

.np-rm-outro-in {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}

.np-rm-outro-brand {
  margin: 0;
  font-family: var(--np-display);
  font-weight: 500;
  letter-spacing: 0.24em;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: #fffaf8;
}

.np-rm-outro-claim {
  margin: 0;
  font-family: var(--np-serif);
  font-style: italic;
  font-size: clamp(1.7rem, 5vw, 3rem);
  background: linear-gradient(100deg, #ffe3d6, var(--np-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.np-rm-outro-last {
  margin: 0;
  font-size: 1.02rem;
  color: var(--np-zinc);
}

@media (max-width: 1000px) {
  .np-rm-cols,
  .np-rm-year {
    grid-template-columns: minmax(0, 1fr);
  }

  .np-rm-aside,
  .np-rm-year-side {
    position: static;
    gap: 0.5rem;
  }

  .np-rm-ghost {
    display: none;
  }

  .np-rm-aside {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .np-rm-index {
    top: 56px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 900px) {
  .np-rm-notes {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
  }
  .np-rm-note {
    padding: 0.8rem 0.9rem;
    font-size: 0.94rem;
  }
}

@media (max-width: 640px) {
  .np-rm-hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .np-rm-year {
    padding-left: 1.05rem;
    gap: 0.7rem;
  }

  .np-rm-rail {
    left: 2px;
    width: 1px;
  }

  .np-rm-dot {
    left: -3px;
    width: 10px;
    height: 10px;
    top: 0.45rem;
  }

  .np-rm-year-card {
    padding: 0.9rem 0.85rem;
    border-radius: 18px;
    gap: 0.8rem;
  }

  .np-rm-goal {
    width: 100%;
    padding: 0.6rem 0.7rem;
    font-size: 0.88rem;
    align-items: flex-start;
    line-height: 1.35;
  }

  .np-rm-goal .np-icon {
    margin-top: 2px;
  }

  .np-rm-chips {
    gap: 0.35rem;
  }

  .np-rm-chips li {
    padding: 0.34rem 0.6rem;
    font-size: 0.79rem;
    line-height: 1.3;
  }

  .np-rm-year-close {
    font-size: 0.94rem;
    gap: 0.6rem;
  }

  .np-rm-rev {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .np-rm-rev-bar {
    grid-column: 1 / -1;
  }

  .np-rm-wheel {
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    place-items: stretch;
    padding: 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
  }

  .np-rm-wheel-ring,
  .np-rm-wheel-core {
    display: none;
  }

  .np-rm-wheel-step {
    position: static;
    transform: none;
    font-size: 0.62rem;
    padding: 0.5rem 0.6rem;
    justify-content: flex-start;
  }

  .np-rm-quote-mark {
    width: 130px;
    height: 130px;
  }
}

/* --- servizi: pill delle aree --- */
.np-ld-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 28px;
}
.np-ld-pill {
  font-family: var(--np-font-sans, inherit);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--np-accent) 28%, transparent);
  background: color-mix(in srgb, var(--np-accent) 8%, transparent);
  color: color-mix(in srgb, var(--np-fg, #fff) 82%, transparent);
  white-space: nowrap;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.np-ld-pill:hover {
  border-color: color-mix(in srgb, var(--np-accent) 60%, transparent);
  background: color-mix(in srgb, var(--np-accent) 16%, transparent);
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .np-ld-pill { font-size: 0.66rem; padding: 6px 11px; }
}

/* =========================================================
 * v4 — Brand lockup + voiceover player
 * ========================================================= */
.np-wordmark-logo {
  display: block;
  height: 22px;
  width: auto;
  flex: none;
  filter: drop-shadow(0 6px 18px rgba(232, 72, 24, 0.28));
  transition: transform 0.5s var(--np-spring), filter 0.5s var(--np-ease);
}

.np-wordmark:hover .np-wordmark-logo,
.np-wordmark:focus-visible .np-wordmark-logo {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 10px 26px rgba(232, 72, 24, 0.45));
}

.np-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .np-wordmark-logo {
    height: 18px;
  }
}

@media (max-width: 420px) {
  .np-wordmark-logo {
    height: 16px;
  }
}

/* ---- voiceover ---- */
.np-voice {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--np-line, rgba(255, 255, 255, 0.14));
  background: var(--np-glass, rgba(255, 255, 255, 0.055));
  backdrop-filter: blur(14px) saturate(160%);
  color: inherit;
  font: inherit;
  font-family: var(--np-sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.4s var(--np-ease), transform 0.4s var(--np-spring),
    background 0.4s var(--np-ease);
}

.np-voice:hover,
.np-voice:focus-visible {
  border-color: var(--np-accent);
  transform: translateY(-2px);
}

.np-voice-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--np-accent-2, #ff8f52), var(--np-accent, #ff5a26));
  color: #fff;
  flex: none;
}

.np-voice-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.np-voice[data-playing="true"] .np-voice-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--np-accent-glow, rgba(255, 90, 38, 0.42));
  animation: np-voice-ring 1.8s ease-out infinite;
}

.np-voice-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}

.np-voice-bars i {
  display: block;
  width: 2px;
  height: 4px;
  border-radius: 2px;
  background: var(--np-accent, #ff5a26);
  opacity: 0.5;
}

.np-voice[data-playing="true"] .np-voice-bars i {
  opacity: 1;
  animation: np-voice-bar 0.9s ease-in-out infinite;
}

.np-voice[data-playing="true"] .np-voice-bars i:nth-child(2) {
  animation-delay: 0.15s;
}
.np-voice[data-playing="true"] .np-voice-bars i:nth-child(3) {
  animation-delay: 0.3s;
}
.np-voice[data-playing="true"] .np-voice-bars i:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes np-voice-bar {
  0%,
  100% {
    height: 4px;
  }
  50% {
    height: 14px;
  }
}

@keyframes np-voice-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .np-voice[data-playing="true"] .np-voice-bars i,
  .np-voice[data-playing="true"] .np-voice-icon::after {
    animation: none;
  }
}

/* ============================================================
   SERVICES EXPLORER — un linguaggio grafico per ogni area
   ============================================================ */
.np-svc-explorer {
  margin-top: 2.5rem;
}
.np-svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.np-svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 244, 245, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 244, 245, 0.72);
  font: 600 0.86rem/1 var(--np-sans);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.35s var(--np-ease);
}
.np-svc-chip:hover {
  color: #fff;
  border-color: rgba(232, 72, 24, 0.55);
  transform: translateY(-2px);
}
.np-svc-chip-n {
  font-size: 0.68rem;
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}
.np-svc-chip[data-active="true"] {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--np-accent), #ff8a4c);
  box-shadow: 0 12px 32px -14px rgba(232, 72, 24, 0.9);
}
.np-svc-chip[data-active="true"] .np-svc-chip-n {
  opacity: 0.85;
}

.np-svc-panel {
  border: 1px solid rgba(244, 244, 245, 0.1);
  border-radius: 26px;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(232, 72, 24, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
  animation: np-svc-in 0.5s var(--np-ease) both;
}
@keyframes np-svc-in {
  from { opacity: 0; transform: translateY(14px); }
}
.np-svc-panel-head {
  max-width: 62ch;
  margin-bottom: 2rem;
}
.np-svc-panel-num {
  font: 700 0.72rem/1 var(--np-sans);
  letter-spacing: 0.28em;
  color: var(--np-accent);
}
.np-svc-panel-t {
  margin: 0.5rem 0 0.4rem;
  font: 800 clamp(1.5rem, 3.4vw, 2.3rem) / 1.05 var(--np-display);
  letter-spacing: -0.02em;
}
.np-svc-panel-q {
  margin: 0;
  color: rgba(244, 244, 245, 0.55);
  font-style: italic;
}
.np-svc-panel-lead {
  margin: 0.7rem 0 0;
  color: rgba(244, 244, 245, 0.82);
  font-size: 1.02rem;
}
.np-svc-panel b {
  display: block;
  font: 700 0.98rem/1.3 var(--np-sans);
  color: #fff;
}
.np-svc-panel em {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(244, 244, 245, 0.6);
}

/* 01 — cards */
.np-svc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}
.np-svc-cards article {
  position: relative;
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: 18px;
  border: 1px solid rgba(244, 244, 245, 0.09);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  animation: np-svc-in 0.5s calc(var(--np-i) * 60ms) var(--np-ease) both;
}
.np-svc-cards article::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--np-accent), transparent);
}

/* 02 — funnel */
.np-svc-funnel {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.np-svc-funnel li {
  display: grid;
  grid-template-columns: minmax(90px, 26%) 1fr;
  align-items: center;
  gap: 1.1rem;
  animation: np-svc-in 0.5s calc(var(--np-i) * 60ms) var(--np-ease) both;
}
.np-svc-funnel-bar {
  height: 44px;
  width: var(--np-w);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(232, 72, 24, 0.85), rgba(232, 72, 24, 0.12));
}

/* 03 — bars */
.np-svc-bars {
  display: grid;
  gap: 1.1rem;
}
.np-svc-bar {
  display: grid;
  grid-template-columns: minmax(150px, 22%) 1fr auto;
  align-items: center;
  gap: 0.6rem 1rem;
  animation: np-svc-in 0.5s calc(var(--np-i) * 60ms) var(--np-ease) both;
}
.np-svc-bar-name {
  font: 700 0.92rem/1.3 var(--np-sans);
}
.np-svc-bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.np-svc-bar-fill {
  display: block;
  height: 100%;
  width: var(--np-v);
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a4c, var(--np-accent));
  animation: np-svc-grow 1s calc(var(--np-i) * 70ms) var(--np-ease) both;
}
@keyframes np-svc-grow { from { width: 0; } }
.np-svc-bar-val {
  font: 700 0.8rem/1 var(--np-sans);
  color: var(--np-accent);
  font-variant-numeric: tabular-nums;
}
.np-svc-bar-desc {
  grid-column: 1 / -1;
  margin: -0.2rem 0 0;
  font-size: 0.88rem;
  color: rgba(244, 244, 245, 0.55);
}

/* 04 — matrix */
.np-svc-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: rgba(244, 244, 245, 0.09);
  border: 1px solid rgba(244, 244, 245, 0.09);
  border-radius: 18px;
  overflow: hidden;
}
.np-svc-matrix article {
  padding: 1.35rem 1.2rem;
  background: #150808;
  transition: background 0.35s var(--np-ease);
}
.np-svc-matrix article:hover {
  background: rgba(232, 72, 24, 0.1);
}
.np-svc-matrix-i {
  display: block;
  margin-bottom: 0.55rem;
  font: 700 0.7rem/1 var(--np-sans);
  letter-spacing: 0.2em;
  color: var(--np-accent);
}

/* 05 — chart */
.np-svc-chart {
  display: grid;
  grid-template-columns: minmax(240px, 40%) 1fr;
  gap: 2rem;
  align-items: center;
}
.np-svc-chart-svg {
  width: 100%;
  height: 190px;
}
.np-svc-chart-line {
  fill: none;
  stroke: var(--np-accent);
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
}
.np-svc-chart-area {
  fill: rgba(232, 72, 24, 0.16);
  stroke: none;
}
.np-svc-chart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.1rem;
}
.np-svc-chart-list li {
  padding-left: 0.9rem;
  border-left: 2px solid rgba(232, 72, 24, 0.5);
  animation: np-svc-in 0.5s calc(var(--np-i) * 60ms) var(--np-ease) both;
}

/* 06 — timeline */
.np-svc-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.6rem;
  position: relative;
  display: grid;
  gap: 1.4rem;
}
.np-svc-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--np-accent), transparent);
}
.np-svc-timeline li {
  position: relative;
  animation: np-svc-in 0.5s calc(var(--np-i) * 60ms) var(--np-ease) both;
}
.np-svc-tl-dot {
  position: absolute;
  left: -1.6rem;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--np-accent);
  box-shadow: 0 0 0 4px rgba(232, 72, 24, 0.18);
}

/* 07 — reel */
.np-svc-claim {
  margin: 0 0 1.6rem;
  font: 700 clamp(1.05rem, 2.2vw, 1.5rem) / 1.35 var(--np-display);
  color: #fff;
  max-width: 46ch;
}
.np-svc-reel-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
}
.np-svc-reel-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(244, 244, 245, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s var(--np-ease);
}
.np-svc-reel-nav:hover {
  background: var(--np-accent);
  border-color: transparent;
}
.np-svc-reel {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.4rem;
}
.np-svc-reel::-webkit-scrollbar { display: none; }
.np-svc-reel article {
  flex: 0 0 clamp(220px, 30%, 300px);
  scroll-snap-align: start;
  padding: 1.3rem;
  border-radius: 18px;
  border: 1px solid rgba(244, 244, 245, 0.1);
  background: linear-gradient(160deg, rgba(232, 72, 24, 0.14), rgba(255, 255, 255, 0.02));
}
.np-svc-reel-n {
  display: block;
  margin-bottom: 0.6rem;
  font: 700 0.7rem/1 var(--np-sans);
  letter-spacing: 0.22em;
  color: var(--np-accent);
}

@media (max-width: 820px) {
  .np-svc-chart,
  .np-svc-bar,
  .np-svc-funnel li {
    grid-template-columns: 1fr;
  }
  .np-svc-bar-val { display: none; }
  .np-svc-funnel-bar { height: 8px; width: var(--np-w); }
}

/* ---- audio floating control ---- */
.np-audio {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2147483000;
}
.np-audio-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(244, 244, 245, 0.18);
  background: rgba(20, 8, 8, 0.72);
  backdrop-filter: blur(14px);
  color: #fff;
  cursor: pointer;
  transition: all 0.35s var(--np-ease);
}
.np-audio-btn:hover {
  border-color: var(--np-accent);
  transform: translateY(-2px);
}
.np-audio-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.np-audio-btn .np-audio-off { display: none; }
.np-audio-btn[data-muted="true"] .np-audio-on { display: none; }
.np-audio-btn[data-muted="true"] .np-audio-off { display: block; }
.np-audio-btn[data-muted="true"] { color: rgba(244, 244, 245, 0.55); }
.np-audio-bars {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(232, 72, 24, 0.55);
  opacity: 0;
}
.np-audio-btn[data-playing="true"] .np-audio-bars {
  opacity: 1;
  animation: np-voice-ring 1.9s ease-out infinite;
}

/* ---- splash logo ---- */
.np-splash-logo {
  width: clamp(150px, 26vw, 240px);
  height: auto;
  margin: 0.4rem 0 0.2rem;
  animation: np-splash-in 1.1s 0.25s var(--np-ease) both;
}

/* ---- contatti ---- */
.np-contact-person {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(244, 244, 245, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.np-contact-person-n {
  font: 700 0.72rem/1 var(--np-sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--np-accent);
}
.np-contact-loc {
  align-self: center;
}

/* ---- form: allineamento brand ---- */
.np-form .np-field input,
.np-form .np-field textarea {
  border-color: rgba(244, 244, 245, 0.12);
  background: rgba(255, 255, 255, 0.025);
}
.np-form .np-field input:focus,
.np-form .np-field textarea:focus {
  border-color: var(--np-accent);
  box-shadow: 0 0 0 3px rgba(232, 72, 24, 0.16);
}
.np-pill[data-checked="true"] {
  border-color: transparent;
  background: linear-gradient(120deg, rgba(232, 72, 24, 0.9), rgba(255, 138, 76, 0.85));
  color: #fff;
}

/* ---- area riservata ---- */
.np-lock-wrap {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem 1.2rem;
}
.np-lock-card {
  width: min(440px, 100%);
  padding: 2.2rem;
  border-radius: 24px;
  border: 1px solid rgba(244, 244, 245, 0.12);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(232, 72, 24, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  text-align: center;
}
.np-lock-card img {
  width: 190px;
  height: auto;
  margin-bottom: 1.4rem;
}
.np-lock-card h1 {
  font: 800 1.5rem/1.1 var(--np-display);
  margin: 0 0 0.4rem;
}
.np-lock-card p {
  margin: 0 0 1.6rem;
  color: rgba(244, 244, 245, 0.6);
  font-size: 0.92rem;
}
.np-lock-form {
  display: grid;
  gap: 0.7rem;
  text-align: left;
}
.np-lock-form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(244, 244, 245, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: 400 0.95rem/1 var(--np-sans);
}
.np-lock-form input:focus {
  outline: none;
  border-color: var(--np-accent);
  box-shadow: 0 0 0 3px rgba(232, 72, 24, 0.16);
}
.np-lock-err {
  color: #ff8a4c;
  font-size: 0.85rem;
  min-height: 1.2em;
}
.np-lock-links {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
  text-align: left;
}
.np-lock-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(244, 244, 245, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s var(--np-ease);
}
.np-lock-links a:hover {
  border-color: var(--np-accent);
  transform: translateX(3px);
}

.np-nav-lock {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}
.np-nav-lock .np-icon { width: 15px; height: 15px; }
.np-footer { padding-bottom: 5.5rem; }

/* ============ v3: headline fx, nav dropdown, drawer, brand orbit, code viz ============ */

/* --- headline wow --- */
.np-hero-h1-fx { display: grid; gap: 0.06em; }
.np-hero-h1-fx .np-hl {
  display: block;
  opacity: 0;
  transform: translateY(0.35em);
  animation: npHlIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--np-i) * 0.14s + 0.15s);
}
@keyframes npHlIn { to { opacity: 1; transform: none; } }
.np-hl-box {
  position: relative;
  display: inline-block;
  padding: 0 0.16em;
  z-index: 0;
}
.np-hl-box::before {
  content: "";
  position: absolute;
  inset: 0.06em -0.02em 0.04em;
  border: 1px solid rgba(232, 72, 24, 0.85);
  border-radius: 0.18em;
  transform: scaleX(0);
  transform-origin: left;
  animation: npBoxIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
  z-index: -1;
}
.np-hl-box::after {
  content: "";
  position: absolute;
  inset: 0.06em -0.02em 0.04em;
  border-radius: 0.18em;
  background: linear-gradient(100deg, rgba(232, 72, 24, 0.22), rgba(232, 72, 24, 0));
  opacity: 0;
  animation: npBoxGlow 3.6s ease-in-out 1.6s infinite;
  z-index: -1;
}
@keyframes npBoxIn { to { transform: scaleX(1); } }
@keyframes npBoxGlow { 0%, 100% { opacity: 0.25; } 50% { opacity: 0.85; } }
.np-hl-ul { position: relative; display: inline-block; color: #f4a68a; }
.np-hl-ul::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.06em;
  height: 0.07em;
  border-radius: 999px;
  background: linear-gradient(90deg, #e84818, #ff9a6a, #e84818);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  animation:
    npUlIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards,
    npUlShift 4s linear 1.8s infinite;
}
@keyframes npUlIn { to { transform: scaleX(1); } }
@keyframes npUlShift { to { background-position: 200% 0; } }
.np-hl-dim {
  color: transparent;
  background: linear-gradient(100deg, rgba(244, 244, 245, 0.35) 0%, rgba(244, 244, 245, 0.98) 45%, rgba(244, 244, 245, 0.35) 90%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: npShine 5.5s linear 1.4s infinite;
}
@keyframes npShine { to { background-position: 240% 0; } }
@media (prefers-reduced-motion: reduce) {
  .np-hero-h1-fx .np-hl { opacity: 1; transform: none; animation: none; }
  .np-hl-box::before { transform: scaleX(1); animation: none; }
  .np-hl-ul::after { transform: scaleX(1); animation: none; }
  .np-hl-dim { animation: none; color: inherit; -webkit-text-fill-color: currentColor; }
}

/* --- nav dropdown --- */
.np-nav-drop { position: relative; }
.np-nav-drop-btn { display: inline-flex; align-items: center; gap: 0.4rem; }
.np-nav-caret { width: 14px; height: 14px; transition: transform 0.25s ease; }
.np-nav-drop:hover .np-nav-caret,
.np-nav-drop:focus-within .np-nav-caret { transform: rotate(180deg); }
.np-nav-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 50%;
  translate: -50% 0;
  min-width: 250px;
  display: grid;
  gap: 0.15rem;
  padding: 0.5rem;
  border-radius: 16px;
  border: 1px solid rgba(244, 244, 245, 0.12);
  background: rgba(24, 8, 7, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 60;
}
.np-nav-drop:hover .np-nav-menu,
.np-nav-drop:focus-within .np-nav-menu { opacity: 1; visibility: visible; transform: none; }
.np-nav-menu::before {
  content: "";
  position: absolute;
  inset: -0.8rem 0 auto;
  height: 1rem;
}
.np-nav-menu a {
  display: grid;
  gap: 0.1rem;
  padding: 0.6rem 0.75rem;
  border-radius: 11px;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.np-nav-menu a:hover { background: rgba(232, 72, 24, 0.12); border-left-color: #e84818; transform: translateX(3px); }
.np-nav-menu-t { font-weight: 700; font-size: 0.95rem; color: #f4f4f5; }
.np-nav-menu-d { font-size: 0.76rem; color: rgba(244, 244, 245, 0.5); }

/* --- drawer mobile --- */
.np-drawer-inner { display: grid; gap: 0.45rem; padding: 0.4rem 0 1.2rem; }
.np-drawer-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 72, 24, 0.9);
  margin-top: 0.9rem;
}
.np-drawer-item {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid rgba(244, 244, 245, 0.09);
  background: linear-gradient(120deg, rgba(244, 244, 245, 0.05), rgba(244, 244, 245, 0.015));
  transition: border-color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}
.np-drawer-item:active { transform: scale(0.985); }
.np-drawer-item:hover { border-color: rgba(232, 72, 24, 0.55); background: rgba(232, 72, 24, 0.1); }
.np-drawer-n {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #e84818;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.np-drawer-n .np-icon { width: 17px; height: 17px; }
.np-drawer-c { display: grid; gap: 0.1rem; min-width: 0; }
.np-drawer-c b { font-size: 1.02rem; color: #f4f4f5; }
.np-drawer-c em { font-style: normal; font-size: 0.78rem; color: rgba(244, 244, 245, 0.5); }
.np-drawer-item .np-icon { width: 16px; height: 16px; color: rgba(244, 244, 245, 0.45); }
.np-drawer-wa { margin-top: 1.1rem; justify-content: center; }

/* --- brand orbit viz --- */
.np-brand-viz {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: center;
}
.np-brand-orbit {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.np-brand-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(232, 72, 24, 0.35), rgba(61, 17, 16, 0.9));
  border: 1px solid rgba(232, 72, 24, 0.5);
  box-shadow: 0 0 60px rgba(232, 72, 24, 0.35);
  animation: npCorePulse 4s ease-in-out infinite;
}
.np-brand-core img { width: 52%; height: auto; }
@keyframes npCorePulse { 0%, 100% { box-shadow: 0 0 40px rgba(232,72,24,0.25); } 50% { box-shadow: 0 0 80px rgba(232,72,24,0.5); } }
.np-brand-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(244, 244, 245, 0.14);
}
.np-brand-ring-1 { inset: 22%; animation: npSpin 26s linear infinite; }
.np-brand-ring-2 { inset: 10%; border-style: solid; border-color: rgba(232, 72, 24, 0.18); animation: npSpin 40s linear reverse infinite; }
.np-brand-ring-3 { inset: 0; animation: npSpin 60s linear infinite; }
@keyframes npSpin { to { transform: rotate(360deg); } }
.np-brand-sat {
  position: absolute;
  inset: 0;
  transform: rotate(var(--np-a));
  animation: npSpin 26s linear infinite;
}
.np-brand-sat::after {
  content: "";
  position: absolute;
  top: 6%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: #e84818;
  box-shadow: 0 0 18px rgba(232, 72, 24, 0.8);
}
.np-brand-viz[data-hot="0"] .np-brand-sat:nth-of-type(4)::after,
.np-brand-viz[data-hot="1"] .np-brand-sat:nth-of-type(5)::after,
.np-brand-viz[data-hot="2"] .np-brand-sat:nth-of-type(6)::after,
.np-brand-viz[data-hot="3"] .np-brand-sat:nth-of-type(7)::after,
.np-brand-viz[data-hot="4"] .np-brand-sat:nth-of-type(8)::after {
  width: 20px; height: 20px; margin-left: -10px;
  background: #ff9a6a;
  box-shadow: 0 0 32px rgba(255, 154, 106, 0.95);
}
.np-brand-list { display: grid; gap: 0.5rem; }
.np-brand-item {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0.15rem 0.8rem;
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(244, 244, 245, 0.08);
  background: rgba(244, 244, 245, 0.03);
  color: inherit;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.np-brand-item-n { grid-row: 1 / span 2; align-self: center; font-size: 0.8rem; color: rgba(232, 72, 24, 0.9); }
.np-brand-item b { font-size: 1rem; color: #f4f4f5; }
.np-brand-item em {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(244, 244, 245, 0.55);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.np-brand-item[data-active="true"] {
  border-color: rgba(232, 72, 24, 0.6);
  background: linear-gradient(100deg, rgba(232, 72, 24, 0.14), rgba(232, 72, 24, 0.02));
  transform: translateX(4px);
}
.np-brand-item[data-active="true"] em { max-height: 5rem; opacity: 1; }
@media (max-width: 860px) {
  .np-brand-viz { grid-template-columns: 1fr; }
  .np-brand-orbit { max-width: 230px; }
}

/* --- code viz (prodotti digitali) --- */
.np-code {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(244, 244, 245, 0.1);
  background: linear-gradient(180deg, rgba(12, 4, 4, 0.92), rgba(24, 8, 7, 0.86));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.np-code-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(244, 244, 245, 0.08);
  background: rgba(244, 244, 245, 0.03);
}
.np-code-dots { display: inline-flex; gap: 0.35rem; }
.np-code-dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(244, 244, 245, 0.18); }
.np-code-dots i:first-child { background: #e84818; }
.np-code-file {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(244, 244, 245, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.np-code-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.45);
}
.np-code-led { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: npLed 1.6s ease-in-out infinite; }
@keyframes npLed { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; box-shadow: 0 0 12px #4ade80; } }
.np-code-body { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.7fr); gap: 0; }
.np-code-pre {
  margin: 0;
  padding: 1.2rem 1rem;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(0.74rem, 1.6vw, 0.88rem);
  line-height: 1.85;
}
.np-code-pre code { display: block; }
.np-cl {
  display: block;
  opacity: 0;
  transform: translateX(-8px);
  animation: npCodeIn 0.45s ease forwards;
  animation-delay: calc(var(--np-i) * 0.09s);
  white-space: pre;
}
@keyframes npCodeIn { to { opacity: 1; transform: none; } }
.np-cn { display: inline-block; width: 2.2rem; color: rgba(244, 244, 245, 0.22); user-select: none; }
.np-ck { color: #ff9a6a; }
.np-cv { color: #f4f4f5; }
.np-cf { color: #e84818; }
.np-cp { color: #9ad7f5; }
.np-cs { color: #b6e3a7; }
.np-cc { color: rgba(244, 244, 245, 0.35); font-style: italic; }
.np-caret {
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 0.3rem;
  vertical-align: -0.18em;
  background: #e84818;
  animation: npCaret 1s steps(2) infinite;
}
@keyframes npCaret { 50% { opacity: 0; } }
.np-code-out {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 1.3rem 1.1rem;
  border-left: 1px solid rgba(244, 244, 245, 0.08);
  background: rgba(232, 72, 24, 0.04);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  color: rgba(244, 244, 245, 0.7);
}
.np-code-out-l {
  opacity: 0;
  animation: npCodeIn 0.5s ease forwards;
  animation-delay: calc(1s + var(--np-i) * 0.35s);
}
.np-code-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(244, 244, 245, 0.08);
}
.np-code-tags span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 244, 245, 0.12);
  color: rgba(244, 244, 245, 0.55);
}
@media (max-width: 860px) {
  .np-code-body { grid-template-columns: 1fr; }
  .np-code-out { border-left: 0; border-top: 1px solid rgba(244, 244, 245, 0.08); }
}

/* --- contatti: CTA + ruoli --- */
.np-contact-cta {
  margin: 1.1rem 0 0.4rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 72, 24, 0.35);
  background: linear-gradient(100deg, rgba(232, 72, 24, 0.12), rgba(232, 72, 24, 0.02));
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  color: #f4f4f5;
  line-height: 1.5;
}
.np-contact-cta span { display: block; font-weight: 400; font-size: 0.92rem; color: rgba(244, 244, 245, 0.65); margin-top: 0.25rem; }
.np-contact-person-r {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 72, 24, 0.9);
  margin-top: 0.15rem;
}

/* --- mobile: niente dock, burger brandizzato --- */
.np-dock { display: none !important; }
.np-burger {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(232, 72, 24, 0.4);
  background: linear-gradient(140deg, rgba(232, 72, 24, 0.16), rgba(244, 244, 245, 0.03));
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.np-burger span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: #f4f4f5;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, width 0.3s ease;
}
.np-burger span:nth-child(2) { width: 13px; background: #e84818; }
.np-burger[data-open="true"] { background: rgba(232, 72, 24, 0.28); }
.np-burger[data-open="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.np-burger[data-open="true"] span:nth-child(2) { opacity: 0; }
.np-burger[data-open="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 19px; }
@media (max-width: 980px) {
  .np-burger { display: flex; }
  .np-nav { display: none; }
  .np-header-right .np-btn-primary { display: none; }
  .np-clock { display: none; }
}
@media (max-width: 560px) {
  .np-svc-chips { gap: 0.4rem; }
  .np-hero-h1-fx { font-size: clamp(2.1rem, 10vw, 3.2rem); }
  .np-wa-float span { display: none; }
}

.np-hero-h1-fx {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #f4f4f5;
  -webkit-text-fill-color: currentColor;
}
.np-hero-h1-fx .np-hl-dim { -webkit-text-fill-color: transparent; }

/* ============================================================
   TICKER EVENTO
   ============================================================ */
:root { --np-ticker-h: 38px; }
.np-ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  height: var(--np-ticker-h);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 clamp(0.7rem, 3vw, 1.4rem);
  text-decoration: none;
  color: #fff;
  background: linear-gradient(100deg, #e84818, #ff8a4c 55%, #e84818);
  box-shadow: 0 10px 30px -18px rgba(232, 72, 24, 0.9);
  overflow: hidden;
}
.np-ticker-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font: 800 0.62rem/1 var(--np-sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.32rem 0.6rem; border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  flex: none;
}
.np-ticker-badge .np-dot { background: #fff; animation: np-tick-pulse 1.6s infinite; }
@keyframes np-tick-pulse { 0%,100% { opacity: 1 } 50% { opacity: 0.25 } }
.np-ticker-view { flex: 1 1 auto; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.np-ticker-track { display: flex; width: max-content; animation: np-tick-scroll 26s linear infinite; }
.np-ticker-seq { display: inline-flex; align-items: center; gap: 1.1rem; padding-right: 1.1rem; }
.np-ticker-seq b { font: 800 0.72rem/1 var(--np-sans); letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }
.np-ticker-seq i { font-style: normal; opacity: 0.6; }
@keyframes np-tick-scroll { to { transform: translate3d(-50%, 0, 0); } }
.np-ticker:hover .np-ticker-track { animation-play-state: paused; }
.np-ticker-cta {
  flex: none; display: inline-flex; align-items: center; gap: 0.35rem;
  font: 800 0.68rem/1 var(--np-sans); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.4rem 0.7rem; border-radius: 999px; background: rgba(0, 0, 0, 0.3);
}
.np-ticker-cta .np-icon { width: 13px; height: 13px; }
.np-header { top: var(--np-ticker-h); }
@media (max-width: 560px) {
  .np-ticker-cta, .np-ticker-badge span:not(.np-dot) { display: none; }
  .np-ticker-badge { padding: 0.3rem; }
}
@media (prefers-reduced-motion: reduce) { .np-ticker-track { animation: none; } }
html[data-np-splash="on"] .np-ticker { opacity: 0; }

/* ============================================================
   MOBILE DRAWER — versione premium
   ============================================================ */
.np-drawer {
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(232, 72, 24, 0.22), transparent 65%),
    rgba(8, 5, 5, 0.92);
  padding-top: calc(5.5rem + var(--np-ticker-h));
}
.np-drawer[data-open="true"] .np-drawer-item,
.np-drawer[data-open="true"] .np-drawer-label,
.np-drawer[data-open="true"] .np-drawer-wa {
  animation: np-drawer-in 0.55s var(--np-ease) both;
  animation-delay: calc(var(--np-di, 0) * 55ms);
}
@keyframes np-drawer-in { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: none; } }
.np-drawer-label {
  display: flex; align-items: center; gap: 0.6rem;
}
.np-drawer-label::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(232,72,24,0.5), transparent); }
.np-drawer-item {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.np-drawer-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.16), transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--np-ease);
}
.np-drawer-item:active::after, .np-drawer-item:hover::after { transform: translateX(120%); }
.np-drawer-n {
  background: linear-gradient(140deg, rgba(232, 72, 24, 0.35), rgba(232, 72, 24, 0.08));
  color: #fff;
}

/* ============================================================
   HERO MARK — mobile sotto l'hero
   ============================================================ */
@media (max-width: 900px) {
  .np-ld-hero { display: flex; flex-direction: column; }
  .np-hero-mark {
    position: relative;
    inset: auto;
    top: auto; right: auto; bottom: auto;
    order: 99;
    align-self: center;
    margin: 2.2rem auto 0;
    --np-mark-size: 128px;
    opacity: 0.9;
  }
}

/* ============================================================
   SERVICES — chips compatte su mobile
   ============================================================ */
@media (max-width: 720px) {
  .np-svc-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(var(--np-gutter) * -1) 1.2rem;
    padding: 0 var(--np-gutter) 0.4rem;
    gap: 0.4rem;
  }
  .np-svc-chips::-webkit-scrollbar { display: none; }
  .np-svc-chip {
    flex: none;
    scroll-snap-align: start;
    padding: 0.5rem 0.8rem;
    font-size: 0.76rem;
    gap: 0.35rem;
  }
  .np-svc-chip-n { font-size: 0.6rem; }
}

/* ============================================================
   CONTATTI — card persone
   ============================================================ */
.np-contact-foot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.np-contact-person {
  position: relative;
  gap: 0.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(244, 244, 245, 0.1);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(232, 72, 24, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.025);
  transition: border-color 0.3s var(--np-ease), transform 0.3s var(--np-ease);
}
.np-contact-person:hover { border-color: rgba(232, 72, 24, 0.5); transform: translateY(-3px); }
.np-contact-avatar {
  width: 42px; height: 42px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font: 800 1.05rem/1 var(--np-sans); color: #fff;
  background: linear-gradient(140deg, var(--np-accent), #ff8a4c);
  box-shadow: 0 12px 26px -14px rgba(232, 72, 24, 0.9);
  margin-bottom: 0.2rem;
}
.np-contact-person-n {
  font: 800 1.05rem/1.1 var(--np-sans);
  letter-spacing: 0;
  text-transform: none;
  color: #f4f4f5;
}
.np-contact-person .np-contact-link {
  padding: 0.35rem 0;
  border-top: 1px solid rgba(244, 244, 245, 0.07);
  transition: color 0.25s ease;
}
.np-contact-person .np-contact-link:hover { color: var(--np-accent); }
.np-contact-loc {
  grid-column: 1 / -1;
  align-self: stretch;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(244, 244, 245, 0.14);
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 720px) {
  .np-contact-foot { grid-template-columns: 1fr; }
}

/* services: pulse automatico pre-click */
.np-svc-explorer[data-auto="true"] .np-svc-chip[data-active="true"]::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(232, 72, 24, 0.5);
  animation: np-chip-pulse 1.8s var(--np-ease) infinite;
}
.np-svc-chip { position: relative; }
@keyframes np-chip-pulse { 0% { opacity: 0.8; transform: scale(0.96); } 100% { opacity: 0; transform: scale(1.14); } }

/* ============ v5: footer, trusted, duo avatars, header audio, popup CTA ============ */

/* code panel mobile fit */
.np-code { max-width: 100%; }
.np-code-pre { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.np-cl { white-space: pre-wrap; word-break: break-word; }
@media (max-width: 640px) {
  .np-code-pre { padding: 0.9rem 0.7rem; font-size: 0.66rem; line-height: 1.7; }
  .np-cn { width: 1.5rem; }
  .np-code-bar { grid-template-columns: auto minmax(0, 1fr); gap: 0.5rem; padding: 0.55rem 0.7rem; }
  .np-code-status { display: none; }
  .np-code-file { font-size: 0.68rem; text-align: right; }
  .np-code-out { padding: 0.9rem 0.7rem; font-size: 0.7rem; }
  .np-code-tags { padding: 0.7rem; }
  .np-code-tags span { font-size: 0.6rem; padding: 0.25rem 0.5rem; }
}

/* logo esteso sopra CTA */
.np-cta-logo {
  display: block;
  width: clamp(150px, 22vw, 230px);
  height: auto;
  margin: 0 0 1rem;
  opacity: 0.95;
}
.np-cta-logo-sm { width: clamp(130px, 18vw, 180px); margin-bottom: 0.6rem; }

/* footer v2 */
.np-footer-v2 { flex-direction: column; align-items: stretch; gap: 1.4rem; text-align: left; }
.np-footer-brand {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.np-footer-logo { width: 132px; height: auto; opacity: 0.9; }
.np-footer-ig {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(244, 244, 245, 0.7); text-transform: none; letter-spacing: 0.02em;
  font-size: 0.85rem; text-decoration: none;
  padding: 0.4rem 0.8rem; border-radius: 999px;
  border: 1px solid rgba(244, 244, 245, 0.12);
  transition: all 0.3s var(--np-ease);
}
.np-footer-ig:hover { color: #fff; border-color: var(--np-accent); background: rgba(232, 72, 24, 0.12); }
.np-footer-ig .np-icon { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.np-trusted { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 0.9rem;
  border-top: 1px solid rgba(244, 244, 245, 0.08); border-bottom: 1px solid rgba(244, 244, 245, 0.08); padding: 0.9rem 0; }
.np-trusted-l { font-size: 10px; letter-spacing: 0.22em; color: rgba(244, 244, 245, 0.42); }
.np-trusted-view { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.np-trusted-track { display: inline-flex; white-space: nowrap; animation: npTrusted 26s linear infinite; }
.np-trusted-seq { display: inline-flex; align-items: center; gap: 2.4rem; padding-right: 2.4rem; }
.np-trusted-seq b {
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em; text-transform: none;
  color: rgba(255, 255, 255, 0.82); filter: grayscale(1) brightness(1.6);
}
@keyframes npTrusted { to { transform: translateX(-50%); } }

/* due anime, una azienda */
.np-contact-duo { position: relative; }
.np-contact-duo::before {
  content: ""; position: absolute; left: 50%; top: 46px; width: 1px; height: 0;
}
.np-av-mark {
  position: relative; overflow: visible;
  background: linear-gradient(140deg, rgba(232, 72, 24, 0.9), rgba(255, 138, 76, 0.55));
}
.np-av-mark img { width: 22px; height: 22px; filter: brightness(0) invert(1); animation: npAvFloat 4.6s ease-in-out infinite; }
.np-av-mark[data-soul="b"] { background: linear-gradient(320deg, rgba(232, 72, 24, 0.9), rgba(255, 138, 76, 0.55)); }
.np-av-mark[data-soul="b"] img { transform: scaleX(-1); animation-delay: -2.3s; }
.np-av-pulse {
  position: absolute; inset: -6px; border-radius: 18px;
  border: 1px solid rgba(232, 72, 24, 0.55); opacity: 0;
  animation: npAvRing 3.2s ease-out infinite;
}
.np-av-mark[data-soul="b"] .np-av-pulse { animation-delay: -1.6s; }
@keyframes npAvFloat { 0%, 100% { transform: translateY(-2px) rotate(-3deg); } 50% { transform: translateY(2px) rotate(3deg); } }
.np-av-mark[data-soul="b"] img { animation-name: npAvFloatB; }
@keyframes npAvFloatB { 0%, 100% { transform: scaleX(-1) translateY(2px) rotate(-3deg); } 50% { transform: scaleX(-1) translateY(-2px) rotate(3deg); } }
@keyframes npAvRing { 0% { opacity: 0.8; transform: scale(0.85); } 100% { opacity: 0; transform: scale(1.35); } }

/* audio nel header */
.np-audio-head {
  width: 40px; height: 40px; border-radius: 14px; flex: 0 0 auto;
}
.np-audio-head svg { width: 18px; height: 18px; }
.np-audio-head .np-audio-bars { inset: -5px; border-radius: 16px; }

/* burger v2 */
.np-burger-v2 { display: none; position: relative; }
.np-burger-v2 i {
  position: absolute; width: 6px; height: 6px; border-radius: 2px;
  background: rgba(244, 244, 245, 0.85); transition: all 0.4s var(--np-ease);
}
.np-burger-v2 i:nth-child(1) { transform: translate(-6px, -6px); }
.np-burger-v2 i:nth-child(2) { transform: translate(6px, -6px); background: var(--np-accent); }
.np-burger-v2 i:nth-child(3) { transform: translate(-6px, 6px); background: var(--np-accent); }
.np-burger-v2 i:nth-child(4) { transform: translate(6px, 6px); }
.np-burger-v2[data-open="true"] i:nth-child(1) { transform: translate(0, 0) scale(1.6); }
.np-burger-v2[data-open="true"] i:nth-child(2) { transform: translate(0, 0) scale(1.6); }
.np-burger-v2[data-open="true"] i:nth-child(3) { transform: translate(0, 0) scale(1.6); }
.np-burger-v2[data-open="true"] i:nth-child(4) { transform: translate(0, 0) scale(1.6); }
.np-burger-v2 span { display: none; }
@media (max-width: 900px) {
  .np-burger-v2 { display: grid; place-items: center; }
  .np-header-right .np-btn-primary { display: none; }
}

/* popup CTA */
.np-pop {
  position: fixed; left: 50%; bottom: 1.1rem; transform: translate(-50%, 140%);
  z-index: 2147483000; display: inline-flex; align-items: center; gap: 0.4rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease, transform 0.6s var(--np-ease);
}
.np-pop[data-show="true"] { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); animation: npPopShake 0.7s 0.5s ease-in-out; }
.np-pop-btn { position: relative; z-index: 2; box-shadow: 0 18px 44px -16px rgba(232, 72, 24, 0.95); }
.np-pop-wave {
  position: absolute; left: 50%; top: 50%; width: 100%; height: 100%;
  transform: translate(-50%, -50%); border-radius: 999px;
  border: 1px solid rgba(232, 72, 24, 0.6); opacity: 0;
}
.np-pop[data-show="true"] .np-pop-wave { animation: npPopWave 2.6s ease-out infinite; }
.np-pop[data-show="true"] .np-pop-wave[data-d="1"] { animation-delay: 1.3s; }
.np-pop-x {
  position: relative; z-index: 2; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(244, 244, 245, 0.18); background: rgba(20, 8, 8, 0.8);
  color: rgba(244, 244, 245, 0.7); cursor: pointer; line-height: 1; font-size: 1rem;
}
@keyframes npPopWave { 0% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.9); } }
@keyframes npPopShake {
  0%, 100% { transform: translate(-50%, 0) rotate(0); }
  15% { transform: translate(-52%, -2px) rotate(-1.6deg); }
  30% { transform: translate(-48%, 1px) rotate(1.6deg); }
  45% { transform: translate(-51%, -1px) rotate(-1deg); }
  60% { transform: translate(-49%, 1px) rotate(1deg); }
  80% { transform: translate(-50%, 0) rotate(-0.3deg); }
}
@media (prefers-reduced-motion: reduce) {
  .np-pop[data-show="true"] { animation: none; }
  .np-trusted-track { animation: none; }
}
@media (max-width: 520px) {
  .np-pop-btn { font-size: 0.82rem; padding: 0.7rem 1rem; }
}

/* ============ v6: CTA pulse, glass header, minimal audio, burger classic ============ */

/* CTA primaria: arancio pieno + pulsazione */
.np-btn-primary {
  background: linear-gradient(120deg, #ff6a1f, #e84818 48%, #c2350f);
  color: #fff;
  border-color: rgba(255, 138, 76, 0.55);
  box-shadow: 0 12px 34px -14px rgba(232, 72, 24, 0.9);
  animation: npCtaPulse 2.8s var(--np-ease) infinite;
}
.np-btn-primary:hover {
  background: linear-gradient(120deg, #ff8a4c, #ff5a12 50%, #d63c10);
  box-shadow: 0 0 48px rgba(255, 106, 31, 0.45);
  animation-play-state: paused;
}
@keyframes npCtaPulse {
  0%, 100% { box-shadow: 0 12px 34px -14px rgba(232, 72, 24, 0.9), 0 0 0 0 rgba(255, 106, 31, 0.45); }
  55% { box-shadow: 0 12px 40px -12px rgba(232, 72, 24, 1), 0 0 0 10px rgba(255, 106, 31, 0); }
}
@media (prefers-reduced-motion: reduce) { .np-btn-primary { animation: none; } }

/* header sticky: vero glass */
.np-header[data-stuck="true"] {
  background: linear-gradient(180deg, rgba(61, 17, 16, 0.42), rgba(20, 8, 8, 0.30));
  backdrop-filter: blur(26px) saturate(180%);
  border-bottom-color: rgba(244, 244, 245, 0.14);
  box-shadow: 0 12px 40px -28px rgba(0, 0, 0, 0.9);
}
.np-ticker { backdrop-filter: blur(18px) saturate(160%); }

/* audio: minimale, senza contorno */
.np-audio-head {
  border: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  width: 34px; height: 34px;
  color: rgba(244, 244, 245, 0.75);
}
.np-audio-head:hover { color: #fff; transform: none; }
.np-audio-head svg { width: 19px; height: 19px; stroke-width: 1.5; }
.np-audio-head .np-audio-bars { display: none; }

/* burger classico */
.np-burger-v3 {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; border: 0; background: transparent; padding: 0;
}
.np-burger-v3 i {
  display: block; width: 22px; height: 2px; border-radius: 2px; background: #f4f4f5;
  transition: transform 0.34s var(--np-ease), opacity 0.24s ease, width 0.34s var(--np-ease), background 0.3s ease;
}
.np-burger-v3 i:nth-child(2) { width: 14px; align-self: flex-end; margin-right: 9px; background: var(--np-accent); }
.np-burger-v3[data-open="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--np-accent); }
.np-burger-v3[data-open="true"] i:nth-child(2) { opacity: 0; }
.np-burger-v3[data-open="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--np-accent); }
@media (max-width: 900px) {
  .np-burger-v3 { display: flex; }
  .np-header-right .np-btn-primary { display: none; }
}

/* drawer: numeri e icone arancioni, testi bianchi */
.np-drawer-n {
  background: none !important;
  color: var(--np-accent) !important;
  font-weight: 700;
}
.np-drawer-n .np-icon { color: var(--np-accent); width: 18px; height: 18px; }
.np-drawer-item .np-icon { color: rgba(232, 72, 24, 0.85); }
.np-drawer-c b { color: #fff; }
.np-drawer-lock .np-drawer-c b { color: #fff; }
.np-drawer-item::after { display: none; }

/* drawer actions */
.np-drawer-actions { display: grid; gap: 0.6rem; margin-top: 1.2rem; }
.np-drawer-cta { width: 100%; justify-content: center; }
.np-drawer-wa {
  margin-top: 0; width: 100%; justify-content: center;
  font-size: 0.82rem; padding: 0.62rem 0.9rem;
  border-color: rgba(232, 72, 24, 0.28);
}

/* popup: niente X, pulsa solo la prima volta */
.np-pop[data-show="true"] .np-pop-wave { animation-iteration-count: 3; }
.np-pop-x { display: none; }

/* spazio CTA blocco finale */
.np-ld-cta .np-para { margin-bottom: 0.4rem; }
.np-ld-cta .np-hero-actions { margin-top: 0.9rem; }

/* Carlo: pittogramma dritto come Alberto */
.np-av-mark[data-soul="b"] img { transform: none; animation-delay: -2.3s; }

/* loghi partner */
.np-trusted-seq { gap: 2.6rem; padding-right: 2.6rem; }
.np-trusted-seq img {
  height: 20px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: 0.72; transition: opacity 0.3s ease;
}
.np-trusted-seq img:hover { opacity: 1; }

/* fix: drawer WA come bottone educato + burger senza box */
.np-drawer .np-drawer-actions a.np-drawer-wa {
  font-family: var(--np-sans);
  font-size: 0.84rem;
  line-height: 1;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(232, 72, 24, 0.28);
  color: var(--np-accent-3);
}
.np-burger-v3[data-open="true"] { background: transparent !important; }

/* Carlo dritto */
.np-av-mark[data-soul="b"] img { animation-name: npAvFloat !important; }
/* marquee partner: niente sovrapposizioni */
.np-trusted-seq img { flex: 0 0 auto; }
.np-trusted-track { width: max-content; }
.np-trusted-seq { flex: 0 0 auto; }

/* v7 — splash minimale, logo 3d dritto, payoff */
.np-splash-mark { --np-mark-size: 190px; }
.np-mark3d-face[data-depth] { filter: brightness(0.86) !important; opacity: 1; }
.np-mark3d-face { backface-visibility: visible; }
@keyframes np-mark-spin {
  0%, 26% { transform: rotateY(0deg); }
  50%, 76% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}
.np-mark-payoff {
  display: none;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}
@media (max-width: 860px) {
  .np-mark-payoff { display: block; }
}
.np-footer-payoff {
  margin-left: auto;
  text-align: right;
  color: var(--np-accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 860px) { .np-footer-payoff { display: none; } }
@media (max-width: 900px) {
  .np-mark-payoff { order: 100; margin-top: 10px; }
}

/* =========================================================
 * SPLASH — centratura verticale (fix)
 * ========================================================= */
.np-splash-core {
  flex: 1 1 auto;
  justify-content: center;
}

/* ---- evidenziazione pulsante audio header se il browser blocca l'autoplay ---- */
html[data-audio-blocked="true"] .np-audio-btn{animation:np-splash-audio-pulse 1.8s ease-in-out infinite}
@keyframes np-splash-audio-pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(255,120,40,.55);transform:translateY(0)}
  50%{box-shadow:0 0 0 12px rgba(255,120,40,0);transform:translateY(-2px)}
}
