/* roulang page: index */
:root {
        --cream: #F6F5F0;
        --pitch: #166A45;
        --pine: #0B2A20;
        --volt: #C9E73B;
        --track: #F2711C;
        --ink: #1E2A24;
        --sub: #59685F;
        --muted: #8B928E;
        --line: rgba(22, 106, 69, 0.16);
        --soft: #DDE3DD;
        --card-shadow: 0 2px 10px rgba(20, 60, 40, 0.06);
        --card-shadow-hover: 0 12px 24px rgba(20, 60, 40, 0.12);
        --radius-card: 20px;
        --radius-btn: 999px;
        --radius-img: 14px;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        background: var(--cream);
        color: var(--ink);
        font-family: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        line-height: 1.7;
        min-height: 100vh;
    }

    body::after {
        content: "";
        display: block;
        height: 64px;
    }

    h1, h2, h3, h4, p, figure, ul {
        margin-top: 0;
    }

    img {
        max-width: 100%;
        display: block;
        height: auto;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    button,
    input {
        font-family: inherit;
        font-size: inherit;
    }

    .container {
        width: 100%;
        max-width: 80rem;
        margin-inline: auto;
        padding-inline: 1.5rem;
    }

    .section-pad {
        padding-block: 96px;
    }

    .section-title {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.35;
        margin-bottom: 1rem;
    }

    .section-desc {
        color: var(--sub);
        font-size: 16px;
        max-width: 780px;
        line-height: 1.9;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: .6rem;
        color: var(--pitch);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: .08em;
        margin-bottom: 1rem;
    }

    .eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        background: var(--volt);
        border-radius: 2px;
        display: inline-block;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .6rem;
        min-height: 48px;
        padding: 0 1.75rem;
        border-radius: var(--radius-btn);
        font-weight: 700;
        font-size: 15px;
        line-height: 1;
        transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, filter .22s ease, box-shadow .22s ease;
        cursor: pointer;
        border: 1.5px solid transparent;
        white-space: nowrap;
        text-align: center;
    }

    .btn svg {
        transition: transform .22s ease;
        flex: 0 0 auto;
    }

    .btn-primary {
        background: var(--volt);
        color: var(--pine);
        border-color: var(--volt);
        box-shadow: 0 8px 20px rgba(201, 231, 59, 0.32);
    }

    .btn-primary:hover {
        filter: brightness(1.05);
        box-shadow: 0 12px 26px rgba(22, 106, 69, 0.16);
        transform: translateY(-2px);
    }

    .btn-primary:hover svg,
    .btn-secondary:hover svg {
        transform: translateX(4px);
    }

    .btn-primary:focus-visible {
        outline: 4px solid var(--volt);
        outline-offset: 3px;
    }

    .btn-secondary {
        background: #fff;
        color: var(--pine);
        border-color: rgba(11, 42, 32, .55);
    }

    .btn-secondary:hover {
        background: rgba(11, 42, 32, .08);
        border-color: var(--pine);
        transform: translateY(-2px);
    }

    .btn-pine {
        background: var(--pine);
        color: #fff;
        border-color: var(--pine);
    }

    .btn-pine:hover {
        background: #123c31;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(11, 42, 32, .18);
    }

    .btn-pine:hover svg {
        transform: translateX(4px);
    }

    .block-chip {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        border-radius: var(--radius-btn);
        background: #fff;
        border: 1px solid var(--line);
        color: var(--pitch);
        font-size: 12px;
        font-weight: 600;
        padding: .3rem .75rem;
    }

    .block-chip::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--volt);
    }

    .card {
        background: #fff;
        border: 1px solid transparent;
        border-radius: var(--radius-card);
        box-shadow: var(--card-shadow);
        transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }

    .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--card-shadow-hover);
        border-color: var(--line);
    }

    .tag {
        display: inline-block;
        border-radius: 999px;
        background: rgba(201, 231, 59, .3);
        color: var(--pine);
        padding: .28rem .8rem;
        font-size: 12px;
        font-weight: 600;
    }

    .orange-dot {
        color: var(--track);
        font-weight: 700;
    }

    .site-header {
        position: fixed;
        inset-inline: 0;
        top: 0;
        z-index: 100;
        background: rgba(246, 245, 240, .9);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(22, 106, 69, .12);
        transition: background .3s ease, box-shadow .3s ease;
    }

    .site-header.scrolled {
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 6px 20px rgba(20, 60, 40, .07);
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        gap: 1.5rem;
    }

    .brand {
        display: inline-flex;
        align-items: center;
        gap: .8rem;
        min-width: 0;
        flex-shrink: 0;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        border-radius: 14px;
        background: var(--pitch);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 16px rgba(22, 106, 69, .26);
        position: relative;
        overflow: hidden;
    }

    .brand-mark svg {
        width: 24px;
        height: 24px;
    }

    .brand-text {
        font-size: 19px;
        font-weight: 800;
        color: var(--pine);
        letter-spacing: .02em;
        line-height: 1.15;
        white-space: nowrap;
    }

    .brand-text small {
        display: block;
        font-size: 11px;
        font-weight: 600;
        color: var(--sub);
        letter-spacing: .14em;
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 1.1rem;
    }

    .main-nav .nav-link {
        position: relative;
        font-size: 15px;
        font-weight: 600;
        color: var(--ink);
        padding: .9rem .3rem;
        transition: color .2s ease;
    }

    .main-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: .3rem;
        width: 0;
        height: 2px;
        border-radius: 4px;
        background: var(--pitch);
        transition: width .25s ease;
    }

    .main-nav .nav-link:hover {
        color: var(--pitch);
    }

    .main-nav .nav-link:hover::after,
    .main-nav .nav-link.active::after {
        width: 100%;
    }

    .main-nav .nav-link.active {
        color: var(--pitch);
    }

    .header-login {
        flex: 0 0 auto;
    }

    .header-login a {
        min-height: 44px;
        padding-inline: 1.3rem;
        font-size: 14.5px;
    }

    .bottom-tabbar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 120;
        display: none;
        height: 64px;
        background: rgba(255, 255, 255, .96);
        border-top: 1px solid var(--soft);
        box-shadow: 0 -6px 24px rgba(11, 42, 32, .05);
        align-items: stretch;
    }

    .bottom-tabbar a {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        color: var(--sub);
        font-size: 11px;
        font-weight: 600;
        position: relative;
        line-height: 1.2;
        min-width: 0;
    }

    .bottom-tabbar a svg {
        width: 23px;
        height: 23px;
        stroke-width: 1.8;
        flex: 0 0 auto;
    }

    .bottom-tabbar a.active {
        color: var(--pitch);
    }

    .bottom-tabbar a.active::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        width: 26px;
        height: 3px;
        border-radius: 0 0 6px 6px;
        background: var(--volt);
    }

    .mobile-fab {
        position: fixed;
        left: 50%;
        bottom: 78px;
        transform: translate(-50%, 24px);
        z-index: 130;
        background: var(--pine);
        color: #fff;
        border-radius: 999px;
        display: flex;
        align-items: center;
        gap: .8rem;
        padding: .5rem .6rem .5rem 1rem;
        box-shadow: 0 10px 24px rgba(11, 42, 32, .28);
        font-size: 13.5px;
        font-weight: 600;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease, transform .3s ease, bottom .3s ease;
        max-width: calc(100vw - 32px);
        line-height: 1.4;
    }

    .mobile-fab.show {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .mobile-fab span {
        white-space: nowrap;
    }

    .mobile-fab .btn {
        min-height: 38px;
        padding: 0 1.25rem;
        font-size: 13px;
        box-shadow: inset 0 0 0 1px rgba(201, 231, 59, .35);
    }

    .hero {
        width: 100%;
        min-height: 100vh;
        min-height: 640px;
        display: flex;
        align-items: center;
        padding: 110px 0 90px;
        position: relative;
        overflow: hidden;
        background:
            radial-gradient(rgba(22, 106, 69, .06) 1px, transparent 1.5px),
            linear-gradient(100deg, rgba(246, 245, 240, .97), rgba(246, 245, 240, .78)),
            url('/assets/images/backpic/back-1.png') center / cover;
        background-size: 26px 26px, cover, cover;
    }

    .hero::after {
        content: "";
        position: absolute;
        right: -60px;
        bottom: -80px;
        width: 240px;
        height: 240px;
        border: 24px solid rgba(22, 106, 69, .04);
        border-radius: 50%;
        transform: rotate(-45deg);
        pointer-events: none;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero-copy {
        max-width: 620px;
    }

    .hero-status {
        display: inline-flex;
        gap: .5rem;
        align-items: center;
        background: rgba(22, 106, 69, .08);
        border: 1px solid rgba(22, 106, 69, .14);
        border-radius: 999px;
        padding: .4rem .95rem;
        color: var(--pitch);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .02em;
        margin-bottom: 24px;
    }

    .hero-status i {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--pitch);
        display: block;
        box-shadow: 0 0 0 4px rgba(22, 106, 69, .15);
    }

    .hero h1 {
        font-size: 54px;
        font-weight: 800;
        line-height: 1.18;
        letter-spacing: .01em;
        margin-bottom: 24px;
        color: var(--pine);
    }

    .hero h1 .h1-extra {
        display: block;
        color: var(--pitch);
        font-size: 24px;
        font-weight: 700;
        margin-top: 14px;
    }

    .hero-sub {
        font-size: 17px;
        color: var(--sub);
        max-width: 520px;
        line-height: 1.9;
        margin-bottom: 42px;
    }

    .hero-actions {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 44px;
    }

    .entry-note {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: .7rem 1.4rem;
        color: var(--muted);
        font-size: 13.5px;
        border-top: 1px solid rgba(11, 42, 32, .1);
        padding-top: 24px;
        max-width: 520px;
    }

    .entry-note span {
        display: inline-flex;
        gap: .45rem;
        align-items: center;
    }

    .entry-note span::before {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--volt);
        border: 1px solid var(--pitch);
    }

    .portal-card {
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 24px 60px rgba(11, 42, 32, .16);
        overflow: hidden;
        max-width: 420px;
        margin-left: auto;
        max-height: 100%;
    }

    .portal-card-top {
        background: var(--pine);
        color: #fff;
        padding: 1.25rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .portal-card-top strong {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        display: flex;
        align-items: center;
        gap: .6rem;
    }

    .portal-card-top strong svg {
        width: 22px;
        height: 22px;
    }

    .portal-chip {
        background: rgba(201, 231, 59, .15);
        border: 1px solid rgba(201, 231, 59, .4);
        color: var(--volt);
        border-radius: 999px;
        padding: .2rem .7rem;
        font-size: 12px;
        font-weight: 700;
    }

    .portal-card-body {
        padding: 1.75rem 1.5rem 1.5rem;
        background: #fff;
    }

    .portal-field {
        border: 1px solid #CBD5CF;
        border-radius: 10px;
        background: #FAFBF8;
        padding: .85rem 1rem;
        display: flex;
        align-items: center;
        gap: .7rem;
        margin-bottom: .9rem;
        color: var(--sub);
        font-size: 14px;
        position: relative;
        min-height: 48px;
    }

    .portal-field svg {
        width: 18px;
        height: 18px;
        color: var(--pitch);
        flex: 0 0 auto;
    }

    .portal-field span {
        font-size: 13.5px;
        color: var(--sub);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .portal-lockbar {
        display: flex;
        gap: .8rem;
        align-items: center;
        justify-content: space-between;
        font-size: 12px;
        color: var(--muted);
        margin-top: .2rem;
    }

    .portal-lockbar .btn {
        min-height: 46px;
        font-size: 14px;
        line-height: 1;
        flex: 0 0 auto;
        box-shadow: none;
    }

    .portal-lock {
        display: inline-flex;
        align-items: flex-start;
        gap: .4rem;
        line-height: 1.7;
    }

    .portal-lock svg {
        width: 15px;
        height: 15px;
        flex: 0 0 auto;
        margin-top: .15rem;
    }

    .portal-tip {
        padding: .7rem .9rem;
        background: rgba(201, 231, 59, .18);
        border-radius: 10px;
        font-size: 13px;
        color: var(--pine);
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .features-wrap {
        display: grid;
        grid-template-columns: 35% 1fr;
        gap: 1.5rem;
    }

    .feature-main {
        background: var(--pine);
        border-radius: 20px;
        color: #fff;
        padding: 2rem 1.8rem;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 440px;
        box-shadow: 0 16px 36px rgba(11, 42, 32, .2);
    }

    .feature-main .feature-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .48;
    }

    .feature-main::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 70%;
        background: linear-gradient(to top, rgba(11, 42, 32, .95), transparent);
        z-index: 1;
    }

    .feature-main-content {
        position: relative;
        z-index: 2;
    }

    .feature-main h3 {
        font-size: 24px;
        line-height: 1.45;
        color: #fff;
        margin-bottom: .9rem;
    }

    .feature-main p {
        color: rgba(246, 245, 240, .82);
        font-size: 15px;
        line-height: 1.9;
        max-width: 310px;
    }

    .feature-grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-content: stretch;
    }

    .feature-box {
        background: #fff;
        border: 1px solid var(--soft);
        border-radius: 20px;
        padding: 2rem 1.7rem 1.6rem;
        box-shadow: var(--card-shadow);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1rem;
        min-height: 210px;
        transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }

    .feature-box:hover {
        transform: translateY(-4px);
        box-shadow: var(--card-shadow-hover);
        border-color: var(--line);
    }

    .feature-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .8rem;
    }

    .feature-icons {
        width: 46px;
        height: 46px;
        color: #fff;
        border-radius: 14px;
        background: var(--pitch);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        box-shadow: 0 8px 18px rgba(22, 106, 69, .22);
    }

    .feature-icons svg {
        width: 23px;
        height: 23px;
        stroke-width: 1.9;
    }

    .feature-no {
        font-size: 13px;
        color: var(--track);
        font-weight: 700;
        letter-spacing: .08em;
    }

    .feature-box h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--pine);
        margin-bottom: .7rem;
    }

    .feature-box p {
        font-size: 14.5px;
        color: var(--sub);
        line-height: 1.85;
        margin-bottom: 0;
    }

    .scenario {
        background: #EEF1EA;
        position: relative;
        background-image: radial-gradient(rgba(22, 106, 69, .06) 1px, transparent 1px);
        background-size: 22px 22px;
    }

    .scenario-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .scenario-shot {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--card-shadow-hover);
        position: relative;
        aspect-ratio: 3 / 2;
        background: var(--pine);
    }

    .scenario-shot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .9;
    }

    .scenario-shot .play-note {
        position: absolute;
        left: 1.2rem;
        bottom: 1rem;
        color: #fff;
        background: rgba(11, 42, 32, .7);
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 999px;
        padding: .5rem 1rem;
        font-size: 13px;
        backdrop-filter: blur(4px);
        display: inline-flex;
        gap: .5rem;
        align-items: center;
    }

    .step-list {
        display: grid;
        gap: 1rem;
        counter-reset: step;
    }

    .step-item {
        display: grid;
        grid-template-columns: 46px 1fr;
        gap: 1rem;
        align-items: start;
        padding: 1rem 1.1rem;
        border: 1px solid var(--soft);
        background: #fff;
        border-radius: 16px;
        transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
        counter-increment: step;
    }

    .step-item:hover {
        border-color: var(--line);
        transform: translateX(4px);
        box-shadow: var(--card-shadow);
    }

    .step-num {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--pine);
        color: var(--volt);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        font-weight: 800;
        font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
        box-shadow: inset 0 0 0 2px var(--volt);
    }

    .step-item h3 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: .4rem;
        color: var(--ink);
    }

    .step-item p {
        font-size: 14.5px;
        color: var(--sub);
        line-height: 1.75;
        margin: 0;
    }

    .news-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        border: 1px solid transparent;
        transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .news-card:hover {
        transform: translateY(-5px);
        border-color: var(--line);
        box-shadow: var(--card-shadow-hover);
    }

    .news-cover {
        aspect-ratio: 16 / 10;
        width: 100%;
        background: #E4E8DF;
        overflow: hidden;
        position: relative;
    }

    .news-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }

    .news-card:hover .news-cover img {
        transform: scale(1.04);
    }

    .news-body {
        padding: 1.25rem 1.25rem 1.4rem;
        display: flex;
        flex-direction: column;
        gap: .7rem;
        flex: 1 1 auto;
    }

    .news-card h3 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.55;
        color: var(--ink);
        margin-bottom: .5rem;
    }

    .news-card h3 a:hover {
        color: var(--pitch);
    }

    .news-card p {
        font-size: 14.5px;
        color: var(--sub);
        line-height: 1.7;
        margin-bottom: .1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .6rem;
        font-size: 13px;
        color: var(--muted);
        margin-top: auto;
        border-top: 1px solid rgba(11, 42, 32, .06);
        padding-top: .8rem;
    }

    .news-meta .category-tag {
        color: var(--pitch);
        font-weight: 600;
    }

    .news-meta a {
        display: inline-flex;
        align-items: center;
        gap: .3rem;
    }

    .news-meta a svg {
        width: 14px;
        height: 14px;
        transition: transform .25s ease;
    }

    .news-meta a:hover {
        color: var(--pitch);
    }

    .news-meta a:hover svg {
        transform: translateX(3px);
    }

    .empty-state {
        border: 1.5px dashed rgba(22, 106, 69, .35);
        background: rgba(255, 255, 255, .72);
        border-radius: 20px;
        padding: 3.5rem 2rem;
        text-align: center;
        color: var(--sub);
        font-size: 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .empty-state svg {
        width: 42px;
        height: 42px;
        stroke: var(--pitch);
        stroke-width: 1.4;
        border: 2px dashed rgba(22, 106, 69, .2);
        border-radius: 50%;
        padding: .7rem;
        box-sizing: content-box;
    }

    .social-proof {
        background: var(--pine);
        color: #fff;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }

    .social-proof::before {
        content: "";
        position: absolute;
        right: -100px;
        top: -120px;
        width: 380px;
        height: 380px;
        background: url("/assets/images/backpic/back-2.webp") center/cover;
        opacity: .06;
        transform: rotate(14deg);
        border-radius: 20px;
    }

    .proof-grid {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 1.5rem;
        align-items: stretch;
    }

    .proof-nums {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 20px;
        padding: 2rem 1.8rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.2rem;
    }

    .proof-item {
        display: grid;
        grid-template-columns: 112px 1fr;
        gap: .9rem;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        padding-bottom: 1.2rem;
    }

    .proof-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .proof-number {
        font-size: 40px;
        font-weight: 800;
        color: var(--volt);
        font-variant-numeric: tabular-nums;
        line-height: 1;
        letter-spacing: -.02em;
    }

    .proof-item .proof-label {
        font-size: 14px;
        color: rgba(246, 245, 240, .88);
        line-height: 1.7;
    }

    .proof-note {
        background: rgba(201, 231, 59, .08);
        border-left: 3px solid var(--volt);
        border-radius: 12px;
        padding: 1.1rem 1rem;
        font-size: 14px;
        color: rgba(246, 245, 240, .82);
        line-height: 1.9;
    }

    .proof-quote {
        background: #fff;
        color: var(--ink);
        border-radius: 20px;
        padding: 2rem 1.7rem 1.8rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.4rem;
    }

    .proof-quote .quote-mark {
        color: var(--pitch);
        font-size: 48px;
        font-weight: 800;
        line-height: 1;
    }

    .proof-quote p {
        font-size: 16px;
        line-height: 1.95;
        color: var(--ink);
    }

    .quote-author {
        display: flex;
        align-items: center;
        gap: .7rem;
        font-size: 13.5px;
        color: var(--muted);
        border-top: 1px solid var(--soft);
        padding-top: 1rem;
    }

    .quote-author i {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--pitch);
        color: var(--volt);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-style: normal;
        font-size: 12px;
        font-weight: 800;
    }

    .proof-points {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    .proof-point {
        border: 1px solid rgba(255, 255, 255, .14);
        background: rgba(255, 255, 255, .04);
        border-radius: 16px;
        padding: 1rem 1.2rem;
        font-size: 14.5px;
        line-height: 1.8;
        color: rgba(246, 245, 240, .9);
        display: flex;
        gap: .8rem;
        align-items: flex-start;
    }

    .proof-point svg {
        width: 18px;
        height: 18px;
        color: var(--volt);
        flex: 0 0 auto;
        margin-top: .25rem;
        stroke-width: 1.9;
    }

    .faq-wrap {
        display: grid;
        grid-template-columns: 1fr 1.7fr;
        gap: 3rem;
        align-items: start;
    }

    .faq-list {
        border-top: 1px solid var(--soft);
    }

    .faq-item {
        border-bottom: 1px solid var(--soft);
    }

    .faq-question {
        width: 100%;
        background: transparent;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        min-height: 62px;
        padding: .9rem .2rem;
        text-align: left;
        cursor: pointer;
        font-size: 16px;
        font-weight: 650;
        color: var(--ink);
        line-height: 1.7;
    }

    .faq-question .faq-ic {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1.5px solid var(--line);
        position: relative;
        flex: 0 0 auto;
        transition: background .25s ease, transform .25s ease, border-color .25s ease;
    }

    .faq-question .faq-ic::before,
    .faq-question .faq-ic::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        translate: -50% -50%;
        background: var(--pitch);
        width: 12px;
        height: 1.8px;
    }

    .faq-question .faq-ic::after {
        width: 1.8px;
        height: 12px;
    }

    .faq-question[aria-expanded="true"] .faq-ic {
        transform: rotate(45deg);
        background: var(--volt);
        border-color: var(--volt);
    }

    .faq-question:hover {
        color: var(--pitch);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height .32s ease;
    }

    .faq-answer p {
        font-size: 15px;
        color: var(--sub);
        line-height: 1.9;
        padding: .2rem 1.6rem 1.4rem 0;
        margin: 0;
    }

    .faq-sidebox {
        padding: 2.2rem 1.9rem 1.9rem;
        background: #fff;
        border-radius: 20px;
        border: 1px solid var(--soft);
        box-shadow: var(--card-shadow);
    }

    .faq-sidebox h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--pine);
        margin-bottom: .8rem;
    }

    .faq-sidebox p {
        font-size: 14.5px;
        color: var(--sub);
        line-height: 1.95;
        margin-bottom: 0;
    }

    .faq-contact {
        margin-top: 1.4rem;
        padding: 1rem 1.2rem;
        background: rgba(22, 106, 69, .07);
        border-radius: 14px;
        font-size: 14px;
        color: var(--pitch);
        display: flex;
        gap: .7rem;
        align-items: center;
    }

    .final-cta {
        background: var(--pine);
        color: #fff;
        padding: 96px 0;
        position: relative;
        overflow: hidden;
    }

    .final-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('/assets/images/backpic/back-3.png') center/cover no-repeat;
        opacity: .05;
    }

    .final-cta .container {
        position: relative;
        z-index: 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .final-cta h2 {
        font-size: 34px;
        font-weight: 800;
        line-height: 1.4;
        color: #fff;
        margin-bottom: .8rem;
    }

    .final-cta p {
        font-size: 16px;
        color: rgba(246, 245, 240, .78);
        max-width: 480px;
        line-height: 1.9;
        margin-bottom: 2rem;
    }

    .final-cta .btn-primary {
        box-shadow: 0 12px 26px rgba(201, 231, 59, .26);
    }

    .site-footer {
        background: #081F18;
        color: rgba(246, 245, 240, .72);
        padding: 72px 0 36px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1.2fr 1.6fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .footer-brand {
        display: flex;
        gap: .7rem;
        align-items: center;
        margin-bottom: 1.2rem;
    }

    .footer-brand .brand-text {
        color: #fff;
    }

    .footer-brand .brand-text small {
        color: rgba(246, 245, 240, .55);
    }

    .footer-about {
        font-size: 14px;
        line-height: 1.9;
        color: rgba(246, 245, 240, .62);
        max-width: 360px;
    }

    .site-footer h4 {
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 1.2rem;
    }

    .footer-links {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: .75rem;
        font-size: 14px;
    }

    .footer-links li a {
        color: rgba(246, 245, 240, .65);
        transition: color .2s ease, padding-left .2s ease;
    }

    .footer-links li a:hover {
        color: var(--volt);
        padding-left: 4px;
    }

    .footer-contact {
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 14px;
        color: rgba(246, 245, 240, .62);
        display: grid;
        gap: .8rem;
    }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: .7rem;
    }

    .footer-contact svg {
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
        color: var(--volt);
        margin-top: .15rem;
        stroke-width: 1.8;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .09);
        padding-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 13px;
        color: rgba(246, 245, 240, .52);
    }

    .footer-bottom a {
        color: rgba(246, 245, 240, .62);
    }

    .footer-bottom a:hover {
        color: var(--volt);
    }

    .brand-mark-outline {
        display: none;
    }

    @media (min-width: 1180px) {
        .header-login-mobile {
            display: none;
        }
    }

    @media (max-width: 1079px) {
        .main-nav {
            gap: .6rem;
        }

        .main-nav .nav-link {
            font-size: 14px;
        }

        .brand-text {
            font-size: 17px;
        }
    }

    @media (max-width: 1024px) {
        .section-pad {
            padding-block: 72px;
        }

        .features-wrap {
            grid-template-columns: 1fr;
        }

        .feature-main {
            min-height: 340px;
        }

        .feature-main p {
            max-width: 520px;
        }

        .scenario-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .proof-grid {
            grid-template-columns: 1fr 1fr;
        }

        .proof-item {
            grid-template-columns: 1fr;
        }

        .proof-note {
            grid-column: 1 / -1;
        }

        .faq-wrap {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .proof-points {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .footer-grid {
            grid-template-columns: 1.5fr 1fr 1fr;
        }

        .footer-about-col {
            grid-column: 1 / -1;
        }

        .footer-about {
            max-width: none;
        }
    }

    @media (max-width: 768px) {
        html {
            scroll-padding-bottom: 84px;
        }

        body::after {
            height: 132px;
        }

        .section-pad {
            padding-block: 56px;
        }

        .container,
        .site-header .container {
            padding-inline: 1rem;
        }

        .site-header {
            background: rgba(246, 245, 240, .92);
        }

        .header-inner {
            min-height: 64px;
        }

        .brand-text {
            font-size: 16px;
        }

        .brand-text small {
            display: none;
        }

        .brand-mark {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            flex-basis: 36px;
        }

        .main-nav,
        .header-login {
            display: none;
        }

        .bottom-tabbar {
            display: flex;
        }

        .mobile-fab {
            display: flex;
        }

        .hero {
            padding: 104px 0 64px;
            min-height: auto;
        }

        .hero h1 {
            font-size: 36px;
        }

        .hero h1 .h1-extra {
            font-size: 17px;
            margin-top: 12px;
        }

        .hero-sub {
            font-size: 15.5px;
            line-height: 1.9;
            margin-bottom: 32px;
        }

        .hero-actions {
            gap: .8rem;
        }

        .hero-actions .btn {
            flex: 1 1 auto;
            max-width: 220px;
        }

        .portal-card {
            margin-left: 0;
            margin-top: 2rem;
        }

        .entry-note {
            font-size: 12px;
            padding-top: 18px;
        }

        .section-title {
            font-size: 28px;
        }

        .section-desc {
            font-size: 15px;
        }

        .feature-main {
            min-height: 310px;
            padding: 1.5rem;
        }

        .feature-grid-2,
        .feature-grid-2 .feature-box {
            min-height: 0;
        }

        .feature-grid-2 {
            grid-template-columns: 1fr;
        }

        .feature-box {
            padding: 1.5rem 1.4rem;
        }

        .scenario-grid {
            gap: 2rem;
        }

        .scenario-shot {
            aspect-ratio: 4 / 3.2;
        }

        .proof-grid {
            grid-template-columns: 1fr;
        }

        .proof-nums,
        .proof-note,
        .proof-quote,
        .proof-points {
            grid-column: auto;
        }

        .proof-points {
            grid-template-columns: 1fr;
        }

        .proof-number {
            font-size: 32px;
        }

        .news-card h3 {
            font-size: 17px;
        }

        .faq-question {
            font-size: 15px;
        }

        .faq-answer p {
            font-size: 14.5px;
        }

        .final-cta {
            padding: 64px 0;
        }

        .final-cta h2 {
            font-size: 27px;
        }

        .final-cta p {
            font-size: 15px;
            max-width: 100%;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            row-gap: 2rem;
        }

        .footer-about-col {
            grid-column: auto;
        }

        .site-footer {
            padding: 48px 0 28px;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }

        .mobile-fab {
            max-width: calc(100vw - 20px);
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 31px;
        }

        .hero-status {
            font-size: 12px;
            padding: .35rem .7rem;
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }

        .portal-card {
            max-width: none;
        }

        .portal-card-body {
            padding: 1.4rem 1.1rem;
        }

        .features-wrap {
            display: block;
        }

        .feature-main {
            margin-bottom: 1.2rem;
            min-height: 400px;
        }

        .mobile-fab {
            bottom: 74px;
        }

        .mobile-fab span {
            max-width: 150px;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .header-login {
            display: none;
        }
    }

/* roulang page: article */
:root {
            --cream: #F6F5F0;
            --pitch: #166A45;
            --pine: #0B2A20;
            --volt: #C9E73B;
            --orange: #F2711C;
            --ink: #1E2A24;
            --sub: #59685F;
            --border: rgba(22, 106, 69, 0.16);
            --card-radius: 20px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background-color: var(--cream);
            color: var(--ink);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        a:hover {
            color: var(--pitch);
        }
        .container {
            max-width: 80rem;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        .site-header {
            background: var(--cream);
            box-shadow: 0 1px 0 var(--border);
            position: sticky;
            top: 0;
            z-index: 50;
            height: 72px;
        }
        .header-inner {
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-mark {
            width: 40px;
            height: 40px;
            background: var(--pine);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .brand-mark svg {
            width: 24px;
            height: 24px;
        }
        .brand-text {
            font-weight: 800;
            font-size: 1.17rem;
            color: var(--pine);
            line-height: 1.2;
            display: flex;
            flex-direction: column;
        }
        .brand-text small {
            font-size: 0.68rem;
            font-weight: 400;
            color: var(--pitch);
            letter-spacing: 0.08em;
            margin-top: 2px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }
        .nav-link {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 999px;
            color: var(--ink);
            transition: background 0.2s, color 0.15s ease;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .nav-link:hover {
            background: rgba(22, 106, 69, 0.07);
            color: var(--pitch);
        }
        .nav-link::after {
            content: "";
            display: block;
            position: absolute;
            bottom: 3px;
            left: 16px;
            right: 16px;
            height: 0;
            border-radius: 2px;
            transition: all 0.2s;
        }
        .nav-link:hover::after {
            height: 0;
        }
        .nav-link.active {
            color: var(--pine);
            font-weight: 700;
            background: rgba(201, 231, 59, 0.22);
        }
        .nav-link.active::after {
            display: none;
        }
        .btn {
            font-weight: 600;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 44px;
            padding: 0 1.6rem;
            border: 1.5px solid transparent;
            transition: all 0.25s ease;
            cursor: pointer;
            text-align: center;
            white-space: nowrap;
            font-size: 0.98rem;
        }
        .btn-primary {
            background: var(--volt);
            color: var(--pine);
        }
        .btn-primary:hover {
            background: #d8f25c;
            box-shadow: 0 8px 20px rgba(201, 231, 59, 0.28);
            color: var(--pine);
            transform: translateY(-2px);
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(201, 231, 59, 0.9);
            outline-offset: 2px;
            box-shadow: 0 0 0 6px rgba(22, 106, 69, 0.15);
        }
        .btn-primary svg {
            transition: transform 0.2s;
        }
        .btn-primary:hover svg {
            transform: translateX(4px);
        }
        .btn-outline {
            border-color: var(--pine);
            background: transparent;
            color: var(--pine);
        }
        .btn-outline:hover {
            background: rgba(22, 106, 69, 0.08);
            color: var(--pine);
        }
        .site-footer {
            background: var(--pine);
            color: #d7e2dc;
            padding: 64px 0 28px;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }
        .footer-brand .brand-text {
            color: #fff;
        }
        .site-footer h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: #f1f4ef;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-links,
        .footer-contact {
            list-style: none;
            font-size: 0.9rem;
            line-height: 2.1;
        }
        .footer-links a {
            color: #b4c2b9;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--volt);
        }
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            color: #b4c2b9;
        }
        .footer-contact svg {
            width: 17px;
            height: 17px;
            flex-shrink: 0;
            margin-top: 5px;
        }
        .footer-about-col p {
            color: #a0b4a9;
            font-size: 0.92rem;
            line-height: 1.9;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 8px 20px;
            font-size: 0.8rem;
            color: #88a093;
        }
        .post-layout {
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        .article-hero {
            padding: 36px 0 20px;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--sub);
            margin-bottom: 24px;
        }
        .breadcrumb a {
            color: var(--sub);
        }
        .breadcrumb a:hover {
            color: var(--pitch);
        }
        .breadcrumb span.divider {
            opacity: 0.5;
        }
        .article-body {
            width: 100%;
        }
        .article-hero .title {
            font-size: clamp(1.6rem, 4vw, 2.6rem);
            line-height: 1.4;
            font-weight: 800;
            color: var(--pine);
            max-width: 60ch;
        }
        .meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.1rem;
            margin-top: 18px;
            font-size: 0.85rem;
            color: var(--sub);
            align-items: center;
        }
        .meta-row svg {
            width: 15px;
            height: 15px;
            margin-right: 3px;
            vertical-align: -2px;
        }
        .meta-chip {
            background: white;
            padding: 3px 10px;
            border-radius: 999px;
            border: 1px solid var(--border);
            font-weight: 500;
            color: var(--pitch);
            margin-right: 4px;
            font-size: 0.8rem;
        }
        .divider-line {
            border: none;
            height: 1px;
            background: var(--border);
            margin: 26px 0 34px;
        }
        .article-main {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 280px;
            gap: 48px;
            margin-bottom: 60px;
        }
        .article-body {
            font-size: 1rem;
            line-height: 2;
            overflow-wrap: break-word;
        }
        .article-body p {
            margin-bottom: 1.8em;
            font-size: 1rem;
            line-height: 1.9;
            color: #243228;
        }
        .article-body h1,
        .article-body h2,
        .article-body h3,
        .article-body h4 {
            color: var(--pine);
            margin: 2em 0 0.85em;
            font-weight: 700;
            line-height: 1.45;
            border-left: 5px solid var(--volt);
            padding-left: 14px;
        }
        .article-body h1 {
            font-size: 1.7rem;
            font-size: 28px;
        }
        .article-body h2 {
            font-size: 1.55rem;
        }
        .article-body h3 {
            font-size: 1.3rem;
            border-left-color: var(--pitch);
            border-width: 3px;
        }
        .article-body img {
            border-radius: 14px;
            margin: 2em 0;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .article-body ul {
            margin: 1.6em 0;
            padding-left: 1.2rem;
        }
        .article-body li {
            margin-bottom: 0.5em;
        }
        .article-body blockquote {
            border-left: 4px solid var(--volt);
            background: rgba(22, 106, 69, 0.06);
            padding: 1.1rem 1.3rem;
            border-radius: 0 14px 14px 0;
            color: var(--sub);
            margin: 1.8em 0;
            font-style: normal;
        }
        .article-body blockquote p {
            margin-bottom: 0;
            color: var(--sub);
        }
        .article-body a {
            color: var(--pitch);
            text-decoration: underline;
            text-underline-offset: 3px;
            font-weight: 500;
        }
        .notify-box {
            background: #fffcf5;
            border: 1px solid #f0d9a8;
            border-left: 5px solid var(--orange);
            border-radius: 14px;
            padding: 1.2rem 1.4rem;
            font-size: 0.95rem;
            line-height: 1.8;
            color: #5a3b1a;
            margin: 30px 0;
        }
        .notify-box strong {
            font-weight: 700;
            margin-right: 6px;
        }
        .author-box {
            background-color: #ffffff;
            background-image: linear-gradient(150deg, rgba(201, 231, 59, 0.12) 0%, transparent 40%);
            border: 1px solid var(--border);
            border-radius: var(--card-radius);
            padding: 28px;
            margin-top: 40px;
            display: flex;
            gap: 28px;
        }
        .page-shell {
            min-height: 70vh;
        }
        .empty-post {
            padding: 80px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background: #f6f5f0;
            min-height: 50vh;
        }
        .empty-icon {
            width: 88px;
            height: 88px;
            border: 2px dashed var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--sub);
            margin-bottom: 20px;
            background: #fff;
        }
        .side-block {
            border: 1px solid var(--border);
            border-radius: 18px;
            background: white;
            padding: 22px;
            margin-bottom: 22px;
        }
        .side-block h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--pine);
        }
        .side-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .badge {
            background: #f1f7f2;
            color: var(--pitch);
            padding: 4px 10px;
            font-size: 0.78rem;
            border-radius: 999px;
            border: 1px solid var(--border);
            font-weight: 500;
        }
        .fixed-bar {
            position: fixed;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%) translateY(150%);
            z-index: 90;
            background: var(--pine);
            border-radius: 999px;
            padding: 8px 8px 8px 20px;
            backdrop-filter: blur(8px);
            box-shadow: 0 14px 34px rgba(11, 42, 32, 0.35);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: transform 0.45s cubic-bezier(.2, .8, .2, 1);
            width: 82%;
            max-width: 400px;
            justify-content: space-between;
        }
        .fixed-bar.visible {
            transform: translateX(-50%) translateY(0%);
        }
        .fixed-bar .fixed-text {
            color: #eef7ed;
            font-size: 0.88rem;
            font-weight: 500;
            white-space: nowrap;
        }
        .fixed-bar .btn {
            height: 40px;
            background: var(--volt);
            padding: 0 18px;
            font-size: 0.86rem;
        }
        .related-links {
            margin-top: 55px;
        }
        .related-links .head {
            font-size: 1rem;
            font-weight: 700;
            color: var(--pine);
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(22, 106, 69, 0.12);
        }
        .related-links ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .read-next {
            font-size: 0.94rem;
            background-color: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 6px 12px;
            transition: border 0.2s, background 0.2s;
            color: var(--ink);
        }
        .read-next:hover {
            background: #fafff1;
            border-color: var(--pitch);
        }
        .safety-tip {
            margin-top: 28px;
            background: rgba(22, 106, 69, 0.06);
            border-radius: 14px;
            padding: 22px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .footer-notes {
            font-size: 0.82rem;
            color: var(--sub);
            margin-top: 6px;
        }
        .empty-article button {
            margin-top: 12px;
        }
        @media (max-width: 1200px) {
            .article-main {
                grid-template-columns: minmax(0, 1fr);
            }
        }
        @media (max-width: 768px) {
            .container {
                padding-left: 1.1rem;
                padding-right: 1.1rem;
            }
            .site-header {
                height: auto;
                padding: 10px 0;
            }
            .header-inner {
                height: auto;
                flex-wrap: wrap;
                gap: 6px;
            }
            .header-login {
                margin-left: auto;
            }
            .main-nav {
                order: 3;
                width: 100%;
                overflow-x: auto;
                gap: 2px;
                justify-content: flex-start;
            }
            .main-nav .nav-link {
                white-space: nowrap;
            }
            .brand-mark {
                width: 36px;
                height: 36px;
            }
            .article-main {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .author-box {
                flex-direction: column;
                gap: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }
        @media (max-width: 520px) {
            .header-login {
                display: none;
            }
            .main-nav {
                padding-bottom: 3px;
                margin-top: 4px;
            }
            .header-inner {
                display: flex;
                justify-content: space-between;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .fixed-bar {
                bottom: 80px;
                width: 87%;
                gap: 8px;
            }
            .fixed-bar .fixed-text {
                font-size: 0.82rem;
            }
        }
        .login-callout {
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-color: #f2f0e8;
            border-radius: 18px;
            padding: 16px;
            color: var(--pine);
            background-blend-mode: lighten;
            margin: 18px 0 0;
            position: relative;
        }

/* roulang page: category1 */
:root{--cream:#F6F5F0;--pitch:#166A45;--pine:#0B2A20;--volt:#C9E73B;--track:#F2711C;--ink:#1E2A24;--sub:#59685F;--line:#DDE3DD;--card-shadow:0 2px 10px rgba(20,60,40,0.06);--hover-shadow:0 12px 24px rgba(20,60,40,0.12)}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--cream);color:var(--ink);font-family:system-ui,-apple-system,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;line-height:1.9;font-size:16px;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul,ol{padding:0;margin:0;list-style:none}
input,button{font:inherit}
.container{max-width:80rem;margin:0 auto;padding-left:1.5rem;padding-right:1.5rem}
@media(max-width:640px){.container{padding-left:1rem;padding-right:1rem}}
.site-header{position:fixed;top:0;left:0;width:100%;height:72px;background:rgba(246,245,240,0.94);backdrop-filter:blur(14px);border-bottom:1px solid rgba(22,106,69,0.12);z-index:120}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px;gap:1.5rem}
.brand{display:flex;align-items:center;gap:10px;min-width:0}
.brand-mark{width:34px;height:34px;border-radius:10px;background:var(--pine);display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 4px 10px rgba(11,42,32,0.2)}
.brand-mark svg{width:22px;height:22px}
.brand-text{font-weight:800;font-size:1.12rem;color:var(--ink);white-space:nowrap;letter-spacing:.01em}
.brand-text small{display:block;font-size:.6rem;font-weight:600;color:var(--sub);letter-spacing:.2em;margin-top:-2px}
.main-nav{display:flex;align-items:center;gap:2rem}
.main-nav .nav-link{font-size:.95rem;font-weight:600;color:#3D4B43;position:relative;padding:6px 2px;transition:color .2s}
.main-nav .nav-link::after{content:"";position:absolute;left:0;bottom:-4px;width:100%;height:2px;border-radius:999px;background:var(--pitch);transform:scaleX(0);transition:transform .2s}
.main-nav .nav-link:hover{color:var(--pitch)}
.main-nav .nav-link:hover::after{transform:scaleX(1)}
.main-nav .nav-link.active{color:var(--pitch)}
.main-nav .nav-link.active::after{transform:scaleX(1)}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;padding:0 1.75rem;border-radius:999px;font-weight:650;font-size:.95rem;letter-spacing:.02em;transition:all .2s ease;border:none;cursor:pointer;white-space:nowrap}
.btn svg{transition:transform .2s;flex-shrink:0}
.btn-primary{background:var(--volt);color:#152417}
.btn-primary:hover{filter:brightness(1.08);transform:translateY(-2px);box-shadow:0 10px 22px rgba(201,231,59,0.35)}
.btn-primary:hover svg{transform:translateX(4px)}
.btn-primary:focus-visible{outline:3px solid var(--volt);outline-offset:3px}
.btn-secondary{background:transparent;border:1.5px solid var(--pine);color:var(--pine)}
.btn-secondary:hover{background:rgba(22,106,69,0.08);transform:translateY(-2px)}
.btn-ghost{background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.35);color:#fff}
.btn-ghost:hover{background:rgba(255,255,255,0.2)}
@media(max-width:1024px){.main-nav{display:none}}
.btn-login-mobile{display:inline-flex}
@media(min-width:1025px){.btn-login-mobile{display:none}}
.hero{padding:132px 0 64px;position:relative;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:url('/assets/images/backpic/back-1.png') center/cover no-repeat;opacity:.1;z-index:0}
.hero-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,var(--cream),rgba(246,245,240,0.6))}
.hero .container{position:relative;z-index:2}
.hero-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:3rem;align-items:center}
@media(max-width:1024px){.hero-grid{grid-template-columns:1fr;gap:2rem}.hero{padding:110px 0 40px}}
.kicker{display:inline-flex;align-items:center;gap:8px;font-size:.8rem;font-weight:700;color:var(--pitch);letter-spacing:.18em;text-transform:uppercase;margin-bottom:1rem}
.kicker::before{content:"";width:14px;height:5px;background:var(--volt);border-radius:2px}
.hero h1{font-size:clamp(2.2rem,4vw,3.4rem);line-height:1.2;font-weight:800;color:var(--ink);margin:0 0 .4rem;letter-spacing:-.01em}
.hero-sub{font-size:1.15rem;color:var(--sub);max-width:600px;margin:.75rem 0 0;font-weight:400}
.hero-lead{color:#59685F;font-size:1rem;max-width:52ch;margin:1.2rem 0 0;line-height:1.9}
.hero-deco{width:100%;display:flex;gap:12px;margin-top:2.5rem}
.hero-deco-line{width:42px;height:3px;background:var(--pitch);opacity:.5;border-radius:2px}
.portal-wrap{background:#fff;border-radius:20px;padding:6px;box-shadow:0 24px 60px rgba(20,60,40,0.14);border:1px solid rgba(22,106,69,0.1)}
.portal-card{border-radius:16px;overflow:hidden;border:1px solid var(--line)}
.portal-head{background:var(--pine);padding:20px 24px;display:flex;flex-direction:column;gap:6px}
.portal-head span{color:var(--volt);font-size:.7rem;font-weight:700;letter-spacing:.2em}
.portal-head strong{color:#fff;font-size:1.2rem;font-weight:700}
.portal-body{padding:24px}
.login-row{display:flex;align-items:center;gap:10px;border:1.5px solid var(--line);border-radius:10px;height:46px;padding:0 12px;margin-bottom:10px;background:#FBFBF8}
.login-row svg{width:17px;height:17px;color:#8B928E;flex-shrink:0}
.login-row span{font-size:.85rem;color:#8B928E}
.login-btn{background:var(--pitch);color:#fff;border-radius:10px;height:48px;display:flex;align-items:center;justify-content:center;font-weight:650;width:100%;margin-top:14px;transition:all .2s}
.login-btn:hover{background:#124F34;transform:translateY(-2px);box-shadow:0 8px 18px rgba(22,106,69,0.2)}
.login-helper{margin-top:14px;font-size:.75rem;color:#8B928E;text-align:center;display:flex;align-items:center;justify-content:center;gap:6px}
.login-helper svg{width:14px;height:14px;color:var(--pitch)}
.section-block{padding:80px 0}
@media(max-width:768px){.section-block{padding:56px 0}.hero{padding:100px 0 32px}}
.sec-header{display:flex;align-items:flex-end;justify-content:space-between;gap:1.5rem;margin-bottom:2.2rem}
@media(max-width:768px){.sec-header{flex-direction:column;align-items:flex-start}}
.sec-title-wrap{margin-bottom:.2rem}
.sec-kicker{display:inline-flex;align-items:center;gap:6px;font-size:.78rem;font-weight:700;color:var(--pitch);letter-spacing:.2em;margin-bottom:8px}
.sec-kicker::before{content:"";width:14px;height:5px;background:var(--volt);border-radius:2px}
.sec-title{font-size:clamp(1.7rem,2.6vw,2.25rem);font-weight:750;line-height:1.3;color:var(--ink);margin:0}
.sec-sub{color:var(--sub);font-size:1.02rem;max-width:680px;margin-top:.65rem;line-height:1.8}
.sec-link{display:inline-flex;align-items:center;gap:6px;font-size:.9rem;font-weight:700;color:var(--pitch);border-bottom:2px solid rgba(22,106,69,0.18);padding-bottom:3px;transition:all .2s}
.sec-link:hover{border-color:var(--pitch)}
.sec-link svg{width:15px;height:15px;transition:transform .2s}
.sec-link:hover svg{transform:translateX(3px)}
.grid-2col{display:grid;grid-template-columns:repeat(2,1fr);gap:1.2rem}
@media(max-width:768px){.grid-2col{grid-template-columns:1fr}}
.feature-main{background:#fff;border:1px solid var(--line);border-radius:20px;padding:28px;display:flex;flex-direction:column;gap:14px;box-shadow:var(--card-shadow);transition:all .25s}
.feature-main:hover{box-shadow:var(--hover-shadow);transform:translateY(-4px)}
.feature-main .icon-ring{width:48px;height:48px;border-radius:14px;background:rgba(22,106,69,.1);display:flex;align-items:center;justify-content:center}
.feature-main .icon-ring svg{width:22px;height:22px;stroke:var(--pitch)}
.feature-main h3{font-size:1.25rem;font-weight:750;margin:0;line-height:1.4}
.feature-main p{color:var(--sub);font-size:.9rem;line-height:1.85;margin:0}
.feature-num{font-size:2rem;font-weight:800;color:transparent;-webkit-text-stroke:.8px rgba(22,106,69,0.45);line-height:1}
.feat-grid-2{display:grid;grid-template-columns:1fr;gap:1.2rem}
@media(min-width:768px){.feat-grid-2 .grid-2col{grid-template-columns:1fr}}
@media(min-width:769px){.feat-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}}
.feature-card{background:#fff;border:1px solid var(--line);border-radius:18px;padding:22px;display:flex;gap:15px;align-items:flex-start;transition:all .25s}
.feature-card:hover{box-shadow:var(--hover-shadow);transform:translateY(-4px)}
.feature-card .fc-icon{width:42px;height:42px;border-radius:12px;background:rgba(201,231,59,.28);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.feature-card .fc-icon svg{width:20px;height:20px;stroke:var(--pine)}
.feature-card h3{font-size:1.02rem;font-weight:700;margin:0 0 4px}
.feature-card p{color:var(--sub);font-size:.85rem;line-height:1.75;margin:0}
.feature-card.top-border{border-top:3px solid var(--volt)}
.soft-bg{background:#ECEBE4}
.grid-lead{}
.lead-layout{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center}
@media(max-width:768px){.lead-layout{grid-template-columns:1fr;gap:2rem}}
.lead-visual{position:relative;border-radius:20px;overflow:hidden;box-shadow:var(--card-shadow);border:1px solid var(--line)}
.lead-visual img{width:100%;height:320px;object-fit:cover;object-position:center}
@media(max-width:640px){.lead-visual img{height:220px}}
.visual-tag{position:absolute;top:16px;left:16px;background:rgba(11,42,32,.85);color:var(--volt);font-size:.72rem;font-weight:700;letter-spacing:.1em;padding:6px 12px;border-radius:999px;backdrop-filter:blur(4px)}
.step-flow{display:flex;flex-direction:column;gap:0;position:relative}
.step-flow::before{content:"";position:absolute;left:24px;top:30px;bottom:30px;width:2px;background:repeating-linear-gradient(to bottom,var(--line) 0 6px,transparent 6px 12px)}
.step-item{display:flex;gap:16px;position:relative;padding:12px 0;align-items:flex-start}
@media(max-width:768px){.step-item{padding:8px 0}}
.step-num{width:48px;height:48px;flex-shrink:0;border-radius:50%;background:#fff;border:2px solid var(--pitch);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.02rem;color:var(--pitch);position:relative;z-index:1;box-shadow:0 0 0 5px var(--cream)}
.step-item:nth-child(2) .step-num{border-color:var(--track);color:var(--track)}
.step-item:nth-child(3) .step-num{border-color:var(--pine);color:var(--pine)}
.step-item:nth-child(4) .step-num{background:var(--volt);border-color:var(--volt);color:#152417}
.step-content{flex:1;padding-top:2px}
.step-content h3{font-size:1.02rem;font-weight:750;margin:0 0 3px}
.step-content p{font-size:.85rem;color:var(--sub);margin:0;line-height:1.7}
.step-sub{font-size:.75rem;color:#8B928E;margin-top:4px}
.entry-card{background:#fff;border-radius:20px;overflow:hidden;box-shadow:var(--card-shadow);border:1px solid rgba(22,106,69,.08);transition:all .25s}
.entry-card:hover{box-shadow:var(--hover-shadow);transform:translateY(-4px)}
.entry-card img{width:100%;height:165px;object-fit:cover}
.entry-card .card-body{padding:1.1rem 1.2rem 1.2rem}
.entry-card h3{font-size:18px;font-weight:700;margin:0 0 5px;line-height:1.4}
.entry-card h3 a{transition:color .2s}
.entry-card h3 a:hover{color:var(--pitch)}
.entry-card p{color:var(--sub);font-size:.85rem;line-height:1.75;margin:0 0 8px}
.card-chip{display:inline-flex;align-items:center;gap:6px;background:rgba(201,231,59,.3);color:#33421E;border-radius:999px;font-size:.72rem;font-weight:650;padding:3px 10px;margin-bottom:8px}
.card-chip::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--pitch)}
.card-meta{display:flex;align-items:center;gap:12px;font-size:.74rem;color:#8B928E}
.card-meta span{display:inline-flex;align-items:center;gap:5px}
.time-nums{font-variant-numeric:tabular-nums}
.notice-card{display:flex;align-items:center;gap:16px;padding:14px 16px;background:#fff;border-radius:16px;border:1px solid rgba(22,106,69,.1);transition:all .2s;}
.notice-card:hover{box-shadow:0 6px 18px rgba(22,106,69,.1);transform:translateY(-2px);border-color:rgba(22,106,69,.2)}
.notice-dot{width:9px;height:9px;border-radius:50%;background:var(--volt);flex-shrink:0;box-shadow:0 0 0 4px rgba(201,231,59,.2)}
.notice-date{font-size:.8rem;color:#8B928E;margin-left:auto;font-variant-numeric:tabular-nums;white-space:nowrap}
.notice-title{color:var(--ink);font-size:.95rem;font-weight:600;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}
.side-card{border:1px solid rgba(22,106,69,.1);border-radius:20px;background:#fff;padding:1.2rem 1.2rem .9rem;box-shadow:var(--card-shadow)}
.side-card h3{font-size:1rem;font-weight:800;color:var(--ink);display:flex;align-items:center;gap:8px;margin:0 0 10px}
.side-card h3::before{content:"";width:8px;height:8px;border-radius:2px;background:var(--volt)}
.side-list li{display:flex;gap:10px;align-items:flex-start;padding:.55rem 0;border-bottom:1px dashed var(--line);font-size:.84rem;color:#3E5748}
.side-list li:last-child{border-bottom:0}
.side-list svg{width:15px;height:15px;stroke:var(--pitch);flex-shrink:0;margin-top:4px}
.side-link{color:var(--pitch);font-weight:700;font-size:.85rem}
.empty-state{border:1.5px dashed #B6BFB8;border-radius:20px;background:rgba(255,255,255,.5);padding:48px 24px;text-align:center;max-width:600px;margin:0 auto}
.empty-circle{width:54px;height:54px;border-radius:50%;border:1.5px solid #B6BFB8;margin:0 auto 14px;display:flex;align-items:center;justify-content:center}
.empty-circle svg{width:20px;height:20px;color:#B6BFB8}
.empty-state p{color:#8B928E;font-size:.85rem;margin:0 0 12px;line-height:1.65}
.dark-band{background:var(--pine);color:#F6F5F0;padding:60px 0;position:relative;overflow:hidden}
.dark-band::before{content:"";position:absolute;inset:0;background:url('/assets/images/backpic/back-1.png') center/cover no-repeat;opacity:.07}
.dark-band .container{position:relative}
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-bottom:2.5rem}
@media(max-width:768px){.stats-row{grid-template-columns:repeat(2,1fr);gap:1rem}}
.stat-item{padding:1rem 0}
.stat-item .num{font-size:2.2rem;font-weight:800;color:#fff;line-height:1.15;font-variant-numeric:tabular-nums;margin-bottom:.2rem}
.stat-item .num small{font-size:1rem;color:var(--volt);margin-left:4px}
.stat-item .label{font-size:.82rem;color:rgba(255,255,255,.65)}
.stat-divider{border-left:1px solid rgba(255,255,255,.12)}
.testimony{display:grid;grid-template-columns:.8fr 1.2fr;gap:2rem;align-items:center;margin-top:.5rem}
@media(max-width:768px){.testimony{grid-template-columns:1fr}}
.quote-box{background:rgba(22,106,69,.15);border-left:4px solid var(--volt);border-radius:0 14px 14px 0;padding:1.1rem 1.2rem}
.quote-box p{margin:0 0 6px;color:#E6EFE8;font-size:.9rem;line-height:1.85}
.quote-author{font-size:.78rem;color:rgba(255,255,255,.7)}
.pine-title{color:#fff;font-size:1.2rem;font-weight:750}
.pine-sub{color:rgba(255,255,255,.6);font-size:.88rem;margin-top:6px}
.faq-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:0 2rem}
@media(max-width:768px){.faq-grid{grid-template-columns:1fr}}
.faq-item{border-bottom:1px solid var(--line);position:relative}
.faq-q{margin:0}
.faq-q button{width:100%;display:flex;justify-content:space-between;align-items:center;min-height:52px;background:none;border:0;cursor:pointer;font-size:.95rem;font-weight:650;color:var(--ink);padding:0 8px;text-align:left;gap:10px;transition:color .2s}
.faq-q button:hover{color:var(--pitch)}
.faq-q button:focus-visible{outline:2px solid var(--volt);border-radius:8px}
.faq-icon{width:26px;height:26px;border-radius:50%;border:1.5px solid var(--line);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .2s;background:#fff}
.faq-icon svg{width:11px;height:11px;stroke:var(--pitch);transition:transform .2s}
.faq-item.open .faq-icon{background:var(--pine);border-color:var(--pine)}
.faq-item.open .faq-icon svg{transform:rotate(45deg);stroke:#fff}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease-in-out}
.faq-a-inner{padding:0 8px 18px;font-size:.85rem;color:var(--sub);line-height:1.85}
.faq-a-inner a{color:var(--pitch);font-weight:600}
.faq-footer{display:flex;justify-content:center;margin-top:1.6rem}
.cta-block{position:relative;border-radius:20px;background:var(--pine);overflow:hidden;padding:3rem 2rem}
.cta-block::before{content:"";position:absolute;inset:0;background:url('/assets/images/backpic/back-3.png') center/cover no-repeat;opacity:.08}
.cta-inner{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:2rem}
@media(max-width:768px){.cta-inner{flex-direction:column;text-align:center}}
.cta-title{color:#fff;font-size:clamp(1.4rem,2vw,2rem);font-weight:800;margin:0 0 6px}
.cta-sub{color:rgba(255,255,255,.7);font-size:.92rem;margin:0}
.cta-btns{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
.site-footer{background:var(--pine);color:rgba(255,255,255,.72);padding-top:60px;margin-top:0}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2.2rem}
@media(max-width:768px){.footer-grid{grid-template-columns:1fr 1fr;gap:2.2rem 1.2rem}}
@media(max-width:540px){.footer-grid{grid-template-columns:1fr}}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:.7rem}
.footer-brand .brand-text{font-weight:800;font-size:1.15rem;color:#fff;white-space:nowrap}
.footer-brand .brand-text small{display:block;font-size:.62rem;color:rgba(255,255,255,.5);font-weight:500}
.footer-brand .brand-mark{background:rgba(255,255,255,.08);border-radius:10px;padding:7px}
.footer-about{font-size:.86rem;color:rgba(255,255,255,.55);line-height:1.9;max-width:30rem;margin:.85rem 0 0}
.site-footer h4{font-size:.85rem;letter-spacing:.14em;font-weight:700;color:#fff;margin:0 0 16px;text-transform:uppercase}
.footer-links li,.footer-contact li{margin-bottom:9px}
.footer-links a{font-size:.88rem;color:rgba(255,255,255,.55);transition:all .2s}
.footer-links a:hover{color:var(--volt);padding-left:3px}
.footer-contact li{display:flex;align-items:flex-start;gap:8px;font-size:.82rem;color:rgba(255,255,255,.55);line-height:1.7}
.footer-contact svg{width:15px;height:15px;color:var(--volt);flex-shrink:0;margin-top:5px}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;border-top:1px solid rgba(255,255,255,.1);margin-top:2rem;padding:1.2rem 0;font-size:.74rem;color:rgba(255,255,255,.35)}
@media(max-width:640px){.footer-bottom{flex-direction:column;align-items:flex-start;gap:6px}}
.mobile-tab{display:none}
@media(max-width:1024px){.mobile-tab{position:fixed;bottom:0;left:0;width:100%;height:64px;background:rgba(255,255,255,.98);border-top:1px solid rgba(22,106,69,.12);box-shadow:0 -8px 24px rgba(20,60,40,.06);display:flex;z-index:200;padding:0 max(.6rem,env(safe-area-inset-left)) 0 max(.6rem,env(safe-area-inset-right))}.mobile-tab a{display:flex;align-items:flex-start;justify-content:center;flex-direction:column;flex:1;gap:4px;font-size:.74rem;font-weight:600;color:var(--sub);position:relative;text-align:center}.mobile-tab a.active{color:var(--pitch)}.mobile-tab a.active::before{content:"";position:absolute;top:-1px;left:50%;transform:translateX(-50%);height:3px;width:36px;border-radius:0 0 8px 8px;background:var(--volt)}.mobile-tab .mobile-icon{display:inline-flex;width:24px;height:24px;align-items:center;justify-content:center}.mobile-icon svg{width:23px;height:23px;margin-top:5px}.mobile-tab span:last-child{margin-top:-3px}}
body{padding-bottom:0}
@media(max-width:1024px){body{padding-bottom:64px}}
.fab-cta{display:none}
@media(max-width:1024px){.fab-cta{position:fixed;right:16px;bottom:76px;background:var(--volt);color:#152417;height:46px;padding:0 18px;border-radius:999px;display:flex;align-items:center;gap:7px;font-size:.85rem;font-weight:800;box-shadow:0 10px 26px rgba(201,231,59,.4);opacity:0;transform:translateY(16px);pointer-events:none;transition:all .3s;z-index:210}.fab-cta.show{opacity:1;transform:translateY(0);pointer-events:auto}.fab-cta svg{width:16px;height:16px}}
.link-indicator{display:inline-flex;align-items:center;gap:6px;font-size:.8rem;font-weight:700;color:var(--pitch)}
.link-indicator svg{width:14px;height:14px;transition:transform .2s;stroke:currentColor}
.entry-row:hover .link-indicator svg{transform:translateX(4px)}
.article-list-item{display:flex;gap:1.1rem;background:#fff;border:1px solid var(--line);border-radius:20px;overflow:hidden;transition:all .25s;align-items:stretch}
.article-list-item:hover{box-shadow:var(--hover-shadow)}
.article-list-item .thumb{width:136px;height:100%;min-height:140px;flex-shrink:0;position:relative}
.article-list-item .thumb img{width:100%;height:100%;object-fit:cover;min-height:140px}
@media(max-width:640px){.article-list-item{padding:12px}.article-list-item .thumb{width:90px;min-height:100px}.article-list-item .thumb img{min-height:100px}.article-list-item h3{font-size:1.02rem}.article-list-item p{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}}
.article-list-item .alf-content{padding:16px 16px 12px 0;display:flex;flex-direction:column;justify-content:center;gap:7px}
@media(max-width:640px){.article-list-item .alf-content{padding:0 8px 0 0}}
.cat-page-banner{background:var(--cream);border-bottom:1px solid rgba(22,106,69,.08);padding-top:112px;padding-bottom:15px}
.banner-path{display:flex;gap:8px;align-items:center;font-size:.8rem;color:#8B928E;margin-bottom:14px}
.banner-path a{color:var(--pitch);font-weight:650}
.banner-path svg{width:13px;height:13px}
.banner-grid{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;flex-wrap:wrap}
.banner-title{background:#fff;padding:32px 36px;border-radius:24px;box-shadow:0 12px 28px rgba(20,60,40,.05);border:1px solid rgba(22,106,69,.05);flex:1.4;min-width:260px}
.banner-title .kicker{margin-bottom:.8rem}
.banner-title h1{font-size:clamp(2.1rem,3vw,2.6rem);font-weight:800;margin:0 0 .6rem;color:var(--ink)}
.banner-title p{max-width:40rem;font-size:.95rem;color:var(--sub);margin:0}
.top-notice{background:rgba(201,231,59,.14);border-top:1px solid rgba(22,106,69,.08)}
.top-notice .container{display:flex;align-items:center;gap:16px;padding-top:12px;padding-bottom:12px;font-size:.9rem;max-width:80rem;margin:0 auto;padding-left:1.5rem;padding-right:1.5rem;flex-wrap:wrap}
.top-notice .notice-tag{background:var(--volt);color:#152417;font-weight:800;font-size:.68rem;letter-spacing:.1em;border-radius:99px;padding:3px 12px;white-space:nowrap}
.top-notice p{margin:0;color:#3A453D;font-weight:600;flex:1;min-width:200px}
.top-notice a{color:var(--pitch);font-weight:700}

/* roulang page: category2 */
:root {
            --cream: #F6F5F0;
            --pitch: #166A45;
            --pine: #0B2A20;
            --volt: #C9E73B;
            --track: #F2711C;
            --ink: #1E2A24;
            --muted: #59685F;
            --border: rgba(22, 106, 69, 0.16);
            --shadow-sm: 0 2px 10px rgba(20, 60, 40, 0.06);
            --shadow-lg: 0 12px 24px rgba(20, 60, 40, 0.12);
            --radius-card: 20px;
            --radius-media: 14px;
            --font-sans: system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--cream);
            color: var(--ink);
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.9;
            -webkit-font-smoothing: antialiased;
        }

        body {
            padding-bottom: 0;
        }

        @media (max-width: 1024px) {
            body {
                padding-bottom: calc(72px + env(safe-area-inset-bottom));
            }
        }

        a {
            color: var(--pitch);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible {
            outline: 4px solid rgba(201, 231, 59, 0.9);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            display: block;
            max-width: 100%;
        }

        h1,
        h2,
        h3,
        h4,
        p {
            margin: 0;
        }

        input,
        button {
            font: inherit;
        }

        .container {
            width: 100%;
            max-width: 80rem;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        @media (max-width: 640px) {
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        .skip-link {
            position: fixed;
            top: -60px;
            left: 1rem;
            z-index: 100;
            padding: 0.6rem 1rem;
            border-radius: 999px;
            background: var(--pine);
            color: #fff;
            transition: top 0.2s;
        }

        .skip-link:focus {
            top: 12px;
            color: #fff;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            height: 72px;
            display: flex;
            align-items: center;
            background: rgba(246, 245, 240, 0.92);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            height: 72px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            color: var(--pine);
            font-weight: 800;
            font-size: 19px;
            letter-spacing: 0.02em;
            line-height: 1.2;
        }

        .brand-mark {
            display: grid;
            place-items: center;
            width: 40px;
            height: 40px;
            background: var(--pine);
            border-radius: 10px;
            flex: 0 0 auto;
        }

        .brand-mark svg {
            width: 24px;
            height: 24px;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            color: inherit;
            line-height: 1.12;
            white-space: nowrap;
        }

        .brand-text small {
            display: block;
            margin-top: 3px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--muted);
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .main-nav a {
            position: relative;
            display: inline-block;
            padding: 10px 2px;
            color: var(--ink);
            font-weight: 600;
            font-size: 15px;
            line-height: 1.2;
            transition: color 0.2s;
        }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 2px;
            height: 2px;
            border-radius: 999px;
            background: transparent;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.22s;
        }

        .main-nav a:hover {
            color: var(--pitch);
        }

        .main-nav a:hover::after {
            background: var(--pitch);
            transform: scaleX(1);
        }

        .main-nav a.active {
            color: var(--pitch);
            font-weight: 700;
        }

        .main-nav a.active::after {
            background: var(--volt);
            transform: scaleX(1);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            border: 0;
            border-radius: 999px;
            padding: 0.6rem 1.4rem;
            font-family: inherit;
            font-weight: 700;
            font-size: 15px;
            line-height: 1.2;
            cursor: pointer;
            transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s, transform 0.2s;
        }

        .btn svg {
            flex: 0 0 auto;
            transition: transform 0.2s;
        }

        .btn:hover svg {
            transform: translateX(4px);
        }

        .btn:active {
            transform: translateY(1px);
        }

        .btn-primary {
            background: var(--volt);
            color: var(--pine);
            box-shadow: 0 8px 20px rgba(201, 231, 59, 0.32);
        }

        .btn-primary:hover {
            background: #d9ef57;
            color: var(--pine);
            box-shadow: 0 12px 24px rgba(201, 231, 59, 0.4);
        }

        .btn-ghost {
            background: rgba(255, 255, 255, 0.75);
            border: 1.5px solid rgba(22, 106, 69, 0.32);
            color: var(--pitch);
        }

        .btn-ghost:hover {
            background: rgba(22, 106, 69, 0.08);
            color: var(--pitch);
            border-color: var(--pitch);
        }

        .btn-outline-light {
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.75);
            color: #fff;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
        }

        .category-hero {
            position: relative;
            padding: 76px 0 88px;
            overflow: hidden;
            border-bottom: 1px solid rgba(22, 106, 69, 0.1);
        }

        .category-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(22, 106, 69, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(22, 106, 69, 0.05) 1px, transparent 1px);
            background-size: 48px 48px;
            -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 90%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 90%);
        }

        .category-hero::after {
            content: "";
            position: absolute;
            right: -120px;
            top: -60px;
            width: 340px;
            height: 340px;
            border: 1px solid rgba(22, 106, 69, 0.1);
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(201, 231, 59, 0.24), transparent 60%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            color: var(--pitch);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.06em;
        }

        .kicker-dot {
            width: 8px;
            height: 8px;
            flex: 0 0 auto;
            background: var(--track);
            transform: rotate(45deg);
            border-radius: 2px;
        }

        .category-hero h1 {
            margin-bottom: 18px;
            color: var(--pine);
            font-size: clamp(2.6rem, 5.4vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: 0.04em;
        }

        .hero-desc {
            max-width: 32rem;
            color: var(--muted);
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-note-card {
            position: relative;
            background: #fff;
            border: 1px solid var(--border);
            border-top: 4px solid var(--volt);
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            padding: 26px 26px 22px;
            max-width: 460px;
            margin-left: auto;
        }

        .hero-note-card h2 {
            font-size: 22px;
            line-height: 1.4;
            color: var(--pine);
            margin: 14px 0 10px;
        }

        .hero-note-card p {
            color: var(--muted);
            font-size: 15px;
        }

        .note-footer {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 18px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
            color: var(--muted);
            font-size: 13px;
        }

        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--volt);
            box-shadow: 0 0 0 4px rgba(201, 231, 59, 0.22);
            flex: 0 0 auto;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            padding: 5px 11px;
            background: rgba(22, 106, 69, 0.1);
            color: var(--pitch);
            font-size: 12px;
            font-weight: 700;
            line-height: 1.2;
            white-space: nowrap;
        }

        .chip-volt {
            background: rgba(201, 231, 59, 0.34);
            color: var(--pine);
        }

        .chip-light {
            background: rgba(255, 255, 255, 0.22);
            color: #fff;
        }

        .page-section {
            padding: 92px 0;
        }

        .section-head {
            max-width: 760px;
            margin-bottom: 44px;
        }

        .section-head h2 {
            color: var(--pine);
            font-size: clamp(1.9rem, 3.6vw, 2.6rem);
            line-height: 1.3;
            font-weight: 700;
            letter-spacing: 0.01em;
            margin: 4px 0 10px;
        }

        .section-head p {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.9;
        }

        .topic-main-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            height: 100%;
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .topic-main-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .topic-media {
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: #e9ece6;
            position: relative;
        }

        .topic-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .topic-main-card:hover .topic-media img {
            transform: scale(1.03);
        }

        .topic-media .chip {
            position: absolute;
            left: 16px;
            top: 16px;
        }

        .topic-main-content {
            padding: 22px;
        }

        .topic-main-content h3 {
            color: var(--pine);
            font-size: 22px;
            line-height: 1.45;
            margin-top: 14px;
        }

        .topic-main-content p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.85;
            margin-top: 8px;
        }

        .topic-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 14px;
        }

        .topic-tags span {
            display: inline-flex;
            padding: 4px 9px;
            border-radius: 999px;
            background: rgba(22, 106, 69, 0.07);
            color: var(--muted);
            font-size: 12px;
            line-height: 1.3;
        }

        .text-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 18px;
            color: var(--pitch);
            font-weight: 700;
            font-size: 14px;
        }

        .text-link svg {
            width: 15px;
            height: 15px;
            transition: transform 0.2s;
        }

        .text-link:hover svg {
            transform: translateX(4px);
        }

        .topic-list-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            padding: 20px 20px 18px;
            transition: box-shadow 0.25s, transform 0.25s;
        }

        .topic-list-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }

        .topic-list-icon {
            display: grid;
            place-items: center;
            width: 44px;
            height: 44px;
            flex: 0 0 auto;
            background: var(--pine);
            border-radius: 12px;
        }

        .topic-list-icon svg {
            width: 22px;
            height: 22px;
            color: var(--volt);
        }

        .topic-list-copy h3 {
            color: var(--pine);
            font-size: 17px;
            line-height: 1.5;
            margin-bottom: 4px;
        }

        .topic-list-copy p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.75;
        }

        .news-value-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .news-value-item {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 18px;
            padding: 16px 14px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 14px;
            text-align: center;
        }

        .news-value-number {
            display: block;
            color: var(--volt);
            font-size: 22px;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            margin-bottom: 6px;
        }

        .info-band {
            position: relative;
            overflow: hidden;
            background: var(--pine);
            border-radius: 28px;
            padding: 42px 48px;
            color: #fff;
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 40px;
            align-items: center;
            box-shadow: var(--shadow-lg);
        }

        .info-band::after {
            content: "";
            position: absolute;
            right: -60px;
            top: 20px;
            width: 200px;
            height: 200px;
            background: rgba(201, 231, 59, 0.1);
            transform: rotate(45deg);
            border-radius: 10px;
        }

        .info-band .chip {
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }

        .info-band h3 {
            position: relative;
            z-index: 2;
            font-size: 26px;
            line-height: 1.45;
            color: #fff;
            margin-bottom: 10px;
        }

        .info-band p {
            position: relative;
            z-index: 2;
            color: rgba(255, 255, 255, 0.78);
            font-size: 15px;
            max-width: 520px;
        }

        .info-band-points {
            display: grid;
            gap: 10px;
            position: relative;
            z-index: 2;
        }

        .info-band-points div {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            padding: 13px 16px;
            color: rgba(255, 255, 255, 0.92);
            font-size: 14px;
        }

        .info-band-points span {
            color: var(--volt);
            font-weight: 800;
            font-variant-numeric: tabular-nums;
        }

        .steps-section {
            background: rgba(22, 106, 69, 0.045);
            border-top: 1px solid rgba(22, 106, 69, 0.08);
            border-bottom: 1px solid rgba(22, 106, 69, 0.08);
        }

        .path-grid {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .path-step {
            position: relative;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 30px 26px 26px;
            box-shadow: var(--shadow-sm);
            height: 100%;
        }

        .path-num {
            display: inline-grid;
            place-items: center;
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: rgba(242, 113, 28, 0.14);
            color: var(--track);
            font-size: 15px;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            margin-bottom: 18px;
        }

        .path-step h3 {
            color: var(--pine);
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .path-step p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
        }

        .faq-section {
            padding: 96px 0;
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 18px;
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
            transition: box-shadow 0.2s;
        }

        .faq-item.open {
            box-shadow: var(--shadow-sm);
        }

        .faq-q {
            width: 100%;
            min-height: 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 20px 16px 24px;
            background: transparent;
            border: 0;
            text-align: left;
            cursor: pointer;
            color: var(--pine);
            font-size: 16px;
            font-weight: 700;
            line-height: 1.5;
            transition: color 0.2s, background 0.2s;
        }

        .faq-q:hover {
            background: rgba(201, 231, 59, 0.08);
        }

        .faq-icon {
            position: relative;
            flex: 0 0 auto;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(22, 106, 69, 0.1);
            transition: background 0.2s;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 12px;
            height: 2px;
            background: var(--pitch);
            border-radius: 2px;
            transform: translate(-50%, -50%);
            transition: opacity 0.2s, transform 0.2s;
        }

        .faq-icon::after {
            width: 2px;
            height: 12px;
        }

        .faq-item.open .faq-icon {
            background: var(--volt);
        }

        .faq-item.open .faq-icon::after {
            opacity: 0;
            transform: translate(-50%, -50%) rotate(90deg);
        }

        .faq-body {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, opacity 0.3s ease;
        }

        .faq-item.open .faq-body {
            max-height: 480px;
            opacity: 1;
        }

        .faq-inner {
            padding: 0 24px 22px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.85;
        }

        .cta-section {
            position: relative;
            overflow: hidden;
            background: var(--pine);
            color: #fff;
            padding: 110px 0;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.webp') center / cover no-repeat;
            opacity: 0.1;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            right: 4%;
            top: -40%;
            width: 360px;
            height: 360px;
            background: rgba(201, 231, 59, 0.09);
            transform: rotate(45deg);
            border-radius: 14px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 760px;
        }

        .cta-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--volt);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.1em;
            margin-bottom: 12px;
        }

        .cta-label::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 2px;
            background: var(--volt);
            transform: rotate(45deg);
        }

        .cta-content h2 {
            color: #fff;
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.35;
            margin-bottom: 16px;
            font-weight: 800;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.75);
            max-width: 560px;
            font-size: 16px;
            margin-bottom: 28px;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }

        .site-footer {
            background: var(--pine);
            color: rgba(255, 255, 255, 0.82);
            padding: 76px 0 36px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 0.9fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-weight: 800;
            font-size: 18px;
        }

        .footer-brand .brand-text {
            color: #fff;
        }

        .footer-brand .brand-text small {
            color: rgba(255, 255, 255, 0.55);
        }

        .footer-about {
            margin-top: 16px;
            max-width: 420px;
            color: rgba(255, 255, 255, 0.66);
            font-size: 14px;
            line-height: 1.9;
        }

        .footer-grid h4 {
            margin: 0 0 16px;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.03em;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.62);
            font-size: 14px;
            transition: color 0.2s, padding-left 0.2s;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-contact {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 14px;
        }

        .footer-contact li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            color: rgba(255, 255, 255, 0.66);
            font-size: 14px;
            line-height: 1.6;
            word-break: break-word;
        }

        .footer-contact svg {
            width: 18px;
            height: 18px;
            flex: 0 0 auto;
            margin-top: 3px;
            color: var(--volt);
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            padding-top: 28px;
            color: rgba(255, 255, 255, 0.45);
            font-size: 13px;
        }

        .mobile-tabs {
            display: none;
        }

        .sticky-dock {
            position: fixed;
            left: 50%;
            bottom: calc(64px + 16px);
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--pine);
            border-radius: 999px;
            padding: 8px 10px 8px 20px;
            color: #fff;
            box-shadow: 0 18px 40px rgba(11, 42, 32, 0.3);
            z-index: 70;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translate(-50%, 10px);
            transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
            max-width: calc(100vw - 20px);
        }

        .sticky-dock.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translate(-50%, 0);
        }

        .sticky-dock span {
            white-space: nowrap;
            color: rgba(255, 255, 255, 0.86);
            font-size: 13px;
            line-height: 1.4;
        }

        .sticky-dock .btn-dock {
            min-height: 38px;
            padding: 0.45rem 1rem;
            font-size: 14px;
        }

        @media (max-width: 1024px) {
            .main-nav,
            .header-login {
                display: none;
            }

            .mobile-tabs {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                position: fixed;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 80;
                height: 64px;
                background: #fff;
                border-top: 1px solid rgba(22, 106, 69, 0.14);
                box-shadow: 0 -10px 30px rgba(20, 60, 40, 0.08);
            }

            .tab-item {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2px;
                color: var(--muted);
                font-size: 11px;
                font-weight: 600;
                line-height: 1.2;
                transition: color 0.2s;
            }

            .tab-item svg {
                width: 22px;
                height: 22px;
                stroke-width: 1.8;
            }

            .tab-item::before {
                content: "";
                position: absolute;
                top: 0;
                left: 50%;
                width: 0;
                height: 3px;
                border-radius: 0 0 3px 3px;
                background: var(--volt);
                transform: translateX(-50%);
                transition: width 0.2s;
            }

            .tab-item.active {
                color: var(--pitch);
            }

            .tab-item.active::before {
                width: 56%;
            }

            .tab-item:hover {
                color: var(--pitch);
            }

            .page-section {
                padding: 72px 0;
            }

            .faq-section {
                padding: 76px 0;
            }

            .cta-section {
                padding: 88px 0;
            }

            .info-band {
                grid-template-columns: 1fr;
                padding: 36px 28px;
            }

            .info-band-points {
                grid-template-columns: 1fr 1fr 1fr;
            }

            .path-grid {
                grid-template-columns: 1fr;
            }

            .path-step {
                padding: 22px 22px 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 767px) {
            .brand {
                font-size: 17px;
            }

            .brand-mark {
                width: 36px;
                height: 36px;
            }

            .brand-text small {
                font-size: 9px;
            }

            .category-hero {
                padding: 56px 0 60px;
            }

            .category-hero h1 {
                margin-bottom: 12px;
            }

            .hero-desc {
                font-size: 16px;
                margin-bottom: 24px;
            }

            .hero-note-card {
                margin-top: 34px;
                padding: 20px 18px 18px;
            }

            .hero-note-card h2 {
                font-size: 19px;
            }

            .info-band-points {
                grid-template-columns: 1fr;
            }

            .news-value-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .page-section {
                padding: 56px 0;
            }

            .faq-section {
                padding: 60px 0;
            }

            .cta-section {
                padding: 72px 0;
            }

            .section-head {
                margin-bottom: 30px;
            }

            .section-head p {
                font-size: 15px;
            }

            .topic-list-card {
                padding: 16px 16px 14px;
            }

            .topic-list-icon {
                width: 38px;
                height: 38px;
                border-radius: 10px;
            }

            .topic-list-icon svg {
                width: 19px;
                height: 19px;
            }
        }

        @media (min-width: 1025px) {
            .sticky-dock {
                left: auto;
                right: 28px;
                bottom: 28px;
                transform: translateY(10px);
            }

            .sticky-dock.show {
                transform: translateY(0);
            }
        }
