:root {
  --surface: #f3f4f8;
  --paper: #ffffff;
  --ink: #161a27;
  --night: #111421;
  --night-2: #262a3a;
  --highlight: #c8202f;
  --highlight-deep: #9d1420;
  --highlight-soft: #ff4a5a;
  --tint: #fbe8ea;
  --muted: #565b6c;
  --line: #dcdee7;
  --f-display: "Fraunces", "Georgia", serif;
  --f-text: "IBM Plex Sans", "Helvetica Neue", "Arial", sans-serif;
  --r-soft: 10px;
  --r-card: 16px;
  --r-image: 22px;
  --gutter: clamp(20px, 4vw, 44px);
  --ombra-card: 0 22px 40px -26px rgba(22, 26, 39, .42), 0 3px 8px rgba(200, 32, 47, .07);
  --ombra-alta: 0 34px 60px -28px rgba(17, 20, 33, .55), 0 6px 14px rgba(17, 20, 33, .08);
  --altezza-testata: 80px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.blocca { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--f-text);
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, fieldset, legend { margin: 0; padding: 0; }
fieldset { border: 0; min-width: 0; }
button { font: inherit; color: inherit; cursor: pointer; }
[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -.018em;
  line-height: 1.08;
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.7rem, 6vw, 5.2rem); font-weight: 700; line-height: 1; letter-spacing: -.028em; }
h2 { font-size: clamp(1.95rem, 3.6vw, 3.15rem); }
h3 { font-size: 1.32rem; line-height: 1.2; }

