@charset "UTF-8";

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

:root {
  --red: #ff2024;
  --red-dark: #d91419;
  --ink: #171717;
  --muted: #68635c;
  --paper: #fff9ef;
  --paper-deep: #f7eddd;
  --white: #ffffff;
  --pink: #ffe6e4;
  --yellow: #ffd751;
  --line: #1d1d1d;
  --soft-line: #dfd5c7;
  --header-height: 76px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

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

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

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

ul,
ol {
  list-style: none;
}

.container {
  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;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-menu { background-image: url("../icons/menu.svg"); }
.icon-grid { background-image: url("../icons/grid.svg"); }
.icon-chart { background-image: url("../icons/chart.svg"); }
.icon-bookmark { background-image: url("../icons/bookmark.svg"); }
.icon-download { background-image: url("../icons/download.svg"); }
.icon-download-white { background-image: url("../icons/download-white.svg"); }
.icon-mail { background-image: url("../icons/mail.svg"); }
.icon-lock { background-image: url("../icons/lock.svg"); }
.icon-eye { background-image: url("../icons/eye.svg"); }
.icon-user { background-image: url("../icons/user.svg"); }
.icon-search { background-image: url("../icons/search.svg"); }
.icon-arrow { background-image: url("../icons/arrow.svg"); }
.icon-globe { background-image: url("../icons/globe.svg"); }
.icon-avatar { background-image: url("../icons/avatar.svg"); }
.icon-top { background-image: url("../icons/top.svg"); }

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--container));
  height: 100%;
  margin: 0 auto;
}

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

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
}

.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: 19px;
  font-weight: 900;
  white-space: nowrap;
}

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

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

.site-nav a {
  position: relative;
  display: block;
  padding: 25px 0 23px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

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

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--red);
}

.site-nav a.is-active::after {
  opacity: 1;
}

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

.mobile-download {
  padding: 11px 16px;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

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

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(255, 32, 36, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
}

.hero::before {
  position: absolute;
  top: 110px;
  right: -90px;
  width: 380px;
  height: 250px;
  background: var(--red);
  content: "";
  transform: rotate(-7deg);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 80px;
  align-items: center;
  width: min(calc(100% - 48px), var(--container));
  min-height: 720px;
  margin: 0 auto;
  padding: 72px 0 62px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 22px;
  border-left: 3px solid var(--ink);
}

.hero-copy::before {
  position: absolute;
  top: 38px;
  left: -20px;
  width: 70px;
  height: 7px;
  background: var(--red);
  content: "";
  transform: rotate(-8deg);
}

.eyebrow,
.section-index,
.search-title span,
.ticket-copy > p {
  color: var(--red);
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(72px, 8vw, 118px);
  font-weight: 1000;
  letter-spacing: -7px;
  line-height: 0.98;
  white-space: nowrap;
}

.hero h2 {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 1000;
  line-height: 1.25;
}

.hero-intro {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 138px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 800;
}

.hero-download {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  margin-top: 30px;
}

.primary-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 220px;
  padding: 15px 30px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  font-size: 17px;
  font-weight: 900;
}

.primary-download:hover {
  color: var(--red);
  background: var(--white);
}

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

.update-date {
  color: var(--muted);
  font-size: 13px;
}

.phone-stage {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: 304px;
  height: 616px;
  padding: 14px;
  background: #101010;
  border: 1px solid #000;
  border-radius: 42px;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 18px 18px 20px;
  background: var(--white);
  border-radius: 30px;
}

.phone-screen::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 96px;
  height: 24px;
  background: #101010;
  border-radius: 0 0 16px 16px;
  content: "";
  transform: translateX(-50%);
}

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

.phone-signals {
  letter-spacing: 3px;
}

.auth-brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
}

.auth-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
}

.auth-brand strong {
  font-size: 18px;
}

.auth-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
}

.auth-heading strong {
  font-size: 24px;
  line-height: 1.25;
}

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

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

.auth-tabs button {
  position: relative;
  padding: 9px 5px;
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.auth-tabs button.is-active {
  color: var(--red);
}

.auth-tabs button.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
}

.auth-panel {
  display: none;
  padding-top: 10px;
}

.auth-panel.is-active {
  display: block;
}

.phone-field {
  display: block;
  margin-bottom: 8px;
}

.phone-field > span:first-child {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 800;
}

.field-box {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 11px;
  background: #f7f7f7;
  border: 1px solid #dedede;
}

.field-box .icon {
  width: 16px;
  height: 16px;
}

.field-box input {
  min-width: 0;
  flex: 1;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 12px;
}

.password-toggle {
  display: grid;
  padding: 2px;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 7px 0 12px;
  font-size: 12px;
}

.auth-options label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.auth-options input {
  accent-color: var(--red);
}

.auth-options button {
  padding: 0;
  color: var(--red);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.auth-submit,
.auth-outline {
  width: 100%;
  height: 40px;
  margin-top: 6px;
  border: 1px solid var(--red);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.auth-submit {
  color: var(--white);
  background: var(--red);
}

.auth-outline {
  color: var(--red);
  background: var(--white);
}

.content-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

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

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 1000;
  letter-spacing: -3px;
  line-height: 1.05;
}

.section-heading > p {
  max-width: 470px;
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
}

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

.radar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 18px;
}

