/* roulang page: index */
:root{
      --bg:#FAF7F2;
      --bg-soft:#F5F0E8;
      --panel:#FFFDFC;
      --panel-strong:#1F1B1D;
      --text:#1F1B1D;
      --muted:#6C5F63;
      --faint:rgba(31,27,29,.08);
      --border:rgba(31,27,29,.12);
      --border-strong:rgba(31,27,29,.22);
      --accent:#B3264A;
      --accent-deep:#931D3E;
      --accent-soft:#F0D6DE;
      --secondary:#5B3B58;
      --gold:#C49A5A;
      --gold-soft:#EEE0C5;
      --shadow:0 10px 30px rgba(31,27,29,.08);
      --shadow-strong:0 18px 42px rgba(31,27,29,.14);
      --radius:8px;
      --radius-sm:6px;
      --space-xs:.5rem;
      --space-sm:.75rem;
      --space-md:1rem;
      --space-lg:1.5rem;
      --space-xl:2rem;
      --space-2xl:3rem;
      --space-3xl:4.5rem;
      --header-h:76px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,0)) 0 0/100% 300px no-repeat,
        linear-gradient(135deg, rgba(196,154,90,.08), rgba(179,38,74,.04)) 0 0/100% 100% no-repeat,
        repeating-linear-gradient(90deg, rgba(31,27,29,.015) 0 1px, transparent 1px 80px),
        repeating-linear-gradient(180deg, rgba(31,27,29,.012) 0 1px, transparent 1px 80px),
        var(--bg);
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,sans-serif;
      line-height:1.75;
      letter-spacing:0;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color .2s ease, opacity .2s ease, transform .2s ease}
    a:hover{color:var(--accent)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(179,38,74,.16);color:var(--text)}
    .skip-link{
      position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
    }
    .skip-link:focus{
      left:1rem;top:1rem;width:auto;height:auto;z-index:1200;
      background:var(--panel);padding:.75rem 1rem;border:1px solid var(--border);border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .site-header{
      position:fixed;left:0;right:0;top:0;z-index:1000;
      padding:.75rem 0;
      transition:background .25s ease, box-shadow .25s ease, padding .25s ease, border-color .25s ease;
      background:transparent;
    }
    .site-header.is-scrolled{
      background:rgba(250,247,242,.94);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(31,27,29,.08);
      box-shadow:0 8px 30px rgba(31,27,29,.08);
      padding:.5rem 0;
    }
    .top-bar,
    .title-bar{
      background:transparent;
      padding:0;
      max-width:1180px;
      margin:0 auto;
      border:none;
    }
    .title-bar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:.25rem 1rem;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:.7rem;
      font-weight:800;
      letter-spacing:0;
      color:var(--text);
      font-size:1.02rem;
      white-space:nowrap;
    }
    .brand-mark{
      width:34px;height:34px;
      border-radius:8px;
      background:
        linear-gradient(145deg, var(--accent), #D44D67);
      box-shadow:0 10px 20px rgba(179,38,74,.16);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark:before,
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:8px;
      border:1px solid rgba(255,255,255,.78);
      border-radius:6px;
    }
    .brand-mark:after{
      inset:12px 10px;
      border-top-width:2px;
      border-bottom-width:2px;
      opacity:.88;
    }
    .nav-shell{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      width:100%;
      padding:.15rem 1rem;
    }
    .top-bar-left,
    .top-bar-right{
      display:flex;
      align-items:center;
      gap:1rem;
    }
    .top-bar-left{min-width:0}
    .top-bar-right{margin-left:auto}
    .site-nav{
      gap:.35rem;
      align-items:center;
    }
    .site-nav a{
      color:var(--text);
      font-weight:600;
      padding:.58rem .9rem;
      border-radius:8px;
      line-height:1.2;
    }
    .site-nav a:hover,
    .site-nav a:focus{
      background:rgba(179,38,74,.08);
      color:var(--accent);
    }
    .site-nav a.is-active{
      background:rgba(179,38,74,.12);
      color:var(--accent);
      box-shadow:inset 0 0 0 1px rgba(179,38,74,.14);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:.6rem;
    }
    .button{
      margin:0;
      border-radius:8px;
      font-weight:700;
      line-height:1.15;
      transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
      border:1px solid transparent;
      min-height:46px;
      padding:.82rem 1.1rem;
      box-shadow:none;
    }
    .button:hover{
      transform:translateY(-1px);
      box-shadow:0 12px 24px rgba(31,27,29,.08);
    }
    .button.primary{
      background:var(--accent);
      color:#fff;
      border-color:var(--accent);
    }
    .button.primary:hover,
    .button.primary:focus{
      background:var(--accent-deep);
      border-color:var(--accent-deep);
      color:#fff;
    }
    .button.secondary{
      background:rgba(255,255,255,.35);
      color:var(--text);
      border-color:rgba(31,27,29,.16);
    }
    .button.secondary:hover,
    .button.secondary:focus{
      background:#fff;
      color:var(--text);
      border-color:rgba(31,27,29,.2);
    }
    .button.ghost{
      background:transparent;
      color:var(--text);
      border-color:transparent;
      padding:.82rem .8rem;
    }
    .button.ghost:hover,
    .button.ghost:focus{
      background:rgba(31,27,29,.04);
      color:var(--text);
    }
    .button.small{
      min-height:40px;
      padding:.63rem .85rem;
    }
    .btn-icon{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:16px;
      height:16px;
      margin-right:.5rem;
      vertical-align:middle;
    }
    .btn-icon svg{
      width:16px;height:16px;display:block;fill:currentColor;
    }
    .menu-icon.dark::after{
      background:#1F1B1D;
      box-shadow:0 7px 0 #1F1B1D, 0 -7px 0 #1F1B1D;
    }
    .menu-icon.dark{
      margin-left:.35rem;
    }
    .menu-icon.dark:after{
      height:2px;
      width:18px;
      background:#1F1B1D;
      box-shadow:0 6px 0 #1F1B1D, 0 -6px 0 #1F1B1D;
    }
    .page{
      padding-top:var(--header-h);
    }
    .section{
      padding:clamp(2rem,4vw,4.5rem) 0;
      position:relative;
    }
    .section.tight{
      padding-top:1.5rem;
      padding-bottom:1.5rem;
    }
    .section-heading{
      margin-bottom:1.35rem;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      color:var(--accent);
      font-weight:800;
      font-size:.86rem;
      text-transform:none;
      letter-spacing:0;
      margin-bottom:.55rem;
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:50%;background:var(--accent);
      box-shadow:0 0 0 6px rgba(179,38,74,.08);
    }
    h1,h2,h3,h4,p,ul,ol{
      margin-top:0;
    }
    h1{
      font-size:clamp(2.05rem,4.4vw,3.5rem);
      line-height:1.12;
      letter-spacing:0;
      margin-bottom:1rem;
      max-width:12ch;
    }
    h2{
      font-size:clamp(1.55rem,3vw,2.2rem);
      line-height:1.18;
      margin-bottom:.55rem;
    }
    h3{
      font-size:clamp(1.15rem,2vw,1.4rem);
      line-height:1.25;
      margin-bottom:.45rem;
    }
    .lead{
      font-size:1.05rem;
      color:var(--muted);
      max-width:46rem;
      margin-bottom:1.2rem;
    }
    .hero{
      padding:2rem 0 2.2rem;
      position:relative;
    }
    .hero-frame{
      position:relative;
      border-top:1px solid rgba(255,255,255,.3);
      border-bottom:1px solid rgba(31,27,29,.1);
      overflow:hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62)),
        linear-gradient(135deg, rgba(196,154,90,.11), rgba(179,38,74,.09));
    }
    .hero-frame:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 20% 20%, rgba(179,38,74,.08) 0 10%, transparent 10.2%),
        radial-gradient(circle at 80% 30%, rgba(196,154,90,.12) 0 11%, transparent 11.2%),
        radial-gradient(circle at 65% 78%, rgba(91,59,88,.08) 0 9%, transparent 9.2%);
      opacity:.55;
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      z-index:1;
      max-width:1180px;
      margin:0 auto;
      padding:clamp(4rem,10vw,7rem) 1rem 3rem;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
      gap:1.5rem;
      align-items:stretch;
    }
    .hero-copy{
      padding:1.25rem 0 1rem;
    }
    .hero-copy .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:.5rem;
      align-items:center;
      margin-bottom:1rem;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      border-radius:8px;
      border:1px solid rgba(31,27,29,.12);
      padding:.35rem .6rem;
      background:rgba(255,255,255,.75);
      color:var(--text);
      font-size:.88rem;
      line-height:1.2;
    }
    .chip strong{
      color:var(--accent);
      font-weight:800;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.75rem;
      margin:1.4rem 0 1.2rem;
    }
    .hero-actions .button{
      min-width:148px;
    }
    .hero-stats{
      display:flex;
      flex-wrap:wrap;
      gap:.6rem;
      margin-top:1.2rem;
    }
    .stat-pill{
      display:flex;
      align-items:flex-start;
      gap:.45rem;
      border-radius:8px;
      border:1px solid rgba(31,27,29,.12);
      background:rgba(255,255,255,.74);
      padding:.75rem .85rem;
      min-width:160px;
      box-shadow:0 8px 18px rgba(31,27,29,.05);
    }
    .stat-pill .num{
      font-size:1.08rem;
      font-weight:800;
      color:var(--accent);
      line-height:1.2;
    }
    .stat-pill .txt{
      color:var(--muted);
      font-size:.9rem;
      line-height:1.45;
    }
    .hero-art{
      position:relative;
      min-height:100%;
      border-radius:var(--radius);
      border:1px solid rgba(31,27,29,.12);
      background:
        linear-gradient(180deg, rgba(31,27,29,.9), rgba(31,27,29,.78)),
        linear-gradient(135deg, rgba(179,38,74,.25), rgba(196,154,90,.13));
      color:#fff;
      box-shadow:var(--shadow-strong);
      overflow:hidden;
      padding:1.1rem;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:440px;
    }
    .hero-art:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0/34px 34px,
        linear-gradient(180deg, rgba(255,255,255,.045) 1px, transparent 1px) 0 0/34px 34px;
      opacity:.4;
      pointer-events:none;
    }
    .hero-art .art-header,
    .hero-art .art-footer{
      position:relative;
      z-index:1;
    }
    .hero-art .art-header{
      display:flex;
      justify-content:space-between;
      gap:1rem;
      align-items:flex-start;
      margin-bottom:.9rem;
    }
    .hero-art .status-box{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:8px;
      padding:.55rem .7rem;
      color:#fff;
      backdrop-filter:blur(10px);
    }
    .hero-art .status-box .label{
      display:block;
      font-size:.82rem;
      color:rgba(255,255,255,.74);
      margin-bottom:.15rem;
    }
    .hero-art .status-box .value{
我已经接上了头部骨架，接下来把样式收完，再把主体内容、FAQ、页脚和结构化数据补齐到可直接运行的完整首页。font-size:1.15rem;
      font-weight:800;
      line-height:1.2;
    }
    .hero-art .status-box .label{
      display:block;
      font-size:.82rem;
      color:rgba(255,255,255,.72);
      margin-bottom:.2rem;
    }
    .hero-art .art-visual{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr;
      gap:.75rem;
      align-content:start;
      margin-top:auto;
    }
    .hero-art .art-visual svg{
      width:100%;
      height:auto;
      display:block;
      border-radius:8px;
      background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      border:1px solid rgba(255,255,255,.12);
    }
    .mini-panel{
      border-radius:8px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      padding:.85rem .9rem;
      backdrop-filter:blur(10px);
    }
    .mini-panel h4{
      font-size:.96rem;
      line-height:1.25;
      margin-bottom:.5rem;
      color:#fff;
    }
    .mini-panel ul{
      margin:0;
      list-style:none;
    }
    .mini-panel li{
      display:flex;
      justify-content:space-between;
      gap:1rem;
      padding:.42rem 0;
      border-top:1px dashed rgba(255,255,255,.14);
      color:rgba(255,255,255,.86);
      font-size:.9rem;
    }
    .mini-panel li:first-child{border-top:none;padding-top:0}
    .mini-panel .tag{
      color:rgba(255,255,255,.72);
      white-space:nowrap;
    }
    .countdown-strip{
      border:1px solid var(--border);
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.72));
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .countdown-inner{
      padding:1rem 1.15rem;
    }
    .countdown-title{
      display:flex;
      align-items:center;
      gap:.65rem;
      margin-bottom:.65rem;
      flex-wrap:wrap;
    }
    .countdown-title strong{
      font-size:1.04rem;
    }
    .countdown-state{
      font-size:.86rem;
      color:var(--muted);
    }
    .countdown-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:.75rem;
      margin-top:.85rem;
    }
    .countdown-cell{
      background:var(--bg);
      border:1px solid rgba(31,27,29,.1);
      border-radius:8px;
      padding:.8rem .75rem;
      min-height:92px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:flex-start;
    }
    .countdown-cell .num{
      font-size:1.9rem;
      line-height:1;
      font-weight:800;
      color:var(--accent);
      font-variant-numeric:tabular-nums;
      font-feature-settings:"tnum";
      margin-bottom:.28rem;
    }
    .countdown-cell .txt{
      color:var(--muted);
      font-size:.88rem;
    }
    .countdown-cta{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:.7rem;
      flex-wrap:wrap;
      margin-top:1rem;
    }
    .countdown-cta .note{
      color:var(--muted);
      font-size:.92rem;
    }
    .two-col{
      display:grid;
      grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);
      gap:1.25rem;
      align-items:start;
    }
    .feature-board,
    .entry-board,
    .feed-board,
    .subscribe-board,
    .faq-board,
    .cta-board{
      border:1px solid var(--border);
      border-radius:var(--radius);
      background:rgba(255,255,255,.78);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .panel-head{
      padding:1.1rem 1.1rem .8rem;
      border-bottom:1px solid rgba(31,27,29,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.65));
    }
    .panel-head .sub{
      color:var(--muted);
      font-size:.95rem;
      margin-top:.25rem;
      max-width:58rem;
    }
    .feature-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:.9rem;
      padding:1.1rem;
    }
    .feature-card,
    .entry-card,
    .loop-item,
    .summary-card{
      border:1px solid rgba(31,27,29,.1);
      border-radius:8px;
      background:#fff;
      box-shadow:0 8px 22px rgba(31,27,29,.04);
    }
    .feature-card{
      padding:1rem;
      min-height:160px;
    }
    .feature-card .flag,
    .entry-card .flag,
    .loop-item .flag{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      font-size:.8rem;
      color:var(--accent);
      margin-bottom:.7rem;
      font-weight:800;
    }
    .feature-card p,
    .entry-card p,
    .loop-item p{
      color:var(--muted);
      margin-bottom:.9rem;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:.45rem;
      margin-top:auto;
    }
    .tag-pill{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.32rem .58rem;
      border-radius:8px;
      border:1px solid rgba(31,27,29,.1);
      background:rgba(250,247,242,.9);
      color:var(--text);
      font-size:.82rem;
      line-height:1.1;
    }
    .feature-card .actions,
    .entry-card .actions,
    .loop-item .actions{
      margin-top:1rem;
      display:flex;
      gap:.6rem;
      flex-wrap:wrap;
    }
    .feature-list{
      padding:1.1rem;
    }
    .feature-list ul{
      margin:0;
      list-style:none;
    }
    .feature-list li{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:.9rem;
      padding:.95rem 0;
      border-top:1px solid rgba(31,27,29,.08);
    }
    .feature-list li:first-child{
      border-top:none;
      padding-top:0;
    }
    .feature-list .idx{
      width:32px;height:32px;border-radius:8px;
      display:inline-flex;align-items:center;justify-content:center;
      background:rgba(179,38,74,.1);
      color:var(--accent);
      font-weight:800;
      flex:0 0 auto;
    }
    .feature-list h3{
      margin-bottom:.25rem;
      font-size:1.06rem;
    }
    .feature-list p{
      color:var(--muted);
      margin-bottom:.55rem;
    }
    .side-note{
      border:1px solid rgba(31,27,29,.1);
      border-radius:8px;
      background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,247,242,.92));
      padding:1rem;
      margin-top:1rem;
    }
    .side-note h3{
      font-size:1.03rem;
    }
    .side-note p{
      color:var(--muted);
      margin-bottom:.8rem;
    }
    .subscribe-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:1rem;
      padding:1.1rem;
    }
    .subscribe-form{
      padding:1rem;
      border:1px solid rgba(31,27,29,.1);
      border-radius:8px;
      background:#fff;
    }
    .form-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:.85rem;
    }
    .field-group{
      margin-bottom:.9rem;
    }
    .field-group label{
      display:block;
      font-size:.92rem;
      font-weight:700;
      margin-bottom:.35rem;
      color:var(--text);
    }
    .field-group input,
    .field-group select,
    .field-group textarea{
      width:100%;
      min-height:46px;
      border-radius:8px;
      border:1px solid rgba(31,27,29,.16);
      background:#fff;
      color:var(--text);
      padding:.7rem .85rem;
      transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    }
    .field-group textarea{
      min-height:88px;
      resize:vertical;
    }
    .field-group input:focus,
    .field-group select:focus,
    .field-group textarea:focus{
      border-color:rgba(179,38,74,.45);
      box-shadow:0 0 0 4px rgba(179,38,74,.1);
      outline:none;
      background:#fff;
    }
    .inline-options{
      display:flex;
      flex-wrap:wrap;
      gap:.7rem 1rem;
      margin:.1rem 0 1rem;
    }
    .check-item,
    .radio-item{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      color:var(--muted);
      font-size:.92rem;
      margin:0;
    }
    .check-item input,
    .radio-item input{
      margin:0;
      width:16px;height:16px;
      accent-color:var(--accent);
    }
    .form-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.75rem;
      align-items:center;
    }
    .form-status{
      margin-top:.85rem;
      padding:.78rem .86rem;
      border-radius:8px;
      border:1px solid rgba(31,27,29,.1);
      background:rgba(250,247,242,.9);
      color:var(--muted);
      font-size:.92rem;
    }
    .form-status.success{
      border-color:rgba(179,38,74,.18);
      background:rgba(179,38,74,.08);
      color:var(--accent);
    }
    .subscribe-aside{
      padding:1rem;
      border:1px solid rgba(31,27,29,.1);
      border-radius:8px;
      background:linear-gradient(180deg, rgba(91,59,88,.06), rgba(196,154,90,.08));
    }
    .subscribe-aside h3{
      margin-bottom:.7rem;
    }
    .subscribe-aside .info-list{
      list-style:none;
      margin:0;
    }
    .subscribe-aside .info-list li{
      display:flex;
      gap:.65rem;
      align-items:flex-start;
      padding:.6rem 0;
      border-top:1px solid rgba(31,27,29,.08);
      color:var(--muted);
    }
    .subscribe-aside .info-list li:first-child{border-top:none;padding-top:0}
    .subscribe-aside .info-list .mark{
      color:var(--accent);
      font-weight:800;
      min-width:1.2rem;
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:.9rem;
      padding:1.1rem;
    }
    .entry-card{
      padding:1rem;
    }
    .entry-card .meta{
      display:flex;
      justify-content:space-between;
      gap:1rem;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:.86rem;
      margin-bottom:.55rem;
    }
    .entry-card .meta strong{
      color:var(--text);
    }
    .entry-card.highlight{
      background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,247,242,.94));
      border-color:rgba(179,38,74,.18);
    }
    .entry-card .status{
      color:var(--accent);
      font-weight:800;
    }
    .loop-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:1rem;
      padding:1.1rem;
    }
    .loop-list{
      display:flex;
      flex-direction:column;
      gap:.8rem;
    }
    .loop-item{
      padding:1rem;
      display:grid;
      grid-template-columns:auto 1fr;
      gap:1rem;
      align-items:start;
    }
    .loop-index{
      width:38px;height:38px;border-radius:8px;
      display:flex;align-items:center;justify-content:center;
      background:rgba(179,38,74,.1);
      color:var(--accent);
      font-weight:800;
      font-variant-numeric:tabular-nums;
    }
    .loop-item .content{
      min-width:0;
    }
    .loop-item h3{
      margin-bottom:.35rem;
    }
    .loop-item .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
      color:var(--muted);
      font-size:.84rem;
      margin-bottom:.45rem;
    }
    .loop-item .meta-line .dot{
      width:4px;height:4px;border-radius:50%;background:rgba(31,27,29,.24);align-self:center;
    }
    .loop-side{
      padding:1rem;
      border:1px solid rgba(31,27,29,.1);
      border-radius:8px;
      background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(250,247,242,.88));
      display:flex;
      flex-direction:column;
      gap:.85rem;
    }
    .summary-card{
      padding:1rem;
    }
    .summary-card h3{
      margin-bottom:.45rem;
    }
    .summary-card p{
      margin-bottom:.7rem;
      color:var(--muted);
    }
    .mini-link-list{
      list-style:none;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:.55rem;
    }
    .mini-link-list a{
      display:flex;
      justify-content:space-between;
      gap:1rem;
      align-items:center;
      padding:.68rem .75rem;
      border-radius:8px;
      border:1px solid rgba(31,27,29,.08);
      background:#fff;
      font-size:.92rem;
    }
    .mini-link-list a:hover{
      border-color:rgba(179,38,74,.22);
      box-shadow:0 10px 20px rgba(31,27,29,.05);
      transform:translateY(-1px);
    }
    .faq-board{
      padding:1.1rem;
    }
    .accordion{
      background:transparent;
      border:none;
    }
    .accordion-item{
      border:1px solid rgba(31,27,29,.1);
      border-radius:8px;
      overflow:hidden;
      margin-bottom:.8rem;
      background:#fff;
    }
    .accordion-title{
      font-size:1rem;
      color:var(--text);
      border:none;
      background:#fff;
      padding:1rem 1rem 1rem 3rem;
      line-height:1.45;
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:rgba(179,38,74,.04);
      color:var(--text);
    }
    .accordion-title:before{
      color:var(--accent);
      left:1rem;
      top:50%;
      transform:translateY(-50%);
      font-size:1.1rem;
      margin-right:0;
    }
    .accordion-content{
      border:none;
      padding:0 1rem 1rem 3rem;
      color:var(--muted);
    }
    .bottom-cta{
      padding:1.15rem;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
    }
    .bottom-cta .cta-copy{
      max-width:48rem;
    }
    .bottom-cta h2{
      margin-bottom:.35rem;
    }
    .bottom-cta p{
      margin-bottom:0;
      color:var(--muted);
    }
    footer{
      background:var(--panel-strong);
      color:rgba(255,255,255,.86);
      margin-top:2rem;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .footer-inner{
      max-width:1180px;
      margin:0 auto;
      padding:2rem 1rem 2.3rem;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:1rem;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      flex-direction:column;
      gap:.7rem;
    }
    .footer-brand .brand{
      color:#fff;
    }
    .footer-brand p{
      color:rgba(255,255,255,.72);
      max-width:40rem;
      margin:0;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
      justify-content:flex-end;
    }
    .footer-links a{
      color:#fff;
      padding:.42rem .65rem;
      border-radius:8px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.04);
      font-size:.92rem;
    }
    .footer-links a:hover{
      background:rgba(179,38,74,.22);
      border-color:rgba(179,38,74,.35);
    }
    .footer-meta{
      margin-top:1rem;
      padding-top:1rem;
      border-top:1px solid rgba(255,255,255,.1);
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:.5rem 1rem;
      color:rgba(255,255,255,.62);
      font-size:.9rem;
    }
    .reveal{
      border-radius:var(--radius);
      border:1px solid rgba(31,27,29,.1);
      box-shadow:var(--shadow-strong);
      background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,247,242,.98));
      max-width:760px;
    }
    .reveal h3{
      margin-bottom:.6rem;
    }
    .reveal .quick-links{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:.75rem;
      margin-top:1rem;
    }
    .reveal .quick-links a{
      padding:.85rem .9rem;
      border:1px solid rgba(31,27,29,.1);
      border-radius:8px;
      background:#fff;
      display:flex;
      justify-content:space-between;
      gap:1rem;
      align-items:center;
    }
    .reveal .quick-links a:hover{
      border-color:rgba(179,38,74,.22);
      transform:translateY(-1px);
    }
    .reveal .reveal-actions{
      margin-top:1rem;
      display:flex;
      flex-wrap:wrap;
      gap:.65rem;
    }
    .tiny-note{
      color:var(--muted);
      font-size:.9rem;
    }
    @media print{
      .site-header,
      .reveal,
      .button{display:none!important}
      body{background:#fff}
      .section{padding:1rem 0}
    }
    @media (max-width: 1024px){
      .hero-grid,
      .two-col,
      .subscribe-grid,
      .loop-grid,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .feature-grid,
      .entry-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .hero-art{min-height:380px}
      .countdown-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-links{justify-content:flex-start}
    }
    @media (max-width: 768px){
      .page{padding-top:68px}
      .hero-inner{padding-top:3.6rem}
      h1{font-size:clamp(1.9rem,7vw,2.5rem)}
      h2{font-size:clamp(1.35rem,5vw,1.8rem)}
      .feature-grid,
      .entry-grid,
      .reveal .quick-links{
        grid-template-columns:1fr;
      }
      .form-row{
        grid-template-columns:1fr;
      }
      .countdown-cell .num{font-size:1.55rem}
      .hero-actions .button,
      .countdown-cta .button,
      .bottom-cta .button,
      .form-actions .button{
        width:100%;
        justify-content:center;
      }
      .site-nav{
        padding:.8rem 0 0;
      }
      .top-bar-right{
        flex-direction:column;
        align-items:stretch;
        gap:.75rem;
        padding-top:.7rem;
      }
      .nav-actions{
        flex-wrap:wrap;
      }
      .nav-actions .button{
        flex:1 1 auto;
      }
      .accordion-title{
        padding-left:2.75rem;
      }
      .accordion-content{
        padding-left:2.75rem;
      }
    }
    @media (max-width: 520px){
      .section{
        padding:1.5rem 0;
      }
      .hero{
        padding-bottom:1.4rem;
      }
      .hero-art{
        min-height:320px;
      }
      .countdown-grid{
        gap:.55rem;
      }
      .countdown-cell{
        min-height:84px;
        padding:.72rem .65rem;
      }
      .countdown-cell .txt{
        font-size:.82rem;
      }
      .loop-item{
        grid-template-columns:1fr;
      }
      .loop-index{
        width:34px;height:34px;
      }
      .mini-panel li{
        flex-direction:column;
        gap:.18rem;
      }
      .mini-panel .tag{
        white-space:normal;
      }
      .footer-meta{
        flex-direction:column;
      }
    }

/* roulang page: category1 */
:root {
      --paper: #faf7f2;
      --paper-soft: #f7f3ec;
      --ink: #1f1b1d;
      --muted: #70656a;
      --line: rgba(31, 27, 29, .12);
      --primary: #b3264a;
      --primary-dark: #8f1835;
      --violet: #5b3b58;
      --gold: #c49a5a;
      --white: #fffdf8;
      --shadow: 0 10px 30px rgba(31, 27, 29, .08);
      --shadow-strong: 0 18px 50px rgba(31, 27, 29, .14);
      --radius: 8px;
      --nav-height: 76px;
      --container: 1180px;
    }

    * {
      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 14% 8%, rgba(179, 38, 74, .08), transparent 28%),
        linear-gradient(180deg, var(--paper), var(--paper-soft) 58%, #fffaf1);
      line-height: 1.75;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button,
    .button {
      min-height: 44px;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .section {
      padding: 74px 0;
    }

    .section.compact {
      padding: 48px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .section-kicker::before {
      content: "";
      width: 26px;
      height: 2px;
      background: var(--gold);
    }

    h1,
    h2,
    h3,
    h4,
    p {
      margin-top: 0;
    }

    h1 {
      font-size: 48px;
      line-height: 1.14;
      margin-bottom: 18px;
      font-weight: 800;
      max-width: 840px;
    }

    h2 {
      font-size: 31px;
      line-height: 1.25;
      margin-bottom: 14px;
      font-weight: 800;
    }

    h3 {
      font-size: 22px;
      line-height: 1.35;
      margin-bottom: 10px;
      font-weight: 750;
    }

    p {
      color: var(--muted);
      margin-bottom: 14px;
    }

    .site-header {
      position: fixed;
      z-index: 50;
      top: 16px;
      left: 0;
      right: 0;
      width: 100%;
      padding: 0 18px;
      transition: top .25s ease, transform .25s ease;
    }

    .site-header.is-scrolled {
      top: 8px;
    }

    .title-bar,
    .top-bar {
      max-width: var(--container);
      margin: 0 auto;
      border: 1px solid rgba(255, 253, 248, .58);
      border-radius: var(--radius);
      background: rgba(255, 253, 248, .72);
      backdrop-filter: blur(16px);
      box-shadow: 0 12px 38px rgba(31, 27, 29, .09);
      color: var(--ink);
    }

    .site-header.is-scrolled .title-bar,
    .site-header.is-scrolled .top-bar {
      background: rgba(255, 253, 248, .96);
      border-color: rgba(31, 27, 29, .1);
      box-shadow: 0 14px 34px rgba(31, 27, 29, .14);
    }

    .title-bar {
      min-height: 62px;
      padding: 0 14px;
      justify-content: space-between;
    }

    .top-bar {
      padding: 0;
    }

    .nav-shell {
      width: 100%;
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0 14px 0 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 850;
      line-height: 1.2;
      color: var(--ink);
      max-width: 300px;
    }

    .brand-mark {
      width: 32px;
      height: 32px;
      border-radius: 7px;
      position: relative;
      flex: 0 0 auto;
      background:
        linear-gradient(135deg, var(--primary), var(--violet));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42), 0 8px 20px rgba(179, 38, 74, .22);
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px 6px;
      border-top: 2px solid rgba(255, 253, 248, .9);
      border-bottom: 2px solid rgba(255, 253, 248, .75);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-menu a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 12px;
      border-radius: 7px;
      color: rgba(31, 27, 29, .78);
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-menu a:hover,
    .nav-menu a.is-active {
      color: var(--primary);
      background: rgba(179, 38, 74, .08);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: nowrap;
    }

    .button {
      border-radius: 7px;
      font-weight: 750;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
      margin: 0;
      line-height: 1.1;
    }

    .button.primary {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 10px 20px rgba(179, 38, 74, .18);
    }

    .button.primary:hover,
    .button.primary:focus {
      background: var(--primary-dark);
      color: var(--white);
      transform: translateY(-1px);
      box-shadow: 0 14px 26px rgba(179, 38, 74, .24);
    }

    .button.secondary,
    .button.ghost {
      background: rgba(255, 253, 248, .55);
      color: var(--ink);
      border-color: var(--line);
    }

    .button.secondary:hover,
    .button.secondary:focus,
    .button.ghost:hover,
    .button.ghost:focus {
      background: rgba(179, 38, 74, .08);
      border-color: rgba(179, 38, 74, .3);
      color: var(--primary);
      transform: translateY(-1px);
    }

    .btn-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 6px;
    }

    .menu-icon.dark::after {
      background: var(--ink);
      box-shadow: 0 7px 0 var(--ink), 0 14px 0 var(--ink);
    }

    .page-hero {
      position: relative;
      min-height: 620px;
      padding: 138px 0 78px;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(120deg, rgba(31, 27, 29, .72), rgba(91, 59, 88, .64) 44%, rgba(179, 38, 74, .46)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1500' height='760' viewBox='0 0 1500 760'%3E%3Crect width='1500' height='760' fill='%23f6efe6'/%3E%3Cg opacity='.52'%3E%3Crect x='180' y='130' width='410' height='240' rx='8' fill='%23fffdf8' stroke='%23d8c8b5'/%3E%3Crect x='640' y='90' width='520' height='116' rx='8' fill='%23fff8ee' stroke='%23d7b08a'/%3E%3Crect x='710' y='260' width='430' height='250' rx='8' fill='%23fffdf8' stroke='%23d8c8b5'/%3E%3Crect x='230' y='420' width='360' height='94' rx='8' fill='%23fff8ee' stroke='%23d7b08a'/%3E%3C/g%3E%3Cg opacity='.72'%3E%3Ccircle cx='256' cy='189' r='36' fill='%23b3264a'/%3E%3Crect x='314' y='164' width='210' height='14' rx='7' fill='%235b3b58'/%3E%3Crect x='314' y='195' width='150' height='10' rx='5' fill='%23c49a5a'/%3E%3Crect x='684' y='129' width='190' height='12' rx='6' fill='%23b3264a'/%3E%3Crect x='684' y='158' width='370' height='10' rx='5' fill='%238a7a75'/%3E%3Crect x='760' y='320' width='270' height='14' rx='7' fill='%235b3b58'/%3E%3Crect x='760' y='356' width='330' height='10' rx='5' fill='%238a7a75'/%3E%3Crect x='760' y='388' width='190' height='10' rx='5' fill='%23b3264a'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(31, 27, 29, .08), rgba(250, 247, 242, .95) 92%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      color: var(--white);
    }

    .creator-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .avatar {
      width: 74px;
      height: 74px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      font-size: 30px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--gold));
      box-shadow: 0 12px 34px rgba(31, 27, 29, .28);
      border: 3px solid rgba(255, 253, 248, .75);
    }

    .creator-name {
      margin: 0;
      color: rgba(255, 253, 248, .88);
      font-weight: 700;
    }

    .hero-content h1,
    .hero-content p {
      color: var(--white);
      text-shadow: 0 10px 24px rgba(31, 27, 29, .25);
    }

    .hero-summary {
      max-width: 760px;
      font-size: 18px;
      color: rgba(255, 253, 248, .86) !important;
      margin-bottom: 26px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .hero-actions .button.secondary {
      background: rgba(255, 253, 248, .12);
      border-color: rgba(255, 253, 248, .4);
      color: var(--white);
    }

    .hero-actions .button.secondary:hover {
      background: rgba(255, 253, 248, .22);
      color: var(--white);
    }

    .hero-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .data-badge,
    .tag,
    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 750;
      line-height: 1.2;
      padding: 7px 10px;
      border: 1px solid rgba(255, 253, 248, .28);
      background: rgba(255, 253, 248, .12);
      color: var(--white);
      backdrop-filter: blur(10px);
    }

    .tag {
      color: var(--primary);
      border-color: rgba(179, 38, 74, .18);
      background: rgba(179, 38, 74, .08);
      backdrop-filter: none;
    }

    .status-pill {
      color: #2f2418;
      background: rgba(196, 154, 90, .18);
      border-color: rgba(196, 154, 90, .36);
      backdrop-filter: none;
    }

    .hero-note-card {
      position: relative;
      z-index: 2;
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 253, 248, .35);
      background: rgba(255, 253, 248, .82);
      box-shadow: var(--shadow-strong);
      color: var(--ink);
      margin-top: 44px;
    }

    .hero-note-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .note-cell {
      background: rgba(255, 253, 248, .95);
      padding: 16px;
      min-height: 96px;
    }

    .note-cell strong {
      display: block;
      font-size: 23px;
      line-height: 1.15;
      margin-bottom: 7px;
      font-variant-numeric: tabular-nums;
    }

    .note-cell span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .filter-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px;
      border: 1px solid var(--line);
      background: rgba(255, 253, 248, .76);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      margin-bottom: 22px;
      flex-wrap: wrap;
    }

    .filter-group {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .filter-btn {
      min-height: 38px;
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--muted);
      border-radius: 7px;
      padding: 0 12px;
      cursor: pointer;
      font-weight: 700;
    }

    .filter-btn:hover,
    .filter-btn.is-active {
      color: var(--primary);
      border-color: rgba(179, 38, 74, .3);
      background: rgba(179, 38, 74, .08);
    }

    .search-inline {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: min(100%, 330px);
    }

    .search-inline input,
    .modal-search input,
    .subscribe-form input,
    .subscribe-form select {
      height: 48px;
      border-radius: 7px;
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: none;
      margin: 0;
      color: var(--ink);
    }

    .search-inline input:focus,
    .modal-search input:focus,
    .subscribe-form input:focus,
    .subscribe-form select:focus {
      border-color: rgba(179, 38, 74, .72);
      box-shadow: 0 0 0 4px rgba(179, 38, 74, .1);
      background: #fff;
    }

    .intro-callout {
      border: 1px solid var(--line);
      border-left: 4px solid var(--primary);
      background: rgba(255, 253, 248, .78);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    .content-grid {
      align-items: flex-start;
    }

    .update-list {
      display: grid;
      gap: 14px;
    }

    .update-card {
      display: grid;
      grid-template-columns: 126px minmax(0, 1fr);
      gap: 18px;
      padding: 18px;
      border: 1px solid var(--line);
      background: rgba(255, 253, 248, .82);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .update-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-strong);
      border-color: rgba(179, 38, 74, .22);
    }

    .update-date {
      border-right: 1px solid var(--line);
      padding-right: 16px;
    }

    .update-date strong {
      display: block;
      font-size: 26px;
      line-height: 1;
      font-variant-numeric: tabular-nums;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .update-date span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .update-body {
      min-width: 0;
    }

    .update-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin: 12px 0 14px;
    }

    .update-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .text-link:hover {
      color: var(--primary-dark);
    }

    .side-stack {
      display: grid;
      gap: 16px;
      position: sticky;
      top: 98px;
    }

    .side-card,
    .newsletter-card,
    .steps-card,
    .faq-card,
    .cta-panel {
      border: 1px solid var(--line);
      background: rgba(255, 253, 248, .84);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    .side-card h3,
    .newsletter-card h3,
    .steps-card h3 {
      font-size: 20px;
    }

    .mini-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 12px;
    }

    .mini-list li {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 10px;
      color: var(--muted);
      font-size: 15px;
    }

    .mini-list b {
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 7px;
      background: rgba(179, 38, 74, .08);
      color: var(--primary);
      font-size: 13px;
    }

    .subscribe-strip {
      border: 1px solid rgba(196, 154, 90, .34);
      background:
        linear-gradient(135deg, rgba(255, 253, 248, .9), rgba(255, 247, 234, .86)),
        repeating-linear-gradient(0deg, rgba(31, 27, 29, .03) 0 1px, transparent 1px 12px);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
    }

    .subscribe-form {
      display: grid;
      grid-template-columns: minmax(210px, 1.25fr) 170px auto;
      gap: 10px;
      align-items: center;
      margin-top: 14px;
    }

    .check-line {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: var(--muted);
      font-size: 14px;
      margin-top: 12px;
    }

    .check-line input {
      margin-top: 7px;
      accent-color: var(--primary);
    }

    .form-status {
      display: none;
      margin-top: 12px;
      padding: 10px 12px;
      border-radius: 7px;
      font-weight: 700;
      font-size: 14px;
    }

    .form-status.is-success {
      display: block;
      color: #315c38;
      background: rgba(72, 141, 83, .12);
      border: 1px solid rgba(72, 141, 83, .24);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .step-item {
      border: 1px solid var(--line);
      background: rgba(255, 253, 248, .8);
      border-radius: var(--radius);
      padding: 18px;
      min-height: 180px;
      box-shadow: var(--shadow);
    }

    .step-num {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      margin-bottom: 14px;
      border-radius: 7px;
      color: var(--white);
      background: var(--violet);
      font-weight: 850;
      font-variant-numeric: tabular-nums;
    }

    .accordion {
      background: transparent;
      border: 0;
    }

    .accordion-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 253, 248, .84);
      box-shadow: var(--shadow);
      overflow: hidden;
      margin-bottom: 12px;
    }

    .accordion-title {
      border: 0;
      color: var(--ink);
      font-weight: 800;
      font-size: 17px;
      padding: 18px 48px 18px 18px;
      background: transparent;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: rgba(179, 38, 74, .06);
      color: var(--primary);
    }

    .accordion-content {
      border: 0;
      border-top: 1px solid var(--line);
      background: rgba(255, 253, 248, .72);
      color: var(--muted);
      padding: 18px;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 22px;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(31, 27, 29, .96), rgba(91, 59, 88, .96));
      color: var(--white);
      border-color: rgba(255, 253, 248, .16);
      box-shadow: var(--shadow-strong);
    }

    .cta-panel p {
      color: rgba(255, 253, 248, .74);
      margin-bottom: 0;
    }

    .cta-panel h2 {
      color: var(--white);
    }

    footer {
      background: #1f1b1d;
      color: var(--white);
      padding: 54px 0 30px;
      border-top: 4px solid var(--primary);
    }

    .footer-inner {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(220px, .7fr);
      gap: 32px;
      align-items: start;
    }

    .footer-brand .brand {
      color: var(--white);
      margin-bottom: 14px;
    }

    .footer-brand p {
      color: rgba(255, 253, 248, .68);
      max-width: 620px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px 18px;
    }

    .footer-links a {
      color: rgba(255, 253, 248, .76);
      font-weight: 700;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-meta {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 28px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 253, 248, .14);
      color: rgba(255, 253, 248, .56);
      font-size: 14px;
    }

    .reveal {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--paper);
      box-shadow: var(--shadow-strong);
      padding: 24px;
    }

    .modal-search {
      display: grid;
      gap: 12px;
    }

    .close-button {
      color: var(--ink);
    }

    @media (max-width: 1024px) {
      h1 {
        font-size: 40px;
      }

      .nav-actions .button.ghost {
        display: none;
      }

      .hero-note-grid,
      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .subscribe-form {
        grid-template-columns: 1fr 160px;
      }

      .subscribe-form .button {
        grid-column: 1 / -1;
      }

      .side-stack {
        position: static;
      }
    }

    @media (max-width: 767px) {
      .site-header {
        top: 10px;
        padding: 0 12px;
      }

      .top-bar {
        border-top: 0;
      }

      .nav-shell {
        min-height: auto;
        align-items: stretch;
        flex-direction: column;
        padding: 12px;
        gap: 12px;
      }

      .nav-menu {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
      }

      .nav-menu a {
        justify-content: space-between;
        width: 100%;
      }

      .nav-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
      }

      .nav-actions .button {
        width: 100%;
      }

      .page-hero {
        min-height: auto;
        padding: 118px 0 52px;
      }

      h1 {
        font-size: 34px;
      }

      h2 {
        font-size: 27px;
      }

      .hero-summary {
        font-size: 16px;
      }

      .hero-actions .button {
        width: 100%;
      }

      .hero-note-grid,
      .steps-grid {
        grid-template-columns: 1fr;
      }

      .filter-bar,
      .search-inline,
      .search-inline input {
        width: 100%;
      }

      .filter-group {
        width: 100%;
      }

      .filter-btn {
        flex: 1 1 calc(50% - 8px);
      }

      .update-card {
        grid-template-columns: 1fr;
      }

      .update-date {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-right: 0;
        padding-bottom: 12px;
      }

      .subscribe-form {
        grid-template-columns: 1fr;
      }

      .cta-panel {
        grid-template-columns: 1fr;
      }

      .cta-panel .button {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      .container,
      .footer-inner {
        width: min(100% - 24px, var(--container));
      }

      .section {
        padding: 54px 0;
      }

      .creator-row {
        gap: 12px;
      }

      .avatar {
        width: 62px;
        height: 62px;
        font-size: 25px;
      }

      .hero-badges {
        display: grid;
        grid-template-columns: 1fr;
      }

      .data-badge {
        width: 100%;
      }

      .note-cell,
      .side-card,
      .newsletter-card,
      .steps-card,
      .faq-card,
      .cta-panel,
      .subscribe-strip,
      .update-card {
        padding: 16px;
      }
    }

