@charset "UTF-8";

@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.woff2") format("woff2"), url("../fonts/fontawesome-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --banana: #ffd92f;
  --banana-deep: #f5bd00;
  --banana-soft: #fff5ad;
  --cream: #fffaf0;
  --paper: #f7f2e7;
  --ink: #17160f;
  --ink-soft: #39372c;
  --muted: #746f5e;
  --white: #ffffff;
  --line: #ded6c3;
  --orange: #ff7a32;
  --green: #4e8a5c;
  --shadow: 8px 8px 0 rgba(23, 22, 15, 0.12);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

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

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.site-shell {
  min-height: 100vh;
}

.page-width,
.header-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 250, 240, 0.96);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.99);
  box-shadow: 0 8px 24px rgba(23, 22, 15, 0.1);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 34px;
}

.brand,
.footer-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand-logo,
.footer-brand img {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: var(--white);
  object-fit: contain;
}

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

.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.02em;
}

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

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 10px 12px;
  border-radius: 5px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 3px;
  background: var(--banana-deep);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  background: var(--banana-soft);
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-download,
.mobile-download,
.primary-action,
.download-action a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: var(--banana);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 800;
}

.header-download {
  padding: 8px 16px;
  font-size: 14px;
}

.mobile-download,
.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: calc(var(--header-height) + 62px) 0 62px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background-color: var(--cream);
  background-image: radial-gradient(rgba(23, 22, 15, 0.11) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 72%, rgba(255, 217, 47, 0.27) 72% 100%);
  background-position: 0 0, center;
  background-size: 13px 13px, cover;
}

.hero::before {
  position: absolute;
  top: 120px;
  left: -80px;
  width: 250px;
  height: 250px;
  border: 30px solid rgba(255, 217, 47, 0.46);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 578px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 60px;
}

.hero-copy {
  padding: 16px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(62px, 6.4vw, 96px);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.98;
  text-shadow: 5px 5px 0 var(--banana);
}

