:root {
  color-scheme: light;
  --ink: #17231f;
  --muted: #60706a;
  --paper: #fbfaf6;
  --paper-2: #f1eadc;
  --forest: #12382a;
  --forest-2: #1f5a44;
  --moss: #79a65d;
  --gold: #d5a642;
  --amber: #b66a32;
  --aqua: #5aa9a6;
  --line: rgba(23, 35, 31, 0.14);
  --shadow: 0 18px 60px rgba(18, 56, 42, 0.18);
  --radius: 8px;
  --container: 1180px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

strong {
  color: #8b5f17;
  font-weight: 800;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.6rem 0.85rem;
  color: #fff;
  background: var(--forest);
  border-radius: 6px;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 40px, 900px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(23, 35, 31, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 10px 28px rgba(18, 56, 42, 0.11);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--forest);
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(18, 56, 42, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand span {
  white-space: nowrap;
}

.brand:hover img,
.brand:focus-visible img {
  transform: rotate(-3deg) scale(1.06);
  box-shadow: 0 10px 24px rgba(18, 56, 42, 0.22);
}

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

.nav-links a {
  position: relative;
  padding: 0.62rem 0.78rem;
  border-radius: 6px;
  color: #263c35;
  overflow: hidden;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--forest);
  background: rgba(121, 166, 93, 0.17);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

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

.nav-links .nav-download {
  color: #fff;
  background: var(--forest);
  margin-left: 0.35rem;
  box-shadow: 0 10px 22px rgba(18, 56, 42, 0.18);
}

.nav-links .nav-download:hover,
.nav-links .nav-download:focus-visible {
  color: #fff;
  background: #0d2d21;
  box-shadow: 0 14px 30px rgba(18, 56, 42, 0.24);
}

.nav-links .nav-download::after {
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 0.55rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  background: var(--forest);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 9rem 0 5.5rem;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.22);
  z-index: -3;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 31, 23, 0.9) 0%, rgba(9, 31, 23, 0.72) 42%, rgba(9, 31, 23, 0.28) 100%),
    linear-gradient(0deg, rgba(9, 31, 23, 0.72) 0%, rgba(9, 31, 23, 0.08) 54%, rgba(9, 31, 23, 0.45) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(0deg, var(--paper), rgba(251, 250, 246, 0));
}

.hero-content {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  width: min(760px, 100%);
  margin: 0 0 1rem;
  font-size: 3.25rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.hero-lead {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.74rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  left: 125%;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn.primary {
  color: #1f2118;
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(213, 166, 66, 0.28);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: #e2b957;
  box-shadow: 0 18px 42px rgba(213, 166, 66, 0.34);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 0.85rem;
  margin: 2.1rem 0 0;
}

.hero-meta div {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(18, 56, 42, 0.45);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hero-meta div:hover {
  transform: translateY(-3px);
  border-color: rgba(213, 166, 66, 0.58);
  background: rgba(18, 56, 42, 0.58);
}

.hero-meta dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.hero-meta dd {
  margin: 0.15rem 0 0;
  color: #fff;
  font-weight: 800;
}

.quest-focus {
  padding: 2.8rem 0 3.5rem;
  background: var(--paper);
}

.quest-focus h2,
.section-head h2,
.copy h2,
.download-inner h2 {
  margin: 0 0 1rem;
  color: var(--forest);
  font-size: 2.2rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.term-list li,
.story-points span {
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(31, 90, 68, 0.2);
  border-radius: 6px;
  color: var(--forest);
  background: rgba(121, 166, 93, 0.12);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.term-list li:hover,
.story-points span:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 166, 66, 0.45);
  background: rgba(213, 166, 66, 0.14);
  box-shadow: 0 10px 24px rgba(18, 56, 42, 0.08);
}

.section {
  padding: 5.2rem 0;
}

.intro-section,
.route-section,
.updates-section {
  background: linear-gradient(180deg, #fbfaf6 0%, #f5f1e8 100%);
}

.features-section,
.walkthrough-section,
.faq-section {
  background: #fffdf8;
}

.bosses-section {
  background: #eef5ed;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 3rem;
}

.two-col.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.copy p,
.section-head p,
.system-list p,
.guide-card p,
.boss-grid p,
.timeline p,
.faq-list p,
.download-inner p {
  color: var(--muted);
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.media-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.media-panel img,
.wide-figure img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 420ms ease, filter 420ms ease, box-shadow 420ms ease;
}

.media-panel:hover img,
.wide-figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
  box-shadow: 0 22px 68px rgba(18, 56, 42, 0.24);
}

.media-panel figcaption,
.wide-figure figcaption {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head {
  max-width: 780px;
  margin: 0 0 2.4rem;
}

.section-head h2,
.copy h2 {
  position: relative;
}

.section-head h2::after,
.copy h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(121, 166, 93, 0.2));
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.role-card,
.guide-card,
.boss-grid article,
.timeline article,
.faq-list details {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 56, 42, 0.08);
}

.role-card::before,
.guide-card::before,
.boss-grid article::before,
.timeline article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(213, 166, 66, 0);
  pointer-events: none;
  transition: border-color 220ms ease;
}

.role-card:hover::before,
.guide-card:hover::before,
.boss-grid article:hover::before,
.timeline article:hover::before {
  border-color: rgba(213, 166, 66, 0.48);
}

.role-card {
  padding: 1.25rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.role-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 90, 68, 0.28);
  box-shadow: 0 20px 46px rgba(18, 56, 42, 0.13);
}

.role-card h3,
.system-list h3,
.guide-card h3,
.boss-grid h3 {
  margin: 0 0 0.65rem;
  color: var(--forest);
  font-size: 1.16rem;
  letter-spacing: 0;
}

.role-card p {
  margin: 0;
  color: var(--muted);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.wide-figure {
  margin: 0;
}

.system-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.system-list article {
  padding: 1.1rem;
  border-left: 4px solid var(--moss);
  background: rgba(121, 166, 93, 0.1);
  border-radius: 8px;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease, border-left-color 200ms ease;
}

.system-list article:hover {
  transform: translateX(4px);
  border-left-color: var(--gold);
  background: rgba(213, 166, 66, 0.12);
  box-shadow: 0 12px 26px rgba(18, 56, 42, 0.08);
}

.route-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.route-list li {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(18, 56, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.route-list li::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(213, 166, 66, 0.14), rgba(213, 166, 66, 0));
  transition: width 220ms ease;
}

.route-list li:hover {
  transform: translateX(5px);
  border-color: rgba(31, 90, 68, 0.3);
  box-shadow: 0 10px 26px rgba(18, 56, 42, 0.09);
  background: rgba(255, 255, 255, 0.9);
}

.route-list li:hover::before {
  width: 100%;
}

.route-list span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #fff;
  background: var(--forest-2);
  border-radius: 6px;
  font-weight: 900;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.route-list li:hover span {
  color: #1f2118;
  background: var(--gold);
  transform: scale(1.04);
}

.route-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #31443d;
}

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

.guide-card {
  padding: 1.25rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.guide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 90, 68, 0.28);
  box-shadow: 0 22px 54px rgba(18, 56, 42, 0.15);
}

