@font-face {
  font-family: 'Zalando Sans Expanded';
  src: url('fonts/Zalando_Sans_Expanded/ZalandoSansExpanded-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
}

/* --- Reset & base --- */
*,*::before,*::after { box-sizing: border-box; }
html,body { height: 100%; }
body {
  margin: 0;
  color: #eaeaea;
  background: #0b0b0f;
  font: 400 16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:root {
  --bg:#0b0b0f;
  --card:#11131a;
  --brand:#ff4040;
  --brand-2:#8a52ff;
  --muted:#9ba3af;
  --nav-h:84px;
  --pad:24px;

  /* Canvas hero */
  --hover-start:#ff4040;
  --hover-end:#8a52ff;

  /* Labels */
  --panel-max: 520px;
}

/* --- Header / Navbar --- */
.site-header{
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(11,11,15,.45);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  backdrop-filter: saturate(1.2) blur(8px);
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.drawer{ display: none; }

.nav-wrap{
  width: 100%;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 0 32px;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:2px; }
.brand__img{ height: 40px; width:auto; display:block; }

/* Nav derecha (desktop) */
.nav{ display:flex; align-items:center; gap:26px; margin-left:auto; }
.nav a{
  font-family: 'Zalando Sans Expanded', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.0vw, 0.1rem);
  text-transform: uppercase;
  letter-spacing: .05em;

  padding: 12px 14px;
  border-radius: 12px;
  position: relative;
  display: inline-block;
}

/* Subrayado animado (creado en estado base) */
.nav a::after{
  content:"";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--hover-start), var(--hover-end));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(.22,.61,.36,1);
}

/* En hover/focus solo animamos la escala */
.nav a:hover::after,
.nav a:focus-visible::after{
  transform: scaleX(1);
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  .nav a::after{
    transition: none;
    transform: none;
  }
}

