/* roulang page: index */
:root{
      --bg:#f6f1ea;
      --bg-soft:#fbf8f3;
      --bg-dark:#111111;
      --bg-dark-2:#171717;
      --surface:#ffffff;
      --surface-2:#f2ebe2;
      --line:#e5d9cc;
      --line-strong:#d7c6b3;
      --text:#1e1b18;
      --muted:#6f655d;
      --muted-2:#8a7f76;
      --brand:#ea1d2c;
      --brand-2:#ff5a1f;
      --accent:#ffb100;
      --accent-2:#ffdf7a;
      --good:#15803d;
      --shadow:0 16px 40px rgba(17,17,17,.10);
      --shadow-soft:0 10px 24px rgba(17,17,17,.08);
      --radius:8px;
      --radius-sm:6px;
      --container:1280px;
      --gap:24px;
      --section:88px;
      --section-mobile:60px;
      --focus:0 0 0 3px rgba(234,29,44,.18);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        linear-gradient(rgba(17,17,17,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,17,17,.028) 1px, transparent 1px),
        var(--bg);
      background-size:32px 32px;
      letter-spacing:0;
      line-height:1.62;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .18s ease}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    :focus-visible{outline:none;box-shadow:var(--focus)}
    .container{
      width:min(calc(100% - 32px), var(--container));
      margin:0 auto;
    }

    .off-canvas-wrapper{background:transparent}
    .off-canvas.position-left{
      width:min(88vw, 360px);
      background:var(--bg-dark);
      color:#fff;
      border-right:1px solid rgba(255,255,255,.08);
    }
    .mobile-drawer{
      padding:20px 18px 24px;
    }
    .mobile-brand{
      font-size:18px;
      font-weight:800;
      line-height:1.15;
      margin-bottom:18px;
    }
    .mobile-note{
      color:rgba(255,255,255,.72);
      font-size:13px;
      margin-bottom:14px;
    }
    .drawer-search{
      display:flex;
      gap:10px;
      margin-bottom:18px;
    }
    .drawer-search input{
      flex:1;
      border:1px solid rgba(255,255,255,.12);
      background:#1b1b1b;
      color:#fff;
      border-radius:6px;
      min-height:44px;
      padding:0 12px;
    }
    .drawer-search button{
      min-height:44px;
      border-radius:6px;
    }
    .mobile-menu{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .mobile-menu a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      min-height:46px;
      padding:0 12px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
      border-radius:6px;
      color:#fff;
      font-weight:700;
    }
    .mobile-menu a.is-active,
    .mobile-menu a:hover{
      background:rgba(234,29,44,.16);
      border-color:rgba(234,29,44,.38);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(246,241,234,.86);
      backdrop-filter:saturate(1.1) blur(10px);
      border-bottom:1px solid rgba(215,198,179,.82);
      transition:all .2s ease;
    }
    .site-header.is-compact{
      background:rgba(246,241,234,.94);
      box-shadow:0 10px 24px rgba(17,17,17,.08);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      min-height:76px;
      padding:14px 0;
    }
    .brand-wrap{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-mark{
      width:40px;
      height:40px;
      flex:none;
      border-radius:8px;
      background:
        linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark) 54%, var(--brand) 54%, var(--brand) 100%);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
      position:relative;
      overflow:hidden;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      left:10px;
      top:9px;
      width:18px;
      height:18px;
      border:2px solid rgba(255,255,255,.92);
      border-top-color:transparent;
      border-left-color:transparent;
      transform:rotate(-45deg);
      border-radius:2px;
    }
    .brand-text{
      min-width:0;
    }
    .brand-name{
      display:block;
      font-size:18px;
      font-weight:900;
      line-height:1.1;
      white-space:nowrap;
    }
    .brand-sub{
      display:block;
      margin-top:2px;
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }

    .desktop-nav{
      flex:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      min-width:0;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      min-width:0;
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:38px;
      padding:0 12px;
      border-radius:6px;
      color:var(--text);
      font-weight:700;
      font-size:14px;
      border:1px solid transparent;
    }
    .nav-links a:hover,
    .nav-links a.is-active{
      background:var(--surface);
      border-color:var(--line);
      box-shadow:var(--shadow-soft);
    }
    .nav-links a span{
      color:var(--muted);
      font-size:12px;
      font-weight:600;
    }

    .nav-tools{
      display:flex;
      align-items:center;
      gap:12px;
      flex:none;
    }
    .search-bar{
      display:flex;
      align-items:center;
      gap:0;
      min-width:min(420px, 100%);
      background:var(--surface);
      border:1px solid var(--line-strong);
      border-radius:8px;
      overflow:hidden;
      box-shadow:var(--shadow-soft);
    }
    .search-bar input{
      border:0;
      margin:0;
      min-height:44px;
      background:transparent;
      box-shadow:none;
      color:var(--text);
      padding:0 14px;
      font-size:14px;
    }
    .search-bar input::placeholder{
      color:#90857b;
    }
    .search-bar button{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:44px;
      border:0;
      border-left:1px solid var(--line-strong);
      border-radius:0;
      background:var(--brand);
      color:#fff;
      font-weight:800;
      padding:0 16px;
      transition:transform .18s ease, background .18s ease;
    }
    .search-bar button:hover{
      background:#d61826;
      transform:translateY(-1px);
    }
    .search-bar button svg,
    .hero-actions .button svg,
    .mini-action svg,
    .tag-button svg,
    .cta-inline svg,
    .mobile-tools svg{
      width:16px;
      height:16px;
      stroke-width:2.15;
      flex:none;
    }

    .cta-inline{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:44px;
      padding:0 16px;
      border-radius:8px;
      background:var(--bg-dark);
      color:#fff;
      font-weight:800;
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-soft);
    }
    .cta-inline:hover{
      background:#000;
      transform:translateY(-1px);
    }

    .mobile-tools{
      display:none;
      align-items:center;
      gap:10px;
      margin-left:auto;
    }
    .icon-button{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;
      height:44px;
      border-radius:8px;
      border:1px solid var(--line);
      background:var(--surface);
      color:var(--text);
      box-shadow:var(--shadow-soft);
    }

    .hero-band{
      background:var(--bg-dark);
      color:#fff;
      padding:28px 0 22px;
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .hero-shell{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:28px;
      align-items:stretch;
      min-height:540px;
    }
    .hero-copy{
      padding:26px 6px 16px 0;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:22px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      width:fit-content;
      padding:8px 12px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      color:#ffecc9;
      font-size:13px;
      font-weight:800;
    }
    .eyebrow i{
      color:var(--accent);
      width:14px;
      height:14px;
    }
    .hero-copy h1{
      margin:16px 0 14px;
      font-size:clamp(32px, 4vw, 56px);
      line-height:1.06;
      font-weight:900;
      letter-spacing:0;
      max-width:10ch;
    }
    .hero-copy .lead{
      max-width:40rem;
      font-size:17px;
      color:rgba(255,255,255,.78);
      margin:0;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:6px;
    }
    .hero-actions .button{
      margin:0;
      min-height:46px;
      border-radius:8px;
      font-weight:800;
      padding:0 18px;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .button.brand{
      background:var(--brand);
      color:#fff;
      border:1px solid transparent;
    }
    .button.brand:hover{background:#d81b28}
    .button.light{
      background:rgba(255,255,255,.06);
      color:#fff;
      border:1px solid rgba(255,255,255,.14);
    }
    .button.light:hover{
      background:rgba(255,255,255,.1);
      color:#fff;
    }
    .trust-line{
      display:flex;
      flex-wrap:wrap;
      gap:10px 12px;
      align-items:center;
      color:rgba(255,255,255,.72);
      font-size:13px;
    }
    .trust-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.1);
    }
    .trust-chip strong{color:#fff}
    .trust-chip i{
      color:var(--accent);
      width:14px;
      height:14px;
    }

    .hero-visual{
      background:var(--bg-soft);
      color:var(--text);
      border-radius:8px;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:14px;
      overflow:hidden;
      position:relative;
    }
    .hero-visual:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(rgba(17,17,17,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,17,17,.03) 1px, transparent 1px);
      background-size:18px 18px;
      pointer-events:none;
    }
    .visual-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .visual-top strong{
      display:block;
      font-size:15px;
      margin-bottom:4px;
    }
    .visual-top p{
      margin:0;
      font-size:13px;
      color:var(--muted);
    }
    .countdown{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:38px;
      padding:0 12px;
      border-radius:999px;
      background:var(--bg-dark);
      color:#fff;
      font-weight:800;
      font-size:13px;
      flex:none;
    }
    .countdown i{color:var(--accent);width:14px;height:14px}
    .visual-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:12px;
      position:relative;
      z-index:1;
    }
    .mini-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:8px;
      padding:14px;
      min-height:118px;
      box-shadow:0 8px 20px rgba(17,17,17,.05);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:10px;
    }
    .mini-card .tag{
      width:fit-content;
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      background:#fff3df;
      color:#8c4c00;
      border:1px solid #f4d39c;
    }
    .mini-card .title{
      font-size:17px;
      line-height:1.2;
      font-weight:900;
      margin:0;
    }
    .mini-card .meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      color:var(--muted);
      font-size:12px;
      align-items:center;
    }
    .mini-card .meta span{
      padding:4px 8px;
      border-radius:999px;
      background:var(--surface-2);
      border:1px solid var(--line);
    }
    .mini-card.highlight{
      background:var(--bg-dark-2);
      color:#fff;
      border-color:rgba(255,255,255,.08);
    }
    .mini-card.highlight .tag{
      background:rgba(255,177,0,.18);
      color:#ffd56a;
      border-color:rgba(255,177,0,.25);
    }
    .mini-card.highlight .title{color:#fff}
    .mini-card.highlight .meta{color:rgba(255,255,255,.72)}
    .mini-card.highlight .meta span{
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.08);
      color:rgba(255,255,255,.82);
    }
    .mini-panel{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .step-line{
      background:#fff;
      border:1px solid var(--line);
      border-radius:8px;
      padding:14px 15px;
    }
    .step-line .step-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:8px;
    }
    .step-line strong{
      font-size:15px;
    }
    .step-line .flag{
      min-height:28px;
      display:inline-flex;
      align-items:center;
      padding:0 10px;
      border-radius:999px;
      background:#ffe6e1;
      color:#b42318;
      font-size:12px;
      font-weight:800;
      border:1px solid #ffc8bd;
    }
    .step-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:9px;
    }
    .step-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      font-size:13px;
      color:var(--muted);
    }
    .step-list b{
      display:inline-flex;
      width:22px;
      height:22px;
      align-items:center;
      justify-content:center;
      border-radius:6px;
      background:var(--bg-dark);
      color:#fff;
      font-size:12px;
      flex:none;
    }
    .mini-action{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      background:var(--brand);
      color:#fff;
      border-radius:8px;
      padding:14px 15px;
      font-weight:800;
      box-shadow:var(--shadow-soft);
    }
    .mini-action:hover{background:#d81b28;color:#fff}
    .mini-action small{
      display:block;
      margin-top:2px;
      font-weight:600;
      opacity:.9;
    }

    .metrics-band{
      padding:18px 0 0;
    }
    .metrics-row{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:16px;
      margin-top:-34px;
      position:relative;
      z-index:3;
    }
    .metric{
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:8px;
      padding:16px 16px 15px;
      box-shadow:var(--shadow-soft);
      min-height:92px;
    }
    .metric .kicker{
      display:block;
      color:var(--muted);
      font-size:12px;
      font-weight:700;
      margin-bottom:8px;
    }
    .metric strong{
      display:block;
      font-size:28px;
      line-height:1;
      font-weight:900;
      margin-bottom:6px;
    }
    .metric span{
      color:var(--muted);
      font-size:13px;
    }

    .section-band{
      padding:var(--section) 0;
    }
    .section-band.tight-top{padding-top:56px}
    .section-band.soft{
      background:var(--bg-soft);
      border-top:1px solid rgba(229,217,204,.65);
      border-bottom:1px solid rgba(229,217,204,.65);
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:18px;
      margin-bottom:24px;
    }
    .section-head .copy{
      max-width:760px;
    }
    .section-head .eyebrow-dark{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:10px;
      color:var(--brand);
      font-size:13px;
      font-weight:900;
      text-transform:none;
    }
    .section-head h2{
      font-size:clamp(28px, 3vw, 38px);
      line-height:1.12;
      margin:0 0 10px;
      font-weight:900;
      letter-spacing:0;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      max-width:56rem;
      font-size:16px;
    }
    .section-head .side-link{
      flex:none;
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:44px;
      padding:0 16px;
      border-radius:8px;
      background:var(--bg-dark);
      color:#fff;
      font-weight:800;
      box-shadow:var(--shadow-soft);
    }
    .section-head .side-link:hover{background:#000;color:#fff}

    .card-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:18px;
    }
    .promo-card,
    .list-card,
    .guide-card,
    .info-card,
    .story-card{
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:8px;
      box-shadow:var(--shadow-soft);
    }
    .promo-card{
      padding:18px 18px 16px;
      display:flex;
      flex-direction:column;
      gap:14px;
      min-height:260px;
      position:relative;
      overflow:hidden;
    }
    .promo-card:after{
      content:"";
      position:absolute;
      right:-18px;
      top:-18px;
      width:78px;
      height:78px;
      background:rgba(255,177,0,.12);
      transform:rotate(18deg);
      border:1px solid rgba(255,177,0,.2);
    }
    .promo-card .sticker{
      display:inline-flex;
      align-items:center;
      gap:6px;
      width:fit-content;
      padding:6px 10px;
      border-radius:999px;
      background:#fff1c6;
      color:#895400;
      border:1px solid #efcf84;
      font-size:12px;
      font-weight:900;
      position:relative;
      z-index:1;
    }
    .promo-card .sticker.red{
      background:#ffe2e4;
      color:#9d1120;
      border-color:#f0b0b8;
    }
    .promo-card h3,
    .list-card h3,
    .guide-card h3,
    .info-card h3,
    .story-card h3{
      margin:0;
      font-size:20px;
      line-height:1.18;
      font-weight:900;
      letter-spacing:0;
      position:relative;
      z-index:1;
    }
    .promo-card p,
    .list-card p,
    .guide-card p,
    .info-card p,
    .story-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      position:relative;
      z-index:1;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      position:relative;
      z-index:1;
    }
    .tag-badge{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      background:var(--surface-2);
      border:1px solid var(--line);
      color:var(--text);
    }
    .tag-badge.hot{
      background:#fff1c6;
      border-color:#f0cf7a;
      color:#8b5400;
    }
    .tag-badge.dark{
      background:var(--bg-dark);
      color:#fff;
      border-color:var(--bg-dark);
    }
    .card-foot{
      margin-top:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .card-foot .meta{
      color:var(--muted);
      font-size:12px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
    }
    .card-foot .meta span{
      padding:4px 8px;
      background:#faf6f1;
      border:1px solid var(--line);
      border-radius:999px;
    }
    .mini-btn{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:40px;
      padding:0 14px;
      border-radius:8px;
      background:var(--bg-dark);
      color:#fff;
      font-weight:800;
      border:1px solid rgba(17,17,17,.92);
      white-space:nowrap;
    }
    .mini-btn:hover{
      background:var(--brand);
      color:#fff;
      border-color:var(--brand);
    }

    .list-layout{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
      align-items:start;
    }
    .list-card{
      padding:18px;
    }
    .number-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .number-list li{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:14px 14px 14px 12px;
      border-radius:8px;
      background:#fcfaf7;
      border:1px solid var(--line);
    }
    .number{
      width:36px;
      height:36px;
      border-radius:8px;
      background:var(--bg-dark);
      color:#fff;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      box-shadow:var(--shadow-soft);
      flex:none;
    }
    .number-list strong{
      display:block;
      font-size:16px;
      font-weight:900;
      margin-bottom:4px;
      line-height:1.2;
    }
    .number-list p{
      font-size:14px;
    }
    .number-tags{
      display:flex;
      flex-wrap:wrap;
      gap:6px;
      justify-content:flex-end;
    }
    .price-tag{
      display:inline-flex;
      align-items:center;
      min-height:26px;
      padding:0 8px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      background:#ffe8ea;
      color:#a81624;
      border:1px solid #f0b5bc;
    }

    .info-card{
      padding:18px;
      display:grid;
      gap:14px;
    }
    .feed-layout{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:18px;
      align-items:start;
    }
    .feed-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .feed-list li{
      padding:13px 14px;
      border-radius:8px;
      background:#fff;
      border:1px solid var(--line);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .feed-list li:hover{
      transform:translateY(-1px);
      border-color:#d6c5b4;
      box-shadow:var(--shadow-soft);
    }
    .feed-list a{
      display:block;
      font-weight:800;
      font-size:15px;
      line-height:1.35;
      flex:1;
    }
    .feed-list time{
      color:var(--muted);
      font-size:12px;
      flex:none;
      white-space:nowrap;
    }
    .bullet-rail{
      display:grid;
      gap:12px;
    }
    .bullet-panel{
      padding:16px;
      border-radius:8px;
      border:1px solid var(--line);
      background:var(--surface);
      box-shadow:var(--shadow-soft);
    }
    .bullet-panel h3{
      font-size:18px;
      margin-bottom:10px;
    }
    .bullet-panel ul{
      margin:0;
      padding-left:18px;
      color:var(--muted);
      display:grid;
      gap:8px;
    }

    .carousel-wrap{
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding-bottom:6px;
      scroll-snap-type:x proximity;
      -webkit-overflow-scrolling:touch;
    }
    .story-card{
      min-width:280px;
      max-width:320px;
      padding:16px;
      scroll-snap-align:start;
      display:grid;
      gap:12px;
    }
    .story-top{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .avatar{
      width:44px;
      height:44px;
      border-radius:8px;
      background:var(--bg-dark);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      box-shadow:var(--shadow-soft);
      flex:none;
    }
    .person{
      min-width:0;
    }
    .person strong{
      display:block;
      font-size:15px;
      font-weight:900;
      line-height:1.2;
    }
    .person span{
      display:block;
      margin-top:3px;
      color:var(--muted);
      font-size:12px;
    }
    .story-card p{
      color:var(--text);
      font-size:14px;
    }

    .guide-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:18px;
    }
    .guide-card{
      padding:18px;
      min-height:210px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .guide-step{
      display:inline-flex;
      align-items:center;
      width:fit-content;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      background:var(--bg-dark);
      color:#fff;
      font-size:12px;
      font-weight:900;
    }
    .guide-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
      color:var(--muted);
    }
    .guide-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      font-size:14px;
    }
    .guide-list i{
      color:var(--brand);
      width:15px;
      height:15px;
      margin-top:3px;
      flex:none;
    }

    .cta-band{
      background:var(--bg-dark);
      color:#fff;
      padding:70px 0;
      border-top:1px solid rgba(255,255,255,.08);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .cta-layout{
      display:grid;
      grid-template-columns:1fr .92fr;
      gap:24px;
      align-items:center;
    }
    .cta-copy h2{
      margin:0 0 14px;
      font-size:clamp(28px, 3.1vw, 44px);
      line-height:1.08;
      font-weight:900;
    }
    .cta-copy p{
      margin:0;
      color:rgba(255,255,255,.76);
      font-size:16px;
      max-width:46rem;
    }
    .cta-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .cta-tags .tag-badge{
      background:rgba(255,255,255,.06);
      color:#fff;
      border-color:rgba(255,255,255,.1);
    }
    .cta-panel{
      background:var(--bg-soft);
      color:var(--text);
      border:1px solid var(--line);
      border-radius:8px;
      padding:18px;
      box-shadow:var(--shadow);
    }
    .cta-panel h3{
      margin:0 0 12px;
      font-size:18px;
      font-weight:900;
    }
    .cta-panel .search-bar{
      min-width:0;
      width:100%;
      box-shadow:none;
      border-color:var(--line-strong);
    }
    .cta-panel .search-bar button{
      background:var(--bg-dark);
    }
    .cta-panel .search-bar button:hover{
      background:var(--brand);
    }
    .cta-panel .mini-tags{
      margin-top:14px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .cta-panel .mini-tags a{
      min-height:34px;
      padding:0 10px;
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--text);
      font-size:12px;
      font-weight:800;
    }
    .cta-panel .mini-tags a:hover{
      background:#fff1f1;
      border-color:#efb7bf;
      color:#9c1524;
    }
    .cta-panel .notice{
      margin-top:14px;
      font-size:13px;
      color:var(--muted);
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .cta-panel .notice i{
      color:var(--brand);
      margin-top:2px;
      flex:none;
    }

    .faq-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:16px;
    }
    .accordion{
      background:transparent;
      border:0;
      margin:0;
    }
    .accordion-item{
      border:1px solid var(--line);
      border-radius:8px;
      overflow:hidden;
      background:var(--surface);
      box-shadow:var(--shadow-soft);
      margin-bottom:12px;
    }
    .accordion-title{
      background:var(--surface);
      color:var(--text);
      font-size:16px;
      font-weight:900;
      line-height:1.45;
      border:0;
      border-bottom:1px solid transparent;
      padding:16px 52px 16px 16px;
      position:relative;
    }
    .accordion-title:before{
      right:16px;
      left:auto;
      margin-top:-10px;
      border-width:6px 5px 0;
      border-color:#9d8e80 transparent transparent;
    }
    .accordion-item.is-active > .accordion-title{
      background:#fff7f7;
      border-bottom-color:var(--line);
    }
    .accordion-title:hover{
      background:#fffaf5;
    }
    .accordion-content{
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
      padding:16px 16px 18px;
      border:0;
      background:#fff;
    }
    .accordion-content p{margin:0}

    .footer-band{
      background:#141414;
      color:#fff;
      padding:40px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .8fr .8fr .9fr;
      gap:22px;
    }
    .footer-brand{
      display:grid;
      gap:12px;
    }
    .footer-brand strong{
      font-size:20px;
      font-weight:900;
      line-height:1.15;
    }
    .footer-brand p{
      margin:0;
      color:rgba(255,255,255,.72);
      font-size:14px;
      max-width:26rem;
    }
    .footer-col h4{
      margin:0 0 12px;
      font-size:15px;
      font-weight:900;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:8px;
    }
    .footer-links a{
      color:rgba(255,255,255,.76);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      text-decoration:underline;
      text-underline-offset:3px;
    }
    .footer-note{
      grid-column:1/-1;
      margin-top:18px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:10px 18px;
      color:rgba(255,255,255,.62);
      font-size:13px;
    }
    .footer-note a{
      color:#fff;
      font-weight:800;
    }

    .small-hide{display:block}
    .mobile-only{display:none}

    @media screen and (max-width: 1200px){
      .hero-shell,
      .cta-layout,
      .list-layout,
      .feed-layout{
        grid-template-columns:1fr;
      }
      .card-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }
      .guide-grid,
      .footer-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }
      .metrics-row{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }
    }
    @media screen and (max-width: 768px){
      .header-inner{
        min-height:68px;
      }
      .desktop-nav{display:none}
      .mobile-tools{display:flex}
      .brand-name{font-size:16px}
      .brand-sub{display:none}
      .hero-band{padding-top:20px}
      .hero-shell{
        min-height:auto;
      }
      .hero-copy{
        padding-right:0;
      }
      .hero-copy h1{
        max-width:12ch;
      }
      .metrics-row,
      .card-grid,
      .guide-grid,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .section-band{
        padding:var(--section-mobile) 0;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .section-head .side-link{
        width:100%;
        justify-content:center;
      }
      .feed-list li{
        align-items:flex-start;
        flex-direction:column;
      }
      .feed-list time{
        white-space:normal;
      }
      .number-list li{
        grid-template-columns:1fr;
      }
      .number-tags{
        justify-content:flex-start;
      }
      .cta-band{
        padding:54px 0;
      }
      .small-hide{display:none}
      .mobile-only{display:block}
      .visual-grid{
        grid-template-columns:1fr;
      }
    }
    @media screen and (max-width: 520px){
      body{
        background-size:28px 28px;
      }
      .container{
        width:min(calc(100% - 22px), var(--container));
      }
      .hero-copy h1{
        font-size:clamp(30px, 8vw, 36px);
      }
      .hero-copy .lead,
      .section-head p,
      .cta-copy p{
        font-size:15px;
      }
      .brand-mark{
        width:36px;
        height:36px;
      }
      .search-bar{
        min-width:0;
      }
      .search-bar input{
        min-height:42px;
      }
      .cta-inline,
      .button,
      .icon-button,
      .search-bar button,
      .mini-btn{
        min-height:42px;
      }
      .promo-card,
      .guide-card,
      .list-card,
      .info-card,
      .story-card{
        padding:16px;
      }
    }

/* roulang page: category1 */
:root{
      --bg: #f5efe6;
      --bg-soft: #f9f4ed;
      --surface: #fffaf4;
      --surface-2: #fff2e5;
      --ink: #161311;
      --muted: #6f655a;
      --line: #e3d6c7;
      --line-strong: #d7c4b1;
      --accent: #e12542;
      --accent-2: #ff8b1f;
      --accent-3: #ffd42a;
      --good: #12805a;
      --shadow: 0 16px 36px rgba(22, 19, 17, 0.08);
      --shadow-strong: 0 20px 48px rgba(22, 19, 17, 0.12);
      --radius: 8px;
      --radius-sm: 6px;
      --container: 1240px;
      --gap: 24px;
      --gap-sm: 16px;
      --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      --transition: 180ms ease;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family:var(--font);
      color:var(--ink);
      background:
        linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.34)),
        linear-gradient(180deg, #f7f2e9 0%, #f3ece3 100%);
      line-height:1.7;
      letter-spacing:0;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(22,19,17,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,19,17,.04) 1px, transparent 1px);
      background-size:26px 26px;
      opacity:.28;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 78%);
    }
    a{ color:inherit; text-decoration:none; }
    img{ max-width:100%; display:block; }
    button,
    input,
    textarea,
    select{
      font:inherit;
    }
    ::selection{
      background:rgba(225,37,66,.18);
    }
    :focus-visible{
      outline:3px solid rgba(225,37,66,.24);
      outline-offset:2px;
    }

    .off-canvas-wrapper,
    .off-canvas-content{
      background:transparent;
    }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(247,241,232,.92);
      border-bottom:1px solid rgba(227,214,199,.9);
      backdrop-filter:saturate(140%) blur(10px);
      transition:box-shadow var(--transition), transform var(--transition), background var(--transition);
    }
    .site-header.is-sticky{
      box-shadow:0 10px 24px rgba(22,19,17,.08);
    }
    .header-inner{
      min-height:68px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }

    .brand-wrap{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      flex:0 1 auto;
    }
    .brand-mark{
      width:40px;
      height:40px;
      border-radius:8px;
      background:linear-gradient(135deg, var(--accent), var(--accent-2));
      position:relative;
      box-shadow:0 10px 18px rgba(225,37,66,.2);
      flex:none;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:auto;
      background:rgba(255,255,255,.88);
      border-radius:999px;
    }
    .brand-mark::before{
      width:16px;
      height:4px;
      left:12px;
      top:11px;
    }
    .brand-mark::after{
      width:16px;
      height:4px;
      left:12px;
      top:23px;
      opacity:.85;
    }
    .brand-text{
      min-width:0;
    }
    .brand-name{
      display:block;
      font-size:clamp(18px, 2vw, 22px);
      line-height:1.1;
      font-weight:900;
      letter-spacing:0;
      color:var(--ink);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      display:block;
      margin-top:3px;
      font-size:12px;
      line-height:1.35;
      color:var(--muted);
    }

    .desktop-nav{
      display:flex;
      align-items:center;
      gap:18px;
      margin-left:auto;
      min-width:0;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:nowrap;
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 12px;
      border-radius:6px;
      border:1px solid transparent;
      font-size:15px;
      font-weight:700;
      color:var(--ink);
      transition:background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
      white-space:nowrap;
    }
    .nav-links a span{
      color:var(--muted);
      font-size:12px;
      font-weight:700;
    }
    .nav-links a:hover,
    .nav-links a.is-active{
      background:var(--surface);
      border-color:var(--line);
      box-shadow:0 10px 20px rgba(22,19,17,.06);
      transform:translateY(-1px);
    }

    .nav-tools{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }

    .search-bar{
      display:flex;
      align-items:center;
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:8px;
      overflow:hidden;
      box-shadow:0 8px 18px rgba(22,19,17,.05);
      min-width:320px;
      max-width:420px;
      width:clamp(280px, 32vw, 420px);
    }
    .search-bar input{
      border:0;
      margin:0;
      background:transparent;
      height:44px;
      padding:0 14px;
      color:var(--ink);
      box-shadow:none;
      min-width:0;
    }
    .search-bar input::placeholder{
      color:rgba(111,101,90,.84);
    }
    .search-bar button{
      height:44px;
      padding:0 14px;
      border:0;
      background:var(--accent);
      color:#fff;
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-weight:800;
      cursor:pointer;
      transition:background var(--transition), transform var(--transition), box-shadow var(--transition);
      white-space:nowrap;
      flex:none;
    }
    .search-bar button:hover{
      background:#cc1938;
    }
    .search-bar button:active{
      transform:translateY(1px);
    }

    .cta-inline{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:44px;
      padding:0 16px;
      border-radius:8px;
      background:var(--ink);
      color:#fff;
      font-weight:800;
      border:1px solid rgba(0,0,0,.08);
      box-shadow:0 10px 18px rgba(22,19,17,.12);
      transition:transform var(--transition), background var(--transition), box-shadow var(--transition);
      white-space:nowrap;
      flex:none;
    }
    .cta-inline:hover{
      transform:translateY(-1px);
      background:#231f1c;
      color:#fff;
    }
    .cta-inline:active{
      transform:translateY(1px);
    }

    .mobile-tools{
      display:none;
      align-items:center;
      gap:10px;
    }
    .icon-button{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;
      height:44px;
      border-radius:8px;
      border:1px solid var(--line);
      background:var(--surface);
      color:var(--ink);
      box-shadow:0 8px 16px rgba(22,19,17,.06);
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .icon-button:hover{
      transform:translateY(-1px);
      box-shadow:0 12px 18px rgba(22,19,17,.08);
      border-color:var(--line-strong);
    }

    .mobile-drawer{
      background:linear-gradient(180deg, #171412 0%, #201b18 100%);
      color:#fff;
      height:100%;
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    .mobile-drawer-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .mobile-drawer-brand{
      font-weight:900;
      font-size:18px;
      line-height:1.2;
    }
    .mobile-drawer-sub{
      color:rgba(255,255,255,.68);
      font-size:12px;
      margin-top:4px;
    }
    .mobile-close{
      width:42px;
      height:42px;
      border-radius:8px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.08);
      color:#fff;
    }
    .mobile-search{
      min-width:0;
      width:100%;
      max-width:none;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.14);
      box-shadow:none;
    }
    .mobile-search input{
      color:#fff;
    }
    .mobile-search input::placeholder{
      color:rgba(255,255,255,.64);
    }
    .mobile-search button{
      background:var(--accent-2);
    }
    .mobile-nav{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .mobile-nav a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:14px 12px;
      border-radius:8px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:#fff;
      font-weight:800;
    }
    .mobile-nav a span{
      color:rgba(255,255,255,.62);
      font-size:12px;
    }
    .mobile-nav a.is-active{
      background:rgba(225,37,66,.16);
      border-color:rgba(225,37,66,.24);
    }
    .mobile-note{
      margin-top:auto;
      padding:14px;
      border-radius:8px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      color:rgba(255,255,255,.76);
      font-size:13px;
      line-height:1.7;
    }

    main{
      overflow:hidden;
    }

    .category-hero{
      padding:24px 0 18px;
    }
    .hero-strip{
      position:relative;
      background:linear-gradient(180deg, var(--surface) 0%, #fff6ec 100%);
      border:1px solid var(--line);
      border-radius:10px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .hero-strip::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(225,37,66,.08), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.18), transparent 58%);
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:24px;
      padding:28px;
      align-items:stretch;
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      min-width:0;
      justify-content:center;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      width:fit-content;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(225,37,66,.08);
      color:#b51f39;
      font-size:13px;
      font-weight:800;
      margin-bottom:14px;
    }
    h1{
      margin:0;
      font-size:clamp(30px, 5vw, 54px);
      line-height:1.08;
      letter-spacing:0;
      font-weight:900;
      color:var(--ink);
      max-width:12ch;
    }
    .hero-lead{
      margin:14px 0 18px;
      font-size:17px;
      line-height:1.8;
      color:var(--muted);
      max-width:58ch;
    }
    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:18px;
    }
    .mini-tag,
    .pill,
    .status-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid var(--line);
      background:var(--surface);
      color:var(--ink);
      font-size:13px;
      font-weight:700;
      line-height:1;
      white-space:nowrap;
    }
    .pill.accent{
      background:rgba(225,37,66,.1);
      border-color:rgba(225,37,66,.18);
      color:#a61735;
    }
    .pill.orange{
      background:rgba(255,139,31,.12);
      border-color:rgba(255,139,31,.18);
      color:#a55300;
    }
    .pill.dark{
      background:#1e1b18;
      border-color:#1e1b18;
      color:#fff;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-bottom:18px;
    }
    .button{
      margin:0;
      border-radius:8px;
      font-weight:800;
      letter-spacing:0;
      min-height:44px;
      padding:0 16px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      transition:transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
    }
    .button.primary{
      background:var(--accent);
      color:#fff;
      border:1px solid rgba(0,0,0,.04);
      box-shadow:0 12px 20px rgba(225,37,66,.2);
    }
    .button.primary:hover{
      background:#c61a38;
      color:#fff;
      transform:translateY(-1px);
      box-shadow:0 16px 26px rgba(225,37,66,.24);
    }
    .button.hollow{
      background:transparent;
      border:1px solid var(--line-strong);
      color:var(--ink);
    }
    .button.hollow:hover{
      background:var(--surface);
      border-color:var(--accent);
      color:var(--ink);
      transform:translateY(-1px);
    }
    .button.white{
      background:#fff;
      color:var(--ink);
      border:1px solid rgba(22,19,17,.08);
    }
    .button.white:hover{
      background:#fff8f0;
    }

    .hero-note{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      color:var(--muted);
      font-size:13px;
    }
    .hero-note strong{
      color:var(--ink);
    }

    .hero-visual{
      display:flex;
      flex-direction:column;
      gap:14px;
      min-width:0;
    }
    .visual-panel,
    .visual-panel-dark{
      border-radius:8px;
      border:1px solid var(--line);
      overflow:hidden;
      box-shadow:0 12px 24px rgba(22,19,17,.06);
    }
    .visual-panel{
      background:var(--surface);
      padding:16px;
    }
    .visual-panel-dark{
      background:linear-gradient(180deg, #1c1917 0%, #11100f 100%);
      color:#fff;
      padding:16px;
      border-color:rgba(255,255,255,.08);
    }
    .countdown-row{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .countdown-label{
      font-size:12px;
      text-transform:none;
      color:rgba(255,255,255,.66);
      display:block;
      margin-bottom:4px;
      letter-spacing:0;
    }
    .countdown-num{
      font-size:28px;
      line-height:1;
      font-weight:900;
      color:#fff;
      letter-spacing:0;
    }
    .countdown-tip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 9px;
      border-radius:999px;
      background:rgba(225,37,66,.2);
      border:1px solid rgba(225,37,66,.22);
      color:#fff;
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:10px;
      margin-bottom:14px;
    }
    .entry-tile{
      background:#fff;
      border:1px solid var(--line);
      border-radius:8px;
      padding:12px;
      min-height:86px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:8px;
      box-shadow:0 8px 18px rgba(22,19,17,.04);
    }
    .entry-tile strong{
      font-size:18px;
      line-height:1.1;
      font-weight:900;
    }
    .entry-tile span{
      font-size:12px;
      color:var(--muted);
      line-height:1.4;
    }
    .entry-tile.accent{
      background:linear-gradient(180deg, rgba(225,37,66,.08), rgba(225,37,66,.03));
      border-color:rgba(225,37,66,.18);
    }
    .step-list{
      margin:0;
      padding:0 0 0 18px;
      color:#fff;
      display:grid;
      gap:8px;
      font-size:14px;
      line-height:1.6;
    }
    .step-list li{
      color:rgba(255,255,255,.9);
    }
    .step-list li::marker{
      color:var(--accent-3);
      font-weight:900;
    }
    .visual-foot{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .visual-foot .pill{
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.08);
      color:#fff;
    }

    .filter-shell{
      margin-top:14px;
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:10px;
      padding:14px 16px;
      box-shadow:var(--shadow);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .filter-copy{
      min-width:0;
    }
    .filter-copy strong{
      display:block;
      font-size:15px;
      line-height:1.3;
      font-weight:900;
      margin-bottom:4px;
    }
    .filter-copy span{
      color:var(--muted);
      font-size:14px;
      line-height:1.5;
    }
    .filter-tabs{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:nowrap;
      overflow-x:auto;
      padding-bottom:2px;
      max-width:100%;
    }
    .filter-tabs .button{
      white-space:nowrap;
      min-height:40px;
      padding:0 14px;
      box-shadow:none;
    }
    .filter-tabs .button.current{
      background:var(--ink);
      color:#fff;
      border-color:var(--ink);
    }

    .section-block{
      padding:64px 0 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
      flex-wrap:wrap;
    }
    .section-head h2{
      margin:0;
      font-size:clamp(24px, 3vw, 34px);
      line-height:1.14;
      font-weight:900;
      letter-spacing:0;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      max-width:62ch;
    }
    .section-head .mini-tag{
      background:var(--surface);
    }

    .promo-shell{
      display:grid;
      grid-template-columns:1fr 312px;
      gap:24px;
      align-items:start;
    }
    .promo-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:18px;
    }
    .promo-card{
      position:relative;
      display:flex;
      flex-direction:column;
      min-height:100%;
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:8px;
      overflow:hidden;
      box-shadow:var(--shadow);
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .promo-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-strong);
      border-color:var(--line-strong);
    }
    .promo-card::before{
      content:"";
      position:absolute;
      inset:0 auto auto 0;
      width:100%;
      height:4px;
      background:linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
    }
    .card-body{
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:12px;
      height:100%;
    }
    .card-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .badge-ribbon{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 9px;
      border-radius:999px;
      background:rgba(225,37,66,.1);
      color:#a61735;
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
      flex:none;
    }
    .card-title{
      margin:0;
      font-size:20px;
      line-height:1.28;
      font-weight:800;
      letter-spacing:0;
    }
    .card-copy{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
    }
    .tag-list{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .meta-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-top:auto;
      padding-top:4px;
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
    }
    .meta-row .state{
      display:inline-flex;
      align-items:center;
      gap:6px;
      font-weight:700;
      color:var(--good);
    }
    .meta-row .state .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--good);
      box-shadow:0 0 0 4px rgba(18,128,90,.1);
    }
    .card-actions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .card-actions .button{
      min-height:40px;
      padding:0 14px;
    }

    .side-panel{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .info-box{
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:8px;
      padding:16px;
      box-shadow:var(--shadow);
    }
    .info-box.dark{
      background:#1c1917;
      color:#fff;
      border-color:rgba(255,255,255,.08);
    }
    .info-box h3{
      margin:0 0 10px;
      font-size:18px;
      line-height:1.3;
      font-weight:800;
    }
    .info-box p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .info-box.dark p{
      color:rgba(255,255,255,.76);
    }
    .stat-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:10px;
      margin-top:14px;
    }
    .stat-tile{
      background:#fff;
      border:1px solid var(--line);
      border-radius:8px;
      padding:12px;
      box-shadow:0 8px 16px rgba(22,19,17,.04);
    }
    .stat-tile strong{
      display:block;
      font-size:24px;
      line-height:1.1;
      font-weight:900;
      color:var(--ink);
    }
    .stat-tile span{
      display:block;
      margin-top:6px;
      font-size:12px;
      color:var(--muted);
      line-height:1.5;
    }
    .quick-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .quick-list li{
      display:flex;
      justify-content:space-between;
      gap:10px;
      padding:12px;
      border-radius:8px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
    }
    .quick-list strong{
      display:block;
      font-size:14px;
      line-height:1.3;
      font-weight:800;
      color:#fff;
    }
    .quick-list span{
      display:block;
      margin-top:4px;
      font-size:12px;
      line-height:1.5;
      color:rgba(255,255,255,.66);
    }
    .quick-list a{
      flex:none;
      align-self:center;
      color:var(--accent-3);
      font-weight:800;
      font-size:13px;
    }

    .guide-list{
      display:grid;
      gap:14px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .guide-item{
      display:grid;
      grid-template-columns:54px minmax(0,1fr) auto;
      gap:14px;
      align-items:center;
      padding:16px;
      border-radius:8px;
      background:var(--surface);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .guide-num{
      width:54px;
      height:54px;
      border-radius:8px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, rgba(225,37,66,.12), rgba(255,139,31,.12));
      color:#a61735;
      font-size:22px;
      font-weight:900;
      flex:none;
    }
    .guide-content{
      min-width:0;
    }
    .guide-content h3{
      margin:0 0 6px;
      font-size:18px;
      line-height:1.3;
      font-weight:800;
    }
    .guide-content p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }
    .guide-tags{
      margin-top:10px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .guide-item .button{
      min-height:40px;
      padding:0 14px;
      flex:none;
    }

    .review-strip{
      display:grid;
      grid-auto-flow:column;
      grid-auto-columns:minmax(280px, 1fr);
      gap:14px;
      overflow-x:auto;
      padding-bottom:6px;
      scroll-snap-type:x proximity;
      -webkit-overflow-scrolling:touch;
    }
    .review-card{
      scroll-snap-align:start;
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:8px;
      padding:16px;
      box-shadow:var(--shadow);
      min-height:190px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .review-head{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .avatar{
      width:44px;
      height:44px;
      border-radius:50%;
      background:linear-gradient(135deg, rgba(225,37,66,.18), rgba(255,139,31,.18));
      border:1px solid rgba(225,37,66,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:16px;
      font-weight:900;
      color:#a61735;
      flex:none;
    }
    .review-name{
      font-weight:900;
      line-height:1.2;
    }
    .review-time{
      display:block;
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
    }
    .review-text{
      margin:0;
      font-size:15px;
      line-height:1.8;
      color:var(--ink);
    }
    .review-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:auto;
    }

    .action-band{
      background:linear-gradient(180deg, #1c1917 0%, #12100f 100%);
      color:#fff;
      border-radius:10px;
      padding:24px;
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-strong);
    }
    .action-band .section-head{
      margin-bottom:16px;
    }
    .action-band .section-head h2,
    .action-band .section-head p{
      color:#fff;
    }
    .action-band .section-head p{
      color:rgba(255,255,255,.74);
    }
    .action-inner{
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      align-items:center;
    }
    .action-copy{
      min-width:0;
    }
    .action-copy .pill{
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.08);
      color:#fff;
    }
    .action-search{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .action-search .search-bar{
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.12);
      box-shadow:none;
      min-width:320px;
      width:min(420px, 100%);
    }
    .action-search .search-bar input{
      color:#fff;
    }
    .action-search .search-bar input::placeholder{
      color:rgba(255,255,255,.66);
    }
    .action-search .search-bar button{
      background:var(--accent-2);
    }
    .action-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:1fr;
      gap:0;
    }
    .accordion{
      background:transparent;
      margin-bottom:0;
    }
    .accordion-item{
      border:1px solid var(--line);
      border-radius:8px;
      overflow:hidden;
      background:var(--surface);
      box-shadow:var(--shadow);
      margin-bottom:12px;
    }
    .accordion-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:18px 18px;
      color:var(--ink);
      font-size:17px;
      line-height:1.4;
      font-weight:800;
      background:transparent;
    }
    .accordion-title::before{
      content:"+";
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:28px;
      height:28px;
      border-radius:8px;
      background:rgba(225,37,66,.08);
      color:#a61735;
      font-weight:900;
      margin-right:12px;
      flex:none;
    }
    .accordion-title:hover{
      background:rgba(255,255,255,.52);
    }
    .accordion-item.is-active .accordion-title::before{
      content:"–";
      background:rgba(225,37,66,.14);
    }
    .accordion-content{
      padding:0 18px 18px;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      border-top:1px solid var(--line);
    }

    .footer-band{
      margin-top:72px;
      background:linear-gradient(180deg, #1a1715 0%, #11100f 100%);
      color:#f5ece0;
      padding:36px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.15fr repeat(3, .9fr);
      gap:22px;
    }
    .footer-brand strong{
      display:block;
      font-size:20px;
      line-height:1.2;
      margin-bottom:10px;
      font-weight:900;
    }
    .footer-brand p{
      margin:0;
      color:rgba(245,236,224,.78);
      font-size:14px;
      line-height:1.8;
      max-width:34ch;
    }
    .footer-col h4{
      margin:0 0 12px;
      font-size:15px;
      line-height:1.3;
      font-weight:800;
      color:#fff;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(245,236,224,.78);
      font-size:14px;
      line-height:1.5;
      transition:color var(--transition), transform var(--transition);
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(2px);
    }
    .footer-note{
      grid-column:1 / -1;
      margin-top:4px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(245,236,224,.72);
      font-size:13px;
      line-height:1.6;
    }
    .footer-note a{
      color:#fff;
      text-decoration:underline;
      text-decoration-thickness:1px;
      text-underline-offset:2px;
    }

    .accordion-title,
    .accordion-content,
    .button,
    .search-bar input,
    .search-bar button,
    .cta-inline,
    .icon-button,
    .nav-links a,
    .mini-tag,
    .pill,
    .status-badge{
      letter-spacing:0;
    }

    @media (max-width: 1024px){
      .desktop-nav{
        gap:14px;
      }
      .search-bar{
        width:280px;
        min-width:280px;
      }
      .hero-grid,
      .promo-shell,
      .action-inner,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .hero-copy h1{
        max-width:none;
      }
      .promo-grid{
        grid-template-columns:1fr;
      }
      .side-panel{
        display:grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }
      .guide-item{
        grid-template-columns:48px minmax(0,1fr);
      }
      .guide-item .button{
        grid-column:2;
        justify-self:start;
      }
      .action-search{
        justify-content:flex-start;
      }
    }

    @media (max-width: 768px){
      .desktop-nav{
        display:none;
      }
      .mobile-tools{
        display:flex;
      }
      .header-inner{
        min-height:64px;
      }
      .category-hero{
        padding-top:18px;
      }
      .hero-grid{
        padding:20px;
        gap:18px;
      }
      .hero-lead{
        font-size:15px;
      }
      .hero-actions{
        flex-direction:column;
        align-items:flex-start;
      }
      .hero-actions .button,
      .hero-actions .cta-inline{
        width:100%;
        justify-content:center;
      }
      .filter-shell{
        padding:12px;
      }
      .filter-copy span{
        font-size:13px;
      }
      .section-block{
        padding-top:52px;
      }
      .side-panel{
        grid-template-columns:1fr;
      }
      .promo-grid{
        grid-template-columns:1fr;
      }
      .guide-item{
        grid-template-columns:48px minmax(0,1fr);
      }
      .guide-item .button{
        grid-column:2;
        width:max-content;
      }
      .action-band{
        padding:20px;
      }
      .action-search .search-bar{
        min-width:0;
        width:100%;
      }
      .footer-note{
        flex-direction:column;
        align-items:flex-start;
      }
    }

    @media (max-width: 520px){
      .container{
        width:min(var(--container), calc(100% - 20px));
      }
      .brand-name{
        white-space:normal;
        line-height:1.15;
      }
      .brand-sub{
        display:none;
      }
      .hero-grid{
        padding:16px;
      }
      .hero-strip,
      .promo-card,
      .info-box,
      .guide-item,
      .review-card,
      .accordion-item,
      .footer-band{
        border-radius:8px;
      }
      h1{
        font-size:clamp(30px, 8vw, 36px);
      }
      .hero-lead,
      .section-head p,
      .card-copy,
      .guide-content p,
      .review-text,
      .accordion-content{
        font-size:14px;
      }
      .search-bar{
        min-width:0;
        width:100%;
      }
      .search-bar button{
        padding:0 12px;
      }
      .filter-tabs{
        gap:8px;
      }
      .filter-tabs .button{
        min-height:38px;
        padding:0 12px;
      }
      .entry-grid{
        grid-template-columns:1fr 1fr;
      }
      .stat-grid{
        grid-template-columns:1fr 1fr;
      }
      .guide-item{
        gap:12px;
      }
      .guide-num{
        width:48px;
        height:48px;
        font-size:18px;
      }
      .card-title{
        font-size:18px;
      }
      .accordion-title{
        padding:16px 14px;
        font-size:16px;
      }
      .accordion-content{
        padding:0 14px 16px;
      }
    }
