/* ───────── GOATLAND RECORDS · landing pública ─────────
   Negro #000 · Dorado #B49648 · Gilroy. Movimiento Premium. */

@font-face { font-family: 'Gilroy'; src: url('/fonts/Gilroy-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap }
@font-face { font-family: 'Gilroy'; src: url('/fonts/Gilroy-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap }
@font-face { font-family: 'Gilroy'; src: url('/fonts/Gilroy-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap }
@font-face { font-family: 'Gilroy'; src: url('/fonts/Gilroy-ExtraBold.woff2') format('woff2'); font-weight: 800; font-display: swap }

:root {
  --negro: #000; --carbon: #0a0a0a; --superficie: #101010;
  --linea: rgba(255,255,255,.08); --linea-fuerte: rgba(255,255,255,.18);
  --oro: #B49648; --oro-claro: #d4af37; --oro-tenue: rgba(180,150,72,.13);
  --gris: #A8A8A8; --gris-hondo: #6b6b6b; --blanco: #fff;
  --ease: cubic-bezier(.4,0,.2,1); --ease-entra: cubic-bezier(.05,.7,.1,1);
  --ancho: 1180px;
}
* { box-sizing: border-box; margin: 0; padding: 0 }
[hidden] { display: none !important }
html { scroll-behavior: smooth }
body {
  background: var(--negro); color: var(--blanco); font-family: 'Gilroy', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6;
}
a { color: inherit; text-decoration: none }
button, input, textarea { font: inherit; color: inherit }
::selection { background: var(--oro); color: #000 }
img { max-width: 100% }

.eyebrow { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--oro); font-weight: 700 }
.lead { color: var(--gris); font-size: clamp(16px, 1.7vw, 19px); max-width: 62ch; line-height: 1.7 }

/* Entradas al hacer scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-entra), transform .7s var(--ease-entra) }
.reveal.is-in { opacity: 1; transform: none }

/* ───────── Barra ───────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(0,0,0,.55); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .4s var(--ease), background .4s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--linea); background: rgba(0,0,0,.85) }
.nav__brand { display: flex; align-items: center; gap: 11px }
.nav__brand img { width: 30px }
.nav__brand span { font-weight: 800; font-size: 13px; letter-spacing: .1em; line-height: 1.15 }
.nav__brand em { display: block; font-style: normal; color: var(--oro); font-size: 11px; letter-spacing: .22em }
.nav__links { display: flex; align-items: center; gap: 8px; font-size: 15px }
.nav__links a { padding: 9px 14px; border-radius: 10px; color: var(--gris); transition: color .2s var(--ease), background .2s var(--ease) }
.nav__links a:hover { color: var(--blanco); background: rgba(255,255,255,.05) }
.nav__cta { color: #000 !important; background: var(--oro); font-weight: 700 }
.nav__cta:hover { background: var(--oro-claro) !important }

/* ───────── Hero ───────── */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; padding: 130px clamp(18px, 4vw, 48px) 90px; overflow: hidden }
.hero__glow {
  position: absolute; inset: -30% -10% auto -10%; height: 120%;
  background: radial-gradient(46vw 46vw at 22% 26%, rgba(180,150,72,.16), transparent 62%),
              radial-gradient(40vw 40vw at 86% 78%, rgba(180,150,72,.09), transparent 60%);
  animation: respira 15s ease-in-out infinite; pointer-events: none;
}
@keyframes respira { 0%,100% { opacity: .7; transform: scale(1) } 50% { opacity: 1; transform: scale(1.06) } }
.hero__in { position: relative; width: 100%; max-width: var(--ancho); margin: 0 auto; display: grid; gap: 22px; justify-items: start }
.hero h1 {
  font-weight: 800; font-size: clamp(38px, 7.2vw, 86px); line-height: 1.02; letter-spacing: -.035em; max-width: 16ch;
}
.hero h1 em { font-style: normal; color: var(--oro); display: block }
.hero__sub { color: var(--gris); font-size: clamp(16px, 1.9vw, 21px); max-width: 58ch; line-height: 1.65 }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--linea); width: 100%; max-width: 760px }
.stat b { display: block; font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1 }
.stat span { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gris-hondo); font-weight: 700 }

.scrollhint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 1px; height: 46px; background: var(--linea-fuerte); overflow: hidden }
.scrollhint span { display: block; width: 100%; height: 16px; background: var(--oro); animation: baja 2.4s var(--ease) infinite }
@keyframes baja { 0% { transform: translateY(-18px) } 100% { transform: translateY(48px) } }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--linea-fuerte); background: rgba(255,255,255,.05);
  border-radius: 12px; padding: 14px 24px; cursor: pointer; font-weight: 700;
  transition: transform .16s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { background: rgba(255,255,255,.1) }
