@charset "UTF-8";

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

:root {
  --ink: #261419;
  --espresso: #241519;
  --espresso-soft: #39242a;
  --rose: #e83f73;
  --rose-dark: #b92253;
  --rose-pale: #f9dce5;
  --cream: #fff9ed;
  --paper: #fffdf8;
  --line: #d7c8bd;
  --muted: #745f64;
  --header-height: 76px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

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

a,
button,
.faq-answer {
  transition: none;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

ul,
ol {
  list-style: none;
}

.container,
.topbar-inner,
.hero-inner,
.footer-inner {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.brand-text strong {
  font-size: 21px;
  white-space: nowrap;
}

.brand-text span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.main-nav ul,
.footer-nav ul {
  display: flex;
  align-items: center;
}

.main-nav ul {
  gap: 34px;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 26px 0 23px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--rose);
  content: "";
  opacity: 0;
}

.main-nav a:hover,
.main-nav a.is-current {
  color: var(--rose-dark);
}

.main-nav a.is-current::after {
  opacity: 1;
}

.mobile-controls {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-get {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #fff;
  background: var(--rose-dark);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
}

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.icon-menu { background-image: url("../icons/menu.svg"); }
.icon-search { background-image: url("../icons/search.svg"); }
.icon-compass { background-image: url("../icons/compass.svg"); }
.icon-rank { background-image: url("../icons/rank.svg"); }
.icon-heart { background-image: url("../icons/heart.svg"); }
.icon-arrow { background-image: url("../icons/arrow.svg"); }
.icon-grid { background-image: url("../icons/grid.svg"); }
.icon-bookmark { background-image: url("../icons/bookmark.svg"); }
.icon-user { background-image: url("../icons/user.svg"); }
.icon-fire { background-image: url("../icons/fire.svg"); }
.icon-spark { background-image: url("../icons/spark.svg"); }
.icon-cup { background-image: url("../icons/cup.svg"); }
.icon-globe { background-image: url("../icons/globe.svg"); }
.icon-avatar { background-image: url("../icons/avatar.svg"); }

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: var(--espresso);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232, 63, 115, .22) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  opacity: .45;
}

.hero::after {
  position: absolute;
  top: 70px;
  right: -80px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(249, 220, 229, .28);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.1fr) 430px;
  align-items: center;
  gap: 80px;
}

.eyebrow {
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(64px, 7vw, 112px);
  line-height: 1;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.hero h2 {
  margin-top: 24px;
  font-size: 32px;
  line-height: 1.3;
}

.hero-summary {
  max-width: 610px;
  margin-top: 20px;
  color: #d8c9cd;
  font-size: 16px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 24px;
}

.hero-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.hero-features i {
  filter: brightness(0) invert(1);
}

.hero-action {
  display: inline-flex;
  min-width: 190px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  padding: 0 24px;
  color: #fff;
  background: var(--rose);
  border: 1px solid var(--rose);
  font-size: 16px;
  font-weight: 800;
}

.hero-action i {
  filter: brightness(0) invert(1);
}

.age-label {
  display: block;
  margin-top: 11px;
  color: #bdaab0;
  font-size: 12px;
}

.phone-stage {
  display: flex;
  justify-content: flex-end;
}

.phone-frame {
  position: relative;
  width: 330px;
  height: 600px;
  padding: 15px;
  overflow: hidden;
  color: #261419;
  background: #111;
  border: 2px solid #4f3b42;
  border-radius: 43px;
  box-shadow: 22px 24px 0 rgba(232, 63, 115, .25);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 84px;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 30px;
}

.phone-status {
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  font-size: 12px;
  font-weight: 800;
}

.phone-titlebar,
.phone-search,
.phone-tabs,
.phone-section-title,
.phone-comics,
.phone-nav {
  margin-inline: 16px;
}

.phone-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
}

.phone-titlebar strong {
  color: var(--rose-dark);
  font-size: 22px;
}

