*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --negro: #080808;
    --blanco: #f0ede8;
    --acento: #c8a96e;
    --gris: #111111;
    --gris2: #1e1e1e;
    --borde: rgba(200, 169, 110, 0.15);
    --muted: #5a5a5a;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--negro);
    color: var(--blanco);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* CURSOR */
.cursor {
    width: 6px;
    height: 6px;
    background: var(--acento);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(200, 169, 110, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 5rem;
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--borde);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.25em;
    color: var(--acento);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--acento);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--borde);
    padding: 0.4rem 0.8rem;
    color: var(--acento);
    font-size: 1rem;
    cursor: pointer;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 7rem 5rem 7rem;
    position: relative;
    overflow: hidden;
    background: url('imagenes/img/fondoRoger.png') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(8, 8, 8, 0.75) 55%, rgba(8, 8, 8, 0.45) 100%);
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(200, 169, 110, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 169, 110, 0.025) 1px, transparent 1px);
    background-size: 70px 70px;
}

.hero-big-num {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    z-index: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(10rem, 22vw, 22rem);
    color: rgba(200, 169, 110, 0.04);
    line-height: 1;
    user-select: none;
    letter-spacing: -0.04em;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 950px;
}

.hero-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--acento);
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.3s forwards;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.5rem, 11vw, 11rem);
    line-height: 0.88;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-title .gold {
    color: var(--acento);
}

.hero-desc {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: var(--muted);
    max-width: 500px;
    line-height: 1.9;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-chips {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
}

.chip {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(200, 169, 110, 0.35);
    padding: 0.4rem 1.1rem;
    color: var(--acento);
}

.hero-cta {
    display: inline-block;
    margin-top: 3rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--acento);
    color: var(--negro);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    transition: background 0.3s;
    opacity: 0;
    animation: fadeUp 0.9s ease 1.1s forwards;
}

.hero-cta:hover {
    background: var(--blanco);
}

.hero-scroll {
    position: absolute;
    bottom: 3.5rem;
    right: 5rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 55px;
    background: linear-gradient(var(--acento), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* SECTIONS BASE */
.s-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--acento);
    margin-bottom: 1rem;
}

.s-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 2.5rem;
}

.s-divider {
    width: 50px;
    height: 1px;
    background: var(--acento);
    margin-bottom: 2rem;
}

/* SOBRE */
#sobre {
    padding: 9rem 5rem;
    background: var(--gris);
    border-top: 1px solid var(--gris2);
}

.sobre-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: start;
}

.sobre-texto p {
    color: var(--muted);
    line-height: 1.95;
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
}

.sobre-texto strong {
    color: var(--blanco);
    font-weight: 400;
}

.sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 3.5rem;
    border: 1px solid var(--gris2);
}

.stat {
    padding: 1.8rem 2rem;
    border-right: 1px solid var(--gris2);
    border-bottom: 1px solid var(--gris2);
}

.stat:nth-child(even) {
    border-right: none;
}

.stat:nth-child(3),
.stat:nth-child(4) {
    border-bottom: none;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    color: var(--acento);
    line-height: 1;
}

.stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
}

.sobre-foto {
    position: sticky;
    top: 8rem;
}

.foto-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--gris2);
    border: 1px solid var(--borde);
    overflow: hidden;
    position: relative;
}

.foto-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
}

.foto-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(8, 8, 8, 0.85));
}

.foto-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--acento);
}

/* ARTISTAS */
#artistas {
    padding: 9rem 5rem;
    background: var(--negro);
    border-top: 1px solid var(--gris2);
}

.artistas-header {
    margin-bottom: 4rem;
}

.artistas-lista {
    list-style: none;
}

.artista-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--gris2);
    transition: padding-left 0.3s ease;
}

.artista-item:first-child {
    border-top: 1px solid var(--gris2);
}

.artista-item:hover {
    padding-left: 1.5rem;
}

.artista-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--acento);
    min-width: 2.2rem;
    opacity: 0.5;
}

.artista-nombre {
    font-size: 1.15rem;
    font-weight: 400;
    flex: 1;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}

.artista-item:hover .artista-nombre {
    color: var(--acento);
}

.artista-dash {
    font-size: 0.8rem;
    color: var(--acento);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.artista-item:hover .artista-dash {
    opacity: 1;
    transform: translateX(4px);
}

/* TEMAS */
#temas {
    padding: 9rem 5rem;
    background: var(--gris);
    border-top: 1px solid var(--gris2);
}

.temas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gris2);
    margin-top: 4rem;
}

.tema-card {
    background: var(--gris);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.tema-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--acento);
    transition: height 0.4s ease;
}

.tema-card:hover::before {
    height: 100%;
}

.tema-card:hover {
    background: var(--gris2);
}

.tema-titulo {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.tema-artista {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

.tema-badge {
    display: inline-block;
    margin-top: 1rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(200, 169, 110, 0.1);
    color: var(--acento);
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(200, 169, 110, 0.2);
}

/* HLS */
#hls {
    padding: 9rem 5rem;
    background: var(--negro);
    border-top: 1px solid var(--gris2);
}

.hls-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.hls-list {
    list-style: none;
    margin-top: 2.5rem;
}

.hls-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--gris2);
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.hls-list li:first-child {
    border-top: 1px solid var(--gris2);
}

.hls-list li .ico {
    color: var(--acento);
    min-width: 1.5rem;
    padding-top: 0.1rem;
}

.hls-box {
    border: 1px solid var(--borde);
    padding: 4rem 3rem;
    position: relative;
    background: var(--gris);
}

.hls-box::before {
    content: 'HLS PODCAST';
    position: absolute;
    top: -0.65rem;
    left: 2rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    background: var(--gris);
    padding: 0 0.8rem;
    color: var(--acento);
}

