/* ---------- Design tokens ---------- */
:root {
  --navy: #273475;
  --navy-deep: #171f4a;
  --blue: #1a60ab;
  --accent: #e25d14;
  --ink: #12131a;
  --ink-soft: #565a6e;
  --paper: #ffffff;
  --paper-alt: #f5f6f8;
  --line: #e4e5ea;

  --font: "General Sans", "Inter", system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --radius: 18px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; image-orientation: from-image; }
[hidden] { display: none !important; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* Header and footer span the full viewport width, not the content container */
.site-header .container,
.site-footer .container {
  max-width: none;
  padding-left: 50px;
  padding-right: 50px;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: normal;
  color: var(--accent);
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 20ch;
}

.section-lead {
  max-width: 62ch;
}

.body-lg {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 58ch;
}

p { line-height: 1.65; color: var(--ink-soft); }

.callout {
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: var(--paper-alt);
  color: var(--ink);
  font-weight: 500;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #ff7433; }

.btn-small { padding: 11px 20px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.35s var(--ease), background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo { height: 32px; width: auto; }

.main-nav {
  display: flex;
  gap: 26px;
  font-size: 14.5px;
  font-weight: 500;
}
.main-nav a { position: relative; padding: 4px 0; white-space: nowrap; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.lang-switch:hover { border-color: var(--navy); color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  width: 16px; height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 168px 0 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 26px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 34px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media { position: relative; }

.hero-media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy-deep);
}
.hero-media-frame video,
.hero-media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,31,74,0) 45%, rgba(23,31,74,0.55) 100%);
}

.hero-float-card {
  position: absolute;
  left: -22px; bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(23, 31, 74, 0.16);
}
.pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(226, 93, 20, 0.6);
  animation: pulse 2.2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(226, 93, 20, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(226, 93, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 93, 20, 0); }
}
.float-card-title { margin: 0; font-size: 14px; font-weight: 600; }
.float-card-sub { margin: 0; font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Sections ---------- */
.section { padding: 108px 0; }
.section-alt { background: rgba(246, 198, 173, 0.6); }

/* ---------- Measure tabs ---------- */
.measure-grid { margin-top: 48px; }

.measure-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.measure-tab {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 4px;
  margin-right: 34px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.25s ease;
}
.measure-tab::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.measure-tab.is-active { color: var(--ink); }
.measure-tab.is-active::after { transform: scaleX(1); }

.measure-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-alt);
  margin-bottom: 40px;
}
.measure-video img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.measure-panel-copy { max-width: 640px; }
.measure-panel-copy p { font-size: 18px; color: var(--ink); }
.measure-index {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
}
#measureIndexCurrent { color: var(--navy); }

/* ---------- Bento grid ---------- */
.bento-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bento-card-wide { grid-column: span 2; }
.bento-card-wide .bento-media { aspect-ratio: 20 / 9; }

.bento-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.bento-media { aspect-ratio: 16 / 9; background: #0d1230; }
.bento-media img { width: 100%; height: 100%; object-fit: cover; }
.bento-copy { padding: 26px 28px 30px; }
.bento-copy h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.01em; }
.bento-copy p { margin: 0; font-size: 15px; }

