:root {
  --bg: #070d12;
  --bg-2: #0b1620;
  --panel: rgba(255, 255, 255, 0.04);
  --line: rgba(148, 196, 206, 0.14);
  --neon: #62c2d3;
  --neon-soft: rgba(98, 194, 211, 0.35);
  --teal: #174d54;
  --ink: #eaf6f8;
  --muted: #93a8ae;
  --cat-minivolley: #62c2d3;
  --cat-giovanile: #8fdcc4;
  --cat-senior: #f4b860;
  --cat-open: #f2958f;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(23, 77, 84, 0.35), transparent 60%),
    radial-gradient(700px 500px at -10% 40%, rgba(23, 77, 84, 0.22), transparent 55%),
    var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }
body.cursor-on, body.cursor-on a, body.cursor-on button { cursor: none; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button, input { font: inherit; }

::selection { background: var(--neon); color: #05242b; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: #1c3a44;
  border-radius: 8px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

section { scroll-margin-top: 90px; }

.wrap {
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.ic {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.ic-xs { width: 14px; height: 14px; }

.center-row { display: flex; justify-content: center; margin-top: 2rem; }

#progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--neon), #8fdcc4);
  box-shadow: 0 0 12px var(--neon-soft);
  z-index: 95;
  pointer-events: none;
}

.demo-pill {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 85;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(7, 13, 18, 0.82);
  border: 1px dashed rgba(98, 194, 211, 0.55);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 120;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-soft);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(98, 194, 211, 0.75);
  transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
body.cursor-on .cursor-dot,
body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-grow .cursor-ring {
  width: 64px; height: 64px;
  background: rgba(98, 194, 211, 0.12);
  border-color: transparent;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.65s ease 0.15s, visibility 0.65s ease 0.15s;
}
body.ready #preloader { opacity: 0; visibility: hidden; }
.pl-center { text-align: center; }
.pl-bounce { height: 92px; display: grid; place-items: end center; animation: plBounce 0.9s cubic-bezier(0.36, 0, 0.66, -0.56) infinite; }
.pl-word { margin: 1.2rem 0 0; font-family: 'Anton', sans-serif; font-size: clamp(1.4rem, 4vw, 2rem); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.pl-word span { display: inline-block; opacity: 0; transform: translateY(16px); animation: plWord 0.6s ease forwards; }
.pl-word span:nth-child(1) { color: var(--neon); animation-delay: 0.15s; }
.pl-word span:nth-child(2) { margin-left: 0.5em; animation-delay: 0.32s; }

@keyframes plBounce {
  0%, 100% { transform: translateY(0) scaleY(1); }
  46% { transform: translateY(-52px) scaleY(1); }
  58% { transform: translateY(0) scaleY(0.78); }
  70% { transform: translateY(0) scaleY(1); }
}
@keyframes plWord { to { opacity: 1; transform: translateY(0); } }

.vball { display: block; }
.pl-ball {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.5));
}

.hero-ball {
  position: absolute;
  top: clamp(96px, 14vh, 150px);
  right: clamp(4vw, 8vw, 10vw);
  z-index: 3;
  width: clamp(96px, 11vw, 140px);
  height: clamp(96px, 11vw, 140px);
  animation: ballFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.45));
}
@media (max-width: 720px) {
  .hero-ball {
    width: 78px;
    height: 78px;
    right: 8vw;
    top: 100px;
    opacity: 0.9;
  }
}
@keyframes ballFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(24deg); }
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(7, 13, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.head-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1rem;
}
.brand img { height: 48px; width: auto; object-fit: contain; }
.nav-desk { display: flex; gap: 1.7rem; }
.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: #dbe9ec;
  padding: 0.3rem 0;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-link:hover { color: var(--neon); }
