:root {
  --paper: #f4f7f2;
  --paper-soft: #fbfaf5;
  --ink: #243036;
  --muted: #647176;
  --line: rgba(43, 55, 58, 0.16);
  --green: #5f7f6a;
  --green-dark: #314e43;
  --title-color: #385f55;
  --sky: #8fb6c8;
  --mist: #dfeceb;
  --petal: #d99499;
  --blue: #5c7d98;
  --rose: #b76f73;
  --gold: #c59a53;
  --shadow: 0 18px 45px rgba(35, 48, 54, 0.14);
  --radius: 8px;
  --header-height: 72px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(143, 182, 200, 0.16), rgba(244, 247, 242, 0.86) 320px),
    var(--paper);
  font-family: "Noto Serif SC", "Songti SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

strong {
  color: var(--green-dark);
  font-weight: 800;
}

.hero strong {
  color: #f6d884;
}

.text-mark {
  color: var(--rose);
  font-weight: 800;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.65rem 0.9rem;
  clip: auto;
  color: #fff;
  background: var(--green-dark);
  border-radius: var(--radius);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 max(32px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: rgba(26, 38, 41, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(250, 250, 245, 0.94);
  box-shadow: 0 12px 35px rgba(28, 39, 43, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.42),
    0 0 0 5px rgba(246, 216, 132, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-right: 0;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
}

.site-nav a:not(.nav-download)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-download):hover::after,
.site-nav a:not(.nav-download):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-download {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  color: #1e2c2f;
  background: #f6d884;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(24, 36, 39, 0.16);
}

.site-header.is-scrolled .nav-download,
.site-header.is-open .nav-download {
  border-color: rgba(49, 78, 67, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 32%, rgba(246, 216, 132, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(20, 32, 35, 0.78), rgba(28, 42, 44, 0.42) 48%, rgba(45, 55, 43, 0.18)),
    linear-gradient(0deg, rgba(20, 30, 31, 0.76), rgba(20, 30, 31, 0.05) 54%);
}

.hero-content {
  padding: calc(var(--header-height) + 72px) 0 56px;
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--rose);
  font-family: "Microsoft YaHei", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3d58d;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  color: #f6d884;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 800;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.36);
}

h2 {
  color: var(--title-color);
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-subtitle {
  max-width: 660px;
  margin: 1.15rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-subtitle {
  padding-left: 1rem;
  border-left: 4px solid rgba(246, 216, 132, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Microsoft YaHei", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(24, 36, 39, 0.22);
}

.btn.primary {
  color: #1e2c2f;
  background: #f6d884;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(10px);
}

.btn.compact {
  color: #fff;
  background: var(--green-dark);
}

.floating-download {
  position: fixed;
  z-index: 45;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  color: #1e2c2f;
  background: linear-gradient(180deg, #ffe59a, #f2c96f);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow:
    0 16px 34px rgba(24, 36, 39, 0.2),
    0 0 0 5px rgba(246, 216, 132, 0.16);
  font-family: "Microsoft YaHei", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-download:hover,
.floating-download:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 20px 38px rgba(24, 36, 39, 0.24),
    0 0 0 6px rgba(246, 216, 132, 0.2);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 1px;
  max-width: 760px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-facts div {
  min-width: 0;
  padding: 0.85rem 1rem;
  background: rgba(22, 33, 35, 0.36);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-family: "Microsoft YaHei", Arial, sans-serif;
  font-size: 0.78rem;
}

.hero-facts dd {
  margin: 0.1rem 0 0;
  font-weight: 700;
}

.intro-strip {
  background:
    linear-gradient(90deg, rgba(95, 127, 106, 0.1), rgba(143, 182, 200, 0.12)),
    var(--paper-soft);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.05rem 1.2rem;
  margin: 1rem auto;
  border: 1px solid rgba(49, 78, 67, 0.18);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(35, 48, 54, 0.08);
}

.intro-grid p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  color: var(--green-dark);
  font-family: "Microsoft YaHei", Arial, sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.text-link::after {
  content: " ->";
}

.section {
  position: relative;
  padding: 96px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1160px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(197, 154, 83, 0.45), transparent);
}

.intro-section,
.guide-section,
.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(244, 247, 242, 0.92)),
    var(--paper);
}

.features-section {
  background:
    linear-gradient(180deg, rgba(246, 216, 132, 0.1), rgba(244, 247, 242, 0.94)),
    var(--paper);
}

.audience-section {
  background:
    linear-gradient(180deg, rgba(143, 182, 200, 0.12), rgba(244, 247, 242, 0.94)),
    var(--paper);
}

.content-section,
.updates-section {
  background:
    linear-gradient(180deg, rgba(223, 236, 235, 0.46), rgba(251, 250, 245, 0.96)),
    var(--paper-soft);
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(143, 182, 200, 0.18), rgba(234, 240, 236, 0.98)),
    #eaf0ec;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: 54px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.02fr);
}

.section-copy > p:not(.eyebrow),
.section-heading p,
.faq-intro p,
.route-layout p {
  color: var(--muted);
}

.section-copy > p:not(.eyebrow) {
  position: relative;
}

.feature-list {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.2rem;
}

.feature-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.feature-list strong {
  color: var(--title-color);
}

.media-panel,
.wide-image,
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce6e1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.media-panel img,
.wide-image img,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 600ms ease;
}

.wide-image img {
  aspect-ratio: 16 / 7;
}

.media-panel:hover img,
.wide-image:hover img,
.gallery-grid figure:hover img {
  transform: scale(1.035);
}

figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.section-heading {
  position: relative;
  max-width: 780px;
  margin-bottom: 36px;
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
}

.content-showcase {
  display: grid;
  gap: 28px;
}

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

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

.audience-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 1.6rem;
  border: 1px solid rgba(49, 78, 67, 0.18);
  border-left: 5px solid var(--sky);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(223, 236, 235, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.audience-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-list {
  display: grid;
  gap: 0.75rem;
}

.audience-list li {
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 2.1rem;
  border: 1px solid rgba(49, 78, 67, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.55rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 154, 83, 0.16);
}

.info-card,
.feature-card,
.character-grid article,
.steps article,
.timeline article,
.faq-list details,
.route-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 247, 242, 0.74)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(35, 48, 54, 0.08);
}

.info-card,
.feature-card,
.character-grid article,
.steps article,
.route-list li,
.faq-list details {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-card:hover,
.feature-card:hover,
.character-grid article:hover,
.steps article:hover,
.route-list li:hover,
.faq-list details:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 154, 83, 0.42);
  box-shadow: 0 18px 36px rgba(35, 48, 54, 0.12);
}

