/* ============================================================
   NexFabric / NexCut — sito che rispecchia la brochure
   Design system estratto dalla brochure (Nexcut_Presentation_V4)
   ============================================================ */

:root {
  --bg:        #06070d;
  --bg-2:      #0a0b14;
  --bg-card:   #0e1019;
  --bg-light:  #ffffff;
  --ink:       #f5f6fa;
  --ink-dim:   #9aa0b4;
  --ink-mute:  #5f667e;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.14);

  /* gradiente brand ufficiale (da X-white.svg del sito) */
  --blue:      #2A8BFB;
  --violet:    #8456F4;
  --grad:      linear-gradient(115deg, #079FFE 0%, #2A8BFB 28%, #6B65F6 72%, #8456F4 100%);
  --grad-x:    linear-gradient(135deg, #079FFE, #2A8BFB 30%, #6B65F6 75%, #8456F4);

  --red:       #ef4444;
  --green:     #22c55e;
  --amber:     #f5b53b;

  --radius:    20px;
  --radius-sm: 12px;
  --maxw:      1180px;
  --font:      'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Space Grotesk', 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

@font-face {
  font-family: 'Syncopate';
  src: url('../public/fonts/Syncopate-Bold.ttf') format('truetype');
  font-weight: 700; font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { background: rgba(139,92,246,.35); }

/* ---------- helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-block;
  font-family: 'Syncopate', var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  margin-bottom: 22px;
}
.eyebrow.solid {
  background: rgba(59,109,255,.12);
  border-color: rgba(99,102,241,.4);
  color: #b9c4ff;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  backdrop-filter: blur(14px);
  background: rgba(6,7,13,.55);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.scrolled { background: rgba(6,7,13,.85); border-bottom-color: var(--line); }

.brand { display: flex; align-items: baseline; font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.brand .x {
  background: var(--grad-x);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 800; padding: 0 1px;
}
.brand .dotai { font-size: 12px; color: var(--ink-dim); font-weight: 600; margin-left: 3px; align-self: flex-start; }
.brand .x-mark { height: 1em; width: auto; margin: 0; transform: translateY(.12em); }
.brand .brand-logo { height: 30px; width: auto; display: block; }

/* ===== 3D model viewer ===== */
.model3d {
  width: 100%; height: 560px; display: block; position: relative; z-index: 1;
  --poster-color: transparent; background: transparent;
}
.model-hint {
  position: relative; z-index: 1; text-align: center; margin-top: 10px;
  font-size: 13px; color: var(--ink-mute); letter-spacing: .04em;
}

/* ===== banda video prodotto full-width (come pagina NexCut) ===== */
.video-band { padding: 30px 0; position: relative; }
.video-band video {
  display: block; width: 100%; height: 86vh; max-height: 900px; object-fit: cover; border-radius: 22px;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
          mask-image:
    linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in; mask-composite: intersect;
}

/* gallery render reali */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; position: relative; z-index: 1; }
.gallery-grid figure {
  position: relative; overflow: hidden; border-radius: 16px; border: 1px solid var(--line);
  aspect-ratio: 1/1; background: #06070d;
}
.gallery-grid figure.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }

/* logo X grande nel closing */
.closing .x-logo { height: clamp(54px, 9vw, 110px); width: auto; margin: 0 auto 26px; display: block; filter: drop-shadow(0 0 40px rgba(99,102,241,.5)); }

.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-dim); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 14px; font-weight: 600; color: #fff !important;
  padding: 9px 18px; border-radius: 100px;
  background: var(--grad);
}
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); font-size: 22px; cursor: pointer; }

/* =====================================================
   PILL di sezione (stile brochure: in alto a destra)
   ===================================================== */
.pill {
  position: absolute; top: 28px; right: 28px; z-index: 3;
  font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 100px;
}
.pill.dark  { background: rgba(255,255,255,.06); border: 1px solid var(--line-2); color: var(--ink); }
.pill.light { background: #0d0e16; color: #fff; }

/* =====================================================
   HERO (stile slide cover)
   ===================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
  background: radial-gradient(130% 120% at 78% 28%, #16204a 0%, #0b1024 40%, #06070d 100%);
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center; }
.hero h1 {
  font-size: clamp(44px, 7vw, 92px); font-weight: 800; letter-spacing: -.04em; line-height: .98;
}
.hero .sub {
  font-size: clamp(20px, 2.6vw, 30px); font-weight: 700; letter-spacing: -.02em;
  margin-top: 20px; line-height: 1.2;
}
.hero .sub .grad-text { display: block; }
.hero p.kicker { color: var(--ink-dim); font-size: 17px; margin-top: 22px; max-width: 440px; line-height: 1.6; }
.hero .btn-row { justify-content: flex-start; margin-top: 34px; }
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; max-width: 560px; margin-left: auto;
  filter: drop-shadow(0 34px 60px rgba(0,0,0,.55));
}
.hero-figure::before {
  content: ""; position: absolute; inset: 6% 4%; z-index: -1;
  background: radial-gradient(circle, rgba(59,109,255,.34), transparent 65%);
  filter: blur(54px);
}

/* device scontornato che fluttua sullo sfondo (PNG trasparente) */
.device-float img {
  width: 100%;
  filter: drop-shadow(0 26px 50px rgba(0,0,0,.5));
}
.device-float { position: relative; }
.device-float::before {
  content: ""; position: absolute; inset: 8%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.3), transparent 62%);
  filter: blur(54px);
}

/* split layout: text + device */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.split.flip .device-float { order: -1; }