.nav-link:hover::after { transform: scaleX(1); }
.head-right { display: flex; align-items: center; gap: 1rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: none;
  padding: 4px 0;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translateY(9px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-9px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(6, 12, 16, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  transform: translateY(-102%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mm-link {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.1rem, 9vw, 3.2rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease, color 0.25s ease;
}
.mobile-menu.open .mm-link {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i) * 55ms + 140ms), calc(var(--i) * 55ms + 140ms), 0ms;
}
.mm-link:hover { color: var(--neon); }
.mm-foot { display: flex; gap: 0.9rem; margin-top: 2.2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1.3), background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
.btn-neon {
  background: var(--neon);
  color: #05242b;
  box-shadow: 0 0 26px rgba(98, 194, 211, 0.35);
}
.btn-neon:hover {
  background: #7fd0de;
  transform: translateY(-2px);
  box-shadow: 0 8px 34px rgba(98, 194, 211, 0.5);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  transform: translateY(-2px);
}
.btn:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; }

.soc {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: #cfe3e7;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.soc:hover {
  background: var(--neon);
  border-color: var(--neon);
  color: #05242b;
  box-shadow: 0 0 22px var(--neon-soft);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.14) translateX(-1.5%); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 13, 18, 0.62) 0%, rgba(7, 13, 18, 0.55) 40%, rgba(7, 13, 18, 0.88) 82%, var(--bg) 100%),
    radial-gradient(60% 80% at 15% 60%, rgba(7, 13, 18, 0.55), transparent 70%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.5;
}
.orb-a { width: 420px; height: 420px; background: rgba(98, 194, 211, 0.16); top: -8%; right: -6%; animation: orbA 16s ease-in-out infinite alternate; }
.orb-b { width: 340px; height: 340px; background: rgba(23, 77, 84, 0.5); bottom: -10%; left: -8%; animation: orbB 19s ease-in-out infinite alternate; }
.orb-c { width: 220px; height: 220px; background: rgba(143, 220, 196, 0.12); top: 38%; left: 42%; animation: orbA 22s ease-in-out infinite alternate-reverse; }
@keyframes orbA { to { transform: translate(-60px, 40px) scale(1.15); } }
@keyframes orbB { to { transform: translate(70px, -50px) scale(0.92); } }

.hero-in {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: 130px;
  padding-bottom: 190px;
  max-width: 62rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon);
}
.kicker::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
}

.display { margin: 1.1rem 0 0; font-family: 'Anton', sans-serif; text-transform: uppercase; line-height: 0.94; }
.lt { display: block; font-size: clamp(3.6rem, 13vw, 9.5rem); letter-spacing: 0.01em; }
.lt-solid {
  color: #f2fbfc;
  text-shadow: 0 0 70px rgba(98, 194, 211, 0.4);
}
.lt-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(98, 194, 211, 0.85);
  filter: drop-shadow(0 0 24px rgba(98, 194, 211, 0.25));
}

.lead {
  margin: 1.5rem 0 0;
  max-width: 33rem;
  color: #c6dade;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.75;
}

