@font-face {
  font-family: "Nefelibata Script";
  src: url("../Font/Nefelibata-Script/Nefelibata-Script.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  color: #1C2A3A;
  background: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), #FFFFFF);
  z-index: 300;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #2181BC;
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease 0.2s, visibility 0.5s ease 0.2s;
}
.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
}
.loader-text {
  margin-bottom: 1.5rem;
}
.loader-title {
  font-family: "Nefelibata Script", cursive;
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}
.loader-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.loader-bar {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-bar::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 3px;
  animation: load 1s ease-in-out infinite;
}

@keyframes load {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.2rem, 3vw, 3rem);
  transition: all 0.3s ease;
}
.topbar.pinned {
  background: rgba(33, 129, 188, 0.95);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.topbar-brand {
  font-family: "Nefelibata Script", cursive;
  font-size: 1.4rem;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  margin-right: auto;
}
.topbar-nav {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}
.topbar-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.25s;
  position: relative;
}
.topbar-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #FFFFFF;
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.topbar-nav a:hover, .topbar-nav a.active {
  color: #FFFFFF;
}
.topbar-nav a:hover::after, .topbar-nav a.active::after {
  width: 100%;
}
.topbar-nav a.nav-cta {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.topbar-nav a.nav-cta::after {
  display: none;
}
.topbar-nav a.nav-cta:hover {
  background: #FFFFFF;
  color: #2181BC;
  border-color: #FFFFFF;
}
.topbar-nav.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #143A54;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 9998;
}
.topbar-nav.open a {
  font-size: 1.3rem;
  color: #FFFFFF;
}
.topbar-nav.open a.nav-cta {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1.8rem;
  border-radius: 100px;
  font-size: 1.3rem;
  margin-top: 0.5rem;
}
.topbar-nav.open a.nav-cta:hover {
  background: #FFFFFF;
  color: #2181BC;
}

.topbar-notify {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  margin-left: 1rem;
  border-radius: 50%;
  transition: background 0.25s ease;
}
.topbar-notify svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.75);
  transition: stroke 0.25s ease;
  display: block;
}
.topbar-notify:hover {
  background: rgba(255, 255, 255, 0.12);
}
.topbar-notify:hover svg {
  stroke: #FFFFFF;
}
.topbar-notify-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: #E8A838;
  border-radius: 50%;
  border: 1.5px solid #2181BC;
  animation: notify-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.pinned .topbar-notify-dot {
  border-color: rgba(33, 129, 188, 0.95);
}

@keyframes notify-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 168, 56, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(232, 168, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 168, 56, 0);
  }
}
.burger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 9999;
}
.burger i {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger i:nth-child(1) {
  top: 0;
}
.burger i:nth-child(2) {
  top: 9px;
}
.burger i:nth-child(3) {
  top: 18px;
}
.burger.open i:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.burger.open i:nth-child(2) {
  opacity: 0;
}
.burger.open i:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: #2181BC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px clamp(1.5rem, 5vw, 5rem) 0;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(26.9076923077, 105.1846153846, 153.2923076923) 0%, #2181BC 50%, rgb(30.7153846154, 120.0692307692, 174.9846153846) 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  top: -15%;
  left: -15%;
  background: radial-gradient(ellipse at 25% 20%, rgba(104.6, 181.4, 228.6, 0.35) 0%, transparent 50%), radial-gradient(ellipse at 75% 60%, rgba(87.2461538462, 172.9076923077, 225.5538461538, 0.2) 0%, transparent 45%), radial-gradient(ellipse at 50% 80%, rgba(52.5384615385, 155.9230769231, 219.4615384615, 0.15) 0%, transparent 40%);
  animation: heroAurora 10s ease-in-out infinite alternate;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  flex-shrink: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: slideIn 0.7s ease forwards 0.5s;
}
.hero-badge-icon {
  display: flex;
}
.hero-badge-icon svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}
.hero-badge strong {
  color: #FFFFFF;
  font-weight: 600;
}
.hero-badge-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.hero-badge-countdown {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.hero-claim {
  font-family: "Nefelibata Script", cursive;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
  margin-bottom: 0.1em;
  opacity: 0;
  animation: slideIn 0.7s ease forwards 0.7s;
}
.hero-h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.3em;
  opacity: 0;
  animation: slideIn 0.7s ease forwards 0.9s;
}
.hero-subtitle {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 500;
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: slideIn 0.7s ease forwards 1.1s;
}
.hero-desc {
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-weight: 400;
  opacity: 0;
  animation: slideIn 0.7s ease forwards 1.3s;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideIn 0.7s ease forwards 1.5s;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.35s ease;
}
.hero-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.hero-btn:hover {
  background: #FFFFFF;
  color: #2181BC;
  border-color: #FFFFFF;
}
.hero-btn:hover svg {
  transform: translateY(3px);
}
.hero-btn-primary {
  background: #FFFFFF;
  color: #2181BC;
  border-color: #FFFFFF;
  font-weight: 600;
}
.hero-btn-primary:hover {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-team {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin-top: auto;
  opacity: 0;
  animation: slideUp 1s ease forwards 1.2s;
}
.hero-team img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 -5px 30px rgba(0, 0, 0, 0.15));
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroAurora {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(4%, -3%) scale(1.08) rotate(1deg);
  }
}
@keyframes shimmer {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 200%;
  }
}
@keyframes dateGlow {
  from {
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.1), 0 0 120px rgba(255, 255, 255, 0.04);
  }
  to {
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.2), 0 0 160px rgba(255, 255, 255, 0.08);
  }
}
.istituzionale {
  background: #FFFFFF;
  border-bottom: 1px solid #E8ECF0;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.istituzionale-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.istituzionale-logo {
  height: clamp(45px, 7vw, 60px);
  width: auto;
  flex-shrink: 0;
}
.istituzionale-text {
  border-left: 2px solid #2181BC;
  padding-left: clamp(1rem, 2vw, 1.5rem);
}
.istituzionale-nome {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: #1C2A3A;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.istituzionale-sede {
  font-size: 0.82rem;
  color: #5E7186;
  margin-top: 0.15rem;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2181BC;
  background: #E6F2FA;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.s-title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: #1C2A3A;
}

