:root {
  --amber: #f2b84b;
  --home-max: 1360px;
}

body[data-page="home"] {
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: #03050a;
}

body[data-page="home"] p {
  text-wrap: pretty;
}

.text-red { color: var(--red); }

/* Hero — full-frame threat mesh */
#hero {
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border-top: 0;
  background:
    radial-gradient(circle at 77% 48%, rgba(45, 127, 255, .08), transparent 27%),
    radial-gradient(circle at 61% 55%, rgba(255, 45, 74, .07), transparent 28%),
    #030711;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 17, .98) 0%, rgba(3, 7, 17, .84) 42%, rgba(3, 7, 17, .08) 75%, rgba(3, 7, 17, .52) 100%),
    linear-gradient(0deg, #030711 0%, transparent 18%, transparent 82%, rgba(3, 7, 17, .7) 100%);
}

#hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(112, 149, 205, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 149, 205, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 48%, #000 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .18;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.018) 3px 4px);
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 96px), var(--home-max));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 116px 0 148px;
}

.hero-copy {
  width: min(760px, 58vw);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.58);
  font: 600 11px/1.4 var(--mono);
  letter-spacing: .24em;
  text-transform: uppercase;
}

.live-pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #64f5a5;
  box-shadow: 0 0 0 5px rgba(100,245,165,.08), 0 0 16px rgba(100,245,165,.7);
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse { 50% { opacity: .38; transform: scale(.82); } }

#hero h1.hero-title {
  margin: 0;
  max-width: 840px;
  font-size: clamp(58px, 6.7vw, 108px);
  font-weight: 650;
  line-height: .91;
  letter-spacing: -.06em;
  text-align: left;
}

.hero-line {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero-line-red { color: #ff3555; }
.hero-line-blue { color: #408dff; }
.hero-line-light { color: #f3f6fb; }

.hero-lead {
  max-width: 650px;
  margin: 34px 0 36px;
  color: rgba(239, 244, 252, .7);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.6;
}

#hero .hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

#hero .btn {
  min-height: 54px;
  padding: 16px 24px;
  font-size: 11px;
  letter-spacing: .16em;
}

#hero .btn.primary {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 42px rgba(255,45,74,.22);
}

#hero .btn.ghost {
  background: rgba(5,9,19,.52);
  border-color: rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}

.hero-visual-label {
  position: absolute;
  right: 0;
  top: 23%;
  width: min(420px, 28vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.42);
  font: 600 10px/1 var(--mono);
  letter-spacing: .2em;
}

.hero-visual-state { color: #64f5a5; }

.hero-proof {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  width: min(calc(100% - 96px), var(--home-max));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.11);
}

.hero-proof-item {
  display: flex;
  align-items: baseline;
  gap: 13px;
  padding: 18px 24px 0 0;
  border-right: 1px solid rgba(255,255,255,.08);
}

.hero-proof-item + .hero-proof-item { padding-left: 24px; }
.hero-proof-item:last-child { border-right: 0; }

.hero-proof-value {
  color: #fff;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.hero-proof-label {
  color: rgba(255,255,255,.4);
  font: 500 10px/1.4 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.4);
  font: 600 9px/1 var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll span { width: 1px; height: 28px; background: linear-gradient(var(--red), var(--blue)); }

/* Services — a three-part mirror hall */
#servizi {
  padding: 140px 48px 150px;
  overflow: hidden;
  /*
  background:
    radial-gradient(circle at 16% 35%, rgba(255,45,74,.08), transparent 28%),
    radial-gradient(circle at 52% 35%, rgba(45,127,255,.07), transparent 26%),
    radial-gradient(circle at 86% 35%, rgba(242,184,75,.06), transparent 26%),
    #05070c; */
}

#servizi .section-inner { max-width: var(--home-max); }
#servizi .section-head { margin-bottom: 40px; }
#servizi .section-title { max-width: 950px; }

#servizi .services-intro {
  max-width: 800px;
  margin: 0 0 58px;
  color: rgba(255,255,255,.62);
  font-size: 19px;
  line-height: 1.65;
}

.service-theatres {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  perspective: 1600px;
}

.theatre {
  --accent: #fff;
  position: relative;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(13,17,27,.96), rgba(5,7,12,.98));
  transform-origin: center bottom;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), border-color .35s ease;
}

.theatre::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 28px var(--accent);
}

.theatre::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0 43%, rgba(255,255,255,.035) 43.2% 43.6%, transparent 44%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  mask-image: linear-gradient(#000, transparent 76%);
}

.theatre:hover { transform: translateY(-12px) rotateX(1deg); border-color: color-mix(in srgb, var(--accent) 55%, transparent); }
.theatre-red { --accent: var(--red); }
.theatre-blue { --accent: var(--blue); }
.theatre-amber { --accent: var(--amber); }

.theatre-reflection {
  position: absolute;
  z-index: 0;
  left: 8%;
  right: 8%;
  top: 39%;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 34px 9px color-mix(in srgb, var(--accent) 26%, transparent);
  opacity: .38;
}

.theatre-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.4);
  font: 600 10px/1 var(--mono);
  letter-spacing: .18em;
}

.theatre-code { color: var(--accent); }

.theatre-icon {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: 72px auto 55px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 50%;
  box-shadow: inset 0 0 34px color-mix(in srgb, var(--accent) 12%, transparent), 0 22px 60px rgba(0,0,0,.6);
  transform: rotateX(62deg) rotateZ(-12deg);
  -webkit-box-reflect: below 18px linear-gradient(transparent, rgba(0,0,0,.85));
}

.theatre-icon span {
  position: absolute;
  inset: 17%;
  border: 1px solid color-mix(in srgb, var(--accent) 56%, transparent);
  border-radius: 50%;
}

.theatre-icon span:nth-child(2) { inset: 34%; background: color-mix(in srgb, var(--accent) 22%, transparent); box-shadow: 0 0 28px color-mix(in srgb, var(--accent) 55%, transparent); }
.theatre-icon span:nth-child(3) { inset: 47%; background: var(--accent); box-shadow: 0 0 24px var(--accent); }

.theatre-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.theatre-kicker {
  margin-bottom: 14px;
  color: var(--accent);
  font: 600 10px/1.4 var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.theatre h3 {
  min-height: 100px;
  margin: 0 0 18px;
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.theatre-copy > p:not(.theatre-kicker) {
  min-height: 108px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.55;
}

.theatre-services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 23px 0 25px;
}

.theatre-services a {
  padding: 8px 9px;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.62);
  font: 500 9px/1 var(--mono);
  letter-spacing: .08em;
  transition: color .2s, border-color .2s, background .2s;
}

.theatre-services a:hover { color: #fff; border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, transparent); }

.theatre-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font: 600 10px/1 var(--mono);
  letter-spacing: .17em;
  text-transform: uppercase;
}

.theatre-link span { color: var(--accent); font-size: 16px; }

