@charset "UTF-8";

/* 作者：搭客佬 */
/* 链接：https://www.jm9pro.cn/ */

:root {
  --paper: #fff8ef;
  --paper-deep: #f8eadc;
  --white: #ffffff;
  --navy: #082f4d;
  --navy-deep: #05253d;
  --navy-soft: #164763;
  --coral: #f0643e;
  --coral-dark: #d94c2a;
  --cyan: #35b9c9;
  --cyan-dark: #148ba0;
  --green: #3aa76d;
  --ink: #102f45;
  --muted: #647989;
  --line: #d8e2e6;
  --soft-line: #e8edef;
  --shadow: 0 18px 44px rgba(8, 47, 77, 0.12);
  --container: 1200px;
  --header-height: 74px;
}

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

html {
  min-width: 320px;
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

body,
button,
input {
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font-size: 14px;
}

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

button {
  border: 0;
  cursor: pointer;
}

ul,
ol,
p,
h1,
h2,
h3,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(8, 47, 77, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 186px;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 11px;
  object-fit: contain;
}

.brand-copy,
.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.15;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.1;
  white-space: nowrap;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  color: #3f586a;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--coral-dark);
}

.nav-link.is-active::after,
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.mobile-actions {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
}

.mobile-download {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--coral);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #cfdade;
  border-radius: 8px;
  background: #ffffff;
}

.menu-button i {
  width: 19px;
  height: 19px;
  background: url("../icons/menu.svg") center / contain no-repeat;
}

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(8, 47, 77, 0.1) 1px, transparent 1px);
  background-size: 16px 16px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coral) 0 28%, var(--cyan) 28% 72%, var(--navy) 72%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 750px;
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.04fr);
  align-items: center;
  gap: 58px;
  padding: 68px 0 72px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 12px;
  border-left: 3px solid var(--cyan);
  color: var(--navy);
  background: rgba(53, 185, 201, 0.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin-top: 24px;
  color: var(--coral);
  font-size: clamp(60px, 5.3vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.hero-slogan {
  display: block;
  margin-top: 13px;
  color: var(--navy);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.hero-copy > p {
  max-width: 570px;
  margin-top: 19px;
  color: #526b7b;
  font-size: 16px;
  line-height: 1.85;
}

.hero-benefits {
  display: grid;
  max-width: 570px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 30px;
}

.hero-benefits li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.hero-benefits i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--coral);
  font-size: 14px;
  font-style: normal;
}

.hero-benefits li:nth-child(2) i {
  background: var(--cyan);
}

.hero-benefits li:nth-child(3) i {
  background: var(--navy);
}

.hero-benefits span,
.hero-benefits strong,
.hero-benefits small {
  display: block;
}

.hero-benefits strong {
  color: var(--navy);
  font-size: 14px;
}

.hero-benefits small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.hero-action {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
}

.primary-button {
  display: inline-flex;
  min-width: 214px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 22px;
  border: 1px solid var(--coral);
  border-radius: 10px;
  color: #ffffff;
  background: var(--coral);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.primary-button i {
  font-size: 20px;
  font-style: normal;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.age-label {
  color: #708493;
  font-size: 12px;
}

.discovery-console {
  width: 100%;
  min-width: 0;
  padding: 25px;
  border: 1px solid rgba(8, 47, 77, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.console-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.console-heading div,
.console-heading strong,
.console-heading span {
  display: block;
}

.console-heading div > span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.console-heading strong {
  margin-top: 2px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.3;
}

.console-count {
  padding-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.console-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 20px;
}

.console-search input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid #cddce2;
  border-radius: 8px;
  outline: 0;
  color: var(--ink);
  background: #ffffff;
}

.console-search input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(53, 185, 201, 0.14);
}

.console-search button {
  min-width: 104px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--cyan);
  font-weight: 700;
}

.console-genres {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  margin-top: 10px;
}

.console-genre,
.mood-filter button {
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #5c7080;
  background: #f1f5f6;
  font-size: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.console-genre:hover,
.console-genre:focus-visible,
.console-genre.is-active,
.mood-filter button:hover,
.mood-filter button:focus-visible,
.mood-filter button.is-active {
  color: #ffffff;
  background: var(--cyan);
}

.console-tools {
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--soft-line);
}

.complete-filter,
.mood-filter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.complete-filter span,
.mood-filter > span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.toggle {
  position: relative;
  width: 37px;
  height: 21px;
  flex: 0 0 37px;
  border-radius: 999px;
  background: #c9d5da;
  transition: background 0.2s ease;
}

.toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
  transition: transform 0.2s ease;
}

.toggle.is-active {
  background: var(--cyan);
}

.toggle.is-active::after {
  transform: translateX(16px);
}

.console-results {
  max-height: 286px;
  overflow-y: auto;
  scrollbar-color: #bdd1d8 transparent;
  scrollbar-width: thin;
}

.console-result {
  display: grid;
  min-height: 91px;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--soft-line);
}

