/* ============================================================
   VIDARDO BASKET — assets/css/style.css
   Design System Unificato v9.1 — Sport Premium Edition
   Font: Anton (display) + Outfit (body) + JetBrains Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
    /* Primary (viola, dinamico via PHP) */
    --primary:        #6C3CE1;
    --primary-rgb:    108, 60, 225;
    --primary-light:  #8B5CF6;
    --primary-bright: #A78BFA;
    --primary-dark:   #4C1D95;
    --primary-glow:   rgba(108, 60, 225, 0.35);

    /* Accent / Secondary (verde) */
    --accent:          #2E7D32;
    --accent-2:        #66BB6A;
    --accent-light:    #81C784;
    --accent-rgb:      46, 125, 50;
    --accent-2-rgb:    102, 187, 106;
    --secondary:       #2E7D32;
    --secondary-light: #4CAF50;
    --secondary-bright:#66BB6A;
    --secondary-glow:  rgba(76, 175, 80, 0.35);

    /* Neutri */
    --bg:             #0A0A0F;
    --bg-1:           #101018;
    --bg-card:        rgba(255, 255, 255, 0.04);
    --bg-card-2:      rgba(255, 255, 255, 0.06);
    --bg-card-hover:  rgba(255, 255, 255, 0.08);

    /* Bordi */
    --border:       rgba(255, 255, 255, 0.08);
    --border-2:     rgba(255, 255, 255, 0.12);
    --border-hover: rgba(139, 92, 246, 0.45);

    /* Testo */
    --text:       #F1F5F9;
    --text-soft:  #CBD5E1;
    --text-muted: #94A3B8;
    --text-dim:   #64748B;

    /* Ombre */
    --shadow-sm:   0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow:      0 16px 40px -10px rgba(0, 0, 0, 0.55);
    --shadow-lg:   0 30px 60px -15px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 12px 40px rgba(108, 60, 225, 0.35);

    /* Geometria */
    --radius-xs:   6px;
    --radius-sm:   10px;
    --radius:      16px;
    --radius-lg:   22px;
    --radius-pill: 999px;
    --container:   1200px;
    --header-h:    72px;

    /* Font — GERARCHIA SPORT PREMIUM */
    --font:         'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Anton', 'Bebas Neue', Impact, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-sport:   'Anton', 'Bebas Neue', Impact, sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, monospace;

    /* Movimento */
    --ease:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.34, 1.2, 0.64, 1);
    --t:        all 0.35s var(--ease);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    font-feature-settings: 'kern', 'liga', 'ss01';
    padding-top: var(--header-h);
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

::selection { background: var(--primary); color: #fff; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   4. KEYFRAMES
   ============================================================ */
@keyframes pv2-fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pv2-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes pv2-titleIn {
    0%   { opacity: 0; transform: translateY(40px) scale(0.96); filter: blur(8px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes pv2-titleInDelay {
    0%   { opacity: 0; transform: translateY(50px) scale(0.94); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes pv2-gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
@keyframes pv2-ctaRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes pv2-heroParallax {
    0%   { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, -1%); }
}
@keyframes pv2-marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes pv2-pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(var(--accent-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); }
}
@keyframes pv2-float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%      { transform: translate(20px, -30px) rotate(180deg); }
}
@keyframes pv2-float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%      { transform: translate(-25px, -40px) rotate(-180deg); }
}
@keyframes pv2-float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%      { transform: translate(15px, -25px) rotate(90deg); }
}
@keyframes pv2-scrollDown {
    0%   { transform: translateY(-100%); opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: translateY(200%); opacity: 0; }
}
@keyframes pv2-badgeIn {
    0%   { opacity: 0; transform: translateY(-20px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pv2-ballBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-4px) rotate(180deg); }
}
@keyframes pv2-shimmer {
    0%   { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(200%) skewX(-20deg); }
}
@keyframes typewriterBlink {
    0%, 49%  { opacity: 1; }
    50%, 100%{ opacity: 0; }
}

/* ============================================================
   5. HEADER
   ============================================================ */
.main-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.55);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.main-header.scrolled {
    background: rgba(10, 10, 15, 0.92);
    border-bottom-color: rgba(var(--primary-rgb), 0.22);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.55);
}
.main-header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.main-header .logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.main-header .logo-text-brand {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}
.main-header .logo-text-type {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--primary, #6C3CE1), var(--accent, #2E7D32));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-transform: uppercase;
    font-weight: 400;
}
.main-header .site-logo {
    height: 42px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    margin-left: 4px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}
.main-header .site-logo:hover { transform: scale(1.05); }

/* Nav */
.main-header .main-nav {
    display: flex;
    gap: 4px;
    align-items: center;
}
.main-nav a {
    position: relative;
    padding: 9px 14px;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(241, 245, 249, 0.75);
    text-decoration: none;
    border-radius: 10px;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}
.main-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
.main-nav a.active {
    color: #fff;
    background: rgba(var(--primary-rgb), 0.15);
    border: 1px solid rgba(var(--primary-rgb), 0.35);
}

/* Menu toggle (hamburger) */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 42px; height: 42px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.05); }

