    /* ===================== DESIGN TOKENS ===================== */
    :root {
      --bg: #000000;
      --accent: #00ffcc;
      --text: #ffffff;
      --text-muted: #888888;
      --glass-bg: rgba(255, 255, 255, 0.03);
      --glass-border: rgba(255, 255, 255, 0.08);
      --font-main: 'Space Grotesk', sans-serif;
      --font-mono: 'Space Mono', monospace;
      --nav-h: 72px;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ===================== RESET & BASE ===================== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--nav-h);
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-main);
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    ::selection {
      background: var(--accent);
      color: #000;
    }

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

    img, svg, canvas, audio {
      display: block;
      max-width: 100%;
    }

    /* ===================== SFERE MESH GRADIENT (SFONDO) ===================== */
    .mesh {
      position: fixed;
      border-radius: 50%;
      filter: blur(140px);
      opacity: 0.1;
      pointer-events: none;
      z-index: 0;
    }

    .mesh-1 {
      width: 55vmax;
      height: 55vmax;
      top: -18vmax;
      right: -14vmax;
      background: radial-gradient(circle at 35% 35%, #00ffcc, #003366 60%, transparent 100%);
    }

    .mesh-2 {
      width: 48vmax;
      height: 48vmax;
      bottom: -16vmax;
      left: -12vmax;
      background: radial-gradient(circle at 60% 40%, #2244aa, #00ffcc 55%, transparent 100%);
    }

    /* ===================== HEADER / NAVBAR ===================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(1.25rem, 5vw, 3rem);
      background: rgba(0, 0, 0, 0.45);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--glass-border);
    }

    .logo {
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.35em;
      color: var(--text);
    }

    .logo span { color: var(--accent); }

    .nav-links {
      display: none; /* mobile-first: nascosti, visibili da desktop */
      list-style: none;
      gap: 2.5rem;
      align-items: center;
    }

    .nav-links a {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.35s var(--ease);
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width 0.35s var(--ease);
    }

    .nav-links a:hover,
    .nav-links a:focus-visible { color: var(--text); }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after { width: 100%; }

    /* Hamburger */
    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      width: 44px;
      height: 44px;
      padding: 10px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 120;
    }

    .hamburger .line {
      width: 100%;
      height: 1px;
      background: var(--text);
      transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), background 0.3s;
      transform-origin: center;
    }

    .hamburger[aria-expanded="true"] .line { background: var(--accent); }
    .hamburger[aria-expanded="true"] .line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger[aria-expanded="true"] .line:nth-child(2) { opacity: 0; }
    .hamburger[aria-expanded="true"] .line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Overlay mobile a schermo intero */
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 110;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      background: rgba(0, 0, 0, 0.82);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.45s var(--ease), visibility 0.45s;
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu a {
      font-family: var(--font-main);
      font-weight: 500;
      font-size: clamp(1.8rem, 8vw, 3rem);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.3s var(--ease), letter-spacing 0.3s var(--ease), transform 0.5s var(--ease);
      transform: translateY(24px);
      opacity: 0;
    }

    .mobile-menu.open a {
      transform: translateY(0);
      opacity: 1;
    }

    .mobile-menu a:hover,
    .mobile-menu a:focus-visible {
      color: var(--accent);
      letter-spacing: 0.2em;
    }

    .mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
    .mobile-menu.open a:nth-child(2) { transition-delay: 0.16s; }
    .mobile-menu.open a:nth-child(3) { transition-delay: 0.24s; }

    /* ===================== HERO ===================== */
    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
      overflow: hidden;
    }

    #particles {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      will-change: transform;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-tag {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeIn 1s var(--ease) 0.2s forwards;
    }

    .hero-title {
      font-weight: 700;
      font-size: clamp(2.6rem, 11vw, 7.5rem);
      line-height: 1.02;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      min-height: 3.06em; /* 3 righe riservate: niente reflow durante il typing */
    }

    .hero-title .tline {
      display: block;
      white-space: nowrap;
    }

    /* Cursore iper-tech: blocco cyan lampeggiante */
    .cursor {
      display: inline-block;
      width: 0.55em;
      height: 0.9em;
      margin-left: 0.08em;
      background: var(--accent);
      vertical-align: -0.08em;
      animation: blink 0.85s steps(1) infinite;
    }

    @keyframes blink {
      0%, 55% { opacity: 1; }
      56%, 100% { opacity: 0; }
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    .hero-manifesto {
      max-width: 560px;
      margin: 2.5rem auto 0;
      color: var(--text-muted);
      font-size: clamp(0.95rem, 2.4vw, 1.08rem);
      font-weight: 300;
      opacity: 0;
      transition: opacity 1.2s var(--ease);
    }

    .hero-manifesto.visible { opacity: 1; }

    /* Pulsante minimalista con bagliore geometrico sottile */
    .btn {
      display: inline-block;
      margin-top: 3rem;
      padding: 1rem 3rem;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--text);
      background: transparent;
      border: 1px solid var(--glass-border);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transition: color 0.45s var(--ease), border-color 0.45s var(--ease),
                  box-shadow 0.45s var(--ease), opacity 1.2s var(--ease),
                  transform 0.45s var(--ease);
    }

    .btn.visible { opacity: 1; }

    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 30%, rgba(0, 255, 204, 0.12) 50%, transparent 70%);
      transform: translateX(-100%);
      transition: transform 0.7s var(--ease);
    }

    .btn:hover,
    .btn:focus-visible {
      color: var(--accent);
      border-color: rgba(0, 255, 204, 0.5);
      box-shadow: 0 0 24px rgba(0, 255, 204, 0.12), inset 0 0 12px rgba(0, 255, 204, 0.05);
      transform: translateY(-2px);
    }

    .btn:hover::before,
    .btn:focus-visible::before { transform: translateX(100%); }

    /* ===================== SEZIONI GENERICHE ===================== */
    .section {
      position: relative;
      z-index: 2;
      padding: clamp(5rem, 12vw, 9rem) clamp(1.25rem, 6vw, 4rem);
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.9rem;
    }

    .section-title {
      font-size: clamp(1.9rem, 5vw, 3rem);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: clamp(2.5rem, 6vw, 4rem);
    }

    /* ===================== PROJECT ===================== */
    .project-grid {
      display: grid;
      grid-template-columns: 1fr; /* mobile-first */
      gap: clamp(2.5rem, 6vw, 5rem);
      align-items: center;
    }

    .project-text p {
      color: var(--text-muted);
      margin-bottom: 1.4rem;
      font-size: 1rem;
    }

    .project-text p strong {
      color: var(--text);
      font-weight: 500;
    }

    .project-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.2rem;
      flex-wrap: wrap;
    }

    .stat .num {
      font-family: var(--font-mono);
      font-size: 1.5rem;
      color: var(--accent);
    }

    .stat .lbl {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 0.3rem;
    }

    /* Blocco asettico AUDIO VISUAL NODE — glassmorphism */
    .av-node {
      background: var(--glass-bg);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      padding: clamp(1.75rem, 5vw, 3rem);
    }

    .av-node .node-label {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 0.5rem;
    }

    .av-node .node-sub {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .av-node .node-wave {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.4), transparent);
      margin-bottom: 2rem;
    }

    /* Player nativo reso scuro via filtri di inversione */
    .custom-audio-player {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 1rem;
    }

    .play-btn {
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
      padding: 0.5rem 1rem;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      cursor: pointer;
      transition: all 0.3s var(--ease);
    }
    
    .play-btn:hover {
        background: var(--accent);
        color: var(--bg);
    }

    .progress-container {
      flex-grow: 1;
      height: 2px;
      background: var(--glass-border);
    }

    .progress-bar {
      height: 100%;
      background: var(--accent);
      width: 0%;
      transition: width 0.1s linear;
    }

    #audioSource { display: none; }

    /* ===================== ARTISTS ===================== */
    .artists-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .artist-card {
      background: var(--glass-bg);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      padding: 1.75rem;
      transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
    }

    .artist-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0, 255, 204, 0.45);
      box-shadow: 0 12px 40px rgba(0, 255, 204, 0.06);
    }

    .artist-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s var(--ease);
    }

    .artist-card:hover .artist-avatar img { transform: scale(1.05); }

    .artist-card h3 {
      font-size: 1.15rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 0.2rem;
    }

    .artist-role {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .artist-bio-container {
      margin-bottom: 1.5rem;
    }


    /* Canvas Globale */
    #particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      background: #000;
    }

    /* Sfondi trasparenti */
    .section, .footer {
      background: rgba(0, 0, 0, 0.6) !important;
    }

    /* Troncamento biografia */
    .artist-bio {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      color: var(--text-muted);
      font-size: 0.88rem;
      margin-bottom: 1.5rem;
    }

    /* Icone Social */
    .artist-socials {
      display: flex;
      gap: 1.5rem;
      margin-top: 1rem;
    }

    .social-icon {
      color: var(--text-muted);
      transition: color 0.3s var(--ease), transform 0.3s var(--ease);
    }

    .social-icon:hover {
      color: var(--accent);
      transform: translateY(-3px);
    }

    .read-more-btn {
      background: none;
      border: none;
      color: var(--accent);
      font-family: var(--font-mono);
      font-size: 0.7rem;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 0.5rem;
      padding: 0;
      border-bottom: 1px solid var(--accent);
    }

    .read-more-btn:hover {
      color: var(--text);
      border-color: var(--text);
    }

    .artist-links {
      display: flex;
      gap: 1.5rem;
    }

    .artist-links a {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      border-bottom: 1px solid transparent;
      padding-bottom: 2px;
      transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
    }

    .artist-links a:hover,
    .artist-links a:focus-visible {
      color: var(--accent);
      border-color: var(--accent);
    }

    /* ===================== CONTACTS / FOOTER ===================== */
    .footer {
      position: relative;
      z-index: 2;
      border-top: 1px solid var(--glass-border);
      background: rgba(0, 0, 0, 0.5);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 6vw, 4rem) 2.5rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr; /* mobile-first */
      gap: clamp(3rem, 8vw, 6rem);
      margin-bottom: clamp(3.5rem, 8vw, 5rem);
    }

    .contact-info p {
      color: var(--text-muted);
      max-width: 420px;
      margin-bottom: 1.75rem;
    }

    .contact-email {
      font-family: var(--font-mono);
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      color: var(--text);
      border-bottom: 1px solid var(--glass-border);
      padding-bottom: 3px;
      transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
    }

    .contact-email:hover,
    .contact-email:focus-visible {
      color: var(--accent);
      border-color: var(--accent);
    }

    .contact-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .contact-link-item {
      font-family: var(--font-mono);
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      border: 1px solid var(--glass-border);
      padding: 0.5rem 1rem;
      transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
    }

    .contact-link-item:hover {
      color: var(--accent);
      border-color: rgba(0, 255, 204, 0.5);
      transform: scale(1.05);
    }

    .footer-bottom {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      border-top: 1px solid var(--glass-border);
      padding-top: 2rem;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ===================== REVEAL ON SCROLL ===================== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===================== DESKTOP BREAKPOINTS ===================== */
    @media (min-width: 768px) {
      .nav-links { display: flex; }
      .hamburger { display: none; }
      .mobile-menu { display: none; }
      .project-grid { grid-template-columns: 1fr 1fr; }
      .contact-grid { grid-template-columns: 1fr 1fr; }
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    /* ===================== NEWS SECTION ===================== */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .news-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      padding: 1.5rem;
      transition: transform 0.4s var(--ease);
      display: flex;
      flex-direction: column;
    }

    .news-card:hover {
      transform: translateY(-5px);
      border-color: rgba(0, 255, 204, 0.3);
    }

    .news-img {
      width: 100%;
      aspect-ratio: 16/9;
      background: #111;
      margin-bottom: 1rem;
      overflow: hidden;
    }

    .news-date {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      color: var(--accent);
      display: block;
      margin-bottom: 0.5rem;
    }

    .news-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .news-card p {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex-grow: 1;
    }

    .news-link {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      text-transform: uppercase;
      color: var(--accent);
      border-bottom: 1px solid var(--accent);
      justify-self: start;
      align-self: flex-start;
      padding-bottom: 2px;
    }

    /* OTTIMIZZAZIONE MOBILE (Media Queries) */
    @media (max-width: 768px) {
      .news-grid {
        grid-template-columns: 1fr;
      }
    }