@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
  --ink: #3c3c3c;
  --muted: #727371;
  --line: #e4e5e0;
  --green: #a4c74c;
  --purple: #61559a;
  --blue: #009cde;
  --paper: #f7f8f5;
  --font: "DM Sans", "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s;
  color: inherit;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.43;
}
button:not(:disabled):active {
  transform: translateY(1px);
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
button {
  border: 0;
  background: none;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.site-header {
  height: 99px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 25px;
}
.brand img {
  width: 138px;
  height: 52px;
}
.brand-divider {
  height: 35px;
  width: 1px;
  background: var(--line);
}
.product-name {
  font-size: 24px;
  letter-spacing: -1px;
  font-weight: 600;
  line-height: 1.2;
}
.product-name span {
  display: block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2.3px;
  margin-top: 6px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.demo-tag {
  border: 1px solid #dcdcda;
  padding: 5px 9px;
  border-radius: 4px;
  letter-spacing: 1.4px;
  font-size: 9px;
  font-weight: 700;
}
.connection {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}
.connection i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c29346;
}
.connection.ready i {
  background: #85a537;
}
main {
  max-width: 1440px;
  margin: auto;
  padding: 0 5% 143px;
}
.intro {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  min-height: 320px;
  padding: 39px 0 40px;
  overflow: hidden;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.intro .eyebrow {
  color: #747871;
  margin-bottom: 17px;
}
h1 {
  font-size: clamp(36px, 3.5vw, 51px);
  font-weight: 500;
  letter-spacing: -2.2px;
  line-height: 1.1;
}
h1 span {
  color: #858b7d;
}
.intro-copy {
  margin-top: 19px;
  font-size: 13px;
  line-height: 1.8;
  color: #73766f;
}
.intro-art {
  position: relative;
  width: 400px;
  height: 240px;
  display: grid;
  place-items: center;
  margin-right: 55px;
}
.orbit {
  position: absolute;
  border: 1px solid #dcded3;
  border-radius: 50%;
  width: 230px;
  height: 230px;
  transform: rotate(-24deg) scaleX(1.45);
}
.orbit-two {
  width: 280px;
  height: 280px;
  transform: rotate(-24deg) scaleX(1.38);
  opacity: 0.65;
}
.orbit-three {
  width: 330px;
  height: 330px;
  transform: rotate(-24deg) scaleX(1.3);
  opacity: 0.45;
}
.record {
  width: 213px;
  height: 213px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    #424940 0,
    #424940 1px,
    #373e36 2px,
    #373e36 5px
  );
  box-shadow: 0 15px 25px #2833221a;
  position: relative;
  display: grid;
  place-items: center;
  transform: rotate(-13deg);
}
.record:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    transparent 0deg,
    #ffffff17 70deg,
    transparent 110deg,
    transparent 240deg,
    #ffffff0c 280deg,
    transparent 320deg
  );
}
.record-label {
  border-radius: 50%;
  background: #b7ce84;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.record-label svg {
  fill: none;
  stroke: #465236;
  stroke-width: 1.3;
  width: 35px;
  height: 35px;
  margin-bottom: 9px;
}
.record-label span {
  text-align: center;
  font-size: 7px;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: #465236;
}
.art-caption {
  position: absolute;
  bottom: -16px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1.8px;
  font-size: 8px;
  color: #818779;
}
.little-line {
  height: 1px;
  width: 25px;
  background: var(--green);
}
.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(350px, 1fr);
  align-items: start;
  gap: 32px;
}
.discovery {
  padding: 10px 0;
}
.step {
  color: #868b7d;
  font-size: 9px;
  letter-spacing: 1.6px;
  margin-bottom: 8px;
}
h2 {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.75px;
  font-weight: 500;
}
.section-heading {
  margin-bottom: 22px;
}
.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #cfd3c6;
  border-radius: 7px;
  padding: 6px;
  gap: 10px;
  box-shadow: 0 3px 9px #3c3c3c04;
}
.search-box > .icon {
  margin-left: 9px;
  width: 19px;
  color: #8c9286;
}
.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 12px;
  height: 42px;
  outline: none;
}
.search-box:focus-within {
  border-color: #6f854a;
  box-shadow: 0 0 0 3px #a4c74c20;
}
.search-box input::placeholder {
  color: #8c9087;
}
.button {
  border-radius: 5px;
  min-height: 38px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
}
.primary {
  background: var(--ink);
  color: white;
}
.primary:hover:not(:disabled) {
  background: #222820;
}
.search-box .primary {
  height: 42px;
  white-space: nowrap;
}
.primary > span[aria-hidden] {
  font-size: 19px;
  margin-left: 8px;
}
.icon-button {
  width: 33px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.icon-button:hover:not(:disabled) {
  background: #e9ece3;
}
.mic-button {
  border-left: 1px solid var(--line);
  border-radius: 0;
  padding-left: 10px;
  width: 38px;
}
.mic-button.listening {
  color: #a13737;
  animation: pulse 1s infinite;
}
.helper {
  font-size: 10px;
  color: #85897f;
  margin: 9px 2px;
}
.mood-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 23px 0 32px;
}
.mood-row > span {
  font-size: 10px;
  color: #81867a;
}
.chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.chips button {
  font-size: 10px;
  border: 1px solid #dddfd5;
  padding: 6px 10px;
  border-radius: 20px;
  background: #fbfcf9;
}
.chips button:hover {
  background: #e9efdc;
  border-color: #b3c78c;
}
.results-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 10px;
}
h3 {
  font-size: 13px;
  font-weight: 600;
}
.results-heading h3 {
  font-size: 15px;
  font-weight: 500;
}
.results-heading h3 span {
  font-size: 10px;
  color: #81867b;
  background: #e9ece3;
  padding: 3px 7px;
  border-radius: 10px;
  margin-left: 5px;
}
.sort-note {
  font-size: 10px;
  color: #898e82;
  white-space: nowrap;
}
.filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.field {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 6px 10px;
}
.field label {
  display: block;
  font-size: 9px;
  color: #85897f;
  margin-bottom: 2px;
}
.field select {
  width: 100%;
  background: none;
  border: 0;
  font-size: 11px;
  color: #4f5549;
  padding: 0 13px 0 0;
  min-height: 22px;
}
.text-button {
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
  padding: 6px;
}
.text-button:hover:not(:disabled) {
  color: #557023;
  text-decoration: underline;
}
.text-button .icon {
  width: 15px;
  height: 15px;
}
.bulk-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #edf0e8;
  padding: 8px 10px;
  border-radius: 4px;
  margin-bottom: 7px;
  gap: 8px;
}
.bulk-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
}
.bulk-controls input {
  width: 46px;
  border: 1px solid #d5dace;
  border-radius: 3px;
  background: white;
  padding: 4px;
  font-size: 11px;
}
.bulk-controls select {
  background: none;
  border: 0;
  font-size: 10px;
  max-width: 130px;
}
.bulk-bar .text-button {
  font-size: 10px;
}
.results {
  min-height: 190px;
  max-height: 590px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d3d8ca transparent;
}
.song-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 3px;
  border-bottom: 1px solid var(--line);
  min-height: 81px;
}
.song-art {
  width: 43px;
  height: 43px;
  border-radius: 5px;
  background: var(--tile, #e5e9df);
  color: #657158;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.song-art .icon {
  width: 19px;
  height: 19px;
}
.song-copy {
  min-width: 0;
  flex: 1;
}
.song-title {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.song-artist {
  padding: 0;
  font-size: 11px;
  color: #777e6e;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.song-artist:hover {
  text-decoration: underline;
}
.song-genres {
  display: flex;
  gap: 5px;
  margin-top: 4px;
  overflow: hidden;
}
.song-genres button {
  padding: 1px 5px;
  font-size: 8px;
  background: #edf0e8;
  border-radius: 2px;
  white-space: nowrap;
  color: #767d6c;
}
.song-genres button:hover {
  background: #e1e9d4;
}
.song-time {
  font-size: 10px;
  color: #92988a;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.add-song {
  width: 29px;
  height: 29px;
  border: 1px solid #d9ded1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  flex-shrink: 0;
}
.add-song .icon {
  width: 14px;
  height: 14px;
}
.add-song:hover:not(:disabled) {
  background: var(--green);
  border-color: var(--green);
}
.add-song.added {
  background: #e5edd7;
  color: #69802e;
}
.empty-state {
  text-align: center;
  padding: 50px 25px;
  color: #8c9381;
  font-size: 12px;
}
.empty-state strong {
  display: block;
  color: #5e6852;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 8px;
}
.load-more {
  width: 100%;
  margin-top: 12px;
}
.library-footnote {
  font-size: 9px;
  color: #8e9486;
  line-height: 1.6;
  margin-top: 13px;
}
.playlist-panel {
  background: #fff;
  border: 1px solid #e0e4d9;
  border-radius: 9px;
  padding: 25px;
  box-shadow: 0 8px 22px #39452c05;
}
.playlist-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 8px;
}
.playlist-heading h2 {
  font-size: 21px;
}
.accent-dot {
  color: var(--green);
}
.playlist-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #e5e9de;
  display: grid;
  place-items: center;
  color: #899577;
  flex-shrink: 0;
}
.scan-settings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.scan-settings > span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #777f6d;
}
.scan-settings .icon {
  width: 15px;
  height: 15px;
}
.segmented {
  display: flex;
  background: #f2f4ee;
  border: 1px solid #e7eae0;
  border-radius: 4px;
  padding: 3px;
}
.segmented button {
  padding: 5px 12px;
  font-size: 10px;
  color: #818a76;
  border-radius: 3px;
}
.segmented .selected {
  background: white;
  box-shadow: 0 1px 4px #30382815;
  color: #495638;
}
.coverage {
  margin: 20px 0;
}
.coverage-label {
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.coverage-label strong {
  font-size: 25px;
  letter-spacing: -1px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.coverage-label span {
  font-size: 10px;
  color: #8b9282;
}
.coverage-track {
  background: #edf0e8;
  height: 5px;
  border-radius: 4px;
  margin: 8px 0 7px;
  overflow: hidden;
}
.coverage-track div {
  width: 0;
  background: var(--green);
  height: 100%;
  transition: width 0.3s;
}
.coverage p {
  font-size: 10px;
  color: #8b9380;
}
.suggest-button {
  width: 100%;
  justify-content: flex-start;
  background: #f1f5e9;
  border: 1px solid #dce7c7;
  color: #5f713e;
  font-size: 11px;
}
.suggest-button > span:last-child {
  margin-left: auto;
  font-size: 17px;
}
.suggest-button .icon {
  width: 16px;
  height: 16px;
}
.suggest-button:hover:not(:disabled) {
  background: #e8f0dc;
}
.queue-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px 0 8px;
}
.queue-toolbar h3 {
  font-size: 11px;
  font-weight: 600;
}
.queue-toolbar h3 span {
  font-size: 9px;
  background: #eff1ea;
  color: #7d8771;
  border-radius: 10px;
  padding: 2px 6px;
  margin-left: 4px;
}
.queue-toolbar .text-button {
  font-size: 10px;
  color: #89927c;
}
.queue {
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 216px;
  max-height: 340px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d3d8ca transparent;
}
.queue-empty {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 25px 20px 33px;
}
.empty-record {
  display: grid;
  place-items: center;
  background: #f3f5ee;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  margin-bottom: 18px;
  color: #a1af8d;
}
.queue-empty h3 {
  font-size: 12px;
  font-weight: 500;
  color: #767f6a;
}
.queue-empty p {
  font-size: 10px;
  color: #9aa28e;
  margin-top: 6px;
  max-width: 220px;
  line-height: 1.8;
}
.queue-song {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #eef0e8;
  padding: 11px 0;
}
.queue-song.current {
  background: #f3f7ed;
}
.queue-index {
  font-size: 10px;
  width: 19px;
  flex-shrink: 0;
  color: #97a08b;
  text-align: center;
}
.queue-song .song-copy {
  padding: 0;
  background: none;
  text-align: left;
}
.queue-song .song-title {
  font-size: 11px;
  display: block;
}
.queue-song .song-artist {
  font-size: 10px;
}
.queue-song .song-time {
  font-size: 9px;
}
.queue-actions {
  display: flex;
  gap: 0;
}
.queue-actions button {
  width: 22px;
  height: 25px;
  padding: 3px;
  color: #89967a;
}
.queue-actions .icon {
  width: 13px;
  height: 13px;
}
.playlist-options {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.secondary {
  background: #fff;
  border: 1px solid #e2e6d9;
  color: #717d60;
  font-size: 10px;
}
.secondary:hover:not(:disabled) {
  background: #f2f5ec;
}
.playlist-options .button {
  flex: 1;
  min-height: 34px;
  padding: 7px 9px;
  font-size: 10px;
}
.playlist-options .icon {
  width: 14px;
  height: 14px;
}
.playlist-options .active {
  border-color: #c5d5aa;
  background: #f5f8ee;
  color: #627b3e;
}
.toggle-dot {
  width: 5px;
  height: 5px;
  background: #adb8a0;
  border-radius: 50%;
  margin-left: 4px;
}
.active .toggle-dot {
  background: #8eb040;
}
.stop-option {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: #88947b;
  margin: 14px 0 17px;
}
.stop-option input {
  accent-color: #739344;
}
.start-button {
  width: 100%;
  height: 46px;
  font-size: 12px;
}
.start-button .icon {
  width: 17px;
  height: 17px;
}
.private-note {
  text-align: center;
  color: #9ba48f;
  font-size: 9px;
  margin-top: 13px;
}
.page-footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 9px;
  color: #9a9f91;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  margin-top: 35px;
}
.footer-dot {
  padding: 0 7px;
  color: #a4c74c;
}
.page-footer strong {
  color: #757d69;
  font-weight: 500;
}
.player {
  position: fixed;
  z-index: 5;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 112px;
  border-top: 1px solid #dfe4d7;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1.05fr 0.75fr;
  gap: 30px;
  padding: 16px 5% 13px;
  align-items: center;
  box-shadow: 0 -5px 20px #26351a04;
}
.now-playing {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.now-playing > div:last-child {
  min-width: 0;
}
.player-art {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: #edf1e5;
  color: #8e9d78;
  flex-shrink: 0;
}
.now-playing .eyebrow {
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #8e9c79;
}
.now-playing h3 {
  font-size: 12px;
  font-weight: 500;
  margin: 3px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.now-playing p {
  font-size: 10px;
  color: #919b82;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.transport {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 6px;
}
.transport .icon-button .icon {
  width: 16px;
  height: 16px;
}
.play-pause {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
}
.play-pause .icon {
  width: 17px;
  height: 17px;
}
.play-pause:hover:not(:disabled) {
  background: #60704c;
}
.seek-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  color: #96a086;
  font-variant-numeric: tabular-nums;
}
.seek-row span {
  min-width: 27px;
}
.seek-row input {
  width: 100%;
}
input[type="range"] {
  accent-color: #829d52;
  height: 3px;
  cursor: pointer;
}
.player-end {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.volume {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8d9b79;
}
.volume .icon {
  width: 16px;
  height: 16px;
}
.volume input {
  width: 80px;
}
.scan-time {
  font-size: 9px;
  color: #6f7d5d;
  font-variant-numeric: tabular-nums;
}
.scan-time span:last-child {
  color: #9da88f;
}
.toast {
  position: fixed;
  bottom: 128px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: #36442b;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 5px 24px #1f2b2026;
  max-width: min(600px, 90vw);
  font-size: 12px;
}
.error-message {
  font-size: 12px;
  background: #fbefeb;
  color: #974a36;
  padding: 14px;
  border-radius: 5px;
  margin-top: 12px;
}
.loading-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1s infinite;
  margin-bottom: 10px;
}
[hidden] {
  display: none !important;
}
@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}
@media (min-width: 1600px) {
  .site-header,
  .player {
    padding-left: calc((100vw - 1296px) / 2);
    padding-right: calc((100vw - 1296px) / 2);
  }
}
@media (max-width: 1100px) {
  .workspace {
    gap: 23px;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 1fr);
  }
  .playlist-panel {
    padding: 20px;
  }
  .search-box {
    gap: 5px;
  }
  .search-box .primary {
    font-size: 10px;
    padding: 8px;
  }
  .intro-art {
    margin-right: 15px;
    transform: scale(0.9);
  }
  .header-right {
    gap: 15px;
  }
  .player {
    gap: 15px;
  }
  .bulk-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .playlist-heading h2 {
    font-size: 19px;
  }
}
@media (max-width: 850px) {
  .workspace {
    grid-template-columns: 1fr;
  }
  .playlist-panel {
    max-width: none;
  }
  .intro-art {
    width: 270px;
    margin-right: 15px;
    transform: scale(0.8);
  }
  .header-right .connection {
    display: none;
  }
  .intro {
    min-height: 300px;
  }
  .queue {
    max-height: 380px;
  }
  .results {
    max-height: 430px;
  }
  .bulk-bar {
    flex-direction: row;
    align-items: center;
  }
  .player {
    grid-template-columns: 1fr 1.1fr;
    gap: 15px;
    min-height: 108px;
  }
  .player-end {
    display: none;
  }
  .playlist-heading h2 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .site-header {
    height: 80px;
  }
  .brand {
    gap: 14px;
  }
  .brand img {
    width: 103px;
    height: 42px;
  }
  .brand-divider {
    height: 27px;
  }
  .product-name {
    font-size: 21px;
  }
  .demo-tag {
    font-size: 7px;
    padding: 4px 6px;
  }
  .intro {
    padding: 31px 0 28px;
    min-height: auto;
  }
  .intro .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  h1 {
    font-size: 37px;
  }
  .intro-art {
    display: none;
  }
  .intro-copy {
    font-size: 12px;
  }
  .intro-copy br {
    display: none;
  }
  .workspace {
    gap: 25px;
  }
  h2 {
    font-size: 20px;
  }
  .search-box .primary > span {
    display: none;
  }
  .search-box input {
    font-size: 11px;
  }
  .search-box > .icon {
    display: none;
  }
  .search-box {
    padding-left: 10px;
  }
  .search-box .primary {
    padding: 7px 10px;
  }
  .search-box .mic-button {
    width: 29px;
    padding-left: 2px;
  }
  .mood-row {
    margin-bottom: 25px;
  }
  .chips button {
    font-size: 9px;
    padding: 6px 9px;
  }
  .bulk-bar {
    padding: 7px;
    gap: 4px;
  }
  .bulk-bar .text-button {
    font-size: 9px;
  }
  .bulk-controls {
    gap: 4px;
  }
  .bulk-controls select {
    max-width: 110px;
  }
  .song-row {
    gap: 8px;
  }
  .song-genres button {
    font-size: 7px;
  }
  .sort-note {
    font-size: 8px;
  }
  .filter-bar {
    gap: 8px;
  }
  .playlist-panel {
    padding: 22px;
  }
  .page-footer {
    font-size: 8px;
    flex-direction: column;
    gap: 7px;
  }
  .player {
    padding: 12px 5%;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 10px;
  }
  .player-art {
    display: none;
  }
  .now-playing h3 {
    font-size: 11px;
  }
  .now-playing .eyebrow {
    font-size: 6px;
  }
  .transport {
    gap: 9px;
  }
  .transport .icon-button {
    width: 25px;
  }
  .seek-row {
    gap: 4px;
  }
  .seek-row span {
    font-size: 8px;
    min-width: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Keep the controls easy to read at normal browser zoom. */
.song-title {
  font-size: 14px;
}
.song-artist {
  font-size: 12px;
}
.song-time {
  font-size: 11px;
  color: #717b64;
}
.song-genres button {
  font-size: 9px;
  color: #616c54;
}
.field select {
  font-size: 12px;
}
.field label {
  font-size: 10px;
  color: #6a7361;
}
.helper,
.library-footnote {
  font-size: 11px;
  color: #707965;
}
.queue-song .song-title {
  font-size: 13px;
}
.queue-song .song-artist {
  font-size: 11px;
}
.queue-song .song-time {
  font-size: 10px;
}
.now-playing h3 {
  font-size: 14px;
}
.now-playing p {
  font-size: 11px;
  color: #717d62;
}
.intro-copy {
  font-size: 14px;
}
.coverage p,
.stop-option,
.coverage-label span {
  font-size: 11px;
  color: #6c785d;
}
.private-note {
  font-size: 10px;
  color: #748165;
}
.suggest-button {
  font-size: 12px;
}
.scan-time {
  font-size: 11px;
}
.queue-empty p {
  font-size: 12px;
  color: #768366;
}
.queue-empty h3 {
  font-size: 14px;
}
.results-heading .sort-note,
.library-footnote,
.connection {
  color: #69745c;
}
.step {
  color: #65754f;
}
.player .eyebrow {
  color: #607346;
}
.seek-row {
  color: #64744f;
}
.player-end .scan-time span:last-child {
  color: #6b7958;
}
.queue-actions button {
  color: #6f7e5c;
}
.queue-index {
  color: #6f7e5c;
}
.page-footer {
  color: #6f7a61;
}
.song-genres {
  flex-wrap: wrap;
  max-height: 31px;
}
.song-row {
  min-height: 86px;
}
.queue-toolbar h3 {
  font-size: 12px;
}
.playlist-options .button {
  font-size: 11px;
}
@media (max-width: 520px) {
  .song-title {
    font-size: 13px;
  }
  .song-artist {
    font-size: 11px;
  }
  .song-genres button {
    font-size: 8px;
  }
  .intro-copy {
    font-size: 13px;
  }
  .now-playing h3 {
    font-size: 11px;
  }
  .queue-song .song-title {
    font-size: 12px;
  }
  .queue-song .song-artist {
    font-size: 11px;
  }
  .library-footnote {
    font-size: 10px;
  }
  .helper {
    font-size: 10px;
  }
}
