:root {
    --brand: #ff4933;
    --brand2: #ff6d3e;
    --ink: #201b24;
    --muted: #756f78;
    --paper: #fffaf8;
    --card: #fff;
    --line: #f1dfda;
    --deep: #2b2024;
    --shadow: 0 18px 55px rgba(79, 24, 12, .12);
    --radius: 28px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fff 0, #fff9f7 62%, #fff 100%);
    line-height: 1.65
}

.wrap {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

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

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

button {
    font: inherit
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(240, 216, 209, .8)
}

.nav {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 900;
    font-size: 20px
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(255, 73, 51, .23)
}

.navlinks {
    display: flex;
    gap: 26px;
    color: #574f55;
    font-size: 15px
}

.navlinks a:hover {
    color: var(--brand)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .2s ease
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    box-shadow: 0 14px 30px rgba(255, 73, 51, .25)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 73, 51, .31)
}

.btn-secondary {
    background: #fff;
    border-color: #edd5cf;
    color: #3b3237
}

.hero {
    padding: 72px 0 64px;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 58px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff0eb;
    color: #d93420;
    font-size: 13px;
    font-weight: 800
}

.hero h1 {
    font-size: clamp(46px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: -3px;
    margin: 18px 0 18px
}

.hero h1 span {
    color: var(--brand)
}

.lead {
    font-size: 20px;
    color: #5c555b;
    margin: 0 0 28px;
    max-width: 670px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px
}

.hero-note {
    font-size: 14px;
    color: #837980
}

.mini-points {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px
}

.mini-points span {
    font-size: 14px;
    font-weight: 700;
    color: #4f464b
}

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

.visual:before {
    content: "";
    position: absolute;
    inset: 34px 0 42px 70px;
    border-radius: 52px;
    background: radial-gradient(circle at 30% 20%, #ffd9cb 0 18%, transparent 19%), linear-gradient(145deg, #fff0ea, #ffd8cd 52%, #ff9f84);
    transform: rotate(-5deg)
}

.phone {
    position: absolute;
    right: 76px;
    top: 10px;
    width: 285px;
    background: #1f1a1d;
    border: 10px solid #171416;
    border-radius: 44px;
    padding: 12px;
    box-shadow: 0 34px 80px rgba(66, 24, 15, .28);
    transform: rotate(5deg)
}

.phone-screen {
    background: #fff9f7;
    border-radius: 31px;
    padding: 18px;
    overflow: hidden
}

.phone-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px
}

.phone-top img {
    width: 38px;
    height: 38px;
    border-radius: 11px
}

.cover-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.cover-stack img {
    border-radius: 16px;
    aspect-ratio: 3/4;
    object-fit: cover
}

.float-card {
    position: absolute;
    left: 12px;
    bottom: 34px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    max-width: 220px
}

.float-card strong {
    display: block;
    font-size: 28px;
    color: var(--brand);
    line-height: 1
}

.float-card small {
    color: #736a70
}

.section {
    padding: 76px 0
}

.section.alt {
    background: #fff6f2
}

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

.section h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin: 0
}

.section-head p {
    margin: 0;
    color: var(--muted);
    max-width: 520px
}

.covers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px
}

.comic-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(73, 32, 21, .07);
    transition: .2s
}

.comic-card:hover {
    transform: translateY(-5px)
}

.comic-card img {
    border-radius: 17px;
    aspect-ratio: 3/4;
    object-fit: cover
}

.comic-card h3 {
    font-size: 16px;
    margin: 12px 4px 2px
}

.comic-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0 4px 6px
}

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

.feature {
    background: #fff;
    border-radius: 26px;
    padding: 28px;
    border: 1px solid var(--line);
    box-shadow: 0 14px 40px rgba(83, 36, 24, .07)
}

.feature .icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: linear-gradient(135deg, #fff0eb, #ffd8cd);
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 24px;
    font-weight: 900
}

.feature h3 {
    font-size: 20px;
    margin: 18px 0 6px
}

