/* Listen — brick-red panel with 5 streaming platform tiles.
   Diverges from the prototype's coal-black treatment per user direction
   (matches Join's brick + white-arcs visual). */

.listen {
  background: var(--kos-brick);
  color: var(--kos-bone);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* White arcs decorative — top-right, mirrored, like Join */
.listen::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 340px; height: 340px;
  background: url('../assets/mark-arcs-white.svg') no-repeat;
  background-size: contain;
  opacity: 0.45;
  transform: scaleX(-1);
  pointer-events: none;
  z-index: 0;
}
.listen .shell { position: relative; z-index: 1; }

/* ---- Header row -------------------------------------------------- */
.listen .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
.listen .eyebrow {
  color: var(--kos-bone);
  opacity: 0.9;
  margin-bottom: 6px;
}
.listen h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.015em;
  margin: 6px 0 0;
}
.listen .head p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 380px;
  margin: 0;
}

/* ---- Platform tile grid ----------------------------------------- */
.listen .platforms {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  /* Full 4-sided frame — closes the outer left edge of the first card
     (Spotify) and the outer right edge of the last (Deezer). The internal
     divider between tiles still comes from `.platform { border-right }`. */
  border: 3px solid rgba(255,255,255,0.22);
}
.platform {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 22px;
  min-height: 220px;
  border-right: 3px solid rgba(255,255,255,0.22);
  color: var(--kos-bone);
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms var(--ease-out);
  position: relative;
}
.platform:last-child { border-right: 0; }
.platform:hover { background: var(--kos-coal); }

.platform .num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.75);
}
.platform:hover .num { color: var(--kos-bone); }

.platform .name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-top: 16px;
}
.platform .glyph {
  margin-top: 12px;
  color: var(--kos-bone);
  opacity: 0.9;
}
.platform .arrow {
  position: absolute;
  right: 20px; bottom: 20px;
  opacity: 0.7;
  transition: opacity 160ms var(--ease-out), transform 220ms var(--ease-out);
}
.platform:hover .arrow {
  opacity: 1;
  transform: translate(4px, -4px);
}
