@charset "UTF-8";

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

:root {
  --brand: #ff6a1a;
  --brand-dark: #db4f00;
  --blue: #169ee8;
  --blue-soft: #e9f7ff;
  --ink: #17202b;
  --muted: #687486;
  --line: #dfe5eb;
  --paper: #fffdf9;
  --paper-warm: #fff6ed;
  --surface: #ffffff;
  --footer: #20262d;
  --success: #198754;
  --header-height: 76px;
  --content-width: 1200px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px rgba(31, 42, 55, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

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

body.nav-open {
  overflow: hidden;
}

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

button,
select {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
  cursor: pointer;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(32, 38, 45, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  background: #ffffff;
  object-fit: contain;
}

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

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 4px;
  color: #dce3ea;
  font-size: 12px;
  white-space: nowrap;
}

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

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #e8edf2;
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: #ffffff;
}

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

.mobile-actions {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 8px;
}

.mobile-get {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-icon {
  display: block;
  width: 22px;
  height: 22px;
  background-image: url("../icons/menu.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 704px;
  background:
    linear-gradient(115deg, rgba(255, 106, 26, 0.13), transparent 44%),
    repeating-linear-gradient(-35deg, transparent 0 34px, rgba(255, 106, 26, 0.025) 34px 35px),
    var(--paper-warm);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -8%;
  width: 42%;
  height: 100%;
  background: rgba(255, 255, 255, 0.72);
  content: "";
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

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

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 70px 0;
}

.hero-watermark {
  position: absolute;
  z-index: -1;
  top: 18px;
  left: -118px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.08;
  object-fit: contain;
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.hero h1 {
  margin-top: 22px;
  color: #18283a;
  font-size: clamp(36px, 3.15vw, 50px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.hero-lead {
  max-width: 640px;
  margin-top: 24px;
  color: #536174;
  font-size: 18px;
  line-height: 1.85;
}

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

.hero-tags li {
  padding: 7px 13px;
  border: 1px solid rgba(255, 106, 26, 0.32);
  border-radius: 8px 8px 8px 2px;
  color: #a9450f;
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.hero-action {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
}

.primary-button,
.download-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 26px;
  border-radius: 16px 16px 16px 4px;
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(255, 106, 26, 0.24);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 160ms ease, transform 160ms ease;
}

.primary-button:hover,
.primary-button:focus-visible,
.download-button:hover,
.download-button:focus-visible {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.age-label {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.hero-device {
  display: flex;
  align-self: end;
  justify-content: flex-end;
  padding-top: 35px;
}

.phone {
  width: 346px;
  padding: 12px;
  border: 4px solid #15191d;
  border-radius: 46px;
  background: #090c0f;
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.2);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 638px;
  padding: 18px 17px 74px;
  border-radius: 32px;
  background: #ffffff;
}

.phone-screen::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 116px;
  height: 24px;
  border-radius: 0 0 15px 15px;
  background: #090c0f;
  content: "";
  transform: translateX(-50%);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: #1d2630;
  font-size: 12px;
  font-weight: 800;
}

.phone-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 18px;
}

.phone-title strong {
  font-size: 21px;
  letter-spacing: -0.02em;
}

.phone-title span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.phone-search {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 12px;
  border-radius: 12px;
  color: #98a2ad;
  background: #f2f4f6;
  font-size: 12px;
}

.phone-tabs {
  display: grid;
  margin-top: 13px;
  grid-template-columns: repeat(4, 1fr);
  color: #647081;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.phone-tabs span {
  position: relative;
  padding-bottom: 8px;
}

.phone-tabs .is-current {
  color: var(--brand);
}

.phone-tabs .is-current::after {
  position: absolute;
  right: 13px;
  bottom: 0;
  left: 13px;
  height: 2px;
  background: var(--brand);
  content: "";
}

.phone-feature {
  display: grid;
  min-height: 130px;
  margin-top: 14px;
  padding: 18px;
  overflow: hidden;
  grid-template-columns: 1fr 92px;
  align-items: center;
  border-radius: 18px 18px 18px 5px;
  background: linear-gradient(130deg, #fff1e7, #ffe1ce);
}

.phone-feature div {
  display: flex;
  flex-direction: column;
}

.phone-feature small {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.phone-feature strong {
  margin-top: 5px;
  font-size: 19px;
}

.phone-feature span {
  margin-top: 7px;
  color: #6d5b51;
  font-size: 12px;
}

.phone-feature img {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: #ffffff;
  object-fit: contain;
}

.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.phone-section-title strong {
  font-size: 14px;
}

.phone-section-title span {
  color: #7d8793;
  font-size: 12px;
}

.phone-comics {
  display: grid;
  gap: 9px;
  margin-top: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.phone-comics article {
  min-width: 0;
}

.phone-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background: #f2f3f5;
}

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

.phone-comics strong,
.phone-comics span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-comics strong {
  margin-top: 6px;
  font-size: 12px;
}

.phone-comics span {
  color: var(--blue);
  font-size: 12px;
}

.phone-bottom-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 62px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid #e7eaee;
  color: #828c98;
  background: #ffffff;
}

.phone-bottom-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  line-height: 1.25;
}

.phone-bottom-nav b {
  font-size: 16px;
}

.phone-bottom-nav .is-current {
  color: var(--brand);
}

.page-section {
  padding: 104px 0;
}

.page-section:nth-of-type(odd) {
  background: #ffffff;
}

.section-heading {
  display: grid;
  max-width: 780px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 16px;
  margin-bottom: 38px;
}

.section-index {
  grid-column: 1 / -1;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.section-heading h2,
.download-copy h2 {
  position: relative;
  padding-left: 16px;
  color: #172535;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.section-heading h2::before,
.download-copy h2::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 5px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
}

.section-heading p {
  color: var(--muted);
  font-size: 15px;
}

.panel-title {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-title strong {
  font-size: 16px;
}

.panel-title span {
  color: var(--muted);
  font-size: 12px;
}

.discover-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.65fr 0.9fr;
  gap: 16px;
}

.filter-panel,
.recommend-panel,
.ranking-panel,
.shelf-panel,
.cache-panel,
.network-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(31, 42, 55, 0.045);
}

.filter-panel,
.ranking-panel {
  padding: 24px;
}

.recommend-panel {
  padding: 24px;
}

.filter-group {
  padding-top: 20px;
}

.filter-group + .filter-group {
  margin-top: 20px;
  border-top: 1px solid #edf0f3;
}

.filter-group h3 {
  margin-bottom: 11px;
  font-size: 13px;
}

.chip-row,
.status-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.status-option {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #5c6877;
  background: #f1f4f6;
  font-size: 12px;
  font-weight: 700;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.chip:hover,
.chip:focus-visible,
.chip.is-active,
.status-option:hover,
.status-option:focus-visible,
.status-option.is-active {
  border-color: var(--brand);
  color: #ffffff;
  background: var(--brand);
}

.mood-radar {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mood {
  min-height: 40px;
  color: #647081;
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.mood:nth-child(odd) {
  border-right: 1px solid var(--line);
}

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

.mood.is-active,
.mood:hover,
.mood:focus-visible {
  color: var(--brand-dark);
  background: var(--paper-warm);
}

.comic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.comic-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #edf0f3;
  border-radius: 14px;
  background: #ffffff;
}

.comic-card[hidden] {
  display: none;
}

.cover-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 6px;
  background: #f4f6f8;
}

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

.comic-meta {
  padding: 12px;
}

.comic-meta span,
.comic-meta strong,
.comic-meta small {
  display: block;
}

.comic-meta span {
  color: var(--muted);
  font-size: 12px;
}

.comic-meta strong {
  margin-top: 4px;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comic-meta small {
  margin-top: 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.ranking-list {
  margin-top: 10px;
}

.ranking-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #edf0f3;
}

.ranking-list li:last-child {
  border-bottom: 0;
}

.ranking-list b {
  display: grid;
  width: 44px;
  height: 30px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 999px;
  color: var(--brand);
  background: var(--paper-warm);
  font-size: 12px;
}

.ranking-list span {
  font-size: 13px;
  font-weight: 800;
}

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

.route-section {
  background: #f6f9fc;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
}

.week-route {
  display: grid;
  overflow-x: auto;
  grid-template-columns: repeat(7, minmax(108px, 1fr));
  gap: 8px;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.day-card {
  min-height: 220px;
  padding: 13px 10px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.day-card:hover,
.day-card:focus-visible,
.day-card.is-active {
  border-color: var(--brand);
  box-shadow: 0 12px 24px rgba(255, 106, 26, 0.12);
  transform: translateY(-2px);
}

.day-card > span,
.day-card strong,
.day-card small {
  display: block;
}

.day-card > span {
  color: #4d5b6b;
  font-size: 13px;
  font-weight: 900;
}

.day-card img {
  width: 66px;
  height: 88px;
  margin: 12px auto 10px;
  border-radius: 7px;
  background: #f0f2f5;
  object-fit: contain;
}

.day-card strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.day-card small {
  margin-top: 5px;
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
}

.day-card.is-active > span {
  color: var(--brand);
}

.reminder-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  border: 1px solid #b9e1fb;
  border-radius: var(--radius-md);
  background: var(--blue-soft);
}

.bell-mark {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 14px 14px 18px 18px;
  background: var(--blue);
}

.bell-mark::before {
  position: absolute;
  bottom: -5px;
  left: 15px;
  width: 12px;
  height: 6px;
  border-radius: 0 0 8px 8px;
  background: var(--blue);
  content: "";
}

.reminder-card > span {
  margin-top: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.reminder-card strong {
  margin-top: 4px;
  font-size: 19px;
}

.reminder-card p {
  margin-top: 8px;
  color: #5c7182;
  font-size: 13px;
}

.library-grid {
  display: grid;
  grid-template-columns: 176px minmax(0, 1.4fr) minmax(0, 1.05fr) 190px;
  gap: 16px;
}

.shelf-menu {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.shelf-tab {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #edf0f3;
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.shelf-tab:last-child {
  border-bottom: 0;
}

.shelf-tab small {
  color: #8b95a0;
  font-size: 12px;
}

.shelf-tab:hover,
.shelf-tab:focus-visible,
.shelf-tab.is-active {
  color: #ffffff;
  background: var(--brand);
}

.shelf-tab:hover small,
.shelf-tab:focus-visible small,
.shelf-tab.is-active small {
  color: #ffffff;
}

.shelf-panel,
.cache-panel,
.network-panel {
  padding: 22px;
}

.shelf-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.shelf-covers article {
  min-width: 0;
}

.shelf-covers img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  background: #f3f4f6;
  object-fit: contain;
}

.shelf-covers strong,
.shelf-covers span {
  display: block;
}

.shelf-covers strong {
  margin-top: 7px;
  font-size: 13px;
}

.shelf-covers span {
  color: var(--muted);
  font-size: 12px;
}

.cache-item {
  display: grid;
  grid-template-columns: 42px 1fr 36px;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
}

.cache-item > img {
  width: 42px;
  height: 56px;
  border-radius: 6px;
  background: #f1f3f5;
  object-fit: contain;
}

.cache-item strong,
.cache-item span {
  display: block;
}

.cache-item strong {
  font-size: 13px;
}

.cache-item span {
  color: var(--muted);
  font-size: 12px;
}

.progress {
  height: 5px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf1;
}

.progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.cache-toggle {
  width: 34px;
  height: 34px;
  border: 1px solid #cbd5df;
  border-radius: 50%;
  color: #516173;
  background: #ffffff;
  font-size: 12px;
}

.cache-toggle:hover,
.cache-toggle:focus-visible,
.cache-toggle[aria-pressed="true"] {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.network-panel label {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.network-panel select {
  width: 100%;
  min-height: 40px;
  margin-top: 6px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: #ffffff;
  font-size: 12px;
}

.network-panel select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 158, 232, 0.13);
}

.showcase-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 72%, rgba(255, 106, 26, 0.09), transparent 18%),
    radial-gradient(circle at 97% 30%, rgba(22, 158, 232, 0.08), transparent 17%),
    #ffffff;
}

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

.screen-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(31, 42, 55, 0.08);
}

.screen-viewport {
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 10px;
  background: #f5f6f8;
}

.screen-viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen-card figcaption {
  display: flex;
  min-height: 78px;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

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

.screen-card figcaption span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  background: #f6f9fc;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.faq-item summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary i {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: var(--paper-warm);
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] {
  border-color: rgba(255, 106, 26, 0.5);
}

.faq-item[open] summary {
  color: var(--brand-dark);
}

.faq-item[open] summary i {
  color: #ffffff;
  background: var(--brand);
}

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

.faq-answer p {
  padding-top: 16px;
  border-top: 1px solid #edf0f3;
  color: #596777;
  font-size: 14px;
}

.faq-answer a {
  color: var(--blue);
  font-weight: 800;
  word-break: break-all;
}

.official-site {
  margin-top: 8px;
  border-color: #b9c3ce;
  background: transparent;
}

.reviews-section {
  background: #ffffff;
}

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

.review-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px 16px 16px 4px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 42, 55, 0.05);
}

.review-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid #edf0f3;
}

.review-identity {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.review-identity strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-avatar {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid #ffd1b8;
  border-radius: 50%;
  background-color: var(--paper-warm);
  background-image: url("../icons/avatar.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 29px;
}

.review-stars {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  color: var(--brand);
  font-size: 14px;
  line-height: 1;
}

.aiarticle-comment-rating-icon {
  font-style: normal;
}

.fa-star.aiarticle-comment-rating-icon::before {
  content: "★";
}

.fa-star-o.aiarticle-comment-rating-icon::before {
  content: "☆";
}

.review-card > p {
  margin-top: 16px;
  color: #4f5d6d;
  font-size: 14px;
  line-height: 1.8;
}

.review-card > time {
  margin-top: auto;
  padding-top: 18px;
  color: #8a95a1;
  font-size: 12px;
  text-align: right;
}

.download-section {
  padding: 0 0 104px;
  background: #ffffff;
}

.download-ticket {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.9fr) auto;
  align-items: center;
  gap: 38px;
  padding: 46px 52px;
  border: 1px solid #ffd3bb;
  border-radius: 24px 24px 24px 6px;
  background:
    repeating-linear-gradient(-40deg, transparent 0 30px, rgba(255, 106, 26, 0.035) 30px 31px),
    var(--paper-warm);
}

.download-ticket::after {
  position: absolute;
  top: -78px;
  right: 29%;
  width: 156px;
  height: 156px;
  border: 1px solid rgba(255, 106, 26, 0.18);
  border-radius: 50%;
  content: "";
}

.download-copy {
  position: relative;
  z-index: 1;
}

.download-copy h2 {
  margin-top: 8px;
  font-size: 30px;
  white-space: nowrap;
}

.download-copy p {
  max-width: 530px;
  margin-top: 14px;
  color: #667282;
  font-size: 14px;
}

.download-route {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.download-route li {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 12px;
  color: #344251;
  font-size: 13px;
  font-weight: 700;
}

.download-route b {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border: 1px solid rgba(255, 106, 26, 0.4);
  border-radius: 50%;
  color: var(--brand);
  background: #ffffff;
  font-size: 12px;
}

.download-button {
  position: relative;
  z-index: 1;
}

.site-footer {
  color: #ffffff;
  background: var(--footer);
}

.footer-inner {
  padding: 42px 0 24px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

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

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.95);
  color: #aeb7c0;
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px 14px 14px 4px;
  opacity: 0;
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 12px 24px rgba(25, 33, 42, 0.2);
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

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

:focus-visible {
  outline: 3px solid rgba(22, 158, 232, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 32px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .discover-grid {
    grid-template-columns: 0.78fr 1.45fr;
  }

  .ranking-panel {
    grid-column: 1 / -1;
  }

  .ranking-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .ranking-list li {
    border-bottom: 0;
  }

  .library-grid {
    grid-template-columns: 160px minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .network-panel {
    grid-column: 2 / -1;
  }

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

  .download-button {
    justify-self: end;
  }
}

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

  html,
  body {
    width: 100%;
    min-width: 320px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: auto;
    max-width: none;
    margin-right: 16px;
    margin-left: 16px;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    width: auto;
    max-width: none;
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 11px;
  }

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

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

  .mobile-actions {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0 0 16px 16px;
    background: #262d35;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
  }

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

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    min-height: 46px;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .primary-nav li:last-child .nav-link {
    border-bottom: 0;
  }

  .nav-link::after {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    display: flex;
    width: auto;
    min-height: auto;
    flex-direction: column;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 72px 0 28px;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
    white-space: normal;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

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

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

  .hero-device {
    width: 100%;
    align-self: auto;
    justify-content: center;
    padding: 18px 0 64px;
  }

  .phone {
    width: 332px;
  }

  .phone-screen {
    min-height: 610px;
  }

  .discover-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .recommend-panel,
  .ranking-panel,
  .shelf-panel,
  .cache-panel,
  .network-panel {
    min-width: 0;
  }

  .ranking-panel {
    grid-column: auto;
  }

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

  .route-layout {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .week-route {
    width: 100%;
    max-width: 100%;
  }

  .reminder-card {
    min-height: 170px;
  }

  .library-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .shelf-menu {
    grid-row: span 2;
  }

  .network-panel {
    grid-column: auto;
  }

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

  .download-ticket {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px;
  }

  .download-button {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .page-section {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .download-copy h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .ranking-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ranking-list li {
    border-bottom: 1px solid #edf0f3;
  }

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

  .shelf-menu {
    display: grid;
    grid-row: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .shelf-tab:nth-child(odd) {
    border-right: 1px solid #edf0f3;
  }

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

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

  .review-card {
    min-height: 190px;
  }

  .download-section {
    padding-bottom: 78px;
  }

  .download-copy h2 {
    white-space: normal;
  }

  .download-route {
    gap: 6px;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .container {
    width: auto;
    margin-right: 12px;
    margin-left: 12px;
  }

  .header-inner {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 6px;
  }

  .brand-copy {
    flex: 0 1 auto;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-width: 1px;
    border-radius: 10px;
  }

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

  .brand-copy small {
    margin-top: 2px;
    font-size: 12px;
  }

  .mobile-actions {
    gap: 5px;
  }

  .mobile-get {
    min-height: 36px;
    padding: 0 25px;
    font-size: 12px;
  }

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

  .primary-nav {
    right: 10px;
    left: 10px;
  }

  .hero-copy {
    padding-top: 58px;
  }

  .hero-watermark {
    top: 32px;
    left: 50%;
    width: 230px;
    height: 230px;
    transform: translateX(-50%);
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: 31px;
    line-height: 1.3;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-tags {
    gap: 7px;
  }

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

  .phone {
    width: 100%;
    max-width: 322px;
    padding: 9px;
    border-width: 3px;
    border-radius: 40px;
  }

  .phone-screen {
    min-height: 590px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .filter-panel,
  .recommend-panel,
  .ranking-panel,
  .shelf-panel,
  .cache-panel,
  .network-panel {
    padding: 18px;
  }

  .comic-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(126px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .comic-card {
    scroll-snap-align: start;
  }

  .week-route {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(7, 104px);
  }

  .shelf-covers {
    gap: 8px;
  }

  .showcase-grid {
    gap: 8px;
  }

  .screen-viewport {
    padding: 6px;
  }

  .screen-card figcaption {
    min-height: 72px;
    padding: 10px;
  }

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

  .faq-item summary {
    min-height: 58px;
    padding: 0 16px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 16px 18px;
  }

  .download-ticket {
    padding: 28px 22px;
  }

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

  .download-button {
    width: 100%;
  }

  .footer-inner {
    padding-top: 34px;
  }

  .footer-nav {
    gap: 12px 20px;
  }

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

@media (max-width: 360px) {
  .brand-copy strong {
    font-size: 13px;
  }

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

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

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

  .hero h1 {
    font-size: 28px;
  }

  .primary-button,
  .download-button {
    min-height: 50px;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  summary,
  select {
    transition: none !important;
    animation: none !important;
  }

  .primary-button:hover,
  .download-button:hover,
  .day-card:hover {
    transform: none;
  }
}