/* ============================================================
   6. MARQUEE
   ============================================================ */
.brand-marquee {
    position: relative;
    overflow: hidden;
    padding: 14px 0;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.12), rgba(var(--accent-rgb), 0.12));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    z-index: 1;
}
.brand-marquee-top { border-top: none; }
.brand-marquee-track {
    display: flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    width: max-content;
    animation: pv2-marqueeScroll 38s linear infinite;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.65rem);
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    will-change: transform;
    font-weight: 400;
}
.brand-marquee-track .hl {
    background: linear-gradient(135deg, var(--primary, #6C3CE1), var(--primary-bright, #8B5CF6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 1;
}
.brand-marquee-track .hl-green {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 1;
}
.brand-marquee-track .sep {
    font-size: 0.65em;
    color: rgba(255, 255, 255, 0.22);
    opacity: 0.7;
}
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }

/* ============================================================
   7. SECTION HEADER / TAG
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
    padding: 0 20px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
.section-tag-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 10px var(--accent-2);
    animation: pv2-pulseDot 2.2s infinite;
    flex-shrink: 0;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 0 0 16px;
    font-weight: 400;
}
.section-title span {
    background: linear-gradient(135deg, var(--primary, #6C3CE1), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.section-subtitle {
    color: rgba(241, 245, 249, 0.6);
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 88vh;
    min-height: 88dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 24px 80px;
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: -20px;
    z-index: -1;
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    filter: saturate(1.15) contrast(1.05);
    animation: pv2-heroParallax 22s ease-in-out infinite alternate;
    will-change: transform;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse at top, rgba(var(--primary-rgb), 0.28), transparent 55%),
        radial-gradient(ellipse at bottom, rgba(var(--accent-rgb), 0.18), transparent 60%);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, transparent 25%, rgba(10,10,15,0.9) 92%),
        linear-gradient(180deg, transparent 60%, rgba(10,10,15,0.5) 100%);
}
.hero-float {
    position: absolute;
    color: var(--accent);
    opacity: 0.14;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    filter: blur(0.4px);
}
.hero-float-1 { top: 18%; left: 8%; font-size: 44px; animation: pv2-float1 14s ease-in-out infinite; }
.hero-float-2 { top: 22%; right: 10%; font-size: 60px; opacity: 0.10; animation: pv2-float2 18s ease-in-out infinite; }
.hero-float-3 { bottom: 14%; left: 14%; font-size: 36px; opacity: 0.16; animation: pv2-float3 12s ease-in-out infinite; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    text-align: center;
    width: 100%;
}
.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 14px;
    background: rgba(var(--primary-rgb), 0.12);
    border: 1px solid rgba(var(--primary-rgb), 0.35);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    animation: pv2-badgeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
    font-weight: 500;
}
.badge-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 0 0 rgba(var(--accent-2-rgb), 0.7);
    animation: pv2-pulseDot 2s infinite;
    flex-shrink: 0;
}
.badge-ball {
    color: var(--accent-2);
    font-size: 12px;
    animation: pv2-ballBounce 3s ease-in-out infinite;
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 7.5rem);
    line-height: 0.95;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 28px;
    font-weight: 400;
}
.hero-content h1 .line-1 {
    display: block;
    font-size: 0.45em;
    color: rgba(241, 245, 249, 0.68);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    animation: pv2-titleIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.hero-content h1 .line-2 {
    display: block;
    animation: pv2-titleInDelay 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}
.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--primary-bright) 0%, var(--accent-2) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: pv2-titleInDelay 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both,
               pv2-gradientShift 6s ease infinite 1.5s;
}
.hero-content .subtitle {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.7;
    color: rgba(241, 245, 249, 0.75);
    max-width: 640px;
    margin: 0 auto 40px;
    animation: pv2-fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: pv2-fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}
.scroll-hint {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    animation: pv2-fadeIn 1s ease 1.3s both;
}
.scroll-hint-line {
    position: relative;
    display: block;
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.6), transparent);
    overflow: hidden;
}
.scroll-hint-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 40%;
    background: #fff;
    animation: pv2-scrollDown 2.4s ease-in-out infinite;
}

/* ============================================================
   9. BOTTONI
   ============================================================ */
.btn-primary,
.btn-secondary,
.btn-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s, background 0.3s, border-color 0.3s;
    isolation: isolate;
    border: none;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary, #6C3CE1), var(--accent));
    color: #fff;
    box-shadow: 0 12px 40px -10px rgba(var(--primary-rgb), 0.8);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s;
    z-index: 0;
}
.btn-primary:hover::before { left: 150%; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -10px rgba(var(--accent-rgb), 0.6);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--accent-rgb), 0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -10px rgba(var(--accent-rgb), 0.5);
}
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}
.anim-btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    animation: pv2-shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

/* ============================================================
   10. PAGE SECTION
   ============================================================ */
.page-section {
    padding: 100px 0;
    position: relative;
}

/* ============================================================
   11. MANIFESTO TYPEWRITER
   ============================================================ */