.btn:active { transform: scale(.985) }
.btn--gold { background: var(--oro); border-color: var(--oro); color: #000 }
.btn--gold:hover { background: var(--oro-claro); border-color: var(--oro-claro) }
.btn--ghost { background: transparent }
.linkbtn { background: none; border: 0; color: var(--gris); cursor: pointer; font-size: 14px; padding: 6px 0 }
.linkbtn:hover { color: var(--oro) }

/* ───────── Secciones ───────── */
.section { max-width: var(--ancho); margin: 0 auto; padding: clamp(70px, 11vw, 130px) clamp(18px, 4vw, 48px) }
.section__head { display: grid; gap: 14px; margin-bottom: 52px; max-width: 760px }
.section__head h2 { font-weight: 800; font-size: clamp(28px, 4.4vw, 50px); letter-spacing: -.03em; line-height: 1.08 }

.band { border-top: 1px solid var(--linea); border-bottom: 1px solid var(--linea); background: linear-gradient(180deg, rgba(180,150,72,.05), transparent) }
.quote {
  max-width: 940px; margin: 0 auto; padding: clamp(56px, 8vw, 92px) clamp(18px, 4vw, 48px);
  font-size: clamp(21px, 3vw, 33px); font-style: italic; line-height: 1.45; color: var(--blanco); letter-spacing: -.01em;
}
.quote cite { display: block; margin-top: 22px; font-style: normal; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--oro); font-weight: 700 }

.pasos { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px }
.paso {
  background: linear-gradient(180deg, var(--superficie), var(--carbon)); border: 1px solid var(--linea);
  border-radius: 16px; padding: 30px 26px 32px; display: grid; gap: 12px; align-content: start;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.paso:hover { transform: translateY(-4px); border-color: rgba(180,150,72,.4) }
.paso__n { font-size: 12px; letter-spacing: .2em; color: var(--oro); font-weight: 800 }
.paso h3 { font-size: 22px; font-weight: 800; letter-spacing: -.01em }
.paso p { color: var(--gris); font-size: 15px; line-height: 1.65 }

/* ───────── Roster ───────── */
.roster { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 16px }
.artista {
  position: relative; border: 1px solid var(--linea); border-radius: 16px; overflow: hidden;
  background: var(--carbon); aspect-ratio: 3 / 4; display: grid; align-content: end; padding: 22px;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.artista::before {
  content: attr(data-inicial); position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 190px; font-weight: 800; color: rgba(255,255,255,.05); line-height: .78; pointer-events: none;
  transition: color .5s var(--ease), transform .6s var(--ease);
}
.artista::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%);
}
.artista:hover { transform: translateY(-5px); border-color: rgba(180,150,72,.45) }
.artista:hover::before { color: rgba(180,150,72,.14); transform: scale(1.04) }
.artista__in { position: relative; z-index: 2; display: grid; gap: 5px }
.artista h3 { font-size: 20px; font-weight: 800; letter-spacing: -.01em }
.artista p { font-size: 13px; color: var(--gris) }
.artista .oyentes { color: var(--oro); font-weight: 700 }
.artista__link { position: absolute; inset: 0; z-index: 3 }

