:root {
  --bg: #130b22;
  --bg-soft: #1c1030;
  --bg-panel: rgba(34, 20, 55, 0.86);
  --purple-deep: #2e1a47;
  --purple: #4b0082;
  --purple-light: #8751d8;
  --gold: #e6c280;
  --gold-soft: #f2dca9;
  --white: #f8f9fa;
  --muted: #c9bfd9;
  --line: rgba(230, 194, 128, 0.24);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(135, 81, 216, 0.22), transparent 34%),
    radial-gradient(circle at 80% 0%, rgba(230, 194, 128, 0.16), transparent 28%),
    linear-gradient(135deg, #12091f 0%, var(--purple-deep) 45%, var(--purple) 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(248, 249, 250, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 249, 250, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

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

button,
a,
.info-card,
.route-card,
.feature-list article,
.faq details,
.quick-index a,
.timeline li,
.image-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    filter 0.22s ease;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  max-width: 880px;
  color: var(--gold-soft);
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-soft) 48%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.55rem, 2.45vw, 2.45rem);
  color: var(--gold-soft);
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-soft) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: 1.12rem;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: #1a102b;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(18, 9, 31, 0.78);
  border-bottom: 1px solid rgba(230, 194, 128, 0.16);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--gold-soft);
  white-space: nowrap;
}

.brand:hover {
  color: var(--white);
  filter: drop-shadow(0 0 14px rgba(230, 194, 128, 0.28));
}

.brand img {
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.brand:hover img {
  transform: rotate(-4deg) scale(1.04);
  box-shadow: 0 0 24px rgba(230, 194, 128, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #ece6f6;
  font-size: 0.94rem;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta):focus-visible {
  border-color: rgba(230, 194, 128, 0.68);
  background: transparent;
  color: var(--gold-soft);
  transform: translateY(-1px);
  text-shadow: 0 0 14px rgba(230, 194, 128, 0.46);
  box-shadow: 0 0 18px rgba(230, 194, 128, 0.14);
}

.nav-links .nav-cta {
  margin-left: 0.35rem;
  background: var(--gold);
  color: #221437;
  font-weight: 800;
  border-radius: 999px;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--gold-soft);
  color: #160c25;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-panel,
.section-block,
.download-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  scroll-margin-top: 92px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 5.8rem 0 4.2rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 9, 31, 0.95) 0%, rgba(18, 9, 31, 0.68) 42%, rgba(18, 9, 31, 0.2) 100%),
    linear-gradient(0deg, rgba(18, 9, 31, 0.98) 0%, transparent 48%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-copy {
  width: min(var(--max), calc(100% - 32px));
  max-width: 890px;
  margin: 0 auto;
  padding: 0;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
}

.hero-lead {
  max-width: 820px;
  margin-top: 1.25rem;
  color: #ece6f6;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.85rem 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: radial-gradient(circle, var(--gold-soft) 0%, var(--gold) 62%, #d7ad62 100%);
  color: #201331;
  box-shadow: 0 14px 30px rgba(230, 194, 128, 0.24);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.button.large {
  min-width: 168px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 42px rgba(230, 194, 128, 0.34);
  filter: saturate(1.08) brightness(1.04);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(230, 194, 128, 0.52);
  background: rgba(230, 194, 128, 0.12);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0.75rem;
  max-width: 820px;
  margin: 0;
}

.hero-facts div {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(19, 11, 34, 0.62);
}

.hero-facts dt {
  color: var(--gold-soft);
  font-size: 0.78rem;
}

.hero-facts dd {
  margin: 0.12rem 0 0;
  color: var(--white);
  font-weight: 700;
}

.quick-index {
  width: min(var(--max), calc(100% - 32px));
  position: relative;
  z-index: 3;
  margin: -4.4rem auto 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.quick-index a {
  padding: 1rem;
  background: rgba(28, 16, 48, 0.9);
  color: var(--white);
  font-weight: 700;
}

.quick-index a:hover,
.quick-index a:focus-visible {
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.72), rgba(230, 194, 128, 0.16));
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.quick-index span {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
}

.section-block {
  padding: 5.5rem 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.section-copy p {
  font-size: 1.02rem;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-head .section-kicker,
.section-head h2,
.section-head p {
  text-align: center;
}

.section-head.narrow {
  max-width: 780px;
}

.image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-card figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.image-card:hover {
  border-color: rgba(230, 194, 128, 0.48);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.image-card:hover img {
  filter: brightness(1.06) saturate(1.06);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.info-card,
.route-card,
.feature-list article,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(48, 28, 77, 0.82), rgba(25, 14, 43, 0.82));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.info-card {
  padding: 1.2rem;
}

.info-card:hover,
.route-card:hover,
.feature-list article:hover,
.faq details:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 194, 128, 0.5);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.28);
}

.info-card:hover {
  background: linear-gradient(180deg, rgba(75, 0, 130, 0.72), rgba(30, 16, 50, 0.92));
}

.info-card svg {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.info-card:hover svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(230, 194, 128, 0.35));
}

.info-card p,
.route-card p,
.feature-list p,
.faq p {
  margin-bottom: 0;
}

.route-section {
  padding-top: 4rem;
}

.route-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}

