/* =========================================================
   splash.it — stile
   Colori del marchio Splash: cielo azzurro -> blu mare.
   Tema chiaro predefinito, tema scuro con [data-theme="dark"].
   ========================================================= */

:root,
:root[data-theme="light"] {
  --bg: #EEF6FC;
  --bg-2: #E2EFF8;
  --card: #FFFFFF;
  --menu: #FFFFFF;
  --fg: #0B2742;
  --muted: #45607A;
  --line: rgba(11, 39, 66, .10);
  --line-2: rgba(11, 39, 66, .20);
  --tint: rgba(10, 118, 186, .07);
  --accent: #0A76BA;
  --accent-t: #0869A6;
  --nav-bg: rgba(214, 232, 244, .82);
  --btn-bg: #0B2742;
  --btn-fg: #FFFFFF;
  --glow-1: rgba(255, 255, 255, .75);
  --glow-2: rgba(160, 215, 245, .55);
  --shadow: 0 30px 60px -34px rgba(7, 60, 100, .45);
  --hero-grad: linear-gradient(180deg, #D8E9F5 0%, #C8DEED 12%, #B6D4E8 26%, #97C3E0 42%, #69AAD3 60%, #3B91C7 78%, #0A76BA 100%);
  --hero-fg: #0B2742;
  --hero-sub: #1F405E;
  --blu-grad: linear-gradient(180deg, #0A76BA 0%, #0864A1 100%);
  --pannello: rgba(238, 246, 252, .86);
  --pannello-bordo: rgba(255, 255, 255, .7);
  --foot-bg: #06243B;
  --foot-fg: #A9C3D8;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #061E33;
  --bg-2: #082842;
  --card: #0B3150;
  --menu: #0B3150;
  --fg: #EAF4FB;
  --muted: #A9C3D8;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .18);
  --tint: rgba(127, 196, 240, .08);
  --accent: #0A76BA;
  --accent-t: #7FC4F0;
  --nav-bg: rgba(6, 30, 51, .8);
  --btn-bg: #FFFFFF;
  --btn-fg: #061E33;
  --glow-1: rgba(127, 196, 240, .30);
  --glow-2: rgba(10, 118, 186, .45);
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, .7);
  --hero-grad: linear-gradient(180deg, #0C3A5E 0%, #0A3354 45%, #0A5E97 80%, #0A76BA 100%);
  --hero-fg: #F2F8FC;
  --hero-sub: #C3D9EA;
  --blu-grad: linear-gradient(180deg, #0A5E97 0%, #073E66 100%);
  --pannello: rgba(6, 30, 51, .82);
  --pannello-bordo: rgba(127, 196, 240, .18);
  --foot-bg: #041626;
  --foot-fg: #93AFC6;
  color-scheme: dark;
}

:root {
  --font: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --gutter: clamp(16px, 4vw, 48px);
  --ok: #22C55E;
  --wip: #F5C518;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-weight: 700; margin: 0; }
p { margin: 0; }

:focus-visible { outline: 2px solid var(--accent-t); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(1240px, calc(100% - 2 * var(--gutter))); margin: 0 auto; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: 10px 16px; border-radius: 999px; font-weight: 600; text-decoration: none;
}
.skip:focus { top: 12px; }

/* ---------- Navigazione ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: var(--nav-bg);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line);
}
.nav-in { height: 68px; display: flex; align-items: center; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 800; font-size: 21px; letter-spacing: -.035em; }
.logo img { height: 34px; width: auto; }
.logo-scuro { display: none; }
.nav-links { display: flex; gap: 6px; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 15px; font-weight: 500; color: var(--fg); padding: 8px 12px; border-radius: 999px; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--fg); background: var(--tint); }
.nav-tools { display: flex; align-items: center; gap: 8px; }

.icon-btn, .lang > summary {
  height: 40px; min-width: 40px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border-radius: 999px; border: 1px solid var(--line-2);
  background: transparent; color: var(--fg);
  font: 600 14px/1 var(--font); cursor: pointer;
  transition: background .2s, border-color .2s;
}
.icon-btn:hover, .lang > summary:hover { background: var(--tint); }
.i-sole { display: none; }
:root[data-theme="dark"] .i-sole { display: block; }
:root[data-theme="dark"] .i-luna { display: none; }

.lang { position: relative; }
.lang > summary { list-style: none; }
.lang > summary::-webkit-details-marker { display: none; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  list-style: none; margin: 0; padding: 6px; min-width: 190px;
  background: var(--menu); border: 1px solid var(--line-2); border-radius: 16px;
  box-shadow: var(--shadow);
}
.lang-menu a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; border-radius: 10px; text-decoration: none; font-size: 15px;
}
.lang-menu a:hover { background: var(--tint); }
.lang-menu a[aria-current="true"] { color: var(--accent-t); font-weight: 600; }
.lang-menu a[aria-current="true"]::after { content: "✓"; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-tools { margin-left: auto; }
}

/* ---------- Hero ---------- */
/* Sfondo del marchio: gradiente cielo -> mare fisso su tutta la finestra, come su splash.it */
html { background: #0A76BA; }
body { background: transparent; isolation: isolate; }
body::before { content: ""; position: fixed; inset: 0; z-index: -1; background: var(--hero-grad); pointer-events: none; }
.top { color: var(--hero-fg); padding-bottom: clamp(48px, 7vw, 88px); }

/* Pannelli di vetro chiaro che contengono i testi sopra il gradiente */
.pannello {
  background: var(--pannello);
  border: 1px solid var(--pannello-bordo);
  border-radius: 32px;
  padding: clamp(20px, 3.4vw, 48px);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 40px 80px -40px rgba(4, 50, 90, .45);
}
@media (max-width: 640px) { .pannello { border-radius: 24px; padding: 18px 14px; } }
.hero { position: relative; padding: clamp(120px, 17vh, 170px) 0 clamp(48px, 7vh, 80px); overflow: hidden; text-align: center; isolation: isolate; }
.hero-logo { display: block; margin: 0 auto; width: clamp(220px, 30vw, 400px); height: auto; filter: drop-shadow(0 12px 24px rgba(7, 60, 100, .18)); }
.hero-in { position: relative; z-index: 1; }
.hero-glow { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-glow i {
  position: absolute; left: 50%; top: 38%;
  width: min(900px, 110vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--glow-1) 0%, transparent 62%);
  transform: translate(-50%, -50%);
  filter: blur(10px);
  animation: deriva 22s ease-in-out infinite alternate;
}
.hero-glow i + i {
  width: min(620px, 90vw); top: 52%;
  background: radial-gradient(circle, var(--glow-2) 0%, transparent 60%);
  animation-duration: 17s; animation-direction: alternate-reverse;
}
@keyframes deriva {
  0%   { transform: translate(-62%, -54%) scale(1); }
  50%  { transform: translate(-44%, -46%) scale(1.12); }
  100% { transform: translate(-54%, -58%) scale(.94); }
}

.eyebrow {
  margin-top: 26px; background: rgba(255, 255, 255, .45) !important; color: var(--hero-sub) !important; border-color: rgba(11, 39, 66, .15) !important;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--tint);
  font-size: 14px; font-weight: 500; color: var(--muted);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(10, 118, 186, .2); }

.hero h1 {
  margin: 22px auto 0; max-width: 15ch; color: var(--hero-fg);
  font-size: clamp(44px, 8.2vw, 124px); line-height: .95; letter-spacing: -.035em; font-weight: 700;
  text-wrap: balance;
}
.hero-sub { margin: 28px auto 0; max-width: 46ch; font-size: clamp(18px, 1.55vw, 21px); color: var(--hero-sub); text-wrap: pretty; }
.ctas { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 26px; border-radius: 999px;
  font: 600 16px/1 var(--font); text-decoration: none; letter-spacing: -.01em;
  transition: transform .25s var(--ease), background .2s, border-color .2s;
}
.btn-primary { background: var(--btn-bg); color: var(--btn-fg); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid currentColor; color: var(--hero-fg); }
.btn-ghost:hover { background: var(--tint); }

/* ---------- Riquadro immagine / copertina generata ---------- */
.frame {
  display: block; position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: 20px; border: 1px solid var(--line);
  background: var(--c, var(--accent));
  container-type: inline-size;
  isolation: isolate;
}
.frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 3;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 28%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28);
}
.frame > img, .frame > .cover {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transition: transform .8s var(--ease);
}
.frame > img { object-fit: cover; object-position: top center; z-index: 1; }

.cover {
  display: flex; flex-direction: column; overflow: hidden;
  color: var(--ci, #fff);
  background-color: var(--c, #2346E8);
  background-image:
    radial-gradient(90% 80% at 88% 0%, rgba(255, 255, 255, .30), transparent 55%),
    radial-gradient(80% 90% at 0% 100%, rgba(0, 0, 0, .28), transparent 60%);
}
.cover::before {
  content: ""; position: absolute; right: -12%; bottom: -38%;
  width: 62%; aspect-ratio: 1; border-radius: 50%;
  border: 2px solid currentColor; opacity: .16;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, .05), 0 0 0 56px rgba(255, 255, 255, .035);
}
.cover-bar {
  flex: 0 0 auto; height: max(22px, 10cqi);
  display: flex; align-items: center; gap: max(5px, 1.2cqi); padding: 0 4cqi;
  background: rgba(0, 0, 0, .14);
}
.cover-bar i { width: max(7px, 1.8cqi); aspect-ratio: 1; border-radius: 50%; background: currentColor; opacity: .45; }
.cover-url {
  margin-left: 3cqi; flex: 0 1 44%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
  font-size: max(10px, 2.6cqi); font-weight: 500; opacity: .8;
  padding: .3em 1em; border-radius: 999px; background: rgba(255, 255, 255, .18);
}
.cover-name {
  position: relative; margin: auto; padding: 0 6cqi;
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  font-size: 40px;
  font-size: min(15cqi, calc(145cqi / var(--len, 12)));
  text-align: center;
}

/* ---------- Nastro continuo ---------- */
.nastro {
  display: grid; gap: 20px; padding: 8px 0 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.nastro-fila { overflow: hidden; }
.nastro-track { display: flex; width: max-content; animation: scorri 80s linear infinite; will-change: transform; }
.nastro-fila.inverso .nastro-track { animation-direction: reverse; animation-duration: 95s; }
.nastro-fila:hover .nastro-track, .nastro-fila:focus-within .nastro-track { animation-play-state: paused; }
.nastro-set { display: flex; gap: 20px; padding: 0 20px 0 0; margin: 0; list-style: none; }
.tile { display: block; width: clamp(240px, 25vw, 380px); text-decoration: none; border-radius: 20px; }
.tile .frame { box-shadow: var(--shadow); }
.tile:hover .frame > img, .tile:hover .frame > .cover { transform: scale(1.04); }
@keyframes scorri { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 640px) {
  .nastro-track { animation-duration: 120s; }
  .nastro-fila.inverso .nastro-track { animation-duration: 140s; }
}

/* ---------- Sezioni ---------- */
.portali { padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 5vw, 64px); }
.sez-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px 32px; flex-wrap: wrap; margin-bottom: 28px; }
.sez-head h2, .about h2 { font-size: clamp(40px, 6.2vw, 88px); line-height: .98; letter-spacing: -.035em; }
.contatore { color: var(--muted); font-size: 16px; }

.filtri { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.f-gruppo { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.f-label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); min-width: 96px; }
.pill {
  height: 38px; padding: 0 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-2); background: transparent; color: var(--fg);
  font: 500 15px/1 var(--font); cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.pill:hover { background: var(--tint); }
.pill[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.pt { width: 8px; height: 8px; border-radius: 50%; }
.pt-online { background: var(--ok); }
.pt-sviluppo { background: var(--wip); }
.pt-arrivo { border: 1.5px solid currentColor; }
@media (max-width: 560px) { .f-label { min-width: 100%; } }

/* ---------- Griglia bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-flow: dense; gap: 20px; }
.card {
  --mx: 50%; --my: 0%;
  box-shadow: 0 18px 40px -28px rgba(4, 50, 90, .45);
  position: relative; display: flex; flex-direction: column;
  padding: 10px; border-radius: 28px;
  background: var(--card); border: 1px solid var(--line);
}
.card::after {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none; z-index: 4;
  background: radial-gradient(420px circle at var(--mx) var(--my), var(--c), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  opacity: 0; transition: opacity .35s;
}
.card:hover::after, .card:focus-within::after { opacity: 1; }
.card:hover .frame > img, .card:hover .frame > .cover { transform: scale(1.035); }
.card:focus-within { outline: 2px solid var(--accent-t); outline-offset: 3px; }
.card-link:focus-visible { outline: none; }

.card.feat { grid-column: span 2; grid-row: span 2; }
.card.feat.feat-dx { grid-column: 2 / span 2; }
.card.feat .frame { aspect-ratio: auto; flex: 1 1 auto; min-height: 260px; }

.card-body { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px 14px 12px; }
.stato {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 11px 5px 9px; border-radius: 999px;
  background: var(--tint); border: 1px solid var(--line);
  font-size: 13px; font-weight: 600;
}
.stato::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.stato-online::before { background: var(--ok); box-shadow: 0 0 0 3px rgba(34, 197, 94, .22); }
.stato-sviluppo::before { background: var(--wip); }
.stato-arrivo::before { border: 1.5px solid currentColor; }

.card-title { margin-top: 6px; font-size: clamp(26px, 2.3vw, 34px); line-height: 1.02; letter-spacing: -.03em; word-break: break-word; }
.card.feat .card-title, .bento-int .card-title { font-size: clamp(30px, 3.2vw, 48px); }
.card-link { text-decoration: none; }
.card-link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 5; }
.card-cat { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.card-cat i { width: 8px; height: 8px; border-radius: 50%; background: var(--c); }
.card-desc { color: var(--muted); font-size: 16px; max-width: 52ch; text-wrap: pretty; }
.card-azione { margin-top: 6px; display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600; }
.card-azione svg { transition: transform .3s var(--ease); }
.card:hover .card-azione svg { transform: translate(2px, -2px); }
.card-azione.muto { color: var(--muted); font-weight: 500; }

.bento-int .card-desc { font-size: 17px; }

.vuoto, .avviso { padding: 40px 0; color: var(--muted); font-size: 18px; }
.avviso { padding: 24px; border: 1px solid var(--line-2); border-radius: 20px; background: var(--tint); color: var(--fg); }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card.feat, .card.feat.feat-dx { grid-column: span 2; grid-row: auto; }
  .card.feat .frame { aspect-ratio: 16 / 10; min-height: 0; flex: 0 0 auto; }
  .bento-int { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; gap: 16px; }
  .card.feat, .card.feat.feat-dx { grid-column: auto; }
  .card { border-radius: 24px; }
}

/* ---------- Chi siamo ---------- */
.about { padding: 0 0 clamp(64px, 9vw, 120px); }
.about-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr); gap: 32px clamp(32px, 6vw, 96px); align-items: start; }
.about-lead { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.35; letter-spacing: -.015em; font-weight: 500; text-wrap: pretty; }
.aree { list-style: none; margin: 48px 0 0; padding: 0; border-top: 1px solid var(--line-2); }
.aree li { display: grid; grid-template-columns: 64px minmax(0, 1fr); column-gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.aree-n { grid-row: span 2; font-size: 15px; font-weight: 600; color: var(--accent-t); padding-top: 6px; }
.aree strong { font-size: clamp(22px, 2vw, 28px); letter-spacing: -.03em; font-weight: 700; }
.aree span:last-child { color: var(--muted); }
@media (max-width: 820px) { .about-in { grid-template-columns: 1fr; } }

/* ---------- Contatti ---------- */
.contatti { position: relative; overflow: hidden; isolation: isolate; text-align: center; padding: clamp(100px, 14vw, 180px) 0; background: linear-gradient(180deg, rgba(8, 100, 161, .82), rgba(4, 50, 90, .9)); color: #FFFFFF; }
.contatti .hero-glow i { background: radial-gradient(circle, rgba(127, 196, 240, .45) 0%, transparent 62%); }
.glow-basso i { top: 110%; width: min(1000px, 130vw); }
.contatti h2 { max-width: 14ch; margin: 0 auto; font-size: clamp(44px, 7.4vw, 112px); line-height: .96; letter-spacing: -.035em; text-wrap: balance; }
.mail {
  display: inline-block; margin-top: 40px;
  font-size: clamp(22px, 3vw, 38px); font-weight: 600; letter-spacing: -.02em;
  text-decoration: none; border-bottom: 2px solid rgba(255, 255, 255, .7);
  padding-bottom: 4px; transition: color .2s;
}
.mail:hover { border-bottom-color: #FFFFFF; }
.contatti :focus-visible { outline-color: #FFFFFF; }

/* ---------- Footer ---------- */
.foot { padding: 48px 0 64px; background: var(--foot-bg); color: #FFFFFF; }
.foot .logo img { height: 30px; }
.foot-in { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.foot-brand p { margin-top: 10px; color: var(--foot-fg); font-size: 14px; }
.foot-portali { max-width: 640px; }
.foot-portali h2 { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--foot-fg); margin-bottom: 12px; }
.foot-portali ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot-portali a { text-decoration: none; color: var(--foot-fg); font-size: 15px; }
.foot-portali a:hover { color: #FFFFFF; }

/* ---------- 404 ---------- */
.hero-404 { min-height: 70vh; }

/* ---------- Comparsa allo scroll (solo con JS) ---------- */
html.js .reveal {
  opacity: 0; transform: translateY(22px); filter: blur(10px);
  transition: opacity .9s var(--ease) var(--d, 0ms), transform .9s var(--ease) var(--d, 0ms), filter .9s var(--ease) var(--d, 0ms);
}
html.js .reveal.in { opacity: 1; transform: none; filter: none; }

.card.lampo { animation: lampo 1.4s var(--ease); }
@keyframes lampo { 0%, 100% { box-shadow: none; } 30% { box-shadow: 0 0 0 3px var(--c); } }

/* ---------- Movimento ridotto ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .hero-glow i { animation: none; }
  .nastro-track { animation: none; }
  .nastro-set[aria-hidden="true"] { display: none; }
  .nastro-fila { overflow-x: auto; scrollbar-width: thin; }
  .frame > img, .frame > .cover, .btn, .card-azione svg { transition: none; }
  .card.lampo { animation: none; }
}