.info-card {
  padding: 1.25rem;
}

.feature-card {
  position: relative;
  min-height: 220px;
  padding: 1.25rem;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(143, 182, 200, 0.14), transparent 45%),
    linear-gradient(315deg, rgba(217, 148, 153, 0.12), transparent 42%);
  pointer-events: none;
}

.feature-card span {
  position: relative;
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.feature-card h3,
.feature-card p {
  position: relative;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  color: var(--title-color);
}

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

.info-card h3 {
  margin-bottom: 0.45rem;
  color: var(--title-color);
}

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

.characters {
  margin-top: 54px;
}

.characters > h3 {
  margin-bottom: 18px;
  font-size: 1.55rem;
}

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

.character-grid article {
  position: relative;
  padding: 1rem;
  overflow: hidden;
}

.character-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--sky), var(--petal));
}

.character-grid span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-dark);
  font-weight: 800;
}

.character-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 1.3rem;
}

.steps article {
  position: relative;
  padding: 1rem;
  border-left: 4px solid rgba(183, 111, 115, 0.48);
}

.steps strong {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  line-height: 1;
}

.steps h3 {
  color: var(--title-color);
}

.steps p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: start;
  margin-top: 64px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

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

.route-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3.2rem;
  counter-increment: route;
  background:
    linear-gradient(90deg, rgba(95, 127, 106, 0.12), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.74);
}

.route-list li::before {
  content: counter(route);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-family: "Microsoft YaHei", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.route-list span {
  display: block;
  color: var(--title-color);
  font-weight: 800;
}

.route-list small {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline article {
  position: relative;
  padding: 1.2rem 1.25rem 1.2rem 1.5rem;
  border-left: 4px solid var(--green);
}

.timeline time {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: var(--rose);
  font-family: "Microsoft YaHei", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.timeline h3 {
  color: var(--title-color);
}

.timeline p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 42px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

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

.faq-list details {
  padding: 0.95rem 1.1rem;
  border-left: 4px solid rgba(143, 182, 200, 0.55);
}

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

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

.faq-list p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #25343a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
}

.footer-grid p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .site-header {
    justify-content: space-between;
    padding: 0 20px;
  }

  .brand {
    margin-left: 0;
  }

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

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 0;
    padding: 0.65rem;
    color: var(--ink);
    background: rgba(250, 250, 245, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-right: 0;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .site-nav a {
    padding: 0.8rem 0.75rem;
  }

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

  .nav-download {
    width: 100%;
    margin-top: 0.35rem;
  }

  .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 {
    min-height: 86vh;
  }

  .hero-content {
    padding-bottom: 36px;
  }

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

  .intro-grid,
  .split-layout,
  .split-layout.reverse,
  .audience-panel,
  .route-layout,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .section-inner {
    width: min(100% - 28px, 1160px);
  }

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

  .hero {
    min-height: 84vh;
  }

  .hero-bg img {
    object-position: 55% center;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 56px);
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.35rem);
  }

  h2 {
    font-size: 1.8rem;
  }

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

  .btn {
    width: 100%;
  }

  .floating-download {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    min-height: 46px;
  }

  .hero-facts,
  .system-grid,
  .features-grid,
  .character-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .media-panel img,
  .wide-image img,
  .gallery-grid img {
    aspect-ratio: 4 / 3;
  }

  .route-layout {
    gap: 22px;
    margin-top: 42px;
    padding-top: 30px;
  }
}