.route-card {
  padding: 1.35rem;
}

.primary-route {
  border-color: rgba(230, 194, 128, 0.52);
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.86), rgba(46, 26, 71, 0.9));
}

.primary-route:hover {
  background: linear-gradient(135deg, rgba(89, 0, 154, 0.92), rgba(46, 26, 71, 0.95));
}

.route-card ol {
  margin: 1rem 0;
  padding-left: 1.35rem;
  color: var(--gold-soft);
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-list article {
  padding: 1.25rem;
  min-height: 210px;
}

.feature-list h3 {
  color: var(--gold-soft);
  margin-bottom: 0.65rem;
}

.feature-list article:hover h3,
.route-card:hover h3,
.info-card:hover h3 {
  color: var(--gold);
}

.gallery {
  padding-top: 3rem;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-track figure {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.gallery-track figure:hover {
  border-color: rgba(230, 194, 128, 0.5);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
  transform: translateY(-4px);
}

.gallery-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.gallery-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.gallery-button img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.gallery-button:hover img,
.gallery-button:focus-visible img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(9, 4, 17, 0.88);
  backdrop-filter: blur(12px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(28, 16, 48, 0.92);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--gold);
  color: #201331;
}

.updates {
  padding-top: 4rem;
}

.timeline {
  list-style: none;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(75, 0, 130, 0.28), rgba(28, 16, 48, 0.7)),
    rgba(19, 11, 34, 0.36);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
}

.timeline li + li {
  margin-top: 0.35rem;
}

.timeline li:nth-child(odd) {
  background: rgba(255, 255, 255, 0.035);
}

.timeline li:hover {
  background: rgba(230, 194, 128, 0.08);
  border-color: rgba(230, 194, 128, 0.35);
  transform: translateX(4px);
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 180px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(230, 194, 128, 0.7);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.timeline li:hover::before {
  transform: translateY(-50%) scale(1.35);
  box-shadow: 0 0 26px rgba(230, 194, 128, 0.92);
}

.timeline li::after {
  content: "";
  position: absolute;
  left: 184px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(230, 194, 128, 0.22);
  z-index: -1;
}

.timeline time {
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 1.02rem;
}

.timeline span {
  color: var(--muted);
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq details {
  padding: 1rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
}

.faq details[open] {
  border-color: rgba(230, 194, 128, 0.44);
  background: linear-gradient(180deg, rgba(75, 0, 130, 0.56), rgba(25, 14, 43, 0.88));
}

.faq details:hover summary,
.faq details[open] summary {
  color: var(--gold-soft);
}

.faq summary::marker {
  color: var(--gold);
}

.faq details p {
  padding-top: 0.75rem;
}

.download-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 5rem;
  padding: 1.8rem;
  border: 1px solid rgba(230, 194, 128, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(75, 0, 130, 0.82), rgba(230, 194, 128, 0.14)),
    rgba(28, 16, 48, 0.92);
  box-shadow: var(--shadow);
}

.download-band:hover {
  border-color: rgba(230, 194, 128, 0.64);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.34);
}

.download-band h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
}

.friend-links {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 2.5rem;
  padding: 2.4rem 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(230, 194, 128, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(46, 26, 71, 0.96), rgba(75, 0, 130, 0.72));
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.22);
}

.friend-links h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.friend-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.friend-link-list a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1.15rem;
  border: 1px solid rgba(230, 194, 128, 0.26);
  border-radius: 999px;
  background: rgba(248, 249, 250, 0.08);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.friend-link-list a:hover,
.friend-link-list a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(230, 194, 128, 0.62);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #201331;
  box-shadow: 0 16px 34px rgba(230, 194, 128, 0.24);
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--gold-soft);
}

.site-footer p {
  max-width: 720px;
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--gold-soft);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(18, 9, 31, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-media {
    inset: 0;
  }

  .hero-facts,
  .quick-index,
  .content-grid,
  .feature-list,
  .faq-grid,
  .gallery-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split.reverse,
  .route-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 104px;
  }

  body {
    line-height: 1.68;
  }

  .nav-shell,
  .section-panel,
  .section-block,
  .download-band,
  .friend-links,
  .site-footer,
  .quick-index {
    width: min(100% - 24px, var(--max));
  }

  .quick-index {
    margin-top: -2.4rem;
  }

  .section-panel,
  .section-block,
  .download-band {
    scroll-margin-top: 104px;
  }

  .brand span {
    max-width: 9em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-copy {
    padding: 1.6rem 0 2rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-facts,
  .quick-index,
  .content-grid,
  .feature-list,
  .faq-grid,
  .gallery-track {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 3.7rem 0;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .timeline li::before,
  .timeline li::after {
    display: none;
  }

  .download-band,
  .friend-links,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .friend-links {
    align-items: center;
    padding: 2rem 1rem;
  }

  .friend-link-list {
    gap: 0.65rem;
  }

  .friend-link-list a {
    width: 100%;
    max-width: 260px;
  }

  .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .button:focus-visible,
  .info-card:hover,
  .route-card:hover,
  .feature-list article:hover,
  .faq details:hover,
  .gallery-track figure:hover,
  .quick-index a:hover,
  .timeline li:hover {
    transform: none;
  }
}
