/* roulang page: index */
:root{
      --bg:#f7f1e8;
      --bg-soft:#fffaf3;
      --surface:#fffdf9;
      --surface-2:#f8efe2;
      --surface-3:#f4e3d1;
      --text:#231b15;
      --muted:#6f6258;
      --line:#e7d7c6;
      --line-strong:#d6bea6;
      --accent:#b86b2a;
      --accent-2:#9e5621;
      --accent-soft:#f6e2cf;
      --accent-deep:#4a2b18;
      --success:#2a8a5d;
      --warning:#c88a1e;
      --shadow:0 18px 40px rgba(68, 42, 18, .08);
      --shadow-sm:0 8px 22px rgba(68, 42, 18, .06);
      --radius:20px;
      --radius-sm:14px;
      --radius-lg:28px;
      --sidebar-w:296px;
      --topbar-h:72px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(184,107,42,.10), transparent 26%),
        radial-gradient(circle at right 18%, rgba(42,138,93,.07), transparent 18%),
        linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
      min-height:100vh;
      line-height:1.7;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    a:hover{color:inherit}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    :focus-visible{outline:3px solid rgba(184,107,42,.35);outline-offset:2px}
    ::selection{background:rgba(184,107,42,.18)}
    .desktop-sidebar{
      position:fixed;
      inset:0 auto 0 0;
      width:var(--sidebar-w);
      background:linear-gradient(180deg, rgba(255,250,243,.96), rgba(248,239,226,.92));
      backdrop-filter:blur(14px);
      border-right:1px solid rgba(214,190,166,.7);
      z-index:1040;
      padding:22px 18px 18px;
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .sidebar-brand{
      display:flex;
      align-items:center;
      gap:14px;
      padding:10px 10px 14px;
      border-radius:18px;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(231,215,198,.8);
      box-shadow:var(--shadow-sm);
    }
    .brand-mark{
      width:52px;
      height:52px;
      border-radius:16px;
      background:linear-gradient(135deg, var(--accent), #d68a44);
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:800;
      letter-spacing:.08em;
      box-shadow:0 12px 24px rgba(184,107,42,.22);
      flex:0 0 auto;
      line-height:1;
      font-size:1rem;
    }
    .brand-text{min-width:0}
    .brand-name{
      font-size:1.05rem;
      font-weight:800;
      line-height:1.25;
      margin:0;
      letter-spacing:.01em;
    }
    .brand-sub{
      font-size:.88rem;
      color:var(--muted);
      margin-top:3px;
    }
    .sidebar-nav{
      display:flex;
      flex-direction:column;
      gap:8px;
      margin-top:2px;
    }
    .nav-link-custom{
      display:flex;
      align-items:center;
      gap:12px;
      padding:13px 14px;
      border-radius:16px;
      background:transparent;
      border:1px solid transparent;
      transition:all .24s ease;
      color:#3a2b21;
      position:relative;
    }
    .nav-link-custom:hover{
      background:rgba(255,255,255,.7);
      border-color:rgba(214,190,166,.8);
      transform:translateX(2px);
    }
    .nav-link-custom.active{
      background:linear-gradient(135deg, rgba(184,107,42,.12), rgba(184,107,42,.05));
      border-color:rgba(184,107,42,.20);
      box-shadow:0 10px 24px rgba(184,107,42,.08);
    }
    .nav-idx{
      width:28px;
      height:28px;
      border-radius:10px;
      display:grid;
      place-items:center;
      background:rgba(184,107,42,.12);
      color:var(--accent);
      font-size:.76rem;
      font-weight:700;
      flex:0 0 auto;
    }
    .nav-title{
      font-weight:700;
      font-size:.98rem;
      line-height:1.35;
    }
    .nav-note{
      font-size:.82rem;
      color:var(--muted);
      margin-top:2px;
      line-height:1.35;
    }
    .sidebar-box{
      margin-top:auto;
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(231,215,198,.9);
      box-shadow:var(--shadow-sm);
    }
    .mini-chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .mini-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:999px;
      background:var(--accent-soft);
      color:var(--accent-deep);
      font-size:.82rem;
      border:1px solid rgba(184,107,42,.10);
    }
    .sidebar-tech{
      margin-top:14px;
      padding-top:12px;
      border-top:1px dashed rgba(214,190,166,.9);
      font-size:.84rem;
      color:var(--muted);
      line-height:1.6;
    }
    .mobile-topbar{
      position:fixed;
      inset:0 0 auto 0;
      height:var(--topbar-h);
      z-index:1050;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 16px;
      background:rgba(255,250,243,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(214,190,166,.72);
    }
    .mobile-brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }
    .mobile-mark{
      width:40px;
      height:40px;
      border-radius:12px;
      background:linear-gradient(135deg, var(--accent), #d68a44);
      color:#fff;
      display:grid;
      place-items:center;
      font-size:.92rem;
      font-weight:800;
      line-height:1;
    }
    .mobile-name{
      font-size:1rem;
      font-weight:800;
      line-height:1.2;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .mobile-sub{
      font-size:.8rem;
      color:var(--muted);
      line-height:1.2;
    }
    .menu-btn{
      border:1px solid rgba(214,190,166,.9);
      background:rgba(255,255,255,.82);
      color:var(--accent-deep);
      width:44px;
      height:44px;
      border-radius:14px;
      display:grid;
      place-items:center;
      box-shadow:var(--shadow-sm);
      transition:all .2s ease;
    }
    .menu-btn:hover{transform:translateY(-1px);border-color:rgba(184,107,42,.25)}
    .main-content{
      margin-left:var(--sidebar-w);
      padding:24px 24px 46px;
    }
    .main-shell{
      max-width:1260px;
      margin:0 auto;
    }
    .panel{
      background:rgba(255,253,249,.82);
      border:1px solid rgba(231,215,198,.92);
      box-shadow:var(--shadow);
      border-radius:var(--radius-lg);
    }
    .hero-panel{
      padding:28px;
      overflow:hidden;
      position:relative;
      background:
        radial-gradient(circle at top right, rgba(214,138,68,.14), transparent 24%),
        linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
    }
    .hero-panel::after{
      content:"";
      position:absolute;
      right:-120px;
      top:-120px;
      width:260px;
      height:260px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(184,107,42,.18), transparent 70%);
      pointer-events:none;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(184,107,42,.10);
      color:var(--accent-deep);
      font-size:.86rem;
      font-weight:700;
      border:1px solid rgba(184,107,42,.14);
      letter-spacing:.02em;
    }
    .eyebrow .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(184,107,42,.12);
    }
    .hero-title{
      font-size:clamp(2rem, 4vw, 3.55rem);
      line-height:1.15;
      font-weight:900;
      letter-spacing:-.03em;
      margin:18px 0 14px;
      max-width:12ch;
    }
    .hero-lead{
      font-size:1.02rem;
      color:var(--muted);
      max-width:46rem;
      margin:0 0 18px;
    }
    .action-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:8px;
    }
    .btn-brand,
    .btn-soft{
      border-radius:14px;
      padding:12px 18px;
      font-weight:700;
      transition:all .22s ease;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:1px solid transparent;
      text-decoration:none;
      line-height:1.2;
    }
    .btn-brand{
      background:linear-gradient(135deg, var(--accent), #d07931);
      color:#fff;
      box-shadow:0 12px 24px rgba(184,107,42,.22);
    }
    .btn-brand:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 30px rgba(184,107,42,.25);
      background:linear-gradient(135deg, var(--accent-2), #c4712f);
    }
    .btn-soft{
      background:rgba(255,255,255,.74);
      color:var(--accent-deep);
      border-color:rgba(214,190,166,.9);
    }
    .btn-soft:hover{
      border-color:rgba(184,107,42,.30);
      background:rgba(255,255,255,.98);
      transform:translateY(-1px);
    }
    .hero-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .meta-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.74);
      border:1px solid rgba(231,215,198,.9);
      color:#46362b;
      font-size:.86rem;
      box-shadow:0 8px 18px rgba(68,42,18,.04);
    }
    .meta-chip strong{font-weight:800;color:var(--accent-deep)}
    .hero-stage{
      position:relative;
      z-index:1;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(231,215,198,.92);
      border-radius:24px;
      padding:18px;
      box-shadow:var(--shadow-sm);
    }
    .stage-status{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:14px;
    }
    .status-pill{
      padding:9px 12px;
      border-radius:999px;
      background:var(--accent-soft);
      border:1px solid rgba(184,107,42,.12);
      color:var(--accent-deep);
      font-size:.84rem;
      font-weight:700;
    }
    .bento-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .bento-card{
      min-height:132px;
      border-radius:18px;
      padding:16px;
      background:linear-gradient(180deg, #fffdfa 0%, #fff4e8 100%);
      border:1px solid rgba(231,215,198,.95);
      box-shadow:0 10px 22px rgba(68,42,18,.05);
      transition:all .22s ease;
    }
    .bento-card:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(68,42,18,.08)}
    .bento-card.wide{grid-column:1 / -1}
    .bento-kicker{
      font-size:.82rem;
      color:var(--muted);
      margin-bottom:6px;
    }
    .bento-name{
      font-weight:800;
      font-size:1.02rem;
      margin-bottom:8px;
      letter-spacing:.01em;
    }
    .bento-desc{
      font-size:.88rem;
      color:var(--muted);
      line-height:1.6;
    }
    .bento-metric{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:12px;
      margin-top:10px;
    }
    .bento-number{
      font-size:2rem;
      font-weight:900;
      line-height:1;
      color:var(--accent-deep);
      letter-spacing:-.03em;
    }
    .tiny-bar{
      height:10px;
      border-radius:999px;
      background:rgba(184,107,42,.10);
      overflow:hidden;
      flex:1;
      margin-bottom:7px;
    }
    .tiny-bar > span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--accent), #d78a44);
    }
    .section-card{
      margin-top:28px;
      padding:26px;
    }
    .section-head{
      display:flex;
      flex-wrap:wrap;
      align-items:end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .section-text{max-width:58rem}
    .section-eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--accent);
      font-weight:800;
      font-size:.84rem;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .section-title{
      margin:8px 0 10px;
      font-size:clamp(1.45rem, 2.4vw, 2.1rem);
      line-height:1.22;
      font-weight:900;
      letter-spacing:-.025em;
    }
    .section-lead{
      margin:0;
      color:var(--muted);
      max-width:60rem;
      font-size:1rem;
    }
    .section-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      background:rgba(184,107,42,.09);
      color:var(--accent-deep);
      border:1px solid rgba(184,107,42,.12);
      font-size:.84rem;
      font-weight:700;
      white-space:nowrap;
    }
    .category-card{
      position:relative;
      border-radius:22px;
      padding:22px;
      background:linear-gradient(180deg, #fffdfa 0%, #fff7ed 100%);
      border:1px solid rgba(231,215,198,.96);
      box-shadow:var(--shadow-sm);
      height:100%;
      overflow:hidden;
      transition:all .24s ease;
    }
    .category-card:hover{
      transform:translateY(-3px);
      border-color:rgba(184,107,42,.20);
      box-shadow:0 18px 34px rgba(68,42,18,.09);
    }
    .category-card::before{
      content:"";
      position:absolute;
      inset:0 auto auto 0;
      width:100%;
      height:6px;
      background:linear-gradient(90deg, var(--accent), #dc8c44);
    }
    .category-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .card-icon{
      width:48px;
      height:48px;
      border-radius:16px;
      background:rgba(184,107,42,.12);
      color:var(--accent);
      display:grid;
      place-items:center;
      font-size:1.15rem;
      font-weight:900;
      flex:0 0 auto;
    }
    .category-title{
      margin:0 0 8px;
      font-size:1.22rem;
      line-height:1.25;
      font-weight:900;
    }
    .category-desc{
      color:var(--muted);
      margin:0 0 14px;
      font-size:.96rem;
      line-height:1.65;
      min-height:3.3em;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:16px;
    }
    .soft-tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:var(--accent-soft);
      border:1px solid rgba(184,107,42,.10);
      color:var(--accent-deep);
      font-size:.82rem;
      line-height:1;
    }
    .card-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:auto;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--accent);
      font-weight:700;
      font-size:.93rem;
      transition:all .2s ease;
    }
    .text-link:hover{color:var(--accent-2);transform:translateX(2px)}
    .sub-block{
      margin-top:22px;
      padding-top:18px;
      border-top:1px solid rgba(231,215,198,.85);
    }
    .sub-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .sub-title{
      font-size:1.1rem;
      font-weight:800;
      margin:0;
    }
    .sub-note{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
    }
    .issue-card{
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(231,215,198,.95);
      box-shadow:0 10px 20px rgba(68,42,18,.04);
      height:100%;
    }
    .issue-index{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      font-size:.92rem;
      font-weight:800;
      background:rgba(184,107,42,.12);
      color:var(--accent);
      margin-bottom:12px;
    }
    .issue-title{
      font-size:1rem;
      font-weight:800;
      margin:0 0 8px;
    }
    .issue-text{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.65;
    }
    .recommend-card{
      border-radius:20px;
      background:linear-gradient(180deg, #fffdfa 0%, #fff7ee 100%);
      border:1px solid rgba(231,215,198,.95);
      padding:18px;
      height:100%;
      box-shadow:var(--shadow-sm);
      transition:all .22s ease;
    }
    .recommend-card:hover{transform:translateY(-2px);border-color:rgba(184,107,42,.22)}
    .recommend-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
    }
    .recommend-name{
      font-weight:900;
      margin:0;
      font-size:1.02rem;
    }
    .recommend-desc{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.65;
    }
    .metric-strip{
      margin-top:18px;
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .metric-card{
      border-radius:18px;
      padding:18px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(231,215,198,.95);
      box-shadow:0 10px 20px rgba(68,42,18,.04);
      height:100%;
    }
    .metric-value{
      font-size:2rem;
      line-height:1;
      font-weight:900;
      letter-spacing:-.03em;
      color:var(--accent-deep);
      margin-bottom:8px;
    }
    .metric-label{
      font-weight:800;
      margin-bottom:6px;
    }
    .metric-text{
      margin:0 0 10px;
      color:var(--muted);
      font-size:.9rem;
      line-height:1.6;
    }
    .meter{
      width:100%;
      height:9px;
      border-radius:999px;
      background:rgba(184,107,42,.10);
      overflow:hidden;
    }
    .meter span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--accent), #d78a44);
    }
    .news-grid{
      display:grid;
      grid-template-columns:1.45fr .95fr;
      gap:18px;
    }
    .news-list{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .news-item{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:16px 18px;
      border-radius:18px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(231,215,198,.95);
      transition:all .2s ease;
      box-shadow:0 10px 20px rgba(68,42,18,.04);
    }
    .news-item:hover{
      transform:translateX(2px);
      border-color:rgba(184,107,42,.22);
      box-shadow:0 16px 28px rgba(68,42,18,.07);
    }
    .news-dot{
      width:12px;
      height:12px;
      margin-top:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 6px rgba(184,107,42,.12);
      flex:0 0 auto;
    }
    .news-body{min-width:0;flex:1}
    .news-head{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:8px;
      margin-bottom:4px;
    }
    .news-title{
      font-weight:800;
      font-size:1rem;
      margin:0;
      line-height:1.45;
    }
    .news-meta{
      color:var(--muted);
      font-size:.84rem;
      white-space:nowrap;
    }
    .news-text{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.6;
    }
    .side-stack{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .quote-card{
      padding:18px;
      border-radius:20px;
      background:linear-gradient(180deg, #fffdfa 0%, #fff7ee 100%);
      border:1px solid rgba(231,215,198,.95);
      box-shadow:var(--shadow-sm);
      position:relative;
      overflow:hidden;
    }
    .quote-card::before{
      content:"“";
      position:absolute;
      left:12px;
      top:-10px;
      font-size:5rem;
      line-height:1;
      color:rgba(184,107,42,.10);
      font-family:serif;
    }
    .quote-text{
      margin:0;
      font-size:.96rem;
      line-height:1.75;
      color:#42352b;
      position:relative;
      z-index:1;
    }
    .quote-meta{
      margin-top:12px;
      color:var(--muted);
      font-size:.84rem;
      font-weight:700;
    }
    .share-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .share-card{
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(231,215,198,.95);
      box-shadow:0 10px 20px rgba(68,42,18,.04);
      height:100%;
    }
    .share-head{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:10px;
    }
    .share-icon{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:rgba(184,107,42,.12);
      color:var(--accent);
      font-weight:900;
    }
    .share-title{
      margin:0;
      font-weight:900;
      font-size:1rem;
    }
    .share-text{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.65;
    }
    .share-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .share-status{
      margin-top:12px;
      color:var(--muted);
      font-size:.9rem;
      min-height:1.6em;
    }
    .guide-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-top:18px;
    }
    .guide-step{
      padding:18px;
      border-radius:18px;
      background:linear-gradient(180deg, #fffdfa 0%, #fff7ee 100%);
      border:1px solid rgba(231,215,198,.95);
      box-shadow:var(--shadow-sm);
      min-height:170px;
    }
    .step-num{
      width:40px;
      height:40px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, var(--accent), #d68a44);
      color:#fff;
      font-weight:900;
      margin-bottom:12px;
    }
    .step-title{
      font-weight:900;
      margin:0 0 8px;
      font-size:1.02rem;
    }
    .step-text{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.7;
    }
    .hot-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
    }
    .hot-tags .soft-tag{
      background:#fff;
      border-color:rgba(214,190,166,.85);
    }
    .accordion-wrap .accordion-item{
      border:1px solid rgba(231,215,198,.95);
      background:rgba(255,255,255,.84);
      border-radius:18px !important;
      overflow:hidden;
      box-shadow:0 10px 20px rgba(68,42,18,.04);
      margin-bottom:12px;
    }
    .accordion-wrap .accordion-button{
      background:transparent;
      color:var(--text);
      font-weight:800;
      font-size:1rem;
      padding:18px 20px;
      box-shadow:none;
    }
    .accordion-wrap .accordion-button:not(.collapsed){
      background:linear-gradient(135deg, rgba(184,107,42,.08), rgba(184,107,42,.03));
      color:var(--accent-deep);
    }
    .accordion-wrap .accordion-button:focus{
      box-shadow:none;
      border-color:transparent;
    }
    .accordion-wrap .accordion-button::after{
      filter:saturate(.4) brightness(.6);
    }
    .accordion-wrap .accordion-body{
      color:var(--muted);
      padding:0 20px 18px;
      line-height:1.75;
      font-size:.95rem;
    }
    .cta-panel{
      padding:28px;
      background:
        radial-gradient(circle at right top, rgba(255,255,255,.22), transparent 26%),
        linear-gradient(135deg, #4c2b17, #7c421f 55%, #9e5a27);
      color:#fff7ed;
      overflow:hidden;
      position:relative;
    }
    .cta-panel::after{
      content:"";
      position:absolute;
      right:-90px;
      bottom:-110px;
      width:240px;
      height:240px;
      background:rgba(255,255,255,.10);
      border-radius:50%;
    }
    .cta-title{
      margin:0 0 12px;
      font-size:clamp(1.55rem, 2.8vw, 2.3rem);
      line-height:1.2;
      font-weight:900;
    }
    .cta-text{
      margin:0;
      color:rgba(255,247,237,.88);
      max-width:52rem;
      font-size:1rem;
      line-height:1.75;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
    }
    .btn-cta{
      border-radius:14px;
      padding:12px 18px;
      font-weight:800;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      transition:all .22s ease;
      border:1px solid transparent;
    }
    .btn-cta.primary{
      background:#fff;
      color:var(--accent-deep);
      box-shadow:0 12px 24px rgba(20,10,4,.16);
    }
    .btn-cta.primary:hover{
      transform:translateY(-2px);
      background:#fff7ed;
      color:var(--accent-deep);
    }
    .btn-cta.secondary{
      background:transparent;
      border-color:rgba(255,247,237,.35);
      color:#fff7ed;
    }
    .btn-cta.secondary:hover{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,247,237,.6);
      color:#fff;
      transform:translateY(-1px);
    }
    .site-footer{
      margin-top:22px;
      padding:22px 4px 8px;
      color:var(--muted);
    }
    .footer-panel{
      padding:20px 22px;
      border-radius:22px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(231,215,198,.92);
      box-shadow:var(--shadow-sm);
    }
    .footer-top{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .footer-logo{
      width:42px;
      height:42px;
      border-radius:14px;
      background:linear-gradient(135deg, var(--accent), #d68a44);
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:900;
      line-height:1;
    }
    .footer-name{
      font-weight:900;
      margin:0;
      color:var(--text);
    }
    .footer-text{
      margin:4px 0 0;
      font-size:.9rem;
      color:var(--muted);
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .footer-links a{
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(214,190,166,.9);
      background:rgba(255,255,255,.72);
      font-size:.88rem;
      font-weight:700;
      transition:all .2s ease;
    }
    .footer-links a:hover{
      border-color:rgba(184,107,42,.22);
      transform:translateY(-1px);
    }
    .footer-bottom{
      margin-top:14px;
      padding-top:12px;
      border-top:1px solid rgba(231,215,198,.9);
      font-size:.85rem;
      color:var(--muted);
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:space-between;
    }
    .offcanvas.sidebar-canvas{
      width:min(86vw, 320px);
      background:linear-gradient(180deg, rgba(255,250,243,.98), rgba(248,239,226,.98));
      border-right:1px solid rgba(214,190,166,.7);
    }
    .offcanvas.sidebar-canvas .offcanvas-body{
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    .offcanvas.sidebar-canvas .btn-close{
      opacity:.65;
      box-shadow:none;
    }
    .offcanvas-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:4px;
    }
    .mobile-side-note{
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.74);
      border:1px solid rgba(231,215,198,.9);
      color:var(--muted);
      font-size:.9rem;
      line-height:1.65;
    }
    .desktop-only{display:block}
    .mobile-only{display:none}
    @media (max-width: 1199.98px){
      :root{--sidebar-w:274px}
      .hero-title{max-width:13ch}
      .news-grid,.share-grid{grid-template-columns:1fr}
    }
    @media (max-width: 991.98px){
      .desktop-sidebar{display:none}
      .main-content{
        margin-left:0;
        padding:calc(var(--topbar-h) + 18px) 16px 30px;
      }
      .mobile-only{display:block}
      .desktop-only{display:none}
      .hero-panel{padding:22px}
      .section-card{padding:20px}
      .metric-strip,.share-grid,.guide-grid{grid-template-columns:1fr}
      .bento-grid{grid-template-columns:1fr}
      .bento-card.wide{grid-column:auto}
      .hero-title{max-width:none}
    }
    @media (max-width: 767.98px){
      .hero-lead,.section-lead,.cta-text{font-size:.97rem}
      .hero-panel,.section-card,.cta-panel,.footer-panel{padding:18px}
      .action-row,.cta-actions,.share-actions{gap:10px}
      .btn-brand,.btn-soft,.btn-cta{width:100%}
      .news-item{padding:14px}
      .news-head{align-items:flex-start}
      .hero-meta{gap:8px}
      .meta-chip{width:100%;justify-content:flex-start}
      .news-meta{white-space:normal}
      .section-head{align-items:flex-start}
      .section-badge{white-space:normal}
      .share-actions .btn-soft,.share-actions .btn-brand{width:auto;flex:1 1 48%}
    }
    @media (max-width: 575.98px){
      .mobile-topbar{padding-inline:12px}
      .mobile-name{max-width:54vw}
      .hero-title{font-size:1.9rem}
      .section-title{font-size:1.42rem}
      .bento-card,.category-card,.issue-card,.recommend-card,.metric-card,.quote-card,.share-card,.guide-step,.news-item{border-radius:18px}
      .category-desc{min-height:auto}
      .sub-head{flex-direction:column;align-items:flex-start}
      .cta-panel{border-radius:22px}
    }

/* roulang page: category2 */
:root{
      --bg:#f6f0e8;
      --bg-soft:#fbf7f1;
      --surface:#fffaf3;
      --surface-2:#f7efe4;
      --text:#231814;
      --muted:#745f52;
      --line:#e6d7c6;
      --accent:#c96a2a;
      --accent-strong:#9f4f18;
      --accent-soft:#e7a15f;
      --accent-ghost:rgba(201,106,42,.12);
      --success:#2d8a69;
      --shadow:0 18px 50px rgba(58,36,15,.09);
      --shadow-soft:0 12px 26px rgba(58,36,15,.06);
      --radius:22px;
      --radius-sm:16px;
      --radius-xs:12px;
      --sidebar-w:292px;
      --container-max:1360px;
      --transition:.22s ease;
      --font-sans: "PingFang SC","Microsoft YaHei","Noto Sans SC","Segoe UI",sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font-sans);
      color:var(--text);
      background:
        radial-gradient(circle at 0 0, rgba(201,106,42,.09), transparent 24%),
        radial-gradient(circle at 100% 0, rgba(159,79,24,.07), transparent 22%),
        linear-gradient(180deg, #faf4ec 0%, #f6f0e8 100%);
      line-height:1.72;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size:38px 38px;
      opacity:.28;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0) 70%);
    }
    a{color:inherit;text-decoration:none;transition:all var(--transition)}
    a:hover{color:var(--accent)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(201,106,42,.18);color:var(--text)}
    :focus-visible{outline:3px solid rgba(201,106,42,.38);outline-offset:3px;border-radius:10px}

    .page-shell{min-height:100vh}
    .sidebar{
      position:fixed;
      inset:0 auto 0 0;
      width:var(--sidebar-w);
      padding:22px 18px;
      background:linear-gradient(180deg, rgba(255,250,243,.94), rgba(248,240,230,.92));
      border-right:1px solid rgba(230,215,198,.9);
      box-shadow:14px 0 36px rgba(65,38,14,.05);
      backdrop-filter:blur(14px);
      z-index:1030;
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .sidebar-top{
      padding:8px 8px 2px;
    }
    .brand-badge{
      width:48px;height:48px;
      border-radius:16px;
      display:grid;place-items:center;
      background:linear-gradient(145deg, var(--accent), #f0b05f);
      color:#fff;
      font-weight:800;
      box-shadow:0 12px 24px rgba(201,106,42,.22);
      margin-bottom:12px;
      letter-spacing:.5px;
    }
    .brand-title{
      font-size:1.45rem;
      line-height:1.1;
      margin:0;
      font-weight:800;
      letter-spacing:.2px;
    }
    .brand-sub{
      margin:10px 0 0;
      color:var(--muted);
      font-size:.95rem;
    }
    .nav-chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .soft-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(201,106,42,.08);
      color:var(--accent-strong);
      border:1px solid rgba(201,106,42,.12);
      font-size:.82rem;
      font-weight:700;
    }
    .sidebar-nav{
      display:flex;
      flex-direction:column;
      gap:10px;
      padding:4px 2px 0;
      overflow:auto;
    }
    .nav-link-custom{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:14px 14px;
      border-radius:18px;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(230,215,198,.75);
      box-shadow:0 6px 18px rgba(47,31,11,.03);
      position:relative;
      min-height:74px;
      color:var(--text);
    }
    .nav-link-custom::after{
      content:"";
      position:absolute;
      inset:0;
      border-radius:18px;
      background:linear-gradient(135deg, rgba(201,106,42,.12), rgba(201,106,42,0));
      opacity:0;
      transition:opacity var(--transition), transform var(--transition);
      pointer-events:none;
    }
    .nav-link-custom:hover{
      transform:translateX(2px);
      border-color:rgba(201,106,42,.2);
      box-shadow:0 12px 24px rgba(47,31,11,.07);
      color:var(--text);
    }
    .nav-link-custom:hover::after{opacity:1}
    .nav-link-custom.active{
      background:linear-gradient(135deg, rgba(201,106,42,.14), rgba(255,255,255,.84));
      border-color:rgba(201,106,42,.26);
      box-shadow:0 14px 32px rgba(201,106,42,.12);
    }
    .nav-idx{
      flex:0 0 auto;
      width:34px;height:34px;
      border-radius:12px;
      display:grid;place-items:center;
      background:#fff;
      color:var(--accent-strong);
      font-size:.8rem;
      font-weight:800;
      border:1px solid rgba(230,215,198,.9);
      margin-top:1px;
    }
    .nav-title{
      font-size:1rem;
      font-weight:800;
      line-height:1.2;
    }
    .nav-note{
      margin-top:4px;
      font-size:.84rem;
      color:var(--muted);
      line-height:1.45;
    }

    .content-area{
      margin-left:var(--sidebar-w);
      min-height:100vh;
    }
    .mobile-topbar{
      display:none;
      position:sticky;
      top:0;
      z-index:1025;
      padding:12px 16px;
      border-bottom:1px solid rgba(230,215,198,.9);
      background:rgba(250,244,236,.86);
      backdrop-filter:blur(14px);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      max-width:100%;
    }
    .topbar-brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }
    .topbar-mark{
      width:38px;height:38px;border-radius:14px;
      background:linear-gradient(145deg, var(--accent), #efb060);
      color:#fff;
      display:grid;place-items:center;
      font-weight:800;
      box-shadow:0 12px 22px rgba(201,106,42,.18);
      flex:0 0 auto;
    }
    .topbar-brand strong{
      display:block;
      font-size:1rem;
      line-height:1.1;
    }
    .topbar-brand span{
      display:block;
      font-size:.78rem;
      color:var(--muted);
      margin-top:2px;
    }

    .container-xxl{
      max-width:var(--container-max);
    }
    .hero-section,
    .content-section{
      padding:34px 0;
    }
    .hero-shell{
      padding-top:8px;
    }
    .hero-grid{
      align-items:stretch;
    }
    .hero-copy,
    .hero-media,
    .panel-card,
    .feature-card,
    .list-card,
    .rail-card,
    .stat-card,
    .quote-card,
    .faq-item,
    .cta-panel,
    .footer-panel{
      background:linear-gradient(180deg, rgba(255,250,243,.95), rgba(255,255,255,.78));
      border:1px solid rgba(230,215,198,.88);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
    }
    .hero-copy{
      padding:32px;
      position:relative;
      overflow:hidden;
    }
    .hero-copy::after{
      content:"";
      position:absolute;
      width:220px;height:220px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(201,106,42,.16), transparent 68%);
      right:-55px;top:-55px;
      pointer-events:none;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:999px;
      background:rgba(201,106,42,.10);
      color:var(--accent-strong);
      border:1px solid rgba(201,106,42,.14);
      font-size:.84rem;
      font-weight:800;
      letter-spacing:.4px;
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--success);
      box-shadow:0 0 0 6px rgba(45,138,105,.12);
    }
    .hero-title{
      margin:18px 0 14px;
      font-size:clamp(2rem, 3vw, 3.55rem);
      line-height:1.12;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .hero-desc{
      margin:0;
      color:var(--muted);
      font-size:1.02rem;
      max-width:42rem;
    }
    .hero-chips{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .hero-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:999px;
      background:var(--surface-2);
      border:1px solid rgba(230,215,198,.92);
      padding:8px 12px;
      font-size:.86rem;
      font-weight:700;
      color:#4d3a2c;
    }
    .hero-chip b{color:var(--accent-strong)}
    .cta-group{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
    }
    .btn-accent,
    .btn-outline-accent{
      border-radius:999px;
      padding:12px 18px;
      font-weight:800;
      transition:all var(--transition);
    }
    .btn-accent{
      background:linear-gradient(135deg, var(--accent), var(--accent-soft));
      color:#fff;
      border:1px solid transparent;
      box-shadow:0 14px 24px rgba(201,106,42,.18);
    }
    .btn-accent:hover{
      transform:translateY(-1px);
      color:#fff;
      background:linear-gradient(135deg, var(--accent-strong), var(--accent));
      box-shadow:0 18px 28px rgba(201,106,42,.22);
    }
    .btn-outline-accent{
      background:rgba(255,255,255,.72);
      color:var(--accent-strong);
      border:1px solid rgba(201,106,42,.26);
    }
    .btn-outline-accent:hover{
      background:rgba(201,106,42,.09);
      color:var(--accent-strong);
      transform:translateY(-1px);
      border-color:rgba(201,106,42,.38);
    }
    .hero-form{
      margin-top:22px;
      padding-top:18px;
      border-top:1px dashed rgba(230,215,198,.95);
      max-width:42rem;
    }
    .form-mini{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .form-mini .form-control{
      flex:1 1 240px;
      min-height:48px;
      border-radius:14px;
      border:1px solid rgba(230,215,198,.95);
      background:rgba(255,255,255,.82);
      box-shadow:none;
      padding:12px 14px;
    }
    .form-mini .form-control:focus{
      border-color:rgba(201,106,42,.45);
      box-shadow:0 0 0 .24rem rgba(201,106,42,.10);
    }
    .form-mini .btn{
      min-height:48px;
      white-space:nowrap;
    }
    .form-note{
      margin:10px 0 0;
      font-size:.86rem;
      color:var(--muted);
    }

    .hero-media{
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:14px;
      min-height:100%;
    }
    .cover-panel{
      position:relative;
      overflow:hidden;
      border-radius:24px;
      padding:20px;
      background:
        linear-gradient(135deg, rgba(45,138,105,.18), rgba(201,106,42,.16)),
        linear-gradient(160deg, #fff8ef, #f5ebde);
      border:1px solid rgba(230,215,198,.92);
      min-height:280px;
      box-shadow:var(--shadow-soft);
    }
    .cover-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.7);
      color:var(--accent-strong);
      border:1px solid rgba(201,106,42,.14);
      font-size:.8rem;
      font-weight:800;
    }
    .cover-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:14px;
      margin-top:16px;
      min-height:220px;
    }
    .cover-art{
      position:relative;
      border-radius:22px;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.72), transparent 30%),
        linear-gradient(160deg, #d6752f, #7f3d18 74%);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.16), 0 20px 40px rgba(127,61,24,.18);
      overflow:hidden;
    }
    .cover-art::before,
    .cover-art::after{
      content:"";
      position:absolute;
      inset:auto;
      border-radius:999px;
      background:rgba(255,255,255,.15);
      filter:blur(1px);
    }
    .cover-art::before{width:126px;height:126px;right:-16px;top:-18px}
    .cover-art::after{width:180px;height:180px;left:-38px;bottom:-70px;background:rgba(255,220,182,.16)}
    .cover-art-inner{
      position:absolute;
      inset:14px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.18);
      padding:14px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      color:#fff;
    }
    .cover-art h3{
      margin:0;
      font-size:1.28rem;
      line-height:1.25;
      font-weight:900;
      max-width:10ch;
    }
    .cover-art p{
      margin:0;
      max-width:20ch;
      color:rgba(255,255,255,.9);
      font-size:.88rem;
    }
    .live-spark{
      display:flex;
      gap:8px;
      align-items:center;
      font-size:.82rem;
      font-weight:800;
      opacity:.96;
    }
    .spark-dot{
      width:10px;height:10px;border-radius:50%;
      background:#f6d06e;
      box-shadow:0 0 0 8px rgba(246,208,110,.15);
    }
    .mini-stack{
      display:grid;
      grid-template-rows:1fr 1fr;
      gap:14px;
    }
    .mini-card{
      border-radius:20px;
      padding:16px;
      background:rgba(255,255,255,.74);
      border:1px solid rgba(230,215,198,.9);
      box-shadow:var(--shadow-soft);
    }
    .mini-card .mini-label{
      display:inline-flex;
      padding:5px 10px;
      border-radius:999px;
      background:rgba(201,106,42,.08);
      color:var(--accent-strong);
      font-size:.76rem;
      font-weight:800;
      margin-bottom:10px;
    }
    .mini-card .mini-value{
      display:block;
      font-weight:900;
      font-size:1.18rem;
      line-height:1.2;
      margin-bottom:6px;
    }
    .mini-card .mini-text{
      margin:0;
      font-size:.88rem;
      color:var(--muted);
    }
    .countdown-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
      margin-top:2px;
    }
    .countdown-box{
      padding:12px 10px;
      text-align:center;
      border-radius:16px;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(230,215,198,.9);
    }
    .countdown-box strong{
      display:block;
      font-size:1.35rem;
      line-height:1.1;
      font-weight:900;
      color:var(--accent-strong);
    }
    .countdown-box span{
      display:block;
      margin-top:4px;
      font-size:.76rem;
      color:var(--muted);
    }

    .section-head{
      display:flex;
      flex-wrap:wrap;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .section-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:.84rem;
      font-weight:800;
      color:var(--accent-strong);
      margin-bottom:8px;
    }
    .section-title{
      margin:0;
      font-size:clamp(1.5rem, 2vw, 2.1rem);
      line-height:1.2;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .section-desc{
      margin:0;
      color:var(--muted);
      max-width:52rem;
      font-size:1rem;
    }
    .tag-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag-btn{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 14px;
      border-radius:999px;
      border:1px solid rgba(230,215,198,.95);
      background:rgba(255,255,255,.76);
      color:#4f3d31;
      font-size:.86rem;
      font-weight:800;
      cursor:pointer;
      transition:all var(--transition);
    }
    .tag-btn:hover,
    .tag-btn.active{
      color:var(--accent-strong);
      border-color:rgba(201,106,42,.28);
      background:rgba(201,106,42,.08);
      transform:translateY(-1px);
    }

    .pain-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:16px;
    }
    .pain-card{
      padding:20px;
      min-height:168px;
    }
    .pain-num{
      width:38px;height:38px;
      border-radius:14px;
      display:grid;place-items:center;
      background:rgba(201,106,42,.11);
      color:var(--accent-strong);
      font-weight:900;
      margin-bottom:14px;
    }
    .pain-card h3{
      font-size:1.03rem;
      line-height:1.3;
      margin:0 0 10px;
      font-weight:900;
    }
    .pain-card p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
    }

    .matrix-grid{
      display:grid;
      grid-template-columns:repeat(12, minmax(0,1fr));
      gap:16px;
    }
    .matrix-main{
      grid-column:span 8;
    }
    .matrix-side{
      grid-column:span 4;
    }
    .panel-card{
      padding:22px;
      height:100%;
    }
    .panel-card h3{
      margin:0 0 8px;
      font-size:1.15rem;
      font-weight:900;
    }
    .panel-card p{
      margin:0;
      color:var(--muted);
      font-size:.93rem;
    }
    .feature-list{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:14px;
      margin-top:18px;
    }
    .feature-card{
      padding:18px;
      min-height:156px;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .feature-card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(58,36,15,.08);
      border-color:rgba(201,106,42,.18);
    }
    .feature-icon{
      width:40px;height:40px;border-radius:14px;
      display:grid;place-items:center;
      background:rgba(201,106,42,.11);
      color:var(--accent-strong);
      font-weight:900;
      margin-bottom:12px;
    }
    .feature-card h4{
      font-size:1.02rem;
      font-weight:900;
      margin:0 0 8px;
    }
    .feature-card p{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
    }

    .list-layout{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:16px;
      align-items:start;
    }
    .featured-list{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .list-card{
      padding:16px;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .list-card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(58,36,15,.08);
      border-color:rgba(201,106,42,.18);
    }
    .list-card .card-inner{
      display:grid;
      grid-template-columns:160px 1fr;
      gap:16px;
      align-items:stretch;
    }
    .feature-art{
      border-radius:18px;
      min-height:132px;
      background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.4), transparent 32%),
        linear-gradient(155deg, #ca6a2a, #7f3e1a 78%);
      position:relative;
      overflow:hidden;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);
    }
    .feature-art::after{
      content:"";
      position:absolute;
      inset:14px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
    }
    .feature-art .cover-tag{
      position:absolute;
      left:12px;
      top:12px;
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.8);
      color:var(--accent-strong);
      font-size:.76rem;
      font-weight:800;
    }
    .feature-art .cover-badge{
      position:absolute;
      right:12px;
      bottom:12px;
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(0,0,0,.22);
      color:#fff;
      font-size:.76rem;
      font-weight:800;
      border:1px solid rgba(255,255,255,.16);
    }
    .card-kicker{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:10px;
    }
    .inline-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(201,106,42,.08);
      color:var(--accent-strong);
      border:1px solid rgba(201,106,42,.12);
      font-size:.76rem;
      font-weight:800;
    }
    .list-card h3{
      margin:0;
      font-size:1.08rem;
      line-height:1.35;
      font-weight:900;
    }
    .list-card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:.94rem;
    }
    .card-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .meta-pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:var(--surface-2);
      border:1px solid rgba(230,215,198,.88);
      color:#503d30;
      font-size:.76rem;
      font-weight:800;
    }

    .sidebar-rail{
      display:flex;
      flex-direction:column;
      gap:14px;
      position:sticky;
      top:20px;
    }
    .rail-card{
      padding:18px;
    }
    .rail-card h4{
      margin:0 0 10px;
      font-size:1rem;
      font-weight:900;
    }
    .rail-list{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .rail-item{
      padding:12px 12px 12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(230,215,198,.9);
      transition:all var(--transition);
    }
    .rail-item:hover{
      transform:translateX(2px);
      border-color:rgba(201,106,42,.22);
      box-shadow:0 10px 24px rgba(58,36,15,.05);
    }
    .rail-item strong{
      display:block;
      margin-bottom:4px;
      font-size:.94rem;
    }
    .rail-item span{
      display:block;
      color:var(--muted);
      font-size:.84rem;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag-cloud .mini-tag{
      display:inline-flex;
      align-items:center;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(201,106,42,.08);
      color:var(--accent-strong);
      border:1px solid rgba(201,106,42,.12);
      font-size:.78rem;
      font-weight:800;
    }
    .timeline{
      display:flex;
      flex-direction:column;
      gap:12px;
      margin-top:4px;
    }
    .timeline-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .timeline-mark{
      width:12px;height:12px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 6px rgba(201,106,42,.12);
      margin-top:6px;
      flex:0 0 auto;
    }
    .timeline-item strong{
      display:block;
      font-size:.92rem;
      margin-bottom:4px;
    }
    .timeline-item p{
      margin:0;
      color:var(--muted);
      font-size:.84rem;
      line-height:1.55;
    }

    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:16px;
    }
    .stat-card{
      padding:18px;
    }
    .stat-top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
      margin-bottom:12px;
    }
    .stat-label{
      color:var(--muted);
      font-size:.83rem;
      font-weight:800;
      letter-spacing:.3px;
    }
    .stat-value{
      font-size:2rem;
      line-height:1;
      font-weight:900;
      color:var(--accent-strong);
    }
    .stat-note{
      margin:10px 0 0;
      color:var(--muted);
      font-size:.9rem;
    }
    .progress.soft{
      height:10px;
      border-radius:999px;
      background:rgba(230,215,198,.75);
      overflow:hidden;
      margin-top:12px;
    }
    .progress.soft .progress-bar{
      border-radius:999px;
      background:linear-gradient(90deg, var(--accent), var(--accent-soft));
    }
    .meter-row{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:16px;
      margin-top:16px;
    }
    .meter-card{
      border-radius:18px;
      border:1px solid rgba(230,215,198,.9);
      background:rgba(255,255,255,.7);
      padding:16px;
    }
    .meter-card strong{
      display:block;
      font-size:1.15rem;
      color:var(--accent-strong);
      margin-bottom:6px;
    }
    .meter-card span{
      display:block;
      color:var(--muted);
      font-size:.88rem;
    }

    .quote-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:16px;
    }
    .quote-card{
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .quote-card::before{
      content:"“";
      position:absolute;
      right:18px;
      top:-12px;
      font-size:7rem;
      line-height:1;
      color:rgba(201,106,42,.12);
      font-family:Georgia,serif;
    }
    .quote-text{
      margin:0 0 18px;
      font-size:1.02rem;
      line-height:1.85;
      color:#3a2b22;
      position:relative;
      z-index:1;
    }
    .quote-user{
      display:flex;
      align-items:center;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .avatar{
      width:44px;height:44px;border-radius:50%;
      display:grid;place-items:center;
      background:linear-gradient(145deg, var(--accent), var(--accent-soft));
      color:#fff;
      font-weight:900;
      box-shadow:0 10px 20px rgba(201,106,42,.18);
      flex:0 0 auto;
    }
    .quote-user strong{
      display:block;
      font-size:.95rem;
    }
    .quote-user span{
      display:block;
      color:var(--muted);
      font-size:.84rem;
      margin-top:2px;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:16px;
    }
    .faq-item{
      padding:4px 0;
      overflow:hidden;
    }
    .faq-item .accordion-button{
      background:transparent;
      box-shadow:none;
      color:var(--text);
      font-weight:900;
      padding:20px 22px;
      border-radius:0;
    }
    .faq-item .accordion-button:not(.collapsed){
      color:var(--accent-strong);
      background:rgba(201,106,42,.06);
      box-shadow:none;
    }
    .faq-item .accordion-button::after{
      background-size:1rem;
      filter:saturate(.6) brightness(.75);
    }
    .faq-item .accordion-body{
      color:var(--muted);
      padding:0 22px 20px;
      font-size:.95rem;
    }
    .faq-item .accordion-item{
      border:0;
      background:transparent;
    }

    .cta-panel{
      padding:26px;
      background:
        linear-gradient(135deg, rgba(201,106,42,.14), rgba(255,255,255,.92)),
        linear-gradient(180deg, rgba(255,250,243,.95), rgba(255,255,255,.8));
      overflow:hidden;
      position:relative;
    }
    .cta-panel::after{
      content:"";
      position:absolute;
      width:260px;height:260px;
      border-radius:50%;
      right:-80px;
      top:-100px;
      background:radial-gradient(circle, rgba(201,106,42,.18), transparent 70%);
      pointer-events:none;
    }
    .cta-panel .section-title{
      max-width:18ch;
    }
    .cta-panel .section-desc{
      max-width:46rem;
    }

    .site-footer{
      padding:8px 0 42px;
    }
    .footer-panel{
      padding:22px;
    }
    .footer-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
      padding-bottom:18px;
      border-bottom:1px solid rgba(230,215,198,.88);
    }
    .footer-brand{
      display:flex;
      align-items:flex-start;
      gap:14px;
      min-width:0;
    }
    .footer-logo{
      width:52px;height:52px;
      border-radius:18px;
      background:linear-gradient(145deg, var(--accent), #f0b05f);
      color:#fff;
      display:grid;place-items:center;
      font-weight:900;
      box-shadow:0 14px 28px rgba(201,106,42,.18);
      flex:0 0 auto;
    }
    .footer-name{
      margin:0;
      font-size:1.08rem;
      font-weight:900;
    }
    .footer-text{
      margin:6px 0 0;
      color:var(--muted);
      max-width:34rem;
      font-size:.92rem;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px 16px;
      align-items:center;
    }
    .footer-links a{
      color:#4f3d31;
      font-weight:800;
      font-size:.92rem;
      padding:7px 0;
    }
    .footer-links a:hover{color:var(--accent-strong)}
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding-top:14px;
      color:var(--muted);
      font-size:.88rem;
    }

    .offcanvas{
      background:linear-gradient(180deg, rgba(255,250,243,.98), rgba(248,240,230,.96));
      color:var(--text);
      border-right:1px solid rgba(230,215,198,.9);
    }
    .offcanvas .btn-close{
      box-shadow:none;
      opacity:.8;
    }
    .offcanvas .sidebar-nav{
      padding-top:8px;
    }

    .breadcrumb-mini{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      color:var(--muted);
      font-size:.88rem;
      margin-bottom:16px;
    }
    .breadcrumb-mini a{
      color:var(--muted);
    }
    .breadcrumb-mini a:hover{
      color:var(--accent-strong);
    }

    @media (max-width: 1199.98px){
      .pain-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .stats-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .list-layout{grid-template-columns:1fr}
      .sidebar-rail{position:static}
      .matrix-main,.matrix-side{grid-column:span 12}
    }
    @media (max-width: 991.98px){
      .sidebar{display:none}
      .content-area{margin-left:0}
      .mobile-topbar{display:block}
      .hero-copy{padding:24px}
      .cover-grid{grid-template-columns:1fr}
      .hero-media{padding:16px}
      .quote-grid,.faq-wrap{grid-template-columns:1fr}
      .feature-list{grid-template-columns:1fr}
      .meter-row{grid-template-columns:1fr}
      .list-card .card-inner{grid-template-columns:1fr}
    }
    @media (max-width: 767.98px){
      .hero-section,.content-section{padding:24px 0}
      .pain-grid,.stats-grid{grid-template-columns:1fr}
      .countdown-row{grid-template-columns:repeat(2,1fr)}
      .cta-group,.form-mini{flex-direction:column;align-items:stretch}
      .btn-accent,.btn-outline-accent,.form-mini .btn{width:100%}
      .hero-title{font-size:clamp(1.8rem, 8vw, 2.5rem)}
      .section-head{align-items:flex-start}
      .footer-top,.footer-bottom{flex-direction:column}
      .nav-link-custom{padding:13px}
    }

/* roulang page: category1 */
:root{
      --bg:#f6efe7;
      --bg-soft:#fbf7f2;
      --surface:#fffaf4;
      --surface-2:#f3e9de;
      --ink:#201815;
      --ink-soft:#5f544c;
      --line:#e3d6c7;
      --line-strong:#d6c2ae;
      --accent:#c86f32;
      --accent-2:#9f4f1f;
      --accent-3:#d8a24c;
      --dark:#1f1713;
      --dark-2:#2a201b;
      --success:#2f7f63;
      --shadow:0 16px 40px rgba(56, 35, 20, .08);
      --shadow-soft:0 10px 26px rgba(56, 35, 20, .06);
      --radius-xl:28px;
      --radius-lg:20px;
      --radius-md:16px;
      --radius-sm:12px;
      --space-1:6px;
      --space-2:10px;
      --space-3:14px;
      --space-4:18px;
      --space-5:24px;
      --space-6:32px;
      --space-7:44px;
      --space-8:64px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at top left, rgba(200,111,50,.08), transparent 28%),
        radial-gradient(circle at top right, rgba(216,162,76,.07), transparent 22%),
        linear-gradient(180deg, #faf4ed 0%, var(--bg) 44%, #f7efe5 100%);
      min-height:100vh;
      line-height:1.7;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    ::selection{background:rgba(200,111,50,.18);color:var(--ink)}
    a{color:inherit;text-decoration:none;transition:all .2s ease}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    .app-shell{min-height:100vh}
    .sidebar{
      position:fixed;
      inset:0 auto 0 0;
      width:300px;
      background:
        linear-gradient(180deg, rgba(31,23,19,.98), rgba(29,22,19,.96)),
        linear-gradient(180deg, #241a16, #1b1411);
      border-right:1px solid rgba(255,255,255,.06);
      color:#fff;
      padding:24px 18px 20px;
      z-index:1030;
      display:flex;
      flex-direction:column;
      gap:20px;
      overflow-y:auto;
    }
    .brand-area{
      display:flex;
      align-items:center;
      gap:14px;
      padding:6px 6px 8px;
    }
    .brand-mark,
    .footer-logo{
      width:52px;height:52px;
      border-radius:16px;
      background:linear-gradient(145deg, #e19b55, #b95f28 60%, #8c4218);
      display:grid;
      place-items:center;
      color:#fff;
      font-size:18px;
      font-weight:800;
      letter-spacing:.08em;
      box-shadow:0 14px 30px rgba(184,95,40,.28);
      flex:0 0 auto;
    }
    .brand-name{
      display:block;
      font-size:18px;
      font-weight:800;
      letter-spacing:.02em;
      line-height:1.2;
      color:#fff;
    }
    .brand-desc{
      margin:6px 0 0;
      color:rgba(255,255,255,.68);
      font-size:13px;
      line-height:1.6;
    }
    .sidebar-nav{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .nav-link-custom{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:14px 14px;
      border-radius:18px;
      color:rgba(255,255,255,.82);
      background:rgba(255,255,255,.02);
      border:1px solid rgba(255,255,255,.06);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
      transition:transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .nav-link-custom:hover,
    .nav-link-custom:focus-visible{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.14);
      transform:translateX(2px);
      color:#fff;
      outline:none;
    }
    .nav-link-custom.active{
      background:linear-gradient(135deg, rgba(200,111,50,.24), rgba(217,162,76,.16));
      border-color:rgba(216,162,76,.36);
      color:#fff;
      box-shadow:0 10px 28px rgba(0,0,0,.2);
    }
    .nav-idx{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:30px;height:30px;
      border-radius:10px;
      background:rgba(255,255,255,.08);
      color:#f8e7d8;
      font-size:12px;
      font-weight:700;
      flex:0 0 auto;
      margin-top:2px;
    }
    .nav-title{font-size:15px;font-weight:700;line-height:1.25}
    .nav-note{font-size:12px;color:rgba(255,255,255,.62);line-height:1.45;margin-top:3px}
    .sidebar-rail{
      margin-top:auto;
      padding:16px 14px;
      border-radius:18px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
    }
    .sidebar-rail p{
      margin:0;
      font-size:13px;
      color:rgba(255,255,255,.7);
    }
    .sidebar-rail strong{
      display:block;
      color:#fff;
      margin-bottom:6px;
      font-size:14px;
    }
    .main-content{
      margin-left:300px;
      padding:22px 24px 40px;
    }
    .content-wrap{
      max-width:1440px;
      margin:0 auto;
    }
    .mobile-topbar{
      position:sticky;
      top:0;
      z-index:1025;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin:-22px -24px 20px;
      padding:16px 18px;
      background:rgba(31,23,19,.94);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(255,255,255,.08);
      color:#fff;
    }
    .mobile-brand{
      font-size:16px;
      font-weight:800;
      letter-spacing:.02em;
      color:#fff;
    }
    .menu-btn{
      border:none;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      color:#fff;
      padding:10px 14px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
    }
    .menu-btn:hover,
    .menu-btn:focus-visible{
      background:rgba(255,255,255,.14);
      outline:none;
    }
    .mobile-nav{
      background:linear-gradient(180deg, #1f1713, #211814);
      color:#fff;
    }
    .mobile-nav .offcanvas-header{
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .mobile-nav .offcanvas-body{
      padding-top:18px;
    }
    .mobile-nav .sidebar-nav{gap:10px}
    .mobile-nav .nav-link-custom{background:rgba(255,255,255,.03)}
    .mobile-nav .nav-link-custom.active{background:linear-gradient(135deg, rgba(200,111,50,.24), rgba(217,162,76,.16))}
    .hero-panel{
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 15% 10%, rgba(216,162,76,.22), transparent 20%),
        radial-gradient(circle at 85% 18%, rgba(200,111,50,.16), transparent 18%),
        linear-gradient(160deg, #2a201c 0%, #1c1512 100%);
      color:#fff;
      border-radius:var(--radius-xl);
      padding:34px;
      box-shadow:var(--shadow);
      border:1px solid rgba(255,255,255,.06);
    }
    .hero-panel::before,
    .hero-panel::after{
      content:"";
      position:absolute;
      inset:auto;
      border-radius:999px;
      pointer-events:none;
      opacity:.35;
    }
    .hero-panel::before{
      width:190px;height:190px;
      right:-50px;top:-40px;
      background:radial-gradient(circle, rgba(216,162,76,.18), transparent 70%);
    }
    .hero-panel::after{
      width:250px;height:250px;
      right:120px;bottom:-140px;
      background:radial-gradient(circle, rgba(200,111,50,.12), transparent 72%);
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(300px,.92fr);
      gap:24px;
      align-items:stretch;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      color:#f8e7d8;
      font-size:13px;
      letter-spacing:.03em;
      border:1px solid rgba(255,255,255,.08);
      margin-bottom:16px;
    }
    .hero-title{
      margin:0;
      font-size:clamp(30px, 4vw, 54px);
      line-height:1.15;
      font-weight:900;
      letter-spacing:.01em;
      max-width:10ch;
    }
    .hero-summary{
      margin:18px 0 0;
      color:rgba(255,255,255,.82);
      font-size:16px;
      max-width:42rem;
    }
    .hero-subline{
      margin:10px 0 0;
      color:rgba(255,255,255,.66);
      font-size:14px;
      max-width:40rem;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .btn-accent,
    .btn-ghost,
    .filter-chip,
    .pagination .page-link-like,
    .search-lite button{
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }
    .btn-accent{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:12px 18px;
      border:none;
      border-radius:999px;
      background:linear-gradient(135deg, var(--accent), #e08b43);
      color:#fff;
      font-weight:700;
      box-shadow:0 16px 30px rgba(200,111,50,.25);
    }
    .btn-accent:hover,
    .btn-accent:focus-visible{
      color:#fff;
      transform:translateY(-1px);
      box-shadow:0 18px 34px rgba(200,111,50,.32);
      outline:none;
    }
    .btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:12px 18px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.04);
      color:#fff;
      font-weight:700;
    }
    .btn-ghost:hover,
    .btn-ghost:focus-visible{
      color:#fff;
      background:rgba(255,255,255,.1);
      border-color:rgba(255,255,255,.28);
      transform:translateY(-1px);
      outline:none;
    }
    .hero-chips{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:20px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      color:#fff;
      font-size:13px;
      line-height:1;
    }
    .hero-board{
      display:grid;
      gap:14px;
      align-content:stretch;
    }
    .hero-board-card{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
      border-radius:24px;
      padding:18px;
      backdrop-filter:blur(10px);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
    }
    .board-label{
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(216,162,76,.14);
      color:#f8e8d6;
      font-size:12px;
      font-weight:700;
      margin-bottom:12px;
    }
    .board-title{
      font-size:20px;
      line-height:1.35;
      font-weight:800;
      margin:0 0 14px;
    }
    .board-subtitle{
      margin:0 0 16px;
      color:rgba(255,255,255,.74);
      font-size:14px;
    }
    .board-bars{
      display:grid;
      gap:12px;
    }
    .bar-line{
      display:grid;
      gap:7px;
    }
    .bar-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      font-size:13px;
      color:rgba(255,255,255,.78);
    }
    .bar-track{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
    }
    .bar-track span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, #d9954b, #c86f32 60%, #8d4a1c);
      box-shadow:0 0 18px rgba(200,111,50,.26);
    }
    .hero-mini-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .mini-card{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      border-radius:18px;
      padding:14px;
      min-height:98px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .mini-card span{
      color:rgba(255,255,255,.68);
      font-size:13px;
    }
    .mini-card strong{
      display:block;
      font-size:26px;
      line-height:1;
      margin-top:8px;
      color:#fff;
    }
    .section-block{
      margin-top:28px;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:18px;
      margin-bottom:16px;
      flex-wrap:wrap;
    }
    .section-head h2{
      margin:0;
      font-size:clamp(24px, 2vw, 32px);
      line-height:1.22;
      font-weight:900;
      letter-spacing:.01em;
    }
    .section-head p{
      margin:0;
      color:var(--ink-soft);
      max-width:60ch;
      font-size:15px;
    }
    .panel-card,
    .pain-card,
    .feature-card,
    .entry-card,
    .side-box,
    .metric-card,
    .quote-card,
    .cta-panel,
    .footer-panel{
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-soft);
    }
    .pain-card{
      padding:20px;
      height:100%;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .pain-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:var(--line-strong);
    }
    .pain-card .tag{
      display:inline-flex;
      margin-bottom:12px;
      padding:6px 10px;
      border-radius:999px;
      background:#f7ede3;
      color:var(--accent-2);
      font-size:12px;
      font-weight:700;
    }
    .pain-card h3{
      margin:0 0 8px;
      font-size:18px;
      font-weight:800;
      line-height:1.35;
    }
    .pain-card p{
      margin:0;
      color:var(--ink-soft);
      font-size:14px;
    }
    .filter-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      margin-bottom:18px;
    }
    .tag-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .filter-chip{
      border:1px solid var(--line);
      background:#fff;
      color:var(--ink);
      border-radius:999px;
      padding:9px 14px;
      font-size:13px;
      font-weight:700;
    }
    .filter-chip:hover,
    .filter-chip:focus-visible{
      border-color:rgba(200,111,50,.36);
      background:#fff8f1;
      color:var(--accent-2);
      transform:translateY(-1px);
      outline:none;
    }
    .filter-chip.active{
      background:linear-gradient(135deg, var(--accent), #e08b43);
      color:#fff;
      border-color:transparent;
      box-shadow:0 12px 24px rgba(200,111,50,.18);
    }
    .search-lite{
      display:flex;
      gap:10px;
      align-items:center;
      flex:1 1 340px;
      justify-content:flex-end;
    }
    .search-lite input{
      width:min(100%, 380px);
      min-height:46px;
      padding:0 16px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--ink);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
    }
    .search-lite input::placeholder{color:#9c8f84}
    .search-lite input:focus{
      border-color:rgba(200,111,50,.45);
      box-shadow:0 0 0 .2rem rgba(200,111,50,.12);
      outline:none;
    }
    .search-lite button{
      min-height:46px;
      padding:0 18px;
      border:none;
      border-radius:999px;
      background:var(--dark);
      color:#fff;
      font-weight:700;
      box-shadow:0 12px 22px rgba(31,23,19,.16);
    }
    .search-lite button:hover,
    .search-lite button:focus-visible{
      transform:translateY(-1px);
      background:#3a2a22;
      outline:none;
    }
    .feature-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:16px;
    }
    .feature-card{
      padding:20px;
      position:relative;
      overflow:hidden;
      min-height:170px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .feature-card::after{
      content:"";
      position:absolute;
      inset:auto -12% -28% auto;
      width:140px;
      height:140px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(200,111,50,.1), transparent 65%);
      pointer-events:none;
    }
    .feature-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:var(--line-strong);
    }
    .feature-card .flag{
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background:#f6ebde;
      color:var(--accent-2);
      font-size:12px;
      font-weight:700;
      margin-bottom:12px;
    }
    .feature-card h3{
      margin:0 0 10px;
      font-size:18px;
      font-weight:800;
    }
    .feature-card p{
      margin:0;
      color:var(--ink-soft);
      font-size:14px;
    }
    .feature-card .hint{
      margin-top:14px;
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--accent-2);
      font-weight:700;
      font-size:13px;
    }
    .entries-grid{
      display:grid;
      gap:16px;
    }
    .entry-card{
      display:grid;
      grid-template-columns:180px minmax(0,1fr);
      gap:18px;
      padding:16px;
      align-items:stretch;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .entry-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:var(--line-strong);
    }
    .entry-card:hover .thumb{
      transform:scale(1.02);
    }
    .thumb{
      position:relative;
      border-radius:18px;
      overflow:hidden;
      min-height:120px;
      background:
        linear-gradient(135deg, rgba(31,23,19,.16), rgba(31,23,19,.02)),
        linear-gradient(145deg, #eec99f, #d88b47 42%, #8d4a1f 100%);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);
      transition:transform .25s ease;
    }
    .thumb::before{
      content:"";
      position:absolute;
      inset:12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.16);
      background:
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px) 0 0/18px 18px,
        linear-gradient(180deg, rgba(255,255,255,.11), transparent 36%),
        rgba(31,23,19,.08);
      mix-blend-mode:screen;
    }
    .thumb::after{
      content:"精选合集";
      position:absolute;
      left:14px;
      bottom:14px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(31,23,19,.48);
      color:#fff;
      font-size:12px;
      font-weight:700;
      letter-spacing:.03em;
      backdrop-filter:blur(6px);
    }
    .entry-body{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:10px;
    }
    .entry-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
    }
    .entry-top h3{
      margin:0;
      font-size:19px;
      line-height:1.3;
      font-weight:800;
    }
    .entry-top .meta-pill{
      flex:0 0 auto;
      padding:6px 10px;
      border-radius:999px;
      background:#f7ede4;
      color:var(--accent-2);
      font-size:12px;
      font-weight:700;
    }
    .entry-desc{
      margin:0;
      color:var(--ink-soft);
      font-size:14px;
    }
    .entry-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .entry-tags .small-tag{
      padding:6px 10px;
      border-radius:999px;
      background:#faf3ea;
      border:1px solid #eadac9;
      color:#7a5b43;
      font-size:12px;
      line-height:1;
      font-weight:700;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      color:#806f60;
      font-size:12px;
      margin-top:auto;
    }
    .entry-meta span{
      display:inline-flex;
      align-items:center;
      gap:6px;
    }
    .entry-meta span::before{
      content:"";
      width:6px;height:6px;
      border-radius:50%;
      background:rgba(200,111,50,.65);
      flex:0 0 auto;
    }
    .side-panel{
      position:sticky;
      top:24px;
      display:grid;
      gap:14px;
    }
    .side-box{
      padding:18px;
    }
    .side-title{
      font-size:16px;
      font-weight:800;
      margin:0 0 12px;
    }
    .side-list{
      display:grid;
      gap:12px;
    }
    .side-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:10px 0;
      border-top:1px dashed var(--line);
    }
    .side-item:first-child{border-top:none;padding-top:0}
    .side-item .dot{
      width:10px;height:10px;
      border-radius:50%;
      margin-top:6px;
      background:linear-gradient(135deg, var(--accent), var(--accent-3));
      box-shadow:0 0 0 4px rgba(200,111,50,.08);
      flex:0 0 auto;
    }
    .side-item strong{
      display:block;
      font-size:14px;
      margin-bottom:3px;
    }
    .side-item p{
      margin:0;
      color:var(--ink-soft);
      font-size:13px;
      line-height:1.55;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag-cloud .cloud-tag{
      padding:7px 10px;
      border-radius:999px;
      background:#f7eee5;
      border:1px solid #eadccb;
      color:#6d5848;
      font-size:12px;
      font-weight:700;
    }
    .quick-links{
      display:grid;
      gap:10px;
    }
    .quick-links a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--ink);
      font-size:14px;
      font-weight:700;
    }
    .quick-links a:hover,
    .quick-links a:focus-visible{
      border-color:rgba(200,111,50,.4);
      background:#fff8f1;
      color:var(--accent-2);
      transform:translateY(-1px);
      outline:none;
    }
    .pagination-wrap{
      display:flex;
      justify-content:center;
      margin-top:18px;
    }
    .pagination{
      gap:8px;
      flex-wrap:wrap;
    }
    .page-link-like{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:44px;
      height:44px;
      padding:0 14px;
      border-radius:14px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--ink);
      font-weight:700;
      box-shadow:0 8px 18px rgba(56,35,20,.04);
    }
    .page-link-like:hover,
    .page-link-like:focus-visible{
      border-color:rgba(200,111,50,.4);
      background:#fff8f1;
      color:var(--accent-2);
      transform:translateY(-1px);
      outline:none;
    }
    .page-link-like.active{
      border-color:transparent;
      background:linear-gradient(135deg, var(--accent), #df8740);
      color:#fff;
      box-shadow:0 12px 24px rgba(200,111,50,.18);
    }
    .result-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:16px;
    }
    .metric-card{
      padding:20px;
      position:relative;
      overflow:hidden;
      min-height:190px;
    }
    .metric-card::after{
      content:"";
      position:absolute;
      inset:auto -30px -34px auto;
      width:160px;height:160px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(200,111,50,.12), transparent 66%);
      pointer-events:none;
    }
    .metric-number{
      font-size:40px;
      line-height:1;
      font-weight:900;
      color:var(--accent-2);
      margin-bottom:10px;
    }
    .metric-label{
      font-size:17px;
      font-weight:800;
      margin-bottom:10px;
    }
    .metric-text{
      margin:0 0 14px;
      color:var(--ink-soft);
      font-size:14px;
    }
    .metric-track{
      height:10px;
      border-radius:999px;
      background:#efe4d9;
      overflow:hidden;
      margin-top:auto;
    }
    .metric-track span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--accent), var(--accent-3));
    }
    .quote-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:16px;
    }
    .quote-card{
      padding:20px;
      min-height:210px;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .quote-mark{
      width:42px;height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:#f4e7da;
      color:var(--accent-2);
      font-size:22px;
      font-weight:900;
    }
    .quote-card p{
      margin:0;
      font-size:15px;
      color:var(--ink);
    }
    .quote-author{
      margin-top:auto;
      display:flex;
      align-items:center;
      gap:12px;
    }
    .avatar{
      width:42px;height:42px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, var(--dark), #6d3c20);
      color:#fff;
      font-weight:800;
      flex:0 0 auto;
    }
    .author-meta strong{display:block;font-size:14px}
    .author-meta span{display:block;color:var(--ink-soft);font-size:12px}
    .custom-accordion .accordion-item{
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      background:var(--surface);
      box-shadow:var(--shadow-soft);
      margin-bottom:14px;
    }
    .custom-accordion .accordion-button{
      background:var(--surface);
      color:var(--ink);
      font-weight:800;
      box-shadow:none;
      padding:18px 18px;
    }
    .custom-accordion .accordion-button:focus{
      box-shadow:0 0 0 .2rem rgba(200,111,50,.12);
      border-color:rgba(200,111,50,.35);
    }
    .custom-accordion .accordion-button:not(.collapsed){
      background:#fff7ef;
      color:var(--accent-2);
    }
    .custom-accordion .accordion-button::after{
      background-size:1rem;
      opacity:.72;
    }
    .custom-accordion .accordion-body{
      padding:0 18px 18px;
      color:var(--ink-soft);
      font-size:14px;
      line-height:1.75;
    }
    .cta-panel{
      margin-top:28px;
      padding:28px;
      background:
        radial-gradient(circle at 18% 20%, rgba(216,162,76,.16), transparent 20%),
        linear-gradient(135deg, #241b17, #1c1512);
      color:#fff;
      border-color:rgba(255,255,255,.08);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .cta-panel h2{
      margin:10px 0 8px;
      font-size:clamp(24px, 2.4vw, 34px);
      line-height:1.2;
      font-weight:900;
    }
    .cta-panel p{
      margin:0;
      color:rgba(255,255,255,.72);
      max-width:54ch;
    }
    .cta-chip{
      display:inline-flex;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      font-size:12px;
      color:#f8e7d8;
      font-weight:700;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }
    .site-footer{
      margin-top:28px;
    }
    .footer-panel{
      padding:22px;
      background:rgba(255,250,244,.92);
    }
    .footer-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
      padding-bottom:18px;
      border-bottom:1px solid var(--line);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:14px;
    }
    .footer-name{
      margin:0;
      font-size:18px;
      font-weight:800;
      line-height:1.3;
    }
    .footer-text{
      margin:6px 0 0;
      color:var(--ink-soft);
      font-size:13px;
      line-height:1.7;
      max-width:42ch;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px 14px;
      align-items:center;
    }
    .footer-links a{
      padding:10px 12px;
      border-radius:12px;
      border:1px solid transparent;
      color:var(--ink);
      font-size:14px;
      font-weight:700;
      background:transparent;
    }
    .footer-links a:hover,
    .footer-links a:focus-visible{
      border-color:var(--line);
      background:#fff;
      color:var(--accent-2);
      transform:translateY(-1px);
      outline:none;
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding-top:16px;
      color:var(--ink-soft);
      font-size:13px;
    }
    .focusable:focus-visible,
    a:focus-visible,
    button:focus-visible,
    input:focus-visible{
      outline:3px solid rgba(200,111,50,.22);
      outline-offset:2px;
    }
    .offcanvas-body::-webkit-scrollbar,
    .sidebar::-webkit-scrollbar{
      width:10px;
    }
    .offcanvas-body::-webkit-scrollbar-thumb,
    .sidebar::-webkit-scrollbar-thumb{
      background:rgba(255,255,255,.14);
      border-radius:10px;
      border:2px solid transparent;
      background-clip:padding-box;
    }
    @media (max-width: 1200px){
      .hero-grid{grid-template-columns:1fr}
      .hero-title{max-width:12ch}
      .entry-card{grid-template-columns:160px minmax(0,1fr)}
      .feature-grid,.result-grid,.quote-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width: 991.98px){
      .sidebar{display:none}
      .main-content{margin-left:0;padding:0 18px 34px}
      .hero-panel{padding:24px}
      .hero-title{max-width:100%}
      .side-panel{position:static}
      .result-grid,.quote-grid,.feature-grid{grid-template-columns:1fr}
      .entry-card{grid-template-columns:1fr}
      .thumb{min-height:160px}
    }
    @media (max-width: 767.98px){
      .mobile-topbar{margin:-22px -18px 18px}
      .hero-panel{border-radius:22px}
      .hero-actions,.cta-actions{width:100%}
      .btn-accent,.btn-ghost{width:100%}
      .search-lite{width:100%;justify-content:stretch}
      .search-lite input{width:100%}
      .search-lite button{width:100%}
      .filter-row{align-items:stretch}
      .tag-strip{width:100%}
      .quote-card,.metric-card,.feature-card,.pain-card,.entry-card,.side-box,.footer-panel,.cta-panel{border-radius:18px}
      .cta-panel{padding:22px;flex-direction:column;align-items:flex-start}
      .cta-actions{justify-content:flex-start}
      .footer-top,.footer-bottom{flex-direction:column}
    }
    @media (max-width: 520px){
      .main-content{padding:0 14px 28px}
      .mobile-topbar{margin:-22px -14px 16px;padding:14px 14px}
      .hero-panel{padding:20px}
      .section-block{margin-top:22px}
      .section-head{margin-bottom:14px}
      .hero-mini-grid{grid-template-columns:1fr}
      .entry-top{flex-direction:column}
      .entry-top .meta-pill{align-self:flex-start}
      .brand-mark,.footer-logo{width:46px;height:46px;border-radius:14px}
      .brand-name{font-size:17px}
    }