.dates { margin-top: 1.7rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.45rem; }
.d-hot {
  display: inline-flex;
  align-items: center;
  background: rgba(98, 194, 211, 0.13);
  border: 1px solid rgba(98, 194, 211, 0.5);
  color: #dff6fa;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.ping {
  width: 9px; height: 9px;
  margin-right: 0.6rem;
  background: var(--neon);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.ping::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--neon);
  animation: ring 1.8s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(0.55); opacity: 0.9; }
  100% { transform: scale(2.1); opacity: 0; }
}
.d-sub { font-size: 0.85rem; color: #9fb6bc; }

.cd-block { margin-top: 1.9rem; }
.cd-note {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8fb0b7;
}

.next-games { display: flex; flex-direction: column; gap: 0.55rem; max-width: 34rem; }
.ng-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ng-row:hover { border-color: rgba(98, 194, 211, 0.45); transform: translateX(4px); }
.ng-date {
  font-weight: 800;
  color: var(--neon);
  font-size: 0.86rem;
  white-space: nowrap;
  min-width: 8ch;
  text-transform: uppercase;
}
.ng-date small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.ng-main strong { display: block; font-size: 0.92rem; font-weight: 600; line-height: 1.35; color: #f0f8fa; }
.ng-main .vs {
  color: var(--neon);
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.06em;
  padding-inline: 0.3rem;
}
.ng-row .m-chip { font-size: 0.6rem; padding: 0.24rem 0.6rem; }
.ng-empty {
  max-width: 34rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.hero-actions { margin-top: 2.3rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 128px;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #cfe6ea;
  z-index: 6;
  animation: bob 2.2s ease-in-out infinite;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.scroll-hint:hover { border-color: var(--neon); color: var(--neon); }
@media (max-width: 900px) { .scroll-hint { display: none; } }
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 9px); }
}

.stats-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 6;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 13, 18, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.stats-in { display: flex; flex-wrap: wrap; }
.stat {
  flex: 1 1 140px;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 1.05rem 1rem;
}
.stat:not(:first-child) { border-left: 1px solid rgba(255, 255, 255, 0.07); }
.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  color: var(--neon);
  font-variant-numeric: tabular-nums;
}
.stat-lab {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee {
  position: relative;
  overflow: hidden;
  background: var(--neon);
  color: #05242b;
  padding: 0.85rem 0;
  transform: rotate(-1.4deg) scale(1.03);
  border-block: 1px solid rgba(5, 36, 43, 0.4);
  box-shadow: 0 18px 50px -20px rgba(98, 194, 211, 0.45);
}
.mq-in { display: flex; width: max-content; animation: mq 30s linear infinite; }
.mq-track {
  white-space: nowrap;
  font-family: 'Anton', sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@keyframes mq { to { transform: translateX(-50%); } }

.sec { padding-block: clamp(4rem, 9vw, 7rem); position: relative; }
.sec-tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.sec-head { margin-bottom: 3rem; max-width: 46rem; position: relative; z-index: 2; }
.sec-head.center { text-align: center; margin-inline: auto; }
.sec-head.center .kicker::after {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
}
.sec-title {
  margin: 0.9rem 0 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  color: #f2fbfc;
}
.sec-sub { margin: 1.1rem 0 0; color: var(--muted); line-height: 1.75; font-size: 0.98rem; max-width: 38rem; }
.sec-head.center .sec-sub { margin-inline: auto; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s);
}
[data-reveal].revealed { opacity: 1; transform: none; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.6rem;
}
.chip {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.chip:hover { border-color: var(--neon); color: var(--ink); }
.chip.active {
  background: var(--neon);
  border-color: var(--neon);
  color: #05242b;
  font-weight: 800;
  box-shadow: 0 0 20px var(--neon-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 1.6rem;
}

.t-minivolley { --cat: var(--cat-minivolley); }
.t-giovanile { --cat: var(--cat-giovanile); }
.t-senior { --cat: var(--cat-senior); }
.t-open { --cat: var(--cat-open); }

.team-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  will-change: transform;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover {
  border-color: rgba(98, 194, 211, 0.45);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7), 0 0 44px -14px rgba(98, 194, 211, 0.3);
}
.team-card.hide { display: none; }
.team-card.pop { animation: popIn 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
@keyframes popIn {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: none; }
}
.tc-media { aspect-ratio: 16 / 10; overflow: hidden; }
.tc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.94);
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease;
}
.team-card:hover .tc-media img { transform: scale(1.08); filter: saturate(1.05) brightness(1); }
.tc-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 41%;
  background: linear-gradient(180deg, rgba(7, 13, 18, 0.25), transparent);
  pointer-events: none;
}
.tc-num {
  position: absolute;
  top: 0.55rem;
  right: 0.9rem;
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.28);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.tc-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cat);
  background: rgba(7, 13, 18, 0.72);
  border: 1px solid var(--cat);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.tc-body { padding: 1.35rem 1.4rem 1.5rem; }
.tc-body h3 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.32rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.tc-body p { margin: 0.55rem 0 0; color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.tc-when {
  margin-top: 1rem !important;
  padding-top: 0.95rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  color: #bcd6db !important;
  font-size: 0.86rem !important;
}
.tc-when strong { color: var(--cat); font-weight: 700; }

.cta-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 60rem;
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  border-radius: 28px;
  border: 1px solid rgba(98, 194, 211, 0.32);
  background: radial-gradient(120% 160% at 50% -20%, rgba(23, 77, 84, 0.95), rgba(9, 21, 28, 0.98));
  box-shadow: 0 0 90px -32px rgba(98, 194, 211, 0.4);
}
.cta-panel::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent 0 340deg, rgba(98, 194, 211, 0.16) 355deg, transparent 360deg);
  animation: sweep 9s linear infinite;
  pointer-events: none;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.cta-panel > * { position: relative; }
