:root {
  --ink: #11110f;
  --paper: #f2efe8;
  --paper-2: #e9e5dc;
  --line: rgba(17, 17, 15, 0.18);
  --acid: #c7ff59;
  --purple: #7b3cff;
  --purple-dark: #351065;
  --yellow: #ffe35a;
  --font-display: "Monotype Koufi", "Arial Black", "Arial Narrow", sans-serif;
  --font-body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: relative;
  z-index: 20;
  height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  width: 108px;
  height: 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-socials a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-socials a:hover {
  color: white;
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.header-socials svg {
  width: 16px;
  height: 16px;
}

.brand img {
  width: 108px;
  height: auto;
  display: block;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

.site-header nav a,
.site-header nav button,
.header-cta {
  transition: opacity 180ms ease;
}

.site-header nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-header nav a:hover,
.site-header nav button:hover,
.site-header nav button:focus-visible,
.header-cta:hover {
  opacity: 0.55;
}

.header-cta {
  font-size: 13px;
  font-weight: 800;
  display: flex;
  gap: 18px;
  align-items: center;
}

.header-cta span {
  font-size: 20px;
}

.hero {
  height: 165vh;
  position: relative;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.hero-sticky {
  --hero-progress: 0;
  --speaker-x: 0px;
  --speaker-y: 0px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 46% 54%;
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  padding: 7vh 4vw 5vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transform: translateY(calc(var(--hero-progress) * -74px));
  opacity: calc(1 - var(--hero-progress) * 0.92);
  transition: opacity 80ms linear;
}

.eyebrow {
  margin: 0 0 36px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 28px;
  height: 8px;
  display: inline-block;
  background: var(--ink);
  transform: skewX(-13deg);
}

.hero h1,
.section-heading h2,
.info-gateway h2,
.newsletter-section h2 {
  font-family: var(--font-display);
  font-style: oblique 12deg;
  text-transform: uppercase;
  letter-spacing: -0.065em;
  line-height: 0.79;
  margin: 0;
}

.hero h1 {
  font-size: clamp(61px, 7.25vw, 124px);
}

.hero h1 em,
.info-gateway h2 em {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  font-style: inherit;
}

.hero-lede {
  max-width: 480px;
  margin: 5vh 0 0;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.55;
}

.round-link {
  width: 118px;
  height: 118px;
  margin-top: auto;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 250ms ease, background 250ms ease;
}

.round-link strong {
  font-size: 22px;
}

.round-link:hover {
  transform: rotate(-6deg) scale(1.03);
  background: #33332f;
}

.hero-art {
  position: relative;
  min-height: 660px;
  background: var(--purple-dark);
  border-left: 1px solid var(--line);
  overflow: hidden;
  transform: scale(calc(1 - var(--hero-progress) * 0.075));
  border-radius: calc(var(--hero-progress) * 42px);
  box-shadow: 0 0 calc(var(--hero-progress) * 90px) rgba(0, 0, 0, 0.4);
  will-change: transform, border-radius;
}

.hero-social-bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: scale(calc(1.02 + var(--hero-progress) * 0.12)) translateY(calc(var(--hero-progress) * -3%));
  filter: saturate(1.05) contrast(1.02);
  will-change: transform;
}

.speaker-stage {
  position: absolute;
  z-index: 1;
  inset: -5%;
  width: 110%;
  height: 110%;
  transform:
    translate(var(--speaker-x), var(--speaker-y))
    scale(calc(1 + var(--hero-progress) * 0.035));
  filter: saturate(calc(1 + var(--hero-progress) * 0.18));
  will-change: transform;
}

.speaker-stage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-color-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(199, 255, 89, 0.85), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(255, 227, 90, 0.58), transparent 28%),
    linear-gradient(135deg, rgba(123, 60, 255, 0.28), transparent 50%);
  mix-blend-mode: color;
  pointer-events: none;
}

.hero-proof-badge {
  position: absolute;
  z-index: 4;
  top: 4.5%;
  left: 4.5%;
  width: clamp(176px, 12vw, 210px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 10px 10px 0 rgba(17, 17, 15, 0.8);
  text-align: center;
  transform: rotate(-7deg);
}

.hero-proof-badge::before,
.hero-proof-badge::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(17, 17, 15, 0.55);
  border-radius: inherit;
}

.hero-proof-badge::before {
  inset: 7px;
}

.hero-proof-badge::after {
  width: 5px;
  height: 5px;
  top: 13px;
  left: 50%;
  background: var(--ink);
}

.hero-proof-badge strong {
  font-family: var(--font-display);
  font-size: clamp(41px, 3.15vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero-proof-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.hero-proof-value b {
  margin-left: 2px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-proof-badge span {
  margin-top: 11px;
  font-size: clamp(9px, 0.68vw, 11px);
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-note {
  position: absolute;
  z-index: 5;
  right: 4vw;
  bottom: 3.5vh;
  margin: 0;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.1;
  text-align: right;
  font-size: 15px;
  color: white;
  transform: skewX(-8deg);
}

.trust-strip {
  min-height: 174px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.wild-section {
  padding: 100px 4vw 110px;
  background: var(--purple);
  color: white;
}

.wild-section[hidden] {
  display: none;
}

.wild-heading {
  display: grid;
  grid-template-columns: 1fr 35%;
  gap: 8vw;
  align-items: end;
  margin-bottom: 65px;
}

.wild-heading h2 {
  margin: 22px 0 0;
  color: white;
  font-size: clamp(58px, 8vw, 120px);
}

.wild-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.55;
}

.wild-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wild-card {
  min-width: 0;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.wild-card:hover,
.wild-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(17, 17, 15, 0.3);
}

.wild-media {
  position: relative;
  aspect-ratio: 9 / 12;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 75% 18%, var(--acid), transparent 28%),
    linear-gradient(145deg, var(--yellow), var(--purple));
}

.wild-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wild-media > span {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
}

.wild-media i {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  background: var(--ink);
  color: white;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.wild-card-copy {
  padding: 17px;
}

.wild-card-copy > span,
.wild-card-copy small {
  display: block;
  color: rgba(17, 17, 15, 0.55);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.wild-card-copy strong {
  display: block;
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.wild-card-copy p {
  margin: 10px 0;
  font-size: 12px;
}

.trust-strip > div {
  position: relative;
  padding: 34px 3vw 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  border-right: 2px solid var(--ink);
  overflow: hidden;
}

.trust-strip > div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: var(--acid);
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--purple);
  font-family: var(--font-display);
  font-size: clamp(19px, 1.5vw, 25px);
  line-height: 1;
  text-transform: uppercase;
}

.trust-strip small {
  margin-top: 9px;
  color: rgba(17, 17, 15, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.library-section {
  padding: 96px 4vw 110px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 35%;
  gap: 8vw;
  align-items: end;
  margin-bottom: 82px;
}

.section-heading h2,
.newsletter-section h2 {
  font-size: clamp(58px, 8vw, 126px);
}

.section-heading > p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 8px;
  max-width: 470px;
}

.library-count {
  display: block;
  margin-top: 24px;
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
}

.featured-heading {
  margin: -32px 0 42px;
}

.featured-heading h3,
.collections-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.featured-sounds {
  margin: -30px 0 34px;
  padding: 11px 14px 13px;
  position: relative;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(199, 255, 89, 0.26), rgba(255, 255, 255, 0.48)),
    var(--paper);
  border: 2px solid var(--acid);
  border-top-width: 8px;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 15, 0.12);
}

.featured-sounds[hidden] {
  display: none;
}

.featured-sound-rail {
  min-width: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0 2px;
}

.featured-sound-rail::-webkit-scrollbar {
  display: none;
}

.featured-sound-card {
  flex: 0 0 calc((100% - 72px) / 6.5);
  min-width: 0;
  position: relative;
  scroll-snap-align: start;
}

.featured-play {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  background: #ddd;
  color: var(--acid);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease;
}

.featured-play img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 220ms ease;
}

.featured-play span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  background: var(--ink);
  border: 1px solid rgba(199, 255, 89, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(17, 17, 15, 0.22);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.featured-play svg {
  width: 15px;
  height: 15px;
}

.featured-play:hover img,
.featured-play:focus-visible img {
  transform: scale(1.025);
}

.featured-play:hover,
.featured-play:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(17, 17, 15, 0.16);
}

.featured-play:hover span,
.featured-play:focus-visible span {
  background: var(--acid);
  color: var(--ink);
  transform: translate(-50%, -50%) scale(1.06);
}

.featured-play.is-playing span {
  background: var(--acid);
  color: var(--ink);
}

.featured-sound-meta {
  min-width: 0;
  min-height: 50px;
  padding-top: 8px;
  position: relative;
}

.featured-sound-meta small {
  display: block;
  overflow: hidden;
  color: rgba(17, 17, 15, 0.56);
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-sound-meta strong {
  display: block;
  overflow: hidden;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.featured-buy {
  position: absolute;
  left: 0;
  bottom: 0;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0 9px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.featured-sound-card:hover .featured-buy,
.featured-sound-card:focus-within .featured-buy,
.featured-sound-meta:hover .featured-buy {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.featured-buy:hover,
.featured-buy:focus-visible {
  background: var(--acid);
  color: var(--ink);
}

.featured-sounds-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.featured-sounds-controls button {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(17, 17, 15, .52);
  cursor: pointer;
  display: grid;
  place-items: center;
  pointer-events: auto;
  transform: translateY(-50%);
  filter: drop-shadow(2px 2px 0 rgba(17, 17, 15, .22));
  opacity: .82;
  transition: color 180ms ease, filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.featured-sounds-controls button:hover,
.featured-sounds-controls button:focus-visible {
  color: var(--acid);
  filter: drop-shadow(2px 2px 0 rgba(17, 17, 15, .36));
  opacity: 1;
  transform: translateY(-50%) scale(1.03);
}

.featured-sounds-controls button[hidden] {
  display: none;
}

.featured-sounds-controls span {
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}

#featured-prev span {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 15px solid currentColor;
}

#featured-next span {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid currentColor;
}

#featured-prev {
  left: -39px;
}

#featured-next {
  right: -39px;
}

.collections-heading {
  margin: 34px 0 15px;
}

.library-toolbar {
  min-height: 82px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
  position: relative;
  z-index: 10;
}

.library-toolbar > p {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.library-tools {
  align-self: stretch;
  display: flex;
}

.search-control {
  position: relative;
  width: min(320px, 28vw);
  border-left: 1px solid var(--ink);
}

.search-control label {
  position: absolute;
  top: 14px;
  left: 22px;
  color: rgba(17, 17, 15, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.search-control input {
  width: 100%;
  height: 100%;
  min-height: 80px;
  padding: 28px 46px 8px 22px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 700 13px/1.2 var(--font-body);
  appearance: none;
  transition: background 180ms ease;
}

.search-control input::-webkit-search-cancel-button {
  display: none;
}

.search-control input:focus {
  background: color-mix(in srgb, var(--acid) 24%, transparent);
}

.search-control input::placeholder {
  color: rgba(17, 17, 15, 0.42);
}

.search-control button {
  position: absolute;
  right: 12px;
  bottom: 13px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.search-control button[hidden] {
  display: none;
}

.sort-control {
  align-self: stretch;
  position: relative;
}

.sort-button {
  height: 100%;
  min-width: 292px;
  border: 0;
  border-left: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  text-align: left;
}

.sort-button span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sort-button strong {
  font-size: 13px;
}

.sort-button i {
  font-size: 20px;
  font-style: normal;
  transition: transform 180ms ease;
}

.sort-button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.sort-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 1px);
  width: 292px;
  background: var(--ink);
  color: white;
  box-shadow: 0 20px 50px rgba(17, 17, 15, 0.2);
}

.sort-menu button {
  width: 100%;
  display: block;
  padding: 15px 20px;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
  cursor: pointer;
  font-size: 13px;
}

.sort-menu button:hover,
.sort-menu button.active {
  background: var(--acid);
  color: var(--ink);
}

.catalog-section {
  margin-top: 62px;
}

.catalog-section:first-child {
  margin-top: 0;
}

.catalog-empty {
  min-height: 320px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--ink);
  text-align: center;
}

.catalog-empty strong {
  display: block;
  color: var(--purple);
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
}

.catalog-empty p {
  margin: 14px 0 0;
  color: rgba(17, 17, 15, 0.58);
}

.catalog-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  padding-bottom: 23px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.catalog-section-header h3 {
  font-family: var(--font-display);
  font-style: oblique 10deg;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 0.9;
  margin: 0;
}

.catalog-section-header p {
  margin: 11px 0 0;
  color: rgba(17, 17, 15, 0.58);
  font-size: 13px;
}

.collection-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  min-height: 54px;
  padding: 0 22px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.collection-buy:hover {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--acid);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 16px;
}

.album-card {
  min-width: 0;
  will-change: transform, opacity;
}

.cover-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #ddd;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease;
}

.cover-button::after {
  content: "Open collection ↗";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 42px;
  background: rgba(17, 17, 15, 0.93);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transform: translateY(64px);
  transition: transform 220ms ease;
}

.cover-button:hover::after,
.cover-button:focus-visible::after {
  transform: translateY(0);
}

.cover-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cover-button:hover img {
  transform: scale(1.025);
}

.cover-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(17, 17, 15, 0.16);
}

.album-meta {
  padding-top: 11px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.album-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1;
  display: inline-block;
  transform: none;
}

.album-meta span {
  font-size: 11px;
  color: rgba(17, 17, 15, 0.58);
}

.album-meta > div > span {
  display: block;
  margin-top: 5px;
}

.album-meta .track-count {
  text-align: right;
  white-space: nowrap;
}

.track-match-summary {
  margin: 10px 0 0;
  padding: 9px 11px 10px;
  min-width: 0;
  background: rgba(126, 67, 255, 0.09);
  border-left: 3px solid var(--purple);
}

.track-match-summary b,
.track-match-summary span {
  display: block;
}

.track-match-summary b {
  color: var(--purple);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-match-summary span {
  margin-top: 4px;
  overflow: hidden;
  color: rgba(17, 17, 15, 0.74);
  font-size: 10px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eyebrow.light span {
  background: currentColor;
}

.info-gateways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ink);
}

.info-gateway {
  min-width: 0;
  min-height: 560px;
  padding: 82px 4vw 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  scroll-margin-top: 90px;
  overflow: hidden;
}

.info-gateway + .info-gateway {
  border-left: 1px solid var(--ink);
}

.license-gateway {
  background: var(--purple);
  color: white;
}

.faq-gateway {
  background: var(--acid);
  color: var(--ink);
}

.info-gateway h2 {
  margin: 54px 0 30px;
  font-size: clamp(52px, 6vw, 94px);
}

.license-gateway h2 em {
  -webkit-text-stroke-color: white;
}

.faq-gateway h2 em {
  -webkit-text-stroke-color: var(--ink);
}

.info-gateway > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 0 28px;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.45;
}

.info-gateway ul {
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.info-gateway li {
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-drawer-trigger {
  min-width: 220px;
  margin-top: auto;
  padding: 15px 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.info-drawer-trigger span {
  margin-left: 38px;
  transition: transform 180ms ease;
}

.info-drawer-trigger:hover span {
  transform: translateX(6px);
}

.newsletter-section {
  min-height: 650px;
  padding: 110px 4vw;
  position: relative;
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 8vw;
  align-items: center;
  background: var(--yellow);
}

.newsletter-badge {
  position: absolute;
  top: 70px;
  right: 5vw;
  width: 110px;
  height: 110px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.newsletter-copy > p:last-child {
  font-size: 18px;
  line-height: 1.55;
  max-width: 570px;
  margin: 42px 0 0;
}

.newsletter-form {
  align-self: end;
  margin-bottom: 22px;
}

.newsletter-form label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.newsletter-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 2px solid var(--ink);
}

.newsletter-form input {
  min-width: 0;
  height: 62px;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 19px;
}

.newsletter-form input::placeholder {
  color: rgba(17, 17, 15, 0.47);
}

.newsletter-form button {
  border: 0;
  background: var(--ink);
  color: white;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.newsletter-form button span {
  margin-left: 20px;
}

.newsletter-form small {
  display: block;
  margin-top: 16px;
  color: rgba(17, 17, 15, 0.55);
  line-height: 1.5;
}

footer {
  background: var(--ink);
  color: white;
  min-height: 320px;
  padding: 72px 4vw 28px;
  display: grid;
  grid-template-columns: 32% 1fr 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 40px;
}

.footer-brand {
  width: min(360px, 100%);
  align-self: start;
  display: block;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

footer p {
  margin: 0;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
  font-size: 13px;
}

.footer-links button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--acid);
}

.footer-socials {
  display: grid;
  align-content: start;
  gap: 11px;
  font-size: 13px;
}

.footer-socials a {
  color: var(--acid);
}

.copyright {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  text-transform: uppercase;
}

.reveal-target {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 750ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-target.reveal-title {
  transform: translate3d(0, 82px, 0) rotate(1.2deg);
  transform-origin: left bottom;
  transition: opacity 620ms ease, transform 1050ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-target.reveal-copy {
  transform: translateY(18px);
  transition: opacity 800ms ease 120ms, transform 850ms cubic-bezier(0.16, 1, 0.3, 1) 120ms;
}

.reveal-target.in-view {
  opacity: 1;
  transform: translateY(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(17, 17, 15, 0.45);
  backdrop-filter: blur(5px);
}

.album-drawer {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  width: min(760px, 92vw);
  height: 100dvh;
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(17, 17, 15, 0.22);
  transform: translateX(105%);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}

.album-drawer.open {
  transform: translateX(0);
}

.drawer-close {
  position: fixed;
  z-index: 2;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--paper);
  cursor: pointer;
  font-size: 27px;
  box-shadow: 0 7px 20px rgba(17, 17, 15, 0.15);
}

.drawer-hero {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 360px;
  background: var(--acid);
}

.drawer-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-hero-copy {
  padding: 72px 34px 32px;
}

.drawer-kicker {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.drawer-hero h2 {
  margin: 22px 0 24px;
  font-family: var(--font-display);
  font-style: oblique 10deg;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  font-size: clamp(37px, 4.5vw, 64px);
  line-height: 0.85;
}

.drawer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.drawer-tags > span {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.drawer-body {
  padding: 34px;
}

.drawer-description {
  font-size: 17px;
  line-height: 1.55;
  max-width: 640px;
  margin: 0 0 30px;
}

.info-drawer-hero {
  min-height: 355px;
  padding: 82px 62px 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--ink);
}

.info-drawer-hero-faq {
  background: var(--acid);
}

.info-drawer-hero-license {
  background: var(--purple);
  color: white;
}

.info-drawer-hero-contact {
  background: var(--yellow);
}

.info-drawer-hero-privacy {
  background: #dff8ef;
}

.info-drawer-hero-terms {
  background: #f4efe4;
}

.info-drawer-hero-legal {
  background: var(--ink);
  color: white;
}

.info-drawer-hero h2 {
  margin: 24px 0 26px;
  max-width: 620px;
  font-family: var(--font-display);
  font-style: oblique 10deg;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.86;
}

.info-drawer-hero p {
  max-width: 570px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.info-drawer-hero a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.info-drawer-body {
  padding: 44px 62px 70px;
}

.drawer-faq-list {
  border-top: 1px solid var(--ink);
}

.drawer-faq-list details {
  border-bottom: 1px solid var(--ink);
}

.drawer-faq-list summary {
  min-height: 86px;
  padding: 22px 62px 22px 0;
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.25;
  font-weight: 800;
}

.drawer-faq-list summary::-webkit-details-marker {
  display: none;
}

.drawer-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.drawer-faq-list details[open] summary::after {
  background: var(--ink);
  color: white;
  transform: translateY(-50%) rotate(45deg);
}

.drawer-faq-list details > p {
  max-width: 590px;
  margin: 0;
  padding: 0 58px 30px 0;
  color: rgba(17, 17, 15, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.license-quick-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.license-quick-view span {
  padding: 18px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.license-status-note {
  margin: 32px 0 48px;
  color: rgba(17, 17, 15, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.license-terms {
  border-top: 1px solid var(--ink);
}

.license-terms > section {
  padding: 30px 0 34px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.license-terms > section > span {
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 20px;
}

.license-terms h3 {
  margin: 0 0 20px;
  font-size: clamp(20px, 2vw, 27px);
  text-transform: uppercase;
}

.license-terms p {
  margin: 0 0 14px;
  color: rgba(17, 17, 15, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.license-terms p:last-child {
  margin-bottom: 0;
}

.license-terms strong {
  color: var(--ink);
}

.license-contact {
  margin-top: 54px;
  padding: 32px;
  background: var(--acid);
  border: 1px solid var(--ink);
}

.license-contact strong {
  display: block;
  font-size: 22px;
}

.license-contact p {
  margin: 12px 0 24px;
  font-size: 14px;
  line-height: 1.55;
}

.license-contact a {
  font-weight: 800;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.license-contact a span {
  margin-left: 24px;
}

.legal-drawer-body {
  padding-top: 34px;
}

.legal-info-list {
  border-top: 1px solid var(--ink);
}

.legal-info-list > section {
  padding: 28px 0 30px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.legal-info-list > section > span {
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 20px;
}

.legal-info-list h3 {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: clamp(18px, 2vw, 24px);
}

.legal-info-list p {
  margin: 0 0 12px;
  color: rgba(17, 17, 15, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.legal-info-list p:last-child {
  margin-bottom: 0;
}

.legal-info-list a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.drawer-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  margin-bottom: 35px;
}

.drawer-trust span {
  padding: 14px 12px;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
}

.drawer-trust span:last-child {
  border-right: 0;
}

.track-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--ink);
}

.track-heading h3 {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.track-heading span {
  font-size: 11px;
  color: rgba(17, 17, 15, 0.55);
}

.track-list {
  margin-bottom: 30px;
}

.collection-reviews {
  margin: 52px 0 38px;
  border-top: 1px solid var(--ink);
}

.reviews-heading {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.reviews-heading p,
.reviews-heading h3 {
  margin: 0;
}

.reviews-heading p {
  color: rgba(17, 17, 15, 0.55);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.reviews-heading h3 {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 23px;
  text-transform: uppercase;
}

.reviews-heading h3 span {
  color: var(--purple);
  letter-spacing: 0.03em;
}

.reviews-heading > span {
  padding: 8px 11px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.reviews-empty {
  padding: 24px;
  background: rgba(126, 67, 255, 0.07);
  border-bottom: 1px solid var(--line);
}

.reviews-empty strong {
  font-size: 14px;
}

.reviews-empty p {
  margin: 7px 0 0;
  color: rgba(17, 17, 15, 0.62);
  font-size: 12px;
}

.review-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.review-list article > span {
  color: var(--purple);
}

.review-list article p {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1.55;
}

.track-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  min-height: 58px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.track-play {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1px solid var(--purple);
  background: var(--purple);
  color: var(--acid);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.track-play:hover,
.track-play:focus-visible {
  transform: scale(1.08);
  background: var(--yellow);
  color: var(--purple);
}

.track-play svg {
  width: 15px;
  height: 15px;
}

.track-row.playing {
  background: rgba(214, 239, 112, 0.24);
}

.track-row.search-match {
  padding-left: 9px;
  border-left: 3px solid var(--purple);
  background: linear-gradient(90deg, rgba(199, 255, 89, 0.46), rgba(199, 255, 89, 0.08));
}

.play-symbol,
.pause-symbol {
  display: block;
}

.pause-symbol {
  display: none;
}

.is-playing .play-symbol {
  display: none;
}

.is-playing .pause-symbol {
  display: block;
}

.track-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
}

.track-title > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-title small {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--purple);
  color: white;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-buy {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.drawer-buy {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--ink);
  color: white;
  padding: 20px 24px;
  margin: 0 -34px -34px;
}

.drawer-buy span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.58);
  display: block;
  margin-top: 4px;
}

.drawer-buy button {
  min-height: 48px;
  padding: 0 18px;
  background: var(--acid);
  border: 0;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.mini-player {
  --player-primary: #c7ff59;
  --player-secondary: #7e43ff;
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(830px, calc(100vw - 28px));
  min-height: 88px;
  background:
    linear-gradient(var(--ink), var(--ink)) padding-box,
    linear-gradient(110deg, var(--player-primary), var(--player-secondary)) border-box;
  color: white;
  border: 2px solid transparent;
  box-shadow:
    0 20px 65px rgba(17, 17, 15, 0.42),
    0 0 28px color-mix(in srgb, var(--player-primary) 22%, transparent);
  display: grid;
  grid-template-columns: 54px 86px minmax(0, 1fr) minmax(190px, 0.75fr) 32px;
  align-items: center;
  gap: 13px;
  padding: 12px 16px 12px 12px;
  overflow: hidden;
  transition: box-shadow 450ms ease, background 450ms ease;
}

.mini-player::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--player-primary), var(--player-secondary));
  transition: background 450ms ease;
}

.mini-player[hidden] {
  display: none;
}

body.collection-drawer-open .mini-player {
  right: 0;
  bottom: 88px;
  left: auto;
  transform: none;
  width: min(760px, 92vw);
  min-height: 76px;
  grid-template-columns: 46px 78px minmax(0, 1fr) minmax(150px, 0.7fr) 30px;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  box-shadow: -14px -10px 45px rgba(17, 17, 15, 0.28);
}

body.collection-drawer-open .mini-cover {
  width: 44px;
  height: 44px;
}

body.collection-drawer-open #mini-toggle {
  width: 34px;
  height: 34px;
}

body.collection-drawer-open .player-next {
  width: 28px;
  height: 28px;
}

.mini-cover {
  width: 52px;
  height: 52px;
  border: 1px solid var(--player-primary);
  overflow: hidden;
}

.mini-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

#mini-toggle,
.player-next,
.mini-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--player-secondary);
  background: var(--player-secondary);
  color: var(--player-primary);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

#mini-toggle:hover,
#mini-toggle:focus-visible,
.player-next:hover,
.player-next:focus-visible {
  transform: translateY(-2px);
  background: var(--player-primary);
  color: var(--player-secondary);
}

#mini-toggle svg,
.player-next svg {
  width: 18px;
  height: 18px;
}

.player-next {
  width: 31px;
  height: 31px;
  background: transparent;
  color: var(--player-primary);
}

.player-next:disabled {
  opacity: 0.25;
  cursor: default;
  transform: none;
}

.mini-close {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.mini-meta {
  min-width: 0;
}

.mini-meta small {
  display: block;
  color: var(--player-primary);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.mini-meta small span {
  display: inline;
  color: var(--player-secondary);
  margin: 0 0 0 5px;
  font-size: inherit;
}

.mini-meta strong,
.mini-meta span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-meta strong {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.mini-meta span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 5px;
}

.mini-progress > div {
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.mini-progress i {
  height: 100%;
  width: 0;
  display: block;
  background: linear-gradient(90deg, var(--player-primary), var(--player-secondary));
  transition: width 120ms linear, background 450ms ease;
}

.mini-progress span {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

.toast {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  background: var(--acid);
  padding: 15px 18px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 15px 40px rgba(17, 17, 15, 0.2);
  transform: translateY(120px);
  transition: transform 260ms ease;
}

.toast.show {
  transform: translateY(0);
}

@media (max-width: 1320px) {
  .album-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .hero-sticky {
    grid-template-columns: 52% 48%;
  }

  .wild-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .album-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .info-gateway {
    min-height: 510px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 74px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .site-header nav {
    display: none;
  }

  .brand {
    width: 82px;
  }

  .brand img {
    width: 82px;
  }

  .brand-cluster {
    gap: 10px;
  }

  .header-socials {
    gap: 3px;
  }

  .header-socials a {
    width: 25px;
    height: 25px;
  }

  .header-socials svg {
    width: 13px;
    height: 13px;
  }

  .header-cta {
    font-size: 11px;
  }

  .hero {
    height: auto;
  }

  .hero-sticky {
    position: relative;
    height: auto;
    display: block;
    overflow: hidden;
  }

  .hero-copy {
    min-height: 610px;
    padding: 48px 18px 30px;
  }

  .hero h1 {
    font-size: clamp(56px, 17vw, 72px);
  }

  .hero-lede {
    margin-top: 32px;
    font-size: 16px;
  }

  .round-link {
    width: 108px;
    height: 108px;
    gap: 7px;
  }

  .hero-art {
    min-height: 480px;
    border-left: 0;
    border-top: 1px solid var(--line);
    transform: none;
    border-radius: 0;
  }

  .hero-note {
    right: 18px;
    bottom: 18px;
    font-size: 12px;
  }

  .hero-proof-badge {
    top: 22px;
    left: 18px;
    bottom: auto;
    width: 148px;
    height: 148px;
    padding: 17px;
    box-shadow: 7px 7px 0 rgba(17, 17, 15, 0.8);
  }

  .hero-proof-badge strong {
    font-size: 36px;
  }

  .hero-proof-value b {
    font-size: 16px;
  }

  .hero-proof-badge span {
    margin-top: 8px;
    font-size: 8.5px;
  }

  .wild-section {
    padding: 80px 18px 90px;
  }

  .wild-heading {
    display: block;
    margin-bottom: 48px;
  }

  .wild-heading > p {
    margin-top: 30px;
  }

  .wild-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip > div {
    min-height: 132px;
    padding: 26px 18px 20px;
    border-bottom: 2px solid var(--ink);
  }

  .trust-strip > div:nth-child(2) {
    border-right: 0;
  }

  .library-section {
    padding: 80px 18px 100px;
  }

  .section-heading {
    display: block;
    margin-bottom: 56px;
  }

  .section-heading > p {
    margin-top: 35px;
  }

  .featured-heading h3,
  .collections-heading h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .featured-sounds {
    margin: -22px 0 32px;
    padding: 10px 12px 12px;
    border-top-width: 7px;
  }

  .featured-sounds-controls button {
    top: 50%;
    width: 26px;
    height: 38px;
  }

  #featured-prev {
    left: -30px;
  }

  #featured-next {
    right: -30px;
  }

  .featured-sound-card {
    flex-basis: min(170px, 45vw);
  }

  .featured-sound-meta strong {
    font-size: 15px;
    white-space: normal;
  }

  .library-toolbar {
    display: block;
    border-bottom: 0;
    padding-top: 17px;
  }

  .library-toolbar > p {
    margin-bottom: 17px;
  }

  .library-tools {
    display: block;
  }

  .search-control {
    width: 100%;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .search-control input {
    min-height: 66px;
    padding-top: 26px;
  }

  .search-control label {
    top: 10px;
    left: 0;
  }

  .search-control button {
    right: 0;
    bottom: 11px;
  }

  .sort-control {
    border-bottom: 1px solid var(--ink);
  }

  .sort-button {
    min-width: 100%;
    width: 100%;
    height: 66px;
    border-left: 0;
    padding: 0;
  }

  .sort-menu {
    width: 100%;
  }

  .album-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 12px;
  }

  .album-meta {
    display: block;
  }

  .album-meta h3 {
    font-size: 17px;
  }

  .album-meta .track-count {
    display: block;
    text-align: left;
    margin-top: 5px;
  }

  .catalog-section-header {
    display: block;
  }

  .collection-buy {
    margin-top: 18px;
    width: 100%;
  }

  .info-gateways {
    display: block;
  }

  .info-gateway {
    min-height: 500px;
    padding: 70px 18px 56px;
  }

  .info-gateway + .info-gateway {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .info-gateway h2 {
    margin: 48px 0 26px;
    font-size: clamp(52px, 16vw, 70px);
  }

  .info-gateway > p:not(.eyebrow) {
    font-size: 17px;
  }

  .info-drawer-trigger {
    width: 100%;
  }

  .info-drawer-hero {
    min-height: 330px;
    padding: 76px 22px 38px;
  }

  .info-drawer-hero h2 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .info-drawer-body {
    padding: 34px 22px 60px;
  }

  .drawer-faq-list summary {
    min-height: 80px;
    padding-right: 52px;
  }

  .drawer-faq-list details > p {
    padding-right: 20px;
  }

  .license-quick-view {
    grid-template-columns: 1fr;
  }

  .license-terms > section {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .license-contact {
    padding: 26px 22px;
  }

  .newsletter-section {
    display: block;
    min-height: 720px;
    padding: 80px 18px;
  }

  .newsletter-badge {
    width: 84px;
    height: 84px;
    top: 32px;
    right: 18px;
  }

  .newsletter-form {
    margin-top: 70px;
  }

  .newsletter-form > div {
    display: block;
    border: 0;
  }

  .newsletter-form input {
    width: 100%;
    border-bottom: 2px solid var(--ink);
  }

  .newsletter-form button {
    width: 100%;
    min-height: 56px;
    margin-top: 12px;
  }

  footer {
    min-height: 430px;
    grid-template-columns: 1fr 1fr;
    padding: 60px 18px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .album-drawer {
    width: 100vw;
  }

  .drawer-hero {
    grid-template-columns: 44% 56%;
    min-height: 270px;
  }

  .drawer-hero-copy {
    padding: 70px 18px 22px;
  }

  .drawer-hero h2 {
    font-size: 35px;
  }

  .drawer-body {
    padding: 25px 18px;
  }

  .drawer-trust {
    grid-template-columns: 1fr;
  }

  .drawer-trust span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .drawer-trust span:last-child {
    border-bottom: 0;
  }

  .track-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .track-buy {
    display: none;
  }

  .drawer-buy {
    margin: 0 -18px -25px;
  }

  .reviews-heading {
    display: block;
    padding: 20px 0;
  }

  .reviews-heading > span {
    display: inline-flex;
    margin-top: 15px;
  }

  .mini-player {
    grid-template-columns: 40px 76px minmax(0, 1fr) 28px;
    gap: 8px;
    padding: 10px 12px 10px 10px;
  }

  body.collection-drawer-open .mini-player {
    right: 0;
    bottom: 88px;
    width: 100vw;
    grid-template-columns: 40px 76px minmax(0, 1fr) 28px;
    gap: 8px;
    padding: 10px 12px 10px 10px;
  }

  .mini-cover {
    width: 40px;
    height: 40px;
  }

  #mini-toggle {
    width: 36px;
    height: 36px;
  }

  .player-next {
    width: 29px;
    height: 29px;
  }

  .mini-meta small {
    display: none;
  }

  .mini-progress {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