.phone-search {
  display: flex;
  height: 37px;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 0 13px;
  color: #8e7f84;
  background: #f4edf0;
  border-radius: 20px;
  font-size: 12px;
}

.phone-search i {
  width: 15px;
  height: 15px;
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
  border-bottom: 1px solid #eadfe2;
}

.phone-tabs span {
  padding: 0 0 8px;
  text-align: center;
  font-size: 12px;
}

.phone-tabs .is-active {
  color: var(--rose-dark);
  border-bottom: 2px solid var(--rose);
}

.phone-feature {
  display: grid;
  height: 137px;
  grid-template-columns: 1.1fr .9fr;
  margin: 12px 16px 0;
  overflow: hidden;
  color: #fff;
  background: var(--espresso-soft);
  border-radius: 14px;
}

.phone-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
}

.phone-feature-copy span {
  color: #ffc4d5;
  font-size: 12px;
}

.phone-feature-copy strong {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.phone-cover {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7eff1;
}

.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.phone-section-title strong {
  font-size: 14px;
}

.phone-section-title span {
  color: var(--rose-dark);
  font-size: 12px;
}

.phone-comics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 7px;
}

.phone-comics img {
  width: 100%;
  height: 102px;
  object-fit: contain;
  background: #f7eff1;
  border-radius: 7px;
}

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

.phone-comics strong {
  margin-top: 5px;
  font-size: 12px;
}

.phone-comics span {
  color: #88777c;
  font-size: 12px;
}

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 9px 0 12px;
  background: #fff;
  border-top: 1px solid #eadfe2;
}

.phone-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #75656a;
  font-size: 12px;
}

.phone-nav i {
  width: 17px;
  height: 17px;
}

.section {
  padding: 100px 0;
}

.heading-row {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  gap: 17px;
}

.section-index {
  padding-top: 8px;
  color: var(--rose-dark);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
}

.section-heading h2 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.heading-row > p {
  max-width: 480px;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.radar-section {
  background: var(--cream);
}

.radar-board {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, .75fr);
  border: 1px solid var(--ink);
}

.preference-panel,
.recommend-panel {
  min-width: 0;
}

.preference-panel {
  border-right: 1px solid var(--ink);
}

.panel-heading {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
}

