:root {
    --bg: #0a0a0a;
    --text: #ffffff;
    --accent: #bc13fe; /* Viola Neon coerente con le tue luci */
    --gray: #888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    overflow-x: hidden;
}

/* Navigazione */
nav {
    padding: 30px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    mix-blend-mode: difference;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    color: white;
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    margin-left: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section con Immagine Sfondo */
.hero {
    height: 100vh;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Effetto Parallasse leggero */
}

h1 {
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.outline {
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.hero-sub {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.scroll-indicator {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 2px;
}

/* Griglia Sezioni */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    padding: 150px 5%;
    border-top: 1px solid #222;
}

.label {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 3px;
    font-weight: 600;
}

.content h2 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 50px;
}

/* Split Content (About) */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.side-img img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(30%) contrast(1.1);
}

.service-list { list-style: none; }

.service-list li {
    font-size: 1.5rem;
    padding: 20px 0;
    border-bottom: 1px solid #222;
    color: var(--gray);
}

.service-list li span {
    color: var(--accent);
    margin-right: 20px;
    font-size: 0.8rem;
}

/* Work Section con Sfondo */
.work {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.track-title {
    font-size: 3rem;
    margin: 10px 0;
}

.play-link {
    text-decoration: none;
    color: var(--accent);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-box {
    padding: 150px 5%;
    text-align: center;
    background-color: var(--bg);
}

.contact-box h2 {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 900;
    margin-top: 20px;
}

.email-link {
    color: var(--accent);
    text-decoration: none;
}

.email-link:hover { text-decoration: underline; }

.social-footer { margin-top: 50px; }

.social-footer a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

footer {
    padding: 40px 5%;
    font-size: 0.7rem;
    color: var(--gray);
    text-align: center;
    border-top: 1px solid #111;
}

/* Mobile */
@media (max-width: 900px) {
    .grid-layout { grid-template-columns: 1fr; gap: 40px; }
    .split { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}