/* Botón menú con ícono hamburguesa */
.menu-btn{
  /* visibilidad se maneja con media queries existentes */
  margin-left: 20px;
  display: none;

  /* apariencia */
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;

  /* ícono */
  background-image: url('images/hamburguesa.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px; /* ajustá a gusto: 20–26px */

  /* no hay texto visible */
  color: transparent;
}

/* hover/focus accesibles */
.menu-btn:hover{
  filter: brightness(1.1);
  transform: translateY(-1px);
  transition: transform .18s ease, filter .18s ease;
}
.menu-btn:active{
  transform: translateY(0);
  filter: none;
}
.menu-btn:focus-visible{
  outline: 2px solid #3a4150;
  outline-offset: 2px;
}

/* Utilidad opcional si usás <span class="sr-only"> */
.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* --- Hero --- */
.hero {
  position: relative; min-height: 72vh; display: grid; place-items: center;
  padding-top: var(--nav-h);
}
canvas#bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__content { position: relative; z-index: 1; text-align: center; padding: 40px var(--pad); }
.kicker { color: var(--muted); text-transform: uppercase; letter-spacing: .2em; font-size: .8rem; margin-bottom: 8px; }
.title { font-size: clamp(2.2rem,6.5vw,4.2rem); line-height: 1.05; font-weight: 800; margin: 0 0 12px; }
/* --- Subtítulo Hero --- */
.subtitle {

  margin: 0 auto;
  color: #c9ced6;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem); /* ← tamaño aumentado */
  line-height: 1.7; /* ← más aire entre líneas */
  font-weight: 400;
}
.cta { margin-top: 22px; display: inline-flex; gap: 12px; }
.btn {
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid #2a2f3a; background: linear-gradient(180deg,#12141a,#0e0f14);
  color: #eaeaea;
}
.btn--primary { border:0; background: linear-gradient(90deg,var(--brand),var(--brand-2)); color:#ffffff; font-weight:700; }

.btn--primary:hover {
 transform: translateY(-3px);
  transition: transform .24s ease;
}

/* --- Separator --- */
.separator {
  height: 1px; background: linear-gradient(90deg,transparent,rgba(125,211,252,.5),transparent);
  margin: 30px auto; width: min(92%,1100px);
}

/* --- Responsive Header --- */
@media (max-width:1200px){ .nav-wrap { padding: 0 16px; } }
@media (max-width:900px){
  .nav{ display:none; }
  .menu-btn{ display:inline-flex; }
  .drawer{
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: rgba(11,11,15,.95);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    padding: 16px 20px 24px; display: none; flex-direction: column; gap: 6px;
    border-bottom: 1px solid #222; z-index: 40;
  }
  .drawer a{ padding: 14px; border-radius: 10px; font-size: 1.05rem; }
  .drawer.open{ display:flex; }
}
@media (max-width:600px){
  :root { --nav-h: 78px; }
  .brand__img { height: 34px; }
  .title { font-size: clamp(1.8rem,8vw,3rem); }
  .subtitle { font-size: .95rem; }
}

/* anclajes & motion */
section { scroll-margin-top: calc(var(--nav-h) + 16px); }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  .no-mr { display:none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   LABELS (dos sellos bajo el banner)
   ========================================================= */
.labels{
  width: min(1400px, 92vw);
  margin: 0 auto;
  padding: 28px var(--pad) 40px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(24px, 5vw, 80px);
  position: relative;
}
.labels::before{
  content:""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

/* “cards” limpias, centradas */
.label-card{
  background: transparent; border: 0; padding: 0;
  display: grid; justify-items: center; gap: 16px;
}

/* Logo (sin B/N) + hover de tamaño */
.label-logo{ width: 100%; display: grid; place-items: center; }
.label-logo img{
  width: clamp(260px, 36vw, 560px);
  height: auto;
  transform: scale(1);
  transition: transform .24s ease;
}
.label-card:hover .label-logo img,
.label-card:focus-within .label-logo img{ transform: scale(1.05); }

/* Auroreum más chico */
.label-card[data-label="auroreum"] .label-logo img{
  width: clamp(240px, 32vw, 430px);
}

/* Bajar levemente PsyNova (desktop) */
@media (min-width: 981px){
  .label-card[data-label="psynova"]{ margin-top: clamp(150px, 2.5vw, 150px); }
}

/* Título oculto visualmente (accesible para screen readers) */
.label-title{
  position: absolute; width:1px; height:1px; margin:-1px; overflow:hidden;
  clip: rect(0 0 0 0);
}

/* Chips (Info / Artists / Radio) */
.label-actions{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:center;
}
.chip{
  appearance:none; cursor:pointer;
  padding: 9px 14px; border-radius: 999px; line-height:1;
  border: 1px solid #2a2f3a; background: linear-gradient(180deg,#12141a,#0e0f14); color:#eaeaea;
  font-weight:700; font-size:.98rem; letter-spacing:.02em;
  transition: border-color .2s ease, transform .12s ease;
}
.chip:hover{ border-color:#3a4150; transform: translateY(-1px); }
.chip:active{ transform: translateY(0); }

/* Estado ACTIVO para Info (color por sello, texto negro) */
.label-card[data-label="psynova"] .chip[data-action="info"][aria-expanded="true"]{
  background:#86d262; color:#000; border-color:#86d262;
}
.label-card[data-label="auroreum"] .chip[data-action="info"][aria-expanded="true"]{
  background:#589dbc; color:#000; border-color:#589dbc;
}

/* Panel INFO: oculto por defecto; visible al abrir */
.label-panel{
  display:none;
  width: min(var(--panel-max, 560px), 94%);
  margin: 2px auto 0;
  border-top: 1px dashed #242833;
  padding-top: 12px;
  text-align: center; /* ayuda a centrar contenido del panel */
}
.label-panel.is-open{ display:block; }

.label-bio{ color:#c9ced6; text-align:center; margin:6px 0 10px; }

/* Redes */
.label-socials{
  display:flex; gap:10px; justify-content:center; align-items:center;
  margin: 8px 0 12px;
}
.label-socials img{
  width:24px; height:24px;
  transition: filter .2s ease, transform .12s ease;
}
.label-socials a:hover img{ filter:none; transform: translateY(-1px); }

/* Send Demo — centrado, chico y en negrita (color por sello) */
.demo-btn{
  display:block;
  width: max-content;           /* evita ocupar todo el ancho */
  margin: 14px auto 0;          /* centra horizontalmente */
  padding: 8px 20px;
  font-size: .9rem;
  font-weight: 700;             /* negrita */
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}
.label-card[data-label="psynova"] .demo-btn{ background:#86d262; color:#000; }
.label-card[data-label="auroreum"] .demo-btn{ background:#589dbc; color:#000; }

/* Responsive labels en 1 columna */
@media (max-width: 980px){
  .labels{ grid-template-columns: 1fr; gap: 36px; }
  .label-logo img{ width: clamp(260px, 62vw, 500px); }
}
