@charset "UTF-8";

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

:root {
  --ink: #111425;
  --navy: #0d1223;
  --navy-soft: #191b31;
  --coral: #ff655e;
  --coral-deep: #e84e49;
  --cream: #fff9f1;
  --paper: #f7efe4;
  --white: #ffffff;
  --lilac: #827b9c;
  --muted: #686576;
  --line: #d9cec1;
  --blue: #67b5d5;
  --header-height: 76px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--cream);
  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;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

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

[hidden] {
  display: none !important;
}

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

.screen-reader-text {
  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: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

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

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

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

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

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

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

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

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

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

.icon-download {
  background-image: url("../icons/download.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, 241, 0.98);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

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

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 11px;
}

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

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

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

.site-nav {
  height: 100%;
}

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

.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(--coral);
  content: "";
  transform: scaleX(0);
}

.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;
  min-height: 42px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--coral-deep);
  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(--ink);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 690px;
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 55%, var(--coral) 55%, #ff8a75 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

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

.hero-copy {
  max-width: 690px;
  padding: 78px 0;
  color: var(--white);
}

.eyebrow,
.section-index {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  color: var(--cream);
  font-family: Georgia, "Microsoft YaHei", serif;
  font-size: clamp(78px, 8vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero h2 {
  max-width: 650px;
  margin-top: 30px;
  color: var(--cream);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.3;
}

.hero-description {
  max-width: 650px;
  margin-top: 20px;
  color: #d8d7df;
  font-size: 16px;
}

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

.primary-link {
  display: inline-flex;
  min-width: 198px;
  min-height: 56px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: var(--white);
  background: var(--coral);
  border: 1px solid #ff8e85;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

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

.age-label {
  color: #b8b6c2;
  font-size: 13px;
}

.hero-tags {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 0;
}

.hero-tags li {
  display: inline-flex;
  min-height: 34px;
  padding: 0 24px;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 14px;
  font-weight: 700;
}

.hero-tags li:first-child {
  padding-left: 0;
}

.hero-tags li:last-child {
  border-right: 0;
}

.hero-tags .icon {
  filter: brightness(0) saturate(100%) invert(58%) sepia(88%) saturate(2601%) hue-rotate(327deg) brightness(105%);
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: flex-end;
}

.hero-visual::before {
  position: absolute;
  top: 74px;
  right: -28px;
  width: 360px;
  height: 500px;
  background: rgba(13, 18, 35, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50% 36% 45% 35%;
  content: "";
  transform: rotate(8deg);
}

.hero-issue {
  position: absolute;
  top: 80px;
  left: -12px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.35;
}

.sketch-lines {
  position: absolute;
  right: -130px;
  bottom: 50px;
  width: 380px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.sketch-lines::before,
.sketch-lines::after {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.sketch-lines::after {
  inset: 54px;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 330px;
  padding: 14px;
  background: #060910;
  border: 2px solid #262936;
  border-radius: 45px;
  box-shadow: 22px 30px 0 rgba(13, 18, 35, 0.18);
}

.phone-shell img {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 50%;
  width: 86px;
  height: 24px;
  background: #060910;
  border-radius: 0 0 15px 15px;
  transform: translateX(-50%);
}

.phone-clock {
  position: absolute;
  z-index: 5;
  top: 25px;
  left: 31px;
  min-width: 45px;
  padding: 1px 4px;
  color: var(--white);
  background: rgba(34, 22, 35, 0.82);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: end;
  gap: 40px;
}

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

.section-heading h2 {
  margin-top: 8px;
  font-family: Georgia, "Microsoft YaHei", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.2;
}

.section-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--muted);
  font-size: 14px;
}

.route-section,
.screen-section,
.faq-section,
.review-section {
  padding: 100px 0;
}

.route-section {
  background:
    linear-gradient(90deg, transparent 0 19px, rgba(255, 101, 94, 0.08) 20px, transparent 21px) 0 0 / 42px 42px,
    var(--paper);
}

.route-board {
  display: grid;
  margin-top: 46px;
  grid-template-columns: 146px minmax(0, 1fr) 220px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.route-stamp {
  display: flex;
  padding: 28px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: var(--coral);
  text-align: center;
}

.route-stamp span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.route-stamp strong {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.route-list li {
  position: relative;
  min-width: 0;
  padding: 32px 20px 28px;
  border-right: 1px solid var(--line);
}

.route-list li::after {
  position: absolute;
  top: 56px;
  right: -8px;
  width: 14px;
  height: 14px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  content: "";
  transform: rotate(45deg);
}

.route-list li:last-child::after {
  display: none;
}

.route-number {
  display: block;
  margin-bottom: 22px;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 800;
}

.route-list .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
}

.route-list h3 {
  font-size: 18px;
}

.route-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.route-summary {
  padding: 30px 24px;
  color: var(--white);
  background: var(--navy);
}

.route-summary > p {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

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

.route-summary dl div {
  display: flex;
  padding: 8px 0;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.route-summary dd {
  color: #b9b5c7;
}

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

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

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

.screen-image {
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 10px;
  background: #eee9e4;
  overflow: hidden;
}

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

.screen-card figcaption {
  display: grid;
  min-height: 84px;
  padding: 16px;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  border-top: 1px solid var(--line);
}

.screen-card figcaption span {
  grid-row: 1 / span 2;
  color: var(--coral-deep);
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 800;
}

.screen-card figcaption strong {
  font-size: 16px;
}

.screen-card figcaption em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

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

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

.faq-question,
.official-question {
  display: grid;
  width: 100%;
  min-height: 72px;
  padding: 0 24px;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-number {
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 800;
}

.faq-question strong,
.official-question strong {
  font-size: 16px;
}

.faq-symbol {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.faq-symbol::before,
.faq-symbol::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-symbol::after,
.official-site.is-open .faq-symbol::after {
  display: none;
}

.faq-answer {
  padding: 0 100px 24px;
  color: var(--muted);
  background: var(--cream);
}

.faq-answer p {
  font-size: 14px;
}

.official-site {
  margin-top: 26px;
  background: var(--navy);
  border: 1px solid var(--navy);
}

.official-question {
  min-height: 78px;
  grid-template-columns: 1fr auto;
  color: var(--white);
  background: var(--navy);
}

.official-question > span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.official-question .icon-globe {
  filter: brightness(0) invert(1);
}

.official-question .faq-symbol::before,
.official-question .faq-symbol::after {
  background: var(--white);
}

.official-answer {
  padding: 0 24px 24px 60px;
  color: #ddd8e6;
}

.official-answer a {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.review-section {
  background:
    radial-gradient(circle at 10px 10px, rgba(255, 101, 94, 0.12) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--cream);
}

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

.review-card {
  position: relative;
  display: flex;
  min-height: 250px;
  padding: 26px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--coral);
}

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

.review-user {
  display: grid;
  min-width: 0;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.review-user .icon-avatar {
  width: 42px;
  height: 42px;
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  background-size: 23px 23px;
}

.review-user strong {
  min-width: 0;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.review-rating {
  display: inline-flex;
  min-width: 88px;
  align-items: center;
  justify-content: flex-end;
  color: var(--coral);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.review-rating .fa {
  display: inline-block;
  width: 16px;
  height: 16px;
  font-style: normal;
  line-height: 16px;
  text-align: center;
}

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

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

.review-card > p {
  padding-top: 18px;
  margin-top: 18px;
  color: #343242;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

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

.download-section {
  padding: 84px 0;
  background: var(--navy);
}

.download-ticket {
  position: relative;
  display: grid;
  min-height: 180px;
  grid-template-columns: 150px minmax(0, 1fr) 220px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.download-ticket::before,
.download-ticket::after {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  background: var(--navy);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

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

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

.ticket-index {
  display: flex;
  padding: 28px 22px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px dashed var(--coral);
}

.ticket-index span {
  color: var(--coral-deep);
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.ticket-index small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

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

.ticket-copy h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
}

.ticket-copy > p:last-child {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.ticket-download {
  display: flex;
  min-height: 100%;
  padding: 26px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: var(--coral);
  border-left: 1px dashed rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.ticket-download .icon-download {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

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

.footer-main {
  display: flex;
  min-height: 128px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

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

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

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

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  color: #aaa8b6;
}

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

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  border: 1px solid var(--cream);
  cursor: pointer;
}

.back-to-top.is-visible {
  display: flex;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

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

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

  .phone-shell {
    width: 300px;
  }

  .route-board {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .route-summary {
    display: none;
  }
}

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

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

  .header-inner {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }

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

  .brand-copy span {
    max-width: none;
    overflow: visible;
    font-size: 12px;
    text-overflow: clip;
  }

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

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

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

  .site-nav {
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    left: 0;
    height: auto;
    max-height: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    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: 52px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero {
    min-height: 0;
    background: var(--navy);
  }

  .hero::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 46%;
    background-color: var(--coral);
  }

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

  .hero-copy {
    max-width: 660px;
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(62px, 23vw, 90px);
    white-space: normal;
  }

  .hero h2 {
    margin-right: auto;
    margin-left: auto;
    font-size: 28px;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
  }

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

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

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

  .hero-visual::before {
    top: 30px;
    right: 50%;
    width: 310px;
    height: 430px;
    transform: translateX(50%) rotate(8deg);
  }

  .hero-issue {
    top: 24px;
    left: 10px;
  }

  .phone-shell {
    width: min(300px, 86vw);
  }

  .section-heading {
    display: block;
  }

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

  .section-heading > p:last-child {
    margin-top: 12px;
    font-size: 13px;
  }

  .route-section,
  .screen-section,
  .faq-section,
  .review-section {
    padding: 72px 0;
  }

  .route-board {
    grid-template-columns: 100px minmax(0, 1fr);
  }

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

  .route-list li:nth-child(2) {
    border-right: 0;
  }

  .route-list li:nth-child(2)::after {
    display: none;
  }

  .route-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

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

  .ticket-download {
    min-height: 90px;
    grid-column: 1 / -1;
    flex-direction: row;
    border-top: 1px dashed rgba(255, 255, 255, 0.7);
    border-left: 0;
  }

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

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

@media (max-width: 600px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--container));
  }

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

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

  .hero-grid {
    padding-top: 44px;
  }

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

  .hero-tags li {
    padding: 0 10px;
    font-size: 12px;
  }

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

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

  .route-board {
    display: block;
  }

  .route-stamp {
    min-height: 90px;
    padding: 18px;
    flex-direction: row;
    gap: 12px;
  }

  .route-stamp strong {
    margin: 0;
    font-size: 40px;
  }

  .route-list li {
    padding: 24px 16px;
  }

  .route-list li::after {
    display: none;
  }

  .route-number {
    margin-bottom: 14px;
  }

  .route-list h3 {
    font-size: 16px;
  }

  .screen-grid {
    gap: 8px;
  }

  .screen-image {
    padding: 5px;
  }

  .screen-card figcaption {
    min-height: 76px;
    padding: 10px 8px;
    column-gap: 7px;
  }

  .screen-card figcaption span {
    font-size: 17px;
  }

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

  .screen-card figcaption em {
    font-size: 12px;
  }

  .faq-question,
  .official-question {
    min-height: 68px;
    padding: 0 14px;
    grid-template-columns: 32px 1fr auto;
    gap: 8px;
  }

  .faq-question strong,
  .official-question strong {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 54px 20px;
  }

  .official-question {
    grid-template-columns: 1fr auto;
  }

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

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

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

  .review-user {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 9px;
  }

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

  .review-rating {
    min-width: 80px;
  }

  .review-rating .fa {
    width: 14px;
  }

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

  .download-ticket {
    display: block;
  }

  .ticket-index {
    min-height: 78px;
    padding: 14px 18px;
    flex-direction: row;
    gap: 12px;
    border-right: 0;
    border-bottom: 1px dashed var(--coral);
  }

  .ticket-index span {
    font-size: 38px;
  }

  .ticket-index small {
    margin-top: 0;
    writing-mode: horizontal-tb;
  }

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

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

  .ticket-download {
    min-height: 78px;
    font-size: 18px;
  }

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

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

@media (max-width: 390px) {
  .brand img {
    width: 36px;
    height: 36px;
  }

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

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

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

  .hero-tags li {
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