.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch
}

.panel {
    border-radius: 32px;
    padding: 36px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow)
}

.panel.dark {
    background: linear-gradient(145deg, #2b2024, #1d171a);
    color: #fff;
    border: 0
}

.panel h2 {
    margin: 0 0 12px
}

.benefits {
    display: grid;
    gap: 14px;
    margin-top: 24px
}

.benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.benefit:first-child {
    border-top: 0
}

.check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ff6347;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    font-weight: 900
}

.panel:not(.dark) .benefit {
    border-color: #eee0dc
}

.panel:not(.dark) .check {
    color: #fff
}

.cta {
    padding: 74px 0
}

.cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    padding: 54px;
    background: linear-gradient(135deg, #ff4731, #ff7b48);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 24px 70px rgba(255, 75, 49, .25)
}

.cta-box:after {
    content: "漫";
    position: absolute;
    right: 24px;
    top: -62px;
    font-size: 240px;
    font-weight: 900;
    color: rgba(255, 255, 255, .09);
    line-height: 1
}

.cta-box h2 {
    margin: 0 0 8px;
    font-size: clamp(32px, 5vw, 52px)
}

.cta-box p {
    margin: 0;
    opacity: .88
}

.cta-box .btn {
    background: #fff;
    color: #d93925;
    position: relative;
    z-index: 2;
    white-space: nowrap
}

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

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 21px 24px;
    text-align: left;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer
}

.faq-a {
    display: none;
    padding: 0 24px 22px;
    color: var(--muted)
}

.faq-item.open .faq-a {
    display: block
}

.footer {
    padding: 36px 0 110px;
    border-top: 1px solid #f0dfda;
    color: #756d72
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap
}

.mobile-download {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80
}

.mobile-download .btn {
    width: 100%;
    box-shadow: 0 14px 32px rgba(255, 73, 51, .32)
}