.search-board {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.search-title {
  display: flex;
  flex-direction: column;
}

.search-title strong {
  margin-top: 5px;
  font-size: 25px;
}

.search-field {
  display: flex;
  align-items: center;
  height: 58px;
  margin-top: 24px;
  border: 1px solid var(--line);
}

.search-field > .icon {
  margin-left: 17px;
}

.search-field input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 14px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
}

.search-field button {
  align-self: stretch;
  width: 110px;
  color: var(--white);
  background: var(--red);
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.category-list button,
.ranking-tabs button {
  padding: 9px 20px;
  background: var(--white);
  border: 1px solid var(--soft-line);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.category-list button.is-active,
.ranking-tabs button.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.radar-feature {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--soft-line);
}

.radar-feature figure {
  display: grid;
  width: 116px;
  height: 154px;
  place-items: center;
  overflow: hidden;
  background: var(--paper-deep);
}

.radar-feature img,
.rank-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.radar-feature > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.radar-feature span,
.radar-feature em {
  color: var(--red);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.radar-feature strong {
  margin-top: 4px;
  font-size: 27px;
}

.radar-feature p {
  margin: 5px 0 9px;
  color: var(--muted);
  font-size: 13px;
}

.route-list {
  display: grid;
  gap: 12px;
}

.route-card {
  display: grid;
  grid-template-columns: 52px 1fr 20px;
  gap: 15px;
  align-items: center;
  padding: 20px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.route-card b {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 20px;
}

.route-card span {
  display: flex;
  flex-direction: column;
}

.route-card strong {
  font-size: 18px;
}

.route-card small {
  color: var(--muted);
  font-size: 12px;
}

.route-card.is-active {
  color: var(--white);
  background: var(--ink);
}

.route-card.is-active .icon-arrow {
  filter: invert(1);
}

.route-card.is-active small {
  color: #dbdbdb;
}

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

.ranking-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: -68px;
  margin-bottom: 28px;
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.8fr);
  gap: 22px;
}

.rank-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.rank-card {
  position: relative;
  padding: 12px 12px 17px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.rank-card > b {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 18px;
}

.rank-card figure {
  display: grid;
  width: 100%;
  height: 244px;
  place-items: center;
  overflow: hidden;
  background: var(--white);
}

.rank-card h3 {
  margin-top: 14px;
  font-size: 18px;
}

.rank-card p,
.rank-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.rank-list {
  padding: 12px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.rank-list li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--soft-line);
}

.rank-list li:last-child {
  border-bottom: 0;
}

.rank-list b {
  color: var(--red);
  font-family: Consolas, monospace;
}

.rank-list span {
  font-size: 14px;
  font-weight: 800;
}

.rank-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

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

.screen-grid figure {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

.screen-image {
  display: grid;
  width: 100%;
  aspect-ratio: 9 / 16;
  place-items: center;
  overflow: hidden;
  background: var(--paper-deep);
}

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

.screen-grid figcaption {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 15px;
  border-top: 1px solid var(--soft-line);
}

.screen-grid figcaption > b {
  color: var(--red);
  font-family: Consolas, monospace;
  font-size: 18px;
}

.screen-grid figcaption span {
  display: flex;
  flex-direction: column;
}

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

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

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

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

.faq-list details {
  border-bottom: 1px solid var(--soft-line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 0 18px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > b {
  color: var(--red);
  font-family: Consolas, monospace;
}

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

.faq-list summary > span {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.faq-list summary > span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary > span::after {
  transform: rotate(0deg);
}

.faq-list details > p {
  padding: 0 86px 22px;
  color: var(--muted);
  font-size: 14px;
}

.faq-list .official-site {
  margin-top: 22px;
  border: 1px solid var(--line);
}

.official-site summary {
  grid-template-columns: 26px 1fr 24px;
}

.official-site p a {
  color: var(--red);
  text-decoration: underline;
}

.reviews-section {
  background: var(--pink);
}

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

.review-card {
  display: flex;
  min-height: 240px;
  padding: 24px;
  flex-direction: column;
  background: var(--white);
  border-top: 4px solid var(--red);
  border-right: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  border-left: 1px solid var(--soft-line);
}

.review-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.review-user .icon-avatar {
  width: 38px;
  height: 38px;
}

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

.review-rating {
  flex: 0 0 auto;
  color: var(--red);
  white-space: nowrap;
}

.review-rating i {
  color: var(--red);
  font-size: 13px;
}

.review-card > p {
  margin-top: 20px;
  color: #3e3934;
  font-size: 14px;
}

.review-card time {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.download-section {
  padding: 70px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.download-ticket {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 230px;
  min-height: 170px;
  background: var(--white);
  border: 1px solid var(--line);
}

.download-ticket::before,
.download-ticket::after {
  position: absolute;
  z-index: 2;
  top: -10px;
  width: 20px;
  height: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.download-ticket::before {
  left: 159px;
}

.download-ticket::after {
  right: 219px;
}

.ticket-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px dashed var(--line);
  background: var(--yellow);
}

.ticket-number span {
  font-family: Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.ticket-number strong {
  font-size: 62px;
  line-height: 1;
}

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

.ticket-copy h2 {
  margin: 6px 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.ticket-copy > span {
  color: var(--muted);
  font-size: 13px;
}

.ticket-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--red);
  border-left: 1px dashed var(--line);
  font-size: 18px;
  font-weight: 900;
}

.ticket-action:hover {
  background: var(--red-dark);
}

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

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

.footer-brand small {
  color: #c8c8c8;
}

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

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

.footer-nav a:hover {
  color: var(--red);
}

.footer-copy {
  padding-top: 16px;
  padding-bottom: 22px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-copy p {
  color: #c7c7c7;
  font-size: 12px;
}

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

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

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

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

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

  .radar-layout,
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .route-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .route-card {
    grid-template-columns: 44px 1fr;
  }

  .route-card > .icon {
    display: none;
  }

  .route-card b {
    width: 44px;
    height: 44px;
  }

  .ranking-tabs {
    justify-content: flex-start;
    margin-top: 0;
  }

  .download-ticket {
    grid-template-columns: 150px minmax(0, 1fr) 190px;
  }

  .download-ticket::before {
    left: 139px;
  }

  .download-ticket::after {
    right: 179px;
  }
}

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

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

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

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

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

  .header-inner {
    position: relative;
  }

  .brand {
    gap: 8px;
    max-width: calc(100% - 150px);
  }

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

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

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

  .mobile-actions {
    display: flex;
  }

  .site-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-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

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

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

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

  .site-nav a {
    padding: 15px 4px;
  }

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

  .hero::before {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: 0;
    padding: 54px 0 58px;
  }

  .hero-copy {
    padding-left: 0;
    text-align: center;
    border-left: 0;
  }

  .hero-copy::before {
    display: none;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    margin-top: 13px;
    font-size: clamp(52px, 18vw, 72px);
    letter-spacing: -4px;
    white-space: normal;
  }

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

  .hero-intro {
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-features li {
    min-width: 0;
    padding: 10px 13px;
    font-size: 12px;
  }

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

  .phone-shell {
    width: 292px;
    height: 610px;
  }

  .content-section {
    padding: 64px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .section-heading > p {
    max-width: none;
    padding-bottom: 0;
  }

  .radar-layout,
  .ranking-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .search-board {
    padding: 18px;
  }

  .search-field {
    height: auto;
    min-height: 52px;
  }

  .search-field button {
    width: 78px;
  }

  .radar-feature {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }

  .radar-feature figure {
    width: 92px;
    height: 130px;
  }

  .radar-feature strong {
    font-size: 21px;
  }

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

  .rank-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .rank-card {
    padding: 7px 7px 12px;
  }

  .rank-card > b {
    top: 7px;
    left: 7px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .rank-card figure {
    height: 178px;
  }

  .rank-card h3 {
    font-size: 13px;
  }

  .rank-card p,
  .rank-card span {
    font-size: 12px;
  }

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

  .screen-grid figcaption {
    align-items: flex-start;
    min-height: 88px;
    padding: 12px;
  }

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

  .faq-list summary {
    grid-template-columns: 34px 1fr 24px;
    min-height: 68px;
    padding: 0 10px;
  }

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

  .faq-list details > p {
    padding: 0 44px 20px;
    font-size: 13px;
  }

  .official-site summary {
    grid-template-columns: 24px 1fr 24px;
  }

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

  .review-card {
    min-height: 215px;
  }

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

  .download-ticket {
    grid-template-columns: 1fr;
  }

  .download-ticket::before,
  .download-ticket::after {
    display: none;
  }

  .ticket-number {
    align-items: center;
    justify-content: flex-start;
    min-height: 84px;
    padding: 14px 22px;
    flex-direction: row;
    gap: 15px;
    border-right: 0;
    border-bottom: 1px dashed var(--line);
  }

  .ticket-number strong {
    font-size: 46px;
  }

  .ticket-copy {
    padding: 25px 22px;
    text-align: center;
  }

  .ticket-copy h2 {
    font-size: 25px;
  }

  .ticket-action {
    min-height: 70px;
    border-top: 1px dashed var(--line);
    border-left: 0;
  }

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

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

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

@media (max-width: 420px) {
  .brand-copy > span {
    max-width: 132px;
  }

  .mobile-download {
    padding: 10px 12px;
  }

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

  .hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .hero-features li {
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

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

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

  .radar-feature figure {
    width: 80px;
    height: 116px;
  }

  .rank-card figure {
    height: 150px;
  }

  .rank-list {
    padding: 10px 13px;
  }

  .rank-list li {
    grid-template-columns: 28px 1fr;
    gap: 8px;
  }

  .rank-list em {
    grid-column: 2;
  }

  .screen-grid figcaption {
    gap: 8px;
  }

  .screen-grid figcaption small {
    display: none;
  }
}

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

  a:active,
  button:active,
  summary:active {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

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