.hero h1::after {
  position: absolute;
  right: -26px;
  bottom: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-slogan {
  margin: 22px 0 14px;
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.hero-description {
  max-width: 590px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.hero-tags {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  display: inline-flex;
  min-height: 40px;
  padding: 6px 12px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.ui-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-search { background-image: url("../icons/search.svg"); }
.icon-grid { background-image: url("../icons/grid.svg"); }
.icon-book { background-image: url("../icons/book.svg"); }
.icon-clock { background-image: url("../icons/clock.svg"); }
.icon-bell { background-image: url("../icons/bell.svg"); }
.icon-bookmark { background-image: url("../icons/bookmark.svg"); }
.icon-download { background-image: url("../icons/download.svg"); }

.hero-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.primary-action {
  min-height: 52px;
  padding: 10px 22px;
  font-size: 15px;
}

.header-download:hover,
.primary-action:hover,
.download-action a:hover {
  background: var(--white);
}

.age-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.banana-orbit {
  position: absolute;
  top: 32px;
  right: 3px;
  width: 475px;
  height: 420px;
  border: 68px solid var(--banana);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(9px 11px 0 rgba(23, 22, 15, 0.14));
  transform: rotate(16deg);
}

.banana-orbit::after {
  position: absolute;
  right: 22px;
  bottom: 3px;
  width: 46px;
  height: 18px;
  border: 3px solid var(--ink);
  border-radius: 5px;
  background: var(--banana-deep);
  content: "";
  transform: rotate(-18deg);
}

.discovery-board {
  position: absolute;
  z-index: 2;
  top: 64px;
  left: 0;
  width: 390px;
  min-height: 400px;
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.board-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 950;
}

.search-preview {
  margin-top: 15px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: #aaa38f;
  font-size: 12px;
}

.board-tabs {
  display: grid;
  margin-top: 12px;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.board-tabs span {
  padding: 6px 2px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--cream);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.board-tabs .is-active {
  border-color: var(--ink);
  background: var(--banana);
}

.board-content {
  display: grid;
  margin-top: 16px;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.board-feature {
  padding: 10px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--banana-soft);
}

.cover-frame {
  overflow: hidden;
  border-radius: 5px;
  background: #eee7da;
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.board-feature .cover-frame {
  width: 100%;
  height: 150px;
}

.board-feature small,
.board-feature strong,
.board-feature p,
.board-feature span {
  display: block;
}

.board-feature small {
  margin-top: 9px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.board-feature strong {
  margin-top: 2px;
  font-size: 16px;
}

.board-feature p,
.board-feature span {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.mini-ranking p {
  display: flex;
  margin: 0 0 8px;
  padding: 9px 7px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
}

.mini-ranking b {
  color: var(--orange);
  font-size: 12px;
}

.mini-ranking span {
  font-size: 12px;
  font-weight: 800;
}

.mini-ranking small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.route-note {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 70px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: var(--orange);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  transform: rotate(5deg);
}

.route-note-one {
  top: 32px;
  right: 62px;
}

.route-note-two {
  right: 8px;
  bottom: 65px;
  background: var(--green);
  transform: rotate(-7deg);
}

.mascot-card {
  position: absolute;
  z-index: 4;
  right: 44px;
  bottom: 10px;
  display: flex;
  width: 205px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.mascot-card img {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  object-fit: contain;
}

.section {
  padding: 92px 0;
}

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

.heading-with-tabs {
  align-items: center;
}

.section-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.section-index {
  color: var(--ink);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 46px;
  font-weight: 950;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 1;
}

.section-title-wrap > div {
  padding-left: 18px;
  border-left: 5px solid var(--banana-deep);
}

.section-heading h2,
.download-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.section-heading p:not(.section-kicker) {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab-list button,
.filter-options button,
.shelf-book button {
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.tab-list button.is-active,
.filter-options button.is-active,
.shelf-book button[aria-pressed="true"] {
  background: var(--banana);
  box-shadow: 3px 3px 0 var(--ink);
}

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

.fresh-layout {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 22px;
}

.comic-card,
.taste-card,
.shelf-card,
.review-card,
.faq-item,
.official-site,
.screenshot-card {
  border-radius: 5px;
}

.comic-card {
  border: 1px solid var(--line);
  background: var(--cream);
}

.feature-comic {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: 18px;
  grid-template-columns: minmax(170px, 0.88fr) minmax(160px, 1.12fr);
  gap: 22px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.feature-comic > .cover-frame {
  height: 392px;
}

.comic-card-copy {
  display: flex;
  padding: 24px 4px 18px 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.comic-badge {
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.comic-meta {
  margin: 15px 0 3px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.comic-card h3,
.taste-card h3,
.shelf-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.comic-card-copy > p:not(.comic-meta) {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.update-line {
  padding: 7px 10px;
  border-left: 4px solid var(--banana-deep);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
}

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

.small-comic {
  display: grid;
  min-height: 208px;
  padding: 13px;
  align-items: center;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
}

.small-comic .cover-frame {
  height: 178px;
}

.small-comic .comic-meta {
  margin-top: 0;
}

.small-comic h3 {
  font-size: 17px;
}

.small-comic span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.section-flavors {
  position: relative;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background-color: var(--banana);
  background-image: radial-gradient(rgba(23, 22, 15, 0.14) 1px, transparent 1px);
  background-size: 12px 12px;
}

.flavor-workbench {
  display: grid;
  padding: 18px;
  border: 3px solid var(--ink);
  border-radius: 5px;
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--ink);
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
}

.filter-panel {
  padding: 28px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
}

.filter-group + .filter-group {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed #777262;
}

.filter-group strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-options button {
  min-height: 34px;
  padding: 5px 10px;
  border-color: #777262;
  background: #29271f;
  color: var(--white);
}

.filter-options button.is-active {
  border-color: var(--banana);
  background: var(--banana);
  box-shadow: none;
  color: var(--ink);
}

.filter-status {
  margin: 26px 0 0;
  padding: 12px;
  border-radius: 5px;
  background: var(--banana);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.recommendation-stage {
  display: grid;
  min-height: 430px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.taste-card {
  display: grid;
  min-height: 205px;
  padding: 12px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
}

.taste-card .cover-frame {
  height: 178px;
}

.taste-card > div:last-child > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.taste-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.empty-result {
  display: grid;
  min-height: 200px;
  padding: 30px;
  place-items: center;
  border: 2px dashed var(--ink);
  border-radius: 5px;
  background: var(--banana-soft);
  font-weight: 800;
  text-align: center;
}

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

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

.shelf-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--white);
}

.shelf-card-head {
  display: grid;
  min-height: 58px;
  padding: 12px;
  align-items: center;
  border-bottom: 2px solid var(--ink);
  background: var(--banana);
  grid-template-columns: 24px 1fr auto;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
}

.shelf-card-head b {
  font-size: 18px;
  font-style: italic;
}

.shelf-book {
  display: grid;
  padding: 16px;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 13px;
}

.shelf-book .cover-frame {
  height: 132px;
}

.shelf-book h3 {
  font-size: 15px;
}

.shelf-book p {
  margin: 8px 0;
  color: var(--muted);
  font-size: 12px;
}

.shelf-book span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.shelf-book button {
  min-height: 34px;
  padding: 5px 8px;
}

.section-screens {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.section-screens .section-index,
.section-screens .section-heading h2 {
  color: var(--white);
}

.section-screens .section-heading p:not(.section-kicker) {
  color: #c7c0ad;
}

.screenshot-track {
  display: flex;
  padding: 8px 0 18px;
  gap: 50px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--banana) #2e2b21;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.screenshot-card {
  position: relative;
  flex: 0 0 250px;
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-image {
  width: 250px;
  height: 450px;
  overflow: hidden;
  border: 3px solid var(--banana);
  border-radius: 5px;
  background: #26231a;
  box-shadow: 8px 8px 0 rgba(255, 217, 47, 0.24);
}

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

.screenshot-card figcaption {
  display: flex;
  padding-top: 16px;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
}

.screenshot-card figcaption b {
  color: var(--banana);
  font-size: 12px;
}

.section-reviews {
  border-bottom: 2px solid var(--ink);
  background-color: var(--cream);
  background-image: linear-gradient(135deg, transparent 74%, rgba(255, 217, 47, 0.2) 74%);
}

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

.review-card {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--banana);
}

.review-card:nth-child(3n + 2) {
  transform: translateY(14px);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background-color: var(--banana);
  background-image: url("../icons/avatar.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.review-head strong,
.review-rating {
  display: block;
}

.review-head strong {
  font-size: 14px;
}

.review-rating {
  color: var(--banana-deep);
  font-family: "FontAwesome", sans-serif;
  font-size: 13px;
}

.review-rating .fa {
  font-family: "FontAwesome", sans-serif;
  font-style: normal;
}

.review-card > p {
  margin: 22px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.review-card time {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: var(--muted);
  font-size: 12px;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 72px;
}

.faq-main .section-heading {
  margin-bottom: 34px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.faq-item,
.official-site {
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--cream);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button,
.official-site summary {
  display: flex;
  width: 100%;
  min-height: 62px;
  padding: 15px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
}

.faq-item button i,
.official-site summary i {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.faq-item button i::before,
.faq-item button i::after,
.official-site summary i::before,
.official-site summary i::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.faq-item button i::after,
.official-site summary i::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item button[aria-expanded="true"],
.official-site[open] summary {
  background: var(--banana);
}

.faq-item button[aria-expanded="true"] i::after,
.official-site[open] summary i::after {
  transform: rotate(0);
}

.faq-answer,
.official-site > p {
  padding: 16px 18px 19px;
  border-top: 1px dashed var(--line);
  background: var(--white);
}

.faq-answer p,
.official-site > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.official-site summary {
  list-style: none;
}

.official-site summary::-webkit-details-marker {
  display: none;
}

.official-site a {
  color: #a14b00;
  font-weight: 800;
  text-decoration: underline;
}

.faq-illustration {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: flex;
  height: 450px;
  padding: 38px;
  align-self: start;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 5px;
  background-color: var(--banana);
  background-image: radial-gradient(rgba(23, 22, 15, 0.18) 1px, transparent 1px);
  background-size: 12px 12px;
  box-shadow: var(--shadow);
  text-align: center;
}

.faq-illustration img {
  width: 130px;
  height: 130px;
  border: 3px solid var(--ink);
  border-radius: 5px;
  background: var(--white);
  object-fit: contain;
  transform: rotate(-5deg);
}

.question-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 78px;
  font-weight: 950;
  line-height: 1;
  opacity: 0.18;
  transform: rotate(8deg);
}

.faq-illustration strong {
  margin-top: 28px;
  font-size: 22px;
}

.faq-illustration p {
  margin: 8px 0 0;
  font-size: 13px;
}

.section-download {
  padding-top: 20px;
  background: var(--white);
}

.download-band {
  display: grid;
  min-height: 310px;
  padding: 42px 50px;
  align-items: center;
  border: 3px solid var(--ink);
  border-radius: 5px;
  background-color: var(--banana);
  background-image: radial-gradient(rgba(23, 22, 15, 0.14) 1px, transparent 1px);
  background-size: 14px 14px;
  box-shadow: 10px 10px 0 var(--ink);
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 38px;
}

.download-logo {
  width: 150px;
  height: 150px;
  border: 3px solid var(--ink);
  border-radius: 5px;
  background: var(--white);
  object-fit: contain;
  transform: rotate(-4deg);
}

.download-copy .section-kicker {
  color: #9b4300;
}

.download-copy h2 {
  font-size: 48px;
}

.download-copy > p:not(.section-kicker) {
  max-width: 570px;
  margin: 10px 0 0;
  font-size: 14px;
}

.download-points {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.download-points span {
  padding: 5px 9px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
}

.download-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.download-action a {
  min-height: 54px;
  padding: 10px 20px;
  background: var(--white);
  white-space: nowrap;
}

.download-action a:hover {
  background: var(--cream);
}

.download-action small {
  font-size: 12px;
}

.site-footer {
  margin-top: 92px;
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: grid;
  min-height: 122px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 30px;
}

.footer-inner .footer-brand {
  justify-self: start;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-color: var(--banana);
}

.footer-brand span {
  font-size: 15px;
  font-weight: 900;
}

.footer-nav {
  justify-self: center;
}

.footer-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
}

.footer-nav a {
  color: #c7c0ad;
  font-size: 12px;
}

.footer-nav a:hover {
  color: var(--banana);
  text-decoration: underline;
}

.footer-inner p {
  margin: 0;
  flex: 0 0 auto;
  justify-self: end;
  color: #c7c0ad;
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: var(--banana);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top i {
  width: 22px;
  height: 22px;
  background-image: url("../icons/top.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 18px;
  }

  .site-nav a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 13px;
  }

  .header-download {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
    gap: 30px;
  }

  .fresh-layout {
    grid-template-columns: 1fr;
  }

  .feature-comic {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .feature-comic > .cover-frame {
    height: 360px;
  }

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

  .screenshot-track {
    gap: 28px;
  }

  .download-band {
    grid-template-columns: 130px minmax(0, 1fr) auto;
    gap: 24px;
  }

  .download-logo {
    width: 125px;
    height: 125px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .page-width,
  .header-inner {
    width: min(780px, calc(100% - 34px));
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    padding: 14px 17px 20px;
    overflow-y: auto;
    border-bottom: 2px solid var(--ink);
    background: var(--cream);
  }

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

  .site-nav ul {
    width: min(100%, 780px);
    margin: 0 auto;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px 14px;
    font-size: 14px;
  }

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

  .header-actions {
    margin-left: auto;
  }

  .header-download {
    display: none;
  }

  .mobile-download {
    display: inline-flex;
    min-height: 38px;
    padding: 6px 12px;
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 12px;
  }

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 38px;
    padding: 8px;
    align-content: center;
    border: 2px solid var(--ink);
    border-radius: 5px;
    background: var(--white);
    cursor: pointer;
    gap: 4px;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    transition: transform 160ms ease, opacity 160ms ease;
  }

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

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

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: min(100%, 640px);
    min-height: 520px;
    margin: 0 auto;
  }

  .discovery-board {
    left: 30px;
    width: 400px;
  }

  .banana-orbit {
    right: 30px;
  }

  .flavor-workbench {
    grid-template-columns: 1fr;
  }

  .recommendation-stage {
    min-height: auto;
  }

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

  .review-card:nth-child(3n + 2) {
    transform: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-illustration {
    position: relative;
    top: auto;
    height: 300px;
  }

  .download-band {
    padding: 36px;
    grid-template-columns: 120px 1fr;
  }

  .download-action {
    align-items: flex-start;
    grid-column: 2;
  }

  .footer-inner {
    display: flex;
    padding: 28px 0;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-inner .footer-brand {
    justify-self: auto;
  }

  .footer-nav {
    width: 100%;
    margin-left: 0;
    justify-self: auto;
  }

  .footer-nav ul {
    justify-content: center;
    gap: 10px 18px;
  }

  .footer-inner p {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    justify-self: auto;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .page-width,
  .header-inner {
    width: calc(100% - 28px);
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

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

  .brand-copy small {
    max-width: 120px;
    overflow: visible;
    font-size: 12px;
    white-space: nowrap;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading,
  .heading-with-tabs {
    margin-bottom: 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section-title-wrap {
    gap: 12px;
  }

  .section-index {
    font-size: 36px;
  }

  .section-title-wrap > div {
    padding-left: 13px;
    border-left-width: 4px;
  }

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

  .tab-list {
    width: 100%;
  }

  .tab-list button {
    flex: 1 1 auto;
  }

  .feature-comic {
    grid-template-columns: minmax(140px, 0.85fr) minmax(0, 1.15fr);
    gap: 14px;
  }

  .feature-comic > .cover-frame {
    height: 310px;
  }

  .comic-card-copy {
    padding-top: 12px;
  }

  .fresh-small-grid,
  .recommendation-stage {
    grid-template-columns: 1fr;
  }

  .small-comic,
  .taste-card {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .small-comic .cover-frame,
  .taste-card .cover-frame {
    height: 150px;
  }

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

  .screenshot-track {
    width: calc(100% + 14px);
    padding-right: 14px;
    gap: 18px;
  }

  .faq-illustration {
    height: 280px;
  }

  .download-band {
    padding: 30px;
    grid-template-columns: 94px 1fr;
    gap: 20px;
  }

  .download-logo {
    width: 94px;
    height: 94px;
  }

  .download-copy h2 {
    font-size: 37px;
  }

  .download-copy > p,
  .download-points {
    grid-column: 1 / -1;
  }

  .download-action {
    width: 100%;
    align-items: stretch;
    grid-column: 1 / -1;
    text-align: center;
  }

}

@media (max-width: 520px) {
  .header-inner {
    gap: 8px;
  }

  .brand {
    min-width: 0;
    gap: 7px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

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

  .brand-copy small {
    max-width: none;
    font-size: 12px;
    letter-spacing: -0.03em;
  }

  .header-actions {
    gap: 7px;
  }

  .mobile-download {
    min-height: 36px;
    padding: 5px 8px;
  }

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

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

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
    text-shadow: 3px 3px 0 var(--banana);
  }

  .hero-slogan {
    margin-top: 16px;
    font-size: 25px;
  }

  .hero-description {
    font-size: 14px;
  }

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

  .hero-tags span {
    padding: 5px 4px;
    justify-content: center;
    font-size: 12px;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .primary-action {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .banana-orbit {
    top: 42px;
    right: -84px;
    width: 380px;
    height: 360px;
    border-width: 56px;
  }

  .discovery-board {
    top: 50px;
    left: 0;
    width: calc(100% - 22px);
    min-height: 385px;
    padding: 16px;
  }

  .board-content {
    grid-template-columns: 1.02fr 0.98fr;
  }

  .board-feature .cover-frame {
    height: 135px;
  }

  .route-note-one {
    top: 20px;
    right: 0;
  }

  .route-note-two {
    display: none;
  }

  .mascot-card {
    right: 0;
    bottom: 16px;
    width: 190px;
  }

  .feature-comic {
    padding: 12px;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .feature-comic > .cover-frame {
    height: 240px;
  }

  .comic-card-copy {
    padding: 0;
  }

  .comic-card-copy > p:not(.comic-meta) {
    display: none;
  }

  .comic-card h3 {
    font-size: 17px;
  }

  .filter-panel {
    padding: 20px;
  }

  .flavor-workbench {
    padding: 10px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .faq-item button,
  .official-site summary {
    min-height: 58px;
    padding: 13px 14px;
  }

  .faq-illustration {
    height: 260px;
    padding: 24px;
  }

  .faq-illustration img {
    width: 100px;
    height: 100px;
  }

  .download-band {
    padding: 24px 20px;
    box-shadow: 6px 6px 0 var(--ink);
  }

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

@media (hover: none) and (pointer: coarse) {
  .site-nav a,
  .header-download,
  .primary-action,
  .download-action a,
  .tab-list button,
  .filter-options button,
  .shelf-book button,
  .menu-toggle,
  .back-to-top {
    transition: none;
  }

  .header-download:active,
  .primary-action:active,
  .download-action a:active,
  .tab-list button:active,
  .filter-options button:active,
  .shelf-book button:active {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@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;
  }
}
