@charset "UTF-8";

/* 作者：搭客佬
   链接： */

:root {
  --paper: #fff9f5;
  --paper-deep: #f8eee9;
  --rose-soft: #f5c5d4;
  --pink: #e86a97;
  --berry: #b9285e;
  --plum: #24141e;
  --plum-soft: #3a2531;
  --mint: #a8ddd5;
  --ink: #221820;
  --muted: #74666f;
  --line: #dcc9d2;
  --white: #ffffff;
  --header-height: 78px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  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;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: none;
}

button {
  color: inherit;
}

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

ul,
ol {
  padding: 0;
  list-style: none;
}

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

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

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-menu {
  background-image: url("../icons/menu.svg");
}

.icon-search {
  background-image: url("../icons/search.svg");
}

.icon-rank {
  background-image: url("../icons/rank.svg");
}

.icon-bookmark {
  background-image: url("../icons/bookmark.svg");
}

.icon-download {
  background-image: url("../icons/download.svg");
}

.icon-star {
  background-image: url("../icons/star.svg");
}

.icon-globe {
  background-image: url("../icons/globe.svg");
}

.icon-avatar {
  background-image: url("../icons/avatar.svg");
}

.icon-arrow {
  background-image: url("../icons/arrow.svg");
}

.icon-up {
  background-image: url("../icons/up.svg");
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 249, 245, 0.98);
  border-bottom: 1px solid var(--plum);
  transform: translateZ(0);
  backface-visibility: hidden;
  overflow: visible;
}

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

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

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  object-fit: contain;
  background: var(--rose-soft);
}

.brand-copy,
.footer-brand > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-copy span,
.footer-brand span span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.site-nav {
  height: 100%;
}

.site-nav ul {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 36px;
}

.site-nav li,
.site-nav a {
  height: 100%;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
}

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

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

.mobile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--berry);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--plum);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 690px;
  background:
    linear-gradient(rgba(232, 106, 151, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 106, 151, 0.07) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  border-bottom: 1px solid var(--plum);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100vw - min(100vw, var(--container))) / 2 + 490px);
  height: 100%;
  background:
    radial-gradient(circle, rgba(232, 106, 151, 0.45) 1.5px, transparent 1.7px),
    var(--plum);
  background-size: 12px 12px;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1fr) 490px;
}