.hls-podcast-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hls-podcast-title span {
    color: var(--acento);
}

.hls-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.hls-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.hls-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    border: 1px solid var(--borde);
    padding: 0.35rem 0.9rem;
    color: var(--muted);
}

/* CATÁLOGO */
#catalogo {
    padding: 9rem 5rem;
    background: var(--gris);
    border-top: 1px solid var(--gris2);
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gris2);
    margin-top: 4rem;
}

.cat-card {
    background: var(--gris);
    padding: 3rem 2.5rem;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

.cat-card:hover {
    background: var(--gris2);
}

.cat-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--acento);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    display: block;
}

.cat-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    color: var(--blanco);
    margin-bottom: 0.8rem;
}

.cat-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
}

.cat-arrow {
    display: block;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--acento);
    transition: transform 0.3s;
}

.cat-card:hover .cat-arrow {
    transform: translateX(8px);
}

/* REDES */
#redes {
    padding: 9rem 5rem;
    background: var(--negro);
    border-top: 1px solid var(--gris2);
}

.redes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gris2);
    margin-top: 4rem;
}

.red-card {
    background: var(--negro);
    padding: 2.5rem 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: background 0.3s;
}

.red-card:hover {
    background: var(--gris);
}

.red-plat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: var(--blanco);
    transition: color 0.3s;
}

.red-card:hover .red-plat {
    color: var(--acento);
}

.red-sub {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
}

.red-arrow {
    font-size: 0.85rem;
    color: var(--acento);
    margin-top: auto;
    padding-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.red-card:hover .red-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* CONTACTO */
#contacto {
    padding: 9rem 5rem;
    background: var(--gris);
    border-top: 1px solid var(--gris2);
    text-align: center;
}

.contacto-inner {
    max-width: 600px;
    margin: 0 auto;
}

.contacto-inner p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 3rem;
}

.btn-contacto {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--acento);
    color: var(--negro);
    padding: 1.1rem 3rem;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-contacto:hover {
    background: var(--blanco);
}

/* FOOTER */
footer {
    background: var(--negro);
    border-top: 1px solid var(--gris2);
    padding: 2.5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--acento);
}

.footer-copy {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--muted);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    nav {
        padding: 1.2rem 1.8rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--negro);
        border-bottom: 1px solid var(--borde);
        padding: 1.5rem 2rem;
        gap: 1.5rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 0 1.8rem 5rem;
    }

    #sobre,
    #artistas,
    #temas,
    #hls,
    #catalogo,
    #redes,
    #contacto {
        padding: 6rem 1.8rem;
    }

    .sobre-inner,
    .hls-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .sobre-foto {
        position: static;
    }

    .temas-grid,
    .catalogo-grid {
        grid-template-columns: 1fr;
    }

    .redes-grid {
        grid-template-columns: 1fr 1fr;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem 1.8rem;
    }
}

@media (max-width: 600px) {
    .redes-grid {
        grid-template-columns: 1fr;
    }

    .hero-scroll {
        display: none;
    }
}

/* CARRUSEL */
.carrusel-wrap {
    margin-top: 4rem;
    overflow: hidden;
}

.carrusel-track {
    display: flex;
    gap: 1.2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carrusel-slide {
    min-width: calc(20% - 1rem);
    aspect-ratio: 9/16;
    max-height: 500px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--borde);
}

.carrusel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
    transition: transform 0.5s ease, filter 0.4s ease;
}

.carrusel-slide:hover img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(1.1);
}

.carrusel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.car-btn {
    background: none;
    border: 1px solid var(--borde);
    color: var(--acento);
    font-size: 1rem;
    width: 2.4rem;
    height: 2.4rem;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    font-family: 'DM Mono', monospace;
}

.car-btn:hover {
    background: var(--acento);
    color: var(--negro);
    border-color: var(--acento);
}

.car-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.car-dot {
    width: 5px;
    height: 5px;
    background: var(--muted);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.car-dot.active {
    background: var(--acento);
    transform: scale(1.4);
}

@media (max-width: 900px) {
    .carrusel-slide {
        min-width: calc(33.333% - 0.8rem);
        max-height: 300px;
    }
}

@media (max-width: 600px) {
    .carrusel-slide {
        min-width: calc(50% - 0.6rem);
        max-height: 260px;
    }
}
.hls-yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 2rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff4444;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.hls-yt-btn:hover {
    background: #ff0000;
    color: var(--blanco);
    border-color: #ff0000;
}

.hls-yt-icon {
    font-size: 0.75rem;
}

/* JOURNEY */
#journey {
    padding: 9rem 5rem;
    background: var(--negro);
    border-top: 1px solid var(--gris2);
}

.journey-sub {
    font-size: 0.88rem;
    color: var(--muted);
    font-style: italic;
    margin-top: -1rem;
    margin-bottom: 4rem;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gris2);
    margin-top: 1rem;
}

.journey-card {
    background: var(--negro);
    padding: 2.5rem 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.journey-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--acento);
    transition: width 0.4s ease;
}

.journey-card:hover::before {
    width: 100%;
}

.journey-card:hover {
    background: var(--gris);
}

.journey-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    color: var(--acento);
    opacity: 0.5;
}

.journey-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--blanco);
    transition: color 0.3s;
    line-height: 1.1;
}

.journey-card:hover .journey-name {
    color: var(--acento);
}

.journey-arrow {
    font-size: 0.85rem;
    color: var(--acento);
    margin-top: auto;
    padding-top: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.journey-card:hover .journey-arrow {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 900px) {
    #journey {
        padding: 6rem 1.8rem;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .journey-grid {
        grid-template-columns: 1fr;
    }
}