:root {
  --ssr-bg: #050708;
  --ssr-panel: #0b1013;
  --ssr-cyan: #10d2e5;
  --ssr-white: #f6f5ef;
  --ssr-muted: #a7adb2;
  --ssr-line: rgba(255, 255, 255, 0.16);
}

.ssr-page {
  min-height: 100vh;
  background: var(--ssr-bg);
  color: var(--ssr-white);
  font-family: "Poppins", Arial, sans-serif;
}

.ssr-page *,
.ssr-page *::before,
.ssr-page *::after {
  box-sizing: border-box;
}

.ssr-page a {
  color: inherit;
  text-decoration: none;
}

.ssr-ecosystem {
  min-height: 90px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-bottom: 3px solid var(--ssr-cyan);
  background: #06090a;
}

.ssr-brand {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 3vw;
}

.ssr-brand img {
  width: min(300px, 24vw);
  height: auto;
}

.ssr-brand span {
  padding-left: 28px;
  border-left: 1px solid var(--ssr-line);
  color: #9ca6ac;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
}

.ssr-nav-links {
  display: flex;
}

.ssr-nav-links a {
  min-width: 170px;
  display: grid;
  place-items: center;
  padding: 20px 24px;
  border-left: 1px solid var(--ssr-line);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ssr-nav-links a:hover,
.ssr-nav-links a[aria-current="page"] {
  background: var(--ssr-white);
  color: #050708;
}

.ssr-embedded-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  border-bottom: 2px solid var(--ssr-cyan);
}

.ssr-embedded-header a {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0.14em;
}

.ssr-embedded-header img {
  width: 210px;
}

.ssr-catalog-hero,
.ssr-profile-hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 8vw, 140px) 6vw;
  border-bottom: 1px solid var(--ssr-line);
}

.ssr-catalog-hero {
  background:
    radial-gradient(circle at 78% 42%, rgba(16, 210, 229, 0.25), transparent 32%),
    linear-gradient(120deg, #030505 0 45%, #07171b 100%);
}

.ssr-profile-hero {
  background:
    linear-gradient(90deg, rgba(2, 5, 6, 0.96) 0, rgba(2, 5, 6, 0.7) 42%, rgba(2, 5, 6, 0.24) 74%, rgba(2, 5, 6, 0.55) 100%),
    var(--ssr-image) center / cover no-repeat;
}

.ssr-catalog-hero::after,
.ssr-profile-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 96px 96px;
}

.ssr-catalog-hero > *,
.ssr-profile-copy {
  position: relative;
  z-index: 1;
}

.ssr-catalog-hero h1,
.ssr-profile-copy h1,
.ssr-not-found h1 {
  max-width: 1100px;
  margin: 16px 0 24px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(76px, 11vw, 190px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.76;
  text-transform: uppercase;
}

.ssr-catalog-hero h1 em,
.ssr-not-found h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px var(--ssr-cyan);
}

.ssr-catalog-hero > p:last-child,
.ssr-summary {
  max-width: 720px;
  color: #d2d5d6;
  font-size: clamp(16px, 1.4vw, 23px);
  line-height: 1.65;
}

.ssr-kicker,
.ssr-section small,
.ssr-video-card small,
.ssr-story > small {
  color: var(--ssr-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ssr-profile-copy {
  max-width: 880px;
}

.ssr-profile-copy h1 {
  font-size: clamp(88px, 12vw, 210px);
}

.ssr-tags,
.ssr-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ssr-tags span,
.ssr-card-tags span {
  padding: 5px 13px;
  border: 1px solid var(--ssr-cyan);
  border-radius: 999px;
  color: var(--ssr-cyan);
  font: 700 12px "Barlow Condensed", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ssr-primary {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 0 30px;
  background: var(--ssr-cyan);
  color: #020506 !important;
  font: 800 15px "Barlow Condensed", sans-serif;
  letter-spacing: 0.14em;
}

.ssr-primary:hover {
  background: var(--ssr-white);
}

.ssr-section {
  padding: clamp(55px, 7vw, 110px) 5vw;
}

.ssr-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ssr-line);
}

.ssr-section-head h2,
.ssr-story h2 {
  margin: 4px 0 0;
  font: 900 clamp(40px, 5vw, 82px)/0.9 "Barlow Condensed", Impact, sans-serif;
  letter-spacing: -0.02em;
}

.ssr-section-head > p {
  color: var(--ssr-muted);
  font: 700 13px "Barlow Condensed", sans-serif;
  letter-spacing: 0.16em;
}

.ssr-artist-grid,
.ssr-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 28px;
}

.ssr-artist-card,
.ssr-video-card {
  border: 1px solid var(--ssr-line);
  background: var(--ssr-panel);
}