.service-bundles {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) 1.3fr;
  gap: 80px;
  margin-top: 90px;
  padding-top: 58px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.bundle-label {
  color: #64f5a5;
  font: 600 10px/1 var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.bundle-intro h3 { margin: 17px 0 20px; font-size: clamp(34px, 3.4vw, 52px); line-height: 1; letter-spacing: -.045em; }
.bundle-intro p { max-width: 500px; color: rgba(255,255,255,.58); line-height: 1.65; }

.bundle-list { border-top: 1px solid rgba(255,255,255,.13); }

.bundle-row {
  display: grid;
  grid-template-columns: 40px 1.1fr 1fr 1.2fr;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.bundle-row > span { color: rgba(255,255,255,.35); font: 600 10px/1 var(--mono); }
.bundle-row strong { font-size: 18px; }
.bundle-row em { color: rgba(255,255,255,.62); font: normal 500 10px/1.4 var(--mono); letter-spacing: .06em; }
.bundle-row small { color: rgba(255,255,255,.35); font-size: 13px; }
.bundle-row-full strong { color: #64f5a5; }

/* Scroll roadmap — adapted from the supplied ascent reference */
#operational-path { padding: 0; border-top: 1px solid rgba(255,255,255,.1); background: #020503; }
.path-scroll { position: relative; height: 400vh; }
.path-stage {
  --path-p: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100svh;
  overflow: hidden;
  padding: 36px max(48px, calc((100vw - var(--home-max)) / 2));
  background:
    radial-gradient(circle at 77% 42%, rgba(100,245,165,.12), transparent 30%),
    linear-gradient(120deg, #020503 0%, #030806 58%, #071006 100%);
}
.path-stage.is-fixed { position: fixed; top: 0; bottom: auto; }
.path-stage.is-ended { position: absolute; top: auto; bottom: 0; }

.path-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(100,245,165,.04) 1px, transparent 1px);
  background-size: 80px 100%;
  mask-image: linear-gradient(90deg, transparent, #000 38%, #000);
}

.path-pixels {
  position: absolute;
  width: 58vw;
  height: 68vh;
  right: -6vw;
  top: -9vh;
  opacity: calc(.25 + var(--path-p) * .4);
  transform: translate3d(0, calc(var(--path-p) * 54px), 0) rotate(-8deg);
  background:
    linear-gradient(90deg, rgba(100,245,165,.28) 1px, transparent 1px),
    linear-gradient(rgba(100,245,165,.28) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle at 70% 30%, #000 0%, rgba(0,0,0,.82) 30%, transparent 70%);
}

.path-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.path-header .section-eyebrow { margin: 0; }
.path-header p { color: rgba(255,255,255,.35); font: 600 10px/1 var(--mono); letter-spacing: .2em; }

.path-layout {
  position: relative;
  z-index: 2;
  height: calc(100% - 60px);
  display: grid;
  grid-template-columns: minmax(360px, .78fr) 1.25fr;
  gap: 8vw;
  align-items: center;
}

.path-rail { position: relative; height: 68vh; max-height: 650px; }
.path-line { position: absolute; left: 47%; top: 8%; bottom: 8%; width: 1px; background: rgba(255,255,255,.1); }
.path-line span { display: block; width: 100%; height: calc(var(--path-p) * 100%); background: #64f5a5; box-shadow: 0 0 14px rgba(100,245,165,.65); }

.path-node {
  position: absolute;
  z-index: 2;
  left: 47%;
  top: calc(8% + var(--path-p) * 84%);
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(100,245,165,.36);
  border-radius: 50%;
  background: #071009;
  color: #d8ffe9;
  box-shadow: 0 0 0 9px rgba(100,245,165,.035), 0 0 42px rgba(100,245,165,.15);
}

.path-node span { font-size: 28px; transform: translateY(3px); }
.path-labels { position: absolute; inset: 8% 0; display: flex; flex-direction: column; justify-content: space-between; }

.path-labels span {
  width: 42%;
  color: rgba(255,255,255,.25);
  font: 600 12px/1 var(--mono);
  text-align: right;
  letter-spacing: .1em;
  transition: color .25s, transform .25s;
}

.path-labels span.active { color: #fff; transform: translateX(-10px); }

.path-content { max-width: 700px; }
.path-chip { display: inline-flex; padding: 8px 12px; border: 1px solid rgba(100,245,165,.28); border-radius: 100px; color: #bfffd9; background: rgba(100,245,165,.055); font: 600 10px/1 var(--mono); letter-spacing: .15em; }

.path-content h2 {
  max-width: 690px;
  margin: 25px 0 18px;
  font-size: clamp(48px, 5.3vw, 78px);
  line-height: .96;
  letter-spacing: -.055em;
}

.path-content > p { max-width: 620px; color: rgba(255,255,255,.57); font-size: 18px; line-height: 1.65; }
.path-metric { display: flex; align-items: baseline; gap: 18px; margin-top: 38px; }
.path-metric strong { color: #fff; font-size: clamp(60px, 7.2vw, 108px); line-height: .85; letter-spacing: -.06em; text-shadow: 0 5px 0 rgba(255,255,255,.08); }
.path-metric span { max-width: 150px; color: rgba(255,255,255,.37); font: 600 10px/1.5 var(--mono); letter-spacing: .12em; text-transform: uppercase; }

.path-actions { display: flex; justify-content: space-between; align-items: center; gap: 28px; margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.path-actions span { color: rgba(255,255,255,.34); font: 600 10px/1 var(--mono); letter-spacing: .15em; }
.path-actions a { color: #bfffd9; font: 600 10px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.path-mobile-list { display: none; }

/* Readability and CTA refinements across the rest of the home */
body[data-page="home"] .section-title { line-height: .98; letter-spacing: -.045em; }
body[data-page="home"] .central-lead,
body[data-page="home"] .darkweb-lead,
body[data-page="home"] .phishing-lead,
body[data-page="home"] .contact-lead { line-height: 1.62; }

body[data-page="home"] #contatti {
  background: radial-gradient(circle at 84% 20%, rgba(45,127,255,.09), transparent 28%), #05070c;
}

body[data-page="home"] a:focus-visible,
body[data-page="home"] button:focus-visible,
body[data-page="home"] input:focus-visible,
body[data-page="home"] textarea:focus-visible { outline: 2px solid #64f5a5; outline-offset: 4px; }

@media (max-width: 1180px) {
  .hero-copy { width: min(680px, 64vw); }
  #hero h1.hero-title { font-size: clamp(58px, 7.4vw, 90px); }
  .service-theatres { grid-template-columns: 1fr 1fr; }
  .theatre-amber { grid-column: 1 / -1; min-height: 610px; }
  .theatre-amber .theatre-copy { max-width: 760px; }
  .theatre-amber .theatre-icon { margin-top: 50px; }
  .service-bundles { gap: 48px; }
  .bundle-row { grid-template-columns: 34px 1fr 1fr; }
  .bundle-row small { grid-column: 2 / -1; padding-bottom: 18px; }
}

@media (max-width: 820px) {
  body[data-page="home"] { font-size: 16px; }

  #hero {
    min-height: 880px;
    background: radial-gradient(circle at 50% 35%, rgba(45,127,255,.12), transparent 36%), #030711;
  }

  #hero::before {
    background: linear-gradient(0deg, #030711 0%, rgba(3,7,17,.78) 38%, rgba(3,7,17,.2) 72%, rgba(3,7,17,.5) 100%);
  }

  #hero-bg { opacity: .72; }
  .hero-grid { mask-image: linear-gradient(0deg, transparent, #000 36%, #000); opacity: .18; }
  .hero-shell { width: calc(100% - 40px); min-height: 880px; align-items: flex-end; padding: 390px 0 198px; }
  .hero-copy { width: 100%; }
  .hero-kicker { margin-bottom: 20px; font-size: 9px; letter-spacing: .16em; }

  #hero h1.hero-title {
    font-size: clamp(46px, 13.2vw, 70px);
    line-height: .94;
    letter-spacing: -.055em;
    text-shadow: 0 3px 20px #030711;
  }

  .hero-lead { margin: 24px 0 27px; font-size: 16px; line-height: 1.55; }
  #hero .hero-actions { align-items: stretch; }
  #hero .btn { justify-content: center; flex: 1 1 220px; min-height: 50px; padding: 14px 16px; font-size: 9px; }
  .hero-visual-label, .hero-scroll { display: none; }
  .hero-proof { width: calc(100% - 40px); bottom: 30px; grid-template-columns: repeat(3, 1fr); }
  .hero-proof-item { display: block; padding: 15px 8px 0 0; }
  .hero-proof-item + .hero-proof-item { padding-left: 12px; }
  .hero-proof-value { display: block; margin-bottom: 6px; font-size: 18px; }
  .hero-proof-label { display: block; font-size: 8px; line-height: 1.35; letter-spacing: .08em; }

  #servizi { padding: 96px 20px 110px; }
  #servizi .section-head { margin-bottom: 28px; }
  #servizi .services-intro { margin-bottom: 38px; font-size: 16px; }
  .service-theatres { grid-template-columns: 1fr; gap: 12px; }
  .theatre, .theatre-amber { grid-column: auto; min-height: 620px; padding: 21px; }
  .theatre:hover { transform: none; }
  .theatre-icon { width: 130px; height: 130px; margin: 56px auto 46px; }
  .theatre h3 { min-height: auto; font-size: 32px; }
  .theatre-copy > p:not(.theatre-kicker) { min-height: auto; }
  .service-bundles { grid-template-columns: 1fr; gap: 36px; margin-top: 65px; padding-top: 42px; }
  .bundle-row { grid-template-columns: 28px 1fr; gap: 10px 14px; padding: 18px 0; }
  .bundle-row em, .bundle-row small { grid-column: 2; padding: 0; }

  .path-scroll { height: auto; }
  .path-stage { position: relative; height: auto; padding: 88px 20px 100px; }
  .path-header { align-items: flex-start; }
  .path-header p { display: none; }
  .path-layout { display: none; }
  .path-pixels { width: 100vw; height: 42vh; right: -20vw; top: -8vh; opacity: .25; }
  .path-mobile-list { position: relative; z-index: 2; display: grid; gap: 12px; margin-top: 48px; }
  .path-mobile-list article { padding: 26px 22px 28px; border: 1px solid rgba(255,255,255,.1); background: rgba(3,9,6,.78); }
  .path-mobile-list article span { color: #64f5a5; font: 600 9px/1 var(--mono); letter-spacing: .15em; text-transform: uppercase; }
  .path-mobile-list h3 { margin: 15px 0 12px; font-size: 30px; line-height: 1.03; letter-spacing: -.04em; }
  .path-mobile-list p { color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.55; }
  .path-mobile-list .btn { margin-top: 18px; justify-content: center; font-size: 9px; }
}

@media (max-width: 480px) {
  #hero { min-height: 830px; }
  .hero-shell { min-height: 830px; padding-top: 330px; padding-bottom: 200px; }
  #hero h1.hero-title { font-size: clamp(42px, 12.8vw, 58px); }
  #hero .hero-actions { flex-wrap: nowrap; }
  #hero .btn { flex: 1 1 0; width: auto; padding-inline: 9px; letter-spacing: .08em; white-space: nowrap; }
  .hero-proof-label { max-width: 12ch; }
  .theatre { min-height: 590px; }
  .theatre-services a { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .live-pulse { animation: none; }
  .theatre { transition: none; }
  .path-node, .path-pixels, .path-line span { transition: none; }
}

/* 2026 home refresh — liquid hero, clearer services, dedicated mobile journey */
#hero {
  position: relative;
  min-height: 100svh;
  background: #02040a;
}

#hero::before {
  background:
    linear-gradient(90deg, rgba(2,4,10,.98) 0%, rgba(2,4,10,.83) 44%, rgba(2,4,10,.14) 73%, rgba(2,4,10,.58) 100%),
    linear-gradient(0deg, #02040a 0%, transparent 22%, transparent 78%, rgba(2,4,10,.72) 100%);
}

.hero-liquid {
  position: absolute;
  inset: -12%;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 72% 48%, rgba(255,255,255,.08), transparent 11%),
    radial-gradient(ellipse at 66% 45%, rgba(44,91,255,.15), transparent 38%),
    #02040a;
}

.hero-liquid-field {
  position: absolute;
  inset: 5% -2% -8% 30%;
  border-radius: 48% 52% 43% 57% / 61% 35% 65% 39%;
  background:
    radial-gradient(ellipse at 35% 38%, rgba(255,255,255,.52) 0 2%, rgba(151,181,255,.18) 8%, transparent 29%),
    radial-gradient(ellipse at 70% 56%, rgba(255,45,74,.34), transparent 32%),
    radial-gradient(ellipse at 42% 72%, rgba(45,127,255,.48), transparent 36%),
    linear-gradient(135deg, rgba(255,45,74,.24), rgba(114,66,255,.24) 48%, rgba(45,127,255,.38));
  filter: blur(18px) saturate(130%);
  opacity: .92;
  transform: rotate(-7deg) scale(1.05);
  box-shadow: inset 0 0 160px rgba(255,255,255,.08), 0 0 180px rgba(55,83,255,.18);
}

.hero-blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(54px);
  mix-blend-mode: screen;
  opacity: .58;
  animation: liquidDrift 16s ease-in-out infinite alternate;
}

.hero-blob-red { width: 38vw; height: 32vw; right: 22%; top: 10%; background: rgba(255,38,74,.42); }
.hero-blob-blue { width: 43vw; height: 38vw; right: -2%; bottom: 0; background: rgba(33,105,255,.48); animation-delay: -5s; }
.hero-blob-violet { width: 30vw; height: 28vw; right: 18%; bottom: 14%; background: rgba(148,65,255,.28); animation-delay: -9s; }

.hero-liquid-glint {
  position: absolute;
  width: 46vw;
  height: 76vh;
  right: 6%;
  top: 10%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  transform: rotate(-22deg);
  opacity: .52;
}

@keyframes liquidDrift {
  from { transform: translate3d(-3%, -2%, 0) scale(.94); }
  to { transform: translate3d(5%, 4%, 0) scale(1.08); }
}

.hero-noise {
  opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .72fr);
  gap: clamp(48px, 7vw, 110px);
}

.hero-copy { width: 100%; }
#hero h1.hero-title { max-width: 800px; font-size: clamp(56px, 5.85vw, 92px); }
.hero-lead { max-width: 680px; margin: 30px 0 34px; color: rgba(245,248,255,.82); }
#hero .hero-actions { padding-top: 0 !important; }
#hero .btn.ghost { background: rgba(9,13,27,.42); border-color: rgba(255,255,255,.2); backdrop-filter: blur(18px) saturate(140%); }

.hero-glass {
  position: relative;
  z-index: 3;
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 34px 64px 38px 70px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035) 52%, rgba(6,11,26,.22));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 32px 90px rgba(0,0,0,.38);
  backdrop-filter: blur(28px) saturate(145%);
  transform: rotate(1.5deg);
}

.hero-glass::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -110px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  filter: blur(32px);
}

.hero-glass-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.66);
  font: 600 10px/1 var(--mono);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-visual-state { color: #64f5a5; }
.hero-glass-core { position: relative; min-height: 292px; display: grid; place-items: center; }
.hero-glass-core img { position: relative; z-index: 2; width: min(84%, 330px); height: auto; clip-path: inset(2px); mix-blend-mode: screen; filter: drop-shadow(0 12px 30px rgba(0,0,0,.36)); }
.hero-core-orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; transform: translate(-50%,-50%) rotate(-16deg); }
.hero-core-orbit-one { width: 270px; height: 148px; }
.hero-core-orbit-two { width: 210px; height: 250px; border-color: rgba(100,245,165,.18); transform: translate(-50%,-50%) rotate(28deg); }
.hero-glass-flow { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hero-glass-flow span { padding-top: 12px; border-top: 1px solid rgba(255,255,255,.16); color: #fff; font: 600 9px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.hero-glass-flow b { display: block; margin-bottom: 5px; color: rgba(255,255,255,.55); font-weight: 500; }
.hero-proof-label { color: rgba(255,255,255,.66); }

#servizi { padding-bottom: 112px; }
#servizi .section-head { justify-content: center; text-align: center; }
#servizi .section-meta { display: none; }
#servizi .services-intro { max-width: 920px; margin: 0 auto 68px; color: #f4f7fd; font-size: clamp(19px,1.6vw,23px); line-height: 1.58; text-align: center; }

.theatre {
  min-height: 720px;
  padding: 26px;
  border-color: rgba(255,255,255,.16);
  border-radius: 28px 28px 54px 28px;
  background:
    radial-gradient(ellipse at 50% 27%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 35%),
    radial-gradient(ellipse at 94% 8%, rgba(255,255,255,.08), transparent 24%),
    linear-gradient(155deg, rgba(22,27,42,.98), rgba(6,8,15,.98) 62%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 25px 70px rgba(0,0,0,.24);
}

.theatre::before { inset: 22px auto auto 26px; width: 44px; height: 3px; border-radius: 4px; }
.theatre::after { background: linear-gradient(145deg, rgba(255,255,255,.07), transparent 34%); mask-image: none; }
.theatre-reflection { left: 19%; right: 19%; top: 35%; height: 86px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 16%, transparent); filter: blur(28px); box-shadow: none; opacity: .85; }
.theatre-top { padding-left: 58px; }

.theatre-mark {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 180px;
  margin: 62px auto 44px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  border-radius: 46% 54% 57% 43% / 50% 42% 58% 50%;
  background: linear-gradient(145deg, rgba(255,255,255,.1), color-mix(in srgb, var(--accent) 9%, transparent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 24px 55px rgba(0,0,0,.38), 0 0 55px color-mix(in srgb, var(--accent) 12%, transparent);
  backdrop-filter: blur(15px);
  transform: rotate(-3deg);
}

.theatre-blue .theatre-mark { transform: rotate(3deg); }
.theatre-amber .theatre-mark { transform: rotate(-1deg); }
.theatre-mark svg { width: 72%; height: 72%; overflow: visible; fill: none; stroke: var(--accent); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 9px color-mix(in srgb, var(--accent) 58%, transparent)); }
.theatre-mark .mark-fill { fill: color-mix(in srgb, var(--accent) 24%, transparent); stroke-width: 1.5; }
.theatre h3 { color: #fff; }
.theatre-copy > p:not(.theatre-kicker) { color: rgba(255,255,255,.78); }
.theatre-services a { color: rgba(255,255,255,.76); background: rgba(255,255,255,.025); }

.service-bundles { display: block; margin-top: 112px; padding-top: 72px; }
.bundle-intro { max-width: 820px; margin: 0 auto 50px; text-align: center; }
.bundle-intro p { max-width: 720px; margin-inline: auto; color: #f4f7fd; font-size: 18px; line-height: 1.65; }
.bundle-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; border-top: 0; }
.bundle-row { min-height: 250px; padding: 26px; display: flex; flex-direction: column; align-items: flex-start; gap: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); }
.bundle-row > span { color: #64f5a5; }
.bundle-row strong { max-width: 18ch; margin: 32px 0 15px; color: #fff; font-size: 24px; line-height: 1.08; }
.bundle-row em { margin-bottom: auto; color: rgba(255,255,255,.72); }
.bundle-row small { margin-top: 28px; color: #fff; font-size: 14px; line-height: 1.5; }
.bundle-row-full strong { color: #fff; }

#compliance { margin-top: 96px; padding-top: 144px; }
#compliance .central-lead { color: #fff; }
#compliance .central-lead strong { color: #fff; font-weight: 650; }
.path-content > p { color: rgba(255,255,255,.78); }
.path-metric span { color: rgba(255,255,255,.62); }

body[data-page="home"] .prot-card h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 14px; line-height: 1.2; }
body[data-page="home"] .phishing-feature h3 { font-weight: 600; font-size: 19px; margin-bottom: 4px; }
body[data-page="home"] .contact-form-title { font-size: 13px; font-family: var(--mono); letter-spacing: .25em; text-transform: uppercase; color: var(--mute); margin-bottom: 24px; }

@media (max-width: 1180px) {
  .hero-shell { grid-template-columns: minmax(0,1fr) 360px; gap: 38px; }
  .hero-glass { min-height: 390px; }
  .hero-glass-core { min-height: 255px; }
  .bundle-list { grid-template-columns: 1fr; }
  .bundle-row { min-height: 210px; }
  .bundle-row strong { max-width: none; }
}

@media (max-width: 820px) {
  #hero { min-height: auto; background: #02040a; }
  #hero::before { background: linear-gradient(0deg, #02040a 0%, rgba(2,4,10,.72) 56%, rgba(2,4,10,.3) 100%); }
  .hero-liquid { inset: -8% -38% 28% -30%; }
  .hero-liquid-field { inset: 0 -8% 4% -5%; opacity: .82; transform: rotate(-14deg) scale(1.08); }
  .hero-blob { filter: blur(40px); opacity: .48; }
  .hero-blob-red { width: 80vw; height: 70vw; right: 34%; top: 4%; }
  .hero-blob-blue { width: 92vw; height: 88vw; right: -12%; bottom: 3%; }
  .hero-blob-violet { width: 70vw; height: 62vw; right: 12%; bottom: 20%; }
  .hero-liquid-glint { width: 92vw; height: 50vh; right: -10%; top: 11%; }
  .hero-shell { width: calc(100% - 40px); min-height: 100svh; display: flex; flex-direction: column; align-items: stretch; gap: 34px; padding: 124px 0 40px; }
  .hero-copy { width: 100%; }
  .hero-kicker { margin-bottom: 18px; color: rgba(255,255,255,.78); }
  #hero h1.hero-title { max-width: none; font-size: clamp(43px, 12.1vw, 62px); line-height: .93; text-shadow: 0 4px 22px #02040a; }
  .hero-lead { margin: 25px 0 28px; color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.55; }
  #hero .hero-actions { flex-direction: column; align-items: stretch; }
  #hero .btn { flex: 0 0 auto; width: 100%; min-height: 52px; font-size: 10px; }
  .hero-glass { min-height: 220px; padding: 18px; border-radius: 24px 44px 26px 48px; transform: none; }
  .hero-glass-top { font-size: 8px; }
  .hero-glass-core { min-height: 125px; }
  .hero-glass-core img { width: min(72%, 250px); }
  .hero-core-orbit-one { width: 210px; height: 92px; }
  .hero-core-orbit-two { width: 120px; height: 150px; }
  .hero-glass-flow span { font-size: 7px; }
  .hero-proof { position: relative; left: auto; bottom: auto; width: calc(100% - 40px); margin: 32px auto 28px; transform: none; }
  .hero-proof-label { color: rgba(255,255,255,.7); }

  #servizi { padding-top: 104px; padding-bottom: 84px; }
  #servizi .services-intro { margin-bottom: 48px; color: #fff; font-size: 17px; line-height: 1.6; }
  .theatre, .theatre-amber { min-height: 650px; padding: 22px; border-radius: 22px 22px 42px 22px; }
  .theatre-top { padding-left: 52px; }
  .theatre::before { left: 22px; }
  .theatre-mark { width: 158px; height: 158px; margin: 54px auto 42px; }
  .theatre h3 { font-size: 31px; }
  .service-bundles { margin-top: 78px; padding-top: 52px; }
  .bundle-intro { margin-bottom: 38px; }
  .bundle-intro p { color: #fff; font-size: 16px; }
  .bundle-list { gap: 10px; }
  .bundle-row { min-height: 220px; padding: 24px; }
  .bundle-row strong { margin-top: 28px; font-size: 23px; }

  #compliance { margin-top: 72px; padding-top: 108px; }

  .path-scroll { height: auto; }
  .path-stage { position: relative; height: auto; overflow: visible; padding: 92px 20px 108px; background: radial-gradient(ellipse at 75% 10%, rgba(100,245,165,.13), transparent 30%), linear-gradient(160deg,#020503,#07110b 65%,#020503); }
  .path-stage::before, .path-pixels, .path-layout { display: none; }
  .path-header { position: relative; z-index: 4; }
  .path-mobile-list { --mobile-path-progress: .25; position: relative; z-index: 3; display: block; margin-top: 26px; }
  .path-mobile-progress { position: relative; z-index: 8; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; margin: 0 -8px 16px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px; background: rgba(2,8,5,.76); box-shadow: 0 10px 35px rgba(0,0,0,.28); backdrop-filter: blur(18px); color: #fff; font: 600 9px/1 var(--mono); letter-spacing: .13em; }
  .path-mobile-progress.is-fixed { position: fixed; top: 76px; left: 12px; right: 12px; z-index: 80; margin: 0; }
  .path-mobile-list.is-tracking::before { content: ''; display: block; height: 53px; margin-bottom: 16px; }
  .path-mobile-progress > div { height: 2px; overflow: hidden; border-radius: 3px; background: rgba(255,255,255,.14); }
  .path-mobile-progress i { display: block; width: calc(var(--mobile-path-progress) * 100%); height: 100%; border-radius: inherit; background: #64f5a5; box-shadow: 0 0 12px rgba(100,245,165,.7); transition: width .35s ease; }
  .path-mobile-progress b { color: #64f5a5; font-weight: 600; }
  .path-mobile-list article { position: relative; min-height: 66svh; margin-bottom: 16px; padding: 34px 26px 30px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(255,255,255,.13); border-radius: 28px 28px 58px 28px; background: radial-gradient(ellipse at 76% 12%, rgba(100,245,165,.15), transparent 33%), linear-gradient(150deg, rgba(255,255,255,.07), rgba(3,10,6,.94) 48%); opacity: .72; transform: scale(.965); transition: opacity .35s ease, transform .35s ease, border-color .35s ease; }
  .path-mobile-list article.is-active { opacity: 1; transform: scale(1); border-color: rgba(100,245,165,.38); }
  .path-mobile-list article > span { position: absolute; left: 26px; top: 27px; color: #64f5a5; font: 600 9px/1 var(--mono); letter-spacing: .15em; text-transform: uppercase; }
  .path-mobile-number { position: absolute; right: -5px; top: 28px; color: rgba(255,255,255,.08); font-size: 116px; font-weight: 700; line-height: .8; letter-spacing: -.09em; }
  .path-mobile-list h3 { position: relative; margin: 0 0 16px; max-width: 10ch; color: #fff; font-size: clamp(36px,11vw,52px); line-height: .96; letter-spacing: -.055em; }
  .path-mobile-list p { position: relative; margin: 0; color: rgba(255,255,255,.86); font-size: 16px; line-height: 1.58; }
  .path-mobile-list article small { position: relative; margin-top: 30px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.14); color: #fff; font: 600 10px/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
  .path-mobile-list .btn { width: 100%; min-height: 52px; margin-top: 28px; justify-content: center; font-size: 9px; }
}

@media (max-width: 480px) {
  .hero-shell { min-height: auto; padding-top: 112px; }
  #hero h1.hero-title { font-size: clamp(40px, 12.2vw, 53px); }
  #hero .hero-actions { flex-wrap: nowrap; }
  #hero .btn { padding-inline: 14px; white-space: normal; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof-item, .hero-proof-item + .hero-proof-item { display: flex; justify-content: space-between; padding: 13px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .hero-proof-label { max-width: none; text-align: right; }
  .theatre, .theatre-amber { min-height: 630px; }
  .theatre-mark { width: 144px; height: 144px; margin-top: 50px; }
  .path-mobile-list article { min-height: 68svh; padding-inline: 23px; }
  .path-mobile-list article > span { left: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob { animation: none; }
  .path-mobile-list article, .path-mobile-progress i { transition: none; }
}

/* 2026 refinement — material CTAs and feature experiences */
body[data-page="home"] .btn.primary {
  min-height: 52px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  background: linear-gradient(135deg, #ff3555 0%, #e9153b 58%, #b8072a 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 14px 36px rgba(233,21,59,.2);
  transform: translateZ(0);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}

body[data-page="home"] .btn.primary:hover {
  filter: none;
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 20px 50px rgba(233,21,59,.32), 0 0 0 6px rgba(255,53,85,.06);
}

body[data-page="home"] .btn.primary .dot { background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.1), 0 0 16px rgba(255,255,255,.75); }

body[data-page="home"] .darkweb-card,
body[data-page="home"] .phishing-cta-card {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(32px,3.4vw,48px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px 30px 64px 30px;
  background:
    radial-gradient(ellipse at 88% 8%, rgba(64,141,255,.18), transparent 34%),
    linear-gradient(150deg, rgba(21,28,43,.98), rgba(5,8,15,.98) 62%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 28px 80px rgba(0,0,0,.34);
}

body[data-page="home"] .phishing-cta-card {
  background:
    radial-gradient(ellipse at 90% 6%, rgba(255,53,85,.16), transparent 34%),
    radial-gradient(ellipse at 8% 92%, rgba(64,141,255,.1), transparent 32%),
    linear-gradient(150deg, rgba(24,25,36,.98), rgba(6,8,14,.98) 64%);
}

body[data-page="home"] .darkweb-card::before,
body[data-page="home"] .phishing-cta-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 180px;
  left: auto;
  right: -70px;
  top: -86px;
  border-radius: 50%;
  background: rgba(67,155,255,.18);
  filter: blur(28px);
}

body[data-page="home"] .phishing-cta-card::before { background: rgba(255,53,85,.16); }
body[data-page="home"] .darkweb-card::after,
body[data-page="home"] .phishing-cta-card::after { content: ''; position: absolute; z-index: 0; left: 28px; right: 28px; bottom: 0; width: auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent); }
body[data-page="home"] .darkweb-card > *,
body[data-page="home"] .phishing-cta-card > * { position: relative; z-index: 1; }
body[data-page="home"] .darkweb-card h3,
body[data-page="home"] .phishing-cta-card h3 { color: #fff; text-wrap: balance; }
body[data-page="home"] .dw-card-header { width: max-content; padding: 8px 11px; border: 1px solid rgba(100,245,165,.2); border-radius: 100px; background: rgba(100,245,165,.045); }
body[data-page="home"] .phishing-cta-row { padding: 13px 0; }

/* Cold generated visual replaces the pink glass background */
.hero-glass {
  background:
    linear-gradient(145deg, rgba(1,7,14,.18), rgba(1,7,14,.62)),
    url('assets/generated/hero-glass-cold.png') center / cover no-repeat;
  border-color: rgba(126,211,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 32px 90px rgba(0,0,0,.48), 0 0 70px rgba(33,118,185,.12);
}

.hero-glass::before { background: rgba(51,162,228,.16); }
.hero-blob-red { background: rgba(7,112,145,.3); }
.hero-blob-violet { background: rgba(26,113,176,.25); }
.hero-liquid-field {
  background:
    radial-gradient(ellipse at 35% 38%, rgba(255,255,255,.44) 0 2%, rgba(105,199,255,.16) 8%, transparent 29%),
    radial-gradient(ellipse at 70% 56%, rgba(9,110,149,.28), transparent 32%),
    radial-gradient(ellipse at 42% 72%, rgba(45,127,255,.46), transparent 36%),
    linear-gradient(135deg, rgba(4,57,78,.28), rgba(13,81,132,.26) 48%, rgba(45,127,255,.34));
}

/* Services mirror hall */
.service-bundles { margin-top: 130px; padding-top: 0; border-top: 0; }
.service-bundles::before { content: ''; display: block; width: 1px; height: 80px; margin: 0 auto 48px; background: linear-gradient(transparent, #64f5a5); }
.bundle-intro { max-width: 880px; margin-bottom: 54px; }
.bundle-intro h3 { font-size: clamp(42px,5vw,74px); }
.bundle-intro p { max-width: 760px; color: #fff; font-size: 19px; }
.service-hall-shell {
  position: relative;
  height: min(820px, 82svh);
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(120,205,255,.2);
  border-radius: 42px 42px 90px 42px;
  background: #010307;
  box-shadow: 0 42px 120px rgba(0,0,0,.55), 0 0 90px rgba(45,127,255,.08), inset 0 1px 0 rgba(255,255,255,.08);
}
.service-hall-shell::before { content: ''; position: absolute; z-index: 2; inset: 18px; pointer-events: none; border: 1px solid rgba(255,255,255,.06); border-radius: 28px 28px 72px 28px; }
.service-hall-frame { width: 100%; height: 100%; border: 0; display: block; background: #010307; }
.service-hall-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.1); }
.service-hall-links p { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin: 0; padding: 18px 20px; background: #070a10; }
.service-hall-links span { width: 100%; color: rgba(255,255,255,.42); font: 600 9px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.service-hall-links a { color: #fff; font: 500 11px/1.3 var(--mono); letter-spacing: .04em; }
.service-hall-links a:hover { color: #64f5a5; }

/* Attack surface — editorial portal */
#superficie-attacco { overflow: hidden; background: radial-gradient(ellipse at 82% 45%, rgba(45,127,255,.08), transparent 34%), #04060b; }
#superficie-attacco .section-head { margin-bottom: 62px; }
.surface-portal { position: relative; min-height: 760px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 38px 38px 96px 38px; background: #020408; box-shadow: 0 40px 100px rgba(0,0,0,.42); }
.surface-portal > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.surface-portal-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,4,8,.98) 0%, rgba(2,4,8,.88) 38%, rgba(2,4,8,.25) 68%, rgba(2,4,8,.12) 100%), linear-gradient(0deg, rgba(2,4,8,.52), transparent 48%); }
.surface-portal-copy { position: relative; z-index: 2; width: min(620px,54%); min-height: 760px; display: flex; flex-direction: column; justify-content: center; padding: 70px; }
.surface-portal-kicker { color: #ff5b72; font: 600 10px/1 var(--mono); letter-spacing: .22em; text-transform: uppercase; }
.surface-portal-copy h3 { margin: 24px 0 22px; color: #fff; font-size: clamp(42px,4.5vw,66px); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.surface-portal-copy > p { max-width: 570px; color: rgba(255,255,255,.8); font-size: 19px; line-height: 1.65; }
.surface-outcomes { display: grid; gap: 0; margin: 38px 0 34px; border-top: 1px solid rgba(255,255,255,.12); }
.surface-outcomes span { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: #fff; font-size: 15px; }
.surface-outcomes b { color: #ff5b72; font: 600 9px/1 var(--mono); letter-spacing: .12em; }
.surface-portal-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.surface-text-link { color: #fff; font: 600 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.surface-text-link:hover { color: #64f5a5; }
.surface-portal-status { position: absolute; z-index: 2; right: 34px; top: 32px; display: flex; gap: 13px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px; background: rgba(2,6,12,.54); backdrop-filter: blur(14px); font: 600 9px/1 var(--mono); letter-spacing: .13em; }
.surface-portal-status span { color: rgba(255,255,255,.55); }
.surface-portal-status b { color: #64f5a5; }

@media (max-width: 1180px) {
  .service-hall-links { grid-template-columns: 1fr; }
  .surface-portal-copy { width: 64%; padding: 54px; }
}

@media (max-width: 820px) {
  .service-hall-shell { min-height: 620px; height: 76svh; border-radius: 28px 28px 58px 28px; }
  .service-hall-links { display: none; }
  .surface-portal { min-height: 760px; border-radius: 26px 26px 58px 26px; }
  .surface-portal > img { object-position: 68% center; opacity: .76; }
  .surface-portal-shade { background: linear-gradient(0deg, rgba(2,4,8,.98) 0%, rgba(2,4,8,.9) 54%, rgba(2,4,8,.18) 100%); }
  .surface-portal-copy { width: 100%; min-height: 760px; justify-content: flex-end; padding: 34px 25px 38px; }
  .surface-portal-copy h3 { font-size: 42px; }
  .surface-portal-copy > p { font-size: 16px; }
  .surface-portal-status { right: 18px; top: 18px; }
}

/* Managed bundles — recurring offers, aligned with the FrameSec visual system */
.service-bundles {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding: 132px max(48px, calc((100vw - var(--home-max)) / 2)) 150px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 14% 5%, rgba(255,53,85,.08), transparent 28%),
    radial-gradient(ellipse at 86% 54%, rgba(64,141,255,.08), transparent 30%),
    linear-gradient(180deg, #010205, #04070c 55%, #010205);
}
.service-bundles::before { position: absolute; top: 0; left: 50%; margin: 0; transform: translateX(-50%); }
.service-bundles::after { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .2; background: linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.07) 50%, transparent 50.1%); }
.service-bundles .bundle-intro { position: relative; z-index: 2; max-width: 900px; margin: 0 0 74px; }
.service-bundles .bundle-intro p { max-width: 780px; color: rgba(255,255,255,.78); }
.managed-bundles { position: relative; z-index: 2; display: grid; gap: 72px; }
.managed-bundle-row { --bundle-accent: #fff; display: grid; grid-template-columns: 230px minmax(0,1fr); gap: 36px; align-items: start; }
.managed-bundle-red { --bundle-accent: #ff3555; }
.managed-bundle-blue { --bundle-accent: #408dff; }
.managed-bundle-gold { --bundle-accent: #f2b84b; }
.managed-row-head { position: sticky; top: 112px; display: grid; gap: 11px; padding-top: 18px; border-top: 1px solid color-mix(in srgb, var(--bundle-accent) 50%, transparent); }
.managed-row-head span { color: var(--bundle-accent); font: 600 9px/1 var(--mono); letter-spacing: .18em; }
.managed-row-head strong { color: #fff; font-size: 23px; line-height: 1.05; letter-spacing: -.035em; }
.managed-row-head small { max-width: 20ch; color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.45; }
.managed-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 15px; }
.managed-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: block;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--bundle-accent) 34%, rgba(255,255,255,.1));
  border-radius: 26px 26px 58px 26px;
  background: #05070c;
  color: #fff;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .42s cubic-bezier(.2,.8,.2,1), border-color .3s ease;
}
.managed-card::before { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(1,3,7,.06) 16%, rgba(1,3,7,.28) 45%, #020409 92%), linear-gradient(145deg, color-mix(in srgb,var(--bundle-accent) 14%,transparent), transparent 50%); }
.managed-card::after { content: ''; position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; height: 1px; background: linear-gradient(90deg,var(--bundle-accent),transparent); transform-origin: left; transform: scaleX(.25); transition: transform .42s ease; }
.managed-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .76; filter: saturate(.82) contrast(1.08); transition: transform .8s cubic-bezier(.2,.8,.2,1), opacity .4s ease; }
.managed-card-number,.managed-card-size { position: absolute; z-index: 3; top: 21px; font: 600 9px/1 var(--mono); letter-spacing: .14em; }
.managed-card-number { left: 21px; color: var(--bundle-accent); }
.managed-card-size { right: 21px; color: rgba(255,255,255,.65); }
.managed-card-copy { position: absolute; z-index: 3; left: 23px; right: 23px; bottom: 30px; display: grid; gap: 9px; }
.managed-card-copy strong { font-size: clamp(31px,2.4vw,42px); line-height: .92; letter-spacing: -.055em; }
.managed-card-copy small { max-width: 24ch; color: rgba(255,255,255,.77); font-size: 14px; line-height: 1.4; }
.managed-card-copy i { margin-top: 7px; color: var(--bundle-accent); font: normal 600 8px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; opacity: .72; }
.managed-card:hover,.managed-card:focus-visible { transform: translateY(-8px); border-color: color-mix(in srgb,var(--bundle-accent) 72%,white 8%); outline: none; }
.managed-card:hover img,.managed-card:focus-visible img { transform: scale(1.055); opacity: .9; }
.managed-card:hover::after,.managed-card:focus-visible::after { transform: scaleX(1); }

.bundle-modal { inset: 0; width: min(720px, calc(100% - 40px)); max-height: min(780px, calc(100svh - 40px)); margin: auto; padding: 0; border: 1px solid rgba(255,255,255,.17); border-radius: 30px 30px 70px 30px; overflow: auto; background: #070a10; color: #fff; box-shadow: 0 44px 140px rgba(0,0,0,.72); }
.bundle-modal::backdrop { background: rgba(0,2,6,.78); backdrop-filter: blur(15px) saturate(80%); }
.bundle-modal-panel { position: relative; padding: 48px; background: radial-gradient(ellipse at 92% 4%,rgba(64,141,255,.15),transparent 32%), linear-gradient(145deg,rgba(255,255,255,.045),transparent); }
.bundle-modal-close { position: absolute; right: 20px; top: 20px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: rgba(255,255,255,.04); color: #fff; font: 300 26px/1 sans-serif; cursor: pointer; }
.bundle-modal-close:hover,.bundle-modal-close:focus-visible { border-color: #fff; outline: none; }
.bundle-modal-category { color: #64f5a5; font: 600 9px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.bundle-modal h2 { margin: 20px 0 12px; font-size: clamp(52px,7vw,82px); line-height: .86; letter-spacing: -.07em; }
.bundle-modal-promise { max-width: 570px; color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.5; }
.bundle-modal-meta { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin: 32px 0; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(255,255,255,.1); }
.bundle-modal-meta span { display: grid; gap: 8px; padding: 18px; background: #080b12; }
.bundle-modal-meta small { color: rgba(255,255,255,.4); font: 600 8px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.bundle-modal-meta strong { font-size: 15px; line-height: 1.35; }
.bundle-modal ul { display: grid; gap: 0; margin: 0 0 34px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.11); }
.bundle-modal li { position: relative; padding: 15px 8px 15px 30px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.82); font-size: 15px; }
.bundle-modal li::before { content: '↗'; position: absolute; left: 4px; color: #64f5a5; }
.bundle-modal-cta { width: 100%; justify-content: center; }
.bundle-modal-open { overflow: hidden; }

@media (max-width: 1180px) {
  .managed-bundle-row { grid-template-columns: 1fr; gap: 22px; }
  .managed-row-head { position: static; grid-template-columns: auto 1fr; align-items: baseline; }
  .managed-row-head small { grid-column: 2; max-width: none; }
}

@media (max-width: 820px) {
  .service-bundles { margin-inline: -20px; padding: 110px 20px; }
  .managed-card-grid { grid-template-columns: 1fr; }
  .managed-card { min-height: 390px; }
  .bundle-modal-panel { padding: 40px 22px 25px; }
  .bundle-modal-meta { grid-template-columns: 1fr; }
}

/* 2026 final art direction — black continuity, grounded imagery and softer CTAs */
body[data-page="home"] section:not(#hero) { border-top: 0; }

#servizi {
  background:
    radial-gradient(ellipse at 14% 24%, rgba(255,53,85,.075), transparent 29%),
    radial-gradient(ellipse at 82% 34%, rgba(64,141,255,.065), transparent 32%),
    linear-gradient(180deg, #03050a 0%, #05070c 18%, #05070c 84%, #020306 100%);
}

.hero-glass {
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,.045) 50%, transparent 50.3%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 44%, rgba(255,53,85,.12), transparent 23%),
    radial-gradient(ellipse at 70% 58%, rgba(64,141,255,.08), transparent 30%),
    linear-gradient(155deg, #0a0d12, #010205 66%);
  background-size: auto, 32px 32px, 32px 32px, auto, auto, auto;
  border-color: rgba(255,255,255,.17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 32px 90px rgba(0,0,0,.58), 0 0 80px rgba(255,53,85,.045);
}

.hero-glass::before {
  width: 180px;
  height: 180px;
  right: -60px;
  top: -70px;
  background: rgba(255,53,85,.1);
}

.hero-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0 44%, rgba(100,245,165,.075) 49.7%, rgba(100,245,165,.16) 50%, transparent 50.4% 100%);
  background-size: 100% 210%;
  animation: heroGlassScan 7s linear infinite;
  opacity: .62;
}

@keyframes heroGlassScan { to { background-position: 0 210%; } }
.hero-glass-core::before { content: ''; position: absolute; inset: 18% 13%; border: 1px solid rgba(255,53,85,.13); border-radius: 50%; filter: blur(.2px); }
.hero-core-orbit-two { border-color: rgba(64,141,255,.19); }

.theatre { min-height: 750px; }
.theatre-reflection { display: none; }
.theatre-visual {
  position: relative;
  z-index: 1;
  height: 270px;
  flex: 0 0 270px;
  margin: 54px 0 34px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, rgba(255,255,255,.08));
  border-radius: 20px 20px 42px 20px;
  background: #03050a;
  box-shadow: 0 22px 46px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.08);
}
.theatre-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(2,4,8,.74)), linear-gradient(135deg, color-mix(in srgb,var(--accent) 8%,transparent), transparent 52%); }
.theatre-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; filter: saturate(.84) contrast(1.08); transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.theatre:hover .theatre-visual img { transform: scale(1.04); filter: saturate(.98) contrast(1.08); }

.service-bundles {
  background:
    radial-gradient(ellipse at 15% 10%, rgba(255,53,85,.065), transparent 30%),
    radial-gradient(ellipse at 88% 58%, rgba(64,141,255,.06), transparent 34%),
    linear-gradient(180deg, #020306, #04070c 52%, #020306);
}
.service-bundles .bundle-intro { margin: 0 auto 74px; text-align: center; }
.bundle-label { color: #ff667d; }
.managed-bundles { max-width: 1180px; margin-inline: auto; }

#operational-path { background: #020306; }
.path-stage {
  --path-accent: #f2b84b;
  background:
    radial-gradient(circle at 77% 42%, color-mix(in srgb,var(--path-accent) 15%,transparent), transparent 31%),
    linear-gradient(180deg, #020306 0%, #040609 12%, #030506 86%, #020306 100%);
  transition: background .45s ease;
}
.path-stage::before { background: linear-gradient(90deg, transparent, color-mix(in srgb,var(--path-accent) 7%,transparent) 1px, transparent 1px); }
.path-pixels { background: linear-gradient(90deg, color-mix(in srgb,var(--path-accent) 38%,transparent) 1px, transparent 1px), linear-gradient(color-mix(in srgb,var(--path-accent) 38%,transparent) 1px, transparent 1px); }
.path-line span { background: var(--path-accent); box-shadow: 0 0 14px color-mix(in srgb,var(--path-accent) 65%,transparent); }
.path-node { border-color: color-mix(in srgb,var(--path-accent) 42%,transparent); background: color-mix(in srgb,var(--path-accent) 7%,#05070b); color: color-mix(in srgb,var(--path-accent) 72%,white); box-shadow: 0 0 0 9px color-mix(in srgb,var(--path-accent) 5%,transparent),0 0 42px color-mix(in srgb,var(--path-accent) 18%,transparent); }
.path-chip { border-color: color-mix(in srgb,var(--path-accent) 38%,transparent); color: color-mix(in srgb,var(--path-accent) 68%,white); background: color-mix(in srgb,var(--path-accent) 7%,transparent); }
.path-actions a { color: color-mix(in srgb,var(--path-accent) 70%,white); }

#cti-darkweb {
  background:
    radial-gradient(ellipse at 76% 34%, rgba(242,184,75,.075), transparent 34%),
    radial-gradient(ellipse at 12% 78%, rgba(64,141,255,.055), transparent 31%),
    linear-gradient(180deg, #020306 0%, #05070c 15%, #05070c 86%, #03050a 100%);
}
.darkweb-grid { grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr); gap: clamp(48px,7vw,110px); align-items: center; }
.darkweb-scope { min-height: 620px; display: grid; grid-template-rows: auto minmax(260px,1fr) auto; }
.dw-scope-visual { position: relative; min-height: 300px; display: grid; place-items: center; margin: 24px 0 10px; isolation: isolate; }
.dw-scope-visual::before { content: ''; position: absolute; inset: 12% 17%; border-radius: 50%; background: radial-gradient(circle, rgba(242,184,75,.16), transparent 55%); filter: blur(22px); }
.dw-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(242,184,75,.24); border-radius: 50%; transform: translate(-50%,-50%); }
.dw-ring-one { width: 112px; height: 112px; }
.dw-ring-two { width: 210px; height: 210px; border-style: dashed; animation: scopeSpin 22s linear infinite; }
.dw-ring-three { width: 300px; height: 300px; border-color: rgba(255,255,255,.09); }
.dw-scope-visual b { position: relative; z-index: 2; color: #fff; font-size: 34px; letter-spacing: -.05em; }
.dw-node { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #f2b84b; box-shadow: 0 0 18px rgba(242,184,75,.75); }
.dw-node-one { left: 23%; top: 42%; }.dw-node-two { right: 24%; top: 28%; background: #408dff; }.dw-node-three { right: 18%; bottom: 28%; background: #ff3555; }.dw-node-four { left: 34%; bottom: 15%; }
@keyframes scopeSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.dw-scope-copy > p { margin: 0 0 24px; color: rgba(255,255,255,.74); font-size: 16px; line-height: 1.6; }
.dw-scope-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.1); }
.dw-scope-metrics span { min-width: 0; display: grid; gap: 8px; padding: 15px 13px; background: rgba(4,7,12,.9); }
.dw-scope-metrics small { color: rgba(255,255,255,.4); font: 600 8px/1 var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.dw-scope-metrics strong { color: #fff; font-size: 12px; line-height: 1.35; }

#superficie-attacco { background: radial-gradient(ellipse at 82% 45%,rgba(64,141,255,.06),transparent 34%),linear-gradient(180deg,#03050a,#05070c 50%,#03050a); }
#phishing { background: radial-gradient(ellipse at 18% 28%,rgba(255,53,85,.065),transparent 30%),linear-gradient(180deg,#03050a,#05070c 48%,#03050a); }
body[data-page="home"] .phishing-cta-card {
  background:
    linear-gradient(135deg, rgba(4,6,11,.9), rgba(4,6,11,.72)),
    linear-gradient(0deg, rgba(4,6,11,.96), transparent 64%),
    url('assets/bundles/falcon.webp') center 44% / cover no-repeat;
  border-color: rgba(255,255,255,.14);
}
body[data-page="home"] .phishing-cta-row { padding: 13px 10px; background: rgba(3,5,9,.42); }
body[data-page="home"] .phishing-soft-cta { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.095); color: #fff; box-shadow: none; backdrop-filter: blur(12px); }
body[data-page="home"] .phishing-soft-cta:hover { background: #fff; color: #05070c; transform: translateY(-2px); }
body[data-page="home"] .phishing-soft-cta .dot { background: #ff667d; box-shadow: 0 0 12px rgba(255,102,125,.65); }

body[data-page="home"] #contatti { background: radial-gradient(circle at 84% 20%,rgba(64,141,255,.07),transparent 29%),linear-gradient(180deg,#03050a,#05070c); }

@media (max-width: 1180px) {
  .darkweb-grid { grid-template-columns: 1fr; }
  .darkweb-scope { min-height: 560px; }
}

@media (max-width: 820px) {
  .hero-glass::after,.dw-ring-two { animation: none; }
  .theatre { min-height: 680px; }
  .theatre-visual { height: 230px; flex-basis: 230px; margin: 48px 0 30px; }
  .service-bundles .bundle-intro { margin-bottom: 54px; }
  .darkweb-scope { min-height: auto; }
  .dw-scope-metrics { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glass::after,.dw-ring-two { animation: none; }
}