/* feather morbido su TUTTI i bordi (no spigoli squadrati) */
.smooth-edges,
.hero-figure.bleed-r img,
.section.bleed-split .device-float img {
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image:
    linear-gradient(to right,  transparent 0, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}

/* hero: il tablet sbocca a destra fino al bordo schermo (come la cover) */
.hero-figure.bleed-r img { width: 122%; max-width: none; margin-right: -16%; }

/* =====================================================
   FULL-BLEED SPLIT — il dispositivo riempie la sua metà
   toccando il bordo schermo (look moderno, niente vuoti)
   ===================================================== */
.section.bleed-split .wrap { max-width: none; padding: 0; }
.section.bleed-split .split { gap: 0; align-items: stretch; min-height: 76vh; }
/* colonna testo: allineata al contenitore centrale */
.section.bleed-split .split > .reveal-up:not(.device-float) {
  align-self: center;
  padding: 60px 60px 60px max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
}
.section.bleed-split .split.flip > .reveal-up:not(.device-float) {
  padding: 60px max(28px, calc((100vw - var(--maxw)) / 2 + 28px)) 60px 60px;
}
/* colonna dispositivo: riempie fino al bordo */
.section.bleed-split .device-float {
  align-self: stretch; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 40px 0;
}
.section.bleed-split .device-float img { width: 100%; max-width: 760px; margin: 0; }
/* immagini alte e strette (es. esploso): più contenute, niente bleed */
.section.bleed-split .device-float.narrow img {
  width: auto; max-width: 100%; max-height: 80vh;
  -webkit-mask-image: none; mask-image: none;
}
.section.bleed-split .device-float::before { inset: 18%; }


/* =====================================================
   LIGHT SECTION — sfondo chiaro (alternanza brochure)
   ===================================================== */
.section.light-sec { position: relative; background: radial-gradient(120% 120% at 50% -10%, #f7f9fd 0%, #eceff6 100%); color: #11131c; }
/* fusione morbida col blocco scuro sopra: niente linea netta */
.section.light-sec::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 140px;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(6,7,13,.55) 42%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.section.light-sec > * { position: relative; z-index: 1; }
.section.light-sec .title { color: #11131c; }
.section.light-sec .lead { color: #555c70; }
.section.light-sec .eyebrow { color: #555c70; border-color: rgba(0,0,0,.12); }
.section.light-sec .eyebrow.solid { background: rgba(59,109,255,.1); border-color: rgba(99,102,241,.35); color: #3d4bd1; }
.section.light-sec .feat-line { color: #1c2030; border-color: rgba(0,0,0,.1); }
.section.light-sec .feat-line small { color: #5a6175; }
.section.light-sec .glow { opacity: .25; }

/* device su chiaro: ombra morbida, niente glow viola forte */
.section.light-sec .device-float img { filter: drop-shadow(0 30px 50px rgba(20,24,40,.22)); }
.section.light-sec .device-float::before { background: radial-gradient(circle, rgba(59,109,255,.16), transparent 62%); }

/* card su chiaro */
.section.light-sec .card {
  background: #fff; border-color: rgba(16,19,28,.08);
  box-shadow: 0 8px 30px -16px rgba(20,24,40,.25);
}
.section.light-sec .card:hover { border-color: rgba(16,19,28,.16); }
.section.light-sec .card h3 { color: #11131c; }
.section.light-sec .card p { color: #555c70; }
.section.light-sec .card .k { color: #6d44e0; }
.section.light-sec .card .ico { background: rgba(99,102,241,.1); }

/* ticks su chiaro */
.section.light-sec ul.ticks li { color: #4a5165; }

/* steps su chiaro */
.section.light-sec .step { background: #fff; border-color: rgba(16,19,28,.08); box-shadow: 0 8px 30px -16px rgba(20,24,40,.22); }
.section.light-sec .step h3 { color: #11131c; }
.section.light-sec .step p { color: #555c70; }
.section.light-sec .step .badge-k { color: #8a90a4; }
.section.light-sec .chip { color: #4a5165; border-color: rgba(16,19,28,.16); }

/* stat su chiaro */
.section.light-sec .stat { background: #fff; border-color: rgba(16,19,28,.08); }
.section.light-sec .stat .lbl { color: #555c70; }

/* team su chiaro */
.section.light-sec .member { background: #fff; border-color: rgba(16,19,28,.08); }
.section.light-sec .member .role { color: #11131c; }
.section.light-sec .member .flag { color: #8a90a4; }
.section.light-sec .member .sk span { color: #555c70; border-color: rgba(16,19,28,.12); }
.section.light-sec h3 { color: #11131c; }

/* feature list lines (slide 2/5 left column) */
.feat-list { display: grid; gap: 0; margin-top: 30px; position: relative; z-index: 1; }
.feat-line {
  display: flex; align-items: center; gap: 14px;
  font-size: 17px; font-weight: 600; color: var(--ink);
  padding: 18px 2px; border-bottom: 1px solid var(--line);
}
.feat-line:first-child { border-top: 1px solid var(--line); }
.feat-line .fi {
  width: 34px; height: 34px; flex: none; border-radius: 9px; display: grid; place-items: center;
  background: rgba(99,102,241,.14); border: 1px solid rgba(99,102,241,.3); font-size: 16px;
}
.feat-line small { display: block; font-weight: 400; color: var(--ink-dim); font-size: 13.5px; margin-top: 2px; }

/* closing brand band (slide 9) */
.closing {
  position: relative; text-align: center; padding: 140px 24px; overflow: hidden;
  background: radial-gradient(120% 130% at 50% 45%, #211652 0%, #120d33 42%, #06060f 100%);
}
.closing .nexcut-mark {
  font-family: 'Syncopate', var(--font);
  font-size: clamp(40px, 9vw, 112px); font-weight: 700; letter-spacing: -.02em; line-height: 1;
  background: linear-gradient(100deg, #eef1ff 0%, #9fb4ff 40%, #6d6bf7 60%, #c084fc 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.closing .tm { font-size: .3em; vertical-align: super; -webkit-text-fill-color: var(--ink-dim); }
.closing .tag { font-size: clamp(20px, 3vw, 34px); font-weight: 600; margin-top: 18px; letter-spacing: -.01em; }

/* =====================================================
   SECTION shells
   ===================================================== */
/* overflow visible: i blob-glow sconfinano oltre i bordi sezione e si fondono
   tra sezioni adiacenti. Lo scroll orizzontale è già contenuto da body{overflow-x:clip}.
   Le sezioni speciali (bleed-split, nexcut-sec, floor-sec, netmap, vision-hero)
   impostano overflow:hidden per conto proprio e continuano a ritagliare i loro media. */
.section { position: relative; padding: 96px 0; overflow: visible; }
.closing, .foot-min, .marquee { overflow-x: clip; }
.section.tight { padding: 72px 0; }
.section.bleed-split { padding: 0; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section h2.title {
  font-size: clamp(30px, 4.4vw, 50px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.06;
}
.section .lead { color: var(--ink-dim); font-size: 18px; line-height: 1.6; margin-top: 18px; }

/* blob ambientali: grandi e molto sfumati così SCONFINANO oltre i bordi
   sezione e si fondono con quelli adiacenti (nessuna riga di stacco).
   Il .section clippa solo in orizzontale (overflow-x:clip), quindi in
   verticale il blob attraversa liberamente il confine tra le sezioni. */
.glow { position: absolute; border-radius: 50%; filter: blur(150px); opacity: .34; pointer-events: none; z-index: 0; }
.glow.b { width: 720px; height: 720px; background: #2f4cff; }
.glow.v { width: 680px; height: 680px; background: #7c3aed; }
/* nelle sezioni che devono ritagliare i media (overflow:hidden) il blob verrebbe
   tranciato netto al bordo → seam. Lì lo nascondo: il fondo resta continuo. */
.bleed-split > .glow, .nexcut-sec > .glow, .floor-sec > .glow,
.vision-hero > .glow, .netmap .glow { display: none; }

/* =====================================================
   CARDS / GRIDS
   ===================================================== */
.grid { display: grid; gap: 20px; position: relative; z-index: 1; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color .25s, transform .25s, background .25s;
}
.card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.card .k { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--violet); text-transform: uppercase; }
.card h3 { font-size: 21px; font-weight: 700; margin: 14px 0 10px; letter-spacing: -.01em; }
.card p { color: var(--ink-dim); font-size: 15px; line-height: 1.6; }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: rgba(99,102,241,.14); border: 1px solid rgba(99,102,241,.3);
  font-size: 20px;
}

ul.ticks { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
ul.ticks li { position: relative; padding-left: 26px; color: var(--ink-dim); font-size: 14.5px; line-height: 1.5; }
ul.ticks li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad);
}

/* feature steps (NexCut whitebox 01-07) */
.steps { position: relative; z-index: 1; display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  align-items: start;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 30px;
}
.step .no {
  font-size: 26px; font-weight: 800; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: 22px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 8px; }
.step .badge-k { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--ink-mute); display: block; margin-bottom: 10px; }
.step p { color: var(--ink-dim); font-size: 15px; line-height: 1.6; }
.step .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  font-size: 12.5px; font-weight: 500; color: var(--ink-dim);
  padding: 6px 12px; border: 1px solid var(--line-2); border-radius: 100px;
}

/* product highlight rows */
.prod {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 26px; padding: 44px; position: relative; z-index: 1; overflow: hidden;
}
.prod + .prod { margin-top: 22px; }
.prod .visual {
  aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background: #05060c;
}
.prod .visual img { width: 100%; height: 100%; object-fit: cover; }
.prod.flip .visual { order: -1; }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; position: relative; z-index: 1; }
.stat { text-align: center; padding: 30px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); }
.stat .big { font-size: 40px; font-weight: 800; letter-spacing: -.03em; }
.stat .lbl { color: var(--ink-dim); font-size: 14px; margin-top: 6px; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; position: relative; z-index: 1; }
.member { background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.member .role { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.35; }
.member .flag { font-size: 12px; color: var(--ink-mute); margin-top: 10px; }
.member .sk { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.member .sk span { font-size: 11px; color: var(--ink-dim); padding: 4px 9px; border: 1px solid var(--line); border-radius: 8px; }

/* led legend (slide 6) */
.leds { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; position: relative; z-index: 1; }
.led { text-align: center; padding: 22px 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--bg-card); }
.led .dot { width: 30px; height: 30px; border-radius: 50%; margin: 0 auto 14px; box-shadow: 0 0 24px currentColor; }
.led h4 { font-size: 18px; font-weight: 700; }
.led p { font-size: 13px; color: var(--ink-dim); margin-top: 6px; }

/* CTA band */
.cta-band {
  position: relative; z-index: 1;
  text-align: center; padding: 70px 40px;
  border-radius: 28px; overflow: hidden;
  background:
    radial-gradient(120% 160% at 50% 0%, rgba(124,58,237,.4), transparent 60%),
    linear-gradient(180deg, #11132a, #0a0b16);
  border: 1px solid var(--line-2);
}
/* CTA con background spaziale (home "Costruiamo il layer…") */
.cta-band.cta-space {
  background:
    linear-gradient(180deg, rgba(8,9,20,.74), rgba(6,7,13,.88)),
    url(/public/img/cta-factory-bg.jpg) center/cover no-repeat;
  border-color: rgba(140,120,255,.35);
}
.cta-band.cta-space::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 150% at 50% 0%, rgba(124,58,237,.34), transparent 62%);
}
.cta-band.cta-space > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(28px,4vw,46px); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; }
.cta-band p { color: var(--ink-dim); font-size: 18px; margin: 18px auto 30px; max-width: 560px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  padding: 14px 26px; border-radius: 100px; border: 1px solid transparent;
}
.btn.primary { background: var(--grad); color: #fff; }
.btn.ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* contact form */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; position: relative; z-index: 1; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-dim); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font); font-size: 15px;
  background: var(--bg-card); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 13px 15px; color: var(--ink); outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--violet); }
.field textarea { resize: vertical; min-height: 120px; }
.info-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 26px; }
.info-line .ico { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(99,102,241,.14); border: 1px solid rgba(99,102,241,.3); }
.info-line h4 { font-size: 15px; font-weight: 700; }
.info-line p { color: var(--ink-dim); font-size: 14px; margin-top: 4px; line-height: 1.5; }

/* footer chips (brochure tri-color) */
.tri { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }
.tri span { font-size: 15px; font-weight: 600; position: relative; padding-left: 16px; }
.tri span::before { content: "•"; position: absolute; left: 0; }
.tri .r { color: var(--red); }
.tri .b { color: var(--blue); }
.tri .g { color: var(--green); }

/* =====================================================
   MARQUEE — ticker a scorrimento (stile Wall Street)
   ===================================================== */
.marquee {
  position: relative; overflow: hidden; width: 100%;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  padding: 22px 0; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: scrollx 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .item {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: clamp(18px, 2.4vw, 28px); font-weight: 700; letter-spacing: -.01em;
  padding: 0 30px; white-space: nowrap;
}
.marquee-track .item::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor;
  opacity: .55; margin-left: 6px;
}
.marquee .r { color: var(--red); }
.marquee .b { color: var(--blue); }
.marquee .g { color: var(--green); }
.marquee .w { color: var(--ink); }
.marquee .v { color: var(--violet); }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee.light { border-color: rgba(0,0,0,.08); }
.marquee.light .w { color: #11131c; }

/* footer */
footer {
  border-top: 1px solid var(--line); padding: 64px 0 40px; margin-top: 40px;
  background: var(--bg-2);
}
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
footer p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; }
footer h5 { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 16px; }
footer ul { list-style: none; display: grid; gap: 10px; }
footer ul a { color: var(--ink-dim); font-size: 14px; }
footer ul a:hover { color: var(--ink); }
.foot-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot-bottom small { color: var(--ink-mute); font-size: 13px; }

/* reveal on scroll */
.reveal-up { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-up.in { opacity: 1; transform: none; }
/* stagger figli nelle griglie */
.grid .reveal-up:nth-child(2), .leds .reveal-up:nth-child(2), .team-grid .reveal-up:nth-child(2) { transition-delay: .06s; }
.grid .reveal-up:nth-child(3), .leds .reveal-up:nth-child(3), .team-grid .reveal-up:nth-child(3) { transition-delay: .12s; }
.grid .reveal-up:nth-child(4), .leds .reveal-up:nth-child(4), .team-grid .reveal-up:nth-child(4) { transition-delay: .18s; }
.grid .reveal-up:nth-child(5), .leds .reveal-up:nth-child(5), .team-grid .reveal-up:nth-child(5) { transition-delay: .24s; }
.grid .reveal-up:nth-child(6), .team-grid .reveal-up:nth-child(6) { transition-delay: .30s; }
.steps .reveal-up:nth-child(even) { transition-delay: .08s; }

/* =====================================================
   ANIMAZIONI
   ===================================================== */

/* barra di progresso scroll (in cima) */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200;
  background: var(--grad); transform-origin: 0 50%; transform: scaleX(0);
}

/* shimmer sui testi a gradiente */
.grad-text, .nexcut-mark {
  background-size: 220% 100%;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* float idle dei dispositivi */
.device-float img, .hero-figure img { animation: floaty 6.5s ease-in-out infinite; will-change: transform; }
.split.flip .device-float img { animation-delay: -3s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

/* glow pulsante dietro i dispositivi */
.device-float::before, .hero-figure::before { animation: glowpulse 5s ease-in-out infinite; }
@keyframes glowpulse {
  0%, 100% { opacity: .75; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.08); }
}

/* LED che pulsano */
.led .dot { animation: ledpulse 2.4s ease-in-out infinite; }
.led:nth-child(2) .dot { animation-delay: .3s; }
.led:nth-child(3) .dot { animation-delay: .6s; }
.led:nth-child(4) .dot { animation-delay: .9s; }
.led:nth-child(5) .dot { animation-delay: 1.2s; }
@keyframes ledpulse {
  0%, 100% { box-shadow: 0 0 14px currentColor; }
  50%      { box-shadow: 0 0 30px currentColor, 0 0 50px currentColor; }
}

/* glow morbido che respira */
.glow { animation: drift 14s ease-in-out infinite; }
@keyframes drift {
  0%, 100% { transform: translate(0,0); }
  50%      { transform: translate(28px,-26px); }
}

/* card: bordo a gradiente in hover */
.card { position: relative; }
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad); opacity: 0; transition: opacity .3s;
  -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;
}
.card:hover::after { opacity: .9; }

/* nav link underline animato */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%;
  background: var(--grad); transform: scaleX(0); transform-origin: 0 50%; transition: transform .3s ease;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

/* bottoni: shine + lift */
.btn { position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .25s ease; }
.btn.primary { box-shadow: 0 6px 22px -10px rgba(124,58,237,.55); }
/* hero: un filo di glow in più sulle CTA principali */
.launch-hero .btn.primary, .vision-hero .btn.primary { box-shadow: 0 8px 30px -8px rgba(124,58,237,.72); }
.launch-hero .btn.ghost, .vision-hero .btn.ghost { box-shadow: 0 0 26px -10px rgba(124,92,255,.4); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(124,58,237,.7); }
.btn.ghost { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
.btn.ghost:hover { border-color: var(--violet); transform: translateY(-2px); box-shadow: 0 8px 26px -14px rgba(124,58,237,.5); }
.btn.primary::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 70%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn.primary:hover::before { left: 130%; }

/* entrata hero (sfalsata) */
.hero h1 { animation: heroIn 1s cubic-bezier(.2,.7,.2,1) both; }
.hero .sub { animation: heroIn 1s cubic-bezier(.2,.7,.2,1) .12s both; }
.hero .kicker { animation: heroIn 1s cubic-bezier(.2,.7,.2,1) .22s both; }
.hero .btn-row { animation: heroIn 1s cubic-bezier(.2,.7,.2,1) .32s both; }
.hero .eyebrow { animation: heroIn 1s cubic-bezier(.2,.7,.2,1) both; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

/* ===== Scroll-driven animations (progressive enhancement) ===== */
@supports (animation-timeline: scroll()) {
  .scroll-progress { animation: progressGrow linear; animation-timeline: scroll(root); }
  @keyframes progressGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

  /* parallax: i dispositivi salgono leggermente più lenti dello scroll */
  .device-float { animation: parallaxUp linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
  @keyframes parallaxUp { from { transform: translateY(60px); } to { transform: translateY(-60px); } }

  .hero-figure { animation: heroParallax linear both; animation-timeline: scroll(root); animation-range: 0 60vh; }
  @keyframes heroParallax { to { transform: translateY(70px); } }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 980px) {
  .g3, .g4, .team-grid, .leds { grid-template-columns: repeat(2,1fr); }
  .prod, .contact-grid, .foot-grid, .hero .wrap, .split { grid-template-columns: 1fr; }
  .prod.flip .visual, .split.flip .device-float { order: 0; }
  .stats { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero .btn-row { justify-content: flex-start; }
  .hero-figure img { max-width: 380px; margin: 10px auto 0; }
  .device-float { max-width: 420px; margin: 0 auto; }

  /* full-bleed split → impilato su mobile */
  .section.bleed-split { padding: 64px 0; }
  .section.bleed-split .wrap { padding: 0 28px; }
  .section.bleed-split .split { min-height: 0; gap: 30px; }
  .section.bleed-split .split > .reveal-up:not(.device-float),
  .section.bleed-split .split.flip > .reveal-up:not(.device-float) { padding: 0; }
  .section.bleed-split .device-float img { margin: 0 auto; max-width: 440px; }
}
@media (max-width: 640px) {
  .nav-cta { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 110; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
  .nav-links.open ~ .nav-toggle { transform: rotate(90deg); }
  /* overlay sempre montato, nascosto: così può animare in/out */
  .nav-links {
    display: flex; flex-direction: column; justify-content: flex-start; align-items: center;
    position: fixed; inset: 0; z-index: 105;
    background: #06070d; gap: 30px; padding: 104px 24px 40px; margin: 0; min-height: 100vh; min-height: 100dvh;
    opacity: 0; visibility: hidden; transform: translateY(-14px);
    transition: opacity .34s ease, transform .34s cubic-bezier(.2,.7,.2,1), visibility .34s;
    pointer-events: none;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .nav-links a {
    font-size: 30px; font-weight: 500; color: var(--ink); letter-spacing: -.02em;
    opacity: 0; transform: translateY(16px);
    transition: opacity .4s ease, transform .45s cubic-bezier(.2,.7,.2,1), color .2s;
  }
  .nav-links.open a { opacity: 1; transform: none; }
  .nav-links.open a:nth-child(1) { transition-delay: .08s; }
  .nav-links.open a:nth-child(2) { transition-delay: .13s; }
  .nav-links.open a:nth-child(3) { transition-delay: .18s; }
  .nav-links.open a:nth-child(4) { transition-delay: .23s; }
  .nav-links.open a:nth-child(5) { transition-delay: .28s; }
  .nav-links.open a:nth-child(6) { transition-delay: .33s; }
  .nav-links.open a:nth-child(7) { transition-delay: .38s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a::after { display: none; }
  .g2, .g3, .g4, .team-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 32px; }
  .slide { min-height: auto; padding: 50px 16px; }
  .step { grid-template-columns: 1fr; gap: 8px; padding: 24px 22px; }
  .tri { gap: 22px; }

  /* pill di sezione: spostate in linea (niente sovrapposizioni) */
  .pill { position: static; display: inline-block; margin: 0 0 16px; top: auto; right: auto; }
  .section.bleed-split .pill { position: absolute; top: 12px; right: 16px; margin: 0; font-size: 11px; padding: 6px 12px; z-index: 5; }

  /* gallery: mosaico a 2 colonne, tile wide a tutta larghezza */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid figure.wide { grid-column: span 2; aspect-ratio: 16/9; }

  /* card componenti Kit: 2 colonne compatte */
  #kit .grid.g2 { grid-template-columns: 1fr 1fr; gap: 12px; }
  #kit .grid.g2 .card { padding: 16px; }
  #kit .grid.g2 .card .ico { width: 38px; height: 38px; margin-bottom: 12px; }
  #kit .grid.g2 .card h3 { font-size: 14px; }

  /* LED: 2 colonne invece di 5 stretti */
  .leds { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* video e 3D su mobile */
  .video-band { padding: 16px 0; }
  .video-band video { height: 52vh; border-radius: 14px; }
  .model3d { height: 380px; }

  /* tipografia hero più contenuta */
  .hero h1 { font-size: clamp(40px, 13vw, 60px); }
  .hero .sub { font-size: clamp(19px, 5.5vw, 26px); }

  /* titoli sezione un filo più piccoli */
  .section h2.title { font-size: clamp(26px, 7.5vw, 36px); }
  .cta-band { padding: 48px 22px; }
  .marquee-track .item { font-size: clamp(16px, 5vw, 22px); padding: 0 18px; }
}

/* =====================================================
   Rispetta chi preferisce meno movimento
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up { opacity: 1 !important; transform: none !important; }
}

/* =====================================================
   SLIDE 8-14 — componenti aggiunti (brochure pari pari)
   ===================================================== */

/* LED di processo: render del tablet nelle card (slide 6) */
.section.light-sec .led { background:#fff; border-color:rgba(16,19,28,.08); box-shadow:0 8px 30px -16px rgba(20,24,40,.18); }
.led .led-render { width:100%; max-width:180px; height:auto; margin:0 auto 8px; mix-blend-mode:multiply; }

/* callout OUTPUT (slide 9) */
.callout { margin-top:26px; background:#0d0e16; border:1px solid var(--line-2); border-radius:14px; padding:20px 22px; }
.callout .k { display:block; font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-dim); margin-bottom:8px; }
.callout p { color:#c7ccdb; font-size:14.5px; line-height:1.6; margin:0; }

/* flow orizzontale (slide 10) */
.flow { display:grid; grid-template-columns:repeat(5,1fr); align-items:start; position:relative; z-index:1; margin-top:8px; }
.flow-step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 14px; position:relative; }
.flow-step:not(:last-child)::after { content:"›"; position:absolute; right:-8px; top:18px; transform:translateY(-50%); font-size:30px; line-height:1; color:var(--ink-mute); font-weight:700; }
.flow-step .fico { height:36px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.flow-step p { color:var(--ink-dim); font-size:15px; line-height:1.4; max-width:180px; margin:0 auto; }
.result-row { display:flex; gap:26px; align-items:baseline; justify-content:center; flex-wrap:wrap; margin-top:56px; position:relative; z-index:1; }
.result-row h3 { font-size:24px; font-weight:800; }
.result-row p { color:var(--ink-dim); font-size:15px; line-height:1.6; max-width:460px; }

/* liste a due colonne (slide 12 KPI) */
ul.ticks.cols2 { grid-template-columns:1fr 1fr; gap:9px 26px; }

/* wordmark di chiusura (slide 14) */
.closing-mark { display:flex; align-items:baseline; justify-content:center; font-weight:800; letter-spacing:-.04em; line-height:1; font-size:clamp(48px,11vw,128px); }
.closing-mark .x-mark { height:.78em; width:auto; transform:translateY(.04em); filter:drop-shadow(0 0 36px rgba(99,102,241,.55)); }

/* footer minimale */
.foot-min { border-top:1px solid var(--line); padding:30px 0; background:var(--bg-2); }
.foot-min .wrap { display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.foot-min small { color:var(--ink-mute); font-size:13px; }

@media (max-width:980px) {
  .flow { grid-template-columns:repeat(2,1fr); gap:34px 0; }
  .flow-step:not(:last-child)::after { display:none; }
  ul.ticks.cols2 { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  .flow { grid-template-columns:1fr; }
}

/* =====================================================
   SLIDE 11 / 12 — versione minimale
   ===================================================== */
.flow.three { grid-template-columns:repeat(3,1fr); max-width:860px; margin:0 auto; }

/* frase forte centrale */
.quote-band {
  text-align:center; max-width:840px; margin:52px auto 0; position:relative; z-index:1;
  font-size:clamp(22px,3vw,32px); font-weight:700; letter-spacing:-.02em; line-height:1.32;
}

/* chip row minimale */
.chip-row { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:38px; position:relative; z-index:1; }
.chip-row span { font-size:13.5px; font-weight:600; padding:9px 16px; border-radius:100px; border:1px solid var(--line-2); color:var(--ink-dim); }
.section.light-sec .chip-row span { color:#4a5165; border-color:rgba(16,19,28,.14); background:#fff; }

/* KPI tiles (dashboard) */
.kpi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; position:relative; z-index:1; }
.kpi {
  display:flex; flex-direction:column; gap:14px; padding:28px 26px;
  background:var(--bg-card); border:1px solid var(--line); border-radius:var(--radius);
  position:relative; overflow:hidden; transition:border-color .25s, transform .25s;
}
.kpi::before { content:""; position:absolute; inset:0 0 auto 0; height:2px; background:var(--grad); opacity:.75; }
.kpi:hover { border-color:var(--line-2); transform:translateY(-4px); }
.kpi .ki {
  width:46px; height:46px; border-radius:12px; display:grid; place-items:center; font-size:22px;
  background:rgba(99,102,241,.14); border:1px solid rgba(99,102,241,.3);
}
.kpi h4 { font-size:16px; font-weight:600; letter-spacing:-.01em; }

@media (max-width:980px) {
  .flow.three { grid-template-columns:1fr; gap:30px; }
  .kpi-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px) {
  .kpi-grid { grid-template-columns:1fr 1fr; gap:10px; }
  .kpi { padding:20px 18px; }
}

/* ancore menu: evita che il titolo finisca sotto la navbar fissa */
section[id], span[id] { scroll-margin-top: 78px; }

/* logo NexCut completo nella hero */
.hero-title { display:flex; flex-direction:column; align-items:flex-start; gap:6px; }
.hero-logo { flex:none; width:auto; max-width:100%; height:clamp(62px,10.5vw,128px); object-fit:contain; margin-bottom:4px; filter:drop-shadow(0 6px 30px rgba(99,102,241,.35)); }
.hero-title .grad-text { font-size:clamp(40px,6.4vw,84px); font-weight:800; letter-spacing:-.04em; line-height:.98; }
@media (max-width:640px){ .hero-logo { height:clamp(56px,16vw,84px); } }

/* niente scroll orizzontale: cap immagini bleed e glow su mobile */
@media (max-width:640px) {
  .section.bleed-split .device-float img { max-width:min(440px,84vw); }
  .hero-figure.bleed-r img { width:100%; max-width:88vw; margin:10px auto 0; }
  .glow { max-width:80vw; max-height:80vw; }
}

/* =====================================================
   Space Grotesk — peso medium (500) per titoli e testi
   ===================================================== */
body { font-weight: 500; }
h1, h2, h3, h4, h5,
.hero h1, .hero .sub, .section h2.title, .title, .cta-band h2,
.result-row h3, .closing-mark, .nexcut-mark,
.kpi h4, .quote-band, .brand, .nav-cta,
.stat .big, .step .no, .step h3, .card h3, .led h4,
.hero-title .grad-text, .badge-k, .btn {
  font-weight: 500;
}

/* =====================================================
   ICONE LUCIDE (open source) — sostituiscono le emoji
   ===================================================== */
.fi i, .ico i, .ki i, .fico i, .tri i { display: inline-flex; }
.fi svg, .ico svg, .ki svg, .fico svg, .tri svg { stroke-width: 2; display: block; }

/* feature list (.fi box 34px) */
.fi { color: #7c8aff; }
.fi svg { width: 18px; height: 18px; }
.section.light-sec .fi { color: #5b63e6; }

/* card icon (.ico box 46px) */
.ico { color: #8b95ff; }
.ico svg { width: 22px; height: 22px; }
.section.light-sec .ico { color: #5b63e6; }

/* KPI icon (.ki box 46px) */
.ki { color: #8b95ff; }
.ki svg { width: 22px; height: 22px; }

/* flow icon (no box) */
.fico { color: var(--violet); }
.fico svg { width: 30px; height: 30px; }

/* firma tri-color: icone al posto dei pallini (rosso/blu/verde come la grafica) */
.tri span { padding-left: 0; display: inline-flex; align-items: center; gap: 9px; }
.tri span::before { content: none; }
.tri svg { width: 19px; height: 19px; }

/* =====================================================
   SLIDE NUOVE (deck finale) + LAUNCH BANNER
   ===================================================== */

/* griglia icona+label (Human communication) */
.icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; margin-top: 26px; position: relative; z-index: 1; }
.icon-grid .it { display: flex; gap: 13px; align-items: flex-start; }
.icon-grid .it b { font-weight: 600; font-size: 15px; }
.icon-grid .it small { display: block; color: var(--ink-dim); font-size: 13px; margin-top: 3px; line-height: 1.4; }

/* CTA a freccia (dalla voce → alla risoluzione) */
.flow-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 30px; font-weight: 600; font-size: 14px; letter-spacing: .04em; position: relative; z-index: 1; }
.flow-cta svg { width: 22px; height: 22px; color: var(--green); }
.flow-cta .g { color: var(--green); }

/* card valigie (Semplice, maneggevole, sicura) */
.case-card { border: 1px solid var(--line-2); border-radius: 24px; padding: 30px; display: grid; place-items: center; background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); min-height: 320px; overflow: hidden; }
.case-card img { width: 100%; max-width: 460px; max-height: 380px; object-fit: contain; }

/* =====================================================
   HERO — Final validation / Q4 2026 (futuristico)
   ===================================================== */
.launch-hero {
  background:
    radial-gradient(80% 55% at 82% 26%, rgba(124,92,255,.20) 0%, transparent 60%),
    radial-gradient(70% 50% at 12% 8%, rgba(42,139,251,.12) 0%, transparent 55%),
    #05060b;
  padding: 132px 0 70px;
}
.launch-hero .wrap { display: block; position: relative; z-index: 2; }

/* aura viola in alto a destra + griglia tecnica di sfondo */
.hero-aura {
  position: absolute; top: -10%; right: -6%; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,.30), transparent 62%);
  filter: blur(40px); pointer-events: none; z-index: 0;
  animation: glowpulse 7s ease-in-out infinite;
}
.hero-grid-fx {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 20%, #000 30%, transparent 78%);
          mask-image: radial-gradient(120% 80% at 50% 20%, #000 30%, transparent 78%);
}

.launch-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; position: relative; z-index: 2; }

/* lockup  X | NexCut AI */
.ncai-lockup { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.ncai-lockup .x-badge {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: rgba(124,92,255,.10); border: 1px solid rgba(124,92,255,.32);
  box-shadow: 0 0 22px rgba(124,92,255,.25) inset;
}
.ncai-lockup .x-badge img { height: 18px; width: auto; }
.ncai-lockup .bar { width: 1px; height: 26px; background: var(--line-2); }
.ncai-lockup .t { color: #c7ccdb; font-weight: 500; letter-spacing: .04em; font-size: 16px; text-transform: uppercase; }
.ncai-lockup .t b { color: #9b8cff; font-weight: 700; }

.launch-h1 { font-size: clamp(44px, 7.2vw, 92px); font-weight: 700; line-height: .98; letter-spacing: -.035em; }
.launch-sub { font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-top: 16px; letter-spacing: -.02em; }
.launch-sub .lb { color: #3b9bff; }
.launch-sub .lm { color: #6B65F6; }
.launch-sub .lv { color: #9b6bf6; }
.launch-hero .kicker { color: var(--ink-dim); font-size: 17px; margin-top: 18px; max-width: 440px; line-height: 1.6; }

/* anello Q4 2026 */
.ring-wrap { justify-self: center; position: relative; }
.ring {
  width: min(380px, 82vw); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  filter: drop-shadow(0 0 60px rgba(124,92,255,.4));
}
/* core glassy + aloni concentrici */
.ring::before {
  content: ""; position: absolute; inset: 16px; border-radius: 50%;
  background: radial-gradient(circle at 50% 36%, #0d0f1e 0%, #07080f 78%);
  box-shadow: inset 0 0 50px rgba(124,92,255,.16), inset 0 0 1px rgba(124,92,255,.5);
}
.ring::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(124,92,255,.16);
  animation: ringPulse 3.4s ease-in-out infinite;
}
@keyframes ringPulse { 0%,100% { transform: scale(1); opacity: .6; } 50% { transform: scale(1.025); opacity: 1; } }

/* SVG dell'anello */
.ring-svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; z-index: 1; }
.ring-track { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 5; }
.ring-prog {
  fill: none; stroke: url(#ringgrad); stroke-width: 6; stroke-linecap: round;
  stroke-dasharray: 540.35; stroke-dashoffset: 540.35;
  animation: ringDraw 2.2s cubic-bezier(.2,.7,.2,1) .35s forwards;
}
@keyframes ringDraw { to { stroke-dashoffset: 151; } }   /* ~72% */
.ring-ticks {
  fill: none; stroke: rgba(124,92,255,.30); stroke-width: 7;
  stroke-dasharray: .6 9.2; stroke-linecap: round;
  transform-origin: 100px 100px; animation: ringSpin 26s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.ring-dot {
  fill: #fff; transform-origin: 100px 100px;
  filter: drop-shadow(0 0 7px #8456F4) drop-shadow(0 0 12px #2A8BFB);
  animation: ringDot 2.2s cubic-bezier(.2,.7,.2,1) .35s both, dotPulse 1.8s ease-in-out 2.6s infinite;
}
@keyframes ringDot { from { transform: rotate(0deg); } to { transform: rotate(259.2deg); } }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }

.ring-inner { position: relative; z-index: 2; text-align: center; }
.ring-q { font-size: clamp(34px, 5vw, 50px); font-weight: 600; letter-spacing: -.02em; }
.ring-div { width: 46px; height: 1px; background: var(--line-2); margin: 12px auto; }
.ring-l { color: var(--ink-dim); letter-spacing: .14em; font-size: 13px; text-transform: uppercase; }

@media (prefers-reduced-motion: reduce) {
  .ring-prog { animation: none; stroke-dashoffset: 151; }
  .ring-dot { animation: none; transform: rotate(259.2deg); }
  .ring-ticks, .ring::after { animation: none; }
}

/* prodotto sfumato in background, sotto il blocco testo/ring */
.launch-stage {
  position: relative; margin-top: -210px; display: flex; justify-content: center; z-index: 0; pointer-events: none;
}
.launch-stage .stage-device {
  width: min(310px, 48%); opacity: .42;
  filter: blur(2.2px) drop-shadow(0 30px 60px rgba(0,0,0,.7));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 72%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 72%, transparent 100%);
}
.launch-stage .stage-line {
  position: absolute; bottom: 10%; left: 50%; transform: translateX(-50%);
  width: min(820px, 96%); height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, #2A8BFB 30%, #8456F4 70%, transparent);
  box-shadow: 0 0 28px 4px rgba(124,92,255,.4); opacity: .5;
  animation: stageGlow 4s ease-in-out infinite;
}
@keyframes stageGlow { 0%,100% { opacity: .35; } 50% { opacity: .65; } }

/* tre pilastri con divisori */
.launch-pillars { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 56px; padding-top: 30px; border-top: 1px solid var(--line); position: relative; z-index: 2; }
.launch-pillars .pil { display: inline-flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 600; }
.launch-pillars .pil svg { width: 19px; height: 19px; }
.launch-pillars .pil.r { color: var(--red); }
.launch-pillars .pil.b { color: var(--blue); }
.launch-pillars .pil.g { color: var(--green); }
.launch-pillars .pil-div { width: 1px; height: 22px; background: var(--line-2); }

@media (max-width: 980px) {
  .icon-grid { grid-template-columns: 1fr; }
  .launch-hero { min-height: auto; padding: 110px 0 56px; }
  .launch-grid { grid-template-columns: 1fr; gap: 38px; }
  .ring-wrap { margin-top: 4px; }
  .launch-stage .stage-device { width: 100%; }
}
@media (max-width: 560px) {
  .launch-pillars { gap: 12px 14px; }
  .launch-pillars .pil { font-size: 14px; }
  .launch-pillars .pil-div { display: none; }
}

/* =====================================================
   ANELLO Q4 — effetto laser / radar
   ===================================================== */
.ring-sweep, .ring-scan {
  position: absolute; inset: 7px; border-radius: 50%; pointer-events: none; z-index: 1;
  mix-blend-mode: screen;
  -webkit-mask: radial-gradient(circle, transparent 38%, #000 60%, #000 97%, transparent 100%);
          mask: radial-gradient(circle, transparent 38%, #000 60%, #000 97%, transparent 100%);
}
/* sweep principale: scia che ruota con bordo luminoso (radar) */
.ring-sweep {
  background: conic-gradient(from 0deg,
    rgba(111,208,255,0) 0deg, rgba(111,208,255,0) 286deg,
    rgba(42,139,251,.18) 320deg, rgba(124,92,255,.55) 352deg, #6fd0ff 359deg, #ffffff 360deg);
  animation: ringSweep 3s linear infinite;
  opacity: .9;
}
/* secondo strato più tenue, controrotante, per profondità */
.ring-scan {
  background: conic-gradient(from 0deg,
    rgba(124,92,255,0) 0deg, rgba(124,92,255,0) 320deg,
    rgba(124,92,255,.22) 348deg, rgba(160,120,255,.4) 360deg);
  animation: ringSweepRev 6.5s linear infinite; opacity: .5;
}
@keyframes ringSweep { to { transform: rotate(360deg); } }
@keyframes ringSweepRev { to { transform: rotate(-360deg); } }

/* tip laser più intenso */
.ring-dot {
  filter: drop-shadow(0 0 6px #ffffff) drop-shadow(0 0 12px #6fd0ff) drop-shadow(0 0 20px #2A8BFB);
}

@media (prefers-reduced-motion: reduce) {
  .ring-sweep, .ring-scan { animation: none; opacity: .25; }
}

/* ============================================================
   v14 — REDESIGN: dark continuo, tubelight nav, container-scroll,
   spotlight cards, status badge, scrolling story, motion footer
   ============================================================ */

/* ----- override: tutte le sezioni "chiare" diventano dark ----- */
.section [style*="#11131c"] { color: var(--ink) !important; }
.section [style*="#555c70"],
.section [style*="#5a6175"],
.section [style*="#4a5165"] { color: var(--ink-dim) !important; }

/* ----- background animato globale (aurora + grid) ----- */
.bg-fx {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(124,92,255,.10), transparent 60%),
    radial-gradient(55% 45% at 10% 30%, rgba(42,139,251,.08), transparent 60%),
    var(--bg);
}
.bg-fx::before {
  content: ""; position: absolute; inset: -20%;
  background-image:
    linear-gradient(rgba(255,255,255,.020) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.020) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 75%);
}
.bg-fx::after {
  content: ""; position: absolute; width: 70vw; height: 70vw; left: -10vw; bottom: -25vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,.10), transparent 62%);
  filter: blur(30px);
  animation: bgFloat 22s ease-in-out infinite;
}
@keyframes bgFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(12vw, -8vw) scale(1.15); }
}

/* =====================================================
   TUBELIGHT NAVBAR
   ===================================================== */
@media (min-width: 641px) {
  .nav-links {
    position: relative;
    padding: 6px; border-radius: 100px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
    gap: 4px;
  }
}
.nav-links a:not(.nav-cta) {
  position: relative; z-index: 2;
  padding: 8px 18px; border-radius: 100px;
  color: var(--ink-dim); transition: color .3s;
}
.nav-links a:not(.nav-cta)::after { display: none; }   /* via la underline vecchia */
.nav-links a.active { color: #fff; }
.nav-tube {
  position: absolute; z-index: 1; top: 6px; bottom: 6px; left: 6px; width: 0;
  border-radius: 100px;
  background: rgba(124,92,255,.16);
  border: 1px solid rgba(124,92,255,.35);
  opacity: 0;
  transition: transform .42s cubic-bezier(.4,.2,.2,1), width .42s cubic-bezier(.4,.2,.2,1), opacity .3s;
}
.nav-tube.show { opacity: 1; }
/* lampada luminosa sopra la pill attiva */
.nav-tube::before {
  content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 5px; border-radius: 100px;
  background: var(--grad);
  box-shadow: 0 0 16px 2px rgba(124,92,255,.7);
}
.nav-tube::after {
  content: ""; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 22px; border-radius: 50%;
  background: radial-gradient(ellipse at top, rgba(124,92,255,.45), transparent 70%);
  filter: blur(4px);
}

/* =====================================================
   CONTAINER SCROLL — sezione pinned: il tablet sale,
   si centra, poi scorre via (niente sfondo/card)
   ===================================================== */
.cscroll { position: relative; height: 230vh; }
.cscroll-stage {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(18px, 3vh, 40px);
  padding: 80px 28px; perspective: 1400px; overflow: clip;
}
.cscroll-head { text-align: center; will-change: transform, opacity; }
.cscroll-kicker { color: var(--ink-dim); font-size: 16px; font-weight: 500; letter-spacing: .02em; }
.cscroll-title { font-size: clamp(30px,5vw,58px); font-weight: 600; letter-spacing: -.03em; line-height: 1.04; margin-top: 8px; }
.cscroll-card {
  position: relative; transform-style: preserve-3d; will-change: transform;
  display: flex; align-items: center; justify-content: center;
  transform: rotateX(30deg) scale(.86) translateY(60px);   /* stato iniziale, guidato dallo scroll via JS */
}
.cscroll-card img {
  width: auto; max-width: min(560px, 88vw); max-height: 56vh; margin: 0 auto;
  filter: drop-shadow(0 36px 60px rgba(0,0,0,.6));
}
.cscroll-glow {
  position: absolute; inset: 8% 14%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,.4), transparent 62%);
  filter: blur(54px);
}
@media (max-width: 640px) { .cscroll { height: 190vh; } .cscroll-card img { max-height: 46vh; } }

/* =====================================================
   STATUS BADGE (al posto delle pill in alto a destra)
   ===================================================== */
.status-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .02em;
  padding: 7px 15px 7px 12px; border-radius: 100px; margin-bottom: 18px;
  color: var(--ink-dim);
  background: rgba(124,92,255,.08);
  border: 1px solid rgba(124,92,255,.26);
}
.status-badge .sb-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: #8b7bff; box-shadow: 0 0 0 0 rgba(139,123,255,.5);
  animation: sbPulse 2s ease-out infinite;
}
@keyframes sbPulse {
  0%   { box-shadow: 0 0 0 0 rgba(139,123,255,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(139,123,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,123,255,0); }
}
.section-head.center .status-badge { margin-left: auto; margin-right: auto; }
/* le vecchie pill assolute non si vedono più (sostituite via JS) */
.pill { display: none; }

/* =====================================================
   SPOTLIGHT CARDS — luce che segue il mouse
   ===================================================== */
.card, .kpi, .case-card { position: relative; overflow: hidden; }
.card::before, .kpi::before, .case-card::before {
  /* nota: .kpi::before esistente (barra top) resta; aggiungo spotlight su un layer separato */
}
.spotlight-layer {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  border-radius: inherit; opacity: 0; transition: opacity .35s;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(124,92,255,.18), transparent 60%);
}
.card:hover .spotlight-layer, .kpi:hover .spotlight-layer, .case-card:hover .spotlight-layer { opacity: 1; }
.card > *:not(.spotlight-layer),
.kpi > *:not(.spotlight-layer),
.case-card > *:not(.spotlight-layer) { position: relative; z-index: 1; }

/* =====================================================
   SCROLLING STORY — il tablet cambia mentre scorri (sez. LED)
   ===================================================== */
.story { position: relative; padding: 60px 0; }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1;
}
/* colonna sinistra: step in scroll */
.story-text { padding: 16vh 0; }
.story-step {
  min-height: 30vh; display: flex; flex-direction: column; justify-content: center;
  padding: 4vh 0 4vh 26px; border-left: 2px solid var(--line);
  opacity: .3; transition: opacity .4s, border-color .4s;
}
.story-step.active { opacity: 1; border-color: transparent; }
.story-step.active { border-image: var(--grad) 1; }
.story-step .ss-state {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 10px;
}
.story-step .ss-led { width: 11px; height: 11px; border-radius: 50%; box-shadow: 0 0 14px currentColor; }
.story-step h3 { font-size: clamp(24px,3vw,34px); font-weight: 600; letter-spacing: -.02em; }
.story-step p { color: var(--ink-dim); font-size: 16px; line-height: 1.6; margin-top: 8px; max-width: 420px; }
/* colonna destra: visual sticky */
.story-visual { position: relative; }
.story-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.story-screen {
  position: relative; width: min(440px, 92%); aspect-ratio: 4/5;
  display: grid; place-items: center;
}
.story-screen::before {
  content: ""; position: absolute; inset: 6%; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, var(--story-glow, rgba(124,92,255,.4)), transparent 62%);
  filter: blur(46px); transition: background .5s;
}
.story-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; z-index: 1;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.55));
  opacity: 0; transform: scale(.94) translateY(14px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.story-img.active { opacity: 1; transform: none; }
/* immagine per-step: usata solo su mobile (card singole) */
.ss-img { display: none; }

@media (max-width: 900px) {
  /* mobile (interactive scrolling story): il TABLET resta fisso in alto e cambia
     colore; sotto scorrono le descrizioni in parallax (una attiva alla volta). */
  .story { padding: 30px 0 0; }
  .story-grid { display: flex; flex-direction: column; gap: 0; }

  /* tablet sticky in cima, con sfondo che maschera il testo che gli scorre dietro */
  .story-visual {
    order: -1; position: sticky; top: 56px; z-index: 2; height: 46vh;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 62%, transparent 100%);
  }
  .story-sticky { position: static; height: 100%; }
  .story-screen { width: min(280px, 66%); }

  /* descrizioni che scorrono sotto */
  .story-text { order: 1; padding: 2vh 0 0; }
  .story-text > .status-badge,
  .story-text > .title { display: none; }   /* su mobile basta lo stato di ogni step */
  .story-step {
    min-height: 54vh; display: flex; flex-direction: column; justify-content: center;
    text-align: center; border-left: 0; padding: 0 18px;
    opacity: .18; transform: translateY(14px); transition: opacity .45s ease, transform .45s ease;
  }
  .story-step.active { opacity: 1; transform: none; border-image: none; }
  .story-step .ss-state { align-self: center; }
  .story-step p { margin-inline: auto; }
  .story-text::after { content: ""; display: block; height: 24vh; }  /* spazio per centrare l'ultimo */
}

/* =====================================================
   MOTION FOOTER — cinematic scroll reveal (easemize)
   aurora + grid + marquee diagonale + logo curtain-reveal
   ===================================================== */
.motion-foot {
  position: relative; overflow: hidden; padding: 70px 0 0; isolation: isolate;
  background: linear-gradient(180deg, var(--bg) 0%, #08040f 60%, #05020a 100%);
  border-top: 1px solid var(--line);
}
/* aurora glow soffusa in alto */
.mf-aurora {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 90%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(45% 60% at 30% 50%, rgba(42,139,251,.22), transparent 70%),
    radial-gradient(45% 60% at 70% 40%, rgba(124,92,255,.28), transparent 70%);
  filter: blur(30px); animation: mfAurora 16s ease-in-out infinite;
}
@keyframes mfAurora { 0%,100% { transform: translateX(-52%) scale(1); opacity: .9; } 50% { transform: translateX(-48%) scale(1.12); opacity: 1; } }
/* griglia tecnica */
.mf-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 100%, #000 30%, transparent 78%);
          mask-image: radial-gradient(120% 80% at 50% 100%, #000 30%, transparent 78%);
}
/* marquee diagonale */
.mf-marquee {
  position: relative; z-index: 1; transform: rotate(-3deg) scale(1.06);
  margin: 6px 0 40px; padding: 12px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(124,92,255,.06), rgba(42,139,251,.06));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.mf-marquee-track { display: flex; align-items: center; gap: 26px; width: max-content; animation: mfScroll 28s linear infinite; }
.mf-marquee-track span { font-size: clamp(14px,1.6vw,18px); font-weight: 600; letter-spacing: .04em; color: var(--ink-dim); white-space: nowrap; }
.mf-marquee-track span.d { color: var(--violet); }
@keyframes mfScroll { to { transform: translateX(-50%); } }

.mf-top {
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px 40px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.mf-top small { color: var(--ink-mute); font-size: 13px; line-height: 1.6; max-width: 360px; }

/* logo gigante in curtain-reveal: una tendina lo svela dal basso mentre scorre */
.mf-logo {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: flex-end;
  padding-top: 6px; overflow: hidden;
  /* sfuma il bordo inferiore così "esce" dalla pagina */
  -webkit-mask-image: linear-gradient(to bottom, #000 62%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 62%, transparent 100%);
}
.mf-logo img {
  width: min(1240px, 96vw); height: auto;
  filter: drop-shadow(0 0 70px rgba(124,92,255,.4));
  /* risalita: il logo (con la X a freccia) sale dal basso mentre scorri
     --reveal 0..1 pilotata via JS; il bordo inferiore sfumato lo fa "emergere" */
  --reveal: 0;
  transform: translateY(calc((1 - var(--reveal)) * 60% + 14%));
  opacity: calc(.25 + var(--reveal) * .75);
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .mf-logo img { --reveal: 1; transform: translateY(14%); opacity: 1; }
  .mf-marquee-track, .mf-aurora { animation: none; }
}

/* ----- sottotitoli un filo meno bold (richiesta) ----- */
.launch-sub { font-weight: 600; }
.hero .sub { font-weight: 600; }
.section .lead { font-weight: 400; }
.section .lead strong { font-weight: 600; }
.feat-line { font-weight: 500; }
.quote-band { font-weight: 600; }

/* fix: voci menu mobile a piena luminosità (la regola tubelight ha specificità maggiore) */
@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { color: var(--ink); padding: 0; border-radius: 0; }
}

/* =====================================================
   COUNTDOWN HUD INDUSTRIALE (variante) — lancia X come ago
   ===================================================== */
.hudc {
  --a: -48deg;                                  /* angolo lancia (0% = top) */
  width: min(390px, 84vw); aspect-ratio: 1; position: relative;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  filter: drop-shadow(0 0 60px rgba(124,92,255,.32));
}
/* cornici ad angolo (corner brackets) */
.hudc-cnr { position: absolute; width: 26px; height: 26px; border: 2px solid rgba(124,160,255,.5); pointer-events: none; }
.hudc-cnr.tl { top: 2%; left: 2%; border-right: 0; border-bottom: 0; }
.hudc-cnr.tr { top: 2%; right: 2%; border-left: 0; border-bottom: 0; }
.hudc-cnr.bl { bottom: 2%; left: 2%; border-right: 0; border-top: 0; }
.hudc-cnr.br { bottom: 2%; right: 2%; border-left: 0; border-top: 0; }
/* etichette telemetria */
.hudc-tag {
  position: absolute; font-size: 9.5px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(150,170,220,.62); white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.hudc-tag i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: hudcBlink 1.6s steps(1) infinite; }
@keyframes hudcBlink { 0%,60% { opacity: 1; } 61%,100% { opacity: .25; } }
.hudc-tag.t1 { top: 7%; left: 8%; }
.hudc-tag.t2 { top: 7%; right: 8%; }
.hudc-tag.t3 { bottom: 7%; right: 8%; color: rgba(124,180,255,.8); }
.hudc-tag.t4 { bottom: 7%; left: 8%; }

.hudc-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hudc-hex { fill: none; stroke: rgba(124,160,255,.22); stroke-width: 1; stroke-dasharray: 3 5; }
.hudc-ticks {
  fill: none; stroke: rgba(124,160,255,.4); stroke-width: 6;
  stroke-dasharray: 1.6 11.4; transform-origin: 100px 100px;
  animation: hudcSpin 30s linear infinite;
}
.hudc-ticks2 {
  fill: none; stroke: rgba(124,160,255,.18); stroke-width: 3;
  stroke-dasharray: .8 6.2; transform-origin: 100px 100px;
  animation: hudcSpinRev 44s linear infinite;
}
@keyframes hudcSpin { to { transform: rotate(360deg); } }
@keyframes hudcSpinRev { to { transform: rotate(-360deg); } }
.hudc-track { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 4; }
.hudc-prog {
  fill: none; stroke: url(#ringgrad); stroke-width: 5; stroke-linecap: round;
  stroke-dasharray: 527.79; stroke-dashoffset: 527.79;
  transform: rotate(-90deg); transform-origin: 100px 100px;
  animation: hudcDraw 2.2s cubic-bezier(.2,.7,.2,1) .4s forwards;
}
@keyframes hudcDraw { to { stroke-dashoffset: 147.8; } }   /* 72% */

/* lancia della X come ago indicatore */
.hudc-lance {
  display: none;   /* lancia nascosta (test) */
  position: absolute; left: 50%; bottom: 50%; height: 38%; width: auto;
  transform-origin: left bottom; transform: rotate(var(--a));
  filter: drop-shadow(0 0 6px rgba(111,208,255,1)) drop-shadow(0 0 16px rgba(42,139,251,.8)) drop-shadow(0 0 26px rgba(124,92,255,.5));
  animation: hudcLance 2.2s cubic-bezier(.2,.7,.2,1) .4s both, hudcLanceIdle 4s ease-in-out 2.8s infinite;
}
@keyframes hudcLance { from { transform: rotate(-48deg); } to { transform: rotate(211.2deg); } }
@keyframes hudcLanceIdle { 0%,100% { transform: rotate(211.2deg); } 50% { transform: rotate(214deg); } }
/* nodo luminoso alla punta dell'arco (circle SVG, coord viewBox) */
.hudc-node {
  fill: #eaf6ff; transform-origin: 100px 100px;
  animation: hudcNode 2.2s cubic-bezier(.2,.7,.2,1) .4s both, hudcNodePulse 1.8s ease-in-out 2.8s infinite;
}
@keyframes hudcNode { from { transform: rotate(0deg); } to { transform: rotate(259.2deg); } }
@keyframes hudcNodePulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }

/* scan line orizzontale dentro al cerchio */
.hudc-scan {
  position: absolute; inset: 8%; border-radius: 50%; overflow: hidden; pointer-events: none;
  -webkit-mask: radial-gradient(circle, #000 70%, transparent 72%);
          mask: radial-gradient(circle, #000 70%, transparent 72%);
}
.hudc-scan::before {
  content: ""; position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(111,208,255,.7), transparent);
  box-shadow: 0 0 12px rgba(111,208,255,.6);
  animation: hudcScan 4s ease-in-out infinite;
}
@keyframes hudcScan { 0% { top: 8%; } 50% { top: 92%; } 100% { top: 8%; } }

/* readout centrale */
.hudc-core { position: relative; z-index: 3; text-align: center; }
.hudc-mini { font-size: 10px; letter-spacing: .32em; color: rgba(150,170,220,.6); margin-bottom: 6px; }
.hudc-q { font-size: clamp(32px, 4.6vw, 48px); font-weight: 600; letter-spacing: .01em; }
.hudc-bar { width: 92px; height: 3px; border-radius: 3px; margin: 12px auto 10px; background: rgba(255,255,255,.1); overflow: hidden; }
.hudc-bar span { display: block; height: 100%; width: 0; background: var(--grad); box-shadow: 0 0 10px rgba(124,92,255,.7); animation: hudcBar 2.2s cubic-bezier(.2,.7,.2,1) .4s forwards; }
@keyframes hudcBar { to { width: 72%; } }
.hudc-l { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-dim); }

@media (prefers-reduced-motion: reduce) {
  .hudc-prog { animation: none; stroke-dashoffset: 147.8; }
  .hudc-lance { animation: none; transform: rotate(211.2deg); }
  .hudc-node { animation: none; transform: rotate(259.2deg); }
  .hudc-ticks, .hudc-ticks2, .hudc-scan::before, .hudc-bar span { animation: none; }
  .hudc-bar span { width: 72%; }
}

/* ===== media frame per foto reali (dal vecchio sito) ===== */
.device-float.photo{ filter:none; animation:none; }
.device-float.photo img{
  width:100%; aspect-ratio:4/3; object-fit:cover;
  border-radius:18px; border:1px solid var(--line-2);
  box-shadow:0 30px 70px -28px rgba(0,0,0,.7);
}
.device-float.photo.tall img{ aspect-ratio:3/4; }
/* device render su fondo chiaro (nexcut-v1) come product card */
.device-float.device-card img{
  width:100%; aspect-ratio:4/3; object-fit:contain; padding:6%;
  background:radial-gradient(120% 120% at 50% 30%, #f4f7ff 0%, #dfe6f5 70%, #cdd6ec 100%);
  border-radius:18px; border:1px solid var(--line-2);
  box-shadow:0 30px 70px -28px rgba(0,0,0,.7);
}

/* ===== team gallery (global-gallery vecchio sito) ===== */
.nf-gallery{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:38px; }
.nf-gallery figure{ position:relative; margin:0; overflow:hidden; border-radius:16px;
  border:1px solid var(--line-2); background:var(--bg-card); aspect-ratio:4/3; }
.nf-gallery figure img{ width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .6s cubic-bezier(.16,1,.3,1); }
.nf-gallery figure:hover img{ transform:scale(1.06); }
.nf-gallery figure::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 55%, rgba(6,7,13,.55) 100%); pointer-events:none; }
.nf-gallery .wide{ grid-column:span 2; aspect-ratio:auto; }
.nf-gallery .tall{ grid-row:span 2; aspect-ratio:auto; }
@media(max-width:900px){ .nf-gallery{ grid-template-columns:repeat(2,1fr); }
  .nf-gallery .wide{ grid-column:span 2; } .nf-gallery .tall{ grid-row:span 1; } }

/* ===== founder feature ===== */
.founder{ display:grid; grid-template-columns:220px 1fr; gap:44px; align-items:center; margin-top:34px; }
.founder-photo{ position:relative; }
.founder-photo img{ width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:20px;
  border:1px solid var(--line-2); box-shadow:0 36px 80px -30px rgba(0,0,0,.75); }
.founder-photo::after{ content:""; position:absolute; inset:0; border-radius:20px; pointer-events:none;
  background:linear-gradient(180deg, transparent 60%, rgba(6,7,13,.45) 100%); }
.founder .f-name{ font-size:clamp(26px,3.4vw,38px); font-weight:700; letter-spacing:-.02em; margin:0; }
.founder .f-role{ display:inline-block; margin:12px 0 20px; font-family:'Syncopate',var(--font);
  font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:#b9c4ff;
  padding:7px 14px; border:1px solid rgba(99,102,241,.4); border-radius:100px; background:rgba(59,109,255,.12); }
.founder .f-quote{ font-size:19px; line-height:1.6; color:var(--ink); font-weight:500; }
.founder .f-quote .grad-text{ font-weight:600; }
@media(max-width:760px){ .founder{ grid-template-columns:1fr; gap:26px; }
  .founder-photo{ max-width:260px; } }

/* ===== brand lockup NexFabric (X + wordmark) ===== */
.brand{ display:flex; align-items:center; gap:9px; }
.brand .brand-lockup{ height:30px; width:auto; display:block; }
.brand .brand-x{ height:24px; width:auto; display:block; }
.brand .brand-word{ font-family:var(--font); font-weight:700; font-size:21px;
  letter-spacing:-.02em; color:var(--ink); line-height:1; }
.brand .brand-word b{ font-weight:700; background:var(--grad);
  -webkit-background-clip:text; background-clip:text; color:transparent; }
.motion-foot .mf-logo img{ filter:none; }

/* =====================================================
   MOTION CALM — feedback "la grafica si muove troppo"
   Ridefinisce i keyframe con ampiezze ridotte + cicli lenti.
   (le definizioni successive con lo stesso nome vincono)
   ===================================================== */

/* float dispositivi: molto più contenuto e lento */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.device-float img, .hero-figure img { animation-duration: 9s; }

/* glow dietro i dispositivi: respiro appena percettibile */
@keyframes glowpulse {
  0%, 100% { opacity: .8;  transform: scale(1); }
  50%      { opacity: .92; transform: scale(1.025); }
}
.device-float::before, .hero-figure::before { animation-duration: 8s; }
.hero-aura { animation-duration: 11s !important; }

/* shimmer sui testi gradiente: lento e discreto (niente lampeggio) */
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.grad-text, .nexcut-mark { background-size: 160% 100%; animation-duration: 14s; }

/* glow di sfondo: deriva minima e lentissima */
@keyframes drift {
  0%, 100% { transform: translate(0,0); }
  50%      { transform: translate(10px,-10px); }
}
.glow { animation-duration: 22s; }

/* parallax scroll-driven: metà escursione */
@supports (animation-timeline: scroll()) {
  @keyframes parallaxUp { from { transform: translateY(28px); } to { transform: translateY(-28px); } }
  @keyframes heroParallax { to { transform: translateY(34px); } }
}

/* marquee ticker: scorrimento più tranquillo */
.marquee-track { animation-duration: 52s; }

/* LED pulse: glow più morbido */
@keyframes ledpulse {
  0%, 100% { box-shadow: 0 0 12px currentColor; }
  50%      { box-shadow: 0 0 20px currentColor; }
}

/* =====================================================
   v15 — FIX batch feedback (hero, header, icone, footer, ecc.)
   ===================================================== */

/* (#13) header col font del sito ovunque */
.nav, .brand, .brand-word, .nav-links a, .nav-cta { font-family: var(--font); }
.brand-word { font-weight: 700; letter-spacing: -.02em; }

/* (#7) kicker sotto il titolo hero: peso normale come gli altri paragrafi */
.launch-hero .kicker, .hero .kicker, .kicker { font-weight: 400; }

/* (#4) iconcine senza riquadro/bordo: solo l'icona */
.fi, .ico, .ki, .eco-ico, .info-line .ico,
.section.light-sec .ico, .section.light-sec .fi {
  background: transparent !important;
  border: 0 !important;
  width: auto !important; height: auto !important;
  border-radius: 0 !important; box-shadow: none !important;
  place-items: start;
}
.feat-line .fi { min-width: 24px; }
.fi svg, .section.light-sec .fi svg { width: 20px; height: 20px; }
.ico svg, .ki svg { width: 26px; height: 26px; }
.ico, .ki { margin-bottom: 14px; }
.eco-ico i, .eco-card .eco-ico i { width: 26px; height: 26px; }
.eco-ico { margin-bottom: 14px; }

/* (#5) elenco "final validation": via i cerchi → check mark pulito */
ul.ticks li { padding-left: 28px; }
ul.ticks li::before {
  content: "\2713"; background: none !important;
  width: auto; height: auto; left: 0; top: 0;
  font-size: 14px; font-weight: 700; color: var(--blue); border-radius: 0;
}

/* (#6) footer: logo X non gigantesco da desktop */
.mf-logo img { width: min(520px, 82vw); }
.mf-logo { margin-top: 6px; }
@media (max-width: 640px){ .mf-logo img { width: min(360px, 82vw); } }

/* (#3) continuità di sfondo hero → sezione sotto: niente stacco netto.
   Il .bg-fx fisso resta visibile: l'hero non ha più un colore pieno diverso. */
.hero.launch-hero {
  background:
    radial-gradient(80% 55% at 82% 22%, rgba(124,92,255,.18) 0%, transparent 60%),
    radial-gradient(70% 50% at 12% 6%, rgba(42,139,251,.12) 0%, transparent 55%),
    transparent;
}

/* (#2) HERO centrato tipo vecchio sito: una colonna, testo al centro,
   niente HUD laterale, con indicazione di scroll in fondo */
.launch-hero .launch-grid { grid-template-columns: 1fr; text-align: center; gap: 0; }
.launch-hero .launch-copy { max-width: 860px; margin: 0 auto; }
.launch-hero .ncai-lockup { display: none; }          /* (#1) niente logo ripetuto */
.launch-hero .ring-wrap { display: none; }             /* via HUD laterale */
.launch-hero .btn-row { justify-content: center; }
.launch-hero .kicker { margin-left: auto; margin-right: auto; }
.launch-pillars { margin-top: 44px; }

/* indicatore "scorri" */
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin: 46px auto 0; color: var(--ink-mute);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}
.scroll-cue .mouse {
  width: 24px; height: 38px; border: 1.5px solid var(--line-2); border-radius: 14px;
  position: relative;
}
.scroll-cue .mouse::before {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: var(--ink-dim);
  animation: cueMove 1.8s ease-in-out infinite;
}
@keyframes cueMove { 0%,100% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 70% { opacity: .4; transform: translate(-50%,9px); } }
@media (prefers-reduced-motion: reduce){ .scroll-cue .mouse::before { animation: none; } }

/* (#8/#11) page-hero (ecosystem, nexbrake, production…): vero hero con aura */
.page-hero { min-height: 62vh; display: flex; align-items: center; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(124,92,255,.16), transparent 60%),
    radial-gradient(50% 50% at 82% 20%, rgba(42,139,251,.10), transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .title { font-size: clamp(34px, 5.4vw, 66px); }

/* =====================================================
   AETHER FLOW HERO — canvas particellare interattivo
   ===================================================== */
.launch-hero { position: relative; }
.aether-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none; opacity: .9;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 40%, #000 55%, transparent 100%);
          mask-image: radial-gradient(120% 100% at 50% 40%, #000 55%, transparent 100%);
}
.launch-hero .wrap { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .aether-canvas { display: none; } }

/* =====================================================
   NETMAP — mappa rete dealer "in costruzione" (loading)
   ===================================================== */
.netmap { position: relative; margin-top: 34px; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line-2); min-height: min(72vh, 680px);
  background: radial-gradient(120% 130% at 50% -10%, #0f1430 0%, #090b16 55%, #06070d 100%); }
.netmap .nm-grid { position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,140,255,.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(124,140,255,.07) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(90% 90% at 50% 45%, #000 38%, transparent 85%);
          mask-image: radial-gradient(90% 90% at 50% 45%, #000 38%, transparent 85%); }
.netmap .nm-sweep { position: absolute; left: 50%; top: 50%; width: 160%; aspect-ratio: 1;
  transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none; mix-blend-mode: screen;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 300deg,
    rgba(42,139,251,.10) 338deg, rgba(124,92,255,.34) 358deg, transparent 360deg);
  animation: nmSweep 6s linear infinite; }
@keyframes nmSweep { to { transform: translate(-50%,-50%) rotate(360deg); } }
.netmap svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.netmap .nm-lnk { stroke: url(#nmgrad); stroke-width: 1.2; fill: none; opacity: .45;
  stroke-dasharray: 6 7; animation: nmDash 2.6s linear infinite; }
@keyframes nmDash { to { stroke-dashoffset: -26; } }
.netmap .nm-node { fill: #79b8ff; }
.netmap .nm-ring { fill: none; stroke: #6B65F6; opacity: .8; animation: nmPulse 2.6s ease-out infinite; }
.netmap .nm-node:nth-of-type(2n) { fill: #8456F4; }
.netmap .nm-ring:nth-of-type(3n) { animation-delay: .9s; }
.netmap .nm-ring:nth-of-type(3n+1) { animation-delay: 1.7s; }
@keyframes nmPulse { 0% { r: 4; opacity: .8; } 100% { r: 24; opacity: 0; } }
/* segnaposto dealer certificato: evidenziato */
.netmap .nm-lnk-hot { stroke: url(#nmgrad); opacity: .8; stroke-width: 1.6; stroke-dasharray: none; animation: none; }
.netmap .nm-node-hot { fill: #fff; filter: drop-shadow(0 0 6px rgba(148,120,255,1)); }
.netmap .nm-ring-hot { stroke: #b49bff; stroke-width: 1.4; }
.netmap .nm-halo { fill: rgba(140,110,255,.18); animation: nmHalo 2.6s ease-in-out infinite; transform-origin: 793px 348px; }
@keyframes nmHalo { 0%,100% { opacity:.35; } 50% { opacity:.75; } }
.netmap .nm-plabel { fill: #e7ebff; font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  letter-spacing: .02em; paint-order: stroke; stroke: rgba(6,7,13,.85); stroke-width: 4px; }
.netmap .nm-overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 24px;
  background: radial-gradient(55% 55% at 50% 50%, rgba(6,7,13,.4), transparent 72%); }
.netmap .nm-badge { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #cbd2e6; padding: 8px 16px;
  border: 1px solid var(--line-2); border-radius: 999px; background: rgba(10,12,22,.55); backdrop-filter: blur(6px); }
.netmap .nm-badge .d { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 10px var(--amber); animation: sbPulse 1.6s infinite; }
.netmap .nm-overlay h3 { font-size: clamp(22px, 3.4vw, 34px); font-weight: 600; letter-spacing: -.02em; margin: 18px 0 8px; }
.netmap .nm-overlay p { color: var(--ink-dim); max-width: 460px; margin: 0 auto; }
.netmap .nm-load { display: flex; gap: 7px; margin-top: 22px; }
.netmap .nm-load span { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); animation: nmLoad 1.1s ease-in-out infinite; }
.netmap .nm-load span:nth-child(2) { animation-delay: .15s; }
.netmap .nm-load span:nth-child(3) { animation-delay: .3s; }
@keyframes nmLoad { 0%,100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(-7px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .netmap .nm-sweep, .netmap .nm-lnk, .netmap .nm-ring, .netmap .nm-load span { animation: none; } }

/* NETMAP v2 — mappa del mondo reale come sfondo (mantiene lo stile) */
.netmap .nm-world { position: absolute; inset: 0; z-index: 0;
  background: url(/public/world.svg) center/contain no-repeat; opacity: .6;
  -webkit-mask-image: radial-gradient(96% 96% at 50% 45%, #000 46%, transparent 88%);
          mask-image: radial-gradient(96% 96% at 50% 45%, #000 46%, transparent 88%); }
.netmap .nm-grid { opacity: .28; }
.netmap svg.nm-nodes { z-index: 1; }

/* =====================================================
   HUB SCHEMA — diagramma: NexFabric al centro, connesso a
   macchine, sensori, operatori, digital twin, AI, dati
   ===================================================== */
.hubschema { position: relative; max-width: 720px; margin: 40px auto 0; aspect-ratio: 1 / 1; }
/* doppio alone dietro allo schema: più profondità e luce */
.hubschema::before { content:""; position:absolute; inset:6%; border-radius:50%; z-index:0;
  background: radial-gradient(circle, rgba(120,92,255,.22), rgba(42,139,251,.10) 42%, transparent 70%);
  pointer-events:none; animation: hsBreath 6s ease-in-out infinite; }
@keyframes hsBreath { 0%,100% { opacity:.8; transform:scale(1); } 50% { opacity:1; transform:scale(1.06); } }
.hubschema svg { position:relative; z-index:1; width: 100%; height: 100%; overflow: visible; }
.hs-ring { fill: none; stroke: rgba(140,120,255,.35); stroke-dasharray: 3 8; transform-origin: center;
  animation: hsSpin 40s linear infinite; filter: drop-shadow(0 0 3px rgba(120,100,255,.5)); }
@keyframes hsSpin { to { transform: rotate(360deg); } }
/* link: energia luminosa che scorre verso l'hub */
.hs-link { stroke: url(#hsg); stroke-width: 2.4; opacity: .8; stroke-linecap: round;
  stroke-dasharray: 6 10; animation: hsFlow 1.5s linear infinite;
  filter: drop-shadow(0 0 4px rgba(90,130,255,.9)); }
.hs-link:nth-of-type(2n) { animation-duration: 2.1s; }
.hs-link:nth-of-type(3n) { animation-duration: 1.8s; }
@keyframes hsFlow { to { stroke-dashoffset: -32; } }
/* secondo anello, contro-rotante */
.hs-ring2 { animation-duration: 55s; animation-direction: reverse; stroke-dasharray: 2 10; opacity: .5; }
/* impulsi dati luminosi che viaggiano verso l'hub */
.hs-pulse { fill: #dbe9ff; filter: drop-shadow(0 0 6px rgba(150,200,255,1)); }
.hs-pulse:nth-of-type(2n) { fill: #c3b4ff; }
/* hub: fondo radiale scuro + doppio anello pulsante che si espande + bagliore */
.hs-hub { fill: url(#hsHub); stroke: rgba(150,130,255,.7); stroke-width: 1.4;
  filter: drop-shadow(0 0 16px rgba(124,92,255,.75)); }
.hs-hubpulse { fill: none; stroke: url(#hsg); stroke-width: 1.8; transform-box: fill-box;
  transform-origin: center; animation: hsHubPulse 3s ease-out infinite;
  filter: drop-shadow(0 0 6px rgba(124,92,255,.8)); }
.hs-hubpulse:nth-of-type(2) { animation-delay: 1.5s; }
@keyframes hsHubPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.8); opacity: 0; } }
/* nodi satellite: gradiente ricco + bordo e alone luminoso */
.hs-node { fill: url(#hsNode); stroke: rgba(130,150,255,.55); stroke-width: 1.2;
  filter: drop-shadow(0 0 8px rgba(90,120,255,.55)); }
.hs-dot { fill: #9fd0ff; transform-origin: center; transform-box: fill-box;
  filter: drop-shadow(0 0 8px rgba(150,200,255,1)); animation: hsPulse 2.8s ease-in-out infinite; }
.hs-dot:nth-of-type(2n) { fill: #b79bff; filter: drop-shadow(0 0 8px rgba(150,110,255,1)); animation-delay: .5s; }
.hs-dot:nth-of-type(3n) { animation-delay: 1s; }
.hs-dot:nth-of-type(4n) { animation-delay: 1.5s; }
@keyframes hsPulse { 0%,100% { opacity:.6; transform: scale(1); } 50% { opacity:1; transform: scale(1.7); } }
.hubschema text { fill: var(--ink); font-family: var(--font); font-weight: 600; }
.hubschema .hs-hublabel { fill: #fff; font-weight: 700; }
.hubschema .hs-sub { display: none; }
@media (prefers-reduced-motion: reduce){ .hs-ring, .hs-link, .hs-dot, .hs-pulse, .hs-hubpulse { animation: none !important; } .hs-pulse { opacity: 0 !important; } }
@media (max-width: 560px){ .hubschema text { font-size: 15px; } }

/* ============================================================
   SCROLL FX v2 — parallax + reveal direzionali + ritmo sezioni
   scroll-driven (compositor thread), attivo anche su mobile.
   Fallback IntersectionObserver dove scroll-timeline manca (Safari).
   ============================================================ */

/* --- ritmo tra le sezioni: rompe "sfondo testo sfondo testo" --- */
.section { position: relative; }
.section + .section::before {
  content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: min(1080px, 88vw); height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  opacity: .6;
}
/* pannello alternato tenuissimo per dare profondità pari/dispari */
.section:nth-of-type(even) {
  background:
    radial-gradient(140% 90% at 50% -10%, rgba(42,139,251,.045), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.012), transparent 22%);
}

/* --- reveal direzionali (assegnati via JS con data-rv) --- */
@media (prefers-reduced-motion: no-preference) {
  .reveal-up[data-rv="l"]  { transform: translateX(-48px); }
  .reveal-up[data-rv="r"]  { transform: translateX(48px); }
  .reveal-up[data-rv="l"].in,
  .reveal-up[data-rv="r"].in { transform: none; }
}

@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {

    /* profondità: i glow di sfondo scorrono più lenti (parallax) */
    .glow {
      animation: fxGlowDrift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
      will-change: transform;
    }
    @keyframes fxGlowDrift { from { transform: translateY(-70px); } to { transform: translateY(90px); } }

    /* l'aurora di background respira con lo scroll di tutta la pagina */
    .bg-fx {
      animation: fxBgShift linear both;
      animation-timeline: scroll(root);
    }
    @keyframes fxBgShift {
      from { transform: translate3d(0,0,0) scale(1); }
      to   { transform: translate3d(0,-4%,0) scale(1.06); }
    }

    /* titoli di sezione: salgono un filo più lenti mentre entrano */
    .section-head {
      animation: fxHeadRise linear both;
      animation-timeline: view();
      animation-range: entry 4% cover 42%;
    }
    @keyframes fxHeadRise {
      from { transform: translateY(38px); opacity: 0; }
      to   { transform: none; opacity: 1; }
    }

    /* card / step / flow: pop progressivo legato allo scroll (bello anche mobile) */
    .card, .eco-card, .q-card, .steps .step, .flow .flow-step {
      animation: fxPop linear both;
      animation-timeline: view();
      animation-range: entry 2% cover 30%;
    }
    @keyframes fxPop {
      from { transform: translateY(46px) scale(.955); opacity: 0; }
      to   { transform: none; opacity: 1; }
    }
    /* stagger orizzontale dentro le griglie: scala l'inizio per colonna */
    .grid > *:nth-child(3n+2), .eco-grid > *:nth-child(2), .q-grid > *:nth-child(2n) {
      animation-range: entry 7% cover 34%;
    }
    .grid > *:nth-child(3n),  .eco-grid > *:nth-child(3) {
      animation-range: entry 12% cover 38%;
    }
    /* stagger verticale negli step numerati */
    .steps .step:nth-child(even) { animation-range: entry 7% cover 34%; }

    /* liste ticks: ogni riga entra da sinistra in sequenza */
    .ticks li {
      animation: fxTick linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 24%;
    }
    @keyframes fxTick {
      from { transform: translateX(-22px); opacity: 0; }
      to   { transform: none; opacity: 1; }
    }
    .ticks li:nth-child(2){ animation-range: entry 4% cover 26%; }
    .ticks li:nth-child(3){ animation-range: entry 8% cover 28%; }
    .ticks li:nth-child(4){ animation-range: entry 12% cover 30%; }
    .ticks li:nth-child(n+5){ animation-range: entry 16% cover 32%; }

    /* immagini nei split: micro-scale parallax mentre attraversano il viewport */
    .device-float img {
      animation: fxImgScale linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
    @keyframes fxImgScale { from { transform: scale(1.06); } to { transform: scale(.98); } }

    /* quote band: si illumina entrando */
    .quote-band {
      animation: fxQuote linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 55%;
    }
    @keyframes fxQuote {
      from { opacity: .25; filter: blur(4px); transform: translateY(24px); }
      to   { opacity: 1;  filter: none;      transform: none; }
    }
  }
}

/* la micro-scale parallax non deve combattere con l'animazione floaty:
   su chi ha scroll-timeline vince la view(), altrimenti resta floaty. */
@supports (animation-timeline: scroll()) {
  .device-float img, .split.flip .device-float img { animation-name: fxImgScale; }
}

/* --- Lenis smooth scroll (regole raccomandate) --- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

/* ============================================================
   SECTION TYPES v3 — rompe "sfondo testo sfondo testo"
   full-bleed foto, banda statistiche, sezione chiara di contrasto
   ============================================================ */

/* --- FULL-BLEED: foto a tutta larghezza con una riga sopra --- */
.fullbleed { position: relative; min-height: min(74vh, 640px); display: grid;
  place-items: center; text-align: center; overflow: clip; }
.fullbleed .fb-img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; }
.fullbleed::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(6,7,13,.86), rgba(6,7,13,.5) 42%, rgba(6,7,13,.92)); }
.fullbleed .fb-inner { position: relative; z-index: 2; max-width: 940px; padding: 0 26px; }
.fullbleed .fb-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #a9b6da;
  padding: 7px 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  background: rgba(255,255,255,.04); margin-bottom: 20px; }
.fullbleed h2 { font-size: clamp(30px, 5.2vw, 56px); font-weight: 800; letter-spacing: -.03em;
  line-height: 1.04; margin: 0; }
.fullbleed .fb-sub { color: #c3cce6; margin-top: 16px; font-size: clamp(15px,2vw,18px);
  max-width: 620px; margin-inline: auto; }
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .fullbleed .fb-img { animation: fbPan linear both; animation-timeline: view(); animation-range: cover; }
    @keyframes fbPan { from { transform: scale(1.15) translateY(-3%); } to { transform: scale(1.02) translateY(3%); } }
  }
}
@supports not (animation-timeline: scroll()) { .fullbleed .fb-img { transform: scale(1.05); } }

/* --- STAT BAND: numeri grandi, pochissime parole --- */
.statband { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.stat { text-align: center; padding: 8px; }
.stat h3 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; letter-spacing: -.03em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 0; }
.stat p { color: var(--ink-dim); font-size: 14.5px; margin-top: 10px; line-height: 1.5; }
@media (max-width: 720px) { .statband { grid-template-columns: 1fr; gap: 10px; }
  .stat { padding: 14px; border-top: 1px solid var(--line); } .stat:first-child { border-top: 0; } }

/* --- SEZIONE CHIARA: il break più forte dallo scuro uniforme --- */
.section.light-sec { background:
    radial-gradient(120% 90% at 50% -20%, #ffffff, #eef2fb 40%, #e4ebfa 100%); color: #0b1220; }
.section.light-sec::before { display: none; }
.section.light-sec .title, .section.light-sec h2, .section.light-sec h3 { color: #0b1220; }
.section.light-sec .lead { color: #45506e; }
.section.light-sec .eyebrow { color: #5a4bd6; }
.section.light-sec .stat p { color: #55618a; }
.section.light-sec .chip-row span { background: rgba(20,30,70,.05); border-color: rgba(20,30,70,.12);
  color: #26304f; }
.section.light-sec .quote-band { color: #0b1220; }

/* ============================================================
   SCROLL FX v3 — parallax/reveal esteso a TUTTE le sezioni
   (stat band, chip, full-bleed, CTA, split direzionali, immagini)
   compositor-thread; fallback IO dove scroll-timeline manca.
   ============================================================ */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {

    /* STAT BAND: i numeri fanno pop in sequenza */
    .statband .stat { animation: fxPop linear both; animation-timeline: view(); animation-range: entry 2% cover 30%; }
    .statband .stat:nth-child(2) { animation-range: entry 9% cover 35%; }
    .statband .stat:nth-child(3) { animation-range: entry 15% cover 40%; }

    /* CHIP CLOUD: chip che entrano sfalsate */
    .chip-row span { animation: fxChip linear both; animation-timeline: view(); animation-range: entry 0% cover 26%; }
    @keyframes fxChip { from { opacity: 0; transform: translateY(16px) scale(.9); } to { opacity: 1; transform: none; } }
    .chip-row span:nth-child(3n+1) { animation-range: entry 2% cover 27%; }
    .chip-row span:nth-child(3n+2) { animation-range: entry 6% cover 29%; }
    .chip-row span:nth-child(3n)   { animation-range: entry 10% cover 31%; }

    /* FULL-BLEED: il titolo sale con blur-in sopra la foto */
    .fullbleed .fb-inner {
      animation: fxBlurRise linear both;
      animation-timeline: view();
      animation-range: entry 18% cover 62%;
    }
    @keyframes fxBlurRise {
      from { opacity: 0; filter: blur(12px); transform: translateY(38px); }
      to   { opacity: 1; filter: none;      transform: none; }
    }

    /* IMMAGINI split: scale-parallax + wipe con clip-path (due anim in parallelo) */
    .device-float img {
      animation: fxImgScale linear both, fxImgClip linear both;
      animation-timeline: view(), view();
      animation-range: entry 0% exit 100%, entry 0% cover 34%;
    }
    @keyframes fxImgClip {
      from { clip-path: inset(7% 7% 7% 7% round 18px); }
      to   { clip-path: inset(0 0 0 0 round 18px); }
    }

    /* SPLIT direzionali: testo entra da sinistra/destra legato allo scroll */
    .split > [data-rv="l"]:not(.device-float) { animation: fxInL linear both; animation-timeline: view(); animation-range: entry 4% cover 34%; }
    .split > [data-rv="r"]:not(.device-float) { animation: fxInR linear both; animation-timeline: view(); animation-range: entry 4% cover 34%; }
    @keyframes fxInL { from { opacity: 0; transform: translateX(-46px); } to { opacity: 1; transform: none; } }
    @keyframes fxInR { from { opacity: 0; transform: translateX(46px); } to { opacity: 1; transform: none; } }

    /* CTA band: entra in scala */
    .cta-band { animation: fxCta linear both; animation-timeline: view(); animation-range: entry 6% cover 46%; }
    @keyframes fxCta { from { opacity: 0; transform: translateY(32px) scale(.965); } to { opacity: 1; transform: none; } }

    /* GRADIENT TEXT: shimmer sottile legato allo scroll di pagina */
    .grad-text { background-size: 170% 100%; animation: fxShimmer linear both; animation-timeline: scroll(root); }
    @keyframes fxShimmer { from { background-position: 12% 50%; } to { background-position: 88% 50%; } }

    /* status badge / eyebrow: leggero rise parallax entrando */
    .status-badge, .module-badge, .eyebrow.solid {
      animation: fxBadge linear both; animation-timeline: view(); animation-range: entry 0% cover 20%;
    }
    @keyframes fxBadge { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

    /* FLOW: la linea di connessione tra gli step "cresce" col parallax dei glow (già presente)
       — qui aggiungiamo un lift agli step (oltre al fxPop) via micro-parallax immagine assente,
       quindi lasciamo fxPop. */

    /* NETMAP / HUBSCHEMA: micro-parallax del blocco intero mentre entra */
    .netmap, .hubschema {
      animation: fxRise linear both; animation-timeline: view(); animation-range: entry 0% cover 40%;
    }
    @keyframes fxRise { from { opacity: 0; transform: translateY(48px); } to { opacity: 1; transform: none; } }
  }
}

/* --- full-bleed VIDEO: overlay più leggero per far vedere il movimento --- */
.fullbleed.fb-video::after {
  background: linear-gradient(180deg, rgba(6,7,13,.5), rgba(6,7,13,.32) 45%, rgba(6,7,13,.88));
}
.fullbleed video.fb-img { background: #06070d; }

/* ============================================================
   OVERRIDE — nascondi TUTTE le immagini prodotto + tutto DARK
   (tiene solo il ritratto founder e gli SVG diagram/brand)
   ============================================================ */
/* 1) nascondi immagini prodotto/scena (split + full-bleed + video) */
.device-float,
.fullbleed .fb-img { display: none !important; }
/* eccezione: device NexCut mostrato (come nella home), non nascosto dal redesign */
.device-float.nx-show { display: block !important; }
.device-float.nx-show img { display: block; width: 100%; max-width: 620px; margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.6)); }

/* 2) full-bleed → banda dark con solo eyebrow + titolo (nessuna immagine) */
.fullbleed { min-height: auto; padding: 88px 0; display: block; overflow: visible; }
.fullbleed::after { display: none !important; }
.fullbleed .fb-inner { position: relative; z-index: 1; max-width: 940px; margin: 0 auto; padding: 0 26px; text-align: center; }
.fullbleed h2 { color: var(--ink); }
.fullbleed .fb-eyebrow { color: var(--ink-dim); }

/* 3) split senza immagine → testo a piena larghezza, centrato nella colonna */
.bleed-split .split { grid-template-columns: 1fr !important; }
.bleed-split .split > .reveal-up { max-width: 820px; }
/* eccezione: sezione NexCut con device visibile → 2 colonne (testo | device a destra) */
.bleed-split.nx-split .split { grid-template-columns: 1fr 1fr !important; gap: 40px !important;
  align-items: center; min-height: 0; }
.bleed-split.nx-split .split > .reveal-up { max-width: 560px; }
.bleed-split.nx-split .split > .device-float.nx-show { max-width: none; }
@media (max-width: 860px){
  .bleed-split.nx-split .split { grid-template-columns: 1fr !important; }
}

/* 4) NIENTE BIANCO: le sezioni "light" diventano dark come le altre */
.section.light-sec {
  background:
    radial-gradient(130% 90% at 50% -15%, rgba(42,139,251,.06), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.015), transparent 26%) !important;
  color: var(--ink) !important;
}
.section.light-sec::before { display: block; }
.section.light-sec .title,
.section.light-sec h2,
.section.light-sec h3 { color: var(--ink) !important; }
.section.light-sec .lead,
.section.light-sec .stat p { color: var(--ink-dim) !important; }
.section.light-sec .eyebrow { color: var(--ink-dim) !important; }
.section.light-sec .chip-row span { background: rgba(255,255,255,.05) !important; border-color: var(--line-2) !important; color: var(--ink) !important; }
.section.light-sec .quote-band { color: var(--ink) !important; }

/* stat band = card DARK ovunque (annulla il vecchio bianco ereditato in light-sec) */
.statband .stat { background: var(--bg-card) !important; border: 1px solid var(--line) !important;
  border-radius: 16px !important; padding: 28px 18px !important; }
.section.light-sec .stat p, .section.light-sec .stat .lbl { color: var(--ink-dim) !important; }

/* ============================================================
   FONTS — allineati a nexfabric.ai
   DM Sans (titoli/UI) · Space Grotesk (testo) · JetBrains Mono (label) · Syncopate (marchi)
   ============================================================ */
body { font-family: var(--font); }
/* testo di lettura → Space Grotesk */
p, .lead, .kicker, .card p, .eco-card p, .q-card p, .stat p, .callout p,
.feat-line, .flow-step p, .step p, .f-quote, .nm-load, .fullbleed .fb-sub,
.founder .f-name, .mf-top small { font-family: var(--font-body); }
/* label/eyebrow/badge/chip/mono → JetBrains Mono */
.eyebrow, .fb-eyebrow, .module-badge, .status-badge, .pill, .nm-badge,
.chip-row span, .f-role, .mono, .code, .callout .k, .eco-status,
.nav-tube ~ a .badge, .stat p.lbl { font-family: var(--font-mono); }
/* titoli / UI restano DM Sans (via --font) */
.title, .launch-h1, h1, h2, h3, h4, .btn, .nav-links a, .nav-cta,
.brand, .brand-word, .card h3, .eco-card h3, .stat h3 { font-family: var(--font); }

/* ============================================================
   SITE FOOTER — brand + descrizione + prodotti + contatti
   con la X del logo in background sfumata
   ============================================================ */
.site-foot { position: relative; overflow: hidden; border-top: 1px solid var(--line);
  padding: 66px 0 40px; background: linear-gradient(180deg, transparent, rgba(42,139,251,.03)); }
.site-foot .foot-x { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(640px, 70vw); aspect-ratio: 240 / 216;
  background: url(/public/brand/X-white.svg) center/contain no-repeat;
  opacity: .09; pointer-events: none; z-index: 0; }
.site-foot .wrap { position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.4fr; gap: 44px; }
.foot-brand .foot-logo { height: 30px; width: auto; display: block; margin-bottom: 20px; }
.foot-desc { color: var(--ink-dim); max-width: 430px; font-size: 14.5px; line-height: 1.68; }
.foot-col h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute); font-family: var(--font-mono); font-weight: 600; margin: 0 0 15px; }
.foot-col a { display: block; color: var(--ink); font-size: 14.5px; margin-bottom: 9px;
  transition: color .25s; }
.foot-col a:hover { color: #cfe0ff; }
.foot-addr { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin: 0 0 12px; max-width: 290px; }
.foot-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; gap: 6px 26px; flex-wrap: wrap; align-items: center; }
.foot-bottom small { color: var(--ink-mute); font-size: 12.5px; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .site-foot .foot-x { bottom: -20%; opacity: .04; } }

/* ============================================================
   SECTION BLENDING — passaggi sfumati tra le sezioni
   (niente riga netta; i fondi si dissolvono ai bordi)
   ============================================================ */
/* via il separatore a filo */
.section + .section::before { display: none !important; }

/* fondo UNIFORME: niente più bande alternate → le sezioni non si distinguono.
   tutto poggia sul --bg del body; nessun tint per-sezione che crei stacchi */
.section:nth-of-type(even),
.section:nth-of-type(odd) { background: transparent !important; }
.section.light-sec { background: transparent !important; color: var(--ink) !important; }
.section.light-sec::before { display: none !important; }

/* nessun alone/pool ai bordi sezione: il fondo resta un campo uniforme (.bg-fx fisso) */
.section > .wrap { position: relative; z-index: 1; }

/* footer: bordo superiore sfumato invece che netto */
.site-foot { border-top: 0; }
.site-foot::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,255,.28), transparent);
}

/* ============================================================
   v18 — REDESIGN DA MOCKUP (07/2026)
   Foto AI estratte dai mockup (usate identiche) + grafica ricreata
   ============================================================ */

/* ---------- HOME HERO : rete luminosa + pilastri tricolore ---------- */
/* Foto reale NexCut a tutto schermo (full-bleed): nitida, con un layer
   sfocato SOPRA che compare solo verso i bordi — niente riquadro. */
.launch-hero .hero-net-pic{ position:absolute; inset:0; z-index:0; display:block;
  overflow:hidden; pointer-events:none; }
/* foto nitida che riempie l'intero hero */
.launch-hero .hero-net{ position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center 52%; filter:brightness(1.06) saturate(1.08); }
/* cornice sfocata: stessa foto in cover, sfocata, mascherata così da essere
   opaca SOLO ai bordi (centro trasparente) → sfuma i lati senza stacchi */
.launch-hero .hero-net-pic::after{ content:""; position:absolute; inset:0;
  background:url(/public/img/hero-nexcut-photo.webp?v=2) center 52%/cover no-repeat;
  filter:blur(22px) brightness(1.02) saturate(1.08);
  -webkit-mask-image:radial-gradient(ellipse 96% 108% at 50% 50%, transparent 46%, #000 82%);
          mask-image:radial-gradient(ellipse 96% 108% at 50% 50%, transparent 46%, #000 82%); }
@media (max-width:760px){
  /* lateralmente full: foto piena in larghezza (edge-to-edge), altezza
     naturale, sfumata solo sopra/sotto → nessun riquadro, prodotto intero */
  .launch-hero .hero-net{ top:56%; bottom:auto; left:0; right:0;
    width:100%; height:auto; object-fit:cover; translate:0 -50%;
    -webkit-mask-image:linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
            mask-image:linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%); }
  .launch-hero .hero-net-pic::after{ filter:blur(26px) brightness(.9) saturate(1.08);
    -webkit-mask-image:none; mask-image:none; z-index:-1; }
  /* ponte sfumato hero → sezione sotto: elimina la striscia netta al confine
     (la sezione è trasparente e lascia vedere il bagliore del .bg-fx fisso) */
  .launch-hero + .fullbleed{ position:relative; }
  .launch-hero + .fullbleed::before{ content:""; position:absolute; left:0; right:0; top:-1px;
    height:150px; z-index:0; pointer-events:none;
    background:linear-gradient(180deg, var(--bg) 0%, transparent 100%); }
}
.launch-hero::after{ content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    radial-gradient(90% 70% at 50% 40%, rgba(6,7,13,.06), rgba(6,7,13,.42) 100%),
    linear-gradient(180deg, rgba(6,7,13,.8) 0%, rgba(6,7,13,.42) 22%,
    rgba(6,7,13,.12) 48%, rgba(6,7,13,.55) 82%, var(--bg) 94%); }
.launch-hero .aether-canvas, .launch-hero .hero-aura, .launch-hero .hero-grid-fx{ z-index:1; opacity:.45; }
.launch-hero .wrap{ position:relative; z-index:2; }
.launch-pillars{ border-top:0; gap:24px 30px; }
.launch-pillars .pil{ font-size:clamp(17px,2vw,21px); font-weight:700; letter-spacing:-.01em;
  text-shadow:0 2px 20px rgba(0,0,0,.7); }
.launch-pillars .pil svg{ width:22px; height:22px; filter:drop-shadow(0 0 9px currentColor); }
@media (max-width:760px){
  .launch-pillars{ flex-direction:column; align-items:flex-start; width:fit-content;
    margin-inline:auto; gap:18px; }
  .launch-pillars .pil{ font-size:18px; }
}

/* ---------- TRI : panoramica 3 nodi (ricreata dal mockup) ---------- */
.tri{ position:relative; max-width:1080px; margin:26px auto 0; aspect-ratio:1200/520; z-index:2; }
.tri > svg.tri-lines{ position:absolute; inset:0; width:100%; height:100%; display:block; }
.tri .tn-c{ position:absolute; width:clamp(64px,7.6vw,94px); aspect-ratio:1; border-radius:50%;
  display:grid; place-items:center; transform:translate(-50%,-50%);
  background:radial-gradient(circle at 50% 32%, rgba(255,255,255,.05), rgba(6,8,16,.88) 72%); }
.tri .tn-c svg{ width:40%; height:40%; }
.tri .tn-c::after{ content:""; position:absolute; top:9%; right:9%; width:11px; height:11px;
  border-radius:50%; background:currentColor; box-shadow:0 0 12px currentColor; }
.tri .tn-c.r{ left:30.7%; top:30.4%; color:#ff5560; border:1.5px solid rgba(255,85,96,.7);
  box-shadow:0 0 38px -6px rgba(255,85,96,.55), inset 0 0 26px -10px rgba(255,85,96,.4); }
.tri .tn-c.b{ left:69.3%; top:28.5%; color:#3f95ff; border:1.5px solid rgba(63,149,255,.7);
  box-shadow:0 0 38px -6px rgba(63,149,255,.55), inset 0 0 26px -10px rgba(63,149,255,.4); }
.tri .tn-c.g{ left:50%; top:76.5%; color:#2fd575; border:1.5px solid rgba(47,213,117,.7);
  box-shadow:0 0 38px -6px rgba(47,213,117,.55), inset 0 0 26px -10px rgba(47,213,117,.4); }
.tri .tn-label{ position:absolute; transform:translateY(-50%); font-weight:700;
  font-size:clamp(15px,1.65vw,22px); line-height:1.3; letter-spacing:-.01em; max-width:210px;
  text-shadow:0 2px 18px rgba(0,0,0,.7); }
.tri .tn-label.r{ right:76%; top:30.4%; color:#ff6570; text-align:right; max-width:150px; }
.tri .tn-label.b{ left:76%; top:28.5%; color:#4b9bff; max-width:150px; }
.tri .tn-label.g{ left:55.6%; top:76.5%; color:#35d97e; }
/* panoramica al posto della riga pilastri (tutte le viewport) */
.tri-hero .launch-pillars{ display:none; }
@media (max-width:760px){
  .tri{ margin-top:30px; }
  .tri .tn-c{ width:clamp(46px,13.5vw,64px); }
  .tri .tn-c::after{ width:7px; height:7px; }
  .tri .tn-label{ font-size:clamp(12px,3.4vw,14px); max-width:110px; }
  .tri .tn-label.r{ right:77.5%; }
  .tri .tn-label.b{ left:77.5%; }
  .tri .tn-label.g{ left:60.5%; }
}

/* ---------- NSTATS : icona | numero grande | testo (card glow) ---------- */
.nstats{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:44px;
  position:relative; z-index:1; }
.nstat{ position:relative; display:flex; align-items:center; gap:20px; overflow:hidden;
  border-radius:26px; padding:34px 26px;
  background:linear-gradient(180deg, rgba(20,24,44,.55), rgba(10,12,24,.85));
  border:1px solid rgba(106,120,255,.32);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.02), 0 24px 60px -30px rgba(0,0,0,.8),
    0 0 44px -18px rgba(84,96,255,.32);
  transition:transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease; }
/* spotlight che segue il cursore */
.nstat::before{ content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  opacity:0; transition:opacity .3s ease; z-index:0;
  background:radial-gradient(280px circle at var(--mx,50%) var(--my,50%), rgba(140,120,255,.22), transparent 60%); }
.nstat:hover::before{ opacity:1; }
.nstat:hover{ transform:translateY(-6px);
  border-color:rgba(150,130,255,.6);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04), 0 34px 70px -28px rgba(0,0,0,.85),
    0 0 70px -14px rgba(120,110,255,.55); }
.nstat > *{ position:relative; z-index:1; }
.nstat:hover .ni{ transform:scale(1.08); transition:transform .3s cubic-bezier(.2,.7,.2,1); }
.nstat:nth-child(2){ border-color:rgba(140,100,255,.38); box-shadow:inset 0 0 0 1px rgba(255,255,255,.02), 0 24px 60px -30px rgba(0,0,0,.8), 0 0 44px -18px rgba(140,100,255,.35); }
.nstat:nth-child(3){ border-color:rgba(164,86,244,.42); box-shadow:inset 0 0 0 1px rgba(255,255,255,.02), 0 24px 60px -30px rgba(0,0,0,.8), 0 0 44px -18px rgba(164,86,244,.38); }
.nstat .ni{ flex:none; width:58px; height:58px; border-radius:50%; display:grid; place-items:center;
  background:rgba(255,255,255,.045); border:1px solid var(--line-2); color:#9fb1ff; }
.nstat:nth-child(2) .ni{ color:#b9a5ff; }
.nstat:nth-child(3) .ni{ color:#c08cff; }
.nstat .ni svg{ width:24px; height:24px; }
.nstat .ndiv{ flex:none; width:1px; align-self:stretch; background:var(--line-2); }
.nstat .nn{ flex:none; min-width:1.1ch; text-align:center; font-family:var(--font);
  font-size:clamp(46px,4.6vw,62px); font-weight:800; letter-spacing:-.04em; line-height:1;
  background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.nstat p{ color:var(--ink-dim); font-size:14.5px; line-height:1.55; margin:0; font-family:var(--font-body); }
@media (max-width:900px){
  .nstats{ grid-template-columns:1fr; gap:30px; max-width:520px; margin-inline:auto; }
  .nstat:not(:last-child)::after{ content:""; position:absolute; left:50%; bottom:-20px;
    width:9px; height:9px; border-radius:50%; transform:translate(-50%,50%);
    background:#6f7cff; box-shadow:0 0 12px #6f7cff; }
}

/* ---------- FLOW TIMELINE : nodi circolari luminosi ---------- */
.flow.tl{ position:relative; margin-top:36px; }
.flow.tl::before{ content:""; position:absolute; top:42px; left:10%; right:10%; height:1px; z-index:0;
  background:linear-gradient(90deg, rgba(96,120,255,0), rgba(96,120,255,.5) 14%,
    rgba(164,86,244,.5) 86%, rgba(164,86,244,0)); }
.flow.tl .flow-step::after{ display:none; }
.flow.tl .fico{ width:84px; height:84px; margin-bottom:22px; border-radius:50%; position:relative; z-index:1;
  background:radial-gradient(circle at 50% 32%, rgba(64,90,255,.18), rgba(9,11,22,.92) 72%);
  border:1px solid rgba(96,120,255,.5); color:#7fa5ff;
  box-shadow:0 0 30px -6px rgba(80,110,255,.45), inset 0 0 22px -8px rgba(80,110,255,.35); }
.flow.tl .fico svg{ width:32px; height:32px; }
.flow.tl .flow-step:nth-child(3) .fico{ border-color:rgba(140,100,255,.55); color:#a98bff;
  box-shadow:0 0 30px -6px rgba(140,100,255,.5), inset 0 0 22px -8px rgba(140,100,255,.4); }
.flow.tl .flow-step:nth-child(4) .fico,
.flow.tl .flow-step:nth-child(5) .fico{ border-color:rgba(164,86,244,.6); color:#c08cff;
  box-shadow:0 0 30px -6px rgba(164,86,244,.5), inset 0 0 22px -8px rgba(164,86,244,.4); }
.flow.tl .flow-step p b{ display:block; color:var(--ink); font-size:18px; margin-bottom:6px;
  font-family:var(--font); letter-spacing:-.01em; }
@media (max-width:640px){
  .flow.tl{ display:flex; flex-direction:column; align-items:stretch; gap:40px; max-width:440px; margin-inline:auto; }
  .flow.tl::before{ left:50%; right:auto; top:20px; bottom:20px; width:1px; height:auto;
    transform:translateX(-.5px);
    background:linear-gradient(180deg, rgba(96,120,255,.55), rgba(164,86,244,.6)); }
  .flow.tl .flow-step{ display:grid; grid-template-columns:minmax(0,1fr) 30px minmax(0,1fr); align-items:center;
    text-align:left; padding:0; }
  .flow.tl .fico{ grid-column:1; grid-row:1; margin:0 auto; width:78px; height:78px; }
  .flow.tl .flow-step::before{ content:""; grid-column:2; grid-row:1; width:14px; height:14px;
    margin:0 auto; border-radius:50%; background:#fff; border:4px solid #4a5cff;
    box-shadow:0 0 14px rgba(96,120,255,.9); box-sizing:border-box; }
  .flow.tl .flow-step:nth-child(n+4)::before{ border-color:#8456F4; box-shadow:0 0 14px rgba(164,86,244,.9); }
  .flow.tl .flow-step p{ grid-column:3; grid-row:1; margin:0; padding-left:10px; max-width:none; }
}

/* ---------- NEXCUT (home) : foto laser + card STATO ---------- */
/* min-height >= altezza resa del device così il centraggio verticale non lo taglia (LED inclusi) */
.nexcut-sec{ position:relative; overflow:hidden; min-height:780px; }
/* device rugged con glow già incorporato: prodotto flottante, nessuna maschera */
.nexcut-sec .nx-img{ position:absolute; top:50%; right:-2%; z-index:0;
  width:min(50vw,640px); height:auto; object-fit:contain; transform:translateY(-50%);
  pointer-events:none; }
/* dissolvenza del box sezione verso il colore base: nessun seam netto */
.nexcut-sec::before{ content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(180deg, var(--bg) 0%, rgba(6,7,13,0) 20%, rgba(6,7,13,0) 80%, var(--bg) 100%); }
.nexcut-sec .wrap{ position:relative; z-index:2; }
/* elemento REALE per il device di background (mobile) — non pseudo, così
   non viene nascosto da .section + .section::before (display:none) */
.nexcut-sec .nx-bg{ display:none; }
@media (max-width:900px){
  .nexcut-sec .nx-img{ display:none; }
  /* device grande e zoomato DIETRO il contenuto, in semitrasparenza */
  .nexcut-sec .nx-bg{ display:block; position:absolute; inset:0; z-index:0; pointer-events:none;
    background:url(/public/img/nexcut-device.webp?v=2) no-repeat center 44% / 168% auto;
    opacity:.55;
    -webkit-mask-image:linear-gradient(180deg, transparent 0, #000 14%, #000 88%, transparent 100%);
    mask-image:linear-gradient(180deg, transparent 0, #000 14%, #000 88%, transparent 100%); }
}
.nexcut-sec .nx-copy{ max-width:600px; }
.nx-chip{ display:inline-flex; align-items:center; gap:9px; font-family:var(--font-mono);
  font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  color:var(--ink-dim); padding:8px 16px; border:1px solid var(--line-2); border-radius:999px;
  margin-bottom:22px; background:rgba(6,7,13,.5); }
.nx-chip .d{ width:8px; height:8px; border-radius:50%; background:var(--violet); box-shadow:0 0 10px var(--violet); }
.status-card{ position:relative; margin-top:30px; border-radius:22px; padding:26px 26px 30px;
  background:linear-gradient(180deg, rgba(16,18,34,.86), rgba(9,10,20,.92));
  border:1px solid rgba(120,100,255,.28); box-shadow:0 30px 70px -40px rgba(0,0,0,.9); }
.status-card .k{ display:block; font-family:var(--font-mono); font-size:12px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase; color:#a98bff; margin-bottom:10px; }
.status-card > p{ font-size:clamp(17px,2vw,20px); font-weight:600; color:var(--ink);
  line-height:1.45; margin:0; max-width:330px; }
.status-card .spark{ position:absolute; top:20px; right:20px; width:150px; height:84px; opacity:.95; }
@media (max-width:560px){ .status-card .spark{ width:110px; height:62px; opacity:.6; }
  .status-card > p{ max-width:250px; } }
.steps4{ display:flex; align-items:flex-start; margin-top:32px; }
.steps4 .st{ flex:1; display:flex; flex-direction:column; align-items:center; gap:11px;
  position:relative; font-family:var(--font-mono); font-size:11px; letter-spacing:.06em;
  color:var(--ink-dim); font-weight:600; text-transform:uppercase; text-align:center; }
.steps4 .st:not(:last-child)::after{ content:""; position:absolute; top:14px;
  left:calc(50% + 22px); right:calc(-50% + 22px); height:1px; background:var(--line-2); }
.steps4 .dot{ width:29px; height:29px; border-radius:50%; display:grid; place-items:center;
  background:rgba(255,255,255,.06); border:1px solid var(--line-2); color:#cfd6ee; box-sizing:border-box; }
.steps4 .dot svg{ width:14px; height:14px; }
.steps4 .st.done .dot{ background:rgba(106,90,244,.25); border-color:rgba(140,110,255,.5); color:#cfc3ff; }
.steps4 .st.now{ color:#c08cff; }
.steps4 .st.now .dot{ background:transparent; border:2px solid #8456F4; position:relative;
  box-shadow:0 0 0 4px rgba(132,86,244,.16), 0 0 22px rgba(132,86,244,.7); }
.steps4 .st.now .dot::before{ content:""; width:11px; height:11px; border-radius:50%; background:#8456F4;
  box-shadow:0 0 10px #8456F4; }
.btn.primary.xl{ padding:17px 38px; font-size:17px; border-radius:999px; gap:12px; }
.btn.primary.xl svg{ width:20px; height:20px; }

/* ---------- HUB : un solo layer, più processi ---------- */
.hub{ position:relative; max-width:820px; margin:44px auto 0; border:1px solid var(--line);
  border-radius:28px; padding:42px 28px 32px;
  background:linear-gradient(180deg, rgba(14,16,30,.5), rgba(8,9,18,.72)); }
.hub-top{ display:grid; grid-template-columns:1fr 1fr; gap:min(16vw,170px); position:relative; z-index:1; }
.hub-card{ position:relative; border-radius:18px; padding:24px 18px; text-align:center;
  background:rgba(10,14,28,.8); border:1px solid rgba(70,130,255,.5);
  box-shadow:0 0 34px -14px rgba(70,130,255,.5); }
.hub-card.v{ border-color:rgba(150,90,255,.5); box-shadow:0 0 34px -14px rgba(150,90,255,.5); }
.hub-card .hi{ display:grid; place-items:center; width:44px; height:44px; margin:0 auto 12px; color:#6fa6ff; }
.hub-card.v .hi{ color:#b184ff; }
.hub-card .hi svg{ width:30px; height:30px; }
.hub-card h3{ font-size:19px; font-weight:700; margin:0 0 8px; letter-spacing:-.01em; }
.hub-card p{ font-size:13.5px; color:var(--ink-dim); line-height:1.5; margin:0; font-family:var(--font-body); }
.hub-card::before{ content:""; position:absolute; bottom:-30px; left:50%; width:1px; height:30px;
  background:linear-gradient(180deg, rgba(90,130,255,.7), rgba(90,130,255,.15)); }
.hub-card::after{ content:""; position:absolute; bottom:-14px; left:50%; transform:translateX(-50%);
  width:8px; height:8px; border-radius:50%; background:#5e8bff; box-shadow:0 0 12px #5e8bff; }
.hub-card.v::before{ background:linear-gradient(180deg, rgba(160,100,255,.7), rgba(160,100,255,.15)); }
.hub-card.v::after{ background:#a06bff; box-shadow:0 0 12px #a06bff; }
/* interazione cursore: lift + spotlight che segue il puntatore */
.hub-card{ transition:transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease, background .3s ease; }
.hub-card:hover{ transform:translateY(-5px); border-color:rgba(120,160,255,.85);
  box-shadow:0 0 52px -12px rgba(70,130,255,.7);
  background:radial-gradient(240px circle at var(--mx,50%) var(--my,50%), rgba(90,140,255,.2), transparent 62%), rgba(10,14,28,.8); }
.hub-card.v:hover{ border-color:rgba(180,130,255,.85); box-shadow:0 0 52px -12px rgba(150,90,255,.7);
  background:radial-gradient(240px circle at var(--mx,50%) var(--my,50%), rgba(165,115,255,.22), transparent 62%), rgba(10,14,28,.8); }
.hub-card .hi{ transition:transform .3s cubic-bezier(.2,.7,.2,1); }
.hub-card:hover .hi{ transform:scale(1.1); }
.hub-core{ position:relative; z-index:2; width:min(200px,54vw); aspect-ratio:1; margin:30px auto;
  border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:9px; background:radial-gradient(circle at 50% 30%, #151831, #090a14 72%);
  border:1px solid rgba(140,110,255,.5);
  box-shadow:0 0 60px -16px rgba(120,90,255,.5), inset 0 0 40px -20px rgba(120,90,255,.5); }
.hub-core img{ height:24px; width:auto; }
.hub-core span{ font-size:12.5px; color:var(--ink-dim); font-family:var(--font-mono); letter-spacing:.02em; }
.hub-minis{ display:grid; grid-template-columns:1fr 1fr; gap:20px 24px; max-width:540px;
  margin:26px auto 0; position:relative; z-index:1; }
.hub-mini{ position:relative; border:1px dashed rgba(255,255,255,.22); border-radius:16px;
  padding:20px 14px 18px; text-align:center; color:var(--ink-dim); background:rgba(255,255,255,.02);
  font-size:14px; font-weight:600; font-family:var(--font-mono); }
.hub-mini .hi{ display:grid; place-items:center; margin:0 auto 10px; color:#8f96b8; }
.hub-mini .hi svg{ width:22px; height:22px; }
.hub-mini::before{ content:""; position:absolute; top:-21px; left:50%; height:20px;
  border-left:1px dashed rgba(160,150,255,.35); }
.hub-mini::after{ content:""; position:absolute; top:-24px; left:50%; transform:translateX(-50%);
  width:6px; height:6px; border-radius:50%; background:#7d78c0; box-shadow:0 0 8px #7d78c0; }
.hub-mini{ transition:transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease, color .3s ease, background .3s ease; }
.hub-mini:hover{ transform:translateY(-4px); border-color:rgba(150,170,255,.6); color:var(--ink);
  background:radial-gradient(200px circle at var(--mx,50%) var(--my,50%), rgba(150,160,255,.16), transparent 62%), rgba(255,255,255,.03); }
.hub-mini .hi{ transition:transform .3s cubic-bezier(.2,.7,.2,1), color .3s ease; }
.hub-mini:hover .hi{ transform:scale(1.12); color:#aeb6ff; }
.hub-note{ text-align:center; color:var(--ink-dim); font-size:14.5px; line-height:1.6;
  margin:30px auto 0; max-width:480px; font-family:var(--font-body); }
.hub-note .hb{ color:#5e9bff; font-weight:700; }
.hub-note .hv{ color:#a97bff; font-weight:700; }
@media (max-width:620px){
  .hub{ padding:32px 16px 26px; }
  .hub-top{ gap:26px; }
  .hub-minis{ gap:16px; }
}

/* ---------- FLOOR : chip con icone + wireframe + quote card ---------- */
.floor-sec{ position:relative; overflow:hidden; }
.floor-sec .floor-bg{ position:absolute; left:0; right:0; bottom:0; width:100%; z-index:0;
  opacity:.9; pointer-events:none;
  -webkit-mask-image:linear-gradient(180deg, transparent, #000 42%, #000 88%, rgba(0,0,0,.25) 100%);
  mask-image:linear-gradient(180deg, transparent, #000 42%, #000 88%, rgba(0,0,0,.25) 100%); }
.floor-sec::before{ content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(180deg, var(--bg) 0%, rgba(6,7,13,0) 20%, rgba(6,7,13,0) 82%, var(--bg) 100%); }
.floor-sec .wrap{ position:relative; z-index:2; }
.chip-row.icons span{ display:inline-flex; align-items:center; gap:10px; padding:14px 22px;
  font-size:14px; border-radius:14px; border:1px solid rgba(130,120,255,.32);
  background:rgba(10,12,24,.74) !important; color:#c7ccdd !important;
  box-shadow:0 0 26px -14px rgba(110,100,255,.45); }
.chip-row.icons span svg{ width:17px; height:17px; color:#8ea0ff; flex:none; }
.quote-band.qcard{ display:block; max-width:660px; margin:70px auto 0; border:1px solid rgba(140,110,255,.38);
  border-radius:20px; padding:36px 32px; background:rgba(8,9,18,.68);
  box-shadow:0 0 44px -18px rgba(120,90,255,.4); text-align:center;
  font-size:clamp(19px,2.6vw,24px); line-height:1.5; }

/* ---------- FACTORY HERO : handshake ---------- */
.page-hero.vision-hero{ position:relative; overflow:hidden; text-align:left; min-height:92vh;
  display:flex; align-items:center; padding-bottom:0; }
.vision-hero .vh-img{ position:absolute; left:auto; right:0; bottom:0; width:min(72%,1060px);
  height:auto; z-index:0; display:block;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 30%, #000 94%, rgba(0,0,0,.6) 100%),
    linear-gradient(180deg, transparent 0, #000 26%, #000 80%, transparent 100%);
  -webkit-mask-composite:source-in;
  mask-image:linear-gradient(90deg, transparent 0, #000 30%, #000 94%, rgba(0,0,0,.6) 100%),
    linear-gradient(180deg, transparent 0, #000 26%, #000 80%, transparent 100%);
  mask-composite:intersect; }
.vision-hero::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:26%; z-index:1;
  pointer-events:none; background:linear-gradient(180deg, rgba(6,7,13,0), var(--bg)); }
.vision-hero .wrap{ position:relative; z-index:2; width:100%; }
.vision-hero .vh-copy{ max-width:620px; }
.vision-hero .vh-copy .lead{ margin-inline:0; }
.vision-hero .module-badge{ margin-bottom:28px; }
.vision-hero .title{ font-size:clamp(38px,5.4vw,72px); line-height:1.04; letter-spacing:-.03em; }
.vision-hero .lead{ max-width:480px; margin-top:22px; }
.vision-hero .btn-row{ margin-top:34px; justify-content:flex-start; }
.vh-chip{ position:absolute; top:190px; right:5%; z-index:1; display:inline-flex; align-items:center;
  gap:12px; padding:15px 20px; border-radius:16px; border:1px solid rgba(160,180,255,.32);
  background:rgba(10,14,30,.5); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  font-size:14px; font-weight:600; color:#dfe6ff; line-height:1.35; }
.vh-chip svg{ width:22px; height:22px; color:#9fb6ff; flex:none; }
.vh-chip small{ display:block; color:var(--ink-dim); font-size:12.5px; font-weight:500; }
@media (max-width:1024px){ .vh-chip{ display:none; } }
@media (max-width:900px){
  .vh-chip{ position:relative; top:auto; right:auto; margin-top:26px; }
  .page-hero.vision-hero{ min-height:88vh; display:flex; align-items:center; padding:116px 0 30px; }
  /* mobile: immagine DIETRO al testo, alzata e ben visibile (ok un po' di overlap) */
  .vision-hero .vh-img{ position:absolute; left:50%; right:auto; top:auto; bottom:-4%;
    transform:translateX(-50%); display:block; width:min(190%,720px); max-width:none; height:auto;
    margin:0; opacity:.85; z-index:0;
    -webkit-mask-image:linear-gradient(180deg, transparent 0, #000 16%, #000 84%, transparent 100%);
    mask-image:linear-gradient(180deg, transparent 0, #000 16%, #000 84%, transparent 100%);
    -webkit-mask-composite:source-over; mask-composite:add; }
}
/* meno aria tra hero e sezioni successive (bande solo-testo) */
.fullbleed{ padding:52px 0; }
.vision-hero + .fullbleed{ padding-top:40px; }

/* ---------- BRAINMAP : flowchart layer di intelligenza (factory) ---------- */
.bmap{ position:relative; max-width:660px; margin:44px auto 0; padding-right:58px; }
.bmap-label{ display:block; text-align:center; font-family:var(--font-mono); font-size:12.5px;
  font-weight:700; letter-spacing:.24em; color:#57b6ff; text-transform:uppercase; margin-bottom:16px; }
.bmap-in{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.bmap-in .bin{ border:1px solid rgba(80,150,255,.45); border-radius:14px; padding:16px 8px;
  text-align:center; color:#cfe0ff; background:rgba(8,12,26,.6); font-size:12.5px; line-height:1.35;
  font-family:var(--font-body); }
.bmap-in .bin svg{ width:25px; height:25px; color:#57b6ff; display:block; margin:0 auto 9px; }
.bmap-v{ width:1px; height:36px; margin:0 auto; background:rgba(120,140,255,.5); position:relative; }
.bmap-v::after{ content:""; position:absolute; left:50%; bottom:0; transform:translate(-50%,50%) rotate(45deg);
  width:8px; height:8px; background:#7d8cff; box-shadow:0 0 10px rgba(125,140,255,.8); }
.bmap-core{ border:2px solid rgba(160,80,255,.85); border-radius:20px; text-align:center;
  padding:28px 18px; background:rgba(10,8,22,.78);
  box-shadow:0 0 46px -12px rgba(150,70,255,.55), inset 0 0 30px -18px rgba(150,70,255,.55); }
.bmap-core h3{ font-size:clamp(30px,4vw,42px); margin:0 0 6px; font-weight:800; letter-spacing:-.02em; }
.bmap-core p{ margin:0; color:var(--ink-dim); font-size:15px; font-family:var(--font-body); }
.bmap-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:38px; }
.bmap-3 .b3{ position:relative; border:1px solid rgba(80,150,255,.4); border-radius:14px;
  padding:18px 10px; text-align:center; font-size:13.5px; color:#dbe4ff;
  background:rgba(8,12,26,.55); font-family:var(--font-body); }
.bmap-3 .b3 svg{ width:26px; height:26px; display:block; margin:0 auto 9px; color:#6fb0ff; }
.bmap-3 .b3:nth-child(2) svg{ color:#8f9bff; }
.bmap-3 .b3:nth-child(3) svg{ color:#b184ff; }
.bmap-3 .b3::before{ content:""; position:absolute; top:-32px; left:50%; width:1px; height:24px;
  background:rgba(120,140,255,.5); }
.bmap-3 .b3::after{ content:""; position:absolute; top:-10px; left:50%; transform:translateX(-50%);
  border:5px solid transparent; border-top-color:#7d8cff; }
.bmap-causal{ position:relative; margin-top:38px; border:1px solid rgba(90,110,255,.4);
  border-radius:18px; padding:24px 18px; text-align:center; background:rgba(8,10,24,.6); }
.bmap-causal::before{ content:""; position:absolute; top:-32px; left:50%; width:1px; height:24px;
  background:rgba(120,140,255,.5); }
.bmap-causal::after{ content:""; position:absolute; top:-10px; left:50%; transform:translateX(-50%);
  border:5px solid transparent; border-top-color:#7d8cff; }
.bmap-causal h3{ font-size:24px; margin:0 0 16px; font-weight:800; letter-spacing:-.01em; }
.bmap-cs{ display:flex; gap:8px 10px; justify-content:center; flex-wrap:wrap; align-items:center; }
.bmap-cs .c{ display:inline-flex; align-items:center; gap:8px; border:1px solid var(--line-2);
  border-radius:12px; padding:9px 12px; font-size:12.5px; color:#d6ddf5;
  background:rgba(255,255,255,.03); font-family:var(--font-body); }
.bmap-cs .n{ width:22px; height:22px; border-radius:50%; display:grid; place-items:center;
  font-size:11px; font-weight:700; color:#fff; background:#3a4cd8; border:1px solid #6f83ff; flex:none; }
.bmap-cs .ar{ color:#7d8cff; font-weight:700; }
.bmap-causal small{ display:block; margin-top:15px; color:var(--ink-dim); font-size:13px;
  font-family:var(--font-body); }
.bmap-mach{ position:relative; margin-top:38px; border:2px solid rgba(160,80,255,.8); border-radius:20px;
  padding:24px 22px; display:flex; gap:18px; align-items:center; background:rgba(10,8,22,.72);
  box-shadow:0 0 44px -14px rgba(150,70,255,.5); }
.bmap-mach::before{ content:""; position:absolute; top:-32px; left:50%; width:1px; height:24px;
  background:rgba(150,110,255,.55); }
.bmap-mach::after{ content:""; position:absolute; top:-10px; left:50%; transform:translateX(-50%);
  border:5px solid transparent; border-top-color:#a06bff; }
.bmap-mach svg{ width:40px; height:40px; color:#b184ff; flex:none; }
.bmap-mach h3{ margin:0 0 5px; font-size:22px; font-weight:800; letter-spacing:-.01em; }
.bmap-mach p{ margin:0; color:var(--ink-dim); font-size:14px; line-height:1.5; font-family:var(--font-body); }
.bmap-rail{ position:absolute; right:16px; top:24%; bottom:60px; width:0;
  border-right:2px dashed rgba(150,120,255,.5); }
.bmap-rail span{ position:absolute; top:50%; right:-11px; transform:translateY(-50%);
  writing-mode:vertical-rl; font-size:13px; color:#bda9ff; background:var(--bg); padding:12px 0;
  font-family:var(--font-body); letter-spacing:.02em; white-space:nowrap; }
.bmap-rail::before, .bmap-rail::after{ content:""; position:absolute; right:-4px;
  border:5px solid transparent; border-right-color:#a08cff; }
.bmap-rail::before{ top:-2px; transform:rotate(90deg); }
.bmap-rail::after{ bottom:-2px; transform:rotate(90deg); }
.bmap-tag{ text-align:center; margin-top:32px; font-family:var(--font-mono); font-size:14px;
  color:#9c86ff; letter-spacing:.04em; }
@media (max-width:640px){
  .bmap{ padding-right:34px; }
  .bmap-rail{ right:6px; }
  .bmap-in{ grid-template-columns:repeat(2,1fr); }
  .bmap-3{ gap:8px; }
  .bmap-3 .b3{ font-size:12px; padding:14px 6px; }
}

/* ============================================================
   FACTORY 5.0 — rifiniture (v34)
   ============================================================ */
/* PRINCIPI: card allineate allo stile del sito, layout centrato (niente buco 3+2) */
#principles .prin-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:18px; margin-top:44px; }
#principles .card{ flex:1 1 300px; max-width:360px; position:relative; overflow:hidden;
  border-radius:20px; padding:30px 26px;
  background:linear-gradient(180deg, rgba(20,24,44,.5), rgba(10,12,24,.82));
  border:1px solid rgba(106,120,255,.28);
  box-shadow:0 20px 50px -30px rgba(0,0,0,.8), 0 0 40px -22px rgba(84,96,255,.4);
  transition:transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease, background .3s ease; }
#principles .card .ico{ width:52px; height:52px; border-radius:14px; display:grid; place-items:center;
  margin:0 0 16px; color:#9fb1ff; background:linear-gradient(180deg, rgba(120,110,255,.18), rgba(120,110,255,.05));
  border:1px solid rgba(130,120,255,.32); }
#principles .card .ico svg{ width:26px; height:26px; }
#principles .card h3{ margin:0 0 8px; font-size:19px; font-weight:700; letter-spacing:-.01em; }
#principles .card p{ margin:0; color:var(--ink-dim); font-size:14.5px; line-height:1.55; }
#principles .card > *{ position:relative; z-index:1; }
#principles .card:hover{ transform:translateY(-5px); border-color:rgba(140,130,255,.7);
  box-shadow:0 30px 62px -28px rgba(0,0,0,.85), 0 0 62px -16px rgba(120,110,255,.55);
  background:radial-gradient(260px circle at var(--mx,50%) var(--my,50%), rgba(120,120,255,.16), transparent 62%),
    linear-gradient(180deg, rgba(20,24,44,.5), rgba(10,12,24,.82)); }
#principles .card:hover .ico{ transform:scale(1.08); transition:transform .3s cubic-bezier(.2,.7,.2,1); }

/* CLOSED LOOP: flow numerato al posto del muro di tick */
.loop-steps{ margin-top:24px; display:flex; flex-direction:column; }
.lstep{ position:relative; display:flex; gap:16px; align-items:flex-start; padding-bottom:22px; }
.lstep:last-child{ padding-bottom:0; }
.lstep .ln{ flex:none; width:34px; height:34px; border-radius:50%; display:grid; place-items:center;
  font-family:var(--font); font-weight:700; font-size:14px; color:#cdd6ff; position:relative; z-index:1;
  background:linear-gradient(180deg, rgba(120,110,255,.28), rgba(120,110,255,.08));
  border:1px solid rgba(140,120,255,.55); box-shadow:0 0 18px -6px rgba(130,110,255,.6); }
.lstep:not(:last-child)::before{ content:""; position:absolute; left:16px; top:34px; bottom:0; width:2px;
  background:linear-gradient(180deg, rgba(140,120,255,.55), rgba(140,120,255,.12)); }
.lstep p{ margin:0; padding-top:6px; color:var(--ink); font-size:15px; line-height:1.45;
  font-family:var(--font-body); }
.loop-quote{ margin-top:22px; font-family:var(--font); font-weight:700; font-size:16.5px; color:var(--ink);
  letter-spacing:-.01em; }

/* ============================================================
   ABOUT — banner "italian technology loved by the world"
   ============================================================ */
.roots-hero{ position:relative; overflow:visible; text-align:center; min-height:70vh; }
.roots-hero .rb-world{ position:absolute; top:50%; left:50%; transform:translate(-50%,-46%);
  width:min(1200px,134%); max-width:none; height:auto; opacity:.42; z-index:0; pointer-events:none;
  animation:rbFloat 16s ease-in-out infinite;
  -webkit-mask-image:radial-gradient(58% 58% at 50% 46%, #000 38%, transparent 82%);
  mask-image:radial-gradient(58% 58% at 50% 46%, #000 38%, transparent 82%); }
@keyframes rbFloat{ 0%,100%{ transform:translate(-50%,-46%) scale(1); } 50%{ transform:translate(-50%,-49%) scale(1.03); } }
.roots-hero .wrap{ position:relative; z-index:1; }
.roots-banner{ max-width:840px; margin:0 auto; display:flex; flex-direction:column; align-items:center; }
/* bandiera italiana come barra LED luminosa */
.rb-flag{ display:inline-flex; width:78px; height:10px; border-radius:6px; overflow:hidden; margin-bottom:24px;
  filter:saturate(1.35) brightness(1.12);
  box-shadow:0 0 18px 1px rgba(0,190,90,.4), 0 0 18px 1px rgba(225,45,55,.32),
    0 0 0 1px rgba(255,255,255,.12), inset 0 0 6px rgba(255,255,255,.35);
  animation:rbLed 2.8s ease-in-out infinite; }
.rb-flag i{ flex:1; }
.rb-flag i:nth-child(1){ background:linear-gradient(180deg,#18e884,#00a552); }
.rb-flag i:nth-child(2){ background:linear-gradient(180deg,#ffffff,#e8ebf2); }
.rb-flag i:nth-child(3){ background:linear-gradient(180deg,#ff4b56,#d81f2a); }
@keyframes rbLed{
  0%,100%{ box-shadow:0 0 18px 1px rgba(0,190,90,.4), 0 0 18px 1px rgba(225,45,55,.32),
    0 0 0 1px rgba(255,255,255,.12), inset 0 0 6px rgba(255,255,255,.35); }
  50%{ box-shadow:0 0 30px 4px rgba(0,210,100,.6), 0 0 30px 4px rgba(235,50,60,.5),
    0 0 0 1px rgba(255,255,255,.18), inset 0 0 8px rgba(255,255,255,.5); }
}
@media (prefers-reduced-motion: reduce){ .rb-flag{ animation:none; } }
.roots-banner .eyebrow{ margin-bottom:18px; }
.rb-title{ font-size:clamp(40px,6.4vw,84px); font-weight:800; line-height:1.02; letter-spacing:-.035em; margin:0;
  text-wrap:balance; }
.rb-title .grad-text{ text-shadow:0 0 50px rgba(124,92,255,.35); }
.rb-sub{ margin:24px auto 0; max-width:540px; }

/* ============================================================
   PARTNER — lista dealer certificati (sotto la mappa)
   ============================================================ */
/* stile minimal: niente box, solo righe pulite con hairline */
.dealer-list{ max-width:840px; margin:36px auto 0; display:flex; flex-direction:column; }
/* intestazione lista dealer: struttura + spazio sopra */
.dl-head{ display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:0 4px 14px; margin-top:14px; }
.dl-label{ display:inline-flex; align-items:center; gap:9px; font-family:var(--font-mono); font-size:12px;
  letter-spacing:.1em; text-transform:uppercase; color:var(--ink-dim); }
.dl-label .d{ width:7px; height:7px; border-radius:50%; background:var(--violet); box-shadow:0 0 10px var(--violet); }
.dl-count{ font-family:var(--font-mono); font-size:12px; color:#7f88b0; letter-spacing:.04em; }
/* riga "more coming soon" */
.dealer-soon{ display:flex; align-items:center; gap:18px; padding:24px 4px; border-top:1px dashed var(--line-2); }
.ds-ico{ flex:none; width:44px; height:44px; border-radius:12px; display:grid; place-items:center;
  color:#8a91a8; border:1px dashed rgba(150,140,200,.4); background:rgba(255,255,255,.015); }
.ds-ico svg{ width:20px; height:20px; }
.ds-txt{ display:flex; flex-direction:column; gap:3px; }
.ds-txt b{ font-size:15px; font-weight:600; color:var(--ink); }
.ds-txt span{ font-size:13.5px; color:var(--ink-dim); }
/* filtri dealer per paese */
.dealer-filters{ display:flex; flex-wrap:wrap; gap:10px; max-width:840px; margin:34px auto 0; }
.df-btn{ display:inline-flex; align-items:center; gap:9px; padding:9px 16px; border-radius:999px;
  font-family:var(--font); font-size:13.5px; font-weight:600; color:var(--ink-dim); cursor:pointer;
  background:rgba(255,255,255,.03); border:1px solid var(--line-2);
  transition:color .2s, border-color .2s, background .2s, box-shadow .2s; }
.df-btn:hover{ color:var(--ink); border-color:rgba(140,130,255,.5); }
.df-btn.active{ color:#fff; border-color:rgba(150,130,255,.75);
  background:rgba(120,110,255,.14); box-shadow:0 0 26px -12px rgba(120,110,255,.7); }
.df-flag{ font-size:15px; line-height:1; flex:none; }
.dl-empty{ color:var(--ink-dim); font-size:14.5px; padding:24px 4px; }
.dl-empty a{ color:#8ea0ff; }

/* card dealer in stile "contatti": header con bandiera + righe label/valore */
.dealer-card{ padding:6px 4px 8px; }
.dc-top{ display:flex; align-items:center; gap:16px; padding-bottom:20px; }
.dc-flagbox{ flex:none; display:block; line-height:0; }
.dc-flagbox .cn-flag{ width:48px; height:32px; border-radius:5px; display:block;
  box-shadow:0 3px 12px -3px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.1); }
.dc-title{ display:flex; flex-direction:column; gap:6px; }
.dc-title h3{ margin:0; font-size:17px; font-weight:600; letter-spacing:-.01em; line-height:1.25; }
.dc-tag{ display:inline-flex; align-items:center; gap:7px; font-family:var(--font-mono); font-size:11.5px;
  letter-spacing:.04em; color:#a9b2d6; text-transform:uppercase; width:fit-content; }
.dc-tag .d{ width:6px; height:6px; border-radius:50%; background:var(--violet); box-shadow:0 0 8px var(--violet); }
/* righe come .contact-info .ci */
.dc-rows .ci{ display:flex; gap:14px; align-items:flex-start; padding:16px 0; border-bottom:1px solid var(--line); }
.dc-rows .ci:last-child{ border-bottom:0; }
.dc-rows .ci .fi{ flex:0 0 42px; width:42px; height:42px; border-radius:11px; display:grid; place-items:center;
  background:rgba(255,255,255,.04); border:1px solid var(--line-2); }
.dc-rows .ci .fi i, .dc-rows .ci .fi svg{ width:19px; height:19px; color:#cbd2e6; }
.dc-rows .ci b{ display:block; font-size:15px; margin-bottom:3px; color:var(--ink); font-weight:600; }
.dc-rows .ci span{ display:block; color:var(--ink-dim); font-size:14px; line-height:1.55; }
@media(max-width:560px){ .dc-top{ gap:14px; } }

/* intro dealer (installa / assiste / distribuisce localmente) */
.dealer-intro{ max-width:840px; margin:46px auto 0; text-align:center; }
.dealer-intro h3{ margin:0 0 12px; font-size:clamp(22px,3vw,30px); font-weight:700; letter-spacing:-.02em; }
.dealer-intro p{ margin:0 auto; max-width:640px; color:var(--ink-dim); font-size:15.5px; line-height:1.6; }
.dealer-intro p b{ color:var(--ink); font-weight:600; }
.di-points{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px 26px; margin-top:22px; }
.di-points span{ display:inline-flex; align-items:center; gap:9px; font-size:13.5px; color:var(--ink-dim);
  font-family:var(--font-mono); }
.di-points svg{ width:16px; height:16px; color:#9fb1ff; }

/* BIVIO: due percorsi */
.fork-row{ display:grid; grid-template-columns:1fr auto 1fr; gap:24px; align-items:stretch;
  max-width:940px; margin:44px auto 0; }
.fork-card{ display:flex; flex-direction:column; align-items:flex-start; text-align:left;
  padding:34px 30px; border-radius:22px; border:1px solid rgba(106,120,255,.28);
  background:linear-gradient(180deg, rgba(20,24,44,.5), rgba(10,12,24,.82));
  box-shadow:0 24px 56px -32px rgba(0,0,0,.8), 0 0 46px -24px rgba(84,96,255,.4);
  transition:transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease; }
.fork-card:hover{ transform:translateY(-5px); border-color:rgba(140,130,255,.7);
  box-shadow:0 34px 66px -30px rgba(0,0,0,.85), 0 0 66px -18px rgba(120,110,255,.5); }
.fk-ico{ width:54px; height:54px; border-radius:15px; display:grid; place-items:center; margin-bottom:18px;
  color:#9fb1ff; background:linear-gradient(180deg, rgba(120,110,255,.18), rgba(120,110,255,.05));
  border:1px solid rgba(130,120,255,.32); }
.fk-ico svg{ width:26px; height:26px; }
.fork-card h3{ margin:0 0 10px; font-size:20px; font-weight:700; letter-spacing:-.01em; }
.fork-card p{ margin:0 0 16px; color:var(--ink-dim); font-size:14.5px; line-height:1.6; }
.fork-card .btn{ align-self:flex-start; margin-top:auto; }
.fork-link{ display:inline-flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600;
  color:#8ea0ff; margin:0 0 20px; transition:color .2s; }
.fork-link:hover{ color:#b9c6ff; }
.fork-link svg{ width:16px; height:16px; flex:none; }
.fork-div{ display:flex; align-items:center; justify-content:center; position:relative; }
.fork-div::before{ content:""; position:absolute; top:0; bottom:0; width:1px; left:50%;
  background:linear-gradient(180deg, transparent, var(--line-2), transparent); }
.fork-div span{ position:relative; z-index:1; font-family:var(--font-mono); font-size:12px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--ink-dim); background:var(--bg); padding:8px 4px; }
@media(max-width:760px){
  .fork-row{ grid-template-columns:1fr; gap:16px; }
  .fork-div{ padding:4px 0; }
  .fork-div::before{ top:50%; bottom:auto; left:0; right:0; width:auto; height:1px;
    background:linear-gradient(90deg, transparent, var(--line-2), transparent); }
  .fork-div span{ background:var(--bg); padding:4px 14px; }
}

/* ===== NETMAP — Shanghai più luminoso e visibile (anche mobile) ===== */
.netmap .nm-node-hot{ fill:#fff; r:5.5;
  filter: drop-shadow(0 0 7px #fff) drop-shadow(0 0 16px rgba(150,120,255,1)) drop-shadow(0 0 28px rgba(120,150,255,.85)); }
.netmap .nm-halo{ fill: rgba(150,120,255,.34); }
@keyframes nmHalo{ 0%,100%{ opacity:.5 } 50%{ opacity:.95 } }
.netmap .nm-plabel{ fill:#ffffff; font-size:15px; font-weight:700;
  stroke: rgba(6,7,13,.92); stroke-width:5px; paint-order:stroke; }
.netmap .nm-lnk-hot{ opacity:1; stroke-width:2.2; filter: drop-shadow(0 0 5px rgba(150,120,255,.9)); }
/* mobile: l'SVG si rimpicciolisce → ingrandisco il pin di Shanghai */
@media (max-width:640px){
  .netmap .nm-node-hot{ r:9; }
  .netmap .nm-halo{ r:18; }
  .netmap .nm-plabel{ font-size:26px; stroke-width:6px; }
  .netmap .nm-lnk-hot{ stroke-width:3.4; }
}

/* ===== CONTACT — card CTA verso la rete dealer/partner ===== */
.dealer-cta{ display:flex; align-items:center; gap:20px; margin-top:30px; padding:22px 26px;
  border-radius:18px; text-decoration:none; position:relative; overflow:hidden;
  background:linear-gradient(120deg, rgba(42,139,251,.10), rgba(132,86,244,.10));
  border:1px solid var(--line-2); transition:transform .25s, border-color .25s, box-shadow .25s; }
.dealer-cta:hover{ transform:translateY(-3px); border-color:rgba(132,86,244,.5);
  box-shadow:0 20px 44px -24px rgba(90,120,255,.6); }
.dealer-cta .dc-ico{ flex:none; width:52px; height:52px; display:grid; place-items:center; border-radius:14px;
  background:rgba(132,86,244,.16); border:1px solid rgba(132,86,244,.3); color:#c9d2ff; }
.dealer-cta .dc-ico svg{ width:26px; height:26px; }
.dealer-cta .dc-txt{ display:flex; flex-direction:column; gap:3px; }
.dealer-cta .dc-txt b{ color:var(--ink); font-size:16px; font-weight:600; }
.dealer-cta .dc-txt span{ color:var(--ink-dim); font-size:14px; }
.dealer-cta .dc-go{ margin-left:auto; flex:none; color:#8ea0ff; display:grid; place-items:center; transition:transform .25s,color .25s; }
.dealer-cta:hover .dc-go{ transform:translateX(4px); color:#fff; }
@media(max-width:520px){ .dealer-cta{ flex-wrap:wrap; } .dealer-cta .dc-go{ margin-left:0; } }

.cform-col{ display:flex; flex-direction:column; }