/* ---------- Split grid (come funziona) ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.split-media {
  display: grid;
}
.split-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-alt);
}
.split-video img { width: 100%; height: 100%; object-fit: cover; display: block; }

.chart-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- EX grid ---------- */
.ex-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.ex-chip {
  display: flex;
  align-items: stretch;
  gap: 100px;
  padding: 18px 22px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

@media all and (max-width: 1080px) {
  .ex-chip {
    gap: 50px;
  }
}

@media all and (max-width: 600px) {
  .ex-chip {
    gap: 10px;
    padding: 10px 15px;
  }

  .exercise {
    font-size: 30px!important;
  }
  .ex-tag {
    font-size: 20px!important;
  }
  br {
    display: none;
  }
}

.ex-tag {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  padding: 10px 10px;
  border-radius: 20px;
  letter-spacing: 0.01em;
  text-align: center;
}

.exercise {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
}

.ex-tag-1 { background: #c48700; }
.ex-tag-2 { background: #0058a4; }
.ex-tag-3 { background: #007e24; }
.ex-tag-4 { background: #bfbb00; }

/* ---------- Partner strip ---------- */
.partner-strip {
  list-style: none;
  margin: 40px 0 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
}
.partner-strip li {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-alt);
  aspect-ratio: 16 / 9;
}
.gallery-item img,
.gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, rgba(23,31,74,0) 0%, rgba(15,19,45,0.78) 100%);
}

/* Video tiles: static poster + play badge, open in lightbox on click */
.gallery-item-video {
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background: transparent;
  text-align: left;
  font: inherit;
  appearance: none;
}
.gallery-item-video .play-badge {
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  background: rgba(23, 31, 74, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.3s var(--ease);
}
.gallery-item-video .play-badge::after {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.gallery-item-video:hover .play-badge { background: var(--accent); transform: scale(1.08); }

/* ---------- Report grid ---------- */
.report-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1150px;
  gap: 20px;
}
.report-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(23, 31, 74, 0.12);
}
.report-card-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-alt);
}
.report-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease);
}
.report-card:hover .report-card-media img { transform: scale(1.04); }
.report-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.report-tag {
  flex-shrink: 0;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 4px 9px;
  border-radius: 999px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(15, 19, 45, 0.9);
}
.lightbox.is-open { display: flex; }
.lightbox img,
.lightbox video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }

/* ---------- Benefits ---------- */
.benefit-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.benefit-card h3 {
  margin: 0 0 22px;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefit-list li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.benefit-list li strong { color: var(--ink); font-weight: 600; }
.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ---------- Cognitive science benefits ---------- */
.cog-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.cog-col {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.cog-group h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cog-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.cog-list li strong { color: var(--ink); font-weight: 600; }
.cog-list li::before {
  content: "➤";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-size: 11px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy-deep);
  padding: 120px 0;
}
.cta-banner-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-banner h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 18px;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin: 0 0 32px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper-alt);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-logo { height: 24px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 30ch; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; font-weight: 500; }
.footer-nav a:hover { color: var(--navy); }
.footer-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin: 0 0 10px; }
.footer-contact a { font-weight: 600; font-size: 15.5px; }

.footer-company-name { margin: 0 0 8px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.footer-company address {
  margin: 0 0 12px;
  font-size: 13.5px;
  font-style: normal;
  line-height: 1.6;
  color: var(--ink-soft);
}
.footer-company a {
  display: block;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.footer-company a:hover { color: var(--navy); }
.footer-vat { margin: 10px 0 0; font-size: 12.5px; color: var(--ink-soft); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: 13px; }
.footer-lang { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.footer-lang:hover { color: var(--navy); }

/* ---------- Reveal base state (JS adds .is-visible) ---------- */
[data-reveal] { opacity: 1; }
.js-ready [data-reveal="fade"],
.js-ready [data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(28px);
}
.js-ready [data-reveal].is-visible,
.js-ready [data-reveal="stagger"].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Cursor glow (subtle, desktop only) ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,93,20,0.07) 0%, rgba(226,93,20,0) 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 140px; }
  .hero-media-frame { aspect-ratio: 16 / 10; }
  .chart-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid .benefit-card:first-child { grid-column: span 2; }
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-small { display: none; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 18px 32px 26px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .site-header.nav-open .header-actions .btn-small {
    display: inline-flex;
  }
  .site-header.nav-open .header-inner {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .site-header.nav-open .header-actions {
    margin-left: auto;
  }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card-wide { grid-column: span 1; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid .benefit-card:first-child { grid-column: span 1; }
  .cog-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .report-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
}

@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .site-header .container,
  .site-footer .container { padding-left: 15px; padding-right: 15px; }
  .section { padding: 76px 0; }
  .cta-banner { padding: 80px 0; }
  .chart-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .report-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-reveal="fade"],
  .js-ready [data-reveal="stagger"] > * {
    opacity: 1;
    transform: none;
  }
  .pulse-dot { animation: none; }
}


#prodotto .section-title,
#prodotto .measure-panel-copy {
  max-width: unset;
}

#report .report-tag {
  font-size: 20px;
}