.panel-heading span {
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.panel-heading h3 {
  font-size: 21px;
}

.preference-body {
  padding: 28px;
}

.genre-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.genre-options button,
.radar-submit,
.refresh-list {
  min-height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.genre-options button.is-selected {
  color: #fff;
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.selection-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.selection-summary p {
  color: var(--muted);
  font-size: 13px;
}

.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.selected-tags b {
  display: inline-block;
  padding: 4px 10px;
  color: var(--rose-dark);
  background: var(--rose-pale);
  font-size: 12px;
  font-weight: 700;
}

.radar-submit {
  min-width: 132px;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.recommend-panel {
  background: #fff;
}

.refresh-list {
  min-width: 86px;
  min-height: 34px;
  color: var(--rose-dark);
}

.recommend-list {
  padding: 8px 28px 22px;
}

.recommend-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid #eadfe2;
}

.recommend-list article:last-child {
  border-bottom: 0;
}

.mini-cover,
.chart-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f7eff1;
}

.mini-cover {
  width: 58px;
  height: 76px;
}

.mini-cover img,
.chart-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.recommend-list strong,
.recommend-list span {
  display: block;
}

.recommend-list strong {
  font-size: 14px;
}

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

.entry-state {
  color: var(--rose-dark) !important;
  font-weight: 800;
}

.charts-section {
  background: #fff;
}

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

.chart-column {
  border: 1px solid var(--line);
  background: var(--paper);
}

.chart-title {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  color: #fff;
  background: var(--espresso);
}

.chart-title h3 {
  font-size: 21px;
}

.chart-title span {
  color: #ffc1d4;
  font-size: 12px;
  letter-spacing: .12em;
}

.chart-column ol {
  padding: 9px 23px 20px;
}

.chart-column li {
  display: grid;
  grid-template-columns: 28px 58px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 14px 0;
  border-bottom: 1px solid #eadfe2;
}

.chart-column li:last-child {
  border-bottom: 0;
}

.chart-column li > b:first-child {
  color: var(--rose-dark);
  font-size: 19px;
  font-weight: 900;
}

.chart-cover {
  width: 58px;
  height: 76px;
}

.chart-column strong,
.chart-column small {
  display: block;
}

.chart-column strong {
  font-size: 14px;
}

.chart-column small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.screens-section {
  color: #fff;
  background: var(--espresso);
}

.screens-section .heading-row > p {
  color: #cdbbc0;
}

.screens-section .section-index {
  color: #ff799f;
}

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

.screen-card {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}

.screen-viewport {
  display: flex;
  width: 100%;
  aspect-ratio: 9 / 16;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f6eeee;
}

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

.screen-card figcaption {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 13px;
  padding: 16px 17px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.screen-card figcaption span {
  color: var(--rose-dark);
  font-size: 12px;
}

.faq-section {
  background: var(--cream);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  padding: 0 25px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-question > span {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.faq-question b {
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
}

.faq-question > span {
  font-size: 16px;
  font-weight: 800;
}

.faq-question > i {
  font-size: 25px;
  font-style: normal;
  text-align: right;
}

.faq-question > i::before {
  content: "+";
}

.faq-question[aria-expanded="true"] > i::before {
  content: "−";
}

.faq-answer {
  padding: 0 69px 22px 89px;
  color: var(--muted);
  font-size: 14px;
}

.official-entry {
  width: 100%;
  margin-top: 26px;
  background: #fff;
  border: 1px solid var(--ink);
}

.official-entry summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.official-entry summary::-webkit-details-marker {
  display: none;
}

.official-entry summary::after {
  display: none;
}

.entry-state {
  width: auto;
  height: auto;
  margin-left: auto;
  background: none;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}

.entry-state::before {
  content: "+";
}

.official-entry[open] .entry-state::before {
  content: "−";
}

.official-content {
  padding: 0 58px 24px;
}

.official-content a {
  color: var(--rose-dark);
  font-size: 14px;
  font-weight: 700;
}

.voices-section {
  background: #f6e9ed;
}

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

.voice-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border-top: 4px solid var(--rose);
}

.voice-card:nth-child(even) {
  border-top-color: var(--espresso);
}

.voice-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 92px;
}

.voice-user {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.voice-user i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background-color: var(--rose-pale);
  border-radius: 50%;
  background-size: 21px;
}

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

.voice-rating {
  position: absolute;
  top: 29px;
  right: 24px;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.voice-rating i {
  color: var(--rose);
  font-style: normal;
}

.voice-card > p {
  margin-top: 23px;
  padding-top: 19px;
  color: #4d3c41;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.voice-card time {
  margin-top: auto;
  padding-top: 16px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.download-section {
  position: relative;
  padding: 78px 0;
  overflow: hidden;
  background: var(--rose);
}

.download-section::before,
.download-section::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  content: "";
}

.download-section::before {
  top: -110px;
  left: -70px;
  width: 290px;
  height: 290px;
}

.download-section::after {
  right: -80px;
  bottom: -180px;
  width: 380px;
  height: 380px;
}

.download-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: stretch;
}

.download-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--espresso);
}

.download-label strong {
  font-size: 48px;
  line-height: 1;
}

.download-label > span {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.download-label small {
  margin-top: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.download-station {
  display: grid;
  min-height: 176px;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  background: var(--cream);
  border: 1px solid rgba(38, 20, 25, .35);
}

.download-copy {
  padding: 32px 40px;
}

.download-copy > p:first-child {
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.download-copy h2 {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.3;
}

.download-copy > span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.download-action {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  background: var(--rose-dark);
  font-size: 18px;
  font-weight: 900;
}

.download-action i {
  filter: brightness(0) invert(1);
}

.site-footer {
  color: #fff;
  background: var(--espresso);
}

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

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.footer-brand .brand-text span {
  color: #baa8ad;
}

.footer-nav ul {
  gap: 28px;
}

.footer-nav a {
  font-size: 13px;
}

.footer-nav a:hover {
  color: #ff799f;
}

.footer-copyright {
  margin-top: 25px;
  padding-top: 16px;
  color: #baa8ad;
  border-top: 1px solid rgba(255, 255, 255, .22);
  text-align: center;
}

.footer-copyright p {
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 990;
  right: 26px;
  bottom: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  background: var(--rose);
  border: 1px solid var(--espresso);
  cursor: pointer;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top i {
  width: 22px;
  height: 22px;
  background: url("../images/top.png") center / contain no-repeat;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .main-nav ul {
    display: block;
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid #eadfe2;
  }

  .main-nav a::after {
    display: none;
  }

  .mobile-controls {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 38px;
  }

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

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

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

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-top: var(--header-height);
  }

  .container,
  .topbar-inner,
  .hero-inner,
  .footer-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar {
    height: var(--header-height);
    transform: none;
    will-change: auto;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text span {
    display: block;
    max-width: none;
    overflow: visible;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: clip;
  }

  .mobile-get {
    min-height: 38px;
    padding: 0 12px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 65px 0 72px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 78px);
    white-space: normal;
  }

  .hero h2 {
    font-size: 26px;
  }

  .hero-summary {
    margin-inline: auto;
    font-size: 14px;
  }

  .hero-features {
    justify-content: center;
    gap: 12px 18px;
  }

  .hero-action {
    min-width: 180px;
  }

  .age-label {
    text-align: center;
  }

  .phone-stage {
    justify-content: center;
  }

  .phone-frame {
    width: min(320px, calc(100vw - 44px));
    height: 575px;
    box-shadow: 12px 14px 0 rgba(232, 63, 115, .25);
  }

  .section {
    padding: 70px 0;
  }

  .heading-row {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .heading-row > p {
    margin-top: 13px;
    text-align: left;
  }

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

  .preference-panel {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .genre-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .selection-summary {
    grid-template-columns: 1fr;
  }

  .radar-submit {
    width: 100%;
  }

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

  .screen-card figcaption {
    min-height: 58px;
    gap: 8px;
    padding: 12px 10px;
    font-size: 12px;
  }

  .faq-question {
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 8px;
    padding: 0 14px;
  }

  .faq-question > span {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 44px 20px 52px;
    font-size: 13px;
  }

  .official-entry summary {
    min-height: 64px;
    padding: 0 16px;
    font-size: 14px;
  }

  .official-content {
    padding: 0 50px 20px;
  }

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

  .voice-card {
    min-height: 245px;
  }

  .download-section {
    padding: 54px 0;
  }

  .download-shell,
  .download-station {
    grid-template-columns: 1fr;
  }

  .download-label {
    min-height: 88px;
    flex-direction: row;
    gap: 12px;
  }

  .download-label strong {
    font-size: 35px;
  }

  .download-label > span {
    font-size: 35px;
  }

  .download-label small {
    margin-top: 0;
  }

  .download-copy {
    padding: 27px 22px;
    text-align: center;
  }

  .download-copy h2 {
    font-size: 23px;
  }

  .download-action {
    min-height: 60px;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    font-size: 14px;
  }

  .brand-text span {
    font-size: 12px;
  }

  .mobile-get {
    padding: 0 10px;
  }

  .hero-features span {
    font-size: 12px;
  }

  .phone-frame {
    height: 550px;
  }

  .phone-comics img {
    height: 89px;
  }

  .panel-heading,
  .preference-body,
  .recommend-list {
    padding-inline: 18px;
  }

  .chart-column ol {
    padding-inline: 14px;
  }

  .chart-column li {
    grid-template-columns: 24px 50px minmax(0, 1fr);
    gap: 8px;
  }

  .chart-cover {
    width: 50px;
    height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
