/* roulang page: index */
:root{
      --bg:#faf7f2;
      --bg-soft:#fff9f4;
      --surface:#ffffff;
      --surface-2:#fff5ea;
      --surface-dark:#161616;
      --surface-dark-2:#221d18;
      --text:#181614;
      --muted:#6d675f;
      --line:#e7ddd0;
      --line-2:#d9d0c2;
      --brand:#ff5b3d;
      --brand-2:#ffb000;
      --brand-3:#fff0c2;
      --success:#1f9d62;
      --shadow:0 12px 30px rgba(45, 33, 18, .08);
      --shadow-strong:0 18px 44px rgba(45, 33, 18, .16);
      --radius:18px;
      --radius-lg:24px;
      --radius-sm:14px;
      --container:1180px;
    }
    *,*::before,*::after{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(255,91,61,.08), transparent 30%),
        radial-gradient(circle at top right, rgba(255,176,0,.10), transparent 26%),
        linear-gradient(180deg, #faf7f2 0%, #fcfbf8 48%, #f8f5ef 100%);
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",sans-serif;
      line-height:1.72;
      padding-bottom:0;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition:all .22s ease;
    }
    a:hover{color:inherit}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(255,91,61,.18)}
    .container-wide{max-width:var(--container)}
    .text-muted-custom{color:var(--muted)!important}
    .section-block{
      padding:1rem 0;
      scroll-margin-top:100px;
    }
    .section-shell{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(231,221,208,.9);
      box-shadow:var(--shadow);
      border-radius:var(--radius-lg);
      overflow:hidden;
    }
    .section-inner{padding:1.35rem}
    .section-head{
      display:flex;
      flex-wrap:wrap;
      align-items:end;
      gap:.75rem 1rem;
      margin-bottom:1rem;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:.4rem .75rem;
      border-radius:999px;
      background:rgba(255,91,61,.12);
      color:var(--brand);
      font-weight:700;
      font-size:.86rem;
      letter-spacing:.02em;
    }
    .section-title{
      margin:0;
      font-size:clamp(1.35rem,2.2vw,2.05rem);
      font-weight:850;
      letter-spacing:-.02em;
      line-height:1.2;
    }
    .section-desc{
      margin:0;
      color:var(--muted);
      max-width:70ch;
      font-size:1rem;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1040;
      background:rgba(250,247,242,.90);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(231,221,208,.72);
      transition:box-shadow .2s ease, transform .2s ease, background .2s ease;
    }
    .site-header.scrolled{
      box-shadow:0 8px 24px rgba(45,33,18,.06);
      background:rgba(250,247,242,.95);
    }
    .navbar{
      padding:.9rem 0;
    }
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:.7rem;
      font-weight:850;
      letter-spacing:-.02em;
      color:var(--text);
      white-space:nowrap;
    }
    .brand-mark .brand-badge{
      width:2.25rem;
      height:2.25rem;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--brand),#ff7d4e);
      color:#fff;
      box-shadow:0 10px 18px rgba(255,91,61,.24);
      flex:0 0 auto;
    }
    .brand-mark .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.05;
    }
    .brand-mark .brand-text small{
      color:var(--muted);
      font-weight:600;
      margin-top:.16rem;
      letter-spacing:.02em;
    }
    .main-nav{
      gap:.35rem;
      margin-left:1rem;
    }
    .main-nav .nav-link{
      padding:.55rem .95rem;
      border-radius:999px;
      color:var(--muted);
      font-weight:700;
      border:1px solid transparent;
    }
    .main-nav .nav-link:hover,
    .main-nav .nav-link.active{
      color:var(--text);
      background:rgba(255,255,255,.88);
      border-color:rgba(231,221,208,.95);
      box-shadow:0 8px 18px rgba(45,33,18,.05);
    }
    .header-meta{
      display:flex;
      align-items:center;
      gap:.75rem;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:.45rem .75rem;
      border-radius:999px;
      border:1px solid rgba(255,91,61,.18);
      background:rgba(255,91,61,.08);
      color:var(--brand);
      font-size:.86rem;
      font-weight:700;
      white-space:nowrap;
    }
    .status-dot{
      width:.55rem;
      height:.55rem;
      border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 0 6px rgba(255,91,61,.12);
      animation:pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{transform:scale(.92);opacity:.85}
      50%{transform:scale(1.08);opacity:1}
    }
    .btn{
      border-radius:999px;
      font-weight:700;
      padding:.82rem 1.15rem;
      transition:all .22s ease;
    }
    .btn:focus,
    .btn:active{
      box-shadow:none!important;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--brand),#ff7d4e);
      border:none;
      box-shadow:0 12px 22px rgba(255,91,61,.22);
    }
    .btn-primary:hover,
    .btn-primary:focus{
      transform:translateY(-2px);
      background:linear-gradient(135deg,#ff4a29,#ff6e45);
      box-shadow:0 16px 26px rgba(255,91,61,.28);
    }
    .btn-outline-dark{
      border-color:var(--line-2);
      background:rgba(255,255,255,.78);
      color:var(--text);
    }
    .btn-outline-dark:hover,
    .btn-outline-dark:focus{
      background:var(--text);
      border-color:var(--text);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 14px 24px rgba(20,20,20,.16);
    }
    .btn-ghost{
      border:1px dashed rgba(255,91,61,.38);
      background:rgba(255,91,61,.06);
      color:var(--brand);
    }
    .btn-ghost:hover{
      background:rgba(255,91,61,.12);
      color:var(--brand);
      transform:translateY(-2px);
    }
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.42rem .7rem;
      border-radius:999px;
      background:rgba(255,176,0,.14);
      color:#8a5c00;
      font-weight:700;
      font-size:.82rem;
      border:1px solid rgba(255,176,0,.18);
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      border-radius:999px;
      padding:.38rem .7rem;
      background:#fff;
      border:1px solid var(--line);
      color:var(--muted);
      font-size:.85rem;
      font-weight:650;
    }
    .chip-accent{
      background:rgba(255,91,61,.08);
      border-color:rgba(255,91,61,.15);
      color:var(--brand);
    }
    .hero-section{
      padding-top:1.2rem;
    }
    .hero-frame{
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(135deg, rgba(255,91,61,.12), rgba(255,176,0,.10)),
        rgba(255,255,255,.78);
      border:1px solid rgba(231,221,208,.9);
      border-radius:32px;
      box-shadow:var(--shadow);
      padding:1.35rem;
    }
    .hero-frame::before,
    .hero-frame::after{
      content:"";
      position:absolute;
      border-radius:50%;
      pointer-events:none;
    }
    .hero-frame::before{
      width:10rem;height:10rem;
      right:-3rem;top:-2rem;
      background:radial-gradient(circle, rgba(255,176,0,.26), transparent 66%);
    }
    .hero-frame::after{
      width:12rem;height:12rem;
      left:-4rem;bottom:-4rem;
      background:radial-gradient(circle, rgba(255,91,61,.18), transparent 68%);
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:.5rem .75rem;
      border-radius:999px;
      background:rgba(255,91,61,.10);
      color:var(--brand);
      font-weight:800;
      font-size:.88rem;
      box-shadow:inset 0 0 0 1px rgba(255,91,61,.08);
    }
    .hero-title{
      margin:.95rem 0 .8rem;
      font-size:clamp(2.2rem,5vw,4.15rem);
      font-weight:900;
      line-height:1.02;
      letter-spacing:-.04em;
      max-width:11ch;
    }
    .hero-subtitle{
      color:var(--muted);
      font-size:1.05rem;
      max-width:38rem;
      margin-bottom:1.2rem;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.75rem;
      align-items:center;
      margin-bottom:1rem;
    }
    .hero-trust{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
      align-items:center;
      margin-top:.9rem;
    }
    .hero-trust .trust-chip{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.45rem .72rem;
      border-radius:999px;
      background:rgba(255,255,255,.8);
      border:1px solid var(--line);
      color:var(--muted);
      font-size:.86rem;
      font-weight:700;
      box-shadow:0 8px 18px rgba(45,33,18,.04);
    }
    .hero-visual{
      position:relative;
      z-index:1;
      display:grid;
      gap:1rem;
    }
    .cover-card,
    .summary-card,
    .note-card,
    .feature-card,
    .topic-card,
    .update-item,
    .stat-card,
    .trust-card,
    .faq-card,
    .cta-band,
    .privacy-card{
      border-radius:var(--radius);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      background:var(--surface);
    }
    .cover-card{
      padding:1.15rem;
      background:
        linear-gradient(180deg, rgba(17,17,17,.96), rgba(31,26,22,.96)),
        linear-gradient(135deg, rgba(255,91,61,.05), rgba(255,176,0,.05));
      color:#fff;
      overflow:hidden;
      min-height:17rem;
      position:relative;
    }
    .cover-card::before{
      content:"";
      position:absolute;
      inset:auto -2rem -2rem auto;
      width:12rem;
      height:12rem;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,176,0,.2), transparent 65%);
    }
    .cover-title{
      font-size:1.55rem;
      font-weight:900;
      line-height:1.1;
      margin-bottom:.5rem;
      letter-spacing:-.02em;
    }
    .cover-meta{
      color:rgba(255,255,255,.76);
      margin-bottom:1rem;
      font-size:.95rem;
    }
    .cover-steps{
      display:grid;
      gap:.6rem;
      margin-top:1rem;
    }
    .cover-step{
      display:flex;
      gap:.65rem;
      align-items:flex-start;
      padding:.72rem .8rem;
      border-radius:16px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
    }
    .cover-step .step-no{
      width:1.65rem;
      height:1.65rem;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--brand),#ff8b52);
      color:#fff;
      font-size:.82rem;
      font-weight:800;
      flex:0 0 auto;
      box-shadow:0 8px 18px rgba(255,91,61,.24);
    }
    .cover-step p{
      margin:0;
      color:rgba(255,255,255,.88);
      font-size:.92rem;
      line-height:1.55;
    }
    .summary-card{
      padding:1rem;
      background:rgba(255,255,255,.9);
    }
    .summary-title{
      font-size:.92rem;
      font-weight:800;
      color:var(--brand);
      margin-bottom:.75rem;
      display:flex;
      align-items:center;
      gap:.45rem;
    }
    .summary-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:.65rem;
    }
    .summary-list li{
      display:flex;
      gap:.6rem;
      align-items:flex-start;
      color:var(--text);
      font-size:.92rem;
      line-height:1.5;
    }
    .summary-list li i{
      color:var(--brand);
      margin-top:.13rem;
    }
    .summary-tags{
      display:flex;
      flex-wrap:wrap;
      gap:.5rem;
      margin-top:.95rem;
    }
    .summary-tags .chip{
      background:var(--bg-soft);
    }
    .mini-banner{
      padding:.85rem 1rem;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(255,91,61,.10), rgba(255,176,0,.12));
      border:1px solid rgba(255,91,61,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:.75rem;
      flex-wrap:wrap;
    }
    .mini-banner strong{font-size:.96rem}
    .mini-banner span{color:var(--muted);font-size:.88rem}
    .feature-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:1rem;
    }
    .feature-main{
      padding:1.2rem;
      background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,243,.92));
      border-radius:var(--radius-lg);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      min-height:100%;
      position:relative;
      overflow:hidden;
    }
    .feature-main::after{
      content:"";
      position:absolute;
      top:1rem;
      right:1rem;
      width:4.6rem;
      height:4.6rem;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,176,0,.22), transparent 70%);
    }
    .feature-main h3,
    .feature-small h3{
      margin:0 0 .6rem;
      font-size:1.2rem;
      font-weight:850;
    }
    .feature-main p,
    .feature-small p{
      color:var(--muted);
      margin:0;
    }
    .feature-main .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:.45rem;
      margin:1rem 0 1.1rem;
    }
    .feature-main .tag-row .chip{
      background:rgba(255,91,61,.06);
      border-color:rgba(255,91,61,.12);
      color:var(--brand);
    }
    .feature-small-wrap{
      display:grid;
      gap:1rem;
    }
    .feature-small{
      padding:1.05rem;
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      min-height:calc(50% - .5rem);
      position:relative;
      overflow:hidden;
    }
    .feature-small.highlight{
      background:linear-gradient(180deg, rgba(255,176,0,.10), rgba(255,255,255,.94));
    }
    .tag-signal{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.35rem .65rem;
      border-radius:999px;
      background:rgba(255,91,61,.10);
      color:var(--brand);
      font-size:.8rem;
      font-weight:800;
      margin-bottom:.65rem;
    }
    .success-band{
      background:linear-gradient(135deg, #191714, #2b241d 72%, #191714);
      color:#fff;
      border-radius:32px;
      padding:1.35rem;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow-strong);
    }
    .success-band::before{
      content:"";
      position:absolute;
      inset:auto auto -3rem -4rem;
      width:13rem;
      height:13rem;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,91,61,.16), transparent 65%);
    }
    .success-band .section-title,
    .success-band .section-desc{
      color:#fff;
    }
    .success-band .section-desc{opacity:.82}
    .stat-card{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
      box-shadow:none;
      color:#fff;
      padding:1rem;
      height:100%;
    }
    .stat-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:1rem;
      margin-bottom:.6rem;
    }
    .stat-num{
      font-size:clamp(1.9rem,3vw,2.85rem);
      font-weight:900;
      letter-spacing:-.05em;
      line-height:1;
      font-variant-numeric:tabular-nums;
      font-feature-settings:"tnum" 1;
    }
    .stat-label{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.32rem .58rem;
      border-radius:999px;
      background:rgba(255,255,255,.1);
      color:rgba(255,255,255,.9);
      font-size:.78rem;
      font-weight:700;
      white-space:nowrap;
    }
    .stat-desc{
      color:rgba(255,255,255,.76);
      font-size:.9rem;
      line-height:1.55;
      min-height:2.8rem;
      margin-bottom:.8rem;
    }
    .mini-progress{
      height:.5rem;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      overflow:hidden;
    }
    .mini-progress span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--brand),var(--brand-2));
    }
    .stat-foot{
      display:flex;
      justify-content:space-between;
      margin-top:.55rem;
      font-size:.82rem;
      color:rgba(255,255,255,.72);
    }
    .trigger-shell{
      background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,249,241,.94));
      border:1px solid var(--line);
      border-radius:32px;
      box-shadow:var(--shadow);
      padding:1.35rem;
    }
    .trigger-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:1rem;
      align-items:stretch;
    }
    .trigger-panel{
      background:linear-gradient(135deg, rgba(255,91,61,.10), rgba(255,176,0,.10));
      border:1px solid rgba(255,91,61,.12);
      border-radius:24px;
      padding:1.2rem;
      box-shadow:0 12px 26px rgba(45,33,18,.05);
    }
    .trigger-panel h3{
      font-size:1.25rem;
      font-weight:850;
      margin:0 0 .55rem;
    }
    .trigger-panel p{
      color:var(--muted);
      margin-bottom:1rem;
    }
    .trigger-points{
      list-style:none;
      padding:0;
      margin:0 0 1rem;
      display:grid;
      gap:.6rem;
    }
    .trigger-points li{
      display:flex;
      gap:.6rem;
      align-items:flex-start;
      color:var(--text);
    }
    .trigger-points i{
      color:var(--brand);
      margin-top:.15rem;
    }
    .trigger-card{
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:24px;
      padding:1.05rem;
      box-shadow:var(--shadow);
      height:100%;
    }
    .trigger-card .mini-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:1rem;
      margin-bottom:.85rem;
    }
    .trigger-card .mini-head strong{
      font-size:1.02rem;
    }
    .trigger-grid-list{
      display:grid;
      gap:.65rem;
    }
    .mini-step{
      display:flex;
      gap:.65rem;
      align-items:flex-start;
      padding:.75rem .8rem;
      border-radius:16px;
      background:var(--bg-soft);
      border:1px solid rgba(231,221,208,.8);
    }
    .mini-step .dot{
      width:1.7rem;
      height:1.7rem;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(255,91,61,.14);
      color:var(--brand);
      font-weight:800;
      flex:0 0 auto;
      font-size:.82rem;
    }
    .mini-step p{
      margin:0;
      font-size:.92rem;
      color:var(--muted);
      line-height:1.5;
    }
    .privacy-card{
      padding:1.2rem;
      background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,251,247,.92));
    }
    .privacy-grid{
      display:grid;
      grid-template-columns:1fr .9fr;
      gap:1rem;
      align-items:start;
    }
    .privacy-box{
      background:rgba(255,91,61,.06);
      border:1px solid rgba(255,91,61,.12);
      border-radius:24px;
      padding:1rem;
    }
    .privacy-box p{
      margin:0;
      color:var(--muted);
    }
    .privacy-tags{
      margin-top:.9rem;
      display:flex;
      flex-wrap:wrap;
      gap:.5rem;
    }
    .privacy-mini{
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      padding:1rem;
      box-shadow:var(--shadow);
    }
    .privacy-mini .accordion-item{
      border:none;
      border-radius:16px;
      overflow:hidden;
      background:transparent;
    }
    .privacy-mini .accordion-button{
      padding:.9rem 0;
      font-weight:800;
      color:var(--text);
      background:transparent;
      box-shadow:none;
    }
    .privacy-mini .accordion-button:not(.collapsed){
      color:var(--brand);
      background:transparent;
    }
    .privacy-mini .accordion-body{
      padding:0 0 .6rem;
      color:var(--muted);
    }
    .topic-card{
      padding:1rem;
      height:100%;
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      position:relative;
      overflow:hidden;
    }
    .topic-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(255,91,61,.18);
    }
    .topic-card.accent{
      background:linear-gradient(180deg, rgba(255,91,61,.10), rgba(255,255,255,.96));
    }
    .topic-card .topic-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:.75rem;
      margin-bottom:.85rem;
    }
    .topic-card h3{
      margin:0 0 .4rem;
      font-size:1.02rem;
      font-weight:850;
    }
    .topic-card p{
      margin:0 0 .85rem;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.55;
      min-height:3rem;
    }
    .count-pill{
      display:inline-flex;
      align-items:center;
      gap:.3rem;
      padding:.32rem .56rem;
      border-radius:999px;
      background:rgba(255,176,0,.14);
      color:#8a5c00;
      border:1px solid rgba(255,176,0,.16);
      font-size:.78rem;
      font-weight:800;
      white-space:nowrap;
    }
    .topic-footer{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:.75rem;
      margin-top:auto;
    }
    .topic-footer .link-arrow{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      color:var(--brand);
      font-weight:800;
      font-size:.92rem;
    }
    .topic-footer .link-arrow:hover{transform:translateX(2px)}
    .updates-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:1rem;
      align-items:start;
    }
    .update-list{
      display:grid;
      gap:.7rem;
    }
    .update-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:1rem;
      background:#fff;
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .update-item:hover{
      transform:translateY(-2px);
      border-color:rgba(255,91,61,.16);
      box-shadow:var(--shadow-strong);
    }
    .update-item .update-main{
      display:grid;
      gap:.35rem;
    }
    .update-item h3{
      margin:0;
      font-size:1rem;
      font-weight:800;
      line-height:1.45;
    }
    .update-meta{
      display:flex;
      flex-wrap:wrap;
      gap:.5rem;
      align-items:center;
    }
    .update-meta .chip{
      font-size:.78rem;
      padding:.28rem .55rem;
      background:var(--bg-soft);
    }
    .update-time{
      color:var(--muted);
      font-size:.86rem;
      white-space:nowrap;
    }
    .recommend-card{
      background:linear-gradient(180deg, rgba(255,91,61,.10), rgba(255,255,255,.94));
      border:1px solid rgba(255,91,61,.14);
      border-radius:var(--radius-lg);
      padding:1.1rem;
      box-shadow:var(--shadow);
    }
    .recommend-card h3{
      margin:0 0 .6rem;
      font-size:1.1rem;
      font-weight:850;
    }
    .recommend-card p{
      color:var(--muted);
      margin-bottom:1rem;
    }
    .recommend-list{
      list-style:none;
      padding:0;
      margin:0 0 1rem;
      display:grid;
      gap:.65rem;
    }
    .recommend-list li{
      display:flex;
      gap:.55rem;
      align-items:flex-start;
      color:var(--text);
      line-height:1.5;
      font-size:.94rem;
    }
    .recommend-list i{
      color:var(--brand);
      margin-top:.15rem;
    }
    .trust-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:1rem;
    }
    .trust-card{
      padding:1rem;
      text-align:left;
      background:#fff;
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .trust-card:hover{
      transform:translateY(-2px);
      border-color:rgba(255,91,61,.18);
      box-shadow:var(--shadow-strong);
    }
    .trust-icon{
      width:2.6rem;
      height:2.6rem;
      border-radius:14px;
      display:grid;
      place-items:center;
      margin-bottom:.8rem;
      background:linear-gradient(135deg, rgba(255,91,61,.12), rgba(255,176,0,.12));
      color:var(--brand);
      font-size:1.2rem;
    }
    .trust-card h3{
      margin:0 0 .45rem;
      font-size:1rem;
      font-weight:850;
    }
    .trust-card p{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.55;
    }
    .faq-card{
      padding:1rem;
      background:#fff;
    }
    .accordion-item{
      border:1px solid var(--line);
      border-radius:16px;
      overflow:hidden;
      margin-bottom:.75rem;
      background:#fff;
    }
    .accordion-item:last-child{margin-bottom:0}
    .accordion-button{
      background:#fff;
      font-weight:800;
      color:var(--text);
      box-shadow:none;
      padding:1rem 1.1rem;
    }
    .accordion-button:not(.collapsed){
      color:var(--brand);
      background:rgba(255,91,61,.06);
      box-shadow:none;
    }
    .accordion-button:focus{
      box-shadow:none;
      border-color:rgba(255,91,61,.18);
    }
    .accordion-body{
      color:var(--muted);
      background:#fff;
      padding:0 1.1rem 1rem;
    }
    .cta-band{
      padding:1.4rem;
      background:linear-gradient(135deg, #171614, #2a2119 80%, #171614);
      color:#fff;
      border:none;
      box-shadow:var(--shadow-strong);
    }
    .cta-band .section-title,
    .cta-band .section-desc{
      color:#fff;
    }
    .cta-band .section-desc{opacity:.84}
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.75rem;
      margin-top:1rem;
    }
    .cta-band .btn-light{
      background:#fff;
      color:var(--text);
      border:none;
      font-weight:800;
    }
    .cta-band .btn-light:hover{
      transform:translateY(-2px);
      box-shadow:0 14px 24px rgba(255,255,255,.12);
    }
    footer{
      margin-top:1rem;
      padding:1.6rem 0 8rem;
      color:var(--muted);
    }
    .footer-shell{
      background:rgba(255,255,255,.78);
      border:1px solid var(--line);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:1.25rem;
    }
    .footer-title{
      display:flex;
      align-items:center;
      gap:.7rem;
      color:var(--text);
      font-weight:850;
      font-size:1.05rem;
      margin-bottom:.55rem;
    }
    .footer-note{
      margin:0;
      max-width:42rem;
      font-size:.95rem;
      color:var(--muted);
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:.65rem 1rem;
      margin-top:.9rem;
    }
    .footer-links a{
      color:var(--muted);
      font-weight:700;
    }
    .footer-links a:hover{
      color:var(--brand);
    }
    .copyright{
      margin-top:1rem;
      padding-top:1rem;
      border-top:1px solid rgba(231,221,208,.85);
      font-size:.88rem;
      color:var(--muted);
    }
    .mobile-tabbar{
      position:fixed;
      left:0;
      right:0;
      bottom:0;
      z-index:1035;
      background:rgba(17,17,17,.96);
      border-top:1px solid rgba(255,255,255,.08);
      padding:.45rem .55rem calc(.55rem + env(safe-area-inset-bottom));
      display:flex;
      gap:.45rem;
      box-shadow:0 -12px 30px rgba(0,0,0,.16);
    }
    .tab-link{
      flex:1 1 0;
      min-width:0;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:.28rem;
      padding:.55rem .35rem;
      border-radius:14px;
      color:rgba(255,255,255,.72);
      font-size:.76rem;
      font-weight:700;
      text-align:center;
      line-height:1.1;
    }
    .tab-link i{
      font-size:1.12rem;
      line-height:1;
    }
    .tab-link.active{
      background:linear-gradient(135deg, rgba(255,91,61,.18), rgba(255,176,0,.14));
      color:#fff;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
    }
    .tab-link:hover{color:#fff}
    .modal-content{
      border:none;
      border-radius:28px;
      overflow:hidden;
      box-shadow:var(--shadow-strong);
    }
    .modal-header{
      background:linear-gradient(135deg, #171614, #2b221b);
      color:#fff;
      border-bottom:none;
      padding:1rem 1.15rem;
    }
    .modal-title{font-weight:850}
    .btn-close{
      filter:invert(1);
      opacity:.9;
    }
    .modal-body{
      background:linear-gradient(180deg, #fff, #fff9f2);
      padding:1.15rem;
    }
    .form-label{
      font-weight:800;
      color:var(--text);
      margin-bottom:.45rem;
    }
    .form-control,.form-select{
      border-radius:14px;
      border-color:var(--line-2);
      padding:.82rem .95rem;
      background:#fff;
      box-shadow:none;
    }
    .form-control:focus,.form-select:focus{
      border-color:rgba(255,91,61,.35);
      box-shadow:0 0 0 .22rem rgba(255,91,61,.12);
    }
    .form-hint{
      font-size:.86rem;
      color:var(--muted);
    }
    .form-status{
      min-height:1.5rem;
      font-size:.92rem;
      color:var(--success);
      font-weight:700;
    }
    .focus-ring:focus-visible{
      outline:3px solid rgba(255,91,61,.22);
      outline-offset:2px;
    }
    @media (max-width: 1199.98px){
      .feature-grid,
      .trigger-grid,
      .privacy-grid,
      .updates-grid{
        grid-template-columns:1fr;
      }
      .trust-row{
        grid-template-columns:repeat(2,1fr);
      }
    }
    @media (max-width: 991.98px){
      .main-nav{display:none!important}
      .header-meta .status-pill{display:none}
      .hero-title{max-width:none}
      .hero-frame,
      .section-shell,
      .trigger-shell,
      .success-band,
      .privacy-card,
      .cta-band{
        border-radius:24px;
      }
      .hero-section{padding-top:.9rem}
      .feature-main::after{display:none}
    }
    @media (max-width: 767.98px){
      .section-block{padding:.82rem 0}
      .section-inner{padding:1.05rem}
      .hero-frame{padding:1.05rem}
      .hero-title{font-size:clamp(2rem,10vw,3rem)}
      .hero-subtitle{font-size:1rem}
      .hero-actions .btn{width:100%;justify-content:center}
      .trust-row{grid-template-columns:1fr}
      .stat-num{font-size:2.1rem}
      .update-item{align-items:flex-start}
      .update-item .update-time{white-space:normal}
      .cta-actions .btn{width:100%;justify-content:center}
      .footer-shell{border-radius:22px}
      footer{padding-bottom:7.5rem}
    }
    @media (max-width: 575.98px){
      .brand-mark .brand-text small{display:none}
      .section-head{margin-bottom:.9rem}
      .section-desc{font-size:.96rem}
      .summary-card,.cover-card,.feature-main,.feature-small,.trigger-panel,.trigger-card,.privacy-box,.privacy-mini,.topic-card,.update-item,.recommend-card,.trust-card,.faq-card{
        border-radius:18px;
      }
      .mobile-tabbar{padding:.42rem .45rem calc(.45rem + env(safe-area-inset-bottom))}
      .tab-link{font-size:.7rem}
    }

/* roulang page: category1 */
:root{
      --bg:#fcfaf7;
      --paper:#ffffff;
      --paper-soft:#fff7f1;
      --text:#1f1814;
      --muted:#72685f;
      --line:#eadfd6;
      --line-strong:#d9c9bd;
      --accent:#ff5c3c;
      --accent-2:#ffcc3d;
      --accent-dark:#c93e23;
      --ok:#1f9d66;
      --shadow:0 18px 50px rgba(43,28,19,.10);
      --shadow-soft:0 10px 28px rgba(43,28,19,.08);
      --radius:20px;
      --radius-sm:14px;
      --radius-xs:12px;
      --space:clamp(16px,2vw,24px);
    }
    *{box-sizing:border-box;}
    html{scroll-behavior:smooth;}
    body{
      margin:0;
      font-family:system-ui,-apple-system,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(255,92,60,.07), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(255,204,61,.08), transparent 25%),
        linear-gradient(180deg, #fffdfb 0%, var(--bg) 100%);
      line-height:1.7;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      padding-bottom:0;
    }
    img{max-width:100%;display:block;}
    a{text-decoration:none;color:inherit;}
    a:hover{color:inherit;}
    button,input,select,textarea{font:inherit;}
    :focus-visible{outline:3px solid rgba(255,92,60,.24);outline-offset:2px;}
    .container-wide{max-width:1240px;}
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(255,252,248,.82);
      backdrop-filter:saturate(1.3) blur(18px);
      border-bottom:1px solid rgba(234,223,214,.76);
      box-shadow:0 6px 20px rgba(43,28,19,.04);
    }
    .navbar{padding:14px 0;}
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:12px;
      color:var(--text);
      min-width:0;
    }
    .brand-badge{
      width:42px;height:42px;border-radius:14px;
      background:linear-gradient(145deg,var(--accent),#ff8151);
      color:#fff;
      display:grid;
      place-items:center;
      box-shadow:0 10px 22px rgba(255,92,60,.24);
      flex:0 0 auto;
      font-size:1.1rem;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.1;min-width:0;}
    .brand-text span{
      font-weight:800;
      font-size:1.05rem;
      letter-spacing:.02em;
      white-space:nowrap;
    }
    .brand-text small{
      margin-top:4px;
      color:var(--muted);
      font-size:.76rem;
      white-space:nowrap;
    }
    .main-nav{
      display:flex;
      align-items:center;
      gap:10px;
      padding:4px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      box-shadow:var(--shadow-soft);
    }
    .main-nav .nav-link{
      border-radius:999px;
      color:var(--muted);
      font-weight:700;
      font-size:.95rem;
      padding:10px 16px;
      transition:all .2s ease;
      position:relative;
    }
    .main-nav .nav-link:hover{
      color:var(--text);
      background:rgba(255,92,60,.08);
    }
    .main-nav .nav-link.active{
      background:var(--text);
      color:#fff;
      box-shadow:0 8px 16px rgba(31,24,20,.18);
    }
    .header-meta{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 14px;
      border-radius:999px;
      border:1px solid var(--line);
      color:var(--muted);
      background:#fff;
      font-size:.88rem;
      font-weight:600;
      box-shadow:var(--shadow-soft);
      white-space:nowrap;
    }
    .status-dot{
      width:9px;height:9px;border-radius:50%;
      background:linear-gradient(180deg,#ffc22f,var(--accent));
      box-shadow:0 0 0 4px rgba(255,92,60,.12);
    }
    .btn{
      border-radius:999px;
      font-weight:700;
      padding:.78rem 1.1rem;
      transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
    }
    .btn:hover{transform:translateY(-1px);}
    .btn:active{transform:translateY(0);}
    .btn-primary{
      background:linear-gradient(135deg,var(--accent),#ff7a52);
      border-color:transparent;
      box-shadow:0 12px 24px rgba(255,92,60,.22);
    }
    .btn-primary:hover,
    .btn-primary:focus{
      background:linear-gradient(135deg,#ff6847,#ff8a5b);
      box-shadow:0 14px 28px rgba(255,92,60,.28);
    }
    .btn-outline-dark{
      border:1px solid var(--line-strong);
      background:#fff;
      color:var(--text);
      box-shadow:0 6px 16px rgba(43,28,19,.04);
    }
    .btn-outline-dark:hover{
      background:#171311;
      border-color:#171311;
      color:#fff;
    }
    .btn-ghost{
      border:1px solid rgba(255,92,60,.2);
      background:rgba(255,92,60,.08);
      color:var(--accent-dark);
    }
    .btn-ghost:hover{
      background:rgba(255,92,60,.14);
      color:var(--accent-dark);
    }
    main{display:block;}
    .page-shell{padding:24px 0 0;}
    .crumbs{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:.92rem;
      margin-bottom:16px;
    }
    .crumbs a{
      color:var(--muted);
      transition:color .18s ease;
    }
    .crumbs a:hover{color:var(--accent-dark);}
    .crumbs .sep{color:#c4b7ad;}
    .hero-shell{
      position:relative;
      overflow:hidden;
      background:linear-gradient(145deg,#fff 0%, #fff7f1 100%);
      border:1px solid rgba(234,223,214,.9);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:clamp(22px,3vw,34px);
      margin-bottom:24px;
    }
    .hero-shell::before,
    .hero-shell::after{
      content:"";
      position:absolute;
      border-radius:50%;
      pointer-events:none;
    }
    .hero-shell::before{
      width:210px;height:210px;
      right:-70px;top:-62px;
      background:radial-gradient(circle, rgba(255,92,60,.13), transparent 68%);
    }
    .hero-shell::after{
      width:240px;height:240px;
      left:-90px;bottom:-120px;
      background:radial-gradient(circle, rgba(255,204,61,.14), transparent 70%);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,92,60,.10);
      color:var(--accent-dark);
      font-size:.84rem;
      font-weight:800;
      letter-spacing:.03em;
    }
    .eyebrow .dot{
      width:7px;height:7px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(255,92,60,.14);
    }
    .hero-title{
      margin:14px 0 12px;
      font-size:clamp(2rem,3.5vw,3.45rem);
      line-height:1.06;
      letter-spacing:-.03em;
      font-weight:900;
    }
    .hero-lead{
      color:var(--muted);
      font-size:1.04rem;
      max-width:54ch;
      margin-bottom:20px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:18px;
    }
    .hero-mini{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .mini-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 13px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      color:var(--text);
      font-size:.9rem;
      font-weight:700;
      box-shadow:0 8px 18px rgba(43,28,19,.05);
    }
    .mini-chip i{color:var(--accent);}
    .hero-visual{
      position:relative;
      height:100%;
      background:linear-gradient(180deg,#171210 0%, #221915 100%);
      color:#fff;
      border-radius:24px;
      padding:22px;
      box-shadow:0 22px 44px rgba(20,15,12,.18);
      border:1px solid rgba(255,255,255,.08);
      overflow:hidden;
    }
    .burst-badge{
      position:absolute;
      right:18px;top:18px;
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      background:linear-gradient(135deg,#ffd84d,#ffb93f);
      color:#30210f;
      border-radius:999px;
      font-size:.78rem;
      font-weight:900;
      box-shadow:0 10px 18px rgba(255,204,61,.20);
    }
    .hero-visual .eyebrow{
      background:rgba(255,255,255,.08);
      color:#ffd9d0;
      border:1px solid rgba(255,255,255,.08);
    }
    .ring-wrap{
      display:flex;
      align-items:center;
      justify-content:center;
      margin:28px 0 20px;
    }
    .progress-ring{
      --value:84;
      width:184px;height:184px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:
        conic-gradient(var(--accent) calc(var(--value) * 1%), rgba(255,255,255,.10) 0);
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.08),
        0 18px 38px rgba(0,0,0,.18);
    }
    .progress-ring .inner{
      width:136px;height:136px;
      border-radius:50%;
      background:radial-gradient(circle at 30% 20%, rgba(255,255,255,.10), rgba(255,255,255,.03) 58%, rgba(255,255,255,.01) 100%);
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      text-align:center;
      backdrop-filter:blur(10px);
      border:1px solid rgba(255,255,255,.08);
    }
    .progress-ring .value{
      font-size:2.3rem;
      line-height:1;
      font-weight:900;
      letter-spacing:-.04em;
    }
    .progress-ring .caption{
      color:rgba(255,255,255,.72);
      font-size:.84rem;
      margin-top:5px;
      font-weight:700;
    }
    .tier-list{
      display:grid;
      gap:10px;
      margin-top:4px;
    }
    .tier-item{
      padding:12px 13px;
      border-radius:16px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
    }
    .tier-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:800;
      font-size:.94rem;
      margin-bottom:8px;
    }
    .tier-top small{
      color:rgba(255,255,255,.62);
      font-size:.78rem;
      font-weight:700;
      white-space:nowrap;
    }
    .mini-bar{
      width:100%;
      height:7px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
    }
    .mini-bar span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--accent-2),var(--accent));
      box-shadow:0 0 14px rgba(255,204,61,.22);
    }
    .hero-note{
      margin-top:14px;
      padding-top:14px;
      border-top:1px dashed rgba(255,255,255,.12);
      color:rgba(255,255,255,.72);
      font-size:.9rem;
    }
    .hero-note strong{color:#fff;}
    .section-shell{
      margin-bottom:24px;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:8px 0 0;
      font-size:1.35rem;
      line-height:1.25;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .section-head p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:.96rem;
      max-width:60ch;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:.8rem;
      font-weight:900;
      color:var(--accent-dark);
      letter-spacing:.04em;
      text-transform:none;
    }
    .filter-shell,
    .metric-shell,
    .callout-shell,
    .content-shell,
    .cta-shell,
    .footer-shell{
      border:1px solid rgba(234,223,214,.95);
      background:rgba(255,255,255,.78);
      backdrop-filter:saturate(1.25) blur(12px);
      border-radius:24px;
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .filter-shell{padding:20px;}
    .filter-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      margin-bottom:16px;
    }
    .filter-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:14px;
    }
    .filter-chip{
      border:1px solid var(--line);
      background:#fff;
      color:var(--muted);
      border-radius:999px;
      padding:9px 14px;
      font-weight:700;
      font-size:.9rem;
      transition:all .18s ease;
      box-shadow:0 6px 16px rgba(43,28,19,.04);
    }
    .filter-chip:hover{
      transform:translateY(-1px);
      color:var(--text);
      border-color:rgba(255,92,60,.24);
      background:rgba(255,92,60,.06);
    }
    .filter-chip.active{
      color:#fff;
      background:linear-gradient(135deg,var(--text),#352722);
      border-color:transparent;
      box-shadow:0 12px 24px rgba(20,14,11,.16);
    }
    .filter-tools{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
    }
    .sort-select{
      min-width:190px;
      border-radius:14px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--text);
      padding:10px 40px 10px 14px;
      box-shadow:0 6px 14px rgba(43,28,19,.04);
    }
    .sort-select:focus{
      border-color:rgba(255,92,60,.36);
      box-shadow:0 0 0 .2rem rgba(255,92,60,.12);
    }
    .metric-shell{padding:20px;}
    .metric-card{
      position:relative;
      border-radius:20px;
      background:linear-gradient(180deg,#fff 0%, #fffaf6 100%);
      border:1px solid var(--line);
      padding:18px;
      height:100%;
      box-shadow:0 12px 26px rgba(43,28,19,.05);
      transition:transform .18s ease, box-shadow .18s ease;
      overflow:hidden;
    }
    .metric-card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(43,28,19,.10);
    }
    .metric-card::before{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:5px;
      background:linear-gradient(90deg,var(--accent-2),var(--accent));
    }
    .metric-label{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:.88rem;
      font-weight:700;
      margin-bottom:10px;
    }
    .metric-label i{color:var(--accent);}
    .metric-number{
      font-size:2rem;
      line-height:1;
      font-weight:900;
      letter-spacing:-.04em;
      margin-bottom:8px;
      font-variant-numeric:tabular-nums;
    }
    .metric-desc{
      color:var(--muted);
      font-size:.9rem;
      min-height:42px;
      margin-bottom:12px;
    }
    .metric-bar{
      width:100%;
      height:8px;
      border-radius:999px;
      background:#f1e7de;
      overflow:hidden;
    }
    .metric-bar span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--accent),#ff8b58);
    }
    .callout-shell{
      background:linear-gradient(135deg,#181311,#231916 100%);
      color:#fff;
      padding:20px;
    }
    .callout-shell .muted{color:rgba(255,255,255,.72)!important;}
    .callout-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(255,204,61,.14);
      color:#ffe48e;
      font-weight:800;
      font-size:.82rem;
      margin-bottom:10px;
    }
    .privacy-note{
      margin-top:10px;
      color:rgba(255,255,255,.74);
      font-size:.88rem;
    }
    .privacy-note strong{color:#fff;}
    .content-shell{padding:20px;}
    .content-grid{
      display:grid;
      grid-template-columns:minmax(0,1.72fr) minmax(300px,.98fr);
      gap:24px;
      align-items:start;
    }
    .entry-list{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .entry-card{
      position:relative;
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      padding:18px;
      box-shadow:0 10px 20px rgba(43,28,19,.05);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      overflow:hidden;
      min-height:100%;
    }
    .entry-card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 32px rgba(43,28,19,.10);
      border-color:rgba(255,92,60,.24);
    }
    .entry-card.featured{
      grid-column:1/-1;
      background:linear-gradient(135deg,#fff 0%, #fff9f3 100%);
      border-color:rgba(255,92,60,.24);
    }
    .entry-card::after{
      content:"";
      position:absolute;
      left:0;top:0;right:0;
      height:4px;
      background:linear-gradient(90deg,var(--accent-2),var(--accent));
    }
    .entry-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .entry-title{
      margin:0;
      font-size:1.05rem;
      line-height:1.35;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .entry-summary{
      color:var(--muted);
      font-size:.94rem;
      margin-bottom:14px;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:12px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:999px;
      background:var(--paper-soft);
      color:var(--accent-dark);
      border:1px solid rgba(255,92,60,.12);
      font-size:.78rem;
      font-weight:800;
      letter-spacing:.02em;
    }
    .entry-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .entry-time{
      color:var(--muted);
      font-size:.84rem;
      font-weight:700;
      white-space:nowrap;
    }
    .entry-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      font-weight:800;
      color:var(--accent-dark);
    }
    .entry-link i{transition:transform .18s ease;}
    .entry-card:hover .entry-link i{transform:translateX(2px);}
    .accent-ribbon{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,92,60,.1);
      color:var(--accent-dark);
      font-size:.76rem;
      font-weight:900;
      white-space:nowrap;
    }
    .sidebar-stack{
      display:grid;
      gap:16px;
      position:sticky;
      top:100px;
    }
    .summary-card,
    .faq-card,
    .side-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      box-shadow:0 10px 20px rgba(43,28,19,.05);
      overflow:hidden;
    }
    .side-card{padding:18px;}
    .side-title{
      display:flex;
      align-items:center;
      gap:8px;
      margin-bottom:12px;
      font-weight:900;
      font-size:1rem;
    }
    .side-title i{color:var(--accent);}
    .step-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .step-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
      font-size:.92rem;
    }
    .step-no{
      width:24px;height:24px;border-radius:50%;
      background:rgba(255,92,60,.12);
      color:var(--accent-dark);
      display:grid;
      place-items:center;
      font-size:.78rem;
      font-weight:900;
      flex:0 0 auto;
      margin-top:1px;
    }
    .mini-summary{
      display:grid;
      gap:10px;
    }
    .mini-summary-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:10px 12px;
      border-radius:14px;
      background:#fff8f3;
      border:1px solid rgba(255,92,60,.08);
      color:var(--muted);
      font-size:.9rem;
      font-weight:700;
    }
    .mini-summary-row strong{color:var(--text);}
    .faq-card .accordion{
      --bs-accordion-border-color:transparent;
      --bs-accordion-bg:#fff;
      --bs-accordion-btn-bg:#fff;
      --bs-accordion-active-bg:#fff6f1;
      --bs-accordion-btn-color:var(--text);
      --bs-accordion-active-color:var(--text);
      --bs-accordion-btn-focus-box-shadow:0 0 0 .2rem rgba(255,92,60,.12);
    }
    .faq-card .accordion-item{
      border:0;
      border-top:1px solid var(--line);
      border-radius:0!important;
    }
    .faq-card .accordion-item:first-child{border-top:0;}
    .faq-card .accordion-button{
      padding:16px 18px;
      font-weight:800;
      box-shadow:none!important;
    }
    .faq-card .accordion-button:not(.collapsed){
      box-shadow:none;
    }
    .faq-card .accordion-body{
      padding:0 18px 16px;
      color:var(--muted);
      font-size:.92rem;
    }
    .cta-shell{
      margin:24px 0 0;
      background:linear-gradient(145deg,#181311 0%, #2a1f1b 100%);
      color:#fff;
      padding:22px;
    }
    .cta-shell .cta-title{
      margin:0 0 6px;
      font-size:1.45rem;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .cta-shell .cta-copy{
      color:rgba(255,255,255,.74);
      max-width:58ch;
      margin-bottom:0;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
      align-items:center;
    }
    .cta-shell .btn-outline-dark{
      background:transparent;
      color:#fff;
      border-color:rgba(255,255,255,.16);
    }
    .cta-shell .btn-outline-dark:hover{
      background:#fff;
      color:#171311;
      border-color:#fff;
    }
    footer{
      padding:24px 0 112px;
    }
    .footer-shell{
      padding:22px;
      background:rgba(255,255,255,.84);
    }
    .footer-title{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      margin-bottom:10px;
    }
    .footer-note{
      color:var(--muted);
      font-size:.94rem;
      margin-bottom:0;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px 14px;
    }
    .footer-links a{
      color:var(--muted);
      font-weight:700;
      transition:color .18s ease;
    }
    .footer-links a:hover{color:var(--accent-dark);}
    .copyright{
      margin-top:18px;
      padding-top:14px;
      border-top:1px solid var(--line);
      color:var(--muted);
      font-size:.84rem;
      text-align:center;
    }
    .modal-content{
      border:0;
      border-radius:24px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .modal-header{
      border-bottom:1px solid var(--line);
      background:linear-gradient(135deg,#fff 0%, #fff8f2 100%);
      padding:18px 20px;
    }
    .modal-title{
      font-weight:900;
      letter-spacing:-.02em;
    }
    .modal-body{padding:20px;}
    .modal-footer{
      border-top:1px solid var(--line);
      padding:16px 20px 20px;
      background:#fff;
    }
    .form-label{
      font-weight:800;
      color:var(--text);
      margin-bottom:8px;
      font-size:.92rem;
    }
    .form-control,.form-select{
      border-radius:14px;
      border:1px solid var(--line);
      padding:.82rem .95rem;
      background:#fff;
      box-shadow:0 6px 14px rgba(43,28,19,.04);
    }
    .form-control:focus,.form-select:focus{
      border-color:rgba(255,92,60,.36);
      box-shadow:0 0 0 .2rem rgba(255,92,60,.12);
    }
    .form-check-input:checked{
      background-color:var(--accent);
      border-color:var(--accent);
    }
    .form-note{
      color:var(--muted);
      font-size:.88rem;
    }
    .mobile-tabbar{
      display:none;
    }
    @media (max-width: 991.98px){
      .header-meta .status-pill{display:none;}
      .main-nav{display:none;}
      .page-shell{padding-top:18px;}
      .hero-shell{padding:20px;}
      .content-grid{grid-template-columns:1fr;}
      .sidebar-stack{position:static;}
      .entry-list{grid-template-columns:1fr;}
      .cta-actions{justify-content:flex-start;margin-top:14px;}
      footer{padding-bottom:108px;}
      .mobile-tabbar{
        position:fixed;
        left:0;right:0;bottom:0;
        z-index:1040;
        display:flex;
        background:rgba(255,255,255,.92);
        backdrop-filter:saturate(1.2) blur(16px);
        border-top:1px solid rgba(234,223,214,.96);
        box-shadow:0 -8px 24px rgba(43,28,19,.08);
      }
      .mobile-tabbar .tab-item{
        flex:1 1 25%;
        text-align:center;
        padding:10px 6px 12px;
        color:var(--muted);
        font-weight:700;
        font-size:.74rem;
        border:0;
        background:none;
      }
      .mobile-tabbar .tab-item i{
        display:block;
        font-size:1.12rem;
        line-height:1;
        margin-bottom:5px;
      }
      .mobile-tabbar .tab-item.active{
        color:var(--accent-dark);
      }
      .mobile-tabbar .tab-item.active i{
        color:var(--accent);
      }
    }
    @media (max-width: 767.98px){
      .hero-title{font-size:clamp(1.8rem,7vw,2.4rem);}
      .progress-ring{width:160px;height:160px;}
      .progress-ring .inner{width:120px;height:120px;}
      .progress-ring .value{font-size:2rem;}
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .filter-top{align-items:flex-start;}
      .sort-select{width:100%;min-width:0;}
      .metric-number{font-size:1.7rem;}
      .cta-shell{padding:20px;}
    }
    @media (max-width: 575.98px){
      .navbar{padding:12px 0;}
      .brand-badge{width:38px;height:38px;border-radius:13px;}
      .brand-text span{font-size:1rem;}
      .hero-actions .btn,
      .cta-actions .btn{
        width:100%;
        justify-content:center;
      }
      .hero-mini{gap:8px;}
      .mini-chip{width:100%;justify-content:center;}
      .filter-shell,.metric-shell,.content-shell,.callout-shell,.cta-shell,.footer-shell{padding:16px;}
      .entry-card{padding:16px;}
      .summary-card,.faq-card,.side-card{border-radius:18px;}
    }

/* roulang page: category2 */
:root{
      --bg: #fff8f2;
      --bg-soft: #fff3ea;
      --surface: #ffffff;
      --surface-soft: #fff6ef;
      --surface-dark: #1e1916;
      --text: #1d1714;
      --muted: #6f665e;
      --muted-2: #8e8379;
      --border: #eadfd4;
      --accent: #ff5d3c;
      --accent-2: #ffb636;
      --accent-3: #ffe68f;
      --success: #1aa36f;
      --shadow: 0 18px 50px rgba(40, 20, 10, .08);
      --shadow-sm: 0 10px 26px rgba(40, 20, 10, .06);
      --radius: 18px;
      --radius-lg: 24px;
      --radius-sm: 14px;
      --container: 1240px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 15% 10%, rgba(255, 182, 54, .12), transparent 26%),
        radial-gradient(circle at 95% 15%, rgba(255, 93, 60, .08), transparent 24%),
        linear-gradient(180deg, #fffaf6 0%, #fff6ef 100%);
      line-height:1.7;
      padding-bottom: 84px;
    }

    a{color:inherit; text-decoration:none; transition:all .18s ease}
    a:hover{color:var(--accent)}
    img{max-width:100%; display:block}
    button, input, select, textarea{font:inherit}
    ::selection{background:rgba(255,93,60,.16)}
    section[id], aside[id]{scroll-margin-top:110px}

    .container-wide{
      max-width:var(--container);
      padding-left:1rem;
      padding-right:1rem;
    }

    .focus-ring:focus-visible,
    a:focus-visible,
    button:focus-visible,
    .form-control:focus,
    .form-select:focus{
      outline:0;
      box-shadow:0 0 0 .22rem rgba(255, 93, 60, .18);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(255, 248, 242, .9);
      border-bottom:1px solid rgba(234, 223, 212, .8);
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
    }
    .navbar{padding: .95rem 0;}
    .brand-mark{
      display:flex;
      align-items:center;
      gap:.85rem;
      min-width:0;
    }
    .brand-badge{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow:0 12px 30px rgba(255,93,60,.28);
      flex:0 0 auto;
    }
    .brand-badge i{font-size:1.05rem}
    .brand-text{min-width:0}
    .brand-text span{
      display:block;
      font-size:1.02rem;
      font-weight:800;
      letter-spacing:.2px;
      line-height:1.15;
    }
    .brand-text small{
      display:block;
      margin-top:.18rem;
      color:var(--muted);
      font-size:.78rem;
    }
    .main-nav{
      display:flex;
      align-items:center;
      gap:.35rem;
      padding:.35rem;
      border:1px solid var(--border);
      border-radius:999px;
      background:rgba(255,255,255,.92);
      box-shadow:var(--shadow-sm);
    }
    .main-nav .nav-link{
      padding:.72rem 1rem;
      border-radius:999px;
      color:var(--muted);
      font-weight:700;
      font-size:.95rem;
      white-space:nowrap;
    }
    .main-nav .nav-link:hover,
    .main-nav .nav-link:focus-visible{
      background:var(--surface-soft);
      color:var(--text);
    }
    .main-nav .nav-link.active{
      background:linear-gradient(135deg, rgba(255,93,60,.14), rgba(255,182,54,.18));
      color:var(--text);
      box-shadow:inset 0 0 0 1px rgba(255,93,60,.12);
    }
    .header-meta{
      display:flex;
      align-items:center;
      gap:.75rem;
      flex-shrink:0;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:.55rem;
      padding:.55rem .9rem;
      border:1px solid var(--border);
      border-radius:999px;
      background:#fff;
      color:var(--muted);
      font-weight:600;
      font-size:.88rem;
      box-shadow:var(--shadow-sm);
      white-space:nowrap;
    }
    .status-dot{
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(255,93,60,.14);
    }

    .btn{
      border-radius:999px;
      font-weight:700;
      transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn-primary{
      --bs-btn-color:#fff;
      --bs-btn-bg:var(--accent);
      --bs-btn-border-color:var(--accent);
      --bs-btn-hover-color:#fff;
      --bs-btn-hover-bg:#e74d30;
      --bs-btn-hover-border-color:#e74d30;
      --bs-btn-active-bg:#d64227;
      --bs-btn-active-border-color:#d64227;
      box-shadow:0 12px 24px rgba(255,93,60,.18);
    }
    .btn-soft{
      background:#fff;
      color:var(--text);
      border:1px solid var(--border);
      box-shadow:var(--shadow-sm);
    }
    .btn-soft:hover{
      color:var(--text);
      background:var(--surface-soft);
      border-color:#e5d4c8;
      box-shadow:var(--shadow);
    }
    .btn-ghost{
      background:transparent;
      color:var(--text);
      border:1px dashed var(--border);
    }
    .btn-ghost:hover{
      background:rgba(255,255,255,.85);
      border-color:#e6d5ca;
      color:var(--accent);
    }

    .page-main{
      padding:1.2rem 0 0;
    }
    .page-intro{
      padding:1rem 0 1.1rem;
    }
    .breadcrumb-mini{
      display:flex;
      align-items:center;
      gap:.45rem;
      color:var(--muted);
      font-size:.9rem;
      margin-bottom:.8rem;
    }
    .breadcrumb-mini a{color:var(--muted)}
    .breadcrumb-mini a:hover{color:var(--accent)}
    .hero-shell{
      position:relative;
      overflow:hidden;
      padding:1.35rem;
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,251,247,.96)),
        radial-gradient(circle at 85% 15%, rgba(255,182,54,.16), transparent 25%);
      box-shadow:var(--shadow);
    }
    .hero-shell::after{
      content:"";
      position:absolute;
      inset:auto -30px -30px auto;
      width:180px;
      height:180px;
      background:radial-gradient(circle, rgba(255,93,60,.12), transparent 70%);
      pointer-events:none;
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      padding:.38rem .75rem;
      border-radius:999px;
      background:rgba(255,93,60,.09);
      color:#b83a20;
      font-weight:700;
      font-size:.84rem;
      letter-spacing:.2px;
      margin-bottom:.9rem;
    }
    .hero-title{
      font-size:clamp(2rem, 3vw, 3.35rem);
      line-height:1.12;
      letter-spacing:-.02em;
      margin:0 0 .9rem;
      font-weight:900;
    }
    .hero-copy{
      color:var(--muted);
      font-size:1rem;
      max-width:44rem;
      margin:0 0 1.1rem;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.75rem;
      margin-bottom:1rem;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
      margin-top:.2rem;
    }
    .tag-pill{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.46rem .75rem;
      border-radius:999px;
      border:1px solid var(--border);
      background:#fff;
      color:var(--muted);
      font-size:.84rem;
      font-weight:700;
    }
    .tag-pill strong{color:var(--text)}

    .hero-panel{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap:1rem;
    }
    .promo-card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      padding:1.2rem 1.2rem 1.15rem;
      background:linear-gradient(160deg, #1f1a17 0%, #2c221c 100%);
      color:#fff;
      box-shadow:0 22px 48px rgba(35, 21, 12, .22);
      border:1px solid rgba(255,255,255,.08);
    }
    .promo-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 82% 0%, rgba(255,182,54,.28), transparent 22%),
        radial-gradient(circle at 15% 120%, rgba(255,93,60,.16), transparent 24%);
      pointer-events:none;
    }
    .promo-sticker{
      position:absolute;
      top:1rem;
      right:1rem;
      padding:.35rem .6rem;
      border-radius:999px;
      font-size:.75rem;
      font-weight:800;
      color:#26180e;
      background:linear-gradient(135deg, #ffe68f, #ffb636);
      box-shadow:0 10px 22px rgba(255,182,54,.22);
    }
    .promo-top{
      position:relative;
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:1rem;
      margin-bottom:.65rem;
    }
    .promo-top small{
      display:block;
      color:rgba(255,255,255,.68);
      font-size:.78rem;
      margin-bottom:.12rem;
    }
    .promo-top h3{
      margin:0;
      font-size:1.25rem;
      line-height:1.2;
      font-weight:900;
    }
    .countdown-box{
      flex:0 0 auto;
      padding:.42rem .75rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.08);
      color:#fff;
      font-variant-numeric:tabular-nums;
      font-weight:800;
      letter-spacing:.06em;
    }
    .promo-card p{
      position:relative;
      margin:0 0 1rem;
      color:rgba(255,255,255,.82);
      font-size:.95rem;
    }
    .promo-card .btn-soft{
      background:rgba(255,255,255,.08);
      color:#fff;
      border-color:rgba(255,255,255,.14);
      box-shadow:none;
    }
    .promo-card .btn-soft:hover{
      background:rgba(255,255,255,.14);
      color:#fff;
      border-color:rgba(255,255,255,.24);
    }
    .summary-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:.8rem;
    }
    .mini-stat{
      padding:.85rem .9rem;
      border-radius:16px;
      background:rgba(255,255,255,.88);
      border:1px solid var(--border);
      box-shadow:var(--shadow-sm);
    }
    .mini-stat strong{
      display:block;
      font-size:1.28rem;
      line-height:1;
      letter-spacing:-.03em;
      margin-bottom:.25rem;
    }
    .mini-stat span{
      display:block;
      color:var(--muted);
      font-size:.82rem;
      font-weight:600;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
      margin-top:.1rem;
    }
    .tag-cloud .tag-pill{
      background:rgba(255,255,255,.9);
    }
    .tag-cloud .tag-pill.hot{
      color:#a24411;
      background:rgba(255,182,54,.18);
      border-color:rgba(255,182,54,.26);
    }

    .section-shell{
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.92);
      box-shadow:var(--shadow-sm);
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:1rem;
      padding:1.15rem 1.2rem 0;
      margin-bottom:.95rem;
    }
    .section-title{
      margin:0;
      font-size:1.35rem;
      line-height:1.2;
      font-weight:900;
      letter-spacing:-.01em;
    }
    .section-desc{
      margin:.35rem 0 0;
      color:var(--muted);
      font-size:.95rem;
      max-width:58rem;
    }

    .filter-shell{
      margin-top:1rem;
      padding:1rem 1.05rem;
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,249,244,.96));
      box-shadow:var(--shadow-sm);
    }
    .filter-toolbar{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:1rem;
      flex-wrap:wrap;
    }
    .filter-group{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
    }
    .filter-chip{
      appearance:none;
      border:1px solid var(--border);
      background:#fff;
      color:var(--muted);
      padding:.54rem .82rem;
      border-radius:999px;
      font-weight:700;
      font-size:.85rem;
      box-shadow:0 8px 18px rgba(40,20,10,.04);
      transition:all .18s ease;
    }
    .filter-chip:hover,
    .filter-chip:focus-visible{
      color:var(--text);
      background:var(--surface-soft);
      border-color:#e5d5c9;
      transform:translateY(-1px);
    }
    .filter-chip.active{
      color:#7f260f;
      background:linear-gradient(135deg, rgba(255,93,60,.16), rgba(255,182,54,.16));
      border-color:rgba(255,93,60,.22);
      box-shadow:0 10px 22px rgba(255,93,60,.10);
    }
    .sort-wrap{
      min-width:180px;
    }
    .sort-select{
      border-radius:999px;
      border:1px solid var(--border);
      background:#fff;
      box-shadow:0 8px 18px rgba(40,20,10,.04);
      color:var(--text);
      font-weight:700;
      padding:.56rem 2.2rem .56rem .95rem;
    }
    .sort-select:focus{
      border-color:rgba(255,93,60,.34);
    }
    .filter-status{
      display:flex;
      align-items:center;
      gap:.5rem;
      color:var(--muted);
      font-size:.88rem;
      font-weight:600;
    }
    .filter-status strong{
      color:var(--text);
    }

    .compare-row{
      padding:0 1.2rem .2rem;
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:.85rem;
      margin-bottom:1.1rem;
    }
    .compare-item{
      padding:.95rem 1rem;
      border-radius:18px;
      border:1px solid var(--border);
      background:linear-gradient(180deg, #fff, #fffaf6);
      box-shadow:var(--shadow-sm);
    }
    .compare-top{
      display:flex;
      justify-content:space-between;
      gap:.8rem;
      align-items:center;
      margin-bottom:.45rem;
      font-weight:800;
      font-size:.9rem;
    }
    .compare-top span:last-child{
      color:var(--muted);
      font-variant-numeric:tabular-nums;
    }
    .progress-slim{
      height:8px;
      border-radius:999px;
      background:#f2e5da;
      overflow:hidden;
    }
    .progress-slim > span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--accent), var(--accent-2));
    }
    .compare-note{
      margin-top:.45rem;
      color:var(--muted);
      font-size:.8rem;
    }

    .entry-grid{
      padding:0 1.2rem 1.2rem;
    }
    .entry-card{
      position:relative;
      overflow:hidden;
      height:100%;
      padding:1.1rem;
      border-radius:20px;
      border:1px solid var(--border);
      background:linear-gradient(180deg, #fff, #fffaf6);
      box-shadow:var(--shadow-sm);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:#e4d5c9;
      box-shadow:var(--shadow);
    }
    .entry-card.featured{
      background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,244,237,.98)),
        radial-gradient(circle at 100% 0%, rgba(255,182,54,.12), transparent 24%);
      border-color:rgba(255,93,60,.18);
    }
    .entry-stamp{
      position:absolute;
      top:0.9rem;
      right:0.9rem;
      padding:.32rem .56rem;
      border-radius:999px;
      background:rgba(255,93,60,.12);
      color:#aa4025;
      font-size:.74rem;
      font-weight:800;
    }
    .entry-head{
      display:flex;
      justify-content:space-between;
      gap:.8rem;
      align-items:flex-start;
      margin-bottom:.6rem;
    }
    .entry-head h3{
      margin:0;
      font-size:1.08rem;
      line-height:1.28;
      font-weight:900;
    }
    .entry-lead{
      color:var(--muted);
      font-size:.94rem;
      margin:0 0 .85rem;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:.45rem;
      margin-bottom:.85rem;
    }
    .entry-meta .badge{
      border:1px solid var(--border);
      background:#fff;
      color:var(--muted);
      padding:.38rem .58rem;
      border-radius:999px;
      font-weight:700;
    }
    .entry-meta .badge.hot{
      background:rgba(255,182,54,.15);
      color:#8f4f06;
      border-color:rgba(255,182,54,.24);
    }
    .entry-meta .badge.clean{
      background:rgba(26,163,111,.1);
      color:#0d7b51;
      border-color:rgba(26,163,111,.18);
    }
    .entry-list{
      margin:0 0 1rem;
      padding:0;
      list-style:none;
      display:grid;
      gap:.45rem;
    }
    .entry-list li{
      position:relative;
      padding-left:1.15rem;
      color:var(--muted);
      font-size:.89rem;
    }
    .entry-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:.6rem;
      width:.45rem;
      height:.45rem;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(255,93,60,.1);
    }
    .entry-foot{
      display:flex;
      justify-content:space-between;
      gap:.75rem;
      align-items:center;
      flex-wrap:wrap;
      padding-top:.8rem;
      border-top:1px solid rgba(234,223,212,.8);
    }
    .entry-time{
      color:var(--muted);
      font-size:.82rem;
      font-weight:600;
    }
    .entry-actions{
      display:flex;
      gap:.5rem;
      flex-wrap:wrap;
    }
    .entry-actions .btn{
      padding:.5rem .8rem;
      font-size:.83rem;
    }
    .entry-compact{
      display:grid;
      gap:.75rem;
    }

    .summary-shell{
      position:sticky;
      top:92px;
      padding:1.05rem;
      border-radius:var(--radius-lg);
      border:1px solid var(--border);
      background:linear-gradient(180deg, #fff, #fffaf6);
      box-shadow:var(--shadow-sm);
    }
    .summary-title{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:1rem;
      margin-bottom:1rem;
    }
    .summary-title h3{
      margin:0;
      font-size:1.18rem;
      line-height:1.2;
      font-weight:900;
    }
    .summary-title p{
      margin:.28rem 0 0;
      color:var(--muted);
      font-size:.9rem;
    }
    .summary-grid{
      margin-bottom:1rem;
    }
    .summary-kpi{
      padding:.86rem .92rem;
      border-radius:18px;
      border:1px solid var(--border);
      background:#fff;
      box-shadow:var(--shadow-sm);
      height:100%;
    }
    .summary-kpi strong{
      display:block;
      font-size:1.5rem;
      line-height:1;
      letter-spacing:-.03em;
      margin-bottom:.28rem;
    }
    .summary-kpi span{
      display:block;
      color:var(--muted);
      font-size:.82rem;
      font-weight:600;
    }
    .summary-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:.5rem;
    }
    .summary-list li{
      display:flex;
      gap:.55rem;
      align-items:flex-start;
      padding:.58rem .66rem;
      border-radius:14px;
      background:var(--surface-soft);
      border:1px solid rgba(234,223,212,.75);
      color:var(--muted);
      font-size:.88rem;
    }
    .summary-list i{
      color:var(--accent);
      margin-top:.1rem;
    }
    .summary-footer{
      margin-top:1rem;
      display:grid;
      gap:.65rem;
    }
    .reset-link{
      width:100%;
    }
    .compact-pill{
      display:inline-flex;
      align-items:center;
      gap:.38rem;
      padding:.34rem .62rem;
      border-radius:999px;
      background:rgba(255,93,60,.1);
      color:#a7472b;
      font-size:.76rem;
      font-weight:800;
    }

    .custom-accordion .accordion-item{
      border:1px solid var(--border);
      border-radius:16px;
      overflow:hidden;
      margin-bottom:.7rem;
      background:#fff;
      box-shadow:var(--shadow-sm);
    }
    .custom-accordion .accordion-button{
      padding:.9rem 1rem;
      font-weight:800;
      color:var(--text);
      background:#fff;
      box-shadow:none;
    }
    .custom-accordion .accordion-button:not(.collapsed){
      color:var(--text);
      background:linear-gradient(135deg, rgba(255,93,60,.08), rgba(255,182,54,.08));
    }
    .custom-accordion .accordion-button:focus{
      box-shadow:none;
    }
    .custom-accordion .accordion-body{
      padding:0 1rem 1rem;
      color:var(--muted);
      font-size:.92rem;
    }

    .cta-band{
      margin:1.3rem 0 1rem;
    }
    .cta-shell{
      padding:1.25rem 1.2rem;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.1);
      background:
        linear-gradient(135deg, #1c1714 0%, #2d221b 100%);
      color:#fff;
      box-shadow:0 20px 46px rgba(32, 18, 10, .24);
    }
    .cta-shell .section-title{
      color:#fff;
      margin-bottom:.35rem;
    }
    .cta-shell .section-desc{
      color:rgba(255,255,255,.76);
      max-width:52rem;
      margin-bottom:0;
    }
    .cta-shell .btn-soft{
      background:rgba(255,255,255,.09);
      color:#fff;
      border-color:rgba(255,255,255,.14);
      box-shadow:none;
    }
    .cta-shell .btn-soft:hover{
      background:rgba(255,255,255,.14);
      color:#fff;
      border-color:rgba(255,255,255,.22);
    }
    .privacy-note{
      margin-top:.9rem;
      color:rgba(255,255,255,.78);
      font-size:.88rem;
      line-height:1.7;
    }

    footer{
      padding: .5rem 0 1.4rem;
    }
    .footer-shell{
      padding:1.1rem 1.2rem;
      border-radius:var(--radius-lg);
      border:1px solid var(--border);
      background:rgba(255,255,255,.94);
      box-shadow:var(--shadow-sm);
    }
    .footer-title{
      display:flex;
      align-items:center;
      gap:.65rem;
      font-weight:900;
      margin-bottom:.75rem;
      font-size:1.02rem;
    }
    .footer-note{
      color:var(--muted);
      margin:0;
      font-size:.94rem;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem .9rem;
    }
    .footer-links a{
      color:var(--muted);
      font-weight:700;
      font-size:.92rem;
      padding:.15rem 0;
    }
    .footer-links a:hover{color:var(--accent)}
    .copyright{
      margin-top:1rem;
      padding-top:1rem;
      border-top:1px solid rgba(234,223,212,.8);
      color:var(--muted-2);
      font-size:.85rem;
    }

    .mobile-bottom-nav{
      position:fixed;
      left:0;
      right:0;
      bottom:0;
      z-index:1040;
      display:none;
      background:rgba(255,255,255,.96);
      border-top:1px solid rgba(234,223,212,.85);
      box-shadow:0 -12px 32px rgba(0,0,0,.08);
      backdrop-filter:blur(14px);
      -webkit-backdrop-filter:blur(14px);
      padding:.35rem .55rem calc(.35rem + env(safe-area-inset-bottom));
    }
    .mobile-bottom-nav .mobile-nav{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:.35rem;
    }
    .mobile-tab{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:.25rem;
      padding:.52rem .25rem;
      border-radius:14px;
      color:var(--muted);
      font-weight:700;
      font-size:.76rem;
      min-height:58px;
    }
    .mobile-tab i{font-size:1.05rem; line-height:1}
    .mobile-tab:hover,
    .mobile-tab:focus-visible{
      color:var(--text);
      background:var(--surface-soft);
    }
    .mobile-tab.active{
      color:var(--text);
      background:linear-gradient(180deg, rgba(255,93,60,.14), rgba(255,182,54,.12));
      box-shadow:inset 0 0 0 1px rgba(255,93,60,.12);
    }

    .modal-content{
      border:1px solid var(--border);
      border-radius:24px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .modal-header{
      border-bottom:1px solid var(--border);
      background:linear-gradient(180deg, #fff, #fffaf6);
    }
    .modal-body{
      background:#fff;
    }
    .form-control, .form-select{
      border-radius:14px;
      border-color:var(--border);
      padding:.72rem .9rem;
      box-shadow:none;
    }
    .form-label{
      font-weight:800;
      color:var(--text);
      margin-bottom:.4rem;
    }
    .form-text{
      color:var(--muted);
    }
    .success-box{
      padding:1rem;
      border-radius:18px;
      border:1px solid rgba(26,163,111,.2);
      background:rgba(26,163,111,.08);
      color:#0d6e49;
    }

    .divider-soft{
      height:1px;
      background:rgba(234,223,212,.8);
      margin:1rem 0;
    }

    @media (max-width: 991.98px){
      .main-nav{display:none}
      .header-meta .status-pill{display:none}
      .hero-shell{padding:1.1rem}
      .summary-shell{position:static}
      .compare-row{grid-template-columns:1fr}
      .section-head{padding:1.05rem 1rem 0}
      .entry-grid{padding:0 1rem 1rem}
      .footer-shell{padding:1rem}
      .mobile-bottom-nav{display:block}
      body{padding-bottom:88px}
    }

    @media (max-width: 767.98px){
      .navbar{padding:.8rem 0}
      .hero-title{font-size:clamp(1.78rem, 8vw, 2.5rem)}
      .hero-actions .btn{width:100%}
      .sort-wrap{min-width:100%}
      .filter-toolbar{align-items:stretch}
      .filter-status{width:100%; justify-content:space-between}
      .summary-grid{grid-template-columns:1fr 1fr}
      .cta-shell{padding:1.05rem}
    }

    @media (max-width: 519.98px){
      .container-wide{padding-left:.8rem; padding-right:.8rem}
      .hero-shell, .filter-shell, .cta-shell, .footer-shell{border-radius:20px}
      .summary-grid{grid-template-columns:1fr}
      .entry-foot{align-items:flex-start}
      .entry-actions .btn{width:100%}
      .entry-actions{width:100%}
      .entry-actions .btn{flex:1 1 100%}
      .promo-top{flex-direction:column}
      .countdown-box{align-self:flex-start}
      .mobile-tab{font-size:.72rem}
    }