.hero-copy {
  display: flex;
  max-width: 670px;
  padding: 86px 56px 72px 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow,
.section-index {
  display: inline-flex;
  align-items: center;
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.section-index::before {
  width: 24px;
  height: 3px;
  margin-right: 10px;
  background: var(--pink);
  content: "";
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(72px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.hero h2 {
  margin-top: 34px;
  font-size: 32px;
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.hero-description {
  max-width: 610px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
}

.hero-points {
  display: flex;
  width: 100%;
  margin-top: 26px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 36px;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-points .icon {
  width: 18px;
  height: 18px;
}

.primary-link {
  display: inline-flex;
  min-width: 220px;
  min-height: 58px;
  margin-top: 30px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--white);
  background: var(--berry);
  border: 2px solid var(--berry);
  box-shadow: 7px 7px 0 var(--rose-soft);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.primary-link:hover,
.primary-link:focus-visible {
  color: var(--berry);
  background: var(--white);
}

.age-label {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 84px;
  right: -10px;
  width: 388px;
  height: 520px;
  border: 1px solid rgba(245, 197, 212, 0.45);
  content: "";
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  border: 65px solid rgba(232, 106, 151, 0.18);
  border-radius: 50%;
  content: "";
}

.issue-number {
  position: absolute;
  top: 34px;
  right: -2px;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 78px;
  font-weight: 700;
  line-height: 1;
}

.crop-mark {
  position: absolute;
  width: 36px;
  height: 36px;
}

.crop-mark::before,
.crop-mark::after {
  position: absolute;
  background: var(--pink);
  content: "";
}

.crop-mark::before {
  top: 17px;
  left: 0;
  width: 36px;
  height: 1px;
}

.crop-mark::after {
  top: 0;
  left: 17px;
  width: 1px;
  height: 36px;
}

.crop-mark-top {
  top: 52px;
  left: 26px;
}

.crop-mark-bottom {
  right: 22px;
  bottom: 44px;
}

.phone-shell {
  position: relative;
  width: 310px;
  margin-right: 26px;
  padding: 15px;
  background: #151116;
  border: 2px solid #030203;
  border-radius: 43px;
  box-shadow: 20px 24px 0 rgba(245, 197, 212, 0.28);
}

.phone-shell::before {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 96px;
  height: 25px;
  background: #0b090b;
  border-radius: 0 0 16px 16px;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 590px;
  padding: 16px 15px 55px;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
}

.phone-status,
.phone-title-row,
.phone-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status {
  padding: 0 4px;
  color: #151116;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.status-symbols {
  font-size: 12px;
  letter-spacing: 1px;
}

.phone-title-row {
  margin-top: 23px;
}

.phone-title-row strong {
  color: var(--pink);
  font-size: 24px;
  line-height: 1;
}

.phone-title-row .icon,
.phone-search .icon {
  width: 18px;
  height: 18px;
}

.phone-search {
  display: flex;
  height: 42px;
  margin-top: 14px;
  padding: 0 13px;
  align-items: center;
  gap: 8px;
  color: #90858c;
  background: #f4eff1;
  border-radius: 22px;
  font-size: 12px;
}

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

.phone-tabs li {
  position: relative;
  padding: 8px 0 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.phone-tabs li.is-current {
  color: var(--pink);
}

.phone-tabs li.is-current::after {
  position: absolute;
  right: 11px;
  bottom: -1px;
  left: 11px;
  height: 2px;
  background: var(--pink);
  content: "";
}

.phone-feature {
  display: flex;
  height: 128px;
  margin-top: 12px;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 20, 30, 0.98) 0 54%, transparent 54%),
    linear-gradient(135deg, var(--pink) 0 68%, var(--mint) 68%);
  border-radius: 12px;
}

.phone-feature span,
.phone-feature small {
  font-size: 12px;
}

.phone-feature strong {
  margin: 3px 0;
  font-size: 20px;
  line-height: 1.15;
}

.phone-list-title {
  margin-top: 15px;
  font-size: 12px;
}

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

.phone-list-title span {
  color: var(--muted);
}

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

.phone-comics article {
  min-width: 0;
}

.phone-comics img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--paper-deep);
  border-radius: 7px;
}

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

.phone-comics strong {
  font-size: 12px;
  line-height: 1.2;
}

.phone-comics span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.phone-bottom-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 48px;
  align-items: center;
  background: var(--white);
  border-top: 1px solid #ece4e7;
  grid-template-columns: repeat(4, 1fr);
}

.phone-bottom-nav li {
  color: #8b8187;
  text-align: center;
  font-size: 12px;
}

.phone-bottom-nav li.is-current {
  color: var(--pink);
  font-weight: 800;
}

.section {
  padding: 100px 0;
}

.section-heading {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  align-items: end;
  column-gap: 48px;
}

.section-heading .section-index {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-heading p {
  color: var(--muted);
  font-size: 15px;
}

.search-studio {
  background: var(--paper-deep);
}

.search-console {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--plum);
  box-shadow: 10px 10px 0 var(--rose-soft);
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  border: 1px solid var(--line);
}

.search-field {
  display: flex;
  min-width: 0;
  height: 56px;
  padding: 0 18px;
  align-items: center;
  gap: 12px;
}

.search-field input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
}

.search-field input::placeholder {
  color: #9a8d94;
}

.search-form > button {
  color: var(--white);
  background: var(--berry);
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.filter-bar {
  display: flex;
  margin-top: 18px;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-bar button,
.filter-summary button {
  min-height: 38px;
  padding: 0 15px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
}

.filter-bar button:hover,
.filter-bar button:focus-visible,
.filter-bar button.is-selected {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.search-results-layout {
  display: grid;
  margin-top: 24px;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 20px;
}

.result-board,
.filter-summary {
  border: 1px solid var(--line);
}

.board-head,
.result-list li {
  display: grid;
  grid-template-columns: 70px minmax(150px, 1fr) minmax(150px, 0.8fr) 100px;
  align-items: center;
}

.board-head {
  padding: 12px 18px;
  color: var(--muted);
  background: var(--paper-deep);
  font-size: 12px;
  font-weight: 700;
}

.result-list li {
  min-height: 58px;
  padding: 10px 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.result-list li > span:first-child {
  color: var(--pink);
  font-weight: 800;
}

.result-list em {
  color: var(--berry);
  font-style: normal;
  text-align: right;
}

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

.empty-result {
  padding: 28px 18px;
  color: var(--muted);
  font-size: 13px;
}

.filter-summary {
  display: flex;
  padding: 24px;
  flex-direction: column;
  background: var(--plum);
  color: var(--white);
}

.summary-label {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.filter-summary > strong {
  margin-top: 8px;
  font-size: 24px;
}

.filter-summary dl {
  margin-top: 22px;
}

.filter-summary dl div {
  display: flex;
  padding: 10px 0;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
}

.filter-summary dt {
  color: #baaeb5;
}

.filter-summary dd {
  margin: 0;
}

.filter-summary button {
  margin-top: auto;
  color: var(--mint);
  border-color: var(--mint);
}

.ranking {
  color: var(--white);
  background:
    radial-gradient(circle, rgba(232, 106, 151, 0.17) 1.5px, transparent 1.7px),
    var(--plum);
  background-size: 14px 14px;
}

.section-heading-light .section-index,
.section-heading-light p {
  color: var(--rose-soft);
}

.ranking-board {
  display: grid;
  background: var(--paper);
  border: 1px solid var(--rose-soft);
  grid-template-columns: repeat(3, 1fr);
}

.rank-column {
  padding: 30px;
  color: var(--ink);
}

.rank-column + .rank-column {
  border-left: 1px solid var(--line);
}

.rank-column h3 {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 9px;
  color: var(--berry);
  font-size: 20px;
}

.rank-new h3 {
  color: #368e82;
}

.rank-finish h3 {
  color: var(--plum);
}

.rank-column li {
  position: relative;
  display: grid;
  min-height: 48px;
  padding: 12px 0;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  border-top: 1px solid var(--line);
  gap: 8px;
  font-size: 13px;
}

.rank-column li::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: var(--rank-width, 70%);
  height: 2px;
  background: var(--pink);
  content: "";
}

.rank-new li::after {
  background: var(--mint);
}

.rank-finish li::after {
  background: var(--plum);
}

.rank-column li:nth-child(2)::after {
  --rank-width: 62%;
}

.rank-column li:nth-child(3)::after {
  --rank-width: 52%;
}

.rank-column li:nth-child(4)::after {
  --rank-width: 44%;
}

.rank-column li:nth-child(5)::after {
  --rank-width: 36%;
}

.rank-column li > span {
  color: var(--pink);
  font-weight: 800;
}

.rank-column em {
  color: var(--muted);
  font-style: normal;
}

.screens {
  background: var(--paper);
}

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

.screen-grid figure {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--plum);
}

.screen-window {
  display: flex;
  width: 100%;
  aspect-ratio: 9 / 16;
  align-items: center;
  justify-content: center;
  background: var(--white);
  overflow: hidden;
}

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

.screen-grid figcaption {
  display: flex;
  min-height: 78px;
  padding: 0 20px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--plum);
}

.screen-grid figcaption span {
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
}

.screen-grid figcaption strong {
  font-size: 17px;
}

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

.faq-list,
.official-site {
  border-top: 1px solid var(--plum);
}

.faq-item,
.official-site {
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.faq-item > button,
.official-site > button {
  display: flex;
  width: 100%;
  min-height: 76px;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-item > button > span {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 700;
}

.faq-item > button b {
  color: var(--pink);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.faq-item > button > i,
.official-symbol {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.faq-item > button > i::before,
.faq-item > button > i::after,
.official-symbol::before,
.official-symbol::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 1px;
  background: var(--plum);
  content: "";
}

.faq-item > button > i::after,
.official-symbol::after {
  transform: rotate(90deg);
}

.faq-item.is-open > button > i::after,
.official-site.is-open .official-symbol::after {
  transform: rotate(0);
}

.faq-answer,
.official-answer {
  padding: 0 24px 22px 88px;
}

.faq-answer p,
.official-answer a {
  color: var(--muted);
  font-size: 14px;
}

.official-site {
  width: 100%;
  max-width: var(--container);
  margin-top: 28px;
  border-top: 1px solid var(--plum);
}

.official-site > button span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.official-site .icon {
  width: 21px;
  height: 21px;
}

.official-answer {
  padding-left: 58px;
}

.official-answer a {
  color: var(--berry);
  overflow-wrap: anywhere;
}

.reviews {
  background: var(--paper);
}

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

.review-card {
  display: flex;
  min-width: 0;
  min-height: 270px;
  padding: 26px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--pink);
}

.review-card:nth-child(3n + 2) {
  border-top-color: var(--plum);
}

.review-card:nth-child(3n) {
  border-top-color: var(--mint);
}

.review-head,
.review-user {
  display: flex;
  align-items: center;
}

.review-head {
  min-width: 0;
  justify-content: space-between;
  gap: 12px;
}

.review-user {
  min-width: 0;
  gap: 10px;
}

.review-user .icon-avatar {
  width: 40px;
  height: 40px;
  padding: 9px;
  background-color: var(--paper-deep);
  background-size: 22px 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.review-user strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--pink);
  white-space: nowrap;
}

.aiarticle-comment-rating-icon {
  margin-left: 2px;
  color: var(--pink);
  font-size: 13px;
  font-style: normal;
}

.fa-star::before {
  content: "★";
}

.fa-star-o::before {
  content: "☆";
}

.review-card > p {
  margin-top: 22px;
  padding-top: 20px;
  color: #473a42;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.9;
}

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

.download-section {
  padding: 34px 0 80px;
  background: var(--paper);
}

.download-dock {
  display: grid;
  min-height: 220px;
  color: var(--white);
  background:
    radial-gradient(circle, rgba(245, 197, 212, 0.22) 1.5px, transparent 1.7px),
    var(--plum);
  background-size: 14px 14px;
  border: 1px solid var(--plum);
  grid-template-columns: 132px minmax(0, 1fr) 260px;
  align-items: stretch;
}

.bookmark-tab {
  position: relative;
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  background: var(--pink);
}

.bookmark-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-right: 66px solid transparent;
  border-bottom: 34px solid var(--plum);
  border-left: 66px solid transparent;
  content: "";
}

.bookmark-tab .icon {
  width: 38px;
  height: 38px;
  filter: brightness(0) invert(1);
}

.download-copy {
  display: flex;
  padding: 38px 48px;
  flex-direction: column;
  justify-content: center;
}

.download-copy .section-index {
  color: var(--rose-soft);
}

.download-copy h2 {
  margin-top: 10px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.download-copy p {
  max-width: 570px;
  margin-top: 12px;
  color: #d6c9d0;
  font-size: 14px;
}

.download-link {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  background: var(--berry);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.download-link:hover,
.download-link:focus-visible {
  color: var(--berry);
  background: var(--mint);
}

.download-link .icon {
  filter: brightness(0) invert(1);
}

.download-link:hover .icon,
.download-link:focus-visible .icon {
  filter: none;
}

.site-footer {
  padding: 44px 0 26px;
  color: var(--white);
  background: var(--plum);
  border-top: 1px solid var(--white);
}

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

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

.footer-brand span span {
  color: #cbbdc5;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
}

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

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--pink);
}

.copyright {
  width: min(calc(100% - 48px), var(--container));
  margin: 34px auto 0;
  padding-top: 22px;
  color: #bcaeb6;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  text-align: center;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 50px;
  height: 50px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--berry);
  border: 2px solid var(--white);
  box-shadow: 4px 4px 0 var(--plum);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

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

.back-to-top .icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 1100px) {
  .site-nav ul {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
  }

  .hero::before {
    width: calc((100vw - min(100vw, var(--container))) / 2 + 420px);
  }

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

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

  .phone-shell {
    width: 292px;
    margin-right: 14px;
  }

  .download-dock {
    grid-template-columns: 110px minmax(0, 1fr) 220px;
  }

  .download-copy {
    padding-right: 32px;
    padding-left: 32px;
  }
}

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

  body {
    font-size: 15px;
  }

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

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

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

  .mobile-actions {
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    left: 0;
    height: auto;
    max-height: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--plum);
    overflow: hidden;
    visibility: hidden;
  }

  .site-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    visibility: visible;
    overflow-y: auto;
  }

  .site-nav ul {
    display: block;
    width: min(calc(100% - 28px), var(--container));
    height: auto;
    margin: 0 auto;
  }

  .site-nav li,
  .site-nav a {
    height: auto;
  }

  .site-nav a {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
  }

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

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

  .hero::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 650px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    max-width: none;
    padding: 68px 0 64px;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    margin-top: 12px;
    font-size: clamp(66px, 20vw, 96px);
    white-space: normal;
  }

  .hero h2 {
    margin-top: 24px;
    font-size: 28px;
  }

  .hero-description {
    max-width: 620px;
  }

  .hero-points {
    width: auto;
    justify-content: center;
    gap: 22px;
  }

  .hero-visual {
    min-height: 650px;
    justify-content: center;
  }

  .hero-visual::before {
    right: 50%;
    transform: translateX(50%);
  }

  .hero-visual::after {
    right: 50%;
    transform: translateX(72%);
  }

  .issue-number {
    right: 20px;
  }

  .phone-shell {
    margin-right: 0;
  }

  .section {
    padding: 76px 0;
  }

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

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

  .section-heading p {
    max-width: 620px;
    margin-top: 14px;
  }

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

  .filter-summary button {
    margin-top: 18px;
  }

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

  .rank-column + .rank-column {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .download-dock {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .bookmark-tab {
    grid-row: 1 / 3;
  }

  .bookmark-tab::after {
    border-right-width: 46px;
    border-left-width: 46px;
  }

  .download-link {
    min-height: 74px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .header-inner {
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

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

  .brand-copy span {
    display: block;
    max-width: 128px;
    font-size: 12px;
  }

  .mobile-download {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

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

  .hero-copy {
    padding: 54px 0 52px;
  }

  .eyebrow::before,
  .section-index::before {
    width: 18px;
  }

  .hero h1 {
    font-size: clamp(58px, 20vw, 78px);
  }

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

  .hero-description {
    font-size: 14px;
  }

  .hero-points {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .hero-points li {
    justify-content: center;
    gap: 5px;
    font-size: 12px;
  }

  .primary-link {
    min-width: 210px;
  }

  .hero::before,
  .hero-visual {
    height: 590px;
    min-height: 590px;
  }

  .hero-visual::before {
    top: 54px;
    width: 330px;
    height: 476px;
  }

  .phone-shell {
    width: min(286px, calc(100vw - 58px));
    padding: 12px;
    border-radius: 38px;
  }

  .phone-screen {
    height: 530px;
    border-radius: 27px;
  }

  .issue-number {
    top: 22px;
    right: 6px;
    font-size: 58px;
  }

  .section {
    padding: 62px 0;
  }

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

  .section-heading p {
    font-size: 14px;
  }

  .search-console {
    padding: 14px;
    box-shadow: 6px 6px 0 var(--rose-soft);
  }

  .search-form {
    grid-template-columns: minmax(0, 1fr) 76px;
  }

  .search-field {
    padding: 0 12px;
  }

  .search-field input {
    font-size: 12px;
  }

  .filter-bar {
    gap: 6px;
  }

  .filter-bar button {
    padding: 0 10px;
    font-size: 12px;
  }

  .board-head {
    display: none;
  }

  .result-list li {
    min-height: 76px;
    padding: 12px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 6px;
  }

  .result-list li > span:nth-child(3) {
    grid-column: 2 / 3;
    color: var(--muted);
    font-size: 12px;
  }

  .result-list em {
    grid-row: 1 / 3;
    grid-column: 3 / 4;
  }

  .rank-column {
    padding: 22px 18px;
  }

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

  .screen-grid figcaption {
    min-height: 62px;
    padding: 0 12px;
    gap: 7px;
  }

  .screen-grid figcaption strong {
    font-size: 14px;
  }

  .faq-item > button,
  .official-site > button {
    min-height: 70px;
    padding: 12px 16px;
  }

  .faq-item > button > span {
    gap: 12px;
    font-size: 14px;
  }

  .faq-answer,
  .official-answer {
    padding: 0 16px 20px 52px;
  }

  .official-site > button strong {
    font-size: 14px;
  }

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

  .review-card {
    min-height: 240px;
    padding: 22px;
  }

  .download-section {
    padding: 20px 0 62px;
  }

  .download-dock {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .bookmark-tab {
    min-height: 230px;
  }

  .bookmark-tab::after {
    border-right-width: 31px;
    border-bottom-width: 24px;
    border-left-width: 31px;
  }

  .download-copy {
    min-width: 0;
    padding: 30px 18px;
  }

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

  .download-copy p {
    font-size: 13px;
  }

  .download-link {
    min-height: 68px;
    font-size: 17px;
  }

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

  .footer-nav ul {
    justify-content: center;
    gap: 14px 20px;
  }

  .copyright {
    width: min(calc(100% - 28px), var(--container));
  }

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

@media (max-width: 390px) {
  .brand-copy span {
    max-width: 92px;
  }

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

  .hero-points .icon {
    display: none;
  }

  .screen-grid {
    gap: 8px;
  }

  .screen-grid figcaption {
    padding: 0 8px;
  }

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

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