.cta-panel h2 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
}
.cta-panel h2 em { font-style: normal; color: var(--neon); }
.cp-copy { margin: 1.2rem auto 0; max-width: 36rem; color: #b9cdd2; line-height: 1.75; }
.cp-dates { margin: 1.4rem 0 2rem; }
.cp-dates strong {
  display: block;
  color: var(--neon);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.cp-dates span { display: block; margin-top: 0.3rem; color: var(--muted); font-size: 0.88rem; }

.day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.2rem;
}
.day-tab {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}
.day-tab:hover { border-color: var(--neon); color: var(--ink); }
.day-tab.active {
  background: var(--neon);
  border-color: var(--neon);
  color: #05242b;
  box-shadow: 0 0 24px var(--neon-soft);
}

.slots { max-width: 46rem; }
.slot {
  display: grid;
  grid-template-columns: auto 52px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.09);
  animation: slotIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: var(--d, 0s);
}
.slot:last-child { border-bottom: none; }
.slot-time {
  min-width: 10ch;
  font-weight: 800;
  font-size: 1rem;
  color: var(--neon);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.slot-axis { position: relative; height: 44px; display: flex; align-items: center; justify-content: center; }
.slot-axis::before {
  content: '';
  position: absolute;
  top: -12px; bottom: -12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}
.slot-axis i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--cat, var(--neon));
  box-shadow: 0 0 14px var(--cat, var(--neon));
  z-index: 1;
}
.slot-info strong { display: block; font-size: 1.02rem; color: #f0f8fa; }
.slot-info .loc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}
@keyframes slotIn {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: none; }
}

.photostrip {
  overflow: hidden;
  padding-block: 1.3rem;
  border-block: 1px solid var(--line);
  transform: rotate(1.2deg) scale(1.02);
  background: rgba(255, 255, 255, 0.02);
}
.ps-in { display: flex; width: max-content; animation: mq 44s linear infinite reverse; }
.ps-track { display: flex; gap: 1rem; padding-right: 1rem; }
.ps-track img {
  width: 290px;
  height: 175px;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(0.35) brightness(0.82);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.ps-track img:hover { filter: grayscale(0) brightness(1); transform: scale(1.04); }
@media (max-width: 640px) {
  .ps-track img { width: 210px; height: 135px; }
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(430px, 100%), 1fr));
  gap: 1.6rem;
}
.cal-card {
  border-radius: 20px;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, opacity 0.7s ease var(--d, 0s), transform 0.7s ease var(--d, 0s);
  opacity: 0;
  transform: translateY(24px);
}
.cal-card.revealed { opacity: 1; transform: none; }
.cal-card:hover {
  border-color: rgba(98, 194, 211, 0.4);
  box-shadow: 0 22px 55px -26px rgba(0, 0, 0, 0.7), 0 0 40px -16px rgba(98, 194, 211, 0.25);
}
.cal-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}
.cal-top h3 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.22rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.fed-chip {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(98, 194, 211, 0.1);
  border: 1px solid rgba(98, 194, 211, 0.35);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}