.visione {
  padding: clamp(4rem, 9vw, 8rem) 0;
  background: #FFFFFF;
}
.visione-layout {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.visione-side {
  position: sticky;
  top: 100px;
}
.visione-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #5E7186;
}
.visione-body p {
  margin-bottom: 1.3rem;
}
.visione-lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: #1C2A3A;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.visione-video {
  margin: 2rem 0 2.5rem;
}
.visione-video .video-wrapper {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.visione-video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pullquote {
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 2px solid #2181BC;
  border-bottom: 1px solid #E8ECF0;
}
.pullquote p {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 500;
  font-style: italic;
  color: #1B6A9A;
  line-height: 1.55;
  margin: 0;
}
.pullquote cite {
  display: block;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
  color: #5E7186;
  margin-top: 0.8rem;
  letter-spacing: 0.03em;
}

.inline-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2181BC;
  text-decoration: none;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1.5px solid rgba(33, 129, 188, 0.3);
  transition: all 0.3s ease;
}
.inline-cta:hover {
  border-bottom-color: #2181BC;
  color: #1B6A9A;
}

.squadra {
  padding: clamp(4rem, 9vw, 8rem) 0;
  background: #F5F2EE;
}
.squadra .s-title {
  margin-bottom: 1rem;
}
.squadra-intro {
  font-size: 1.05rem;
  color: #5E7186;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.member {
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E8ECF0;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.member:hover {
  border-color: #B8D9F0;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 8px 16px rgba(33, 129, 188, 0.08);
}
.member--presidente {
  border: 2px solid #2181BC;
}
.member--presidente:hover {
  border-color: #1B6A9A;
}
.member--presidente .member-photo {
  background: linear-gradient(170deg, rgb(25.3846153846, 99.2307692308, 144.6153846154) 0%, #2181BC 100%);
  min-height: 220px;
}
.member--presidente .member-photo img {
  height: 200px;
}
.member-photo {
  background: #F5F2EE;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 190px;
  position: relative;
}
.member-photo img {
  height: 170px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.12));
  margin-bottom: -8px;
  position: relative;
  z-index: 1;
}
.member-role {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2181BC;
  margin-bottom: 0.4rem;
  padding: 0 1.5rem;
  margin-top: 1.4rem;
}
.member-name {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1C2A3A;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  padding: 0 1.5rem;
}
.member-bio {
  font-size: 0.78rem;
  color: #5E7186;
  line-height: 1.5;
  padding: 0 1.5rem;
}
.member-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.8rem 1.5rem 0;
  padding: 0.45rem 1rem;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #FFFFFF;
  background: #2181BC;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.member-video-btn svg {
  flex-shrink: 0;
}
.member-video-btn:hover {
  background: #1B6A9A;
  color: #FFFFFF;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.video-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
  z-index: 1;
}
.video-lightbox-close:hover {
  color: #FFFFFF;
}
.video-lightbox-content {
  width: 94vw;
  height: 94vh;
}
.video-lightbox-player {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.video-lightbox-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.programma {
  padding: clamp(4rem, 9vw, 8rem) 0;
  background: #FFFFFF;
}
.programma-cta {
  text-align: center;
  margin-top: 3rem;
}
.programma-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #2181BC;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border: 1.5px solid rgba(33, 129, 188, 0.25);
  border-radius: 100px;
  transition: all 0.3s ease;
}
.programma-cta-link:hover {
  background: #2181BC;
  color: #FFFFFF;
  border-color: #2181BC;
}
.programma-cta-link:hover svg {
  stroke: #FFFFFF;
}
.programma-cta-link svg {
  transition: stroke 0.3s ease;
}