/* ───────── Puerta ───────── */
.section--puerta { border-top: 1px solid var(--linea) }
.puerta { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start }
.puerta__texto { display: grid; gap: 16px; position: sticky; top: 110px }
.puerta__texto h2 { font-weight: 800; font-size: clamp(27px, 3.8vw, 44px); letter-spacing: -.03em; line-height: 1.1 }
.marcas { list-style: none; display: grid; gap: 10px; margin-top: 8px }
.marcas li { color: var(--gris); font-size: 15px; padding-left: 24px; position: relative }
.marcas li::before { content: ''; position: absolute; left: 0; top: 9px; width: 11px; height: 2px; background: var(--oro) }

.card { background: linear-gradient(180deg, var(--superficie), var(--carbon)); border: 1px solid var(--linea); border-radius: 18px; padding: 30px }
.filtro { display: grid; gap: 18px }
.filtro__preg { font-size: 19px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 4px }
.opciones { display: grid; gap: 10px }
.opcion {
  text-align: left; background: rgba(255,255,255,.03); border: 1px solid var(--linea); border-radius: 13px;
  padding: 15px 17px; cursor: pointer; display: grid; gap: 4px;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .16s var(--ease);
}
.opcion:hover { border-color: var(--oro); background: var(--oro-tenue) }
.opcion:active { transform: scale(.99) }
.opcion b { font-weight: 700; font-size: 16px }
.opcion span { color: var(--gris-hondo); font-size: 13.5px; line-height: 1.5 }

.veredicto {
  border-left: 3px solid var(--oro); background: var(--oro-tenue); border-radius: 0 12px 12px 0;
  padding: 16px 18px; display: grid; gap: 7px; animation: entra .45s var(--ease-entra) both;
}
@keyframes entra { from { opacity: 0; transform: translateY(10px) } to { opacity: 1; transform: none } }
.veredicto b { font-size: 17px; font-weight: 800 }
.veredicto p { color: var(--gris); font-size: 14.5px; line-height: 1.6 }

.field { display: grid; gap: 7px }
.field > span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gris-hondo); font-weight: 700 }
.field > span i { font-style: normal; text-transform: none; letter-spacing: 0; color: var(--gris-hondo) }
.field input, .field textarea {
  background: rgba(255,255,255,.04); border: 1px solid var(--linea); border-radius: 11px; padding: 12px 14px;
  width: 100%; transition: border-color .18s var(--ease), background .18s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--oro); background: rgba(180,150,72,.06) }
.field textarea { resize: vertical }
.trampa { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden }
.filtro__error { color: #e0574f; font-size: 14px; min-height: 18px }
.filtro__gracias { display: grid; gap: 10px; animation: entra .5s var(--ease-entra) both }
.filtro__gracias h3 { font-size: 26px; font-weight: 800; color: var(--oro) }
.filtro__gracias p { color: var(--gris) }

/* ───────── Pie ───────── */
.pie { border-top: 1px solid var(--linea); padding: 46px clamp(18px, 4vw, 48px); background: var(--carbon) }
.pie__in { max-width: var(--ancho); margin: 0 auto; display: flex; justify-content: space-between; gap: 26px; flex-wrap: wrap; align-items: center }
.pie__mark { width: 34px; margin-bottom: 10px }
.pie__legal { color: var(--gris-hondo); font-size: 13px }
.pie__links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px; color: var(--gris) }
.pie__links a:hover { color: var(--oro) }

@media (max-width: 860px) {
  .nav__links a:not(.nav__cta) { display: none }
  .puerta { grid-template-columns: 1fr }
  .puerta__texto { position: static }
  .hero__stats { gap: 26px }
  .artista::before { font-size: 150px }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important }
  .reveal { opacity: 1; transform: none }
}