.portal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--neon);
  border: 1px solid rgba(98, 194, 211, 0.4);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.portal-link:hover { background: var(--neon); color: #05242b; border-color: var(--neon); }
.stand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #cdeef4;
  background: rgba(98, 194, 211, 0.08);
  border: 1px solid rgba(98, 194, 211, 0.25);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
}
.cal-tablewrap { margin-top: 1.2rem; overflow-x: auto; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.07); }
.cal-table { width: 100%; border-collapse: collapse; }
.cal-table th {
  text-align: left;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8fb7bf;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.6rem 0.75rem;
  white-space: nowrap;
}
.cal-table td {
  padding: 0.72rem 0.75rem;
  font-size: 0.88rem;
  color: #cfe3e7;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cal-table tbody tr:hover td { background: rgba(255, 255, 255, 0.03); }
.won { color: #4ade80; font-weight: 700; }
.lost { color: #f87171; font-weight: 700; }
.draw { color: #fbbf24; font-weight: 700; }
.cal-empty {
  margin-top: 1.2rem;
  padding: 1.7rem 1rem;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.cal-empty .ic { display: block; margin: 0 auto 0.6rem; opacity: 0.7; width: 22px; height: 22px; }

.foto-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #f2f9fa;
  color-scheme: light;
  min-height: 240px;
}
.foto-frame .ft { position: relative; z-index: 2; min-height: 220px; }
.ff-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--teal);
  background: linear-gradient(160deg, #f2f9fa, #e2f1f4);
}
.ff-fallback strong {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ff-fallback span { font-size: 0.9rem; font-weight: 600; color: #40707c; }
.ff-fallback:hover strong { color: var(--neon); }
.ff-ig {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 6;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #174d54, #2a8ba0 55%, #62c2d3);
  box-shadow: 0 10px 26px -10px rgba(23, 77, 84, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.ff-ig .ic { width: 22px; height: 22px; stroke-width: 2.1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-copy p:not(.kicker):not(.ruolo):not(.nome):not(.tel),
.about-contact li span { color: #b9cdd2; }
.about-copy > p { margin: 0 0 1rem; line-height: 1.8; font-size: 0.96rem; }
.about-copy .sec-title { margin-bottom: 1.4rem; }
.org-title {
  margin: 2rem 0 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--neon);
}
.org-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; margin-top: 1.2rem; }
.org-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.org-card:hover {
  border-color: rgba(98, 194, 211, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.6);
}
.org-card .ruolo {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon);
}
.org-card .nome { margin: 0.35rem 0 0; font-weight: 800; font-size: 1.05rem; color: #fff; }
.org-card .tel { margin: 0.45rem 0 0; }
.org-card .tel a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.25s ease;
}
.org-card .tel a:hover { color: var(--neon); }

.about-contact .sec-title { margin-bottom: 1.4rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
}
.contact-list .ic { color: var(--neon); margin-top: 3px; }
.contact-list a { border-bottom: 1px solid transparent; transition: color 0.25s ease, border-color 0.25s ease; word-break: break-all; }
.contact-list a:hover { color: var(--neon); border-bottom-color: var(--neon); }
.legal { margin: 1.2rem 0 1.6rem; font-size: 0.74rem; color: #6d858c; letter-spacing: 0.02em; }
.map {
  width: 100%;
  height: 260px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

footer {
  border-top: 1px solid var(--line);
  padding-top: 3.5rem;
  overflow: hidden;
}
.wordmark {
  margin: 0 0 2rem;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 16vw, 12rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(233, 246, 248, 0.13);
  user-select: none;
  white-space: nowrap;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr; gap: 2rem; } }
.foot-brand img { height: 52px; width: auto; margin-bottom: 1rem; }
.foot-brand p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin: 0 0 1.2rem; }
.foot-social { display: flex; gap: 0.8rem; }
footer h4 {
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.foot-links li { padding: 0.3rem 0; font-size: 0.9rem; color: var(--muted); }
.foot-links a { transition: color 0.25s ease; }
.foot-links a:hover { color: var(--neon); }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 1rem 2.2rem;
  text-align: center;
}
.foot-bottom p { margin: 0; font-size: 0.8rem; color: #6d858c; }
.foot-bottom span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  color: #4c656d;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .nav-desk { display: none; }
  .burger { display: flex; }
  .head-right .btn { display: none; }
}

@media (max-width: 640px) {
  .stat { flex: 1 1 46%; }
  .stat:nth-child(3) { border-left: none; }
  .slot { grid-template-columns: 1fr; gap: 0.3rem; padding: 0.9rem 0; }
  .slot-axis { display: none; }
  .slot-time { min-width: 0; }
  .ng-row { grid-template-columns: auto 1fr; }
  .ng-row .m-chip { display: none; }
}

.week-wrap { max-width: 52rem; margin-inline: auto; }
.match-day + .match-day { margin-top: 2rem; }
.match-day h3 {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 0.9rem;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
}
.match-day h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(98, 194, 211, 0.4), transparent);
}
.match-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.match-row + .match-row { margin-top: 0.7rem; }
.match-row:hover {
  border-color: rgba(98, 194, 211, 0.45);
  transform: translateX(4px);
  box-shadow: 0 14px 36px -20px rgba(0, 0, 0, 0.7);
}
.mr-time {
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 8ch;
}
.mr-time small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.mr-main strong { display: block; font-size: 1.02rem; color: #f0f8fa; line-height: 1.35; }
.mr-main .vs { color: var(--neon); font-family: 'Anton', sans-serif; letter-spacing: 0.06em; padding-inline: 0.35rem; }
.mr-meta { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.45rem; }
.m-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.m-casa { color: var(--neon); border-color: rgba(98, 194, 211, 0.5); background: rgba(98, 194, 211, 0.08); }
.m-fuori { color: var(--cat-open); border-color: rgba(242, 149, 143, 0.45); background: rgba(242, 149, 143, 0.08); }
.m-comp { color: #cdeef4; }
.m-demo { color: var(--cat-senior); border-color: rgba(244, 184, 96, 0.5); background: rgba(244, 184, 96, 0.08); }
.mr-team-tag { color: var(--muted); font-size: 0.78rem; margin-left: 0.5rem; }
.week-empty {
  padding: 2.6rem 1.5rem;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: var(--muted);
  line-height: 1.75;
}
.week-empty .ic { width: 26px; height: 26px; opacity: 0.7; margin-bottom: 0.6rem; }
@media (max-width: 640px) {
  .match-row { grid-template-columns: 1fr; gap: 0.55rem; }
  .mr-time { min-width: 0; }
}

.docs-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.docs-main .sec-head { margin-bottom: 2.2rem; }
.docs-grid { display: grid; gap: 1rem; }
.doc-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.3rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.doc-card:hover {
  border-color: rgba(98, 194, 211, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.7), 0 0 34px -16px rgba(98, 194, 211, 0.35);
}
.doc-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--neon);
  background: rgba(98, 194, 211, 0.1);
  border: 1px solid rgba(98, 194, 211, 0.35);
}
.doc-info strong { display: block; color: #fff; font-size: 1rem; }
.doc-info small { display: block; margin-top: 0.25rem; color: var(--muted); font-size: 0.82rem; line-height: 1.5; }
.doc-dl {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(98, 194, 211, 0.4);
  color: var(--neon);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.doc-card:hover .doc-dl { background: var(--neon); color: #05242b; transform: translateY(2px); }
.cta-mini {
  position: sticky;
  top: 100px;
  text-align: center;
  padding: 1.9rem 1.6rem 2.1rem;
  border-radius: 22px;
  border: 1px solid rgba(98, 194, 211, 0.32);
  background: radial-gradient(130% 150% at 50% -10%, rgba(23, 77, 84, 0.85), rgba(9, 21, 28, 0.95));
  box-shadow: 0 0 70px -30px rgba(98, 194, 211, 0.45);
}
.cm-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--neon);
}
.cm-date { margin: 0; color: var(--ink); font-size: 0.95rem; }
.cm-date strong { display: block; font-size: 1.25rem; color: #fff; margin-top: 0.15rem; }
.cm-sub { margin: 0.8rem 0 1.3rem; color: var(--muted); font-size: 0.85rem; line-height: 1.65; }
@media (max-width: 900px) {
  .docs-layout { grid-template-columns: 1fr; }
  .cta-mini { position: static; max-width: 420px; margin-inline: auto; width: 100%; }
}

.sp-strip {
  padding-block: 1.3rem 2.8rem;
  overflow: hidden;
}
.sp-label {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.sp-band {
  overflow: hidden;
  padding-block: 0.6rem;
  transform: rotate(-1deg) scale(1.03);
}
.sp-in { display: flex; width: max-content; animation: mq 38s linear infinite; }
.sp-track { display: flex; gap: 1.4rem; padding-right: 1.4rem; }
.sp-tile {
  display: grid;
  place-items: center;
  min-width: 240px;
  padding: 1.4rem 2.6rem;
  background: #f2f9fa;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease;
}
.sp-tile:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 22px 50px -22px rgba(0, 0, 0, 0.65), 0 0 40px -12px rgba(98, 194, 211, 0.4);
}
.sp-tile img { height: 42px; width: auto; filter: saturate(0.9); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .cal-card { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
