@charset "UTF-8";

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

:root {
  --brand: #e9582f;
  --brand-dark: #b8351e;
  --brand-soft: #f7d8cb;
  --ink: #181817;
  --muted: #706b66;
  --paper: #fffdf8;
  --paper-warm: #fbf2e8;
  --line: #ded3c8;
  --dark: #171c22;
  --white: #ffffff;
  --container: 1200px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

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;
}

body.nav-open {
  overflow: hidden;
}

a,
button,
summary,
input {
  font: inherit;
}

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

button,
summary {
  cursor: pointer;
}

button {
  color: inherit;
}

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

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

ul,
ol {
  list-style: none;
}

.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;
}

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

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

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

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

.brand > img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--white);
}

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

.brand-copy strong {
  font-family: SimHei, "Microsoft YaHei", sans-serif;
  font-size: 20px;
  white-space: nowrap;
}

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

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

.main-nav a {
  position: relative;
  display: block;
  padding: 25px 0 22px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--brand);
}

.main-nav a.is-active::after {
  background: var(--brand);
}

.mobile-actions {
  display: none;
}

.hero {
  overflow: hidden;
  background-color: var(--paper-warm);
  background-image: radial-gradient(circle, rgba(233, 88, 47, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  max-width: 680px;
  padding: 70px 0;
}

.eyebrow,
.section-index,
.download-copy > p {
  color: var(--brand);
  font-family: Consolas, Monaco, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  color: var(--brand);
  font-family: SimHei, "Microsoft YaHei", sans-serif;
  font-size: clamp(76px, 7.3vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero h2 {
  margin-top: 28px;
  font-size: 34px;
  line-height: 1.25;
}

.hero-description {
  max-width: 620px;
  margin-top: 20px;
  color: #514b46;
  font-size: 17px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-features li {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.hero-action {
  display: flex;
  width: max-content;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
}

.primary-link {
  display: inline-flex;
  min-width: 204px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--brand);
  border: 2px solid var(--brand);
  font-weight: 700;
  white-space: nowrap;
}

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

.age-label {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.phone-stage {
  display: flex;
  justify-content: flex-end;
  padding: 56px 0;
}

.phone-shell {
  width: 300px;
  padding: 13px;
  background: #111416;
  border: 1px solid #050505;
  border-radius: 38px;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 606px;
  padding: 18px 16px 0;
  background: var(--white);
  border-radius: 27px;
}

.phone-screen::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 82px;
  height: 20px;
  content: "";
  transform: translateX(-50%);
  background: #101214;
  border-radius: 12px;
}

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

.phone-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.phone-heading strong {
  font-size: 22px;
}

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

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

.phone-tabs button {
  padding: 9px 3px;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 12px;
}

.phone-tabs button.is-selected {
  color: var(--brand);
  border-bottom-color: var(--brand);
  font-weight: 700;
}

.phone-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 10px;
}

.phone-result-head strong {
  font-size: 14px;
}

.phone-result-head span {
  color: var(--muted);
  font-size: 12px;
}

.phone-results {
  display: grid;
  gap: 10px;
}

.phone-comic {
  display: grid;
  min-height: 84px;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  padding-bottom: 10px;
  gap: 10px;
  border-bottom: 1px solid #eee8e2;
}

.phone-cover {
  display: block;
  width: 52px;
  height: 72px;
  background: var(--paper-warm);
  border: 1px solid #eee1d5;
}

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

.phone-comic-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.phone-comic-copy strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-comic-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.phone-comic button {
  padding: 6px 8px;
  color: var(--brand);
  background: var(--white);
  border: 1px solid var(--brand-soft);
  font-size: 12px;
}

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 64px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.phone-nav li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  color: #817d79;
  font-size: 12px;
}

.phone-nav li.is-current {
  color: var(--brand);
}

.section {
  padding: 104px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 40px;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: 48px;
  line-height: 1.15;
}

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

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

.route-console {
  border: 1px solid var(--line);
}

.route-search {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  min-height: 76px;
  padding-left: 26px;
  background: var(--white);
}

.route-search input {
  width: 100%;
  height: 74px;
  padding: 0 18px;
  background: transparent;
  border: 0;
  outline: 0;
}

.route-search button {
  align-self: stretch;
  min-width: 170px;
  color: var(--white);
  background: var(--brand);
  border: 0;
  font-weight: 700;
}

.filter-row {
  display: flex;
  align-items: center;
  padding: 24px 26px;
  gap: 26px;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}

.filter-row > strong {
  font-size: 14px;
  white-space: nowrap;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-buttons button {
  min-width: 74px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 13px;
}

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

.route-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.route-steps li {
  display: grid;
  min-height: 150px;
  grid-template-columns: 42px 1fr;
  align-content: center;
  padding: 28px;
  gap: 15px;
  border-right: 1px solid var(--line);
}

.route-steps li:last-child {
  border-right: 0;
}

.route-steps li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.route-steps strong {
  font-size: 16px;
}

.route-steps p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.shelf-section {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shelf-board {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 16px;
}

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

.shelf-column.is-featured {
  border-top: 5px solid var(--brand);
}

.shelf-column header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.shelf-column h3 {
  font-size: 22px;
}

.shelf-column header span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

.shelf-column li {
  display: grid;
  min-height: 98px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  padding: 18px 24px;
  column-gap: 14px;
  border-bottom: 1px solid #eee7e0;
}

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

.shelf-column li strong {
  font-size: 15px;
}

.shelf-column li span {
  grid-column: 1;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.shelf-column li button {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  padding: 8px 10px;
  color: var(--brand);
  background: transparent;
  border: 1px solid var(--brand-soft);
  font-size: 12px;
}

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

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

.screens-grid figure {
  overflow: hidden;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.screen-viewport {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #f8f5f1;
}

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

.screens-grid figcaption {
  display: grid;
  min-height: 92px;
  grid-template-columns: 36px 1fr;
  align-content: center;
  padding: 18px;
  column-gap: 8px;
  border-top: 1px solid var(--line);
}

.screens-grid figcaption > span {
  grid-row: 1 / span 2;
  color: var(--brand);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.screens-grid figcaption strong {
  font-size: 16px;
}

.screens-grid figcaption small {
  color: var(--muted);
  font-size: 12px;
}

.help-section {
  background: #f6f3ee;
  border-top: 1px solid var(--line);
}

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

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

.faq-item summary {
  display: grid;
  min-height: 78px;
  grid-template-columns: 48px 1fr 26px;
  align-items: center;
  padding: 0 24px;
  list-style: none;
}

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

.faq-item summary > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

.faq-item summary > strong {
  font-size: 16px;
}

.faq-item summary > i,
.official-state {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}

.faq-item summary > i::before,
.faq-item summary > i::after,
.official-state::before,
.official-state::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-item summary > i::after,
.official-state::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary > i::after,
.official-site[open] .official-state::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item > p {
  padding: 0 72px 24px;
  color: var(--muted);
  font-size: 14px;
}

.official-site {
  width: 100%;
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--ink);
}

.official-site summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  list-style: none;
}

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

.official-site summary strong {
  font-size: 16px;
}

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

.official-answer a {
  color: var(--brand);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reviews-section {
  background: #fbeae2;
  border-top: 1px solid var(--line);
}

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

.review-card {
  display: flex;
  min-height: 256px;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border-top: 4px solid var(--brand);
}

.review-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  gap: 12px;
}

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

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

.review-rating {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2px;
  color: var(--brand);
  font-size: 13px;
}

.aiarticle-comment-rating-icon {
  font-style: normal;
}

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

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

.review-card > p {
  flex: 1;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.review-card time {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.download-section {
  padding: 58px 0;
  color: var(--white);
  background: var(--dark);
}

.download-inner {
  display: grid;
  min-height: 164px;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  align-items: stretch;
  border: 1px solid #4b4f53;
}

.download-index {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

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

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

.download-copy > span {
  margin-top: 8px;
  color: #c7c9cb;
  font-size: 13px;
}

.download-link {
  display: inline-flex;
  min-width: 210px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--brand);
  background: var(--paper);
  border-left: 1px solid #4b4f53;
  font-weight: 700;
  white-space: nowrap;
}

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

.site-footer {
  color: var(--white);
  background: #111519;
}

.footer-main {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand .brand-copy span {
  color: #aeb4b8;
}

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

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

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

.copyright {
  padding: 19px 0 24px;
  color: #aeb4b8;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  text-align: center;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 26px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border: 1px solid var(--brand);
  opacity: 0;
  pointer-events: none;
}

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

.back-top:hover,
.back-top:focus-visible {
  color: var(--brand);
  background: var(--white);
}

.icon-menu,
.icon-search,
.icon-filter,
.icon-book,
.icon-download,
.icon-globe,
.icon-avatar,
.icon-top {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  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-filter {
  background-image: url("../icons/filter.svg");
}

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

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

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

.icon-avatar {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  background-image: url("../icons/avatar.svg");
}

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

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

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

.download-link .icon-download {
  filter: none;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(233, 88, 47, 0.35);
  outline-offset: 3px;
}

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

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

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

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

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

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

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

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

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

  html {
    scroll-padding-top: calc(var(--header-height) + 12px);
  }

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

  a,
  button,
  summary {
    -webkit-tap-highlight-color: transparent;
    transition: none !important;
    animation: none !important;
  }

  .site-header {
    height: var(--header-height);
    background: var(--paper);
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand {
    gap: 7px;
  }

  .brand > img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 7px;
  }

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

  .brand-copy span {
    margin-top: 1px;
    font-size: 12px;
  }

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

  .mobile-download {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--white);
    background: var(--brand);
    border: 1px solid var(--brand);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }

  .menu-toggle {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    background: var(--paper);
    border: 1px solid var(--ink);
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
  }

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

  .main-nav ul {
    display: block;
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 10px 0 16px;
  }

  .main-nav li {
    border-bottom: 1px solid var(--line);
  }

  .main-nav a {
    padding: 13px 4px;
  }

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

  .hero-inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 0;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding: 64px 0 34px;
    text-align: center;
  }

  .hero h1 {
    margin-top: 12px;
    font-size: clamp(52px, 17vw, 72px);
    white-space: normal;
  }

  .hero h2 {
    margin-top: 20px;
    font-size: 27px;
  }

  .hero-description {
    margin: 16px auto 0;
    font-size: 15px;
  }

  .hero-features {
    justify-content: center;
    margin-top: 24px;
  }

  .hero-features li {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero-action {
    align-items: center;
    margin: 26px auto 0;
  }

  .phone-stage {
    width: 100%;
    justify-content: center;
    padding: 18px 0 54px;
  }

  .phone-shell {
    width: min(286px, 88vw);
  }

  .phone-screen {
    min-height: 578px;
  }

  .section {
    padding: 76px 0;
  }

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

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

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

  .route-search {
    grid-template-columns: 20px 1fr;
    padding: 0 16px;
  }

  .route-search button {
    grid-column: 1 / -1;
    min-height: 52px;
    margin: 0 -16px;
  }

  .filter-row {
    display: block;
    padding: 20px 16px;
  }

  .filter-buttons {
    margin-top: 12px;
  }

  .filter-buttons button {
    min-width: 0;
    flex: 1 0 calc(33.333% - 10px);
  }

  .route-steps {
    grid-template-columns: 1fr;
  }

  .route-steps li {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route-steps li:last-child {
    border-bottom: 0;
  }

  .shelf-column header {
    padding: 0 18px;
  }

  .shelf-column li {
    padding: 16px 18px;
  }

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

  .screens-grid figcaption {
    min-height: 86px;
    grid-template-columns: 28px 1fr;
    padding: 12px 10px;
    column-gap: 4px;
  }

  .screens-grid figcaption > span {
    font-size: 16px;
  }

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

  .screens-grid figcaption small {
    font-size: 12px;
    line-height: 1.4;
  }

  .faq-item summary {
    min-height: 72px;
    grid-template-columns: 36px 1fr 22px;
    padding: 0 14px;
    gap: 4px;
  }

  .faq-item summary > strong,
  .official-site summary strong {
    font-size: 14px;
  }

  .faq-item > p {
    padding: 0 50px 20px;
    font-size: 13px;
  }

  .official-site summary {
    min-height: 70px;
    padding: 0 14px;
  }

  .official-answer {
    padding: 0 46px 22px;
  }

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

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

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

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

  .download-index {
    grid-row: 1 / span 2;
    font-size: 24px;
  }

  .download-copy {
    padding: 25px 18px;
  }

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

  .download-link {
    grid-column: 2;
    min-width: 0;
    min-height: 58px;
    color: var(--white);
    background: var(--brand);
    border-top: 1px solid #4b4f53;
    border-left: 0;
  }

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

  .footer-main {
    flex-direction: column;
    justify-content: center;
    padding: 34px 0 28px;
    text-align: center;
  }

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

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

@media (max-width: 390px) {
  .brand > img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

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

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

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

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

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

  .hero-features {
    gap: 8px;
  }

  .hero-features li {
    padding: 0 9px;
  }

  .screens-grid figcaption strong {
    font-size: 12px;
  }

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