/* roulang page: category2 */
:root {
      --bg: #faf7f2;
      --bg-soft: #f7f3ec;
      --paper: #fffdf8;
      --paper-strong: #ffffff;
      --text: #1f1b1d;
      --muted: #6f6267;
      --faint: #95878c;
      --primary: #b3264a;
      --primary-dark: #941d3a;
      --violet: #5b3b58;
      --gold: #c49a5a;
      --line: rgba(31, 27, 29, .12);
      --line-strong: rgba(31, 27, 29, .2);
      --shadow: 0 10px 30px rgba(31, 27, 29, .08);
      --shadow-strong: 0 18px 44px rgba(31, 27, 29, .14);
      --radius: 8px;
      --container: 1180px;
      --nav-height: 76px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 8%, rgba(179, 38, 74, .08), transparent 28%),
        linear-gradient(180deg, #f6efe7 0%, var(--bg) 42%, #fffaf3 100%);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 16px;
      line-height: 1.75;
      letter-spacing: 0;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

    a:hover,
    a:focus {
      color: var(--primary);
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button,
    .button {
      min-height: 44px;
    }

    input:focus,
    select:focus,
    button:focus,
    a:focus {
      outline: 3px solid rgba(179, 38, 74, .18);
      outline-offset: 2px;
    }

    .page {
      overflow: hidden;
    }

    .site-header {
      position: fixed;
      z-index: 50;
      top: 16px;
      left: 0;
      right: 0;
      padding: 0 20px;
      pointer-events: none;
    }

    .title-bar,
    .top-bar {
      pointer-events: auto;
      max-width: var(--container);
      margin: 0 auto;
      border: 1px solid rgba(255, 255, 255, .58);
      border-radius: var(--radius);
      background: rgba(255, 252, 246, .78);
      box-shadow: 0 14px 40px rgba(31, 27, 29, .12);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .site-header.is-scrolled .title-bar,
    .site-header.is-scrolled .top-bar {
      background: rgba(255, 253, 248, .96);
      border-color: var(--line);
      box-shadow: var(--shadow-strong);
    }

    .top-bar {
      padding: 10px 12px;
    }

    .title-bar {
      min-height: 60px;
      padding: 10px 14px;
      justify-content: space-between;
    }

    .nav-shell {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-weight: 800;
      line-height: 1.2;
      white-space: nowrap;
    }

    .brand-mark {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(179, 38, 74, .95), rgba(91, 59, 88, .92)),
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .6), transparent 34%);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42), 0 8px 18px rgba(179, 38, 74, .24);
      position: relative;
      flex: 0 0 auto;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px 6px;
      border-top: 2px solid rgba(255, 252, 246, .92);
      border-bottom: 2px solid rgba(255, 252, 246, .72);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      list-style: none;
    }

    .nav-menu a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 8px 12px;
      border-radius: 8px;
      color: rgba(31, 27, 29, .78);
      font-size: 14px;
      font-weight: 700;
    }

    .nav-menu a:hover,
    .nav-menu a.is-active {
      color: var(--primary);
      background: rgba(179, 38, 74, .08);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: nowrap;
    }

    .button {
      border-radius: 8px;
      font-weight: 800;
      letter-spacing: 0;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button.primary {
      background: var(--primary);
      color: #fffaf3;
      border: 1px solid var(--primary);
      box-shadow: 0 10px 22px rgba(179, 38, 74, .22);
    }

    .button.primary:hover,
    .button.primary:focus {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #fffaf3;
    }

    .button.secondary {
      background: rgba(91, 59, 88, .1);
      border: 1px solid rgba(91, 59, 88, .18);
      color: var(--violet);
    }

    .button.secondary:hover,
    .button.secondary:focus {
      background: rgba(91, 59, 88, .16);
      color: var(--violet);
    }

    .button.ghost {
      background: rgba(255, 255, 255, .42);
      border: 1px solid var(--line);
      color: var(--text);
    }

    .button.ghost:hover,
    .button.ghost:focus {
      background: rgba(255, 255, 255, .76);
      color: var(--primary);
      border-color: rgba(179, 38, 74, .28);
    }

    .btn-icon {
      display: inline-flex;
      margin-right: 6px;
      line-height: 1;
    }

    .hero {
      position: relative;
      padding: 138px 0 74px;
      background:
        linear-gradient(135deg, rgba(31, 27, 29, .88), rgba(91, 59, 88, .72)),
        linear-gradient(90deg, rgba(179, 38, 74, .35), transparent 58%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='760' viewBox='0 0 1400 760'%3E%3Crect width='1400' height='760' fill='%23f8f0e5'/%3E%3Cg opacity='.82'%3E%3Crect x='145' y='126' width='435' height='86' rx='8' fill='%23fffdf8'/%3E%3Crect x='612' y='126' width='256' height='86' rx='8' fill='%23fffdf8'/%3E%3Crect x='899' y='126' width='356' height='86' rx='8' fill='%23fffdf8'/%3E%3Crect x='145' y='250' width='314' height='286' rx='8' fill='%23fffdf8'/%3E%3Crect x='493' y='250' width='762' height='90' rx='8' fill='%23fffdf8'/%3E%3Crect x='493' y='374' width='762' height='90' rx='8' fill='%23fffdf8'/%3E%3Crect x='493' y='498' width='762' height='90' rx='8' fill='%23fffdf8'/%3E%3C/g%3E%3Cpath d='M170 184h258M645 184h132M935 184h210M530 306h510M530 430h420M530 554h470' stroke='%23b3264a' stroke-width='8' stroke-linecap='round' opacity='.58'/%3E%3Cpath d='M170 294h118M170 330h210M170 366h170' stroke='%235b3b58' stroke-width='7' stroke-linecap='round' opacity='.48'/%3E%3Ccircle cx='1190' cy='620' r='92' fill='%23c49a5a' opacity='.18'/%3E%3C/svg%3E") center/cover no-repeat;
      color: #fffaf3;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 90px;
      background: linear-gradient(180deg, transparent, var(--bg));
      pointer-events: none;
    }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hero-grid {
      align-items: end;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 7px 11px;
      border: 1px solid rgba(255, 250, 243, .24);
      border-radius: 8px;
      background: rgba(255, 250, 243, .1);
      color: rgba(255, 250, 243, .92);
      font-size: 13px;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 5px rgba(196, 154, 90, .16);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 780px;
      margin-bottom: 18px;
      font-size: 50px;
      line-height: 1.14;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 680px;
      color: rgba(255, 250, 243, .82);
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 26px;
    }

    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      max-width: 760px;
    }

    .trust-strip span {
      padding: 8px 11px;
      border-radius: 8px;
      background: rgba(255, 250, 243, .12);
      border: 1px solid rgba(255, 250, 243, .2);
      color: rgba(255, 250, 243, .86);
      font-size: 13px;
      font-weight: 700;
    }

    .hero-panel {
      padding: 20px;
      border: 1px solid rgba(255, 250, 243, .22);
      border-radius: var(--radius);
      background: rgba(255, 250, 243, .13);
      backdrop-filter: blur(12px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, .2);
    }

    .panel-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
      font-weight: 900;
      color: #fffaf3;
    }

    .panel-title .status {
      color: #ffe5c0;
      font-size: 13px;
    }

    .hero-checklist {
      margin: 0;
      list-style: none;
    }

    .hero-checklist li {
      display: grid;
      grid-template-columns: 30px 1fr;
      gap: 10px;
      padding: 12px 0;
      border-top: 1px solid rgba(255, 250, 243, .16);
      color: rgba(255, 250, 243, .84);
      font-size: 14px;
    }

    .hero-checklist li:first-child {
      border-top: 0;
    }

    .check-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 8px;
      color: #fffaf3;
      background: rgba(179, 38, 74, .68);
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-weight: 900;
    }

    main {
      background: var(--bg);
    }

    .section {
      padding: 76px 0;
    }

    .section.tight {
      padding: 54px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 30px;
    }

    .section-kicker {
      color: var(--primary);
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    h2 {
      margin-bottom: 12px;
      font-size: 32px;
      line-height: 1.22;
      font-weight: 900;
      color: var(--text);
    }

    h3 {
      font-size: 21px;
      line-height: 1.35;
      font-weight: 900;
      color: var(--text);
    }

    .section-head p,
    .muted {
      color: var(--muted);
    }

    .filter-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: -28px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 253, 248, .86);
      box-shadow: var(--shadow);
      position: relative;
      z-index: 3;
    }

    .tag-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 5px 10px;
      border-radius: 8px;
      border: 1px solid var(--line);
      color: var(--muted);
      background: rgba(255, 255, 255, .62);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.3;
    }

    .tag.is-active,
    .badge.accent {
      color: var(--primary);
      border-color: rgba(179, 38, 74, .28);
      background: rgba(179, 38, 74, .08);
    }

    .search-mini {
      display: flex;
      gap: 8px;
      align-items: center;
      min-width: min(100%, 330px);
    }

    .search-mini input,
    .subscribe-form input,
    .subscribe-form select,
    .modal-search input {
      height: 48px;
      margin: 0;
      border-radius: 8px;
      border: 1px solid var(--line-strong);
      background: #fffdfa;
      box-shadow: none;
      color: var(--text);
    }

    .search-mini input:focus,
    .subscribe-form input:focus,
    .subscribe-form select:focus,
    .modal-search input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(179, 38, 74, .1);
    }

    .matrix-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 22px;
      align-items: start;
    }

    .entry-list {
      display: grid;
      gap: 14px;
    }

    .entry-card {
      display: grid;
      grid-template-columns: 112px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 8px 24px rgba(31, 27, 29, .06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(179, 38, 74, .26);
      box-shadow: var(--shadow);
    }

    .entry-date {
      min-height: 86px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 12px;
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(179, 38, 74, .1), rgba(196, 154, 90, .08));
      border: 1px solid rgba(179, 38, 74, .12);
    }

    .entry-date strong {
      display: block;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 22px;
      line-height: 1.1;
      color: var(--primary);
    }

    .entry-date span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .entry-card h3 {
      margin-bottom: 6px;
    }

    .entry-card p {
      margin-bottom: 10px;
      color: var(--muted);
    }

    .side-card,
    .paper-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 253, 248, .88);
      box-shadow: var(--shadow);
    }

    .side-card {
      padding: 20px;
      position: sticky;
      top: 104px;
    }

    .side-card h3 {
      margin-bottom: 10px;
    }

    .side-list {
      margin: 16px 0 0;
      padding: 0;
      list-style: none;
    }

    .side-list li {
      display: flex;
      gap: 10px;
      padding: 12px 0;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 14px;
    }

    .side-list i {
      color: var(--primary);
      margin-top: 4px;
    }

    .compare-band {
      background: #fffaf3;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .compare-card {
      padding: 22px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--paper-strong);
      box-shadow: 0 8px 22px rgba(31, 27, 29, .05);
    }

    .compare-card ul {
      margin: 16px 0 0;
      padding: 0;
      list-style: none;
    }

    .compare-card li {
      display: grid;
      grid-template-columns: 26px 1fr;
      gap: 10px;
      padding: 10px 0;
      border-top: 1px solid var(--line);
      color: var(--muted);
    }

    .compare-card li:first-child {
      border-top: 0;
    }

    .compare-card .tick {
      width: 26px;
      height: 26px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(179, 38, 74, .08);
      color: var(--primary);
      font-weight: 900;
    }

    .subscribe-strip {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 440px;
      gap: 24px;
      align-items: center;
      padding: 26px;
      border: 1px solid rgba(196, 154, 90, .28);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(247, 239, 229, .9)),
        repeating-linear-gradient(0deg, transparent 0, transparent 34px, rgba(196, 154, 90, .06) 35px);
      box-shadow: var(--shadow);
    }

    .subscribe-form {
      display: grid;
      gap: 10px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 138px;
      gap: 10px;
    }

    .checkline {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .checkline input {
      margin-top: 5px;
    }

    .form-note {
      min-height: 24px;
      margin: 0;
      color: var(--muted);
      font-size: 13px;
    }

    .form-note.success {
      color: #28764c;
    }

    .form-note.error {
      color: var(--primary-dark);
    }

    .faq-wrap {
      max-width: 880px;
      margin: 0 auto;
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 8px 22px rgba(31, 27, 29, .05);
      overflow: hidden;
    }

    .accordion-title {
      padding: 18px 52px 18px 18px;
      border: 0;
      color: var(--text);
      font-size: 16px;
      font-weight: 900;
      line-height: 1.45;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: rgba(179, 38, 74, .06);
      color: var(--primary);
    }

    :last-child:not(.is-active) > .accordion-title {
      border-bottom: 0;
    }

    .accordion-content {
      padding: 0 18px 18px;
      border: 0;
      color: var(--muted);
      background: transparent;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 20px;
      align-items: center;
      padding: 28px;
      border-radius: var(--radius);
      color: #fffaf3;
      background:
        linear-gradient(135deg, rgba(31, 27, 29, .96), rgba(91, 59, 88, .94)),
        linear-gradient(90deg, rgba(179, 38, 74, .26), transparent);
      box-shadow: var(--shadow-strong);
    }

    .cta-panel h2 {
      color: #fffaf3;
      margin-bottom: 8px;
    }

    .cta-panel p {
      margin: 0;
      color: rgba(255, 250, 243, .78);
    }

    footer {
      background: #1f1b1d;
      color: rgba(255, 250, 243, .76);
      padding: 46px 0 28px;
    }

    .footer-inner {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 30px;
      align-items: start;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 250, 243, .12);
    }

    footer .brand {
      color: #fffaf3;
      margin-bottom: 12px;
    }

    .footer-brand p {
      max-width: 580px;
      margin: 0;
      color: rgba(255, 250, 243, .66);
    }

    .footer-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-links a {
      color: rgba(255, 250, 243, .76);
      padding: 7px 0;
      border-bottom: 1px solid rgba(196, 154, 90, .34);
    }

    .footer-links a:hover {
      color: #fffaf3;
      border-color: var(--primary);
    }

    .footer-meta {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      padding-top: 20px;
      color: rgba(255, 250, 243, .56);
      font-size: 13px;
    }

    .reveal {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--paper);
      box-shadow: var(--shadow-strong);
    }

    .modal-search {
      display: grid;
      gap: 12px;
    }

    .close-button {
      color: var(--muted);
    }

    @media (max-width: 1024px) {
      .nav-shell {
        gap: 10px;
      }

      .nav-menu a {
        padding-inline: 9px;
      }

      .nav-actions .button.ghost {
        display: none;
      }

      h1 {
        font-size: 42px;
      }

      .matrix-wrap,
      .subscribe-strip {
        grid-template-columns: 1fr;
      }

      .side-card {
        position: static;
      }
    }

    @media (max-width: 767px) {
      .site-header {
        top: 10px;
        padding: 0 12px;
      }

      .top-bar {
        padding: 8px;
      }

      .nav-shell,
      .top-bar-left,
      .nav-actions,
      .nav-menu {
        width: 100%;
      }

      .nav-shell {
        display: block;
      }

      .nav-menu {
        display: grid;
        gap: 6px;
        padding: 8px 0;
      }

      .nav-menu a {
        width: 100%;
        justify-content: center;
      }

      .nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding-top: 8px;
      }

      .nav-actions .button {
        margin: 0;
        padding-inline: 8px;
      }

      .site-container,
      .footer-inner {
        width: min(100% - 28px, var(--container));
      }

      .hero {
        padding: 116px 0 54px;
      }

      h1 {
        font-size: 34px;
      }

      h2 {
        font-size: 27px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-actions .button {
        width: 100%;
        margin: 0;
      }

      .filter-bar {
        margin-top: -16px;
      }

      .search-mini {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
      }

      .entry-card {
        grid-template-columns: 1fr;
      }

      .entry-date {
        min-height: auto;
      }

      .entry-card .button {
        width: 100%;
        margin: 0;
      }

      .compare-grid,
      .form-row,
      .cta-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-panel .button {
        width: 100%;
        margin: 0;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      body {
        font-size: 15px;
      }

      .hero-panel,
      .subscribe-strip,
      .cta-panel,
      .compare-card {
        padding: 18px;
      }

      .trust-strip span,
      .tag,
      .badge {
        max-width: 100%;
        white-space: normal;
      }

      .accordion-title {
        padding-right: 42px;
      }
    }