.tono { display: block; color: var(--highlight); }
.aula .tono, .chiamaci .tono { color: var(--highlight-soft); }
.chiamaci .tono { color: #fff; opacity: .82; }

:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 3px; }
.aula :focus-visible, .piede :focus-visible, .chiamaci :focus-visible { outline-color: #fff; }

.solo-lettori {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.telaio {
  width: 100%;
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.btn-rosso, .btn-vuoto, .btn-bianco {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.1;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-rosso { background: var(--highlight); color: #fff; box-shadow: 0 14px 26px -14px rgba(200, 32, 47, .8); }
.btn-rosso:hover { background: var(--highlight-deep); }
.btn-vuoto { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-vuoto:hover { background: var(--ink); color: #fff; }
.btn-bianco { background: #fff; color: var(--highlight-deep); }
.btn-bianco:hover { background: var(--ink); color: #fff; }
.btn-pieno { width: 100%; }
.btn-rosso i, .btn-vuoto i, .btn-bianco i { font-size: 1.15em; }

.testata {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.testata::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(230px, 32vw);
  height: 3px;
  background: var(--highlight);
}
.testata-riga {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: var(--altezza-testata);
}
.marchio { display: block; flex-shrink: 0; }
.marchio img { height: 46px; width: auto; }

.menu-principale { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.menu-principale > a,
.menu-gruppo > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: .96rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color .2s ease, background-color .2s ease;
}
.menu-principale > a:hover,
.menu-gruppo > a:hover { color: var(--highlight); background: var(--tint); }
.menu-gruppo { position: relative; }
.menu-gruppo > a i { font-size: 1.15rem; transition: transform .2s ease; }
.menu-gruppo:hover > a i,
.menu-gruppo:focus-within > a i { transform: rotate(180deg); }
.menu-sotto {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--highlight);
  border-radius: 0 0 var(--r-soft) var(--r-soft);
  box-shadow: var(--ombra-alta);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.menu-gruppo:hover .menu-sotto,
.menu-gruppo:focus-within .menu-sotto { opacity: 1; visibility: visible; transform: none; }
.menu-sotto a { display: block; padding: 10px 14px; border-radius: 6px; font-size: .94rem; }
.menu-sotto a:hover { background: var(--tint); color: var(--highlight); }

.testata-cta { min-height: 46px; padding: 0 22px; font-size: .93rem; }
.menu-principale > a.menu-cta-mobile { display: none; padding: 0 28px; font-size: .98rem; font-weight: 600; }
.menu-bottone {
  display: none;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
}

.apertura {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 84px) 0 clamp(120px, 12vw, 160px);
}
.apertura::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 66%;
  background: linear-gradient(135deg, #ffffff 0%, #eceef4 100%);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}
.apertura::after {
  content: "";
  position: absolute;
  left: -6%; bottom: 0;
  width: 46%; height: 34%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0));
  clip-path: polygon(0 100%, 100% 100%, 42% 0);
}
.apertura-archi {
  position: absolute;
  left: -262px; top: 46%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, transparent 0 24px, rgba(200, 32, 47, .5) 24px 25px);
  -webkit-mask-image: radial-gradient(circle at center, #000 45%, transparent 71%);
  mask-image: radial-gradient(circle at center, #000 45%, transparent 71%);
}
.apertura-punti {
  position: absolute;
  right: 0; top: 0;
  width: 232px; height: 148px;
  background-image: radial-gradient(var(--highlight) 2.4px, transparent 2.9px);
  background-size: 19px 19px;
  -webkit-mask-image: linear-gradient(210deg, #000 20%, transparent 78%);
  mask-image: linear-gradient(210deg, #000 20%, transparent 78%);
}
.apertura-griglia {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 6.4fr 5fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.apertura-testo { padding-top: clamp(0px, 3vw, 40px); }
.apertura h1 span { display: block; animation: emerge .85s cubic-bezier(.2, .7, .2, 1) both; }
.apertura h1 .tono { animation-delay: .2s; }
@keyframes emerge {
  from { opacity: 0; transform: translateY(.38em); }
  to { opacity: 1; transform: none; }
}
.apertura-sotto {
  max-width: 54ch;
  margin-top: 28px;
  font-size: 1.18rem;
  line-height: 1.62;
  color: #363b4c;
}
.apertura-azioni { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.apertura-fatti {
  display: grid;
  gap: 14px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.apertura-fatti li { display: flex; align-items: center; gap: 14px; font-size: .98rem; font-weight: 500; }
.apertura-fatti i {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--highlight);
  font-size: 1.15rem;
}

.apertura-scena { position: relative; padding-bottom: 60px; }
.apertura-scena img {
  width: 100%;
  height: clamp(340px, 42vw, 540px);
  object-fit: cover;
  border-radius: var(--r-image);
  box-shadow: var(--ombra-alta);
}
.scelta {
  position: absolute;
  left: -72px; bottom: -34px;
  width: min(430px, 88%);
  padding: 26px 26px 24px;
  background: var(--paper);
  border-radius: var(--r-card);
  border-top: 4px solid var(--highlight);
  box-shadow: var(--ombra-alta);
}
.scelta legend {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -.012em;
  margin-bottom: 4px;
}
.scelta-nota { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.scelta-chip { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.scelta-chip label { position: relative; cursor: pointer; }
.scelta-chip input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.scelta-chip span {
  display: block;
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  background: var(--paper);
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.scelta-chip label:hover span { border-color: var(--highlight); }
.scelta-chip input:checked + span { background: var(--highlight); border-color: var(--highlight); color: #fff; }
.scelta-chip input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 2px; }

.cifre {
  position: relative;
  color: #fff;
  padding: clamp(44px, 6vw, 78px) 0;
  background:
    linear-gradient(100deg, rgba(150, 18, 30, .94) 0%, rgba(200, 32, 47, .86) 100%),
    url("https://images.pexels.com/photos/8152738/pexels-photo-8152738.jpeg?auto=compress&cs=tinysrgb&w=1600") center 38% / cover no-repeat;
}
.cifre-riga { display: flex; justify-content: space-between; gap: 8px; }
.cifra {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px clamp(16px, 3vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, .5);
}
.cifra:first-child { border-left: 0; padding-left: 0; }
.cifra-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 6.4vw, 5.6rem);
  line-height: .9;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.cifra-testo { font-weight: 600; font-size: .98rem; line-height: 1.3; max-width: 19ch; }

.ambiti {
  background: var(--paper);
  padding: clamp(64px, 9vw, 122px) 0 clamp(56px, 8vw, 104px);
}
.ambiti-testa {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.ambiti-testa p { color: var(--muted); max-width: 52ch; }
.ambiti-elenco {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
}
.ambito {
  grid-column: span 2;
  padding: 38px clamp(20px, 2.6vw, 38px) 42px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ambito:nth-child(3n + 1) { border-left: 0; padding-left: 0; }
.ambito:nth-child(n + 4) { grid-column: span 3; }
.ambito:nth-child(4) { border-left: 0; padding-left: 0; }
.ambito:nth-child(5) { padding-right: 0; }
.ambito:nth-child(3) { padding-right: 0; }
.ambito-testa { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.ambito-icona {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 58px; height: 58px;
  border: 1.5px solid var(--highlight);
  border-radius: 12px;
  color: var(--highlight);
  font-size: 1.8rem;
}
.ambito h3 { font-size: 1.28rem; }
.punti-rossi li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: .98rem;
  color: #2f3446;
}
.punti-rossi li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  background: var(--highlight);
}
.ambiti-piede { margin-top: 38px; }
.link-freccia {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--highlight);
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: gap .2s ease, color .2s ease;
}
.link-freccia:hover { gap: 14px; color: var(--highlight-deep); }
.aula .link-freccia { color: #fff; }

.percorso {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 116px) 0 clamp(72px, 9vw, 128px);
}
.percorso::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 60%; height: 100%;
  background: linear-gradient(160deg, #fff 0%, rgba(255, 255, 255, 0) 70%);
  clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%);
}
.percorso-griglia {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 7vw, 108px);
  align-items: center;
}
.percorso-foto { position: relative; }
.percorso-foto img {
  width: 100%;
  height: clamp(380px, 46vw, 640px);
  object-fit: cover;
  border-radius: 128px var(--r-image) var(--r-image) var(--r-image);
  box-shadow: var(--ombra-alta);
}
.percorso-nota {
  position: absolute;
  right: -34px; bottom: 42px;
  max-width: 290px;
  padding: 22px 26px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  border-left: 4px solid var(--highlight);
  box-shadow: var(--ombra-alta);
  font-size: .98rem;
  line-height: 1.5;
}
.percorso-nota strong { display: block; font-family: var(--f-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
.percorso-testo > p { margin-top: 18px; color: var(--muted); max-width: 50ch; }
.passi { margin-top: 38px; }
.passo {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding-bottom: 30px;
}
.passo:last-child { padding-bottom: 0; }
.passo:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px; top: 58px; bottom: 2px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--highlight) 0 5px, transparent 5px 10px);
}
.passo-num {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--highlight);
  color: var(--highlight);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
}
.passo h3 { margin: 4px 0 6px; }
.passo p { color: var(--muted); font-size: 1rem; max-width: 46ch; }

.aula {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: #fff;
  padding: clamp(64px, 8vw, 110px) 0 clamp(64px, 8vw, 116px);
}
.aula-punti, .aula-punti-b {
  position: absolute;
  width: 180px; height: 150px;
  background-image: radial-gradient(rgba(255, 255, 255, .28) 2px, transparent 2.5px);
  background-size: 17px 17px;
}
.aula-punti { left: 0; top: 42px; -webkit-mask-image: linear-gradient(120deg, #000, transparent 75%); mask-image: linear-gradient(120deg, #000, transparent 75%); }
.aula-punti-b { right: 0; bottom: 46px; -webkit-mask-image: linear-gradient(300deg, #000, transparent 75%); mask-image: linear-gradient(300deg, #000, transparent 75%); }
.aula-testa {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.aula-testa h2 { max-width: 22ch; }
.aula-testa p { max-width: 42ch; color: #b9bdcb; }
.aula-schede { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.aula-scheda {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 14px 14px 30px;
  background: var(--night-2);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .06);
}
.aula-icona {
  position: relative;
  display: grid;
  place-items: center;
  height: 156px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(155deg, #3e4358, #2b2f40);
  font-size: 3.7rem;
  color: #fff;
}
.aula-icona::after {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 52%; height: 100%;
  background: repeating-linear-gradient(115deg, rgba(255, 74, 90, .5) 0 1px, transparent 1px 9px);
  -webkit-mask-image: linear-gradient(270deg, #000, transparent);
  mask-image: linear-gradient(270deg, #000, transparent);
}
.aula-icona i { position: relative; z-index: 1; }
.aula-scheda h3 { padding: 0 12px; font-size: 1.24rem; }
.aula-scheda p { padding: 0 12px; color: #b9bdcb; font-size: .96rem; line-height: 1.55; }

.assistiamo {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 116px) 0 clamp(96px, 11vw, 150px);
}
.assistiamo::before {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 58%; height: 100%;
  background: linear-gradient(200deg, #fff 0%, rgba(255, 255, 255, 0) 65%);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
}
.assistiamo-griglia {
  position: relative;
  display: grid;
  grid-template-columns: 4.2fr 7fr;
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}
.assistiamo-lato { position: sticky; top: calc(var(--altezza-testata) + 32px); }
.assistiamo-lato p { margin-top: 18px; color: var(--muted); max-width: 40ch; }
.assistiamo-vie { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.assistiamo-schede { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.assistiamo-schede li:nth-child(even) { transform: translateY(40px); }
.persona-scheda {
  height: 100%;
  padding: 28px 26px 30px;
  background: var(--paper);
  border-radius: var(--r-card);
  box-shadow: var(--ombra-card);
}
.persona-icona {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--tint);
  color: var(--highlight);
  font-size: 1.7rem;
}
.persona-scheda h3 { font-size: 1.22rem; margin-bottom: 8px; }
.persona-scheda p { color: var(--muted); font-size: .96rem; line-height: 1.55; }

.team {
  background: var(--paper);
  padding: clamp(60px, 8vw, 112px) 0 clamp(60px, 8vw, 116px);
}
.team-griglia {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}
.team-lato p { margin-top: 18px; color: var(--muted); max-width: 38ch; }
.team-lato .link-freccia { margin-top: 26px; }
.team-riga {
  display: grid;
  grid-template-columns: 76px 1fr 1.15fr;
  gap: 26px;
  align-items: center;
  padding: 28px 0 28px 18px;
  border-top: 1px solid var(--line);
  border-left: 4px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
.team-riga:last-child { border-bottom: 1px solid var(--line); }
.team-riga:hover { border-left-color: var(--highlight); background: var(--surface); }
.team-sigla {
  display: grid;
  place-items: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--highlight);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.6rem;
}
.team-nome { font-family: var(--f-display); font-weight: 600; font-size: 1.5rem; line-height: 1.15; letter-spacing: -.012em; }
.team-ruolo { font-size: .93rem; font-weight: 600; color: var(--highlight); margin-top: 4px; }
.team-riga > p { font-size: .97rem; color: var(--muted); line-height: 1.55; padding-right: 14px; }

.chiamaci {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(60px, 8vw, 112px) 0;
  background:
    linear-gradient(105deg, rgba(150, 18, 30, .95) 0%, rgba(200, 32, 47, .9) 58%, rgba(200, 32, 47, .74) 100%),
    url("https://images.pexels.com/photos/5985307/pexels-photo-5985307.jpeg?auto=compress&cs=tinysrgb&w=1600") center / cover no-repeat;
}
.chiamaci-griglia {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.chiamaci h2 { font-size: clamp(2.1rem, 3.9vw, 3.4rem); }
.chiamaci-testo > p { margin-top: 22px; max-width: 48ch; font-size: 1.14rem; color: rgba(255, 255, 255, .92); }
.chiamaci-azioni { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.chiamaci .btn-vuoto { border-color: #fff; color: #fff; }
.chiamaci .btn-vuoto:hover { background: #fff; color: var(--highlight-deep); }
.chiamaci-pannello {
  padding: 34px clamp(24px, 3vw, 38px) 32px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 20px;
  box-shadow: var(--ombra-alta);
}
.chiamaci-pannello h3 { font-size: 1.4rem; margin-bottom: 16px; }
.portare li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 11px; font-size: .98rem; line-height: 1.45; }
.portare i { color: var(--highlight); font-size: 1.25rem; line-height: 1.2; flex-shrink: 0; }
.recapiti { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.recapiti li { display: flex; gap: 14px; align-items: flex-start; font-size: .97rem; line-height: 1.45; }
.recapiti i {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--highlight);
  font-size: 1.05rem;
}
.recapiti span { padding-top: 5px; }

.piede { background: var(--night); color: #b9bdcb; padding: 72px 0 28px; }
.piede-griglia {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 48px;
}
.piede-marchio img { height: 50px; width: auto; }
.piede-marchio p { margin-top: 20px; max-width: 34ch; font-size: .96rem; line-height: 1.55; }
.piede h4 { margin: 0 0 18px; font-family: var(--f-text); font-size: 1rem; font-weight: 600; color: #fff; }
.piede-menu { display: grid; gap: 10px; }
.piede-menu a { font-size: .96rem; transition: color .2s ease; }
.piede-menu a:hover { color: #fff; }
.piede-recapiti { display: grid; gap: 12px; font-size: .96rem; line-height: 1.5; }
.piede-recapiti li { display: flex; gap: 12px; }
.piede-recapiti i { color: var(--highlight-soft); font-size: 1.15rem; line-height: 1.4; }
.piede-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}
.piede-legale { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.piede-legale a, .piede-cookie { transition: color .2s ease; }
.piede-legale a:hover, .piede-cookie:hover { color: #fff; }
.piede-cookie { background: none; border: 0; padding: 0; font-size: .9rem; text-decoration: underline; text-underline-offset: 3px; color: inherit; }

.ck-banner {
  position: fixed;
  left: 20px; bottom: 20px;
  z-index: 200;
  width: min(460px, calc(100vw - 40px));
  padding: 24px 24px 22px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  border-top: 4px solid var(--highlight);
  box-shadow: 0 30px 70px -20px rgba(17, 20, 33, .6), 0 0 0 1px rgba(17, 20, 33, .06);
  animation: ck-entra .45s cubic-bezier(.2, .7, .2, 1) both;
}
@keyframes ck-entra {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.ck-testa { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.ck-testa i { font-size: 1.5rem; color: var(--highlight); }
.ck-testa h2 { font-size: 1.28rem; letter-spacing: -.01em; }
.ck-banner p { font-size: .92rem; line-height: 1.55; color: #3b4053; }
.ck-banner p a, .ck-pannello p a { color: var(--highlight); text-decoration: underline; text-underline-offset: 3px; }
.ck-azioni { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.ck-btn {
  min-height: 46px;
  padding: 0 16px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 600;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.ck-rosso { background: var(--highlight); color: #fff; }
.ck-rosso:hover { background: var(--highlight-deep); }
.ck-scuro { background: var(--ink); color: #fff; }
.ck-scuro:hover { background: #2c3145; }
.ck-linea { grid-column: 1 / -1; background: transparent; border-color: var(--line); color: var(--ink); }
.ck-linea:hover { border-color: var(--ink); }

.ck-velo {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 20, 33, .66);
  animation: ck-vela .25s ease both;
}
@keyframes ck-vela { from { opacity: 0; } to { opacity: 1; } }
.ck-pannello {
  width: min(640px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 28px clamp(20px, 3.5vw, 36px) 26px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  border-top: 4px solid var(--highlight);
  box-shadow: var(--ombra-alta);
  animation: ck-entra .35s cubic-bezier(.2, .7, .2, 1) both;
}
.ck-pan-testa { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.ck-pan-testa h2 { font-size: 1.6rem; }
.ck-chiudi {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.3rem;
}
.ck-chiudi:hover { border-color: var(--ink); }
.ck-pannello > p { font-size: .95rem; color: #3b4053; line-height: 1.55; }
.ck-lista { margin: 20px 0 22px; border-top: 1px solid var(--line); }
.ck-voce {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.ck-voce h3 { font-family: var(--f-text); font-size: 1rem; font-weight: 600; letter-spacing: 0; margin-bottom: 4px; }
.ck-voce p { font-size: .9rem; color: var(--muted); line-height: 1.5; max-width: 46ch; }
.ck-switch { position: relative; flex-shrink: 0; display: block; width: 52px; height: 30px; margin-top: 2px; cursor: pointer; }
.ck-switch input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.ck-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #c3c6d2;
  transition: background-color .2s ease;
}
.ck-switch span::after {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
  transition: transform .2s ease;
}
.ck-switch input:checked + span { background: var(--highlight); }
.ck-switch input:checked + span::after { transform: translateX(22px); }
.ck-switch input:disabled { cursor: not-allowed; }
.ck-switch input:disabled + span { background: var(--ink); opacity: .55; }
.ck-switch input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 3px; }
.ck-pan-azioni { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ck-pan-azioni .ck-linea { grid-column: auto; }

@media (max-width: 1180px) {
  .aula-schede { grid-template-columns: 1fr 1fr; }
  .team-riga { grid-template-columns: 76px 1fr; }
  .team-riga > p { grid-column: 2; padding-right: 0; }
}

@media (max-width: 1020px) {
  .menu-bottone { display: flex; }
  .testata-cta { display: none; }
  .menu-principale {
    position: fixed;
    top: var(--altezza-testata);
    left: 0; right: 0; bottom: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 32px;
    background: var(--paper);
    overflow-y: auto;
  }
  .menu-principale.aperto { display: flex; }
  .menu-principale > a,
  .menu-gruppo > a { padding: 16px 4px; font-size: 1.1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .menu-gruppo > a i { display: none; }
  .menu-sotto {
    position: static;
    min-width: 0;
    padding: 0 0 0 18px;
    border: 0;
    border-left: 3px solid var(--highlight);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 4px 0 8px;
  }
  .menu-sotto a { padding: 12px 6px; font-size: 1rem; }
  .menu-principale > a.menu-cta-mobile { display: inline-flex; justify-content: center; margin-top: 24px; padding: 0 28px; border-bottom: 2px solid transparent; border-radius: 8px; color: #fff; }
  .menu-principale > a.menu-cta-mobile:hover { background: var(--highlight-deep); color: #fff; }

  .apertura-griglia { grid-template-columns: 1fr; }
  .apertura::before { width: 100%; clip-path: polygon(0 24%, 100% 0, 100% 100%, 0 100%); }
  .apertura-scena { padding-bottom: 0; }
  .scelta { position: relative; left: auto; bottom: auto; width: calc(100% - 32px); margin: -70px auto 0; }
  .apertura { padding-bottom: 72px; }

  .ambiti-testa { grid-template-columns: 1fr; align-items: start; }
  .percorso-griglia { grid-template-columns: 1fr; }
  .percorso-nota { right: 16px; }
  .assistiamo-griglia { grid-template-columns: 1fr; }
  .assistiamo-lato { position: static; }
  .team-griglia { grid-template-columns: 1fr; }
  .chiamaci-griglia { grid-template-columns: 1fr; }
  .piede-griglia { grid-template-columns: 1fr 1fr; }
  .piede-marchio { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --altezza-testata: 72px; }
  .marchio img { height: 40px; }
  .cifre-riga { flex-direction: column; gap: 6px; }
  .cifra { border-left: 0; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, .4); }
  .cifra:first-child { border-top: 0; }
  .ambiti-elenco { grid-template-columns: 1fr; }
  .ambito, .ambito:nth-child(n + 4) { grid-column: auto; border-left: 0; padding: 30px 0 32px; }
  .assistiamo-schede { grid-template-columns: 1fr; }
  .assistiamo-schede li:nth-child(even) { transform: none; }
  .assistiamo { padding-bottom: 72px; }
  .aula-schede { grid-template-columns: 1fr; }
  .team-riga { grid-template-columns: 60px 1fr; gap: 18px; padding-left: 10px; }
  .team-sigla { width: 60px; height: 60px; font-size: 1.3rem; }
  .team-riga > p { grid-column: 1 / -1; }
  .piede-griglia { grid-template-columns: 1fr; }
  .ck-banner { left: 10px; bottom: 10px; width: calc(100vw - 20px); padding: 20px 18px 18px; }
  .ck-pan-azioni { grid-template-columns: 1fr; }
  .ck-voce { gap: 14px; }
}

@media (max-width: 480px) {
  .apertura-azioni .btn-rosso, .apertura-azioni .btn-vuoto, .chiamaci-azioni a { width: 100%; }
  .percorso-nota { position: relative; right: auto; bottom: auto; max-width: none; margin: -40px 14px 0; }
  .ck-azioni { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
.menu-principale > a[aria-current="page"],
.menu-gruppo > a[aria-current="page"],
.menu-sotto a[aria-current="page"] { color: var(--highlight); }
.menu-gruppo:has(.menu-sotto a[aria-current="page"]) > a { color: var(--highlight); }

.sd-apertura h1 span,
.pf-apertura h1 span,
.ar-apertura h1 span,
.ct-apertura h1 span,
.pv-pannello h1 span,
.im-apertura h1 span { display: block; animation: emerge .85s cubic-bezier(.2, .7, .2, 1) both; }
.sd-apertura h1 .tono,
.pf-apertura h1 .tono,
.ar-apertura h1 .tono,
.ct-apertura h1 .tono,
.pv-pannello h1 .tono,
.im-apertura h1 .tono { animation-delay: .2s; }

.sd-apertura {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 6fr;
  min-height: clamp(520px, 78vh, 720px);
  background: var(--surface);
  overflow: hidden;
}
.sd-foto { position: relative; min-height: 340px; }
.sd-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sd-foto::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 14px; background: var(--highlight); }
.sd-testo {
  align-self: center;
  max-width: 740px;
  padding: clamp(48px, 7vw, 104px) var(--gutter) clamp(48px, 7vw, 96px) clamp(32px, 6vw, 96px);
}
.sd-apertura h1 { font-size: clamp(2.5rem, 5.2vw, 4.5rem); }
.sd-testo > p { margin-top: 26px; max-width: 52ch; font-size: 1.14rem; color: #363b4c; }
.sd-numeri { display: flex; flex-wrap: wrap; gap: 20px 40px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.sd-numeri strong { display: block; font-family: var(--f-display); font-weight: 700; font-size: 2.7rem; line-height: 1; color: var(--highlight); }
.sd-numeri span { display: block; margin-top: 6px; font-size: .92rem; font-weight: 500; max-width: 16ch; }

.sd-tappe { background: var(--paper); padding: clamp(60px, 8vw, 112px) 0 clamp(64px, 8vw, 116px); }
.sd-tappe-testa { display: grid; grid-template-columns: 6fr 4fr; gap: clamp(28px, 6vw, 88px); align-items: end; }
.sd-tappe-testa p { color: var(--muted); max-width: 40ch; }
.sd-linea { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: clamp(44px, 6vw, 72px); }
.sd-linea::before { content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 2px; background: var(--line); }
.sd-tappa { position: relative; padding: 38px 22px 0 0; }
.sd-tappa::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--highlight);
}
.sd-tappa:last-child::before { background: var(--highlight); }
.sd-anno { display: block; font-family: var(--f-display); font-weight: 700; font-size: 2.5rem; line-height: 1; letter-spacing: -.02em; }
.sd-tappa p { margin-top: 12px; font-size: .96rem; line-height: 1.55; color: var(--muted); }

.sd-regole { position: relative; overflow: hidden; background: var(--surface); padding: clamp(60px, 8vw, 116px) 0; }
.sd-punti {
  position: absolute;
  right: 0; top: 34px;
  width: 200px; height: 150px;
  background-image: radial-gradient(var(--highlight) 2.2px, transparent 2.7px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(210deg, #000 15%, transparent 75%);
  mask-image: linear-gradient(210deg, #000 15%, transparent 75%);
}
.sd-regole-griglia { position: relative; display: grid; grid-template-columns: 4.4fr 7fr; gap: clamp(32px, 6vw, 92px); align-items: start; }
.sd-regole-lato { position: sticky; top: calc(var(--altezza-testata) + 32px); }
.sd-regole-lato > p { margin-top: 18px; color: var(--muted); max-width: 38ch; }
.sd-regola { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 32px 0 34px; border-top: 2px solid var(--ink); }
.sd-regola:last-child { border-bottom: 1px solid var(--line); }
.sd-regola > i { font-size: 2.2rem; line-height: 1; color: var(--highlight); }
.sd-regola h3 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); margin-bottom: 8px; }
.sd-regola p { color: var(--muted); max-width: 46ch; }

.sd-sede { background: var(--night); color: #fff; padding: clamp(60px, 8vw, 112px) 0; }
.sd-sede-griglia { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.sd-sede-foto img {
  width: 100%;
  height: clamp(340px, 42vw, 500px);
  object-fit: cover;
  border-radius: var(--r-image) 130px var(--r-image) var(--r-image);
}
.sd-sede .tono,
.pf-quinte .tono { color: var(--highlight-soft); }
.sd-sede-testo > p { margin-top: 20px; color: #b9bdcb; max-width: 48ch; }
.sd-sede-dati { display: grid; gap: 14px; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .14); }
.sd-sede-dati li { display: flex; gap: 14px; align-items: flex-start; font-size: .98rem; }
.sd-sede-dati i { color: var(--highlight-soft); font-size: 1.25rem; line-height: 1.4; }

.sd-chiusura { padding: clamp(56px, 7vw, 96px) 0; background: var(--paper); }
.sd-chiusura-riquadro {
  display: grid;
  gap: 18px;
  justify-items: start;
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 56px);
  border: 2px dashed var(--highlight);
  border-radius: var(--r-image);
}
.sd-chiusura-riquadro h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.sd-chiusura-riquadro p { color: var(--muted); max-width: 52ch; }

.pf-apertura {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 112px);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}
.pf-apertura-griglia { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.pf-apertura h1 { font-size: clamp(2.5rem, 5.4vw, 4.7rem); }
.pf-apertura-testo > p { margin-top: 26px; max-width: 52ch; font-size: 1.14rem; color: #363b4c; }
.pf-apertura-azioni { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.pf-arco { position: relative; justify-self: center; width: min(100%, 430px); }
.pf-arco::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--highlight);
  border-radius: 999px 999px 26px 26px;
  transform: translate(22px, 22px);
}
.pf-arco img {
  position: relative;
  width: 100%;
  height: clamp(420px, 50vw, 560px);
  object-fit: cover;
  border-radius: 999px 999px var(--r-image) var(--r-image);
  box-shadow: var(--ombra-alta);
}
.pf-timbro {
  position: absolute;
  left: -46px; bottom: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 250px;
  padding: 14px 18px;
  background: var(--paper);
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: var(--ombra-alta);
}
.pf-timbro i { color: var(--highlight); font-size: 1.6rem; flex-shrink: 0; }

.pf-profili { background: var(--paper); padding: clamp(60px, 8vw, 112px) 0 clamp(40px, 6vw, 80px); }
.pf-elenco { margin-top: clamp(28px, 4vw, 52px); }
.pf-scheda {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(34px, 5vw, 62px) 0;
  border-top: 1px solid var(--line);
}
.pf-scheda:nth-child(even) { grid-template-columns: 7fr 4fr; }
.pf-scheda:nth-child(even) .pf-sigla { order: 2; }
.pf-sigla {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
  border-radius: var(--r-image);
  background: var(--tint);
  color: var(--highlight);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(4.4rem, 9vw, 8rem);
  letter-spacing: -.03em;
}
.pf-sigla::after {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 55%; height: 100%;
  background: repeating-linear-gradient(115deg, rgba(200, 32, 47, .3) 0 1px, transparent 1px 10px);
  -webkit-mask-image: linear-gradient(270deg, #000, transparent);
  mask-image: linear-gradient(270deg, #000, transparent);
}
.pf-nome { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.02em; }
.pf-ruolo { margin: 6px 0 16px; font-weight: 600; color: var(--highlight); }
.pf-scheda-testo > p:not(.pf-ruolo) { color: #363b4c; max-width: 54ch; }
.pf-dati { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 18px 24px; margin: 26px 0 0; padding-top: 22px; border-top: 1px solid var(--line); }
.pf-dati dt { font-size: .84rem; color: var(--muted); }
.pf-dati dd { margin: 3px 0 0; font-weight: 600; font-size: .96rem; line-height: 1.4; }

.pf-matrice { background: var(--surface); padding: clamp(60px, 8vw, 108px) 0; }
.pf-matrice-testa { display: grid; grid-template-columns: 6fr 4fr; gap: clamp(28px, 6vw, 88px); align-items: end; }
.pf-matrice-testa p { color: var(--muted); max-width: 42ch; }
.pf-tabella-scorri { position: relative; margin-top: 40px; overflow-x: auto; border-radius: var(--r-card); background: var(--paper); box-shadow: var(--ombra-card); }
.pf-tabella { width: 100%; min-width: 660px; border-collapse: collapse; }
.pf-tabella thead th {
  padding: 18px 20px;
  background: var(--ink);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.08rem;
  text-align: center;
}
.pf-tabella thead th:first-child { text-align: left; }
.pf-tabella tbody th { padding: 17px 20px; font-weight: 500; text-align: left; }
.pf-tabella td { position: relative; padding: 17px 20px; text-align: center; font-size: 1.15rem; }
.pf-tabella tbody tr { border-top: 1px solid var(--line); }
.pf-tabella tbody tr:nth-child(even) { background: #fafafd; }
.pf-guida { color: var(--highlight); }
.pf-appoggio { color: #8d92a3; }
.pf-legenda { display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 18px; font-size: .92rem; color: var(--muted); }

.pf-quinte { background: var(--night); color: #fff; padding: clamp(60px, 8vw, 108px) 0; }
.pf-quinte-coppia { display: grid; grid-template-columns: 1fr 1fr; margin-top: clamp(36px, 5vw, 60px); border-top: 1px solid rgba(255, 255, 255, .14); }
.pf-quinta { padding: 38px clamp(0px, 3vw, 44px) 38px 0; }
.pf-quinta + .pf-quinta { padding: 38px 0 38px clamp(24px, 4vw, 56px); border-left: 1px solid rgba(255, 255, 255, .14); }
.pf-quinta-icona {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--night-2);
  color: var(--highlight-soft);
  font-size: 1.7rem;
}
.pf-quinta h3 { font-size: 1.6rem; }
.pf-quinta-ruolo { margin: 4px 0 14px; color: var(--highlight-soft); font-weight: 600; }
.pf-quinta p:not(.pf-quinta-ruolo) { color: #b9bdcb; max-width: 46ch; }
.pf-quinte-fondo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
  margin-top: 34px;
  padding: 28px 32px;
  border-radius: var(--r-card);
  background: var(--highlight);
}
.pf-quinte-fondo p { max-width: 50ch; font-weight: 500; }

.ar-apertura { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 100px) 0; background: linear-gradient(135deg, #ffffff 0%, #eceef4 100%); }
.ar-cerchi {
  position: absolute;
  right: -210px; top: -170px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, transparent 0 24px, rgba(200, 32, 47, .45) 24px 25px);
  -webkit-mask-image: radial-gradient(circle at center, #000 40%, transparent 72%);
  mask-image: radial-gradient(circle at center, #000 40%, transparent 72%);
}
.ar-apertura-griglia { position: relative; display: grid; grid-template-columns: 6fr 5fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.ar-apertura h1 { font-size: clamp(2.5rem, 5.4vw, 4.7rem); }
.ar-apertura-testo > p { margin-top: 26px; max-width: 52ch; font-size: 1.14rem; color: #363b4c; }
.ar-indice { padding: 8px 28px 10px; background: var(--night); color: #fff; border-radius: var(--r-card); box-shadow: var(--ombra-alta); }
.ar-indice-titolo { padding: 20px 0 8px; font-size: .95rem; color: #b9bdcb; }
.ar-indice li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.28rem;
  transition: color .2s ease;
}
.ar-indice li:last-child a { border-bottom: 0; }
.ar-indice li a > i:first-child { color: var(--highlight-soft); font-size: 1.55rem; }
.ar-freccia { margin-left: auto; font-size: 1.3rem; transition: transform .2s ease; }
.ar-indice li a:hover { color: var(--highlight-soft); }
.ar-indice li a:hover .ar-freccia { transform: translateX(6px); }

.ar-elenco { background: var(--paper); padding: clamp(60px, 8vw, 108px) 0; }
.ar-elenco-testa { display: grid; grid-template-columns: 6fr 4fr; gap: clamp(28px, 6vw, 88px); align-items: end; margin-bottom: clamp(32px, 4vw, 52px); }
.ar-elenco-testa p { color: var(--muted); max-width: 40ch; }
.ar-voce { border-top: 1px solid var(--line); }
.ar-voce:last-child { border-bottom: 1px solid var(--line); }
.ar-voce summary { display: flex; align-items: center; gap: 22px; padding: 26px 0; list-style: none; cursor: pointer; }
.ar-voce summary::-webkit-details-marker { display: none; }
.ar-voce-icona {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 60px; height: 60px;
  border: 1.5px solid var(--highlight);
  border-radius: 12px;
  color: var(--highlight);
  font-size: 1.9rem;
}
.ar-voce-titolo { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.15; letter-spacing: -.015em; }
.ar-voce-breve { display: block; margin-top: 5px; font-family: var(--f-text); font-weight: 400; font-size: .98rem; letter-spacing: 0; color: var(--muted); }
.ar-voce-segno { margin-left: auto; font-size: 1.9rem; color: var(--highlight); transition: transform .25s ease; }
.ar-voce[open] .ar-voce-segno { transform: rotate(45deg); }
.ar-voce[open] { background: linear-gradient(90deg, var(--tint), rgba(251, 232, 234, 0) 45%); }
.ar-voce summary:hover .ar-voce-titolo { color: var(--highlight); }
.ar-corpo { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 5vw, 64px); padding: 4px 0 38px 82px; }
.ar-corpo-titolo { margin-bottom: 12px; font-family: var(--f-text); font-size: 1rem; font-weight: 600; letter-spacing: 0; }
.ar-corpo p { color: #363b4c; max-width: 50ch; }
.ar-chi { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-weight: 600; color: var(--ink) !important; }
.ar-chi i { color: var(--highlight); font-size: 1.2rem; }

.ar-situazioni { background: var(--surface); padding: clamp(60px, 8vw, 108px) 0; }
.ar-righe { margin-top: 40px; border-top: 2px solid var(--ink); }
.ar-riga {
  display: grid;
  grid-template-columns: 1.15fr .8fr 1.5fr;
  gap: 12px 32px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.ar-riga strong { font-family: var(--f-display); font-weight: 600; font-size: 1.36rem; line-height: 1.2; letter-spacing: -.01em; }
.ar-area {
  justify-self: start;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--tint);
  color: var(--highlight-deep);
  font-size: .9rem;
  font-weight: 600;
}
.ar-riga p { color: var(--muted); font-size: 1rem; }

.ar-fine { position: relative; overflow: hidden; background: var(--night); color: #fff; padding: clamp(56px, 7vw, 92px) 0; }
.ar-fine-punti {
  position: absolute;
  left: 0; bottom: 0;
  width: 200px; height: 150px;
  background-image: radial-gradient(rgba(255, 255, 255, .28) 2px, transparent 2.5px);
  background-size: 17px 17px;
  -webkit-mask-image: linear-gradient(50deg, #000, transparent 75%);
  mask-image: linear-gradient(50deg, #000, transparent 75%);
}
.ar-fine-riga { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px 48px; }
.ar-fine .tono { color: var(--highlight-soft); }
.ar-fine-azioni { display: flex; flex-wrap: wrap; gap: 14px; }
.ar-fine .btn-vuoto { border-color: #fff; color: #fff; }
.ar-fine .btn-vuoto:hover { background: #fff; color: var(--ink); }

.ct-apertura {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(56px, 8vw, 108px) 0 0;
  background:
    linear-gradient(180deg, rgba(17, 20, 33, .86), rgba(17, 20, 33, .95)),
    url("https://images.pexels.com/photos/8152738/pexels-photo-8152738.jpeg?auto=compress&cs=tinysrgb&w=1600") center / cover no-repeat;
}
.ct-apertura h1 { max-width: 18ch; font-size: clamp(2.6rem, 6vw, 5.1rem); }
.ct-apertura .tono { color: var(--highlight-soft); }
.ct-apertura .telaio > p { margin-top: 26px; max-width: 54ch; font-size: 1.16rem; color: #d3d6e0; }
.ct-termini { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(44px, 6vw, 84px); border-top: 1px solid rgba(255, 255, 255, .22); }
.ct-termine { padding: 34px clamp(18px, 2.6vw, 38px) 44px; border-left: 1px solid rgba(255, 255, 255, .22); }
.ct-termine:first-child { padding-left: 0; border-left: 0; }
.ct-termine strong { display: block; font-family: var(--f-display); font-weight: 700; font-size: clamp(3.6rem, 6.4vw, 5.6rem); line-height: .95; letter-spacing: -.03em; }
.ct-termine strong small { margin-left: 10px; font-family: var(--f-text); font-weight: 600; font-size: .26em; letter-spacing: 0; color: var(--highlight-soft); }
.ct-termine p { margin-top: 14px; max-width: 30ch; font-size: .98rem; color: #c6c9d6; }
.ct-nota .telaio { display: block; }
.ct-nota { padding: 16px 0; background: var(--highlight); font-size: .96rem; font-weight: 500; }

.ct-scala { background: var(--surface); padding: clamp(60px, 8vw, 112px) 0 clamp(64px, 8vw, 116px); }
.ct-scala-testa { display: grid; grid-template-columns: 6fr 4fr; gap: clamp(28px, 6vw, 88px); align-items: end; }
.ct-scala-testa p { color: var(--muted); max-width: 40ch; }
.ct-gradini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; margin-top: clamp(40px, 5vw, 64px); }
.ct-gradino { padding: 28px 24px 30px; background: var(--paper); border-top: 4px solid var(--highlight); border-radius: var(--r-card); box-shadow: var(--ombra-card); }
.ct-gradino:nth-child(2) { margin-top: 46px; }
.ct-gradino:nth-child(3) { margin-top: 92px; }
.ct-gradino:nth-child(4) { margin-top: 138px; background: var(--ink); color: #fff; }
.ct-gradino > i { display: block; margin-bottom: 16px; font-size: 2.1rem; line-height: 1; color: var(--highlight); }
.ct-gradino:nth-child(4) > i { color: var(--highlight-soft); }
.ct-gradino h3 { margin-bottom: 8px; font-size: 1.36rem; }
.ct-gradino p { font-size: .97rem; color: var(--muted); }
.ct-gradino:nth-child(4) p { color: #b9bdcb; }
.ct-misure { display: grid; gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .88rem; font-weight: 500; }
.ct-gradino:nth-child(4) .ct-misure { border-top-color: rgba(255, 255, 255, .16); }
.ct-misura { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ct-tacche { display: flex; gap: 4px; }
.ct-tacche span { width: 22px; height: 8px; border-radius: 2px; background: var(--line); }
.ct-gradino:nth-child(4) .ct-tacche span { background: rgba(255, 255, 255, .2); }
.ct-tacche span.on { background: var(--highlight); }
.ct-gradino:nth-child(4) .ct-tacche span.on { background: var(--highlight-soft); }

.ct-limiti { background: var(--paper); padding: clamp(60px, 8vw, 112px) 0; }
.ct-limiti-griglia { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(36px, 7vw, 104px); align-items: center; }
.ct-limiti-foto { position: relative; isolation: isolate; }
.ct-limiti-foto::after {
  content: "";
  position: absolute;
  right: -18px; bottom: -18px;
  z-index: -1;
  width: 62%; height: 62%;
  border: 3px solid var(--highlight);
  border-radius: var(--r-image);
}
.ct-limiti-foto img { width: 100%; height: clamp(360px, 44vw, 600px); object-fit: cover; border-radius: var(--r-image); box-shadow: var(--ombra-alta); }
.ct-no { margin-top: 30px; border-top: 2px solid var(--ink); }
.ct-no li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.ct-no i { font-size: 1.7rem; line-height: 1.2; color: var(--highlight); }
.ct-no strong { display: block; margin-bottom: 3px; font-weight: 600; }
.ct-no p { color: var(--muted); font-size: .98rem; }

.ct-domande { background: var(--surface); padding: clamp(60px, 8vw, 108px) 0; }
.ct-domande-testa { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px 48px; }
.ct-domande-testa p { color: var(--muted); max-width: 36ch; }
.ct-quesiti { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; margin-top: 44px; }
.ct-quesito { background: var(--paper); border-left: 4px solid transparent; border-radius: 14px; box-shadow: var(--ombra-card); }
.ct-quesito[open] { border-left-color: var(--highlight); }
.ct-quesito summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  list-style: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.25;
}
.ct-quesito summary::-webkit-details-marker { display: none; }
.ct-quesito summary i { flex-shrink: 0; font-size: 1.5rem; color: var(--highlight); transition: transform .25s ease; }
.ct-quesito[open] summary i { transform: rotate(45deg); }
.ct-quesito p { padding: 0 24px 24px; font-size: .98rem; color: var(--muted); }

.ct-chiusura { background: var(--highlight); color: #fff; padding: clamp(44px, 6vw, 76px) 0; }
.ct-chiusura-riga { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 48px; }
.ct-chiusura h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.ct-chiusura p { margin-top: 10px; max-width: 48ch; color: rgba(255, 255, 255, .92); }

.pv-apertura { padding: clamp(28px, 4vw, 52px) 0 clamp(96px, 9vw, 130px); background: var(--surface); }
.pv-banner img { width: 100%; height: clamp(300px, 38vw, 470px); object-fit: cover; border-radius: var(--r-image); }
.pv-pannello {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: -96px 0 0 clamp(0px, 4vw, 56px);
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  border-left: 5px solid var(--highlight);
  border-radius: var(--r-card);
  box-shadow: var(--ombra-alta);
}
.pv-pannello h1 { font-size: clamp(2.1rem, 4.2vw, 3.5rem); }
.pv-pannello > p { margin-top: 20px; max-width: 50ch; font-size: 1.12rem; color: #363b4c; }
.pv-azioni { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.pv-voci { background: var(--paper); padding: clamp(60px, 8vw, 112px) 0; }
.pv-voci-testa h2 { max-width: 30ch; }
.pv-scambi { display: grid; gap: 44px; max-width: 980px; margin: clamp(36px, 5vw, 60px) auto 0; }
.pv-scambio { display: grid; gap: 14px; }
.pv-domanda, .pv-risposta { display: flex; align-items: flex-end; gap: 14px; }
.pv-domanda { justify-self: start; max-width: min(580px, 94%); }
.pv-risposta { justify-self: end; flex-direction: row-reverse; max-width: min(620px, 94%); }
.pv-bolla { padding: 20px 26px; border-radius: 22px 22px 22px 4px; background: var(--surface); font-family: var(--f-display); font-weight: 500; font-size: 1.28rem; line-height: 1.35; }
.pv-risposta .pv-bolla { border-radius: 22px 22px 4px 22px; background: var(--ink); color: #fff; font-family: var(--f-text); font-weight: 400; font-size: 1rem; line-height: 1.55; }
.pv-avatar { display: grid; place-items: center; flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--tint); color: var(--highlight); font-size: 1.3rem; }
.pv-risposta .pv-avatar { background: var(--highlight); color: #fff; }

.pv-compensi { position: relative; overflow: hidden; background: var(--surface); padding: clamp(60px, 8vw, 108px) 0; }
.pv-compensi-testa { display: grid; grid-template-columns: 6fr 4fr; gap: clamp(28px, 6vw, 88px); align-items: end; }
.pv-compensi-testa p { color: var(--muted); max-width: 42ch; }
.pv-confronto-scorri { margin-top: 40px; overflow-x: auto; border-radius: var(--r-card); box-shadow: var(--ombra-card); background: var(--paper); }
.pv-confronto { width: 100%; min-width: 700px; border-collapse: collapse; }
.pv-confronto thead th { padding: 22px 24px; text-align: left; font-family: var(--f-display); font-weight: 600; font-size: 1.5rem; border-bottom: 4px solid var(--highlight); }
.pv-confronto th, .pv-confronto td { vertical-align: top; }
.pv-confronto tbody th { width: 19%; padding: 22px 24px; text-align: left; font-size: .96rem; font-weight: 600; color: var(--muted); }
.pv-confronto td { padding: 22px 24px; font-size: .98rem; line-height: 1.55; }
.pv-confronto tbody tr { border-top: 1px solid var(--line); }
.pv-confronto tbody tr:first-child { border-top: 0; }

.pv-subito { background: var(--paper); padding: clamp(60px, 8vw, 112px) 0; }
.pv-subito-griglia { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.pv-cinque { margin-top: 30px; border-top: 2px solid var(--ink); }
.pv-cinque li { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.pv-cinque i { flex-shrink: 0; margin-top: 2px; font-size: 1.7rem; line-height: 1.1; color: var(--highlight); }
.pv-cinque strong { display: block; font-weight: 600; }
.pv-cinque p { color: var(--muted); font-size: .98rem; }
.pv-riserva {
  position: sticky;
  top: calc(var(--altezza-testata) + 32px);
  overflow: hidden;
  padding: clamp(28px, 3.4vw, 42px);
  background: var(--highlight);
  color: #fff;
  border-radius: var(--r-image) var(--r-image) 110px var(--r-image);
  box-shadow: var(--ombra-alta);
}
.pv-riserva::after {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 150px; height: 120px;
  background-image: radial-gradient(rgba(255, 255, 255, .4) 2px, transparent 2.5px);
  background-size: 16px 16px;
  -webkit-mask-image: linear-gradient(210deg, #000, transparent 75%);
  mask-image: linear-gradient(210deg, #000, transparent 75%);
}
.pv-riserva > i { display: block; margin-bottom: 18px; font-size: 2.6rem; line-height: 1; }
.pv-riserva h3 { position: relative; font-size: 1.7rem; }
.pv-riserva p { position: relative; margin: 14px 0 26px; color: rgba(255, 255, 255, .94); }
.pv-riserva .btn-bianco { position: relative; margin-bottom: 40px; }

.im-apertura { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 100px) 0 clamp(64px, 8vw, 112px); background: var(--paper); }
.im-apertura::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
  background: linear-gradient(200deg, #eceef4 0%, #f7f8fb 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.im-apertura-griglia { position: relative; display: grid; grid-template-columns: 6fr 5fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.im-apertura h1 { font-size: clamp(2.5rem, 5.2vw, 4.5rem); }
.im-apertura-testo > p { margin-top: 26px; max-width: 52ch; font-size: 1.14rem; color: #363b4c; }
.im-apertura-azioni { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.im-canone {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.4vw, 42px);
  background: var(--night);
  color: #fff;
  border-top: 5px solid var(--highlight);
  border-radius: var(--r-image);
  box-shadow: var(--ombra-alta);
  transform: rotate(1.2deg);
}
.im-canone::after {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 46%; height: 150px;
  background: repeating-linear-gradient(115deg, rgba(255, 74, 90, .5) 0 1px, transparent 1px 9px);
  -webkit-mask-image: linear-gradient(250deg, #000, transparent 80%);
  mask-image: linear-gradient(250deg, #000, transparent 80%);
}
.im-canone h2 { position: relative; font-size: 1.9rem; }
.im-canone-sotto { position: relative; margin-top: 10px; color: #b9bdcb; }
.im-canone ul { position: relative; margin-top: 18px; }
.im-canone li { display: flex; gap: 14px; align-items: flex-start; padding: 15px 0; border-top: 1px solid rgba(255, 255, 255, .13); font-size: 1rem; }
.im-canone li i { color: var(--highlight-soft); font-size: 1.35rem; line-height: 1.3; flex-shrink: 0; }
.im-canone-nota { position: relative; margin-top: 8px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .13); font-size: .92rem; color: #b9bdcb; }

.im-aree { background: var(--surface); padding: clamp(60px, 8vw, 108px) 0; }
.im-aree-testa h2 { max-width: 22ch; }
.im-bento { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; margin-top: clamp(32px, 4.5vw, 56px); }
.im-tessera { display: flex; flex-direction: column; gap: 16px; padding: 30px; background: var(--paper); border-radius: var(--r-card); box-shadow: var(--ombra-card); }
.im-tessera > i { font-size: 2rem; line-height: 1; color: var(--highlight); }
.im-tessera h3 { margin-bottom: 8px; font-size: 1.3rem; }
.im-tessera p { font-size: .97rem; color: var(--muted); }
.im-tessera-grande { grid-row: span 2; justify-content: space-between; padding: 38px; background: var(--highlight); color: #fff; }
.im-tessera-grande > i { font-size: 3.4rem; color: #fff; }
.im-tessera-grande h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom: 14px; }
.im-tessera-grande p { font-size: 1.06rem; color: rgba(255, 255, 255, .94); max-width: 38ch; }

.im-settori { background: var(--paper); padding: clamp(60px, 8vw, 112px) 0; }
.im-settori-griglia { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(36px, 7vw, 100px); align-items: center; }
.im-settori-elenco { display: grid; gap: 6px; margin: 30px 0 0; }
.im-settore { padding: 18px 0 18px 22px; border-left: 4px solid var(--line); transition: border-color .2s ease, background-color .2s ease; }
.im-settore:hover { border-left-color: var(--highlight); background: var(--surface); }
.im-settore dt { font-family: var(--f-display); font-weight: 600; font-size: 1.32rem; letter-spacing: -.01em; }
.im-settore dd { margin: 4px 0 0; color: var(--muted); font-size: .98rem; max-width: 48ch; }
.im-settori-foto img {
  width: 100%;
  height: clamp(380px, 46vw, 620px);
  object-fit: cover;
  border-radius: var(--r-image) var(--r-image) 130px var(--r-image);
  box-shadow: var(--ombra-alta);
}

.im-confronto { background: var(--surface); padding: clamp(60px, 8vw, 112px) 0; }
.im-confronto h2 { max-width: 20ch; }
.im-duello { display: grid; grid-template-columns: 1fr 1fr; margin-top: clamp(32px, 4.5vw, 56px); overflow: hidden; border-radius: var(--r-image); box-shadow: var(--ombra-alta); }
.im-senza, .im-con { padding: clamp(28px, 4vw, 50px); }
.im-senza { background: var(--night); color: #fff; }
.im-con { background: var(--paper); border-top: 5px solid var(--highlight); }
.im-senza h3, .im-con h3 { margin-bottom: 18px; font-size: 1.6rem; }
.im-senza li, .im-con li { display: flex; gap: 14px; align-items: flex-start; padding: 15px 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.im-con li { border-top-color: var(--line); }
.im-senza li i, .im-con li i { flex-shrink: 0; font-size: 1.4rem; line-height: 1.3; }
.im-senza li i { color: var(--highlight-soft); }
.im-con li i { color: var(--highlight); }

.im-fine { padding: clamp(52px, 7vw, 92px) 0; background: var(--paper); border-top: 4px solid var(--highlight); }
.im-fine-riga { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 48px; }
.im-fine h2 { max-width: 20ch; font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
.im-fine p { margin-top: 12px; max-width: 50ch; color: var(--muted); }
.im-fine .btn-bianco { background: var(--highlight); color: #fff; box-shadow: 0 14px 26px -14px rgba(200, 32, 47, .8); }
.im-fine .btn-bianco:hover { background: var(--highlight-deep); }

@media (max-width: 1180px) {
  .ct-gradini { grid-template-columns: 1fr 1fr; }
  .ct-gradino:nth-child(n) { margin-top: 0; }
  .ct-gradino:nth-child(even) { margin-top: 36px; }
  .pf-dati { grid-template-columns: 1fr 1fr; }
  .pf-dati div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 1020px) {
  .sd-apertura { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .sd-foto { min-height: 320px; height: 44vw; }
  .sd-foto::after { top: auto; left: 0; width: auto; height: 12px; }
  .sd-testo { padding: 44px var(--gutter) 56px; }
  .sd-tappe-testa { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .sd-regole-griglia { grid-template-columns: minmax(0, 1fr); }
  .sd-regole-lato { position: static; }
  .sd-sede-griglia { grid-template-columns: minmax(0, 1fr); }

  .pf-apertura-griglia { grid-template-columns: minmax(0, 1fr); }
  .pf-arco { justify-self: start; width: min(100%, 400px); margin-right: 22px; }
  .pf-timbro { left: 12px; bottom: 24px; }
  .pf-scheda, .pf-scheda:nth-child(even) { grid-template-columns: minmax(0, 1fr); }
  .pf-scheda:nth-child(even) .pf-sigla { order: 0; }
  .pf-sigla { aspect-ratio: 16 / 7; font-size: clamp(4rem, 14vw, 7rem); }
  .pf-matrice-testa { grid-template-columns: minmax(0, 1fr); align-items: start; }

  .ar-apertura-griglia { grid-template-columns: minmax(0, 1fr); }
  .ar-elenco-testa { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .ar-corpo { padding-left: 0; grid-template-columns: minmax(0, 1fr); }
  .ct-scala-testa { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .ct-limiti-griglia { grid-template-columns: minmax(0, 1fr); }
  .ct-limiti-foto { margin-right: 18px; }
  .ct-quesiti { grid-template-columns: minmax(0, 1fr); }

  .pv-compensi-testa { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .pv-subito-griglia { grid-template-columns: minmax(0, 1fr); }
  .pv-riserva { position: static; }
  .pv-pannello { margin-left: 0; }

  .im-apertura::before { width: 100%; clip-path: polygon(0 40%, 100% 20%, 100% 100%, 0 100%); }
  .im-apertura-griglia { grid-template-columns: minmax(0, 1fr); }
  .im-canone { transform: none; }
  .im-bento { grid-template-columns: 1fr 1fr; }
  .im-tessera-grande { grid-column: 1 / -1; grid-row: auto; }
  .im-settori-griglia { grid-template-columns: minmax(0, 1fr); }
  .im-settori-foto { order: -1; }
  .im-duello { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
  .sd-linea { grid-template-columns: minmax(0, 1fr); padding-left: 8px; }
  .sd-linea::before { left: 18px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .sd-tappa { padding: 0 0 30px 46px; }
  .sd-tappa::before { left: 0; top: 4px; }
  .sd-numeri { gap: 18px 28px; }

  .pf-quinte-coppia { grid-template-columns: minmax(0, 1fr); }
  .pf-quinta, .pf-quinta + .pf-quinta { padding: 30px 0; border-left: 0; }
  .pf-quinta + .pf-quinta { border-top: 1px solid rgba(255, 255, 255, .14); }
  .pf-quinte-fondo { padding: 24px 22px; }

  .ar-voce summary { gap: 14px; }
  .ar-voce-icona { width: 48px; height: 48px; font-size: 1.5rem; }
  .ar-riga { grid-template-columns: minmax(0, 1fr); }

  .ct-termini { grid-template-columns: minmax(0, 1fr); }
  .ct-termine, .ct-termine:first-child { padding: 26px 0 30px; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .22); }
  .ct-termine:first-child { border-top: 0; }
  .ct-gradini { grid-template-columns: minmax(0, 1fr); }
  .ct-gradino:nth-child(n) { margin-top: 0; }

  .pv-pannello { margin-top: -60px; }
  .pv-bolla { font-size: 1.12rem; padding: 16px 20px; }
  .pv-domanda, .pv-risposta { max-width: 100%; }
  .im-bento { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 480px) {
  .pf-apertura-azioni .btn-rosso, .pf-apertura-azioni .btn-vuoto,
  .pv-azioni .btn-rosso, .pv-azioni .btn-vuoto,
  .im-apertura-azioni .btn-rosso, .im-apertura-azioni .btn-vuoto,
  .ar-fine-azioni a, .sd-chiusura-riquadro .btn-rosso, .ct-chiusura .btn-bianco,
  .im-fine .btn-bianco, .pf-quinte-fondo .btn-bianco { width: 100%; }
  .pf-dati { grid-template-columns: minmax(0, 1fr); }
}
.cn-apertura h1 span { display: block; animation: emerge .85s cubic-bezier(.2, .7, .2, 1) both; }
.cn-apertura h1 .tono { animation-delay: .2s; }

.cn-apertura {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 88px) 0 clamp(80px, 9vw, 124px);
  background: linear-gradient(135deg, #ffffff 0%, #eceef4 100%);
}
.cn-lastra {
  position: absolute;
  top: 8%; right: -6%;
  width: 50%; height: 86%;
  background: linear-gradient(160deg, var(--highlight) 0%, var(--highlight-deep) 100%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}
.cn-cerchi {
  position: absolute;
  left: -230px; bottom: -190px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, transparent 0 24px, rgba(200, 32, 47, .42) 24px 25px);
  -webkit-mask-image: radial-gradient(circle at center, #000 42%, transparent 72%);
  mask-image: radial-gradient(circle at center, #000 42%, transparent 72%);
}
.cn-griglia { position: relative; display: grid; grid-template-columns: 6fr 5fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.cn-apertura h1 { font-size: clamp(2.4rem, 4.6vw, 4.1rem); }
.cn-testo > p { margin-top: 26px; max-width: 50ch; font-size: 1.14rem; color: #363b4c; }
.cn-garanzie { display: grid; gap: 14px; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); max-width: 520px; }
.cn-garanzie li { display: flex; align-items: center; gap: 14px; font-size: .98rem; font-weight: 500; }
.cn-garanzie i {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--highlight);
  font-size: 1.15rem;
}

.cn-lato { position: relative; padding: 20px 0 0; }
.cn-timbro {
  position: absolute;
  top: -8px; right: -18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 118px; height: 118px;
  padding: 16px;
  border: 3px double var(--highlight-deep);
  border-radius: 50%;
  background: var(--paper);
  color: var(--highlight-deep);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: 0 12px 24px -12px rgba(17, 20, 33, .5);
}
.cn-modulo {
  position: relative;
  padding: 34px clamp(24px, 3.4vw, 40px) 30px;
  background: var(--paper);
  border-radius: 8px 8px 18px 18px;
  border-bottom: 6px solid var(--ink);
  box-shadow: var(--ombra-alta);
}
.cn-modulo-testa { padding-right: 84px; }
.cn-modulo-testa h2 { font-size: 1.85rem; }
.cn-tema { margin-top: 8px; font-size: .92rem; color: var(--muted); }
.cn-tema strong { color: var(--highlight-deep); font-weight: 600; }
.cn-taglio {
  position: relative;
  height: 0;
  margin: 26px 0 26px;
  border-top: 2px dashed var(--line);
}
.cn-taglio i {
  position: absolute;
  left: 0; top: -13px;
  padding-right: 8px;
  background: var(--paper);
  font-size: 1.15rem;
  color: var(--muted);
}
.cn-esca { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cn-campo { margin-bottom: 18px; }
.cn-campo label { display: block; margin-bottom: 7px; font-size: .94rem; font-weight: 600; }
.cn-campo input[type="text"],
.cn-campo input[type="email"],
.cn-campo input[type="tel"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.cn-campo input:focus { outline: none; border-color: var(--highlight); background: var(--paper); box-shadow: 0 0 0 4px rgba(200, 32, 47, .14); }
.cn-campo.non-valido input[type="text"],
.cn-campo.non-valido input[type="email"],
.cn-campo.non-valido input[type="tel"] { border-color: var(--highlight); background: #fff6f7; }
.cn-errore { margin-top: 6px; font-size: .86rem; font-weight: 500; color: var(--highlight-deep); }
.cn-errore:empty { display: none; }
.cn-consenso { display: grid; grid-template-columns: 22px 1fr; gap: 4px 12px; align-items: start; margin: 6px 0 22px; }
.cn-consenso input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--highlight); }
.cn-consenso label { margin: 0; font-size: .9rem; font-weight: 400; line-height: 1.5; color: var(--muted); }
.cn-consenso label a { color: var(--highlight); text-decoration: underline; text-underline-offset: 3px; }
.cn-consenso .cn-errore { grid-column: 1 / -1; }
.cn-modulo .btn-rosso:disabled { opacity: .7; cursor: progress; }
.cn-nota-modulo { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; font-size: .86rem; line-height: 1.45; color: var(--muted); }
.cn-nota-modulo i { font-size: 1.15rem; line-height: 1.2; color: var(--highlight); }

.cn-velo {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 20, 33, .66);
  animation: ck-vela .25s ease both;
}
.cn-grazie {
  position: relative;
  width: min(480px, 100%);
  padding: 44px clamp(24px, 4vw, 38px) 32px;
  background: var(--paper);
  border-top: 5px solid var(--highlight);
  border-radius: 20px;
  box-shadow: var(--ombra-alta);
  animation: ck-entra .35s cubic-bezier(.2, .7, .2, 1) both;
}
.cn-grazie-icona {
  display: grid;
  place-items: center;
  width: 68px; height: 68px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--highlight);
  font-size: 2.1rem;
}
.cn-grazie h2 { padding-right: 40px; font-size: 1.9rem; }
.cn-grazie p { margin: 14px 0 28px; color: #363b4c; }
.cn-chiudi {
  position: absolute;
  top: 16px; right: 16px;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.3rem;
}
.cn-chiudi:hover { border-color: var(--ink); }

.cn-dopo { background: var(--paper); padding: clamp(60px, 8vw, 108px) 0; }
.cn-dopo-testa { display: grid; grid-template-columns: 6fr 4fr; gap: clamp(28px, 6vw, 88px); align-items: end; }
.cn-dopo-testa p { max-width: 40ch; color: var(--muted); }
.cn-biglietti { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(36px, 5vw, 60px); }
.cn-biglietto {
  position: relative;
  padding: 38px clamp(22px, 2.6vw, 34px) 40px;
  background: var(--surface);
  border: 1.5px solid var(--line);
}
.cn-biglietto:first-child { border-radius: 18px 0 0 18px; }
.cn-biglietto:last-child { border-radius: 0 18px 18px 0; }
.cn-biglietto + .cn-biglietto { border-left: 2px dashed #c3c6d2; }
.cn-biglietto + .cn-biglietto::before,
.cn-biglietto + .cn-biglietto::after {
  content: "";
  position: absolute;
  left: -13px;
  width: 24px; height: 24px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}
.cn-biglietto + .cn-biglietto::before { top: -13px; clip-path: inset(50% 0 0 0); }
.cn-biglietto + .cn-biglietto::after { bottom: -13px; clip-path: inset(0 0 50% 0); }
.cn-numero {
  display: block;
  margin-bottom: 18px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 4.4rem;
  line-height: .85;
  letter-spacing: -.03em;
  color: var(--highlight);
}
.cn-biglietto h3 { margin-bottom: 10px; font-size: 1.5rem; }
.cn-biglietto p { color: var(--muted); font-size: .98rem; }

.cn-sede { background: var(--surface); padding: clamp(60px, 8vw, 108px) 0; }
.cn-sede-griglia { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(24px, 4vw, 56px); align-items: stretch; }
.cn-recapiti { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 48px); background: var(--night); color: #fff; border-radius: var(--r-image); }
.cn-recapiti .tono { color: var(--highlight-soft); }
.cn-dati { margin-top: 26px; }
.cn-dati li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: center; padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.cn-dati i {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--night-2);
  color: var(--highlight-soft);
  font-size: 1.3rem;
}
.cn-dati strong { display: block; font-size: .86rem; font-weight: 500; color: #b9bdcb; }
.cn-dati span { display: block; margin-top: 2px; font-size: 1.05rem; line-height: 1.4; }
.cn-arrivo { margin-top: 6px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .96rem; color: #b9bdcb; }
.cn-mappa {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--r-image) var(--r-image) 120px var(--r-image);
  background-color: #e6e9f0;
  background-image:
    linear-gradient(rgba(200, 32, 47, .1) 2px, transparent 2px),
    linear-gradient(90deg, rgba(200, 32, 47, .1) 2px, transparent 2px);
  background-size: 48px 48px;
  box-shadow: var(--ombra-card);
}
.cn-mappa-vuota { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 16px; padding: 32px; text-align: center; }
.cn-mappa-vuota i { font-size: 3.4rem; line-height: 1; color: var(--highlight); }
.cn-mappa-vuota p { max-width: 34ch; color: #363b4c; }
.cn-mappa iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.cn-domande { background: var(--paper); padding: clamp(60px, 8vw, 108px) 0; }
.cn-domande-griglia { display: grid; grid-template-columns: 4.6fr 7fr; gap: clamp(32px, 6vw, 92px); align-items: start; }
.cn-domande-lato { position: sticky; top: calc(var(--altezza-testata) + 32px); }
.cn-domande-lato p { margin-top: 18px; max-width: 36ch; color: var(--muted); }
.cn-quesito { border-top: 1px solid var(--line); }
.cn-quesito:last-child { border-bottom: 1px solid var(--line); }
.cn-quesito summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.32rem;
  line-height: 1.25;
}
.cn-quesito summary::-webkit-details-marker { display: none; }
.cn-quesito summary i { flex-shrink: 0; font-size: 1.7rem; color: var(--highlight); transition: transform .25s ease; }
.cn-quesito[open] summary i { transform: rotate(45deg); }
.cn-quesito p { padding: 0 44px 26px 0; color: var(--muted); }
.cn-quesito p a { color: var(--highlight); text-decoration: underline; text-underline-offset: 3px; }

.lg-pagina { background: var(--paper); padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 112px); }
.lg-colonna { max-width: 860px; }
.lg-pagina h1 { display: inline-block; padding-bottom: 20px; border-bottom: 4px solid var(--highlight); font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.lg-intro { max-width: 62ch; margin-top: 28px; font-size: 1.14rem; color: #363b4c; }
.lg-pagina h2 { margin: 42px 0 12px; font-size: 1.45rem; letter-spacing: -.01em; }
.lg-pagina p { max-width: 68ch; margin-bottom: 12px; color: #363b4c; }
.lg-pagina .punti-rossi { max-width: 68ch; margin: 10px 0 14px; }
.lg-pagina a { color: var(--highlight); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1020px) {
  .cn-griglia { grid-template-columns: minmax(0, 1fr); }
  .cn-lastra { top: 34%; right: -20%; width: 90%; height: 62%; }
  .cn-lato { padding-top: 34px; }
  .cn-timbro { right: 4px; top: 6px; }
  .cn-dopo-testa { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .cn-sede-griglia { grid-template-columns: minmax(0, 1fr); }
  .cn-mappa { min-height: 380px; }
  .cn-domande-griglia { grid-template-columns: minmax(0, 1fr); }
  .cn-domande-lato { position: static; }
}

@media (max-width: 760px) {
  .cn-biglietti { grid-template-columns: minmax(0, 1fr); }
  .cn-biglietto:first-child { border-radius: 18px 18px 0 0; }
  .cn-biglietto:last-child { border-radius: 0 0 18px 18px; }
  .cn-biglietto + .cn-biglietto { border-left: 1.5px solid var(--line); border-top: 2px dashed #c3c6d2; }
  .cn-biglietto + .cn-biglietto::before { top: -13px; left: -13px; clip-path: inset(0 0 0 50%); }
  .cn-biglietto + .cn-biglietto::after { top: -13px; bottom: auto; left: auto; right: -13px; clip-path: inset(0 50% 0 0); }
  .cn-modulo-testa { padding-right: 0; }
  .cn-timbro { top: -30px; width: 100px; height: 100px; font-size: .7rem; }
  .cn-quesito p { padding-right: 0; }
}