.manifesto-section {
    padding: 40px 0 20px;
    position: relative;
}
.manifesto-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 56px 60px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse at top left, rgba(var(--primary-rgb), 0.18), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(var(--accent-rgb), 0.14), transparent 55%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(var(--primary-rgb), 0.22);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.manifesto-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--primary-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    z-index: -1;
    pointer-events: none;
}
.manifesto-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    border-radius: 3px 3px 0 0;
}
.manifesto-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 26px;
    padding: 6px 14px;
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    background: rgba(var(--accent-rgb), 0.08);
    border-radius: 999px;
}
.manifesto-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 10px var(--accent-2);
    animation: pv2-pulseDot 2s infinite;
}
.manifesto-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0.005em;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 20px;
    font-weight: 400;
}
.manifesto-title .accent {
    background: linear-gradient(135deg, var(--primary-bright), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.typewriter-wrap {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.4vw, 1.75rem);
    line-height: 1.5;
    color: var(--text);
    font-weight: 500;
    min-height: 3.5em;
    margin-top: 12px;
    letter-spacing: -0.005em;
}
.typewriter-text {
    display: inline;
    color: #fff;
    font-weight: 600;
}
.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--accent-2);
    margin-left: 3px;
    vertical-align: -0.12em;
    animation: typewriterBlink 1s steps(1) infinite;
    box-shadow: 0 0 8px var(--accent-2);
}

/* ============================================================
   12. HOME GRID (Esplora)
   ============================================================ */
.home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.home-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.9), rgba(var(--accent-rgb), 0.85));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s, box-shadow 0.5s;
    isolation: isolate;
    -webkit-tap-highlight-color: transparent;
}
.home-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(var(--accent-rgb), 0.6);
    box-shadow: 0 40px 80px -30px rgba(var(--accent-rgb), 0.6);
}
.home-card.is-touching {
    transform: scale(0.97);
    border-color: rgba(var(--accent-rgb), 0.7);
}
.home-card .card-image {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-card:hover .card-image { transform: scale(1.1); }
.home-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10,10,15,0.15) 0%, rgba(10,10,15,0.5) 45%, rgba(10,10,15,0.95) 100%);
    transition: background 0.5s;
}
.home-card:hover::after {
    background: linear-gradient(180deg, rgba(10,10,15,0.1) 0%, rgba(10,10,15,0.4) 40%, rgba(10,10,15,0.9) 100%);
}
.home-card .card-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px 24px 24px;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-card:hover .card-body { transform: translateY(-6px); }
.home-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.home-card h3 i {
    color: var(--accent-2);
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-card:hover h3 i { transform: rotate(-12deg) scale(1.15); }
.home-card p {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 16px;
}
.home-card .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    transition: gap 0.3s;
}
.home-card:hover .btn-link { gap: 12px; }
.card-shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.14) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.home-card:hover .card-shine { transform: translateX(100%); }

/* ============================================================
   13. CONTENT BOX
   ============================================================ */
.content-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 52px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    color: rgba(241, 245, 249, 0.85);
    font-size: 16.5px;
    line-height: 1.85;
}
.content-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary, #6C3CE1), var(--accent), var(--accent-2));
}
.content-box h1 {
    font-family: var(--font-display);
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 0 0 20px;
}
.content-box h1 span {
    background: linear-gradient(135deg, var(--primary, #6C3CE1), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.content-box h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
}
.content-box h2:first-of-type { margin-top: 0; }
.content-box h2 span { color: var(--accent-light); }
.content-box p { margin: 0 0 20px; }
.content-box p:last-child { margin-bottom: 0; }
.content-box ul { margin: 12px 0 20px; padding-left: 0; list-style: none; }
.content-box ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}
.content-box ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.2);
}
.content-box strong { color: #fff; font-weight: 600; }
.content-box a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 3px; }
.content-box a:hover { color: #fff; }

/* ============================================================
   14. SQUADRE
   ============================================================ */
.squadre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.squadre-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.85), rgba(var(--accent-rgb), 0.8));
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s, box-shadow 0.5s;
    isolation: isolate;
    -webkit-tap-highlight-color: transparent;
}
.squadre-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-rgb), 0.5);
    box-shadow: 0 30px 60px -25px rgba(var(--accent-rgb), 0.55);
}
.squadre-card.is-touching { transform: scale(0.97); }
.squadre-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}
.squadre-card:hover img { transform: scale(1.08); }
.squadre-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,10,15,0.95) 100%);
    z-index: 1;
}
.squadre-card .info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px 20px 20px;
    z-index: 2;
}
.squadre-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 6px;
}
.squadre-card p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.squadre-card .coaches {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}
.squadre-card .coaches i { color: var(--accent-2); }
.squadre-card .btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    transition: gap 0.3s;
}
.squadre-card:hover .btn-detail { gap: 12px; }

/* ============================================================
   15. NEWS
   ============================================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s, box-shadow 0.5s;
    -webkit-tap-highlight-color: transparent;
}
.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-rgb), 0.4);
    box-shadow: 0 30px 60px -25px rgba(var(--accent-rgb), 0.4);
}
.news-card.is-touching { transform: scale(0.98); }
.news-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card:hover img { transform: scale(1.06); }
.news-card .news-body { padding: 22px 22px 24px; }
.news-card .date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 12px;
}
.news-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.news-card p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(241, 245, 249, 0.65);
    margin: 0;
}

/* ============================================================
   16. SLIDER (dettaglio squadra)
   ============================================================ */
