:root {
    --ink: #132437;
    --ink-soft: #405063;
    --paper: #f7f8f4;
    --white: #ffffff;
    --gold: #ffb938;
    --gold-deep: #ed8f13;
    --red: #ee5b4a;
    --teal: #2e8a86;
    --line: #dce3e5;
    --shadow: 0 20px 60px rgba(19, 36, 55, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(circle at 10% 15%, rgba(255, 185, 56, 0.12), transparent 24%), radial-gradient(circle at 90% 38%, rgba(46, 138, 134, 0.08), transparent 28%);
    content: "";
    pointer-events: none;
}

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

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

button,
input {
    font: inherit;
}

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

.section-shell,
.header-shell,
.footer-shell {
    width: min(1200px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(220, 227, 229, 0.8);
    background: rgba(247, 248, 244, 0.94);
    backdrop-filter: blur(18px);
}

.header-shell {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand-mark {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
}

.brand-bun {
    display: grid;
    width: 46px;
    height: 36px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50% 50% 42% 42%;
    background: var(--gold);
    font-size: 18px;
    font-weight: 900;
    box-shadow: 3px 4px 0 var(--ink);
}

.brand-steam {
    position: absolute;
    top: -12px;
    color: var(--red);
    font-size: 24px;
    font-weight: 900;
}

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

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

.brand-copy small {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 12px;
}

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

.nav-link {
    display: flex;
    min-width: 66px;
    padding: 10px 8px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 12px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
    transition: 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-icon {
    color: var(--gold-deep);
    font-size: 16px;
}

.nav-link.is-active .nav-icon {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
}

.hero {
    display: grid;
    min-height: 620px;
    margin-top: 48px;
    padding: 60px;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 64px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 36px;
    background: linear-gradient(135deg, #fff9e9 0%, #ffffff 52%, #e7f3f1 100%);
    box-shadow: var(--shadow);
}

.hero-kicker,
.eyebrow {
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 12px 0 20px;
    font-family: "SimHei", "Microsoft YaHei", sans-serif;
    font-size: clamp(56px, 7vw, 92px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero h1 a {
    position: relative;
}

.hero h1 a::after {
    position: absolute;
    right: -24px;
    bottom: 8px;
    width: 18px;
    height: 18px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    background: var(--gold);
    content: "";
}

.hero-copy > p {
    max-width: 590px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    margin-top: 34px;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--ink);
    border-radius: 14px;
    font-weight: 800;
    transition: 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(19, 36, 55, 0.14);
}

.button-primary {
    background: var(--ink);
    color: var(--white);
}

.button-secondary {
    background: var(--white);
}

.hero-trust {
    display: flex;
    margin-top: 42px;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-trust span {
    display: flex;
    flex-direction: column;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.4;
}

.hero-trust strong {
    color: var(--ink);
    font-size: 23px;
}

.hero-stage {
    position: relative;
    min-height: 500px;
}

.hero-poster {
    position: absolute;
    overflow: hidden;
    border: 5px solid var(--white);
    border-radius: 24px;
    background: #dce3e5;
    box-shadow: 0 24px 50px rgba(19, 36, 55, 0.22);
}

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

.hero-poster-back {
    top: 5px;
    right: 5px;
    width: 62%;
    height: 72%;
    transform: rotate(7deg);
}

.hero-poster-front {
    bottom: 0;
    left: 3%;
    width: 68%;
    height: 82%;
    transform: rotate(-5deg);
}

.poster-caption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 15px 18px;
    border-radius: 14px;
    background: rgba(19, 36, 55, 0.88);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.poster-caption span,
.poster-caption strong {
    display: block;
}

.poster-caption span {
    color: var(--gold);
    font-size: 12px;
}

.poster-caption strong {
    font-size: 18px;
}

.hero-seal {
    position: absolute;
    right: 1%;
    bottom: 16%;
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    transform: rotate(10deg);
    box-shadow: 0 12px 30px rgba(238, 91, 74, 0.3);
}

.module {
    margin-top: 100px;
}

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

.section-heading h2,
.feature-copy h2,
.ranking-intro h2,
.finish-heading h2,
.mood-copy h2,
.voices-title h2,
.about-content h2,
.app-copy h2 {
    margin: 8px 0 12px;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 630px;
    margin: 0;
    color: var(--ink-soft);
}

.heading-inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    display: grid;
    min-height: 164px;
    padding: 24px;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    transition: 180ms ease;
}

.category-card:hover {
    border-color: var(--gold-deep);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.category-card:last-child {
    grid-column: span 2;
}

.category-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: #fff2cc;
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
}

.category-card strong,
.category-card small {
    display: block;
}

.category-card strong {
    margin-bottom: 7px;
    font-size: 18px;
}

.category-card small {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.65;
}

.category-arrow {
    color: var(--red);
    font-size: 20px;
}

.feature-story {
    display: grid;
    min-height: 620px;
    grid-template-columns: 1.05fr 0.95fr;
    overflow: hidden;
    border-radius: 32px;
    background: var(--ink);
    color: var(--white);
}

.feature-art {
    position: relative;
    min-height: 620px;
}

.feature-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
}

.vertical-label {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.feature-copy {
    padding: 70px 64px;
    align-self: center;
}

.feature-lead {
    color: #cbd5df;
    font-size: 18px;
}

.feature-copy blockquote {
    margin: 30px 0;
    padding: 22px 0 22px 24px;
    border-left: 4px solid var(--gold);
    color: #fff2cc;
    font-size: 20px;
    font-weight: 700;
}

.feature-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.feature-facts div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
}

.feature-facts dt {
    color: #9eb0bf;
    font-size: 12px;
}

.feature-facts dd {
    margin: 5px 0 0;
    font-weight: 800;
}

.text-link {
    display: inline-flex;
    margin-top: 24px;
    align-items: center;
    gap: 9px;
    color: var(--red);
    font-weight: 900;
}

.light-link {
    color: var(--gold);
}

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

.comic-card,
.strip-card,
.catalog-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    transition: 180ms ease;
}

.comic-card:hover,
.strip-card:hover,
.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.comic-cover {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #dfe7e7;
}

.comic-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 300ms ease;
}

.comic-card:hover .comic-cover img,
.strip-card:hover .comic-cover img,
.catalog-card:hover .comic-cover img {
    transform: scale(1.035);
}

.cover-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
}

.comic-card-body {
    padding: 20px;
}

.comic-card-body h3 {
    margin: 0 0 9px;
    font-size: 19px;
    line-height: 1.4;
}

.comic-card-body p {
    display: -webkit-box;
    min-height: 52px;
    margin: 0;
    overflow: hidden;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.comic-meta {
    display: flex;
    margin-top: 17px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #6e7c89;
    font-size: 12px;
}

.shelf-button {
    padding: 5px 9px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.shelf-button.is-saved {
    border-color: var(--teal);
    background: #e6f6f3;
    color: var(--teal);
}

.module-footer {
    margin-top: 30px;
    text-align: center;
}

.ranking-module {
    display: grid;
    padding: 58px;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    border-radius: 30px;
    background: var(--ink);
    color: var(--white);
}

.ranking-intro p {
    color: #bdcad4;
}

.rank-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-list li {
    display: grid;
    padding: 15px 0;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.rank-number {
    color: var(--gold);
    font-size: 27px;
    font-weight: 900;
}

.rank-list strong,
.rank-list small {
    display: block;
}

.rank-list small {
    margin-top: 4px;
    color: #9eb0bf;
}

.comic-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.strip-card:nth-child(even) {
    transform: translateY(24px);
}

.strip-card:nth-child(even):hover {
    transform: translateY(19px);
}

.finish-module {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
}

.finish-heading {
    position: sticky;
    top: 124px;
    align-self: start;
}

.finish-heading p {
    color: var(--ink-soft);
}

.finish-timeline {
    position: relative;
}

.finish-timeline::before {
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 26px;
    width: 2px;
    background: var(--line);
    content: "";
}

.finish-step {
    position: relative;
    display: grid;
    padding: 0 0 34px;
    grid-template-columns: 54px 1fr;
    gap: 24px;
}

.step-dot {
    z-index: 1;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--gold);
    font-weight: 900;
}

.finish-step h3 {
    margin: 2px 0 6px;
    font-size: 24px;
}

.finish-step p {
    margin: 0;
    color: var(--ink-soft);
}

.mood-module {
    display: grid;
    padding: 54px;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 54px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--white);
}

.mood-copy p {
    color: var(--ink-soft);
}

.mood-chips {
    display: flex;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.mood-chip {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
}

.mood-chip.is-selected {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.mood-result {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border-radius: 22px;
}

.mood-result img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mood-result > div {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 22px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.93);
}

.mood-result h3 {
    margin: 2px 0;
    font-size: 24px;
}

.mood-result p {
    margin: 4px 0 10px;
    color: var(--ink-soft);
    font-size: 14px;
}

.mood-result a {
    color: var(--red);
    font-weight: 900;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
}

.schedule-grid article {
    min-height: 200px;
    padding: 28px;
    border-right: 1px solid var(--line);
}

.schedule-grid article:last-child {
    border-right: 0;
}

.schedule-grid span,
.schedule-grid strong,
.schedule-grid small {
    display: block;
}

.schedule-grid span {
    width: fit-content;
    padding: 3px 10px;
    border-radius: 999px;
    background: #fff2cc;
    font-size: 13px;
    font-weight: 900;
}

.schedule-grid strong {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.45;
}

.schedule-grid small {
    margin-top: 8px;
    color: var(--ink-soft);
}

.voices-module {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 60px;
}

.voice-wall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.voice-wall blockquote {
    margin: 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
}

.voice-wall .voice-large {
    grid-row: span 2;
    background: var(--gold);
}

.voice-wall p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.voice-wall footer {
    margin-top: 24px;
    color: var(--ink-soft);
    font-size: 13px;
}

.about-module {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    overflow: hidden;
    border-radius: 30px;
    background: #dfeeea;
}

.about-label {
    display: flex;
    min-height: 520px;
    padding: 50px;
    flex-direction: column;
    justify-content: space-between;
    background: var(--teal);
    color: var(--white);
}

.about-label span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.about-label strong {
    max-width: 300px;
    font-size: 44px;
    line-height: 1.25;
}

.about-content {
    padding: 60px;
    align-self: center;
}

.about-content p {
    color: var(--ink-soft);
}

.about-points {
    display: grid;
    margin: 28px 0 0;
    padding: 0;
    gap: 10px;
    list-style: none;
    font-weight: 700;
}

.about-points span {
    margin-right: 8px;
    color: var(--red);
}

.app-module {
    display: grid;
    margin-bottom: 90px;
    padding: 60px;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 70px;
    border-radius: 32px;
    background: linear-gradient(135deg, #fff1bf, #ffd670);
}

.app-copy p {
    max-width: 660px;
}

.subscribe-form {
    max-width: 590px;
    margin-top: 28px;
}

.subscribe-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

.subscribe-form > div {
    display: grid;
    grid-template-columns: 1fr auto;
}

.subscribe-form input {
    min-width: 0;
    height: 50px;
    padding: 0 16px;
    border: 2px solid var(--ink);
    border-right: 0;
    border-radius: 12px 0 0 12px;
    background: var(--white);
}

.subscribe-form button {
    padding: 0 24px;
    border: 2px solid var(--ink);
    border-radius: 0 12px 12px 0;
    background: var(--ink);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}

.subscribe-form small {
    display: block;
    margin-top: 8px;
    color: var(--ink-soft);
}

.qr-card {
    width: min(280px, 100%);
    padding: 26px;
    justify-self: center;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: var(--white);
    text-align: center;
    box-shadow: 8px 8px 0 var(--ink);
}

.qr-pattern {
    display: grid;
    aspect-ratio: 1;
    padding: 12px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border: 1px solid var(--line);
}

.qr-pattern span {
    border-radius: 5px;
    background: var(--ink);
}

.qr-pattern span:nth-child(2),
.qr-pattern span:nth-child(4),
.qr-pattern span:nth-child(8) {
    background: var(--gold);
}

.qr-card strong,
.qr-card small {
    display: block;
}

.qr-card strong {
    margin-top: 16px;
    font-size: 20px;
}

.qr-card small {
    color: var(--ink-soft);
}

.site-footer {
    padding: 52px 0 28px;
    background: var(--ink);
    color: var(--white);
}

.footer-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
}

.footer-brand strong {
    font-size: 24px;
}

.footer-brand p {
    margin: 7px 0 0;
    color: #aebdca;
}

.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    color: #dfe7ed;
    font-size: 14px;
}

.copyright {
    margin: 0;
    padding-top: 24px;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #8295a5;
    font-size: 13px;
}

.breadcrumb {
    display: flex;
    margin-top: 34px;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--ink-soft);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--red);
}

.catalog-hero {
    display: grid;
    min-height: 350px;
    margin-top: 24px;
    padding: 54px;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 50px;
    border-radius: 30px;
    background: linear-gradient(125deg, var(--ink), #264b61);
    color: var(--white);
}

.catalog-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 26px;
    place-items: center;
    border-radius: 16px;
    background: var(--gold);
    color: var(--ink);
    font-size: 25px;
}

.catalog-hero h1 {
    margin: 8px 0 10px;
    font-size: clamp(46px, 7vw, 76px);
    line-height: 1.05;
}

.catalog-hero p {
    max-width: 680px;
    margin: 0;
    color: #c4d1db;
    font-size: 18px;
}

.catalog-stat {
    display: flex;
    min-width: 190px;
    padding: 24px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
}

.catalog-stat strong {
    color: var(--gold);
    font-size: 54px;
    line-height: 1;
}

.catalog-stat small {
    margin-top: 10px;
    color: #92a7b7;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.catalog-featured {
    display: grid;
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
}

.catalog-featured .comic-cover {
    height: 100%;
    aspect-ratio: auto;
}

.catalog-featured .comic-card-body {
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
}

.catalog-featured .comic-card-body h3 {
    font-size: 28px;
}

.catalog-featured .comic-card-body p {
    display: block;
    min-height: 0;
    -webkit-line-clamp: unset;
}

.discover-bar {
    display: flex;
    margin-bottom: 90px;
    padding: 36px 42px;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    border-radius: 24px;
    background: #e5efec;
}

.discover-bar h2 {
    margin: 4px 0 0;
    font-size: 30px;
}

.discover-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.discover-links a {
    display: inline-flex;
    padding: 9px 14px;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.reader-page {
    background: #eef0ec;
}

.reader-shell {
    margin-top: 24px;
    margin-bottom: 100px;
}

.reader-header {
    padding: 58px;
    border-radius: 30px 30px 0 0;
    background: var(--ink);
    color: var(--white);
    text-align: center;
}

.reader-header h1 {
    margin: 10px 0;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.2;
}

.reader-subtitle {
    margin: 0;
    color: #c6d2db;
    font-size: 20px;
}

.reader-meta {
    display: flex;
    margin-top: 28px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    color: #91a7b7;
    font-size: 13px;
}

.reading-note {
    display: grid;
    padding: 28px 36px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: #fff8df;
}

.note-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    font-size: 21px;
}

.reading-note p {
    margin: 4px 0 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.shelf-button-large {
    padding: 10px 16px;
    font-size: 14px;
}

.chapter-intro {
    max-width: 900px;
    margin: 54px auto 34px;
    text-align: center;
}

.chapter-intro h2 {
    margin: 0;
    font-size: 30px;
}

.chapter-intro p {
    color: var(--ink-soft);
}

.reader-canvas {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.reader-panel {
    margin: 0;
    border-bottom: 8px solid var(--ink);
}

.reader-panel:last-child {
    border-bottom: 0;
}

.reader-panel img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.reader-panel figcaption {
    padding: 17px 22px;
    background: var(--white);
    color: var(--ink-soft);
    font-size: 14px;
    text-align: center;
}

.chapter-end {
    max-width: 900px;
    margin: 54px auto 0;
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    text-align: center;
}

.chapter-end > span {
    display: grid;
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--gold);
    font-weight: 900;
}

.chapter-end h2 {
    margin: 0;
}

.chapter-end p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.reader-navigation {
    display: grid;
    max-width: 900px;
    margin: 24px auto 0;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
}

.reader-nav-button,
.reader-nav-center {
    display: inline-flex;
    min-height: 50px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 13px;
    background: var(--ink);
    color: var(--white);
    font-weight: 800;
}

.reader-nav-next {
    justify-self: stretch;
}

.reader-nav-center {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
}

.reader-nav-button.is-disabled {
    background: #c9d0d3;
    color: #6d787e;
}

@media (max-width: 1080px) {
    .header-shell {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

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

    .main-nav ul {
        display: grid;
        padding: 10px 0 4px;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .nav-link {
        background: var(--white);
    }

    .hero {
        padding: 45px;
        gap: 30px;
    }

    .category-grid,
    .comic-grid,
    .comic-strip,
    .schedule-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card:last-child {
        grid-column: auto;
    }

    .schedule-grid article:nth-child(2) {
        border-right: 0;
    }

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

    .catalog-featured {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .section-shell,
    .header-shell,
    .footer-shell {
        width: min(100% - 24px, 1200px);
    }

    .brand-copy small {
        display: none;
    }

    .main-nav ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-link {
        min-height: 44px;
    }

    .hero {
        min-height: auto;
        margin-top: 24px;
        padding: 34px 24px 26px;
        grid-template-columns: 1fr;
        gap: 20px;
        border-radius: 24px;
    }

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

    .hero-copy > p {
        font-size: 16px;
    }

    .hero-stage {
        min-height: 390px;
    }

    .hero-poster-back {
        right: 2%;
    }

    .hero-poster-front {
        left: 5%;
    }

    .module {
        margin-top: 68px;
    }

    .heading-inline {
        display: block;
    }

    .heading-inline > p,
    .heading-inline > .text-link {
        margin-top: 12px;
    }

    .category-grid,
    .comic-grid,
    .comic-strip,
    .schedule-grid,
    .catalog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .category-card {
        min-height: 150px;
        padding: 16px;
        grid-template-columns: auto 1fr;
    }

    .category-arrow {
        display: none;
    }

    .category-card small {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .feature-story,
    .ranking-module,
    .finish-module,
    .mood-module,
    .voices-module,
    .about-module,
    .app-module {
        grid-template-columns: 1fr;
    }

    .feature-art {
        min-height: 400px;
    }

    .feature-copy,
    .ranking-module,
    .mood-module,
    .about-content,
    .app-module {
        padding: 34px 24px;
    }

    .ranking-module,
    .mood-module,
    .app-module {
        gap: 32px;
        border-radius: 22px;
    }

    .comic-card-body {
        padding: 14px;
    }

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

    .comic-card-body p {
        font-size: 13px;
    }

    .comic-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .finish-module {
        gap: 25px;
    }

    .finish-heading {
        position: static;
    }

    .voice-wall {
        grid-template-columns: 1fr;
    }

    .voice-wall .voice-large {
        grid-row: auto;
    }

    .about-label {
        min-height: 300px;
        padding: 34px 24px;
    }

    .about-label strong {
        font-size: 34px;
    }

    .footer-shell {
        grid-template-columns: 1fr;
    }

    .catalog-hero {
        padding: 34px 24px;
        grid-template-columns: 1fr;
    }

    .catalog-stat {
        min-width: 0;
    }

    .catalog-featured {
        display: block;
        grid-column: span 2;
    }

    .catalog-featured .comic-cover {
        aspect-ratio: 16 / 10;
    }

    .discover-bar {
        padding: 28px 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .reader-header {
        padding: 40px 22px;
    }

    .reading-note {
        padding: 22px;
        grid-template-columns: auto 1fr;
    }

    .reading-note .shelf-button {
        grid-column: 1 / -1;
    }

    .reader-navigation {
        grid-template-columns: 1fr 1fr;
    }

    .reader-nav-center {
        grid-row: 2;
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .category-grid,
    .comic-grid,
    .comic-strip,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-featured {
        grid-column: auto;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        gap: 16px;
    }

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

    .schedule-grid article {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .subscribe-form > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .subscribe-form input,
    .subscribe-form button {
        border: 2px solid var(--ink);
        border-radius: 12px;
    }
}