.obj-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}
.obj-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem 0;
  padding-left: 0;
  border-bottom: 1px solid #E8ECF0;
  cursor: default;
  position: relative;
  transition: padding-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.obj-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #2181BC;
  border-radius: 3px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.obj-item:first-child {
  border-top: 1px solid #E8ECF0;
}
.obj-item:hover {
  padding-left: 1.2rem;
}
.obj-item:hover::before {
  height: 60%;
}
.obj-item:hover .obj-num {
  color: #2181BC;
}
.obj-num {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #CBD5E0;
  line-height: 1;
  text-align: center;
  transition: color 0.35s ease;
}
.obj-title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1C2A3A;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.obj-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5E7186;
}

.vote-banner {
  background: #143A54;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.vote-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.vote-banner-date {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #2181BC;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.vote-banner-day {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.03em;
}
.vote-banner-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 0.1rem;
}
.vote-banner-text {
  flex: 1;
}
.vote-banner-title {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.vote-banner-title strong {
  font-family: "Nefelibata Script", cursive;
  font-size: 1.25rem;
  font-weight: normal;
}
.vote-banner-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}
.vote-banner-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}
.vote-banner-btn:hover {
  background: #FFFFFF;
  color: #143A54;
  border-color: #FFFFFF;
}

.voto {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: #2181BC;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.voto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}
.voto .wrap {
  position: relative;
  z-index: 2;
}
.voto-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}
.voto-date {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 0.2em;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.15), 0 0 120px rgba(255, 255, 255, 0.06);
  animation: dateGlow 4s ease-in-out infinite alternate;
}
.voto-month {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}
.voto-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: left;
}
.voto-info-item {
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.voto-info-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.voto-info-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}
.voto-info-value {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.voto-map-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: background 0.25s ease;
}
.voto-map-link:hover {
  background: rgba(255, 255, 255, 0.3);
}
.voto-lista {
  margin: 3rem auto;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  max-width: 400px;
}
.voto-lista-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.voto-lista-name {
  font-family: "Nefelibata Script", cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}
.voto-lista-sub {
  font-size: 0.82rem;
  color: #FFFFFF;
  font-style: italic;
}
.voto-copy {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: #FFFFFF;
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}
.voto-guida {
  background: #FFFFFF;
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3rem);
  margin: 3rem auto;
  max-width: 750px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.voto-bridge {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 500;
  color: #1C2A3A;
  margin-bottom: 1.8rem;
  line-height: 1.4;
}
.voto-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
}
.voto-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  background: #F5F2EE;
  border-radius: 10px;
  border: 1px solid #E8ECF0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.voto-step:hover {
  border-color: #B8D9F0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.voto-step--cta {
  background: #2181BC;
  border-color: #2181BC;
}
.voto-step--cta:hover {
  border-color: #1B6A9A;
  box-shadow: 0 12px 30px rgba(33, 129, 188, 0.2);
}
.voto-step--cta .voto-step-num {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.voto-step--cta .voto-step-title {
  color: #FFFFFF;
}
.voto-step--cta .voto-step-desc {
  color: rgba(255, 255, 255, 0.7);
}
.voto-step--cta .voto-step-desc strong {
  color: #FFFFFF;
  font-weight: 700;
}
.voto-step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2181BC;
  color: #FFFFFF;
  font-family: "Fraunces", "Georgia", serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.voto-step-body {
  flex: 1;
}
.voto-step-title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1C2A3A;
  margin-bottom: 0.35rem;
}
.voto-step-desc {
  font-size: 0.78rem;
  color: #5E7186;
  line-height: 1.6;
}
.voto-chiusura {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.voto-chiusura span {
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 300;
}
.voto-chiusura span strong {
  color: #FFFFFF;
  font-weight: 600;
}
.voto-chiusura span:nth-child(1) {
  transition-delay: 0s;
}
.voto-chiusura span:nth-child(2) {
  transition-delay: 0.15s;
}
.voto-chiusura span:nth-child(3) {
  transition-delay: 0.3s;
}

footer {
  background: #143A54;
  padding: 0;
}

.foot-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem) 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.foot-brand-name {
  font-family: "Nefelibata Script", cursive;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}
.foot-brand-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  margin-top: 0.4rem;
}
.foot-separator {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}
.foot-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.foot-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.foot-value {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.foot-note {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.18);
  font-style: italic;
}
.foot-powered {
  margin-top: 0.8rem;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}