.slider-container {
    position: relative;
    max-width: 840px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.slider-track {
    display: flex;
    transition: transform 0.6s var(--ease);
}
.slider-slide {
    min-width: 100%;
    padding: 6px;
    box-sizing: border-box;
}
.slider-slide img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 15, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 20px;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: var(--t);
    line-height: 1;
}
.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 28px var(--primary-glow);
}
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 16px 0 12px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
.slider-dot.active {
    background: var(--secondary-bright);
    box-shadow: 0 0 16px var(--secondary-glow);
    width: 28px;
    border-radius: 6px;
}

/* ============================================================
   17. VENUES (allenamenti)
   ============================================================ */
.venues-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.venue-item {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    overflow: hidden;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s, box-shadow 0.5s;
    isolation: isolate;
}
.venue-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0.15) 0%, rgba(10,10,15,0.85) 100%);
    z-index: 0;
}
.venue-item.no-image {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.85), rgba(var(--accent-rgb), 0.75));
}
.venue-item:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-rgb), 0.5);
    box-shadow: 0 30px 60px -25px rgba(var(--accent-rgb), 0.55);
}
.venue-item h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px;
}
.venue-item .location {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}
.venue-item .location i { color: var(--accent-2); }

/* ============================================================
   18. CONTATTI
   ============================================================ */
.contatti-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}
.contatto-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 24px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s, box-shadow 0.4s;
    overflow: hidden;
}
.contatto-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--primary, #6C3CE1), var(--accent));
    opacity: 0.85;
}
.contatto-item:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.4);
    box-shadow: 0 20px 45px -20px rgba(var(--accent-rgb), 0.5);
}
.contatto-item .info { display: flex; flex-direction: column; gap: 4px; }
.contatto-item .name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.contatto-item .role {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-light);
}
.contatto-item .phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(241, 245, 249, 0.75);
    margin-top: 4px;
}
.contatto-item .phone i { color: var(--accent-2); }

/* ============================================================
   19. PDF GRID (linee guida)
   ============================================================ */
.pdf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 30px auto;
    max-width: 900px;
}
.pdf-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s, box-shadow 0.5s;
    overflow: hidden;
}
.pdf-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.14), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}
.pdf-card:hover::before { opacity: 1; }
.pdf-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-rgb), 0.45);
    box-shadow: 0 30px 60px -25px rgba(var(--accent-rgb), 0.5);
}
.pdf-card .pdf-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.18), rgba(var(--accent-rgb), 0.12));
    border: 1px solid rgba(231, 76, 60, 0.25);
    color: #FF6B6B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}