.guide-card.primary-guide {
  grid-row: span 2;
  background: linear-gradient(180deg, #173e2f 0%, #246046 100%);
  color: #fff;
}

.guide-card.primary-guide:hover {
  background: linear-gradient(180deg, #194b38 0%, #2a7051 100%);
}

.guide-card.primary-guide h3,
.guide-card.primary-guide p,
.guide-card.primary-guide li {
  color: #fff;
}

.guide-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.guide-card li {
  margin: 0.5rem 0;
  color: var(--muted);
}

.visual-guide {
  background: var(--paper);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 56, 42, 0.07);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.94rem;
}

th,
td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #fff;
  background: var(--forest);
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background 160ms ease, color 160ms ease;
}

tbody tr:hover {
  background: rgba(213, 166, 66, 0.1);
}

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

.boss-grid article {
  padding: 1.2rem;
  background: #fbfff8;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.boss-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 90, 68, 0.26);
  background: #fffdf5;
  box-shadow: 0 20px 44px rgba(18, 56, 42, 0.13);
}

.timeline {
  display: grid;
  gap: 1rem;
  position: relative;
}

.timeline article {
  padding: 1.2rem 1.25rem;
  border-left: 5px solid var(--gold);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.timeline article:hover {
  transform: translateX(5px);
  border-left-color: var(--forest-2);
  box-shadow: 0 18px 40px rgba(18, 56, 42, 0.12);
}

.timeline time {
  display: block;
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.timeline p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  padding: 0.15rem 1rem;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease, background 200ms ease;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 0.95rem 2rem 0.95rem 0;
  color: var(--forest);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--forest-2);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 200ms ease, background 200ms ease;
}

.faq-list details[open] {
  border-color: rgba(31, 90, 68, 0.28);
  background: #fffef9;
  box-shadow: 0 18px 44px rgba(18, 56, 42, 0.1);
}

.faq-list details:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 166, 66, 0.42);
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--gold);
  color: #1f2118;
  transform: translateY(-50%) rotate(180deg);
}

.download-band {
  position: relative;
  padding: 3.8rem 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 56, 42, 0.96), rgba(31, 90, 68, 0.94)),
    var(--forest);
  overflow: hidden;
}

.download-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(213, 166, 66, 0.18), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(90, 169, 166, 0.14), transparent 30%);
  opacity: 0.85;
  pointer-events: none;
}

.download-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.download-inner h2 {
  color: #fff;
}

.download-inner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.site-footer {
  padding: 1.5rem 0;
  color: rgba(255, 255, 255, 0.82);
  background: #0b2119;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #f0c96a;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .two-col,
  .two-col.reverse,
  .feature-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }

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

  .nav-shell {
    width: min(100% - 24px, var(--container));
  }

  .brand span {
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-h) 12px auto;
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem;
    background: rgba(251, 250, 246, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
  }

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

  .hero {
    min-height: 86svh;
    padding: 7.8rem 0 4rem;
  }

  .hero-bg {
    transform: scale(1.38);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 31, 23, 0.83) 0%, rgba(9, 31, 23, 0.52) 52%, rgba(9, 31, 23, 0.72) 100%);
  }

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

  .hero h1 {
    font-size: 2.1rem;
  }

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

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.8rem 0;
  }

  .quest-focus h2,
  .section-head h2,
  .copy h2,
  .download-inner h2 {
    font-size: 1.78rem;
  }

  .role-grid,
  .guide-grid,
  .system-list,
  .boss-grid {
    grid-template-columns: 1fr;
  }

  .guide-card.primary-guide {
    grid-row: auto;
  }

  .route-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .route-list span {
    min-height: 38px;
  }

  .download-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-inner .btn {
    width: 100%;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