.console-result[hidden] {
  display: none;
}

.console-result img {
  width: 58px;
  height: 70px;
  border-radius: 6px;
  background: #edf3f5;
  object-fit: contain;
}

.console-result div,
.console-result strong,
.console-result span,
.console-result small {
  display: block;
  min-width: 0;
}

.console-result strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.console-result span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.console-result small {
  margin-top: 3px;
  color: var(--cyan-dark);
  font-size: 12px;
}

.shelf-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--coral);
  border-radius: 7px;
  color: var(--coral-dark);
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.shelf-button:hover,
.shelf-button:focus-visible,
.shelf-button[aria-pressed="true"] {
  color: #ffffff;
  background: var(--coral);
}

.console-empty {
  padding: 30px 0 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.page-section {
  padding: 98px 0;
  scroll-margin-top: var(--header-height);
}

.section-heading,
.download-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 34px;
}

.section-heading > span,
.download-heading > span {
  grid-column: 1;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.section-heading h2,
.download-heading h2 {
  grid-column: 1;
  margin-top: -38px;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-heading p,
.download-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.daily-section {
  background: #ffffff;
}

.mix-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.composer-controls {
  padding: 12px 22px;
}

.composer-row {
  display: grid;
  min-height: 54px;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--soft-line);
}

.composer-row:last-child {
  border-bottom: 0;
}

.composer-row > strong {
  color: var(--navy);
  font-size: 13px;
}

.composer-row > div {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.composer-row button {
  min-width: 82px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 6px;
  color: #607582;
  background: #f0f4f5;
  font-size: 12px;
}

.composer-row button:hover,
.composer-row button:focus-visible,
.composer-row button.is-active {
  color: #ffffff;
  background: var(--cyan);
}

.composer-summary {
  display: flex;
  min-height: 186px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  flex-direction: column;
  border-left: 1px dashed #aac4cc;
  background: var(--paper);
  text-align: center;
}

.composer-summary span,
.composer-summary strong,
.composer-summary small {
  display: block;
}

.composer-summary span {
  color: var(--muted);
  font-size: 12px;
}

.composer-summary strong {
  margin-top: 8px;
  color: var(--coral);
  font-size: 19px;
  line-height: 1.5;
}

.composer-summary small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

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

.mix-card {
  display: flex;
  min-width: 0;
  padding: 12px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.mix-card:hover {
  border-color: #93cbd3;
  transform: translateY(-3px);
}

.mix-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 6px;
  overflow: hidden;
  border-radius: 8px;
  background: #f4eee8;
}

.mix-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mix-card-body {
  padding: 13px 2px 12px;
}

.mix-card-body strong,
.mix-card-body span {
  display: block;
}

.mix-card-body strong {
  color: var(--navy);
  font-size: 17px;
}

.mix-card-body span {
  margin-top: 3px;
  color: var(--cyan-dark);
  font-size: 12px;
}

.mix-card-body p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.mix-card .shelf-button {
  width: 100%;
  margin-top: auto;
}

.board-section {
  background-color: #f7fafb;
  background-image: linear-gradient(rgba(8, 47, 77, 0.035) 1px, transparent 1px);
  background-size: 100% 42px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.board-lane {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--cyan);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
}

.board-lane.lane-later {
  border-top-color: var(--coral);
}

.board-lane.lane-finished {
  border-top-color: var(--green);
}

.board-lane > header {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 12px;
  border-bottom: 1px solid var(--soft-line);
}

.board-lane > header strong {
  color: var(--navy);
  font-size: 17px;
}

.board-lane > header span {
  display: inline-flex;
  min-width: 42px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  background: #eef3f4;
  font-size: 12px;
}

.board-card {
  display: grid;
  min-height: 99px;
  grid-template-columns: 57px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  border-bottom: 1px solid var(--soft-line);
}

.board-card:last-child {
  border-bottom: 0;
}

.board-card img {
  width: 57px;
  height: 72px;
  border-radius: 6px;
  background: #edf2f3;
  object-fit: contain;
}

.board-card div,
.board-card strong,
.board-card span,
.board-card small,
.board-card em {
  display: block;
  min-width: 0;
}

.board-card strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.board-card i {
  position: relative;
  display: inline-block;
  width: calc(100% - 38px);
  height: 4px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: #dfe7ea;
  font-style: normal;
  vertical-align: middle;
}

.board-card i b {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  background: var(--cyan);
}

.board-card small {
  float: right;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.board-card em {
  width: fit-content;
  margin-top: 8px;
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--green);
  background: rgba(58, 167, 109, 0.1);
  font-size: 12px;
  font-style: normal;
}

.board-action {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #c8d7dc;
  border-radius: 50%;
  color: var(--cyan-dark);
  background: #ffffff;
  font-size: 17px;
}

.board-action:hover,
.board-action:focus-visible,
.board-action[aria-pressed="true"] {
  border-color: var(--coral);
  color: #ffffff;
  background: var(--coral);
}

.shots-section {
  background: var(--white);
}

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

.shots-grid figure {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.shot-viewport {
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: #f2f8f9;
}

.shots-grid figure:nth-child(even) .shot-viewport {
  background: #fff1e8;
}

.shot-viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shots-grid figcaption {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 5px 2px;
}

.shots-grid figcaption strong {
  color: var(--navy);
  font-size: 15px;
}

.shots-grid figcaption span {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.help-section {
  background: var(--paper);
}

.faq-list {
  width: 100%;
  border-top: 2px solid var(--navy);
}

.faq-item {
  border-bottom: 1px solid #cdd8dc;
}

.faq-item summary {
  display: grid;
  min-height: 66px;
  grid-template-columns: 45px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary b {
  color: var(--coral);
  font-size: 12px;
}

.faq-item summary span {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.faq-item summary i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #b9cbd1;
  border-radius: 50%;
  color: var(--navy);
  font-size: 16px;
  font-style: normal;
}

.faq-item[open] summary i {
  color: #ffffff;
  background: var(--coral);
  border-color: var(--coral);
}

.faq-item > div {
  padding: 0 48px 22px 59px;
}

.faq-item > div p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.faq-item a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.voices-section {
  background: #ffffff;
}

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

.voice-card {
  display: flex;
  min-height: 190px;
  padding: 20px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.voice-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--soft-line);
}

.voice-user > span:first-child {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.voice-user strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.voice-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: #f5e7dc url("../icons/avatar.svg") center / 22px 22px no-repeat;
}

.voice-rating {
  display: flex;
  flex: 0 0 auto;
  color: var(--coral);
  gap: 2px;
  white-space: nowrap;
}

.voice-rating i {
  width: 13px;
  font-size: 12px;
  font-style: normal;
}

.fa-star.aiarticle-comment-rating-icon::before {
  content: "★";
}

.fa-star-o.aiarticle-comment-rating-icon::before {
  content: "☆";
}

.voice-card > p {
  margin-top: 15px;
  color: #506878;
  font-size: 14px;
  line-height: 1.8;
}

.voice-card > time {
  margin-top: auto;
  padding-top: 14px;
  color: #84949f;
  font-size: 12px;
  text-align: right;
}

.download-section {
  padding: 96px 0;
  scroll-margin-top: var(--header-height);
  background: #f2f7f8;
}

.download-heading h2 {
  white-space: nowrap;
}

.download-console {
  position: relative;
  display: grid;
  min-height: 240px;
  grid-template-columns: minmax(260px, 0.85fr) minmax(430px, 1.3fr) 180px;
  align-items: center;
  gap: 34px;
  padding: 42px;
  overflow: hidden;
  border-radius: 18px;
  color: #ffffff;
  background-color: var(--navy-deep);
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 38px;
}

.download-console::after {
  position: absolute;
  right: 144px;
  bottom: -54px;
  width: 190px;
  height: 95px;
  border: 1px dashed rgba(53, 185, 201, 0.45);
  border-radius: 50% 50% 0 0;
  content: "";
}

.download-copy,
.download-copy span,
.download-copy strong {
  display: block;
}

.download-copy span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.download-copy strong {
  margin-top: 7px;
  font-size: 22px;
}

.download-copy p {
  max-width: 300px;
  margin-top: 9px;
  color: #b8cad5;
  font-size: 13px;
  line-height: 1.8;
}

.download-route {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.download-route::before {
  position: absolute;
  z-index: -1;
  top: 21px;
  right: 12%;
  left: 12%;
  border-top: 1px dashed var(--coral);
  content: "";
}

.download-route li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.download-route b {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--coral);
  font-size: 13px;
}

.download-route span,
.download-route strong,
.download-route small {
  display: block;
}

.download-route strong {
  font-size: 13px;
  white-space: nowrap;
}

.download-route small {
  margin-top: 2px;
  color: #9fb5c2;
  font-size: 12px;
  white-space: nowrap;
}

.download-button {
  position: relative;
  z-index: 2;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  color: #ffffff;
  background: var(--coral);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.download-button span,
.download-button i {
  display: block;
  grid-column: 1;
  grid-row: 1;
}

.download-button span {
  transform: translateY(-10px);
  font-size: 16px;
}

.download-button i {
  transform: translateY(16px);
  font-size: 23px;
  font-style: normal;
}

.download-button:hover,
.download-button:focus-visible {
  background: var(--coral-dark);
  transform: scale(1.03);
}

.site-footer {
  color: #d8e5ec;
  background: var(--navy-deep);
}

.footer-inner {
  padding: 34px 0 20px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 28px;
}

.footer-brand .brand-copy strong {
  color: #ffffff;
}

.footer-brand .brand-copy small {
  color: #a7bdca;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #bbced8;
  font-size: 12px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  min-height: 52px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: #8fa8b7;
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  background: var(--navy);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-top i {
  width: 19px;
  height: 19px;
  background: url("../icons/top.svg") center / contain no-repeat;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(53, 185, 201, 0.35);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(490px, 1.1fr);
    gap: 36px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .download-console {
    grid-template-columns: minmax(220px, 0.8fr) minmax(390px, 1.25fr) 138px;
    gap: 24px;
    padding: 34px;
  }

  .download-button {
    width: 132px;
    height: 132px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .mobile-actions {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    margin: 0;
    padding: 10px;
    border: 1px solid #d1dce0;
    border-radius: 0 0 12px 12px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(8, 47, 77, 0.14);
  }

  .site-header.is-open .main-nav {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    min-height: 46px;
    justify-content: center;
    border-bottom: 1px solid var(--soft-line);
  }

  .main-nav li:last-child .nav-link {
    border-bottom: 0;
  }

  .nav-link::after {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 46px;
    padding: 78px 0 90px;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    font-size: 64px;
    white-space: normal;
  }

  .hero-copy > p,
  .hero-benefits {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-benefits {
    display: flex;
    justify-content: center;
  }

  .hero-action {
    align-items: center;
  }

  .discovery-console {
    width: min(100%, 720px);
    margin: 0 auto;
  }

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

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

  .board-lane {
    padding: 18px 24px;
  }

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

  .download-console {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .download-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .download-route {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .download-button {
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 32px);
  }

  .page-section,
  .download-section {
    padding: 74px 0;
  }

  .section-heading,
  .download-heading {
    display: block;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .download-heading h2 {
    margin-top: 6px;
    font-size: 30px;
  }

  .section-heading p,
  .download-heading p {
    margin-top: 10px;
    font-size: 14px;
  }

  .mix-composer {
    grid-template-columns: 1fr;
  }

  .composer-summary {
    min-height: 120px;
    border-top: 1px dashed #aac4cc;
    border-left: 0;
  }

  .shots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    width: calc(100% - 18px);
    gap: 6px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 6px;
  }

  .brand-logo {
    width: 33px;
    height: 33px;
    flex-basis: 33px;
    border-radius: 8px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    margin-top: 2px;
    font-size: 12px;
  }

  .mobile-actions {
    gap: 5px;
  }

  .mobile-download {
    min-height: 34px;
    padding: 0 9px;
  }

  .menu-button {
    width: 36px;
    height: 36px;
  }

  .main-nav {
    right: 9px;
    left: 9px;
  }

  .hero-inner {
    padding: 60px 0 74px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 48px;
  }

  .hero-slogan {
    font-size: 27px;
  }

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

  .hero-benefits {
    display: grid;
    width: fit-content;
    text-align: left;
  }

  .discovery-console {
    padding: 16px;
    border-radius: 12px;
  }

  .console-heading strong {
    font-size: 21px;
  }

  .console-search {
    grid-template-columns: 1fr;
  }

  .console-genres {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .console-genre {
    min-width: 65px;
    scroll-snap-align: start;
  }

  .console-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .mood-filter {
    width: 100%;
  }

  .mood-filter button {
    flex: 1;
  }

  .console-result {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 10px;
  }

  .console-result img {
    width: 50px;
    height: 64px;
  }

  .console-result .shelf-button {
    grid-column: 2;
    width: fit-content;
  }

  .composer-controls {
    padding: 12px 15px;
  }

  .composer-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 12px 0;
  }

  .composer-row > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .composer-row button {
    width: 100%;
    min-width: 0;
  }

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

  .mix-cover {
    aspect-ratio: 16 / 10;
  }

  .board-lane {
    padding: 15px;
  }

  .board-card {
    grid-template-columns: 51px minmax(0, 1fr) 30px;
  }

  .board-card img {
    width: 51px;
    height: 66px;
  }

  .shots-grid {
    gap: 8px;
  }

  .shots-grid figure {
    padding: 6px;
  }

  .shot-viewport {
    padding: 5px;
  }

  .shots-grid figcaption {
    min-height: 70px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    padding: 8px 5px 2px;
  }

  .shots-grid figcaption strong {
    font-size: 13px;
  }

  .shots-grid figcaption span {
    text-align: left;
  }

  .faq-item summary {
    min-height: 62px;
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 8px;
  }

  .faq-item summary span {
    font-size: 14px;
  }

  .faq-item > div {
    padding: 0 38px 20px;
  }

  .download-heading h2 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .download-console {
    padding: 34px 20px;
  }

  .download-route {
    display: flex;
    width: min(100%, 270px);
    flex-direction: column;
    gap: 18px;
    text-align: left;
  }

  .download-route::before {
    top: 18px;
    right: auto;
    bottom: 18px;
    left: 21px;
    border-top: 0;
    border-left: 1px dashed var(--coral);
  }

  .download-button {
    width: 136px;
    height: 136px;
  }

  .footer-inner {
    padding-top: 30px;
  }

  .footer-nav {
    gap: 12px 18px;
  }

  .back-top {
    right: 13px;
    bottom: 13px;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .mobile-download {
    padding: 0 7px;
  }

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

  .hero-slogan {
    font-size: 24px;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  input,
  summary {
    transition: none !important;
    animation: none !important;
  }

  .primary-button:hover,
  .mix-card:hover,
  .download-button:hover {
    transform: none;
  }
}