.pdf-card h3 {
    position: relative;
    font-family: var(--font-heading);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pdf-card p {
    position: relative;
    color: rgba(241, 245, 249, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.pdf-card .pdf-download {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-2);
    font-weight: 700;
    font-size: 14px;
    transition: gap 0.3s;
}
.pdf-card:hover .pdf-download { gap: 12px; }

/* ============================================================
   20. CTA V2 (home)
   ============================================================ */
.cta-v2 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 50px;
    border-radius: 28px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.18), rgba(var(--accent-rgb), 0.14));
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    isolation: isolate;
}
.cta-v2::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.22), transparent 40%);
    animation: pv2-ctaRotate 30s linear infinite;
    z-index: -1;
}
.cta-v2 h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 16px;
    font-weight: 400;
}
.cta-v2 h2 .accent {
    background: linear-gradient(135deg, var(--accent-2), var(--primary-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-v2 p {
    color: rgba(241, 245, 249, 0.7);
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 32px;
}
.cta-v2 .actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   21. UNISCITI
   ============================================================ */
.unisciti-grid-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}
.unisciti-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
    margin-top: 40px;
}
.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 36px;
    position: relative;
    overflow: hidden;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--primary, #6C3CE1), var(--accent));
}
.info-card .info-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.info-card .info-title i { color: var(--accent-light); font-size: 18px; }
.info-card .info-content {
    color: rgba(241, 245, 249, 0.85);
    font-size: 15px;
    line-height: 1.85;
    white-space: pre-line;
}
.actions-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.action-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}
.action-card:hover {
    border-color: rgba(var(--accent-rgb), 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -20px rgba(var(--accent-rgb), 0.5);
}
.action-card .action-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.action-card.pdf .action-icon {
    background: linear-gradient(135deg, #E74C3C, #c0392b);
    color: #fff;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}
.action-card.mail .action-icon {
    background: linear-gradient(135deg, var(--primary, #6C3CE1), var(--accent));
    color: #fff;
    box-shadow: 0 6px 20px rgba(108, 60, 225, 0.3);
}
.action-card h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}
.action-card p {
    color: rgba(241, 245, 249, 0.6);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.action-card .action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.action-card.pdf .action-btn {
    background: linear-gradient(135deg, #E74C3C, #c0392b);
    color: #fff;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.25);
}
.action-card.pdf .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
}
.action-card.mail .action-btn {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent-2);
}
.action-card.mail .action-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 60, 225, 0.35);
}
.action-card .action-email-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 12.5px;
    color: rgba(241, 245, 249, 0.6);
    text-align: center;
    word-break: break-all;
    transition: all 0.3s ease;
}
.action-card .action-email-text i {
    color: var(--accent-light);
    font-size: 12px;
    flex-shrink: 0;
}
.action-card .action-email-text a {
    color: rgba(241, 245, 249, 0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}
.action-card .action-email-text a:hover { color: #fff; }

/* ============================================================
   22. GROUP BIO / LEGAL LINKS
   ============================================================ */
.group-bio {
    display: flex;
    gap: 14px;
    background: rgba(var(--accent-rgb), 0.05);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 22px;
    color: rgba(241, 245, 249, 0.75);
    font-size: 13.5px;
    line-height: 1.7;
}
.group-bio i { color: var(--accent-light); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.group-bio strong { color: #fff; display: block; margin-bottom: 4px; font-size: 14px; }

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 30px 0 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.legal-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    padding: 13px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 48px;
}
.legal-links a:hover {
    border-color: rgba(var(--accent-rgb), 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -10px rgba(var(--accent-rgb), 0.4);
}
.legal-links a i { color: var(--accent-2); font-size: 16px; }

/* ============================================================
   23. GUIDELINES / QR (retro-compat)
   ============================================================ */
.guidelines {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}
.guidelines .icon-header {
    font-size: 44px;
    color: var(--primary-bright);
    margin-bottom: 12px;
}
.guidelines h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.guidelines h1 span { color: var(--accent-2); }
.qr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin: 30px 0;
}
.qr-item {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--t);
}
.qr-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.qr-item img {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    width: 100%;
    height: auto;
}
.qr-item h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    margin-top: 14px;
}

/* ============================================================
   24. TEAM DETAIL (dettaglio squadra)
   ============================================================ */
.team-detail {
    max-width: 840px;
    margin: 0 auto;
}
.team-detail h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.team-detail h1 span { color: var(--accent-2); }
.team-detail .coaches {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.team-detail .coaches i { color: var(--accent-2); margin-right: 8px; }
.team-detail .description {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.85;
    background: var(--bg-card);
    padding: 26px 30px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

/* ============================================================
   25. FOOTER
   ============================================================ */
.main-footer {
    background: #0a0a0f;
    color: #94A3B8;
    padding: 64px 0 28px;
    margin-top: 80px;
    border-top: 1px solid rgba(108, 60, 225, 0.15);
    position: relative;
    overflow: hidden;
}
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary, #6C3CE1), #2E7D32);
    border-radius: 0 0 6px 6px;
}
.main-footer .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}
.footer-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary, #6C3CE1), #2E7D32);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(108, 60, 225, 0.35);
}
.footer-brand-logo {
    height: 44px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.footer-brand-link:hover .footer-brand-logo { transform: scale(1.05); }
.footer-brand-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.3px;
}
.footer-brand-text strong { color: #fff; font-weight: 800; }
.footer-brand-desc {
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}
.footer-social a:hover {
    background: var(--primary, #6C3CE1);
    border-color: var(--primary, #6C3CE1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(108, 60, 225, 0.4);
}
.footer-nav h4,
.footer-contact h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-nav h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary, #6C3CE1), #2E7D32);
    border-radius: 2px;
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 0;
}
.footer-nav ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary, #6C3CE1);
    transition: width 0.25s ease;
}
.footer-nav ul li a:hover { color: #fff; padding-left: 6px; }
.footer-nav ul li a:hover::before { width: 10px; }
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #94A3B8;
}
.footer-contact p i {
    color: var(--primary, #6C3CE1);
    width: 16px;
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 13px;
}
.footer-contact p a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-word;
}
.footer-contact p a:hover { color: #fff; }

.footer-bottom {
    padding-top: 28px;
    text-align: center;
    font-size: 13px;
    color: #64748B;
}
.footer-copy {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #64748B;
}
.footer-logo-container { text-align: center; margin-top: 12px; }
.footer-logo-container a {
    display: inline-block;
    transition: opacity 0.3s ease;
}
.footer-logo-container a:hover { opacity: 0.85; }
.footer-logo-img {
    height: 50px;
    width: auto;
    display: inline-block;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}
.footer-logo-container a:hover .footer-logo-img { filter: brightness(1.3); }
.footer-credits { font-size: 11px; color: #444; margin-top: 15px; }
.footer-credits a {
    color: #555;
    text-decoration: none;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-credits a:hover { opacity: 0.8; color: var(--primary, #6C3CE1); }
.footer-credits a i { font-size: 11px; }

/* ============================================================
   26. RESPONSIVE
   ============================================================ */

/* Tablet large — esplora 2 col */
@media (max-width: 1024px) {
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Tablet — hamburger header + griglie */
@media (max-width: 992px) {
    .menu-toggle { display: inline-flex; }
    .main-header .main-nav {
        position: fixed;
        top: calc(var(--header-h) + 8px);
        right: 16px;
        width: 240px;
        max-height: calc(100vh - var(--header-h) - 24px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px;
        background: rgba(15, 15, 22, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
        transform: translateY(-12px) scale(0.96);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .main-header .main-nav.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
    .main-nav a {
        padding: 11px 14px;
        font-size: 14px;
        border-radius: 10px;
        width: 100%;
    }
    .main-nav a.active { border: none; }

    .unisciti-grid { grid-template-columns: 1fr; gap: 24px; }
    .actions-col {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .unisciti-grid-wrap { padding: 0 20px; }

    .manifesto-box { padding: 44px 36px; }

    .footer-top {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 36px;
    }
    .footer-contact {
        grid-column: 1 / -1;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
    }
}

/* Tablet medium */
@media (max-width: 900px) {
    .page-section { padding: 80px 0; }
    .section-header { margin-bottom: 44px; }
    .section-title { font-size: clamp(2rem, 5.5vw, 3rem); }
    .pdf-grid { grid-template-columns: 1fr; }
    .qr-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --header-h: 66px; }

    .container { padding: 0 18px; }
    .main-header .container { padding: 12px 18px; }
    .main-header .logo-text-brand,
    .main-header .logo-text-type { font-size: 24px; }
    .main-header .site-logo { height: 36px; }

    /* Marquee ben visibile */
    .brand-marquee {
        padding: 10px 0;
        background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.18), rgba(var(--accent-rgb), 0.18));
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
    }
    .brand-marquee-track {
        gap: 22px;
        font-size: 0.9rem;
        letter-spacing: 0.12em;
        animation-duration: 26s;
        color: rgba(255, 255, 255, 0.30);
    }
    .brand-marquee-track .sep {
        font-size: 0.7em;
        color: rgba(255, 255, 255, 0.30);
    }

    /* Rimuovi backdrop-filter pesanti */
    .content-box,
    .cta-v2,
    .home-card,
    .news-card,
    .hero-content .badge,
    .btn-secondary {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 50px 18px 50px;
    }
    .hero-bg { animation: none; opacity: 0.22; }
    .hero-float-1 { font-size: 28px; top: 12%; left: 6%; opacity: 0.10; }
    .hero-float-2 { font-size: 36px; top: 16%; right: 8%; opacity: 0.08; }
    .hero-float-3 { font-size: 24px; bottom: 10%; left: 10%; opacity: 0.12; }
    .hero-content .badge {
        font-size: 10px;
        padding: 6px 14px 6px 11px;
        margin-bottom: 18px;
        letter-spacing: 0.1em;
    }
    .badge-pulse { width: 6px; height: 6px; }
    .badge-ball { font-size: 10px; }
    .hero-content h1 {
        font-size: clamp(2.2rem, 10.5vw, 3.2rem);
        margin-bottom: 16px;
        line-height: 0.95;
    }
    .hero-content h1 .line-1 {
        font-size: 0.5em;
        margin-bottom: 6px;
        letter-spacing: 0.05em;
    }
    .hero-content .subtitle {
        font-size: 14px;
        margin-bottom: 26px;
        padding: 0 4px;
        line-height: 1.6;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        max-width: 340px;
        margin: 0 auto;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 22px;
        font-size: 14px;
    }
    .scroll-hint { display: none; }

    /* Sezioni */
    .page-section { padding: 56px 0; }
    .section-header { margin-bottom: 28px; padding: 0 16px; }
    .section-tag {
        font-size: 9.5px;
        padding: 5px 12px;
        letter-spacing: 0.12em;
        margin-bottom: 14px;
    }
    .section-tag-dot { width: 5px; height: 5px; }
    .section-title {
        font-size: clamp(1.7rem, 7.5vw, 2.2rem);
        margin-bottom: 10px;
    }
    .section-subtitle {
        font-size: 13.5px;
        padding: 0 4px;
        line-height: 1.6;
    }

    /* Manifesto Typewriter */
    .manifesto-section { padding: 20px 0 10px; }
    .manifesto-box {
        padding: 32px 22px;
        border-radius: 20px;
        margin: 0 16px;
    }
    .manifesto-label {
        font-size: 9.5px;
        padding: 5px 12px;
        letter-spacing: 0.2em;
        margin-bottom: 18px;
    }
    .manifesto-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
        margin-bottom: 14px;
    }
    .typewriter-wrap {
        font-size: 1rem;
        line-height: 1.55;
        min-height: 4.6em;
    }
    .typewriter-cursor {
        width: 2.5px;
    }

    /* Content box */
    .content-box {
        padding: 24px 18px;
        border-radius: 18px;
        font-size: 14.5px;
        line-height: 1.75;
    }
    .content-box h1 { font-size: 1.5rem; }
    .content-box h2 { font-size: 17px; margin: 20px 0 8px; }

    /* Esplora */
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 14px;
        max-width: 100%;
    }
    .home-card { aspect-ratio: 3 / 4; border-radius: 16px; }
    .home-card .card-body { padding: 14px; }
    .home-card h3 { font-size: 15px; margin-bottom: 6px; gap: 6px; line-height: 1.15; }
    .home-card h3 i { font-size: 12px; }
    .home-card p {
        font-size: 11px;
        margin-bottom: 8px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .home-card .btn-link { font-size: 10.5px; gap: 5px; }

    /* Squadre 2 col */
    .squadre-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }
    .squadre-card { aspect-ratio: 3 / 4; border-radius: 16px; }
    .squadre-card .info { padding: 16px 14px 14px; }
    .squadre-card h3 { font-size: 18px; }
    .squadre-card p { font-size: 11.5px; -webkit-line-clamp: 2; margin-bottom: 6px; }
    .squadre-card .coaches { font-size: 10px; margin-bottom: 8px; }
    .squadre-card .btn-detail { font-size: 11px; }

    /* News */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 16px;
    }
    .news-card { border-radius: 18px; }
    .news-card h3 { font-size: 18px; margin-bottom: 6px; }
    .news-card .news-body { padding: 18px 18px 20px; }
    .news-card .date { font-size: 10px; margin-bottom: 8px; }
    .news-card p { font-size: 13px; line-height: 1.6; }

    /* Venues */
    .venues-list {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 16px;
    }
    .venue-item {
        aspect-ratio: 5 / 3;
        padding: 22px 20px;
        border-radius: 18px;
    }
    .venue-item h3 { font-size: 20px; }
    .venue-item .location { font-size: 11px; }

    /* Contatti */
    .contatti-list { gap: 10px; padding: 0 16px; }
    .contatto-item { padding: 18px 18px 16px; border-radius: 16px; }
    .contatto-item .name { font-size: 15.5px; }
    .contatto-item .role { font-size: 10px; }
    .contatto-item .phone { font-size: 13.5px; }

    /* CTA */
    .cta-v2 {
        padding: 40px 20px;
        border-radius: 20px;
        margin: 0 16px;
    }
    .cta-v2 h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); margin-bottom: 12px; }
    .cta-v2 p { font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
    .cta-v2 .actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .cta-v2 .actions .btn-primary,
    .cta-v2 .actions .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 22px;
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary { font-size: 14px; padding: 14px 22px; min-height: 46px; }

    .btn-primary:active,
    .btn-secondary:active,
    .legal-links a:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }

    /* Slider */
    .slider-slide img { height: 260px; }
    .slider-btn { font-size: 16px; padding: 9px 14px; }

    /* Unisciti */
    .unisciti-grid-wrap { padding: 0 16px; }
    .unisciti-grid { gap: 18px; margin-top: 24px; }
    .actions-col {
        order: 1;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .info-card {
        order: 2;
        padding: 22px 20px;
    }
    .action-card { padding: 16px 14px; border-radius: 16px; }
    .action-card .action-icon {
        width: 42px;
        height: 42px;
        font-size: 19px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    .action-card h3 { font-size: 14px; margin-bottom: 4px; }
    .action-card p { font-size: 12px; line-height: 1.5; margin-bottom: 12px; }
    .action-card .action-btn { padding: 11px 12px; font-size: 13px; gap: 6px; }
    .action-card .action-email-text {
        font-size: 11px;
        padding: 7px 8px;
        margin-top: 10px;
        gap: 6px;
    }
    .action-card .action-email-text i { font-size: 10px; }

    /* Footer mobile */
    .main-footer { padding: 40px 0 24px; margin-top: 50px; }
    .main-footer .container { padding: 0 18px; }
    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
        padding-bottom: 28px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .footer-brand-link { justify-content: center; margin-bottom: 12px; }
    .footer-brand-logo { height: 50px; max-width: 140px; }
    .footer-brand-desc { max-width: 340px; margin: 0 auto 16px; font-size: 13px; }
    .footer-social { justify-content: center; }
    .footer-nav { width: 100%; text-align: center; }
    .footer-nav h4 { font-size: 12px; margin-bottom: 14px; padding-bottom: 8px; }
    .footer-nav h4::after { left: 50%; transform: translateX(-50%); }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 18px;
    }
    .footer-nav ul li { margin-bottom: 0; }
    .footer-nav ul li a { font-size: 13px; padding: 4px 0; }
    .footer-nav ul li a::before { display: none; }
    .footer-nav ul li a:hover { padding-left: 0; }
    .footer-contact {
        width: 100%;
        text-align: center;
        padding-top: 0;
        border-top: none;
    }
    .footer-contact h4 { font-size: 12px; margin-bottom: 14px; padding-bottom: 8px; }
    .footer-contact h4::after { left: 50%; transform: translateX(-50%); }
    .footer-contact p {
        justify-content: center;
        text-align: center;
        font-size: 13px;
        margin-bottom: 8px;
    }
    .footer-bottom { padding-top: 22px; }
    .footer-copy { font-size: 12px; margin-bottom: 14px; }
    .footer-logo-img { height: 40px; }
    .footer-credits { margin-top: 12px; }

    /* Disabilita hover lift su mobile */
    .home-card:hover,
    .squadre-card:hover,
    .news-card:hover,
    .venue-item:hover,
    .contatto-item:hover,
    .cta-v2:hover,
    .pdf-card:hover { transform: none; }
    .home-card:hover .card-image,
    .squadre-card:hover img,
    .news-card:hover img { transform: none; }
    .home-card:hover .card-shine { transform: translateX(-100%); }
    .anim-btn-shimmer::after { animation: none; }
}

/* Mobile piccolo */
@media (max-width: 480px) {
    :root { --header-h: 62px; }
    .container { padding: 0 16px; }
    .page-section { padding: 48px 0; }

    .main-header .container { padding: 11px 16px; }
    .main-header .logo-text-brand,
    .main-header .logo-text-type { font-size: 22px; }
    .main-header .site-logo { height: 34px; }

    .brand-marquee { padding: 9px 0; }
    .brand-marquee-track {
        gap: 18px;
        font-size: 0.85rem;
        animation-duration: 22s;
        letter-spacing: 0.13em;
    }

    .hero { padding: 44px 16px 44px; }
    .hero-content h1 {
        font-size: clamp(1.9rem, 11.5vw, 2.6rem);
        margin-bottom: 14px;
    }
    .hero-content h1 .line-1 { font-size: 0.55em; }
    .hero-content .subtitle { font-size: 13.5px; margin-bottom: 22px; }
    .hero-content .badge {
        font-size: 9px;
        padding: 5px 12px 5px 10px;
        margin-bottom: 16px;
        gap: 8px;
    }
    .hero-actions { max-width: 100%; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { font-size: 13.5px; padding: 13px 20px; }

    .section-header { margin-bottom: 24px; padding: 0 14px; }
    .section-title { font-size: clamp(1.5rem, 8vw, 1.95rem); }
    .section-subtitle { font-size: 13px; }
    .section-tag { font-size: 9px; padding: 4px 11px; margin-bottom: 12px; }

    /* Manifesto piccolo */
    .manifesto-box { padding: 26px 18px; }
    .manifesto-title { font-size: 1.5rem; }
    .typewriter-wrap { font-size: 0.95rem; min-height: 5em; }

    .home-grid { gap: 10px; padding: 0 12px; }
    .home-card { border-radius: 14px; }
    .home-card .card-body { padding: 13px; }
    .home-card h3 { font-size: 14px; }
    .home-card h3 i { font-size: 11px; }
    .home-card p { font-size: 10.5px; }

    .squadre-grid,
    .news-grid,
    .venues-list,
    .contatti-list { padding: 0 14px; }

    .content-box { padding: 20px 16px; font-size: 14px; }
    .content-box h1 { font-size: 1.35rem; }
    .content-box h2 { font-size: 15.5px; }

    .cta-v2 { padding: 32px 18px; margin: 0 14px; }
    .cta-v2 h2 { font-size: 1.55rem; }

    .unisciti-grid-wrap { padding: 0 12px; }
    .unisciti-grid { gap: 14px; margin-top: 20px; }
    .actions-col { grid-template-columns: 1fr 1fr; gap: 10px; }
    .info-card { padding: 18px 16px; }
    .info-card .info-title { font-size: 13.5px; margin-bottom: 12px; padding-bottom: 10px; }
    .info-card .info-content { font-size: 12.5px; line-height: 1.65; }
    .action-card { padding: 14px 10px; border-radius: 14px; }
    .action-card .action-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
        border-radius: 10px;
        margin-bottom: 8px;
    }
    .action-card h3 { font-size: 12.5px; margin-bottom: 4px; }
    .action-card p { font-size: 11px; line-height: 1.4; margin-bottom: 10px; }
    .action-card .action-btn {
        padding: 9px 6px;
        font-size: 11.5px;
        gap: 4px;
    }
    .action-card .action-btn i { font-size: 10px; }
    .action-card .action-email-text {
        font-size: 9.5px;
        padding: 6px 5px;
        margin-top: 8px;
        gap: 4px;
        border-radius: 8px;
    }
    .action-card .action-email-text i { font-size: 9px; }

    .slider-slide img { height: 200px; }

    .footer-copy { font-size: 11px; }
    .footer-logo-img { height: 34px; }
    .footer-credits { font-size: 10.5px; }
}

/* Dispositivi molto piccoli */
@media (max-width: 380px) {
    .hero-content h1 { font-size: 1.75rem; }
    .brand-marquee { padding: 8px 0; }
    .brand-marquee-track {
        gap: 16px;
        font-size: 0.8rem;
        animation-duration: 20s;
        letter-spacing: 0.13em;
    }
    .section-title { font-size: 1.4rem; }
    .home-card h3 { font-size: 12.5px; }
    .home-card p { font-size: 10px; }
    .squadre-card h3 { font-size: 16px; }
    .typewriter-wrap { font-size: 0.9rem; }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 24px 40px;
    }
    .hero-content h1 { font-size: 2rem; }
    .hero-content .badge { margin-bottom: 12px; }
    .scroll-hint { display: none; }
}

/* ============================================================
   27. ACCESSIBILITÀ
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
    .brand-marquee-track { animation: none !important; }
    .hero-float { display: none !important; }
    .typewriter-cursor { animation: none !important; opacity: 1; }
    .hero-content h1 .highlight { animation: none !important; }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-bright);
    outline-offset: 3px;
    border-radius: 6px;
}