@charset "UTF-8";
/* 作者：搭客佬
官网： */

:root {
  --green: #4f9f28;
  --green-dark: #174b2b;
  --green-deep: #0e3420;
  --green-soft: #eaf7d8;
  --lime: #a7d84b;
  --cream: #fbfff3;
  --paper: #ffffff;
  --ink: #17231a;
  --text: #405044;
  --muted: #77837a;
  --orange: #ff6b3d;
  --line: rgba(55, 98, 58, 0.16);
  --line-strong: rgba(55, 98, 58, 0.28);
  --page-width: 1200px;
  --header-height: 72px;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(51, 88, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  color: var(--text);
  background: var(--cream);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button,
input {
  border: 0;
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

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

section {
  scroll-margin-top: var(--header-height);
}

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

.content-section {
  position: relative;
  padding: 106px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading > span,
.section-heading-row > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-heading > p,
.section-heading-row > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading-row > p {
  max-width: 440px;
  padding-bottom: 5px;
  text-align: left;
}

.icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  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-bookmark {
  background-image: url("../icons/bookmark.svg");
}

.icon-download {
  background-image: url("../icons/download.svg");
}

.icon-arrow {
  background-image: url("../icons/arrow-right.svg");
}

.icon-bell {
  background-image: url("../icons/bell.svg");
}

.icon-heart {
  background-image: url("../icons/heart.svg");
}

.icon-route {
  background-image: url("../icons/route.svg");
}

.icon-clock {
  background-image: url("../icons/clock.svg");
}

.icon-calendar {
  background-image: url("../icons/calendar.svg");
}

.icon-globe {
  background-image: url("../icons/globe.svg");
}

.icon-top {
  background-image: url("../icons/top.svg");
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(80, 123, 57, 0.13);
  background: rgba(255, 255, 252, 0.97);
}

.header-wrap {
  display: flex;
  width: min(var(--page-width), calc(100% - 48px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin: 0 auto;
}

.site-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
}

.site-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

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

.brand-copy strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
}

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

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  border-radius: 12px;
  color: #536157;
  font-size: 14px;
  font-weight: 800;
  transition: color 160ms ease, background-color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 16px;
  bottom: 2px;
  left: 16px;
  height: 2px;
  border-radius: 2px;
  background: transparent;
  content: "";
}

.main-nav a:hover,
.main-nav a.is-current {
  color: var(--green-dark);
  background: var(--green-soft);
}

.main-nav a.is-current::after {
  background: var(--green);
}

.mobile-actions,
.mobile-get,
.menu-button {
  display: none;
}

.site-brand:focus-visible,
.main-nav a:focus-visible,
.mobile-get:focus-visible,
.primary-link:focus-visible,
.footer-links a:focus-visible,
.official-content a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 38%, rgba(168, 216, 75, 0.28), transparent 30%),
    radial-gradient(circle at 6% 8%, rgba(100, 176, 54, 0.18), transparent 20%),
    linear-gradient(135deg, #fbfff2 0%, #f2f9df 48%, #e7f5cf 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(circle, rgba(72, 118, 55, 0.15) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 708px;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  gap: 44px;
}

.hero-copy {
  padding: 78px 0 70px;
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(79, 159, 40, 0.32);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.hero-copy h1 {
  margin-top: 24px;
  color: var(--green-deep);
  font-size: clamp(66px, 7vw, 94px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.hero-slogan {
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(34px, 4.3vw, 54px);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -0.06em;
}

.hero-slogan::after {
  display: block;
  width: 154px;
  height: 6px;
  margin: 12px 0 0 170px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: rotate(-4deg);
}

.hero-summary {
  max-width: 610px;
  margin-top: 22px;
  color: #58675c;
  font-size: 17px;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.feature-chips li {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.feature-chips .icon {
  width: 17px;
  height: 17px;
}

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

.primary-link {
  display: inline-flex;
  min-width: 232px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #56ad2c, #27792f);
  box-shadow: 0 16px 32px rgba(54, 123, 44, 0.24);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.primary-link:hover {
  background: var(--green-deep);
  box-shadow: 0 18px 36px rgba(32, 80, 34, 0.3);
}

.primary-link .icon {
  width: 18px;
  height: 18px;
}

.age-label {
  margin-top: 12px;
  color: #738078;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  display: flex;
  min-width: 0;
  height: 708px;
  align-items: center;
  justify-content: flex-end;
}

.phone-frame {
  position: relative;
  z-index: 4;
  width: 334px;
  height: 650px;
  padding: 10px;
  border: 4px solid #17221b;
  border-radius: 44px;
  background: #17221b;
  box-shadow: 0 30px 74px rgba(26, 63, 32, 0.3);
}

.phone-notch {
  position: absolute;
  z-index: 6;
  top: 9px;
  left: 50%;
  width: 104px;
  height: 25px;
  border-radius: 0 0 16px 16px;
  background: #17221b;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  color: #2a332c;
  background: #ffffff;
  font-size: 12px;
}

.phone-status {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: #162019;
  font-size: 12px;
}

.phone-status span {
  letter-spacing: 4px;
}

.phone-head {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.phone-head strong {
  color: #19211b;
  font-size: 22px;
}

.phone-head .icon {
  width: 17px;
  height: 17px;
}

.phone-search {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  margin: 2px 14px 16px;
  padding: 0 13px;
  border-radius: 20px;
  color: #8a938d;
  background: #f1f3f1;
  font-size: 12px;
}

.phone-search .icon {
  width: 15px;
  height: 15px;
}

.phone-tools {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3px 10px 18px;
  text-align: center;
}

.phone-tools span {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-direction: column;
  color: #49534c;
  font-size: 12px;
}

.phone-tools i {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.tool-rank {
  background: linear-gradient(135deg, #ff657d, #f43d65);
}

.tool-member {
  background: linear-gradient(135deg, #ffb44e, #ff8f44);
}

.tool-category {
  background: linear-gradient(135deg, #7d9aff, #5878ef);
}

.tool-love {
  background: linear-gradient(135deg, #b67df6, #9262df);
}

.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 12px;
}

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

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

.phone-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 0 14px;
}

.phone-covers img {
  width: 100%;
  height: 188px;
  border-radius: 9px;
  background: #f2f4ef;
  object-fit: contain;
}

.phone-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 56px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid #eef0ed;
  color: #8c958f;
  background: rgba(255, 255, 255, 0.97);
  text-align: center;
}

.phone-bottom strong {
  color: var(--orange);
}

.pond-note {
  position: absolute;
  z-index: 5;
  top: 106px;
  right: -12px;
  color: var(--green-dark);
  font-family: KaiTi, STKaiti, serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  transform: rotate(-5deg);
}

.pond-note::after {
  display: block;
  width: 58px;
  height: 3px;
  margin: 8px 0 0 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.lily-pad,
.leaf {
  position: absolute;
  border-radius: 52% 48% 56% 44%;
  background:
    linear-gradient(42deg, transparent 48%, rgba(255, 255, 255, 0.6) 49%, transparent 51%),
    radial-gradient(circle at 32% 30%, #c8ec7d, #75b83a 62%, #3e8c31);
  box-shadow: inset 0 0 0 1px rgba(38, 104, 43, 0.12);
}

.lily-pad-one {
  z-index: 2;
  right: 5px;
  bottom: 55px;
  width: 220px;
  height: 112px;
  transform: rotate(-6deg);
}

.lily-pad-two {
  right: 255px;
  bottom: 98px;
  width: 132px;
  height: 74px;
  opacity: 0.74;
  transform: rotate(16deg);
}

.leaf-one {
  top: -60px;
  left: -80px;
  width: 220px;
  height: 150px;
  opacity: 0.38;
}

.leaf-two {
  right: -90px;
  bottom: -45px;
  width: 260px;
  height: 150px;
  opacity: 0.28;
}

.hero-ripple {
  position: absolute;
  border: 1px solid rgba(75, 153, 43, 0.2);
  border-radius: 50%;
}

.ripple-one {
  right: 3%;
  bottom: 4%;
  width: 560px;
  height: 170px;
}

.ripple-two {
  right: 7%;
  bottom: 7%;
  width: 420px;
  height: 120px;
}

.pool-section {
  background: #ffffff;
}

.pool-search {
  position: absolute;
  top: 118px;
  right: max(24px, calc((100% - var(--page-width)) / 2));
  width: min(520px, 44vw);
}

.pool-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.search-field {
  display: grid;
  min-height: 54px;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 6px 7px 6px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: #f8faf5;
}

.search-field input {
  width: 100%;
  min-width: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

.search-field button {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.pool-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
  margin: -82px 0 34px 52%;
}

.pool-filters button {
  min-width: 68px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #59655d;
  background: #f4f6f2;
  font-size: 13px;
  font-weight: 800;
}

.pool-filters button:hover,
.pool-filters button.is-active {
  border-color: var(--green);
  color: #ffffff;
  background: var(--green);
}

.pool-feedback {
  margin: -22px 0 16px;
  color: var(--green);
  font-size: 12px;
  text-align: right;
}

.comic-board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 16px;
}

.featured-comic {
  position: relative;
  min-height: 485px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #edf5e5;
  box-shadow: var(--shadow);
}

.featured-comic img {
  width: 100%;
  height: 485px;
  object-fit: contain;
}

.featured-comic figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 128px;
  align-items: flex-start;
  padding: 25px;
  flex-direction: column;
  color: #ffffff;
  background: linear-gradient(transparent, rgba(10, 34, 18, 0.94));
}

.featured-comic figcaption > span {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.featured-comic figcaption strong {
  margin-top: 9px;
  font-size: 20px;
}

.featured-comic figcaption small {
  font-size: 12px;
}

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

.comic-mini-grid figure {
  min-width: 0;
}

.comic-mini-grid img {
  width: 100%;
  height: 382px;
  border-radius: 17px;
  background: #f1f4ee;
  object-fit: contain;
}

.comic-mini-grid figcaption {
  padding: 13px 3px 0;
}

.comic-mini-grid strong,
.comic-mini-grid span {
  display: block;
}

.comic-mini-grid strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comic-mini-grid span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.recent-strip {
  display: grid;
  min-height: 94px;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #f8faf5;
}

.recent-strip > strong {
  color: var(--ink);
  font-size: 15px;
}

.recent-strip ul {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.recent-strip li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.recent-strip img {
  width: 42px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #e8eee3;
  object-fit: contain;
}

.recent-strip li > span,
.recent-strip small {
  display: block;
}

.recent-strip li > span {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-strip small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.route-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 84%, rgba(103, 174, 60, 0.2), transparent 21%),
    linear-gradient(180deg, #f4fae8, #eff8df);
}

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

.route-card,
.line-card,
.shelf-card,
.week-card,
.faq-item,
.official-site,
.review-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.route-card {
  min-width: 0;
  padding: 38px 32px 28px;
  border-radius: var(--radius);
}

.route-path {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(110px, 1fr) 20px minmax(110px, 1fr) 20px minmax(110px, 1fr) 20px minmax(110px, 1fr) 20px minmax(110px, 1fr);
  align-items: center;
  gap: 5px;
}

.route-path button {
  display: flex;
  min-width: 0;
  min-height: 176px;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  border: 1px solid transparent;
  border-radius: 44% 56% 52% 48%;
  background: #e9f5d7;
  flex-direction: column;
}

.route-path button:nth-of-type(even) {
  border-radius: 55% 45% 47% 53%;
}

.route-path button:hover,
.route-path button.is-active {
  border-color: var(--green);
  color: #ffffff;
  background: var(--green);
}

.route-path button .icon {
  width: 30px;
  height: 30px;
}

.route-path button strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
}

.route-path button span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.route-path button:hover strong,
.route-path button:hover span,
.route-path button.is-active strong,
.route-path button.is-active span {
  color: #ffffff;
}

.path-dot {
  position: relative;
  display: block;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0 4px, transparent 4px 8px);
}

.path-dot::before,
.path-dot::after {
  position: absolute;
  top: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.path-dot::before {
  left: 0;
}

.path-dot::after {
  right: 0;
}

.route-feedback {
  margin-top: 22px;
  color: var(--green-dark);
  font-size: 13px;
  text-align: center;
}

.line-card {
  min-width: 0;
  padding: 26px;
  border-radius: var(--radius);
}

.module-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.module-title > .icon {
  width: 28px;
  height: 28px;
}

.module-title h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.module-title p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.line-options {
  margin-top: 22px;
}

.line-options button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 13px;
}

.line-options button:last-child {
  border-bottom: 0;
}

.line-options button strong {
  color: var(--green);
}

.line-options button.is-active {
  border-radius: 11px;
  color: #ffffff;
  background: var(--green-dark);
}

.line-options button.is-active strong {
  color: #c9f292;
}

.line-tip {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
  color: var(--muted);
  font-size: 12px;
}

.line-tip img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.shelf-section {
  background: #ffffff;
}

.shelf-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 16px;
}

.shelf-card,
.week-card {
  min-width: 0;
  padding: 28px;
  border-radius: var(--radius);
}

.shelf-row {
  display: grid;
  min-height: 116px;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

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

.shelf-row > button {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border-radius: 13px;
  background: transparent;
  text-align: left;
}

.shelf-row > button:hover,
.shelf-row.is-active > button {
  background: var(--green-soft);
}

.shelf-row > button span,
.shelf-row > button strong,
.shelf-row > button small {
  display: block;
}

.shelf-row > button strong {
  color: var(--ink);
  font-size: 14px;
}

.shelf-row > button small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.shelf-covers {
  display: flex;
  min-width: 0;
  gap: 10px;
}

.shelf-covers img {
  width: 58px;
  height: 76px;
  border-radius: 9px;
  background: #edf2e9;
  object-fit: contain;
}

.shelf-row > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.week-card ol {
  margin-top: 21px;
}

.week-card li {
  display: grid;
  min-height: 47px;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 11px;
  border-radius: 10px;
  font-size: 12px;
}

.week-card li:nth-child(odd) {
  background: #f4f8ef;
}

.week-card li > span {
  color: var(--green);
  font-weight: 900;
}

.week-card li strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.week-card li small {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.screens-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 1% 65%, rgba(136, 195, 78, 0.2), transparent 19%),
    radial-gradient(circle at 98% 25%, rgba(136, 195, 78, 0.16), transparent 17%),
    #f6faef;
}

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

.screen-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.screen-media {
  aspect-ratio: 9 / 16;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff, #f1f6ec);
}

.screen-media img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: contain;
}

.screen-card figcaption {
  display: flex;
  min-height: 94px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  flex-direction: column;
}

.screen-card figcaption strong {
  color: var(--ink);
  font-size: 16px;
}

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

.faq-section {
  background: #ffffff;
}

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

.faq-item {
  overflow: hidden;
  border-radius: 16px;
}

.faq-item h3 {
  font-size: 16px;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 20px;
  background: transparent;
  font-weight: 900;
  text-align: left;
}

.faq-item button:hover,
.faq-item button[aria-expanded="true"] {
  color: var(--green-dark);
  background: var(--green-soft);
}

.faq-item button > i,
.details-toggle {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-item button > i::before,
.faq-item button > i::after,
.details-toggle::before,
.details-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item button > i::after,
.details-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] > i::after,
.official-site[open] .details-toggle::after {
  display: none;
}

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

.faq-answer p,
.official-content p {
  color: #66746a;
  font-size: 14px;
}

.official-site {
  width: 100%;
  margin-top: 16px;
  border-radius: 16px;
}

.official-site summary {
  display: grid;
  min-height: 70px;
  grid-template-columns: 24px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 13px;
  padding: 15px 20px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

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

.official-content {
  padding: 0 20px 22px 57px;
}

.official-content a {
  display: inline-block;
  margin-top: 5px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.reviews-section {
  background:
    radial-gradient(circle at 8% 80%, rgba(152, 207, 90, 0.2), transparent 23%),
    #f5faed;
}

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

.review-card {
  min-height: 238px;
  padding: 25px;
  border-radius: 19px;
}

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

.review-user > span {
  display: flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 14px;
  font-weight: 900;
}

.review-user div,
.review-user strong,
.review-user time {
  display: block;
}

.review-user strong {
  color: var(--ink);
  font-size: 14px;
}

.review-user time {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.review-card > p {
  margin-top: 17px;
  color: #526057;
  font-size: 14px;
  line-height: 1.85;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0 118px;
  background:
    radial-gradient(circle at 50% 78%, rgba(106, 183, 62, 0.3), transparent 35%),
    linear-gradient(180deg, #f5fae8, #dff1bf);
}

.download-section::before,
.download-section::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(99, 166, 57, 0.2);
  content: "";
}

.download-section::before {
  top: 110px;
  left: -90px;
  width: 220px;
  height: 108px;
  transform: rotate(12deg);
}

.download-section::after {
  right: -70px;
  bottom: 64px;
  width: 240px;
  height: 120px;
  transform: rotate(-9deg);
}

.download-heading {
  position: relative;
  z-index: 2;
  max-width: none;
}

.download-heading h2 {
  white-space: nowrap;
}

.download-pond {
  position: relative;
  z-index: 2;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(71, 137, 48, 0.19);
  border-radius: 52% 48% 50% 50% / 45% 45% 55% 55%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.92) 0 26%, transparent 27%),
    linear-gradient(180deg, rgba(233, 248, 206, 0.9), rgba(171, 218, 112, 0.72));
  box-shadow: inset 0 0 70px rgba(74, 143, 49, 0.12), var(--shadow);
}

.pond-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(55, 130, 49, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 600px;
  height: 235px;
}

.ring-b {
  width: 910px;
  height: 350px;
}

.pond-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 300px;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(70, 135, 47, 0.24);
  border-radius: 48% 52% 47% 53%;
  background: rgba(255, 255, 255, 0.93);
  flex-direction: column;
  box-shadow: 0 28px 60px rgba(50, 108, 42, 0.2);
  transform: translate(-50%, -50%);
}

.pond-core > img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.pond-core > strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 950;
}

.pond-core > span {
  color: var(--muted);
  font-size: 12px;
}

.download-link {
  min-width: 224px;
  min-height: 50px;
  margin-top: 15px;
  border-radius: 999px;
  font-size: 14px;
}

.benefit-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 238px;
  min-height: 78px;
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  border: 1px solid rgba(62, 127, 47, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(46, 102, 38, 0.12);
}

.benefit-pill > .icon {
  width: 27px;
  height: 27px;
}

.benefit-pill span,
.benefit-pill strong,
.benefit-pill small {
  display: block;
}

.benefit-pill strong {
  color: var(--ink);
  font-size: 14px;
}

.benefit-pill small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.benefit-search {
  top: 96px;
  left: 70px;
}

.benefit-shelf {
  top: 100px;
  right: 65px;
}

.benefit-offline {
  right: 88px;
  bottom: 74px;
}

.site-footer {
  color: #dbe8df;
  background: var(--green-deep);
}

.site-footer .brand-copy strong {
  color: #ffffff;
}

.site-footer .brand-copy span {
  color: #a9c1b0;
}

.footer-main {
  display: flex;
  min-height: 128px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 7px 19px;
}

.footer-links a {
  color: #c3d5c8;
  font-size: 12px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
  color: #a7bdac;
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(39, 100, 42, 0.28);
  pointer-events: none;
  transition: opacity 160ms ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top .icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 400px;
  }

  .hero-copy h1 {
    font-size: 74px;
  }

  .hero-slogan {
    font-size: 42px;
  }

  .pond-note {
    right: 0;
  }

  .comic-mini-grid img {
    height: 330px;
  }

  .route-path {
    overflow-x: auto;
    grid-template-columns: 120px 20px 120px 20px 120px 20px 120px 20px 120px;
    padding-bottom: 8px;
  }

  .shelf-row {
    grid-template-columns: 160px minmax(0, 1fr) auto;
  }
}

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

  .header-wrap {
    position: relative;
    width: calc(100% - 32px);
    gap: 12px;
  }

  .site-brand img {
    width: 40px;
    height: 40px;
  }

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

  .mobile-actions {
    position: relative;
    z-index: 6;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

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

  .menu-button {
    display: flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: #f5faef;
    flex-direction: column;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--green-deep);
  }

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

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

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

  .main-nav {
    position: absolute;
    z-index: 5;
    top: 100%;
    right: -16px;
    left: -16px;
    display: none;
    padding: 10px 16px 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .main-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
  }

  .main-nav a {
    min-height: 44px;
    padding: 0 12px;
  }

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

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
  }

  .phone-frame {
    width: 304px;
    height: 598px;
  }

  .phone-covers img {
    height: 160px;
  }

  .pond-note {
    display: none;
  }

  .pool-search {
    position: static;
    width: 100%;
    margin-bottom: 14px;
  }

  .pool-filters {
    justify-content: flex-start;
    margin: 0 0 10px;
  }

  .pool-feedback {
    margin: 0 0 16px;
    text-align: left;
  }

  .comic-board {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .featured-comic,
  .featured-comic img {
    min-height: 420px;
    height: 420px;
  }

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

  .comic-mini-grid img {
    height: 164px;
  }

  .recent-strip {
    grid-template-columns: 1fr;
  }

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

  .route-card,
  .line-card,
  .shelf-card,
  .week-card {
    min-width: 0;
  }

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

  .line-options button {
    border: 1px solid var(--line);
    border-radius: 11px;
  }

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

  .review-card {
    min-height: auto;
  }

  .benefit-search {
    left: 28px;
  }

  .benefit-shelf {
    right: 28px;
  }
}

@media (max-width: 720px) {
  .page-width {
    width: calc(100% - 32px);
  }

  .content-section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p {
    max-width: none;
    padding: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    padding-bottom: 70px;
  }

  .hero-copy {
    display: flex;
    align-items: center;
    padding: 68px 0 24px;
    flex-direction: column;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 17vw, 72px);
  }

  .hero-slogan {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-slogan::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-summary {
    max-width: 560px;
  }

  .feature-chips {
    justify-content: center;
  }

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

  .hero-visual {
    height: 610px;
    justify-content: center;
  }

  .phone-frame {
    width: 300px;
    height: 590px;
  }

  .lily-pad-one {
    right: 50%;
    transform: translateX(50%) rotate(-6deg);
  }

  .lily-pad-two {
    right: 50%;
    transform: translateX(10%) rotate(16deg);
  }

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

  .featured-comic,
  .featured-comic img {
    min-height: 430px;
    height: 430px;
  }

  .comic-mini-grid img {
    height: 245px;
  }

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

  .route-card {
    overflow: hidden;
    padding: 28px 22px 24px;
  }

  .route-path {
    grid-template-columns: 122px 20px 122px 20px 122px 20px 122px 20px 122px;
    overflow-x: auto;
    padding-bottom: 9px;
    scroll-snap-type: x mandatory;
  }

  .route-path button {
    min-height: 156px;
    scroll-snap-align: start;
  }

  .shelf-row {
    grid-template-columns: 160px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .faq-grid,
  .review-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .download-section {
    padding: 82px 0 98px;
  }

  .download-pond {
    min-height: 760px;
    border-radius: 40px;
  }

  .pond-core {
    top: 45%;
  }

  .ring-a {
    width: 420px;
  }

  .ring-b {
    width: 640px;
  }

  .benefit-pill {
    right: 50%;
    left: auto;
    width: min(250px, calc(100% - 40px));
    transform: translateX(50%);
  }

  .benefit-search {
    top: 30px;
  }

  .benefit-shelf {
    top: auto;
    right: 50%;
    bottom: 116px;
  }

  .benefit-offline {
    right: 50%;
    bottom: 24px;
  }

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

  .footer-main {
    min-height: 220px;
    padding: 36px 0;
  }

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

  .footer-bottom {
    min-height: 96px;
    gap: 7px;
  }

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

  .main-nav a,
  .mobile-get,
  .menu-button,
  .primary-link,
  button,
  summary,
  .back-top {
    transition: none;
    animation: none;
  }
}

@media (max-width: 520px) {
  .content-section {
    padding: 70px 0;
  }

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

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

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

  .hero-summary {
    font-size: 15px;
  }

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

  .feature-chips li {
    justify-content: center;
  }

  .search-field {
    grid-template-columns: 20px minmax(0, 1fr);
    padding: 9px 14px;
  }

  .search-field button {
    min-height: 42px;
    grid-column: 1 / -1;
  }

  .pool-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pool-filters button {
    min-width: 0;
  }

  .featured-comic,
  .featured-comic img {
    min-height: 350px;
    height: 350px;
  }

  .comic-mini-grid img {
    height: 195px;
  }

  .recent-strip ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .line-card,
  .shelf-card,
  .week-card {
    padding: 22px;
  }

  .line-options {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .shelf-covers {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .shelf-row > span {
    grid-column: 2;
    grid-row: 1;
  }

  .week-card li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .week-card li small {
    grid-column: 2;
  }

  .screen-grid {
    gap: 10px;
  }

  .screen-media {
    padding: 7px;
  }

  .screen-card {
    border-radius: 16px;
  }

  .screen-card figcaption {
    min-height: 92px;
    padding: 13px 11px;
  }

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

  .review-card {
    padding: 22px;
  }

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

  .pond-core {
    width: 270px;
    min-height: 270px;
  }
}

@media (max-width: 380px) {
  :root {
    --header-height: 64px;
  }

  .header-wrap {
    width: calc(100% - 20px);
    gap: 6px;
  }

  .site-brand {
    gap: 6px;
  }

  .site-brand img {
    width: 34px;
    height: 34px;
  }

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

  .brand-copy span {
    margin-top: 3px;
    font-size: 12px;
  }

  .mobile-actions {
    gap: 5px;
  }

  .mobile-get {
    min-height: 36px;
    padding: 0 8px;
  }

  .menu-button {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

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

  .hero-copy h1 {
    font-size: 52px;
  }

  .hero-slogan {
    font-size: 29px;
  }

  .hero-visual {
    height: 568px;
  }

  .phone-frame {
    width: 278px;
    height: 548px;
  }

  .phone-covers img {
    height: 142px;
  }

  .comic-mini-grid img {
    height: 168px;
  }

  .featured-comic figcaption strong {
    font-size: 17px;
  }

  .download-heading h2 {
    font-size: 25px;
  }

  .download-link {
    min-width: 214px;
    padding: 0 18px;
  }
}