.ssr-artist-card > div,
.ssr-video-card > div {
  padding: 24px;
}

.ssr-image-link {
  aspect-ratio: 16 / 10;
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--ssr-cyan);
}

.ssr-image-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ssr-image-link:hover img {
  transform: scale(1.04);
}

.ssr-image-link > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 50%;
  background: var(--ssr-cyan);
  color: #020506;
  font-weight: 900;
}

.ssr-artist-card h2,
.ssr-video-card h3 {
  margin: 15px 0 10px;
  font: 800 clamp(30px, 3vw, 48px)/0.95 "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

.ssr-video-card h3 {
  font-size: clamp(28px, 2.5vw, 42px);
}

.ssr-artist-card p,
.ssr-video-card p,
.ssr-story p {
  color: var(--ssr-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ssr-artist-card > div > small {
  display: block;
  margin-top: 20px;
  color: var(--ssr-cyan);
  font: 700 11px "Barlow Condensed", sans-serif;
  letter-spacing: 0.12em;
}

.ssr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ssr-actions a,
.ssr-story a {
  padding: 10px 14px;
  border: 1px solid var(--ssr-line);
  font: 700 12px "Barlow Condensed", sans-serif;
  letter-spacing: 0.12em;
}

.ssr-actions a:hover,
.ssr-story a:hover {
  background: var(--ssr-cyan);
  color: #020506;
}

.ssr-story {
  padding: clamp(60px, 8vw, 130px) 8vw;
  border-top: 1px solid var(--ssr-line);
  background: linear-gradient(110deg, #050708 0 62%, #071a1e);
}

.ssr-story h2 em {
  color: var(--ssr-cyan);
  font-style: italic;
}

.ssr-story p {
  max-width: 850px;
  font-size: clamp(17px, 1.5vw, 23px);
}

.ssr-not-found {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
}

.ssr-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 35px 5vw;
  border-top: 1px solid var(--ssr-line);
}

.ssr-footer img {
  width: 220px;
}

.ssr-footer p {
  color: var(--ssr-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.ssr-noscript-note {
  margin: 0;
  padding: 14px 5vw;
  background: var(--ssr-cyan);
  color: #020506;
  font: 600 13px "Poppins", sans-serif;
  text-align: center;
}

@media (max-width: 1000px) {
  .ssr-ecosystem {
    min-height: auto;
    flex-direction: column;
  }

  .ssr-brand {
    justify-content: space-between;
    min-height: 80px;
  }

  .ssr-brand img {
    width: 230px;
  }

  .ssr-nav-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--ssr-line);
  }

  .ssr-nav-links a {
    min-width: 0;
    padding: 16px 8px;
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .ssr-brand {
    padding: 14px 20px;
  }

  .ssr-brand img {
    width: 190px;
  }

  .ssr-brand span {
    display: none;
  }

  .ssr-nav-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .ssr-nav-links a {
    min-height: 52px;
    border-top: 1px solid var(--ssr-line);
  }

  .ssr-catalog-hero,
  .ssr-profile-hero {
    min-height: 560px;
    padding: 55px 24px;
  }

  .ssr-catalog-hero h1,
  .ssr-profile-copy h1,
  .ssr-not-found h1 {
    font-size: clamp(62px, 22vw, 104px);
  }

  .ssr-section {
    padding: 55px 20px;
  }

  .ssr-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ssr-artist-grid,
  .ssr-video-grid {
    grid-template-columns: 1fr;
  }

  .ssr-story {
    padding: 65px 24px;
  }

  .ssr-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 24px;
  }
}

/*
 * MENÚ COMPLETO V10
 * Sobrescribe la cuadrícula de cuatro accesos incluida en el CSS compilado.
 */
.ecosystem-nav {
  grid-template-columns: repeat(5, minmax(105px, 1fr));
}

.ecosystem-nav a {
  padding-right: 18px;
  padding-left: 18px;
  white-space: nowrap;
}

.ecosystem-nav a:nth-child(5) {
  animation-delay: 0.47s;
}

@media (max-width: 900px) {
  .ecosystem-nav {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 44px);
  }

  .ecosystem-nav a {
    grid-column: span 2;
  }

  .ecosystem-nav a:nth-child(3),
  .ecosystem-nav a:nth-child(5) {
    border-right: 0;
  }

  .ecosystem-nav a:nth-child(4),
  .ecosystem-nav a:nth-child(5) {
    grid-column: span 3;
  }
}

@media (max-width: 380px) {
  .ecosystem-nav a {
    font-size: 12.5px;
    letter-spacing: 0.035em;
  }
}
