/* roulang page: index */
:root{
      --bg: #f7f0e7;
      --bg-soft: #fff8f1;
      --panel: rgba(255,255,255,.84);
      --panel-strong: #fffaf5;
      --panel-dark: #241915;
      --card: #fffdf9;
      --text: #241914;
      --muted: #6f6258;
      --line: #e9ddd0;
      --accent: #e15a2a;
      --accent-2: #f39a2f;
      --accent-3: #c93f2a;
      --success: #2d8b6f;
      --shadow: 0 18px 38px rgba(57, 31, 18, .08);
      --shadow-soft: 0 10px 24px rgba(57, 31, 18, .06);
      --radius: 8px;
      --radius-sm: 6px;
      --space: 20px;
      --max: 1220px;
      --transition: 180ms ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: -apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--text);
      line-height:1.6;
      background:
        radial-gradient(circle at top left, rgba(241, 163, 87, .16), transparent 30%),
        radial-gradient(circle at right 8%, rgba(225, 90, 42, .10), transparent 24%),
        linear-gradient(180deg, #fcf7f1 0%, var(--bg) 48%, #f6efe7 100%);
      min-height:100vh;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(rgba(255,255,255,.22), rgba(255,255,255,.22)),
        linear-gradient(90deg, rgba(164, 92, 52, .03) 1px, transparent 1px),
        linear-gradient(rgba(164, 92, 52, .03) 1px, transparent 1px);
      background-size:auto, 24px 24px, 24px 24px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 100%);
      opacity:.55;
    }

    a{
      color:inherit;
      text-decoration:none;
      transition: color var(--transition), transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    a:hover{color:var(--accent)}
    img{max-width:100%;display:block}
    button, input{
      font:inherit;
    }
    button{
      cursor:pointer;
      border:0;
      outline:none;
    }
    :focus-visible{
      outline: 3px solid rgba(225, 90, 42, .22);
      outline-offset: 2px;
    }

    .site-wrap{
      position:relative;
      z-index:1;
    }

    .container-max{
      width:min(var(--max), calc(100% - 32px));
      margin:0 auto;
    }

    .top-shell{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(12px);
      background: rgba(252, 248, 243, .78);
      border-bottom:1px solid rgba(233, 221, 208, .84);
    }

    .top-shell-inner{
      width:min(var(--max), calc(100% - 24px));
      margin:0 auto;
      padding:14px 0;
      display:grid;
      grid-template-columns: auto 1fr auto;
      gap:14px;
      align-items:center;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
    }

    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      background:
        linear-gradient(135deg, var(--accent) 0%, #ff8e2f 48%, #ffb65c 100%);
      box-shadow: 0 10px 22px rgba(225, 90, 42, .25);
      position:relative;
      flex:0 0 auto;
    }

    .brand-mark:before,
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:auto;
      border-radius:999px;
      background:rgba(255,255,255,.9);
    }
    .brand-mark:before{
      width:12px;height:12px;left:9px;top:8px;
      box-shadow:18px 2px 0 rgba(255,255,255,.9);
    }
    .brand-mark:after{
      width:18px;height:4px;left:12px;bottom:11px;
      opacity:.95;
    }

    .brand-copy strong{
      display:block;
      font-size:16px;
      line-height:1.15;
      letter-spacing:.2px;
    }
    .brand-copy span{
      display:block;
      font-size:12px;
      color:var(--muted);
      margin-top:3px;
    }

    .nav-panel{
      background: linear-gradient(180deg, rgba(36,25,21,.98), rgba(54,37,29,.98));
      border:1px solid rgba(255,255,255,.06);
      border-radius: 16px;
      padding:8px;
      box-shadow: var(--shadow);
      display:flex;
      gap:8px;
      align-items:center;
      overflow:auto;
      scrollbar-width: thin;
    }
    .nav-panel::-webkit-scrollbar{height:6px}
    .nav-panel::-webkit-scrollbar-thumb{background:rgba(255,255,255,.16);border-radius:999px}
    .nav-card{
      flex:0 0 auto;
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border-radius:12px;
      color:#fef7ef;
      background: rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.06);
      min-width:132px;
    }
    .nav-card i{
      width:28px;height:28px;
      border-radius:10px;
      display:grid;place-items:center;
      color:#241915;
      background: linear-gradient(180deg, #ffd77f, #f7a93f);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
      font-size:14px;
      flex:0 0 auto;
    }
    .nav-card strong{
      display:block;
      font-size:14px;
      line-height:1.1;
    }
    .nav-card span{
      display:block;
      font-size:11px;
      color:rgba(255,255,255,.68);
      margin-top:2px;
    }
    .nav-card:hover{
      transform: translateY(-1px);
      border-color: rgba(255, 214, 127, .35);
      box-shadow: 0 10px 18px rgba(0,0,0,.16);
    }
    .nav-card.active{
      background: linear-gradient(180deg, rgba(225,90,42,.18), rgba(225,90,42,.08));
      border-color: rgba(255, 190, 141, .32);
      box-shadow: inset 0 0 0 1px rgba(255, 191, 137, .08);
    }

    .nav-cta{
      justify-self:end;
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:13px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--accent) 0%, #ee7b27 48%, #ffb045 100%);
      color:#fff;
      font-weight:700;
      box-shadow: 0 16px 28px rgba(225, 90, 42, .22);
      white-space:nowrap;
    }
    .nav-cta:hover{
      color:#fff;
      transform: translateY(-1px);
      box-shadow: 0 18px 30px rgba(225, 90, 42, .28);
    }

    main{
      padding: 18px 0 44px;
    }

    .hero{
      padding: 18px 0 14px;
    }

    .countdown-strip{
      background: linear-gradient(135deg, #201713 0%, #2d201a 100%);
      color:#fff;
      border-radius: 20px;
      padding: 14px 18px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,.06);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .countdown-label{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:220px;
    }
    .countdown-label .dot{
      width:10px;height:10px;border-radius:50%;
      background:#ffb84c;
      box-shadow:0 0 0 6px rgba(255,184,76,.12);
      flex:0 0 auto;
    }
    .countdown-label strong{
      font-size:15px;
      letter-spacing:.2px;
    }
    .countdown-label span{
      display:block;
      font-size:12px;
      color:rgba(255,255,255,.66);
      margin-top:1px;
    }
    .countdown-time{
      display:flex;
      align-items:baseline;
      gap:10px;
      font-variant-numeric: tabular-nums;
      white-space:nowrap;
    }
    .countdown-time b{
      font-size:30px;
      line-height:1;
      letter-spacing:1px;
      color:#ffd98a;
    }
    .countdown-time small{
      color:rgba(255,255,255,.7);
      font-size:12px;
    }
    .countdown-link{
      padding:10px 14px;
      border-radius:999px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.10);
      color:#fff;
      font-size:13px;
      white-space:nowrap;
    }
    .countdown-link:hover{
      background: rgba(255,255,255,.14);
      color:#fff;
    }

    .hero-card{
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,251,246,.86)),
        linear-gradient(135deg, rgba(255, 218, 179, .12), rgba(225, 90, 42, .05));
      border:1px solid rgba(233, 221, 208, .9);
      box-shadow: var(--shadow);
      overflow:hidden;
      padding: 26px;
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items:stretch;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(225, 90, 42, .08);
      color: #b84624;
      font-size:12px;
      font-weight:700;
      letter-spacing:.5px;
      margin-bottom:14px;
    }
    .eyebrow:before{
      content:"";
      width:8px;height:8px;border-radius:999px;background:var(--accent);
      box-shadow:0 0 0 5px rgba(225,90,42,.10);
    }

    .hero-title{
      font-size: clamp(32px, 4vw, 56px);
      line-height:1.05;
      margin:0;
      letter-spacing:-.8px;
    }
    .hero-desc{
      font-size:16px;
      color:var(--muted);
      margin:16px 0 18px;
      max-width: 620px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:18px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:46px;
      padding:0 18px;
      border-radius: 999px;
      border:1px solid transparent;
      font-weight:700;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    }
    .btn:hover{transform: translateY(-1px)}
    .btn-primary{
      background: linear-gradient(135deg, var(--accent) 0%, #ed7a26 48%, #ffb14c 100%);
      color:#fff;
      box-shadow: 0 14px 24px rgba(225, 90, 42, .18);
    }
    .btn-primary:hover{color:#fff; box-shadow: 0 16px 26px rgba(225, 90, 42, .24)}
    .btn-secondary{
      background:#fff;
      border-color: var(--line);
      color: var(--text);
      box-shadow: var(--shadow-soft);
    }
    .btn-secondary:hover{
      border-color: rgba(225,90,42,.28);
      color:var(--accent);
    }

    .hero-stats{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:10px;
    }
    .stat{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(233, 221, 208, .96);
      border-radius: 16px;
      padding:14px 14px 13px;
      box-shadow: 0 10px 16px rgba(37, 25, 20, .04);
    }
    .stat b{
      display:block;
      font-size:22px;
      line-height:1.1;
      color:var(--accent-3);
      margin-bottom:4px;
    }
    .stat span{
      display:block;
      font-size:12px;
      color:var(--muted);
    }

    .hero-side{
      background: linear-gradient(180deg, #2a1d18 0%, #34241c 100%);
      color:#fff;
      border-radius: 20px;
      padding: 18px;
      display:flex;
      flex-direction:column;
      gap:14px;
      border:1px solid rgba(255,255,255,.06);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
    }
    .side-status{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      justify-content:space-between;
    }
    .side-status .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      color:#fff;
      font-size:12px;
      white-space:nowrap;
    }
    .pill i{
      color:#ffbf72;
    }

    .icon-matrix{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:10px;
    }
    .icon-card{
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      border-radius: 14px;
      padding:14px 12px 12px;
      min-height:92px;
      display:flex;
      flex-direction:column;
      gap:10px;
      justify-content:space-between;
      transition: transform var(--transition), border-color var(--transition), background var(--transition);
    }
    .icon-card:hover{
      transform: translateY(-2px);
      border-color: rgba(255, 208, 138, .24);
      background: rgba(255,255,255,.08);
    }
    .icon-badge{
      width:34px;height:34px;border-radius:12px;
      display:grid;place-items:center;
      background: linear-gradient(180deg, #ffd66d, #f19f36);
      color:#261914;
      box-shadow: 0 10px 18px rgba(0,0,0,.16);
      font-size:15px;
    }
    .icon-card strong{
      font-size:13px;
      line-height:1.2;
      color:#fff;
    }
    .icon-card span{
      font-size:11px;
      color: rgba(255,255,255,.66);
      line-height:1.35;
    }

    .side-bottom{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .quote-bubble,
    .avatar-wall{
      background: rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.08);
      border-radius: 16px;
      padding:14px;
      min-height:138px;
    }
    .quote-bubble h4,
    .avatar-wall h4{
      margin:0 0 8px;
      font-size:13px;
      color:#ffdca2;
    }
    .quote-bubble p{
      margin:0;
      font-size:13px;
      color: rgba(255,255,255,.84);
      line-height:1.7;
    }
    .bubble-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:10px;
    }
    .bubble-tags span{
      display:inline-flex;
      align-items:center;
      gap:5px;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.09);
      border:1px solid rgba(255,255,255,.08);
      font-size:11px;
      color:#fff;
    }
    .avatar-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:8px;
    }
    .avatar{
      aspect-ratio:1;
      border-radius:50%;
      display:grid;
      place-items:center;
      background: linear-gradient(135deg, #ffcf6e, #f2842f);
      color:#261914;
      font-weight:800;
      font-size:13px;
      box-shadow: 0 8px 16px rgba(0,0,0,.18);
    }
    .avatar:nth-child(2n){
      background: linear-gradient(135deg, #ffdca8, #ffb24a);
    }
    .avatar:nth-child(3n){
      background: linear-gradient(135deg, #f8eddc, #f3b57c);
    }
    .avatar-note{
      margin-top:10px;
      color: rgba(255,255,255,.72);
      font-size:12px;
      line-height:1.6;
    }

    .section{
      padding: 22px 0 6px;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size: clamp(24px, 2.2vw, 34px);
      line-height:1.15;
      letter-spacing:-.4px;
    }
    .section-head p{
      margin:0;
      max-width:640px;
      color:var(--muted);
      font-size:14px;
    }

    .directory-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .entry-card{
      background: var(--panel);
      border:1px solid var(--line);
      border-radius: 18px;
      padding:16px;
      box-shadow: var(--shadow-soft);
      min-height: 214px;
      display:flex;
      flex-direction:column;
      gap:12px;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .entry-card:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow);
      border-color: rgba(225,90,42,.22);
    }
    .entry-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .entry-icon{
      width:44px;height:44px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background: linear-gradient(180deg, #ffe08f, #f3a03a);
      color:#261914;
      font-size:18px;
      flex:0 0 auto;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.38);
    }
    .entry-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      font-size:11px;
      color:#b24b27;
      background: rgba(225,90,42,.08);
      border:1px solid rgba(225,90,42,.1);
      padding:6px 9px;
      border-radius:999px;
      white-space:nowrap;
    }
    .entry-card h3{
      margin:0;
      font-size:18px;
      line-height:1.2;
    }
    .entry-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      flex:1 1 auto;
    }
    .entry-links{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .mini-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 11px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      font-size:12px;
      color:var(--text);
    }
    .mini-link:hover{
      border-color: rgba(225,90,42,.22);
      color:var(--accent);
    }

    .filter-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
    }
    .filter-chip{
      padding:10px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--text);
      font-size:13px;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .filter-chip strong{
      font-weight:700;
    }
    .filter-chip:hover{
      border-color: rgba(225,90,42,.26);
      transform: translateY(-1px);
      color:var(--accent);
    }
    .filter-chip.active{
      background: linear-gradient(135deg, rgba(225,90,42,.12), rgba(243,154,47,.12));
      border-color: rgba(225,90,42,.18);
      color: #b24426;
    }

    .value-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .value-card{
      background: var(--card);
      border:1px solid var(--line);
      border-radius: 16px;
      padding:18px 16px 16px;
      box-shadow: var(--shadow-soft);
      min-height: 188px;
    }
    .value-icon{
      width:42px;height:42px;
      border-radius:14px;
      background: linear-gradient(180deg, #ffe3a5, #f4a645);
      color:#241915;
      display:grid;
      place-items:center;
      font-size:17px;
      margin-bottom:12px;
    }
    .value-card h3{
      margin:0 0 8px;
      font-size:17px;
      line-height:1.25;
    }
    .value-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }

    .mosaic-wrap{
      display:grid;
      grid-template-columns: 1.3fr .7fr;
      gap:14px;
      align-items:stretch;
    }
    .mosaic-grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
      min-height: 468px;
    }
    .mosaic-tile{
      position:relative;
      border-radius: 18px;
      overflow:hidden;
      border:1px solid rgba(233,221,208,.92);
      background:
        linear-gradient(135deg, rgba(225,90,42,.95), rgba(255,184,76,.88));
      box-shadow: var(--shadow-soft);
      min-height:140px;
      padding:16px;
      color:#fff;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
    }
    .mosaic-tile:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 30%),
        linear-gradient(180deg, transparent, rgba(0,0,0,.22));
      pointer-events:none;
    }
    .mosaic-tile .tile-kicker{
      position:relative;
      display:inline-flex;
      align-items:center;
      gap:7px;
      font-size:11px;
      letter-spacing:.3px;
      margin-bottom:8px;
      opacity:.96;
    }
    .mosaic-tile h3{
      position:relative;
      margin:0 0 4px;
      font-size:18px;
      line-height:1.2;
    }
    .mosaic-tile p{
      position:relative;
      margin:0;
      font-size:12px;
      line-height:1.7;
      color: rgba(255,255,255,.88);
      max-width: 260px;
    }
    .tile-a{grid-column:1 / span 7; grid-row:1 / span 2; background: linear-gradient(135deg, #2d2019, #4a2d21);}
    .tile-b{grid-column:8 / span 5; grid-row:1 / span 1; background: linear-gradient(135deg, #e45d2b, #f39b2f);}
    .tile-c{grid-column:8 / span 5; grid-row:2 / span 1; background: linear-gradient(135deg, #f0b03c, #cf5f2d);}
    .tile-d{grid-column:1 / span 4; grid-row:3 / span 1; background: linear-gradient(135deg, #c95d2d, #f08f2d);}
    .tile-e{grid-column:5 / span 8; grid-row:3 / span 1; background: linear-gradient(135deg, #3b2a23, #5a3528);}
    .tile-stats{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:12px;
      position:relative;
    }
    .tile-stat{
      background: rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      padding:6px 10px;
      font-size:11px;
      display:inline-flex;
      align-items:center;
      gap:6px;
    }

    .mosaic-side{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .side-card{
      background: var(--panel);
      border:1px solid var(--line);
      border-radius: 18px;
      padding:16px;
      box-shadow: var(--shadow-soft);
    }
    .side-card h3{
      margin:0 0 8px;
      font-size:17px;
    }
    .side-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }
    .bubble-list{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:14px;
    }
    .bubble-item{
      background:#fff;
      border:1px solid var(--line);
      border-radius: 16px;
      padding:12px 13px;
      box-shadow: 0 8px 16px rgba(36,25,20,.04);
    }
    .bubble-item strong{
      display:block;
      font-size:13px;
      margin-bottom:4px;
    }
    .bubble-item span{
      color:var(--muted);
      font-size:12px;
      line-height:1.6;
    }
    .avatar-wall-light{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:10px;
    }
    .avatar-light{
      width:42px;height:42px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background: linear-gradient(135deg, #f5c16b, #ea7b2b);
      color:#241915;
      font-weight:800;
      font-size:13px;
      box-shadow: 0 10px 18px rgba(225, 90, 42, .16);
    }

    .news-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .news-list{
      background: var(--panel);
      border:1px solid var(--line);
      border-radius: 18px;
      overflow:hidden;
      box-shadow: var(--shadow-soft);
    }
    .news-item{
      display:grid;
      grid-template-columns: auto 1fr auto;
      gap:12px;
      align-items:start;
      padding:16px 16px;
      border-top:1px solid var(--line);
      background: rgba(255,255,255,.72);
    }
    .news-item:first-child{border-top:0}
    .news-rank{
      width:32px;height:32px;
      border-radius:10px;
      display:grid;
      place-items:center;
      background: linear-gradient(180deg, #ffe08d, #f3a13d);
      color:#241915;
      font-weight:800;
      font-size:13px;
      flex:0 0 auto;
    }
    .news-copy h3{
      margin:0 0 4px;
      font-size:15px;
      line-height:1.35;
    }
    .news-copy p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .news-meta{
      text-align:right;
      white-space:nowrap;
      font-size:11px;
      color:#a07152;
    }
    .news-meta span{
      display:inline-block;
      margin-top:6px;
      padding:5px 8px;
      background: rgba(225,90,42,.08);
      border-radius:999px;
    }

    .news-side{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .hot-card{
      background: linear-gradient(180deg, #2a1d18 0%, #3b281f 100%);
      color:#fff;
      border-radius:18px;
      padding:18px;
      border:1px solid rgba(255,255,255,.06);
      box-shadow: var(--shadow);
    }
    .hot-card h3{
      margin:0 0 8px;
      font-size:18px;
    }
    .hot-card p{
      margin:0;
      color:rgba(255,255,255,.76);
      font-size:13px;
      line-height:1.8;
    }
    .hot-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .hot-tags .tag{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      font-size:11px;
      color:#fff;
    }
    .quick-link-list{
      display:grid;
      gap:10px;
    }
    .quick-link-card{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:16px;
      padding:14px 15px;
      box-shadow: var(--shadow-soft);
    }
    .quick-link-card strong{
      display:block;
      font-size:14px;
      margin-bottom:3px;
    }
    .quick-link-card span{
      display:block;
      font-size:12px;
      color:var(--muted);
    }
    .quick-link-card i{
      color:var(--accent);
      font-size:16px;
    }

    .claim-card{
      background:
        linear-gradient(135deg, rgba(36,25,21,.96), rgba(59,40,31,.96));
      color:#fff;
      border-radius: 24px;
      padding: 24px;
      box-shadow: var(--shadow);
      border:1px solid rgba(255,255,255,.06);
    }
    .claim-card .section-head{
      align-items:center;
      margin-bottom:18px;
    }
    .claim-card .section-head h2,
    .claim-card .section-head p{
      color:#fff;
    }
    .claim-card .section-head p{
      color: rgba(255,255,255,.72);
    }
    .claim-grid{
      display:grid;
      grid-template-columns: 1fr auto;
      gap:14px;
      align-items:center;
    }
    .claim-form{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:4px;
    }
    .claim-form input{
      flex:1 1 320px;
      min-height:50px;
      padding:0 16px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.08);
      color:#fff;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    }
    .claim-form input::placeholder{color:rgba(255,255,255,.58)}
    .claim-form button{
      min-height:50px;
      padding:0 18px;
      border-radius:14px;
      background: linear-gradient(135deg, #ffb84d 0%, #ec7a27 100%);
      color:#241915;
      font-weight:800;
      box-shadow: 0 14px 22px rgba(236, 122, 39, .22);
    }
    .claim-form button:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 26px rgba(236, 122, 39, .28);
    }
    .claim-note{
      display:grid;
      gap:10px;
      align-content:start;
    }
    .claim-note .mini{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 11px;
      border-radius:999px;
      background: rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      color:#fff;
      font-size:12px;
      white-space:nowrap;
    }
    .claim-status{
      margin-top:14px;
      min-height:24px;
      color:#ffdca2;
      font-size:13px;
    }

    .faq-grid{
      display:grid;
      gap:12px;
    }
    .faq-item{
      background: var(--panel);
      border:1px solid var(--line);
      border-radius: 16px;
      overflow:hidden;
      box-shadow: var(--shadow-soft);
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:16px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:700;
      font-size:15px;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary span{
      display:inline-flex;
      align-items:center;
      gap:10px;
    }
    .faq-item summary i{
      color:var(--accent);
      transition: transform var(--transition);
    }
    .faq-item[open] summary i{
      transform: rotate(180deg);
    }
    .faq-body{
      padding:0 16px 16px;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
      border-top:1px solid var(--line);
    }

    .footer{
      margin-top: 24px;
      padding: 24px 0 34px;
    }
    .footer-card{
      background: linear-gradient(180deg, #241915, #2c1f19);
      color:#fff;
      border-radius: 24px;
      padding: 24px;
      border:1px solid rgba(255,255,255,.06);
      box-shadow: var(--shadow);
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.1fr .7fr .6fr;
      gap:16px;
      align-items:start;
    }
    .footer-brand strong{
      display:block;
      font-size:22px;
      line-height:1.15;
      margin-bottom:8px;
    }
    .footer-brand p{
      margin:0;
      color:rgba(255,255,255,.74);
      font-size:13px;
      line-height:1.8;
      max-width:520px;
    }
    .footer-col h4{
      margin:0 0 10px;
      font-size:14px;
      color:#ffdca2;
    }
    .footer-links{
      display:grid;
      gap:8px;
    }
    .footer-links a{
      color:rgba(255,255,255,.82);
      font-size:13px;
    }
    .footer-links a:hover{color:#fff}
    .copyright{
      margin-top:18px;
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.08);
      color:rgba(255,255,255,.68);
      font-size:12px;
      line-height:1.7;
    }

    .toast{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:80;
      background: #241915;
      color:#fff;
      border-radius: 14px;
      padding:14px 16px;
      box-shadow: 0 18px 30px rgba(0,0,0,.18);
      border:1px solid rgba(255,255,255,.08);
      transform: translateY(22px);
      opacity:0;
      pointer-events:none;
      transition: opacity var(--transition), transform var(--transition);
      max-width:320px;
      font-size:13px;
      line-height:1.7;
    }
    .toast.show{
      opacity:1;
      transform: translateY(0);
    }

    .section-anchor{
      position:relative;
      top:-92px;
      display:block;
      height:0;
      width:0;
      visibility:hidden;
    }

    @media (max-width: 1180px){
      .top-shell-inner{
        grid-template-columns: 1fr;
      }
      .brand{min-width:0}
      .nav-cta{justify-self:start}
      .hero-grid,
      .mosaic-wrap,
      .news-grid,
      .claim-grid,
      .footer-grid{
        grid-template-columns: 1fr;
      }
      .directory-grid,
      .value-grid{
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
      .mosaic-grid{min-height:auto}
      .tile-a,.tile-b,.tile-c,.tile-d,.tile-e{
        grid-column:auto;
        grid-row:auto;
        min-height:160px;
      }
    }

    @media (max-width: 768px){
      main{padding-top:12px}
      .container-max{width:min(var(--max), calc(100% - 20px))}
      .hero-card,
      .claim-card,
      .footer-card{
        border-radius: 20px;
        padding:18px;
      }
      .countdown-strip{
        padding: 12px 14px;
        align-items:flex-start;
        flex-direction:column;
      }
      .countdown-time b{font-size:24px}
      .hero-title{font-size: clamp(28px, 10vw, 40px)}
      .hero-stats,
      .value-grid,
      .directory-grid{
        grid-template-columns: 1fr;
      }
      .icon-matrix{
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
      .side-bottom{
        grid-template-columns:1fr;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .news-item{
        grid-template-columns: auto 1fr;
      }
      .news-meta{
        grid-column: 1 / -1;
        text-align:left;
      }
      .nav-panel{
        padding:7px;
      }
      .nav-card{
        min-width: 118px;
        padding:11px 12px;
      }
    }

    @media (max-width: 520px){
      .top-shell-inner{width:calc(100% - 14px); padding:10px 0}
      .nav-panel{gap:6px}
      .nav-card{min-width:104px}
      .nav-card strong{font-size:13px}
      .nav-card span{display:none}
      .nav-card i{width:24px;height:24px;border-radius:8px;font-size:12px}
      .nav-cta{
        width:100%;
        justify-content:center;
      }
      .hero-card,
      .claim-card,
      .footer-card{
        padding:14px;
      }
      .hero-desc,
      .section-head p,
      .value-card p,
      .entry-card p,
      .news-copy p,
      .faq-body{
        font-size:12px;
      }
      .hero-actions,
      .filter-row,
      .entry-links,
      .hot-tags,
      .bubble-tags{
        gap:8px;
      }
      .btn{
        width:100%;
      }
      .claim-form input,
      .claim-form button{
        width:100%;
      }
      .icon-matrix{
        grid-template-columns: 1fr 1fr;
      }
      .avatar-grid{
        grid-template-columns: repeat(4, minmax(0,1fr));
      }
      .mosaic-grid{
        gap:10px;
      }
      .mosaic-tile{
        min-height: 150px;
        padding:14px;
      }
      .news-item{
        padding:14px 12px;
      }
    }

/* roulang page: category2 */
:root {
      --bg: #f7f1e8;
      --bg-soft: #fffaf2;
      --panel: #221f1b;
      --panel-2: #302a24;
      --card: #ffffff;
      --card-warm: #fff4e2;
      --primary: #e34b2f;
      --primary-dark: #bd341f;
      --accent: #f6a623;
      --accent-soft: #ffe1a7;
      --text: #211d19;
      --muted: #71685f;
      --light: #fbf6ed;
      --line: #eadcc8;
      --line-dark: rgba(255,255,255,.16);
      --green: #2f8f6b;
      --radius: 8px;
      --radius-sm: 6px;
      --shadow: 0 16px 34px rgba(53, 37, 20, .11);
      --shadow-soft: 0 8px 20px rgba(53, 37, 20, .08);
      --container: 1180px;
      --gap: 24px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      line-height: 1.65;
      background:
        linear-gradient(90deg, rgba(227,75,47,.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(246,166,35,.055) 1px, transparent 1px),
        var(--bg);
      background-size: 34px 34px;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 3px solid rgba(246,166,35,.55);
      outline-offset: 3px;
    }

    .container-max {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .top-shell {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 14px 0;
      background: rgba(247,241,232,.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(234,220,200,.7);
    }

    .top-shell-inner {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg-soft);
      box-shadow: var(--shadow-soft);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 245px;
      padding: 8px 10px;
      border-radius: var(--radius-sm);
    }

    .brand:hover {
      background: #fff1dc;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: var(--radius-sm);
      background:
        linear-gradient(135deg, var(--primary), var(--accent));
      position: relative;
      flex: 0 0 auto;
      box-shadow: inset 0 -10px 18px rgba(0,0,0,.12);
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 9px;
      border: 2px solid rgba(255,255,255,.78);
      border-radius: 50%;
      border-left-color: transparent;
    }

    .brand-copy {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .brand-copy strong {
      font-size: 15px;
      line-height: 1.2;
      font-weight: 900;
      color: var(--text);
    }

    .brand-copy span {
      font-size: 12px;
      color: var(--muted);
    }

    .nav-panel {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      padding: 6px;
      border-radius: var(--radius);
      background: var(--panel);
    }

    .nav-card {
      min-height: 58px;
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 9px 10px;
      border: 1px solid var(--line-dark);
      border-radius: var(--radius-sm);
      color: rgba(255,255,255,.82);
      background: rgba(255,255,255,.055);
    }

    .nav-card i {
      color: var(--accent);
      font-size: 17px;
      width: 20px;
      text-align: center;
      flex: 0 0 auto;
    }

    .nav-card span {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .nav-card strong {
      font-size: 14px;
      line-height: 1.15;
      color: #fff;
      white-space: nowrap;
    }

    .nav-card span span {
      font-size: 12px;
      color: rgba(255,255,255,.58);
      white-space: nowrap;
    }

    .nav-card:hover,
    .nav-card.active {
      transform: translateY(-1px);
      background: #fff4e2;
      color: var(--text);
      border-color: var(--accent);
      box-shadow: 0 10px 18px rgba(0,0,0,.14);
    }

    .nav-card:hover strong,
    .nav-card.active strong {
      color: var(--text);
    }

    .nav-card:hover span span,
    .nav-card.active span span {
      color: var(--muted);
    }

    .nav-cta {
      min-height: 58px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 18px;
      border-radius: var(--radius-sm);
      font-weight: 900;
      color: #fff;
      background: var(--primary);
      border: 1px solid var(--primary-dark);
      box-shadow: 0 12px 22px rgba(227,75,47,.26);
      white-space: nowrap;
    }

    .nav-cta:hover {
      color: #fff;
      background: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 16px 28px rgba(227,75,47,.32);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 58px 0;
    }

    .section.tight {
      padding: 34px 0;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 22px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 10px;
      border-radius: 999px;
      color: var(--primary-dark);
      background: #ffe7cf;
      border: 1px solid #ffd2aa;
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .section h2 {
      margin: 0;
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.18;
      font-weight: 950;
      letter-spacing: 0;
    }

    .section-desc {
      max-width: 620px;
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 15px;
    }

    .status-strip {
      padding: 18px 0 0;
    }

    .status-board {
      display: grid;
      grid-template-columns: 1.2fr .8fr auto;
      align-items: center;
      gap: 14px;
      padding: 14px;
      border-radius: var(--radius);
      background: var(--panel);
      color: #fff;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,.12);
    }

    .status-label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
    }

    .status-label i {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--panel);
      background: var(--accent);
      border-radius: var(--radius-sm);
    }

    .timer-mini {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .timer-mini span {
      display: block;
      padding: 7px 8px;
      text-align: center;
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      font-size: 13px;
      color: rgba(255,255,255,.72);
    }

    .timer-mini strong {
      display: block;
      font-size: 22px;
      line-height: 1;
      color: #fff;
    }

    .strip-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 14px;
      border-radius: var(--radius-sm);
      background: var(--accent);
      color: #271b0a;
      font-weight: 900;
    }

    .strip-link:hover {
      background: #ffc04d;
      color: #271b0a;
      transform: translateY(-1px);
    }

    .hero {
      padding: 34px 0 48px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(340px, .58fr);
      gap: 24px;
      align-items: stretch;
    }

    .hero-title-panel {
      position: relative;
      min-height: 430px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 34px;
      border-radius: var(--radius);
      color: #fff;
      background:
        linear-gradient(135deg, rgba(34,31,27,.96), rgba(48,42,36,.92)),
        radial-gradient(circle at 80% 20%, rgba(246,166,35,.28), transparent 34%);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-title-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .6;
      pointer-events: none;
    }

    .hero-copy,
    .hero-actions,
    .hero-meta-row {
      position: relative;
      z-index: 1;
    }

    .hero-copy h1 {
      margin: 12px 0 14px;
      max-width: 760px;
      font-size: clamp(34px, 6vw, 64px);
      line-height: 1.03;
      font-weight: 950;
      letter-spacing: 0;
    }

    .hero-copy p {
      max-width: 720px;
      margin: 0;
      color: rgba(255,255,255,.76);
      font-size: 17px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 7px 11px;
      border-radius: 999px;
      color: #fff;
      background: rgba(227,75,47,.9);
      border: 1px solid rgba(255,255,255,.22);
      font-weight: 900;
      font-size: 13px;
    }

    .hero-meta-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 26px;
    }

    .meta-tile {
      padding: 12px;
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
    }

    .meta-tile strong {
      display: block;
      font-size: 24px;
      line-height: 1.1;
      color: var(--accent);
    }

    .meta-tile span {
      display: block;
      margin-top: 4px;
      font-size: 13px;
      color: rgba(255,255,255,.66);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      font-weight: 900;
      line-height: 1;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }

    .btn-primary {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary-dark);
      box-shadow: 0 14px 24px rgba(227,75,47,.26);
    }

    .btn-primary:hover {
      color: #fff;
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 18px 30px rgba(227,75,47,.32);
    }

    .btn-secondary {
      color: var(--text);
      background: var(--bg-soft);
      border-color: var(--line);
    }

    .btn-secondary:hover {
      color: var(--primary-dark);
      border-color: var(--accent);
      background: #fff3dc;
      transform: translateY(-2px);
    }

    .btn-dark {
      color: #fff;
      background: var(--panel);
      border-color: var(--panel);
    }

    .btn-dark:hover {
      color: #fff;
      background: #3a3129;
      transform: translateY(-1px);
    }

    .group-panel {
      display: grid;
      gap: 14px;
    }

    .group-card {
      padding: 18px;
      border-radius: var(--radius);
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .group-top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      margin-bottom: 14px;
    }

    .group-top strong {
      font-size: 18px;
      font-weight: 950;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 9px;
      border-radius: 999px;
      background: #ffe7cf;
      color: var(--primary-dark);
      border: 1px solid #ffd1aa;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .join-count {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      margin: 12px 0;
    }

    .join-count strong {
      font-size: 46px;
      line-height: .9;
      font-weight: 950;
      color: var(--primary);
    }

    .join-count span {
      color: var(--muted);
      font-size: 14px;
    }

    .progress-line {
      height: 12px;
      border-radius: 999px;
      overflow: hidden;
      background: #efe2d2;
      margin: 14px 0 8px;
    }

    .progress-line span {
      display: block;
      width: 82%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .group-note {
      display: flex;
      justify-content: space-between;
      color: var(--muted);
      font-size: 13px;
    }

    .avatar-wall {
      display: flex;
      align-items: center;
      gap: 0;
      margin: 15px 0;
    }

    .avatar {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: -8px;
      border-radius: 50%;
      color: #fff;
      border: 3px solid var(--card);
      font-weight: 900;
      font-size: 13px;
      background: var(--primary);
    }

    .avatar:nth-child(2) { background: var(--accent); color: #2d1c06; }
    .avatar:nth-child(3) { background: var(--green); }
    .avatar:nth-child(4) { background: #6b5b4f; }
    .avatar:nth-child(5) { background: #d16f2c; }

    .bubble {
      padding: 14px;
      border-radius: var(--radius);
      background: var(--card-warm);
      border: 1px solid #f0d7b2;
      color: #4b3a28;
      font-size: 14px;
    }

    .bubble strong {
      color: var(--primary-dark);
    }

    .hero-checks {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .hero-checks li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 12px;
      border-radius: var(--radius-sm);
      background: var(--card);
      border: 1px solid var(--line);
    }

    .hero-checks i {
      color: var(--green);
      margin-top: 4px;
    }

    .quick-filter {
      padding: 18px;
      border-radius: var(--radius);
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .filter-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .filter-title h2 {
      margin: 0;
      font-size: 22px;
      font-weight: 950;
    }

    .button-group.filter-buttons {
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .button-group.filter-buttons .button {
      margin: 0;
      padding: 10px 12px;
      border-radius: var(--radius-sm);
      color: var(--text);
      background: #fff8ee;
      border: 1px solid var(--line);
      font-size: 13px;
      font-weight: 900;
    }

    .button-group.filter-buttons .button:hover,
    .button-group.filter-buttons .button.is-active {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary-dark);
    }

    .compare-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 22px;
      align-items: start;
    }

    .compare-list {
      display: grid;
      gap: 14px;
    }

    .compare-item {
      display: grid;
      grid-template-columns: 148px minmax(0, 1fr) 150px;
      gap: 16px;
      min-height: 158px;
      padding: 14px;
      border-radius: var(--radius);
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .compare-item:hover {
      transform: translateY(-2px);
      border-color: #f1c07f;
      box-shadow: var(--shadow);
    }

    .thumb {
      min-height: 130px;
      border-radius: var(--radius-sm);
      background:
        linear-gradient(135deg, rgba(227,75,47,.88), rgba(246,166,35,.86)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.16) 0 8px, transparent 8px 18px);
      position: relative;
      overflow: hidden;
    }

    .thumb::before,
    .thumb::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      border: 2px solid rgba(255,255,255,.55);
    }

    .thumb::before {
      width: 92px;
      height: 92px;
      right: -26px;
      top: -20px;
    }

    .thumb::after {
      width: 58px;
      height: 58px;
      left: 18px;
      bottom: 16px;
    }

    .thumb.alt {
      background:
        linear-gradient(135deg, rgba(47,143,107,.88), rgba(246,166,35,.82)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 7px, transparent 7px 18px);
    }

    .thumb.dark {
      background:
        linear-gradient(135deg, rgba(34,31,27,.92), rgba(227,75,47,.78)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.12) 0 6px, transparent 6px 16px);
    }

    .item-copy {
      min-width: 0;
    }

    .item-copy h3 {
      margin: 0 0 8px;
      font-size: 20px;
      line-height: 1.25;
      font-weight: 950;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 9px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 0 8px;
      border-radius: 999px;
      background: #f5ead9;
      color: #6b4f31;
      border: 1px solid #ead8bd;
      font-size: 12px;
      font-weight: 800;
    }

    .item-copy p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .score-box {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
      padding-left: 14px;
      border-left: 1px dashed #e1ceb2;
    }

    .score {
      display: grid;
      gap: 8px;
    }

    .score span {
      display: flex;
      justify-content: space-between;
      gap: 8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .score-bar {
      height: 8px;
      border-radius: 999px;
      background: #eee0cc;
      overflow: hidden;
    }

    .score-bar i {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .mini-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      min-height: 38px;
      padding: 0 12px;
      border-radius: var(--radius-sm);
      background: var(--panel);
      color: #fff;
      font-size: 13px;
      font-weight: 900;
    }

    .mini-link:hover {
      color: #fff;
      background: var(--primary);
      transform: translateY(-1px);
    }

    .side-stack {
      display: grid;
      gap: 14px;
      position: sticky;
      top: 108px;
    }

    .side-card {
      padding: 18px;
      border-radius: var(--radius);
      background: var(--panel);
      color: #fff;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,.12);
    }

    .side-card.light {
      background: var(--card);
      color: var(--text);
      border-color: var(--line);
      box-shadow: var(--shadow-soft);
    }

    .side-card h3 {
      margin: 0 0 12px;
      font-size: 20px;
      font-weight: 950;
    }

    .rank-mini {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .rank-mini li {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      align-items: center;
      gap: 10px;
      padding: 10px;
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .rank-mini b {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      color: #241908;
      background: var(--accent);
    }

    .rank-mini span {
      font-size: 13px;
      color: rgba(255,255,255,.78);
    }

    .matrix {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px;
    }

    .matrix a {
      padding: 11px;
      border-radius: var(--radius-sm);
      background: #fff8ee;
      border: 1px solid var(--line);
      font-size: 13px;
      font-weight: 900;
    }

    .matrix a:hover {
      background: #ffe7cf;
      border-color: var(--accent);
      color: var(--primary-dark);
      transform: translateY(-1px);
    }

    .proof-band {
      background: #fff8ee;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 22px;
      align-items: center;
    }

    .quote-stack {
      display: grid;
      gap: 12px;
    }

    .quote {
      padding: 15px;
      border-radius: var(--radius);
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .quote p {
      margin: 0 0 10px;
      color: #4b3d31;
      font-size: 14px;
    }

    .quote strong {
      color: var(--primary-dark);
      font-size: 13px;
    }

    .wall-card {
      padding: 22px;
      border-radius: var(--radius);
      background: var(--panel);
      color: #fff;
      overflow: hidden;
      position: relative;
    }

    .wall-card::after {
      content: "";
      position: absolute;
      inset: auto -20px -34px auto;
      width: 180px;
      height: 180px;
      border: 28px solid rgba(246,166,35,.18);
      border-radius: 50%;
    }

    .wall-card h2 {
      position: relative;
      margin: 0 0 12px;
      color: #fff;
      z-index: 1;
    }

    .wall-card p {
      position: relative;
      margin: 0 0 18px;
      max-width: 680px;
      color: rgba(255,255,255,.7);
      z-index: 1;
    }

    .avatar-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 10px;
    }

    .avatar-grid span {
      aspect-ratio: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.16);
      color: #fff;
      font-weight: 900;
    }

    .avatar-grid span:nth-child(3n) {
      background: rgba(246,166,35,.92);
      color: #2c1a05;
    }

    .avatar-grid span:nth-child(4n) {
      background: rgba(227,75,47,.92);
    }

    .split-cta {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 22px;
      align-items: stretch;
    }

    .claim-card {
      padding: 26px;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, var(--primary), #d16825 58%, var(--accent));
      color: #fff;
      box-shadow: var(--shadow);
    }

    .claim-card h2 {
      color: #fff;
      margin-bottom: 10px;
    }

    .claim-card p {
      max-width: 660px;
      margin: 0 0 18px;
      color: rgba(255,255,255,.82);
    }

    .claim-form {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      max-width: 610px;
    }

    .claim-form input {
      width: 100%;
      min-height: 48px;
      margin: 0;
      padding: 0 14px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255,255,255,.45);
      background: rgba(255,255,255,.92);
      color: var(--text);
      box-shadow: none;
    }

    .claim-form input::placeholder {
      color: #8a7661;
    }

    .claim-form .btn {
      min-height: 48px;
      border-color: var(--panel);
    }

    .next-card {
      padding: 22px;
      border-radius: var(--radius);
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .next-card h3 {
      margin: 0 0 10px;
      font-size: 21px;
      font-weight: 950;
    }

    .next-card p {
      margin: 0 0 15px;
      color: var(--muted);
      font-size: 14px;
    }

    .pagination-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .page-chip {
      min-width: 40px;
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 12px;
      border-radius: var(--radius-sm);
      background: var(--card);
      border: 1px solid var(--line);
      font-weight: 900;
      color: var(--text);
    }

    .page-chip:hover,
    .page-chip.active {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary-dark);
    }

    .faq-wrap {
      display: grid;
      gap: 10px;
    }

    .accordion {
      margin: 0;
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 10px;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .accordion-title {
      padding: 17px 52px 17px 18px;
      color: var(--text);
      font-size: 16px;
      font-weight: 950;
      border: 0;
      background: var(--card);
    }

    .accordion-title::before {
      right: 18px;
      color: var(--primary);
      font-weight: 900;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--primary-dark);
      background: #fff6ea;
    }

    .accordion-content {
      padding: 0 18px 18px;
      border: 0;
      background: var(--card);
      color: var(--muted);
      font-size: 14px;
    }

    .footer {
      padding: 44px 0 34px;
      background: var(--panel);
      color: #fff;
    }

    .footer-card {
      padding: 24px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr .8fr;
      gap: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer-brand strong {
      display: block;
      margin-bottom: 10px;
      font-size: 20px;
      font-weight: 950;
    }

    .footer-brand p {
      max-width: 520px;
      margin: 0;
      color: rgba(255,255,255,.68);
      font-size: 14px;
    }

    .footer-col h4 {
      margin: 0 0 10px;
      color: var(--accent);
      font-size: 14px;
      font-weight: 950;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255,255,255,.72);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--accent);
      transform: translateX(2px);
    }

    .copyright {
      padding-top: 16px;
      color: rgba(255,255,255,.5);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .top-shell-inner {
        flex-wrap: wrap;
      }

      .brand {
        min-width: 0;
        flex: 1;
      }

      .nav-panel {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
      }

      .hero-grid,
      .compare-layout,
      .split-cta,
      .proof-grid {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .compare-item {
        grid-template-columns: 130px minmax(0, 1fr);
      }

      .score-box {
        grid-column: 1 / -1;
        padding-left: 0;
        padding-top: 12px;
        border-left: 0;
        border-top: 1px dashed #e1ceb2;
      }
    }

    @media (max-width: 768px) {
      .top-shell {
        position: relative;
      }

      .top-shell-inner {
        width: min(100% - 20px, var(--container));
        padding: 8px;
      }

      .brand-copy strong {
        font-size: 14px;
      }

      .nav-panel {
        display: flex;
        overflow-x: auto;
        scrollbar-width: thin;
      }

      .nav-card {
        min-width: 154px;
      }

      .nav-cta {
        width: 100%;
      }

      .status-board {
        grid-template-columns: 1fr;
      }

      .hero-title-panel {
        min-height: auto;
        padding: 24px;
      }

      .hero-meta-row {
        grid-template-columns: 1fr;
      }

      .group-top,
      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .side-stack {
        grid-template-columns: 1fr;
      }

      .avatar-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .container-max {
        width: min(100% - 20px, var(--container));
      }

      .section {
        padding: 42px 0;
      }

      .hero {
        padding-top: 22px;
      }

      .hero-copy h1 {
        font-size: 32px;
      }

      .hero-copy p {
        font-size: 15px;
      }

      .hero-actions,
      .claim-form,
      .pagination-row {
        display: grid;
        grid-template-columns: 1fr;
      }

      .btn,
      .strip-link,
      .page-chip {
        width: 100%;
      }

      .timer-mini {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .compare-item {
        grid-template-columns: 1fr;
      }

      .thumb {
        min-height: 168px;
      }

      .matrix {
        grid-template-columns: 1fr;
      }

      .join-count strong {
        font-size: 38px;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#f5eee4;
      --bg-soft:#fbf7f1;
      --panel:#fffaf4;
      --panel-2:#f9f2e8;
      --ink:#241d17;
      --muted:#6d5f54;
      --line:#e7d8c6;
      --line-strong:#d8c4ae;
      --primary:#c94e2e;
      --primary-2:#e36f2e;
      --accent:#d49a33;
      --accent-2:#8c5d32;
      --deep:#2d2118;
      --shadow:0 16px 40px rgba(68, 47, 31, .10);
      --shadow-2:0 10px 22px rgba(68, 47, 31, .12);
      --radius:8px;
      --radius-lg:18px;
      --radius-xl:24px;
      --space:24px;
      --space-sm:14px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:
        linear-gradient(180deg, #fbf7f2 0%, #f7efe5 55%, #f4ebdf 100%);
      font-family:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",system-ui,-apple-system,sans-serif;
      line-height:1.65;
      text-rendering:optimizeLegibility;
    }
    img{max-width:100%;display:block}
    a{color:inherit;text-decoration:none}
    button,input,textarea{font:inherit}
    ::selection{background:#f0c08f;color:#23160d}
    :focus-visible{outline:3px solid rgba(201,78,46,.28);outline-offset:2px}

    .page-wrap{overflow:hidden}
    .container-max{
      width:min(1240px, calc(100% - 32px));
      margin:0 auto;
    }

    .top-shell{
      position:sticky;
      top:0;
      z-index:40;
      padding:14px 0 10px;
      background:linear-gradient(180deg, rgba(247,239,228,.98), rgba(247,239,228,.92));
      border-bottom:1px solid rgba(231,216,198,.6);
    }
    .top-shell-inner{
      display:flex;
      align-items:center;
      gap:14px;
      padding:12px;
      background:rgba(255,250,244,.96);
      border:1px solid var(--line);
      border-radius:20px;
      box-shadow:0 10px 26px rgba(65,43,24,.08);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:280px;
      flex:0 0 auto;
      color:var(--ink);
    }
    .brand-mark{
      width:48px;
      height:48px;
      border-radius:16px;
      background:
        radial-gradient(circle at 30% 28%, rgba(255,255,255,.92) 0 16%, transparent 17%),
        linear-gradient(145deg, #6e381f 0%, #c94e2e 46%, #e9a23d 100%);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.38), 0 8px 18px rgba(194,77,46,.26);
      position:relative;
      overflow:hidden;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:10px 12px auto auto;
      width:12px;
      height:12px;
      border-radius:50%;
      background:rgba(255,255,255,.55);
      box-shadow:-14px 12px 0 rgba(255,255,255,.2);
    }
    .brand-copy strong{
      display:block;
      font-size:18px;
      line-height:1.15;
      font-weight:800;
      letter-spacing:.2px;
    }
    .brand-copy span{
      display:block;
      margin-top:4px;
      font-size:12px;
      color:var(--muted);
    }

    .nav-panel{
      flex:1 1 auto;
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:10px;
      min-width:0;
    }
    .nav-card{
      display:flex;
      align-items:center;
      gap:10px;
      min-height:64px;
      padding:12px 14px;
      border-radius:16px;
      border:1px solid var(--line);
      background:linear-gradient(180deg, #fffdf9 0%, #fbf4ea 100%);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.6);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    }
    .nav-card i{
      width:22px;
      font-size:18px;
      color:#c45b2f;
      text-align:center;
      flex:0 0 auto;
    }
    .nav-card span{
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .nav-card strong{
      font-size:14px;
      line-height:1.2;
      font-weight:800;
    }
    .nav-card span span{
      font-size:12px;
      color:var(--muted);
      margin-top:2px;
    }
    .nav-card:hover,
    .nav-card:focus-visible{
      transform:translateY(-1px);
      border-color:#d7aa7b;
      box-shadow:0 12px 20px rgba(104,64,31,.12);
    }
    .nav-card.active{
      background:linear-gradient(180deg, #fff2e3 0%, #ffe3c4 100%);
      border-color:#d7914d;
      box-shadow:0 12px 20px rgba(186,106,38,.14);
    }
    .nav-cta{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:13px 18px;
      border-radius:16px;
      font-weight:800;
      color:#fff;
      background:linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
      border:1px solid #b44426;
      box-shadow:0 14px 22px rgba(201,78,46,.24);
      transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
      white-space:nowrap;
    }
    .nav-cta:hover,
    .nav-cta:focus-visible{
      transform:translateY(-1px);
      box-shadow:0 16px 26px rgba(201,78,46,.28);
      filter:saturate(1.02);
    }

    .main{padding:18px 0 0}
    .section{
      margin-top:18px;
    }

    .status-strip{
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:18px;
      padding:16px 18px;
      border-radius:20px;
      background:linear-gradient(135deg, #2d2118 0%, #4e3120 100%);
      color:#fff;
      box-shadow:var(--shadow);
    }
    .status-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      font-size:13px;
      font-weight:700;
      letter-spacing:.2px;
      white-space:nowrap;
    }
    .status-badge::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:#ffbe71;
      box-shadow:0 0 0 6px rgba(255,190,113,.15);
    }
    .countdown-block{
      min-width:0;
    }
    .countdown{
      display:flex;
      align-items:flex-end;
      gap:10px;
      flex-wrap:wrap;
      font-variant-numeric:tabular-nums;
    }
    .time-box{
      display:inline-flex;
      align-items:flex-end;
      gap:6px;
      padding:8px 12px;
      border-radius:14px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      min-width:72px;
      justify-content:center;
    }
    .time-box strong{
      font-size:28px;
      line-height:1;
      font-weight:900;
      color:#ffd7ab;
    }
    .time-box em{
      font-style:normal;
      font-size:12px;
      color:rgba(255,255,255,.8);
      margin-bottom:2px;
    }
    .countdown-text{
      margin:10px 0 0;
      color:rgba(255,255,255,.84);
      font-size:14px;
    }
    .status-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:11px 14px;
      border-radius:14px;
      background:#fff;
      color:var(--deep);
      font-weight:800;
      border:1px solid rgba(255,255,255,.12);
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .status-link:hover,
    .status-link:focus-visible{
      transform:translateY(-1px);
      box-shadow:0 10px 18px rgba(0,0,0,.12);
    }

    .hero-shell{
      margin-top:18px;
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:24px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.12fr .88fr;
      min-height:100%;
    }
    .hero-copy{
      padding:34px 30px 30px;
      border-right:1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255,255,255,.44), rgba(249,242,232,.16)),
        linear-gradient(135deg, #fffefb 0%, #fbf2e6 100%);
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:#85521d;
      font-size:13px;
      font-weight:700;
      box-shadow:0 6px 14px rgba(74,47,24,.06);
    }
    .hero-kicker i{color:#c36a2f}
    .hero-title{
      margin:16px 0 12px;
      font-size:clamp(34px, 4.4vw, 58px);
      line-height:1.06;
      letter-spacing:-.8px;
      font-weight:900;
    }
    .hero-lead{
      margin:0;
      max-width:760px;
      font-size:17px;
      color:var(--muted);
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .tag-soft{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      font-size:13px;
      color:#5f4d40;
      font-weight:700;
    }
    .tag-soft i{color:#c67a2f}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .btn-main,
    .btn-line{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:13px 18px;
      min-height:48px;
      border-radius:14px;
      font-weight:800;
      border:1px solid transparent;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    }
    .btn-main{
      background:linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
      color:#fff;
      box-shadow:0 14px 22px rgba(201,78,46,.24);
    }
    .btn-main:hover,
    .btn-main:focus-visible{
      transform:translateY(-1px);
      box-shadow:0 18px 28px rgba(201,78,46,.28);
    }
    .btn-line{
      background:#fff;
      color:var(--deep);
      border-color:var(--line-strong);
    }
    .btn-line:hover,
    .btn-line:focus-visible{
      transform:translateY(-1px);
      border-color:#c68b50;
      box-shadow:0 12px 20px rgba(74,47,24,.08);
    }

    .metric-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:12px;
      margin-top:24px;
    }
    .metric-card{
      padding:14px 14px 12px;
      background:linear-gradient(180deg, #fff 0%, #fcf5eb 100%);
      border:1px solid var(--line);
      border-radius:14px;
      box-shadow:0 8px 18px rgba(76,51,28,.05);
    }
    .metric-num{
      display:block;
      font-size:22px;
      line-height:1.05;
      font-weight:900;
      color:var(--deep);
    }
    .metric-label{
      display:block;
      margin-top:6px;
      font-size:12px;
      color:var(--muted);
    }

    .hero-rail{
      padding:24px;
      background:
        linear-gradient(180deg, #fbf4ea 0%, #f9eee0 100%);
    }
    .featured-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:20px;
      overflow:hidden;
      box-shadow:0 12px 24px rgba(74,47,24,.08);
    }
    .featured-head{
      padding:14px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid var(--line);
      background:linear-gradient(180deg,#fffdfa 0%,#fff6ed 100%);
    }
    .featured-head strong{
      font-size:15px;
      font-weight:800;
    }
    .featured-head span{
      padding:6px 10px;
      border-radius:999px;
      background:#fff2e1;
      border:1px solid #f1c58f;
      color:#9a5820;
      font-size:12px;
      font-weight:700;
      white-space:nowrap;
    }
    .featured-body{
      padding:16px;
    }
    .hero-thumb{
      position:relative;
      height:162px;
      border-radius:18px;
      overflow:hidden;
      background:
        radial-gradient(circle at 20% 24%, rgba(255,255,255,.32) 0 12%, transparent 13%),
        linear-gradient(135deg, #764028 0%, #c7502e 50%, #e4a53d 100%);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.28);
    }
    .hero-thumb::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg, rgba(255,255,255,.1) 0 12%, transparent 12% 100%),
        linear-gradient(45deg, transparent 0 60%, rgba(255,255,255,.12) 60% 67%, transparent 67% 100%);
      opacity:.8;
    }
    .hero-thumb .badge-no{
      position:absolute;
      top:14px;
      left:14px;
      padding:8px 10px;
      border-radius:10px;
      background:rgba(255,255,255,.18);
      color:#fff;
      font-weight:800;
      font-size:13px;
      letter-spacing:.12em;
    }
    .hero-thumb .badge-icon{
      position:absolute;
      right:18px;
      bottom:18px;
      width:56px;
      height:56px;
      border-radius:18px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.2);
      display:grid;
      place-items:center;
      color:#fff;
      font-size:24px;
    }
    .compare-list{
      list-style:none;
      padding:0;
      margin:16px 0 0;
      display:grid;
      gap:10px;
    }
    .compare-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#5c4b3f;
      font-size:14px;
      padding:10px 12px;
      background:#fffaf4;
      border:1px solid var(--line);
      border-radius:14px;
    }
    .compare-list li i{
      color:#c66b2e;
      margin-top:4px;
      flex:0 0 auto;
    }
    .mini-mosaic{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:14px;
    }
    .mosaic-tile{
      padding:14px 12px;
      border-radius:16px;
      border:1px solid var(--line);
      background:linear-gradient(180deg,#fffdf9 0%,#fff2e4 100%);
      box-shadow:0 8px 16px rgba(72,47,24,.05);
      font-weight:800;
      color:#7f4e1a;
      text-align:center;
      font-size:13px;
    }

    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:28px;
      line-height:1.15;
      font-weight:900;
      letter-spacing:-.4px;
    }
    .section-head p{
      margin:6px 0 0;
      color:var(--muted);
      max-width:720px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:8px;
      padding:6px 10px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:#8a5e2d;
      font-size:12px;
      font-weight:700;
    }
    .section-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 12px;
      border-radius:999px;
      background:#fff6eb;
      border:1px solid #eccb9e;
      color:#965a25;
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }

    .filter-panel{
      padding:18px;
      border-radius:20px;
      background:linear-gradient(180deg,#fff 0%,#fdf6ec 100%);
      border:1px solid var(--line);
      box-shadow:var(--shadow-2);
      margin-bottom:18px;
    }
    .filter-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:16px;
      align-items:center;
    }
    .filter-box label{
      display:block;
      margin-bottom:10px;
      font-weight:800;
      color:var(--deep);
    }
    .search-row{
      display:flex;
      gap:10px;
      align-items:center;
    }
    .search-row input{
      flex:1 1 auto;
      height:50px;
      padding:0 16px;
      border-radius:14px;
      border:1px solid var(--line-strong);
      background:#fff;
      color:var(--ink);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
      transition:border-color .18s ease, box-shadow .18s ease;
    }
    .search-row input::placeholder{color:#9b8c7f}
    .search-row input:focus{
      border-color:#ca8a55;
      box-shadow:0 0 0 4px rgba(208,146,77,.14);
      outline:none;
    }
    .search-row button{
      height:50px;
      padding:0 18px;
      border-radius:14px;
      border:1px solid #b84827;
      background:linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
      color:#fff;
      font-weight:800;
      box-shadow:0 12px 20px rgba(201,78,46,.22);
      transition:transform .18s ease, box-shadow .18s ease;
      white-space:nowrap;
    }
    .search-row button:hover,
    .search-row button:focus-visible{
      transform:translateY(-1px);
      box-shadow:0 14px 24px rgba(201,78,46,.28);
    }
    .filter-chips{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-start;
      align-items:center;
    }
    .filter-chip{
      appearance:none;
      border:1px solid var(--line-strong);
      background:#fff;
      color:#5d4b3e;
      border-radius:999px;
      padding:10px 14px;
      font-size:13px;
      font-weight:700;
      transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
      cursor:pointer;
    }
    .filter-chip:hover,
    .filter-chip:focus-visible{
      transform:translateY(-1px);
      border-color:#c98a56;
      box-shadow:0 10px 16px rgba(72,47,24,.08);
    }
    .filter-chip.is-active{
      background:linear-gradient(135deg, #ffe9cf 0%, #ffd7a8 100%);
      border-color:#d4974e;
      color:#7b470d;
      box-shadow:0 12px 20px rgba(208,146,77,.18);
    }
    .filter-note{
      margin-top:12px;
      color:var(--muted);
      font-size:13px;
    }

    .directory-grid{
      display:grid;
      grid-template-columns:1.42fr .58fr;
      gap:18px;
      align-items:start;
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:14px;
    }
    .entry-card{
      display:flex;
      flex-direction:column;
      min-height:100%;
      background:#fff;
      border:1px solid var(--line);
      border-radius:8px;
      overflow:hidden;
      box-shadow:0 10px 22px rgba(80,52,26,.07);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .entry-card:hover,
    .entry-card:focus-within{
      transform:translateY(-2px);
      border-color:#dba66a;
      box-shadow:0 16px 30px rgba(80,52,26,.12);
    }
    .entry-thumb{
      position:relative;
      height:152px;
      overflow:hidden;
    }
    .entry-thumb::before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.92;
    }
    .entry-thumb::after{
      content:"";
      position:absolute;
      inset:auto -14px -24px auto;
      width:126px;
      height:126px;
      border-radius:50%;
      background:rgba(255,255,255,.14);
      filter:blur(1px);
    }
    .thumb-1::before{background:linear-gradient(135deg,#692b1c 0%,#c84c2c 54%,#e8ac3b 100%)}
    .thumb-2::before{background:linear-gradient(135deg,#56311f 0%,#b94f32 48%,#e29d3f 100%)}
    .thumb-3::before{background:linear-gradient(135deg,#4a2a1c 0%,#c3602f 48%,#f1b14a 100%)}
    .thumb-4::before{background:linear-gradient(135deg,#5d2f20 0%,#d05c32 50%,#f2bc60 100%)}
    .thumb-5::before{background:linear-gradient(135deg,#603726 0%,#b94a25 48%,#dca149 100%)}
    .thumb-6::before{background:linear-gradient(135deg,#57331f 0%,#cb5a31 50%,#f0ae54 100%)}
    .entry-thumb .entry-index{
      position:absolute;
      top:14px;
      left:14px;
      z-index:1;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:52px;
      height:30px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(255,255,255,.18);
      border:1px solid rgba(255,255,255,.24);
      color:#fff;
      font-size:13px;
      font-weight:800;
      letter-spacing:.12em;
    }
    .entry-thumb .entry-icon{
      position:absolute;
      left:16px;
      bottom:16px;
      z-index:1;
      display:inline-grid;
      place-items:center;
      width:54px;
      height:54px;
      border-radius:18px;
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.22);
      color:#fff;
      font-size:22px;
      box-shadow:0 10px 18px rgba(0,0,0,.08);
    }
    .entry-thumb .entry-label{
      position:absolute;
      right:14px;
      bottom:16px;
      z-index:1;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.92);
      color:#7c4716;
      font-size:12px;
      font-weight:800;
      box-shadow:0 10px 16px rgba(0,0,0,.06);
    }
    .entry-body{
      padding:16px 16px 14px;
      display:flex;
      flex-direction:column;
      gap:12px;
      flex:1 1 auto;
    }
    .entry-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .entry-tag{
      display:inline-flex;
      align-items:center;
      min-height:26px;
      padding:0 9px;
      border-radius:999px;
      background:#fff4e6;
      border:1px solid #f0cd9d;
      color:#8d571f;
      font-size:11px;
      font-weight:800;
      letter-spacing:.02em;
    }
    .entry-body h3{
      margin:0;
      font-size:18px;
      line-height:1.25;
      font-weight:900;
      color:var(--deep);
    }
    .entry-body p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.72;
      min-height:48px;
      display:-webkit-box;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
      overflow:hidden;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px 14px;
      align-items:center;
      margin-top:auto;
      padding-top:2px;
      color:#6f5a4c;
      font-size:12px;
      font-weight:700;
    }
    .entry-meta span{
      display:inline-flex;
      align-items:center;
      gap:7px;
    }
    .entry-meta i{color:#c76c2e}
    .entry-actions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding-top:8px;
      border-top:1px dashed var(--line);
      margin-top:2px;
    }
    .entry-actions a{
      font-size:13px;
      font-weight:800;
      color:#b14d24;
      transition:color .18s ease, transform .18s ease;
    }
    .entry-actions a:hover,
    .entry-actions a:focus-visible{
      color:#8d3418;
      transform:translateX(2px);
    }

    .side-column{
      position:sticky;
      top:110px;
      display:grid;
      gap:14px;
    }
    .side-card{
      padding:18px;
      background:linear-gradient(180deg,#fff 0%, #fcf5ec 100%);
      border:1px solid var(--line);
      border-radius:18px;
      box-shadow:0 10px 22px rgba(73,45,25,.08);
    }
    .side-card h3{
      margin:0 0 10px;
      font-size:17px;
      font-weight:900;
      line-height:1.25;
    }
    .side-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .bar-list{
      list-style:none;
      margin:12px 0 0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .bar-list li{
      display:grid;
      gap:7px;
    }
    .bar-top{
      display:flex;
      justify-content:space-between;
      gap:10px;
      font-size:13px;
      color:#644d3f;
      font-weight:700;
    }
    .bar{
      width:100%;
      height:10px;
      border-radius:999px;
      background:#f0e1d1;
      overflow:hidden;
    }
    .bar span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,#c94e2e 0%,#e59f3f 100%);
    }
    .avatar-wall{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:10px;
      margin-top:12px;
    }
    .avatar{
      display:grid;
      gap:6px;
      justify-items:center;
      text-align:center;
    }
    .avatar i,
    .avatar .shot{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      font-size:16px;
      font-weight:800;
      background:linear-gradient(135deg,#7c3f22 0%,#c94e2e 48%,#e2a23b 100%);
      box-shadow:0 8px 16px rgba(176,81,38,.24);
    }
    .avatar span{
      display:block;
      font-size:12px;
      color:#735a49;
      font-weight:700;
    }
    .bubble-list{
      display:grid;
      gap:10px;
      margin-top:12px;
    }
    .bubble{
      position:relative;
      padding:12px 14px;
      border-radius:16px;
      background:#fff7ee;
      border:1px solid #f0d4b0;
      color:#5f4a3c;
      font-size:13px;
      line-height:1.7;
    }
    .bubble::before{
      content:"";
      position:absolute;
      left:18px;
      top:-7px;
      width:12px;
      height:12px;
      background:#fff7ee;
      border-left:1px solid #f0d4b0;
      border-top:1px solid #f0d4b0;
      transform:rotate(45deg);
    }

    .pager{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      margin-top:18px;
      flex-wrap:wrap;
    }
    .pager a,
    .pager span{
      min-width:44px;
      height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 14px;
      border-radius:14px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--deep);
      font-weight:800;
      box-shadow:0 8px 16px rgba(74,47,24,.06);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .pager a:hover,
    .pager a:focus-visible{
      transform:translateY(-1px);
      border-color:#ce9a5e;
      box-shadow:0 12px 18px rgba(74,47,24,.10);
    }
    .pager .current{
      background:linear-gradient(135deg,#ffe7ca 0%,#ffd29c 100%);
      border-color:#d89f59;
      color:#7c4b19;
    }

    .proof-section{
      margin-top:18px;
      padding:4px 0 0;
    }
    .proof-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .proof-cloud,
    .proof-face{
      padding:18px;
      border-radius:20px;
      background:linear-gradient(180deg,#fff 0%,#fcf5ec 100%);
      border:1px solid var(--line);
      box-shadow:var(--shadow-2);
    }
    .proof-cloud h3,
    .proof-face h3{
      margin:0 0 10px;
      font-size:18px;
      font-weight:900;
    }
    .proof-cloud p,
    .proof-face p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .quote-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .quote{
      padding:14px;
      border-radius:16px;
      background:#fff7ee;
      border:1px solid #f0d4b0;
      color:#5b4739;
      font-size:13px;
      line-height:1.72;
    }
    .quote strong{
      display:block;
      margin-bottom:6px;
      color:#8a5325;
      font-size:12px;
      letter-spacing:.04em;
    }
    .face-wrap{
      display:grid;
      gap:14px;
    }
    .face-stats{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:10px;
    }
    .face-stat{
      padding:12px;
      border-radius:14px;
      background:#fffaf4;
      border:1px solid var(--line);
      text-align:center;
    }
    .face-stat strong{
      display:block;
      font-size:18px;
      font-weight:900;
      color:var(--deep);
      line-height:1.1;
    }
    .face-stat span{
      display:block;
      margin-top:5px;
      font-size:12px;
      color:var(--muted);
    }

    .claim-section{
      margin-top:18px;
      padding:24px;
      border-radius:24px;
      background:linear-gradient(135deg,#2b1e17 0%,#4d3121 100%);
      color:#fff;
      box-shadow:var(--shadow);
    }
    .claim-grid{
      display:grid;
      grid-template-columns:1fr .9fr;
      gap:18px;
      align-items:center;
    }
    .claim-copy h2{
      margin:0 0 12px;
      font-size:30px;
      line-height:1.12;
      font-weight:900;
      letter-spacing:-.3px;
    }
    .claim-copy p{
      margin:0;
      max-width:640px;
      color:rgba(255,255,255,.82);
      font-size:15px;
    }
    .claim-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .claim-point{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
      color:rgba(255,255,255,.92);
      font-size:13px;
      font-weight:700;
    }
    .claim-point i{color:#ffcc8d}
    .claim-form{
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .claim-form label{
      display:block;
      margin-bottom:10px;
      font-weight:800;
      color:#fff;
    }
    .claim-form .field-row{
      display:flex;
      gap:10px;
      align-items:center;
    }
    .claim-form input{
      flex:1 1 auto;
      height:50px;
      padding:0 16px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.16);
      background:#fff;
      color:var(--ink);
      outline:none;
    }
    .claim-form input::placeholder{color:#a28f7f}
    .claim-form button{
      height:50px;
      padding:0 18px;
      border-radius:14px;
      border:1px solid #b54527;
      background:linear-gradient(135deg,#d55a33 0%,#ef8a2f 100%);
      color:#fff;
      font-weight:900;
      box-shadow:0 12px 22px rgba(0,0,0,.16);
      transition:transform .18s ease, box-shadow .18s ease;
      white-space:nowrap;
    }
    .claim-form button:hover,
    .claim-form button:focus-visible{
      transform:translateY(-1px);
      box-shadow:0 15px 26px rgba(0,0,0,.18);
    }
    .claim-note{
      margin-top:10px;
      color:rgba(255,255,255,.72);
      font-size:13px;
      line-height:1.65;
    }
    .claim-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
    }
    .claim-links a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.15);
      color:#fff;
      background:rgba(255,255,255,.08);
      transition:transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .claim-links a:hover,
    .claim-links a:focus-visible{
      transform:translateY(-1px);
      background:rgba(255,255,255,.12);
      border-color:rgba(255,255,255,.22);
    }

    .faq-section{
      margin-top:18px;
    }
    .faq-list{
      display:grid;
      gap:12px;
    }
    .faq-item{
      border-radius:18px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 20px rgba(74,47,24,.06);
      overflow:hidden;
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px 18px;
      font-weight:900;
      color:var(--deep);
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary::after{
      content:"+";
      width:32px;
      height:32px;
      border-radius:10px;
      display:grid;
      place-items:center;
      background:#fff5ea;
      border:1px solid var(--line);
      color:#a45f1a;
      font-size:18px;
      flex:0 0 auto;
      transition:transform .18s ease, background .18s ease;
    }
    .faq-item[open] summary::after{
      content:"–";
      background:#ffe7c9;
      transform:rotate(0deg);
    }
    .faq-answer{
      padding:0 18px 18px;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }

    .footer{
      margin-top:22px;
      padding:0 0 30px;
    }
    .footer-card{
      padding:22px;
      background:linear-gradient(180deg,#fffdf9 0%, #f8efe3 100%);
      border:1px solid var(--line);
      border-radius:24px;
      box-shadow:var(--shadow);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .7fr .7fr;
      gap:18px;
    }
    .footer-brand strong{
      display:block;
      font-size:18px;
      font-weight:900;
      margin-bottom:10px;
    }
    .footer-brand p{
      margin:0;
      color:var(--muted);
      line-height:1.8;
      font-size:14px;
      max-width:420px;
    }
    .footer-col h4{
      margin:0 0 12px;
      font-size:15px;
      font-weight:900;
      color:var(--deep);
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .footer-links a{
      display:inline-flex;
      align-items:center;
      padding:9px 12px;
      border-radius:12px;
      background:#fff;
      border:1px solid var(--line);
      color:#654f40;
      font-weight:700;
      font-size:13px;
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .footer-links a:hover,
    .footer-links a:focus-visible{
      transform:translateY(-1px);
      border-color:#d7a15d;
      box-shadow:0 10px 18px rgba(74,47,24,.08);
    }
    .copyright{
      margin-top:18px;
      padding-top:16px;
      border-top:1px solid var(--line);
      color:#7a6557;
      font-size:12px;
      line-height:1.7;
    }

    @media (max-width: 1200px){
      .hero-grid,
      .directory-grid,
      .proof-grid,
      .claim-grid{
        grid-template-columns:1fr;
      }
      .hero-copy{
        border-right:none;
        border-bottom:1px solid var(--line);
      }
      .side-column{
        position:static;
      }
      .footer-grid{
        grid-template-columns:1fr 1fr;
      }
      .footer-brand{
        grid-column:1/-1;
      }
    }

    @media (max-width: 920px){
      .top-shell-inner{
        flex-wrap:wrap;
      }
      .brand{
        min-width:0;
        flex:1 1 100%;
      }
      .nav-panel{
        grid-template-columns:repeat(2, minmax(0,1fr));
        flex:1 1 100%;
      }
      .nav-cta{
        width:100%;
        justify-content:center;
      }
      .metric-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }
      .entry-grid,
      .quote-grid,
      .face-stats,
      .mini-mosaic{
        grid-template-columns:1fr 1fr;
      }
      .filter-grid{
        grid-template-columns:1fr;
      }
    }

    @media (max-width: 640px){
      .container-max{width:min(1240px, calc(100% - 22px))}
      .status-strip{
        grid-template-columns:1fr;
        justify-items:start;
      }
      .countdown{
        gap:8px;
      }
      .time-box{
        min-width:68px;
      }
      .hero-copy,
      .hero-rail,
      .filter-panel,
      .proof-cloud,
      .proof-face,
      .claim-section,
      .footer-card{
        padding:18px;
      }
      .hero-title{
        font-size:clamp(30px, 8vw, 42px);
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .section-head h2{
        font-size:24px;
      }
      .entry-grid,
      .quote-grid,
      .face-stats,
      .mini-mosaic,
      .nav-panel,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .search-row,
      .claim-form .field-row{
        flex-direction:column;
        align-items:stretch;
      }
      .search-row button,
      .claim-form button{
        width:100%;
      }
      .entry-card{
        border-radius:10px;
      }
      .entry-thumb{
        height:140px;
      }
      .avatar-wall{
        grid-template-columns:repeat(3, minmax(0,1fr));
      }
      .claim-copy h2{
        font-size:24px;
      }
    }

    @media (max-width: 420px){
      .brand-copy strong{
        font-size:16px;
      }
      .brand-mark{
        width:42px;
        height:42px;
        border-radius:14px;
      }
      .hero-title{
        letter-spacing:-.5px;
      }
      .metric-grid{
        grid-template-columns:1fr;
      }
      .avatar-wall{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }
      .status-badge,
      .status-link,
      .nav-card strong,
      .nav-card span span,
      .tag-soft,
      .entry-tag{
        font-size:12px;
      }
    }