@media(max-width:980px) {
    .news-grid {
        /*grid-template-columns: repeat(2, 1fr)*/
    }

    .navlinks {
        display: none
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .visual {
        min-height: 500px
    }

    .phone {
        right: 16%;
    }

    .covers {
        grid-template-columns: repeat(3, 1fr)
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .split {
        grid-template-columns: 1fr
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column
    }
}

@media(max-width:640px) {
    .hero-note{
        text-align: center;
    }
    /*.news-grid {*/
    /*    grid-template-columns: 1fr;*/
    /*    gap: 14px*/
    /*}*/

    /*.news-card {*/
    /*    min-height: auto;*/
    /*    padding: 22px*/
    /*}*/

    /*.news-heading {*/
    /*    margin-bottom: 24px*/
    /*}*/

    .wrap {
        width: min(100% - 24px, 1180px)
    }

    .nav {
        height: 66px
    }

    .brand {
        font-size: 18px
    }

    .nav .btn {
        display: none
    }

    .hero {
        padding: 44px 0 30px
    }

    .hero h1 {
        letter-spacing: -2px
    }

    .lead {
        font-size: 17px
    }

    .hero-actions .btn {
        width: 100%
    }

    .visual {
        min-height: 430px
    }

    .visual:before {
        inset: 28px 0 32px 36px
    }

    .phone {
        width: 228px;
        right: 8%;
        top: 0
    }

    .float-card {
        left: 0;
        bottom: 10px
    }

    .section {
        padding: 58px 0
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px
    }

    .covers {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .comic-card {
        border-radius: 20px
    }

    .feature-grid {
        grid-template-columns: 1fr
    }

    .panel {
        padding: 26px
    }

    .cta-box {
        padding: 36px 24px;
        border-radius: 28px
    }

    .mobile-download {
        display: block
    }

    .footer {
        padding-bottom: 94px
    }
}


.news-section {
    background: #fff6f2;
    color: #fff
}

.news-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px
}

.news-heading .eyebrow {
    background: rgba(255, 73, 51, .14);
    color: #ff7b67;
    border: 1px solid rgba(255, 73, 51, .22)
}

.news-heading h2 {
    margin: 14px 0 10px;
    color: #000
}

.news-heading p {
    margin: 0;
    color: #ae9fb3
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.news-card {
    min-height: 235px;
    padding: 26px 26px 24px;
    border-radius: 26px;
    background: linear-gradient(145deg, #2d2135, #2a2032);
    border: 1px solid rgba(255, 92, 72, .24);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 105, 82, .48);
    box-shadow: 0 24px 52px rgba(0, 0, 0, .22)
}

.news-card time {
    font-size: 13px;
    color: #ff6d5a;
    font-weight: 800
}

.news-card h3 {
    font-size: 18px;
    line-height: 1.65;
    margin: 16px 0 8px;
    color: #fff
}

.news-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #9f90aa;
    margin: 0 0 18px
}

.news-card a {
    margin-top: auto;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.news-card a span {
    color: #ff715d;
    transition: transform .2s ease
}

.news-card a:hover span {
    transform: translateX(4px)
}

.news-section {
    background: #fff6f2;
}

.news-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
    padding: 0 4px;
}

.news-heading .eyebrow {
    background: rgba(255, 73, 51, .14);
    color: #ff7b67;
    border: 1px solid rgba(255, 73, 51, .22);
}

.news-heading h2 {
    margin: 14px 0 10px;
    color: #000;
}

.news-heading p {
    margin: 0;
    color: #ae9fb3;
}

/* 默认桌面：三列 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-card {
    position: relative;
    min-height: 235px;
    padding: 26px 26px 24px;
    border-radius: 26px;
    background: linear-gradient(145deg, #2d2135, #2a2032);
    border: 1px solid rgba(255, 92, 72, .24);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.news-card:active {
    transform: scale(.985);
}

.news-card time {
    font-size: 13px;
    color: #ff6d5a;
    font-weight: 800;
    letter-spacing: .02em;
}

.news-card h3 {
    font-size: 18px;
    line-height: 1.65;
    margin: 16px 0 8px;
    color: #fff;
}

.news-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #9f90aa;
    margin: 0 0 18px;
}

.news-card a {
    margin-top: auto;
    min-height: 44px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.news-card a span {
    color: #ff715d;
    transition: transform .2s ease;
}

/* 仅鼠标设备启用悬停动效 */
@media (hover: hover) and (pointer: fine) {
    .news-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 105, 82, .48);
        box-shadow: 0 24px 52px rgba(0, 0, 0, .22);
    }

    .news-card a:hover span {
        transform: translateX(4px);
    }
}

/* 平板 / 大屏手机横屏：两列 */
@media (max-width: 980px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .news-card {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 22px;
    }

    .news-card h3 {
        font-size: 17px;
        margin: 12px 0 6px;
    }

    .news-card p {
        font-size: 13.5px;
        line-height: 1.75;
        margin-bottom: 14px;
    }
}

/* 手机竖屏：单列 */
@media (max-width: 640px) {
    .news-heading {
        margin-bottom: 22px;
    }

    .news-heading h2 {
        font-size: 26px;
    }

    .news-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-card {
        min-height: auto;
        padding: 18px 16px 16px;
        border-radius: 18px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, .14);
    }

    .news-card time {
        font-size: 12px;
    }

    .news-card h3 {
        font-size: 16px;
        line-height: 1.6;
        margin: 10px 0 6px;
    }

    .news-card p {
        font-size: 13.5px;
        line-height: 1.75;
        margin-bottom: 12px;
    }

    .news-card a {
        font-size: 13.5px;
    }
}

/* 小屏手机 */
@media (max-width: 380px) {
    .news-card {
        padding: 16px 14px 14px;
        border-radius: 16px;
    }

    .news-card h3 {
        font-size: 15px;
    }

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

/* 尊重系统“减弱动态效果” */
@media (prefers-reduced-motion: reduce) {
    .news-card,
    .news-card a span {
        transition: none;
    }

    .news-card:active {
        transform: none;
    }
}