.foot-powered a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}
.foot-powered a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 199;
  padding: 0.8rem 1rem;
  padding-bottom: calc(0.8rem + env(safe-area-inset-bottom, 0));
  background: rgba(20, 58, 84, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-cta.visible {
  transform: translateY(0);
}
.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-decoration: none;
  padding: 0.7rem;
  background: #2181BC;
  border-radius: 10px;
  transition: background 0.25s;
}
.floating-cta a:active {
  background: rgb(26.9076923077, 105.1846153846, 153.2923076923);
}
.floating-cta-date {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
}
.floating-cta-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 198;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(20, 58, 84, 0.9);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top.above-cta {
  bottom: 5rem;
}
.scroll-top:hover {
  background: #2181BC;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 129, 188, 0.3);
}
.scroll-top svg {
  width: 18px;
  height: 18px;
}

.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.rv.on {
  opacity: 1;
  transform: translateY(0);
}

.stagger-child {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.stagger-child.on {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 850px) {
  .topbar-brand {
    font-size: 1.1rem;
  }
  .topbar-nav {
    display: none;
  }
  .topbar-notify {
    margin-left: auto;
    margin-right: 0.8rem;
  }
  .burger {
    display: block;
  }
  .hero {
    padding: 80px 1.5rem 0;
    min-height: auto;
  }
  .hero-badge {
    font-size: 0.6rem;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
  }
  .hero-content {
    padding-top: 2rem;
  }
  .hero-claim {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .hero-h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .hero-desc {
    font-size: 0.88rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  .hero-team {
    max-width: 100%;
    margin-top: 2rem;
  }
  .floating-cta {
    display: block;
  }
  .vote-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .vote-banner-btn {
    width: 100%;
    justify-content: center;
  }
  .istituzionale-inner {
    flex-direction: column;
    text-align: center;
  }
  .istituzionale-text {
    border-left: none;
    border-top: 2px solid #2181BC;
    padding-left: 0;
    padding-top: 1rem;
  }
  .visione-layout {
    grid-template-columns: 1fr;
  }
  .visione-side {
    position: static;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .obj-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }
  .obj-num {
    font-size: 1.8rem;
  }
  .voto-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .voto-steps {
    grid-template-columns: 1fr;
  }
  .scroll-top {
    right: 1rem;
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 851px) and (max-aspect-ratio: 4/5) {
  .hero {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 80px;
  }
  .hero-team {
    margin-top: 3rem;
  }
}
@media (min-width: 1920px) {
  .hero {
    min-height: auto;
    padding-top: 80px;
  }
  .hero-team {
    margin-top: 3rem;
  }
}
.announce-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.announce-modal.active {
  opacity: 1;
  visibility: visible;
}
.announce-modal.active .announce-modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.announce-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.announce-modal-box {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 520px;
  width: calc(100% - 40px);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 0 2px #2181BC;
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  overflow: hidden;
}

.announce-modal-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2181BC, #E8A838, #2181BC);
  background-size: 200% 100%;
  animation: announce-pulse-slide 2s ease infinite;
}

@keyframes announce-pulse-slide {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.announce-modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.2rem;
}
.announce-modal-icon img {
  width: 70px;
  height: auto;
  display: block;
}

.announce-modal-badge {
  display: inline-block;
  background: linear-gradient(135deg, #E8A838, #D4882A);
  color: #FFFFFF;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35em 1em;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.announce-modal-sub {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 0.85rem;
  color: #5E7186;
  letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
}

.announce-modal-body {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1C2A3A;
  margin-bottom: 1.8rem;
  text-align: left;
}
.announce-modal-body p {
  margin: 0 0 0.8rem;
}
.announce-modal-body p:last-child {
  margin-bottom: 0;
}
.announce-modal-body strong {
  color: #1B6A9A;
}
.announce-modal-body .announce-modal-firma {
  margin-top: 1.5rem;
  margin-bottom: 0.3rem;
}
.announce-modal-body .announce-modal-team {
  font-size: 0.85rem;
  color: #5E7186;
  margin-top: 1rem;
  line-height: 1.8;
}

.announce-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2181BC, #1B6A9A);
  color: #FFFFFF;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  padding: 0.75em 2.2em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.announce-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(33, 129, 188, 0.35);
}
.announce-modal-btn:active {
  transform: translateY(0);
}

@media (max-width: 500px) {
  .announce-modal-box {
    padding: 2rem 1.3rem 1.5rem;
  }
  .announce-modal-body {
    font-size: 0.95rem;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  html {
    zoom: 1.33;
  }
}
@media (min-width: 2560px) and (max-width: 3439px) {
  html {
    zoom: 1.78;
  }
}
@media (min-width: 3440px) and (max-width: 3839px) {
  html {
    zoom: 2.39;
  }
}
@media (min-width: 3840px) {
  html {
    zoom: 2.67;
  }
}
