:root {
  --bg: #06080c;
  --text: #f2f2f5;
  --muted: #a3a4ad;
  --faint: #71727b;
  --line: rgba(132, 139, 154, 0.2);
  --line-strong: rgba(153, 160, 176, 0.32);
  --panel: rgba(9, 12, 17, 0.78);
  --panel-2: rgba(17, 19, 25, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 941px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.08), #05070a 90%),
    radial-gradient(90% 55% at 50% 42%, rgba(20, 25, 34, 0.42), transparent 67%),
    #05070a;
}

.page::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 84%, transparent);
}

.topbar {
  position: relative;
  z-index: 2;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 68px 0 56px;
  border-bottom: 1px solid rgba(147, 152, 164, 0.18);
  background: rgba(5, 7, 11, 0.76);
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 52px;
  color: #a9aab2;
  font-size: 18px;
  font-weight: 400;
}

.nav-cta {
  height: 49px;
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: -4px;
  border: 1px solid rgba(157, 164, 180, 0.38);
  border-radius: 8px;
  color: #f2f2f4;
  background: rgba(22, 24, 31, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav svg,
.button svg,
.proofs svg,
.sidebar-row svg,
.settings-row svg,
.view-tools svg,
.volume svg,
.player-controls svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.main {
  position: relative;
  z-index: 1;
  width: min(1536px, calc(100vw - 136px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(460px, 560px) minmax(620px, 914px);
  gap: clamp(30px, 3vw, 62px);
  align-items: start;
  min-height: 638px;
  padding-top: 42px;
}

.hero-copy {
  width: min(100%, 560px);
  margin-top: 62px;
  min-width: 0;
}

h1,
h2,
p {
  margin: 0;
}

.hero h1 {
  margin: 0 0 29px;
  max-width: 540px;
  color: #f5f5f8;
  font-size: clamp(52px, 4.15vw, 69px);
  line-height: 0.97;
  font-weight: 760;
  letter-spacing: 0;
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  max-width: 535px;
  color: var(--muted);
  font-size: clamp(19px, 1.44vw, 24px);
  line-height: 1.43;
  font-weight: 400;
}

.actions {
  display: flex;
  gap: clamp(18px, 1.7vw, 27px);
  margin-top: 44px;
}

.button {
  height: 63px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0;
  border-radius: 7px;
  font-size: clamp(19px, 1.32vw, 22px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.button svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.9;
}

.button-primary {
  width: clamp(246px, 16.15vw, 270px);
  color: #fbfbfd;
  border: 1px solid rgba(188, 194, 211, 0.22);
  background:
    linear-gradient(135deg, rgba(143, 149, 168, 0.86), rgba(91, 95, 113, 0.92)),
    #787d90;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 34px rgba(0, 0, 0, 0.28);
}

.button-secondary {
  width: clamp(220px, 14.6vw, 244px);
  color: #f3f3f6;
  border: 1px solid rgba(149, 157, 174, 0.28);
  background: rgba(7, 9, 14, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.button-secondary svg {
  color: #aeb0bb;
  stroke-width: 1.7;
}

.proofs {
  display: flex;
  align-items: center;
  gap: 49px;
  margin-top: 72px;
  color: #b3b4bc;
  font-size: 19px;
}

.proofs span {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.proofs svg {
  width: 25px;
  height: 25px;
  color: #8d909b;
  stroke-width: 1.8;
}

.product-shell {
  width: 100%;
  max-width: 914px;
  aspect-ratio: 914 / 543;
  height: auto;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(143, 150, 166, 0.42);
  border-radius: 13px;
  background: #05070a;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.43),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-shell > :not(.product-shot) {
  display: none;
}

.mock-sidebar,
.mock-main,
.mock-player {
  min-width: 0;
  min-height: 0;
}

.mock-sidebar {
  padding: 24px 21px 20px;
  border-right: 1px solid rgba(123, 130, 145, 0.17);
  background: rgba(6, 8, 12, 0.2);
}

.mock-sidebar h2,
.list-header h2 {
  color: #f0f0f4;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.mock-rule {
  height: 1px;
  margin: 15px 0 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent);
}

.sidebar-label {
  margin: 0 0 8px;
  color: #727681;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.playlist-label {
  margin-top: 28px;
}

.sidebar-row {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 7px 0 10px;
  border-radius: 5px;
  color: #babcc4;
  font-size: 12px;
  line-height: 1;
}

.sidebar-row + .sidebar-row {
  margin-top: 1px;
}

.sidebar-row svg {
  width: 14px;
  height: 14px;
  color: #747782;
  stroke-width: 1.6;
}

.sidebar-row > span:last-child:not(.row-left) {
  min-width: 20px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #d0d1d8;
  font-size: 10px;
  background: rgba(115, 119, 132, 0.38);
}

.row-left {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.sidebar-row.active {
  color: #f0f0f2;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.07);
}

.sidebar-row.tight {
  height: 27px;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 400;
}

.sidebar-row.tight.active {
  font-weight: 700;
}

.settings-row {
  position: absolute;
  left: 23px;
  bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9b9da7;
  font-size: 12px;
}

.settings-row svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.6;
}

.mock-main {
  position: relative;
  padding: 24px 22px 26px 22px;
  background:
    radial-gradient(70% 90% at 60% 35%, rgba(24, 29, 39, 0.25), transparent 70%),
    rgba(7, 9, 13, 0.28);
}

.list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.list-header p {
  margin-top: 8px;
  color: #858893;
  font-size: 12px;
}

.view-tools {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-tools span {
  width: 26px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #9a9da8;
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.view-tools svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.5;
}

.table-head,
.track-row {
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr) 138px;
  align-items: center;
}

.table-head {
  height: 22px;
  color: #727681;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(130, 136, 150, 0.17);
}

.track-row {
  height: 40px;
  color: #aeb0b8;
  font-size: 12px;
  border-bottom: 1px solid rgba(130, 136, 150, 0.13);
}

.track-row.selected {
  height: 41px;
  margin: 0 -1px;
  padding: 0 1px;
  border-radius: 4px;
  border-bottom-color: transparent;
  color: #f3f3f6;
  background: rgba(255, 255, 255, 0.065);
}

.track-number {
  color: #858893;
  text-align: center;
}

.track-name {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f1f1f4;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cover {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.c1 {
  background:
    radial-gradient(circle at 48% 20%, #f3a253 0 11%, transparent 12%),
    linear-gradient(135deg, #1b0e0f, #b7472c 48%, #2b141a);
}

.c2 {
  background:
    linear-gradient(90deg, rgba(255, 246, 235, 0.85) 0 45%, transparent 45%),
    radial-gradient(circle at 70% 35%, #f1ae83 0 18%, transparent 19%),
    linear-gradient(135deg, #ef835f, #ffe2cf);
}

.c3 {
  background:
    radial-gradient(circle at 65% 24%, #2cf0ad 0 7%, transparent 8%),
    radial-gradient(circle at 30% 75%, #ee7c24 0 10%, transparent 11%),
    linear-gradient(135deg, #04201e, #076868 48%, #15110f);
}

.c4 {
  background:
    radial-gradient(circle at 52% 30%, #ef7835 0 12%, transparent 13%),
    linear-gradient(135deg, #160b09, #84401c 45%, #0b171d);
}

.c5 {
  background:
    radial-gradient(circle at 65% 35%, #f1b24b 0 15%, transparent 16%),
    linear-gradient(135deg, #193e3f, #d86d2c 54%, #e0d7aa);
}

.mock-player {
  padding: 22px 23px 20px;
  border-left: 1px solid rgba(123, 130, 145, 0.2);
  background:
    radial-gradient(85% 55% at 50% 30%, rgba(42, 49, 67, 0.25), transparent 72%),
    rgba(6, 8, 12, 0.35);
}

.album-art {
  width: 186px;
  height: 174px;
  overflow: hidden;
  border-radius: 7px;
  background: #f3f5fb;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.26);
}

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

.mock-player h2 {
  margin-top: 21px;
  color: #f5f5f8;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.mock-player > p {
  margin-top: 10px;
  color: #81848f;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.time {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  color: #bfc1ca;
  font-size: 11px;
}

.time span:last-child {
  color: #696d78;
}

.progress {
  height: 3px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.13);
}

.progress span {
  display: block;
  width: 49%;
  height: 100%;
  background: #ececf0;
}

.meta {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 7px;
  margin: 17px 0 0;
  color: #aaaeb8;
  font-size: 12px;
}

.meta dt {
  color: #868993;
}

.meta dd {
  margin: 0;
  color: #d7d8de;
  text-align: right;
}

.meta dd span {
  display: inline-flex;
  height: 17px;
  align-items: center;
  padding: 0 9px;
  border-radius: 9px;
  color: #d2d4dc;
  font-size: 10px;
  background: rgba(125, 131, 145, 0.62);
}

.volume {
  display: grid;
  grid-template-columns: 16px 1fr 16px;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #9da0aa;
}

.volume svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.6;
}

.volume div {
  position: relative;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.11);
}

.volume div span {
  position: absolute;
  left: 32%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dbdce2;
  transform: translate(-50%, -50%);
}

.player-controls {
  display: grid;
  grid-template-columns: 1fr 43px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.player-controls span {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #a8abb4;
  background: linear-gradient(180deg, rgba(40, 43, 53, 0.78), rgba(24, 26, 34, 0.9));
}

.player-controls span.play {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #787c8e, #5c6070);
}

.player-controls svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.5;
}

.player-controls .play svg {
  fill: currentColor;
  stroke: none;
  margin-left: 2px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 0;
}

.feature-card {
  height: 140px;
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 0 28px;
  border: 1px solid rgba(139, 147, 163, 0.22);
  border-radius: 7px;
  background: rgba(7, 9, 13, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.feature-icon {
  width: 83px;
  height: 83px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(137, 145, 161, 0.16);
  border-radius: 50%;
  background: rgba(5, 7, 11, 0.28);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: #f2f2f4;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h2 {
  color: #f5f5f7;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.feature-card p {
  margin-top: 18px;
  color: #a3a5ae;
  font-size: 18px;
  line-height: 1.45;
}

footer {
  position: relative;
  z-index: 1;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #858790;
  font-size: 18px;
}

footer i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6b6e78;
}

@media (max-width: 1160px) {
  .page {
    min-height: 100vh;
  }

  .topbar {
    height: auto;
    gap: 24px;
    padding: 22px 24px;
  }

  .nav {
    gap: 24px;
    font-size: 15px;
  }

  .main {
    width: min(914px, calc(100vw - 36px));
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: 0;
    padding: 64px 0 36px;
  }

  .hero-copy {
    width: 100%;
    margin-top: 0;
  }

  .hero h1 {
    font-size: 58px;
  }

  .product-shell {
    max-width: none;
    height: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar,
  .nav,
  .actions,
  .proofs {
    flex-wrap: wrap;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 184px;
  }

  .nav-cta {
    min-width: 144px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-copy p {
    font-size: 19px;
  }

  .button {
    width: 100%;
  }

  .product-shell {
    height: auto;
    aspect-ratio: 914 / 543;
  }

  .mock-sidebar,
  .mock-player {
    display: none;
  }

  .mock-main {
    min-height: 470px;
  }

  .feature-card {
    height: auto;
    min-height: 140px;
    padding: 26px;
  }

  footer {
    flex-wrap: wrap;
    padding: 24px;
    height: auto;
    font-size: 15px;
  }
}
