/* roulang page: index */
:root{
      --bg:#fff7ec;
      --bg-2:#fffaf3;
      --surface:#ffffff;
      --surface-warm:#fff1df;
      --ink:#34221b;
      --muted:#7b6256;
      --soft:#a98b7c;
      --brand:#d86b32;
      --brand-2:#ff9f55;
      --brand-3:#8e3d2f;
      --gold:#f3c66d;
      --line:#ead6c3;
      --line-strong:#d9a57e;
      --shadow:0 18px 50px rgba(104,58,35,.12);
      --shadow-soft:0 10px 26px rgba(104,58,35,.08);
      --radius:24px;
      --radius-sm:16px;
      --radius-lg:34px;
      --container:1180px;
      --nav-h:76px;
      --ease:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 12% 6%, rgba(255,159,85,.18), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(142,61,47,.12), transparent 28%),
        linear-gradient(180deg,var(--bg),#fffdf9 48%,#fff7ec);
      line-height:1.75;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.38;
      background-image:
        linear-gradient(rgba(216,107,50,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216,107,50,.05) 1px, transparent 1px);
      background-size:34px 34px;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    input,button{outline:none}
    input:focus,button:focus,a:focus{
      outline:3px solid rgba(255,159,85,.32);
      outline-offset:3px;
    }
    .site-container{
      width:min(var(--container),calc(100% - 36px));
      margin:0 auto;
    }
    .section{
      padding:72px 0;
      position:relative;
    }
    .section.compact{padding:44px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:999px;
      color:var(--brand-3);
      background:rgba(255,159,85,.16);
      border:1px solid rgba(216,107,50,.18);
      font-size:14px;
      font-weight:800;
      letter-spacing:.02em;
    }
    .eyebrow:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 0 5px rgba(216,107,50,.12);
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:28px;
      margin-bottom:28px;
    }
    .section-title{
      margin:14px 0 8px;
      font-size:clamp(28px,4vw,46px);
      line-height:1.15;
      letter-spacing:-.03em;
      font-weight:950;
      color:var(--ink);
    }
    .section-desc{
      max-width:680px;
      margin:0;
      color:var(--muted);
      font-size:17px;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--brand-3);
      font-weight:900;
      padding:9px 13px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      white-space:nowrap;
    }
    .text-link:hover{transform:translateY(-2px);border-color:var(--line-strong);color:var(--brand)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:48px;
      padding:13px 20px;
      border-radius:16px;
      border:1px solid transparent;
      font-weight:950;
      cursor:pointer;
      transition:var(--ease);
      line-height:1.15;
      letter-spacing:.01em;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:0 14px 26px rgba(216,107,50,.24);
    }
    .btn-primary:hover{color:#fff;transform:translateY(-3px);filter:saturate(1.08) brightness(1.03)}
    .btn-secondary{
      color:var(--brand-3);
      background:#fff8ef;
      border-color:var(--line-strong);
      box-shadow:var(--shadow-soft);
    }
    .btn-secondary:hover{color:var(--brand);transform:translateY(-3px);background:#fff;border-color:var(--brand-2)}
    .btn-ghost{
      color:var(--ink);
      background:rgba(255,255,255,.68);
      border-color:var(--line);
    }
    .btn-ghost:hover{background:#fff;border-color:var(--line-strong);transform:translateY(-2px)}
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      font-size:13px;
      font-weight:900;
      color:var(--brand-3);
      background:#fff2df;
      border:1px solid rgba(216,107,50,.18);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(255,247,236,.88);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(234,214,195,.8);
    }
    .nav-shell{
      min-height:var(--nav-h);
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:18px;
    }
    .nav-side{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .nav-side.left{justify-content:flex-end}
    .nav-side.right{justify-content:flex-start}
    .nav-item{
      padding:10px 14px;
      border-radius:999px;
      font-weight:900;
      color:var(--muted);
      border:1px solid transparent;
    }
    .nav-item:hover{
      color:var(--brand-3);
      background:#fff;
      border-color:var(--line);
      box-shadow:var(--shadow-soft);
    }
    .nav-item.active{
      color:var(--brand-3);
      background:#fff3e3;
      border-color:var(--line-strong);
      box-shadow:0 10px 20px rgba(216,107,50,.12);
    }
    .brand-logo{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:9px 16px;
      border-radius:20px;
      background:linear-gradient(180deg,#fff,#fff4e7);
      border:1px solid var(--line-strong);
      box-shadow:var(--shadow-soft);
      font-weight:1000;
      color:var(--brand-3);
      letter-spacing:-.02em;
      white-space:nowrap;
    }
    .brand-logo-mark{
      width:32px;height:32px;
      border-radius:11px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand-3),var(--brand-2));
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.25);
      font-size:15px;
    }
    .mobile-title-bar{display:none}
    .mobile-menu{
      display:none;
      border-top:1px solid var(--line);
      padding:10px 0 16px;
    }
    .mobile-menu .menu a{
      border-radius:14px;
      margin:4px 0;
      color:var(--muted);
      font-weight:900;
    }
    .mobile-menu .menu a.active{
      background:#fff1df;
      color:var(--brand-3);
    }
    .countdown-strip{
      padding:16px 0 0;
    }
    .count-card{
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:18px;
      border-radius:22px;
      padding:14px;
      background:linear-gradient(135deg,#4b241f,#8e3d2f 52%,#d86b32);
      color:#fff;
      box-shadow:0 18px 44px rgba(142,61,47,.24);
      border:1px solid rgba(255,255,255,.18);
      overflow:hidden;
      position:relative;
    }
    .count-card:after{
      content:"";
      position:absolute;
      inset:-60% -20% auto auto;
      width:300px;height:300px;
      background:radial-gradient(circle,rgba(255,214,143,.35),transparent 65%);
      pointer-events:none;
    }
    .count-label{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      position:relative;
      z-index:1;
    }
    .round-dot{
      width:13px;height:13px;border-radius:50%;
      background:var(--gold);
      box-shadow:0 0 0 7px rgba(243,198,109,.14),0 0 18px rgba(243,198,109,.8);
    }
    .turn-progress{
      display:grid;
      grid-template-columns:repeat(8,1fr);
      gap:6px;
      position:relative;
      z-index:1;
    }
    .turn-progress span{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.22);
      border:1px solid rgba(255,255,255,.16);
    }
    .turn-progress span.on{
      background:linear-gradient(90deg,var(--gold),#fff1bc);
      box-shadow:0 0 13px rgba(243,198,109,.55);
    }
    .time-blocks{
      display:flex;
      align-items:center;
      gap:8px;
      position:relative;
      z-index:1;
    }
    .time-box{
      min-width:48px;
      padding:5px 8px;
      border-radius:12px;
      text-align:center;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.22);
      font-weight:950;
      line-height:1.2;
    }
    .time-box small{display:block;font-size:11px;opacity:.78;font-weight:800}
    .hero{
      padding:46px 0 76px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:5fr 7fr;
      gap:34px;
      align-items:center;
    }
    .hero-copy{
      position:relative;
      z-index:2;
      padding:24px 0;
    }
    h1{
      margin:14px 0 18px;
      font-size:clamp(38px,6vw,72px);
      line-height:1.04;
      letter-spacing:-.055em;
      font-weight:1000;
      color:var(--ink);
    }
    .hero-desc{
      font-size:18px;
      color:var(--muted);
      margin:0 0 24px;
      max-width:560px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:24px;
    }
    .kpi-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      max-width:590px;
    }
    .kpi{
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.72);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .kpi strong{
      display:block;
      font-size:23px;
      line-height:1;
      color:var(--brand-3);
      font-weight:1000;
    }
    .kpi span{
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }
    .hero-stage{
      position:relative;
      min-height:520px;
      transform:skewY(-2deg);
    }
    .dp-cover{
      position:absolute;
      inset:34px 0 0 44px;
      border-radius:38px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.20),transparent 28%),
        radial-gradient(circle at 26% 24%,rgba(255,229,169,.85),transparent 17%),
        radial-gradient(circle at 76% 20%,rgba(255,159,85,.45),transparent 21%),
        linear-gradient(135deg,#7e352d,#d86b32 55%,#ffd18a);
      box-shadow:0 28px 70px rgba(142,61,47,.28);
      border:1px solid rgba(255,255,255,.42);
      overflow:hidden;
    }
    .dp-cover:before{
      content:"";
      position:absolute;
      inset:24px;
      border-radius:28px;
      border:1px solid rgba(255,255,255,.35);
      background:
        linear-gradient(90deg,transparent 0 62%,rgba(255,255,255,.13) 62% 64%,transparent 64%),
        linear-gradient(180deg,transparent 0 52%,rgba(255,255,255,.13) 52% 54%,transparent 54%);
    }
    .dp-cover:after{
      content:"91 人妻\A热度看板";
      white-space:pre;
      position:absolute;
      left:36px;
      bottom:34px;
      color:#fff;
      font-weight:1000;
      font-size:42px;
      line-height:1.05;
      letter-spacing:-.04em;
      text-shadow:0 8px 22px rgba(0,0,0,.22);
    }
    .floating-card{
      position:absolute;
      z-index:3;
      border-radius:22px;
      background:rgba(255,255,255,.9);
      border:1px solid rgba(255,255,255,.82);
      box-shadow:0 18px 42px rgba(83,43,28,.18);
      padding:16px;
      transform:skewY(2deg);
    }
    .float-a{left:0;top:46px;width:210px}
    .float-b{right:8px;bottom:52px;width:250px}
    .float-c{left:48px;bottom:10px;width:190px}
    .mini-title{font-weight:1000;color:var(--brand-3);margin-bottom:6px}
    .mini-text{font-size:13px;color:var(--muted);line-height:1.55;margin:0}
    .avatar-stack{display:flex;margin-top:10px}
    .avatar{
      width:38px;height:38px;border-radius:50%;
      display:grid;place-items:center;
      margin-left:-8px;
      color:#fff;
      font-weight:950;
      border:3px solid #fff;
      background:linear-gradient(135deg,var(--brand),var(--gold));
      box-shadow:var(--shadow-soft);
    }
    .avatar:first-child{margin-left:0}
    .card{
      border-radius:var(--radius);
      background:var(--surface);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-5px);
      border-color:var(--line-strong);
      box-shadow:var(--shadow);
    }
    .directory-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:18px;
    }
    .directory-main{
      padding:26px;
      min-height:260px;
      background:
        radial-gradient(circle at 88% 18%,rgba(255,159,85,.22),transparent 36%),
        linear-gradient(135deg,#fff,#fff0dc);
    }
    .directory-main h3,.value-card h3,.info-card h3,.gallery-tile h3{
      margin:12px 0 8px;
      font-size:24px;
      font-weight:1000;
      letter-spacing:-.02em;
    }
    .directory-main p,.value-card p,.info-card p,.gallery-tile p{
      margin:0;
      color:var(--muted);
      line-height:1.72;
    }
    .dir-list{
      display:grid;
      gap:12px;
      margin-top:22px;
    }
    .dir-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:13px 14px;
      border-radius:16px;
      background:#fffaf4;
      border:1px solid var(--line);
      font-weight:900;
    }
    .dir-item:hover{background:#fff;border-color:var(--line-strong);transform:translateX(4px)}
    .dir-item em{
      font-style:normal;
      color:var(--brand);
      font-size:13px;
    }
    .small-feature{
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:260px;
    }
    .feature-num{
      width:46px;height:46px;border-radius:16px;
      display:grid;place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand-3),var(--brand));
      font-weight:1000;
      box-shadow:0 12px 24px rgba(216,107,50,.22);
    }
    .value-layout{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:18px;
    }
    .value-card{
      padding:26px;
      position:relative;
    }
    .value-card.primary{
      min-height:360px;
      background:
        linear-gradient(135deg,rgba(142,61,47,.94),rgba(216,107,50,.9)),
        radial-gradient(circle at 80% 10%,rgba(243,198,109,.5),transparent 30%);
      color:#fff;
      border-color:rgba(255,255,255,.22);
    }
    .value-card.primary p,.value-card.primary .badge{color:#fff}
    .value-card.primary .badge{
      background:rgba(255,255,255,.14);
      border-color:rgba(255,255,255,.24);
    }
    .value-side{display:grid;gap:18px}
    .value-card .icon{
      width:52px;height:52px;border-radius:18px;
      display:grid;place-items:center;
      background:#fff1df;
      color:var(--brand-3);
      font-size:24px;
      font-weight:1000;
    }
    .gallery-grid{
      display:grid;
      grid-template-columns:1.1fr .8fr 1fr .75fr;
      grid-auto-rows:150px;
      gap:14px;
    }
    .gallery-tile{
      padding:18px;
      min-height:0;
      position:relative;
      background:linear-gradient(145deg,#fff,#fff3e4);
    }
    .gallery-tile.big{grid-row:span 2}
    .gallery-tile.wide{grid-column:span 2}
    .bubble{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 10px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--brand-3);
      font-size:13px;
      font-weight:900;
      box-shadow:var(--shadow-soft);
      margin-top:12px;
    }
    .stars{color:#dc8f20;letter-spacing:1px}
    .info-layout{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:22px;
    }
    .link-list{
      padding:22px;
    }
    .link-list h3,.recommend-box h3,.cta-card h3,.faq-intro h3{
      margin:0 0 16px;
      font-size:25px;
      font-weight:1000;
      letter-spacing:-.02em;
    }
    .news-list{
      list-style:none;
      padding:0;margin:0;
      display:grid;
      gap:12px;
    }
    .news-list a{
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:12px;
      padding:14px;
      border-radius:16px;
      background:#fffaf4;
      border:1px solid var(--line);
    }
    .news-list a:hover{background:#fff;border-color:var(--line-strong);transform:translateX(4px)}
    .news-list .date{
      color:var(--brand-3);
      font-weight:1000;
      font-size:13px;
    }
    .news-list .name{
      font-weight:900;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .news-list .tag{
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }
    .recommend-box{
      padding:22px;
      background:linear-gradient(180deg,#fff,#fff1df);
    }
    .calendar{
      display:grid;
      gap:12px;
    }
    .calendar-row{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:14px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--line);
    }
    .calendar-date{
      min-width:58px;
      padding:8px;
      border-radius:14px;
      text-align:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand-3),var(--brand));
      font-weight:1000;
      line-height:1.1;
    }
    .calendar-date small{display:block;font-size:12px;opacity:.84}
    .calendar-row strong{display:block;margin-bottom:3px}
    .calendar-row span{color:var(--muted);font-size:14px}
    .entrance-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .entrance{
      padding:20px;
      min-height:160px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:#fff;
    }
    .entrance:hover .entrance-go{background:var(--brand);color:#fff}
    .entrance-icon{
      width:44px;height:44px;border-radius:15px;
      display:grid;place-items:center;
      background:#fff2df;
      color:var(--brand-3);
      font-size:22px;
      font-weight:1000;
    }
    .entrance h3{margin:14px 0 6px;font-size:20px;font-weight:1000}
    .entrance p{margin:0;color:var(--muted);font-size:14px}
    .entrance-go{
      margin-top:16px;
      width:max-content;
      padding:7px 11px;
      border-radius:999px;
      background:#fff7ed;
      color:var(--brand-3);
      border:1px solid var(--line);
      font-size:13px;
      font-weight:900;
      transition:var(--ease);
    }
    .update-wrap{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:22px;
      align-items:stretch;
    }
    .update-note{
      padding:28px;
      background:linear-gradient(135deg,#512721,#9b4434);
      color:#fff;
    }
    .update-note p{color:rgba(255,255,255,.78);margin:12px 0 0}
    .changelog{
      padding:22px;
      display:grid;
      gap:14px;
    }
    .change-item{
      display:grid;
      grid-template-columns:96px 1fr;
      gap:16px;
      padding:16px;
      border-radius:18px;
      background:#fffaf4;
      border:1px solid var(--line);
    }
    .change-item time{
      color:var(--brand-3);
      font-weight:1000;
    }
    .change-item strong{display:block;margin-bottom:4px}
    .change-item span{color:var(--muted)}
    .trust-bar{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .trust-item{
      display:flex;
      gap:13px;
      align-items:center;
      padding:18px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .trust-item b{
      width:42px;height:42px;border-radius:15px;
      display:grid;place-items:center;
      background:#fff2df;
      color:var(--brand-3);
      flex:0 0 auto;
    }
    .trust-item strong{display:block;font-weight:1000}
    .trust-item span{display:block;color:var(--muted);font-size:13px}
    .cta-panel{
      border-radius:var(--radius-lg);
      padding:28px;
      background:
        radial-gradient(circle at 90% 12%,rgba(243,198,109,.42),transparent 26%),
        linear-gradient(135deg,#fff,#ffe8cf);
      border:1px solid var(--line-strong);
      box-shadow:var(--shadow);
    }
    .cta-grid{
      display:grid;
      grid-template-columns:1fr 430px;
      gap:26px;
      align-items:center;
    }
    .cta-card{
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .quick-form{
      display:grid;
      gap:12px;
    }
    .quick-form input{
      width:100%;
      min-height:50px;
      border-radius:16px;
      border:1px solid var(--line);
      background:#fffaf4;
      padding:0 15px;
      color:var(--ink);
      box-shadow:none;
      margin:0;
    }
    .quick-form input:focus{
      border-color:var(--brand-2);
      background:#fff;
      box-shadow:0 0 0 4px rgba(255,159,85,.14);
    }
    .choice-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .choice-row label{
      cursor:pointer;
      margin:0;
    }
    .choice-row input{display:none}
    .choice-row span{
      display:inline-flex;
      padding:8px 11px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fffaf4;
      color:var(--muted);
      font-weight:900;
      font-size:13px;
      transition:var(--ease);
    }
    .choice-row input:checked + span{
      color:#fff;
      background:var(--brand);
      border-color:var(--brand);
    }
    .faq-layout{
      display:grid;
      grid-template-columns:.75fr 1.25fr;
      gap:22px;
    }
    .faq-intro{
      padding:24px;
      background:#fff;
    }
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:18px;
      overflow:hidden;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:var(--shadow-soft);
    }
    .accordion-title{
      border:none !important;
      color:var(--ink) !important;
      font-weight:1000;
      font-size:17px;
      padding:19px 48px 19px 20px;
      background:#fffaf4;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#fff1df;
      color:var(--brand-3) !important;
    }
    .accordion-content{
      border:none !important;
      color:var(--muted);
      padding:18px 20px 20px;
      background:#fff;
    }
    .site-footer{
      padding:42px 0;
      background:#3a211b;
      color:#fff0e3;
      margin-top:40px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:1000;
      font-size:20px;
      margin-bottom:8px;
    }
    .footer-brand span{
      width:34px;height:34px;border-radius:12px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--brand),var(--gold));
      color:#fff;
    }
    .footer-note{
      margin:0;
      color:rgba(255,240,227,.72);
      max-width:720px;
    }
    .footer-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .footer-links a{
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      font-weight:900;
    }
    .footer-links a:hover{background:rgba(255,159,85,.2);color:#fff}
    .copyright{
      margin-top:18px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.12);
      color:rgba(255,240,227,.62);
      font-size:13px;
    }
    @media (max-width:1024px){
      .nav-shell{grid-template-columns:1fr auto 1fr}
      .nav-item{padding:9px 10px;font-size:14px}
      .hero-grid,.value-layout,.info-layout,.update-wrap,.cta-grid,.faq-layout{grid-template-columns:1fr}
      .hero-stage{min-height:430px}
      .dp-cover{inset:20px}
      .directory-grid{grid-template-columns:1fr 1fr}
      .directory-main{grid-column:span 2}
      .entrance-grid,.trust-bar{grid-template-columns:repeat(2,1fr)}
      .gallery-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:768px){
      :root{--nav-h:62px}
      .site-container{width:min(100% - 24px,var(--container))}
      .desktop-nav{display:none}
      .mobile-title-bar{
        display:flex;
        min-height:var(--nav-h);
        align-items:center;
        justify-content:space-between;
        gap:12px;
      }
      .mobile-menu{display:block}
      .menu-icon-wrap{
        display:inline-flex;
        align-items:center;
        gap:8px;
        padding:9px 12px;
        border-radius:14px;
        background:#fff;
        border:1px solid var(--line);
        font-weight:950;
        color:var(--brand-3);
        box-shadow:var(--shadow-soft);
      }
      .count-card{grid-template-columns:1fr;gap:12px}
      .turn-progress{order:3}
      .time-blocks{justify-content:space-between}
      .hero{padding:30px 0 52px}
      .hero-grid{gap:18px}
      .hero-stage{min-height:360px;transform:none}
      .dp-cover{inset:10px;border-radius:28px}
      .dp-cover:after{font-size:32px}
      .floating-card{transform:none}
      .float-a{left:0;top:0;width:190px}
      .float-b{right:0;bottom:42px;width:210px}
      .float-c{left:18px;bottom:0;width:170px}
      .kpi-row{grid-template-columns:1fr}
      .section{padding:50px 0}
      .section-head{display:block}
      .directory-grid{grid-template-columns:1fr}
      .directory-main{grid-column:auto}
      .gallery-grid{
        display:flex;
        gap:12px;
        overflow-x:auto;
        padding-bottom:10px;
        scroll-snap-type:x mandatory;
      }
      .gallery-tile{
        min-width:250px;
        min-height:178px;
        scroll-snap-align:start;
      }
      .entrance-grid,.trust-bar{grid-template-columns:1fr}
      .change-item{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }
    @media (max-width:520px){
      h1{font-size:38px}
      .section-title{font-size:29px}
      .hero-actions .btn,.cta-card .btn{width:100%}
      .time-box{min-width:0;flex:1}
      .cta-panel{padding:18px;border-radius:26px}
      .news-list a{grid-template-columns:1fr}
      .brand-logo{padding:8px 10px;font-size:14px}
      .brand-logo-mark{width:28px;height:28px}
      .hero-stage{min-height:330px}
      .float-a,.float-b,.float-c{font-size:13px}
    }

/* roulang page: category1 */
:root{
      --bg:#fff7eb;
      --bg-soft:#fffaf2;
      --surface:#ffffff;
      --surface-warm:#fff1dd;
      --ink:#2f2119;
      --muted:#7f6757;
      --muted-2:#a48976;
      --brand:#d95d2b;
      --brand-dark:#a93e1f;
      --brand-light:#ffb15f;
      --amber:#f7c46c;
      --wine:#813b34;
      --cream:#fff3dc;
      --line:#efd7bd;
      --line-strong:#e7b98c;
      --success:#7c9448;
      --shadow:0 18px 45px rgba(93,47,21,.12);
      --shadow-soft:0 10px 28px rgba(93,47,21,.08);
      --radius-lg:28px;
      --radius:20px;
      --radius-sm:14px;
      --container:1180px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 12% 4%, rgba(255,177,95,.32), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(129,59,52,.12), transparent 30%),
        linear-gradient(180deg,var(--bg) 0%,#fffaf4 52%,#fff4e4 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(217,93,43,.22)}
    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }
    .section{
      padding:68px 0;
      position:relative;
    }
    .section-tight{padding:42px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border:1px solid var(--line-strong);
      border-radius:999px;
      background:rgba(255,255,255,.72);
      color:var(--brand-dark);
      font-size:14px;
      font-weight:800;
      box-shadow:var(--shadow-soft);
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 0 5px rgba(217,93,43,.12);
    }
    .section-title{
      margin:16px 0 10px;
      font-size:clamp(30px,4vw,52px);
      line-height:1.1;
      letter-spacing:-.04em;
      font-weight:950;
    }
    .section-lead{
      max-width:760px;
      margin:0;
      color:var(--muted);
      font-size:17px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      padding:14px 0;
      background:rgba(255,247,235,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(239,215,189,.75);
      box-shadow:0 8px 30px rgba(86,47,22,.06);
    }
    .nav-shell{
      min-height:66px;
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:18px;
      padding:10px 14px;
      border:1px solid rgba(231,185,140,.78);
      border-radius:999px;
      background:rgba(255,255,255,.76);
      box-shadow:var(--shadow-soft);
    }
    .nav-side{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-side.left{justify-content:flex-end}
    .nav-side.right{justify-content:flex-start}
    .nav-item{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:10px 16px;
      border:1px solid transparent;
      border-radius:999px;
      color:var(--muted);
      font-size:15px;
      font-weight:850;
      white-space:nowrap;
    }
    .nav-item:hover,
    .nav-item:focus{
      color:var(--brand-dark);
      border-color:var(--line-strong);
      background:var(--cream);
      transform:translateY(-1px);
      outline:none;
    }
    .nav-item.active{
      color:var(--brand-dark);
      background:linear-gradient(180deg,#fff4df,#ffe3c3);
      border-color:#e9ae79;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.7),0 8px 18px rgba(217,93,43,.12);
    }
    .brand-logo{
      display:inline-flex;
      align-items:center;
      gap:10px;
      min-height:50px;
      padding:8px 16px 8px 10px;
      border-radius:999px;
      background:linear-gradient(135deg,#3a2419,#7c332a 55%,#d95d2b);
      color:#fff;
      font-weight:950;
      letter-spacing:-.02em;
      box-shadow:0 14px 34px rgba(129,59,52,.26);
    }
    .brand-logo:hover{transform:translateY(-1px);color:#fff}
    .brand-logo-mark{
      width:36px;
      height:36px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:linear-gradient(135deg,#ffcb7b,#fff3dc);
      color:#873a20;
      font-weight:1000;
      box-shadow:inset 0 0 0 2px rgba(255,255,255,.5);
    }
    .mobile-title-bar{
      display:none;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .menu-icon-wrap{
      display:inline-flex;
      align-items:center;
      gap:9px;
      min-height:44px;
      padding:10px 14px;
      border:1px solid var(--line-strong);
      border-radius:999px;
      background:#fff7ec;
      color:var(--brand-dark);
      font-weight:850;
      box-shadow:var(--shadow-soft);
    }
    .mobile-menu{
      display:none;
      margin-top:10px;
      padding:10px;
      border:1px solid var(--line);
      border-radius:22px;
      background:rgba(255,255,255,.95);
      box-shadow:var(--shadow-soft);
    }
    .mobile-menu.is-open{display:block}
    .mobile-menu a{
      display:block;
      padding:12px 14px;
      border-radius:14px;
      color:var(--muted);
      font-weight:850;
    }
    .mobile-menu a:hover,
    .mobile-menu a.active{
      background:var(--cream);
      color:var(--brand-dark);
    }

    .category-hero{
      padding:54px 0 28px;
    }
    .hero-panel{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:28px;
      align-items:stretch;
      padding:30px;
      border:1px solid rgba(231,185,140,.9);
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,241,221,.88)),
        radial-gradient(circle at 92% 12%,rgba(217,93,43,.12),transparent 36%);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px dashed rgba(217,93,43,.18);
      border-radius:24px;
      pointer-events:none;
    }
    .hero-copy{position:relative;z-index:1;padding:12px 0}
    h1{
      margin:18px 0 14px;
      font-size:clamp(34px,5vw,62px);
      line-height:1.04;
      font-weight:1000;
      letter-spacing:-.055em;
      color:var(--ink);
    }
    .hero-copy p{
      max-width:660px;
      color:var(--muted);
      font-size:18px;
      margin:0 0 22px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:26px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:13px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:950;
      line-height:1;
      transition:var(--ease);
      user-select:none;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),#b54524);
      box-shadow:0 13px 26px rgba(217,93,43,.24);
    }
    .btn-primary:hover,
    .btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      filter:brightness(1.05);
      box-shadow:0 16px 34px rgba(217,93,43,.3);
      outline:none;
    }
    .btn-secondary{
      color:var(--brand-dark);
      background:rgba(255,255,255,.78);
      border-color:var(--line-strong);
    }
    .btn-secondary:hover,
    .btn-secondary:focus{
      color:var(--wine);
      background:var(--cream);
      border-color:#d99b66;
      transform:translateY(-2px);
      outline:none;
    }
    .hero-demo{
      position:relative;
      z-index:1;
      border:1px solid var(--line-strong);
      border-radius:26px;
      padding:18px;
      background:linear-gradient(180deg,#3b251d,#6e3028);
      color:#fff;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.08),0 20px 35px rgba(74,39,23,.18);
    }
    .demo-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .demo-title{font-weight:950}
    .demo-status{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,203,123,.14);
      color:#ffd99e;
      font-size:13px;
      font-weight:900;
      border:1px solid rgba(255,203,123,.28);
    }
    .demo-status:before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:#ffcb7b;
      box-shadow:0 0 0 5px rgba(255,203,123,.12);
    }
    .demo-card{
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      margin-bottom:12px;
    }
    .demo-card.featured{
      min-height:138px;
      background:
        linear-gradient(135deg,rgba(255,177,95,.22),rgba(255,255,255,.08)),
        radial-gradient(circle at right top,rgba(255,203,123,.22),transparent 48%);
    }
    .demo-card strong{
      display:block;
      font-size:20px;
      margin-bottom:6px;
    }
    .demo-card span{
      display:block;
      color:#ead2c0;
      font-size:14px;
    }
    .meter{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:6px;
      margin-top:14px;
    }
    .meter i{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.16);
      overflow:hidden;
    }
    .meter i:nth-child(-n+4){background:linear-gradient(90deg,#ffcb7b,#d95d2b)}
    .hero-mini-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }

    .filter-shell{
      padding:22px;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.78);
      box-shadow:var(--shadow-soft);
    }
    .filter-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:20px;
      margin-bottom:18px;
    }
    .filter-head h2{
      margin:0;
      font-size:28px;
      line-height:1.18;
      font-weight:1000;
      letter-spacing:-.03em;
    }
    .filter-head p{
      margin:5px 0 0;
      color:var(--muted);
    }
    .tag-groups{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
    }
    .tag-group{
      padding:14px;
      border-radius:20px;
      border:1px solid #f0d5b9;
      background:linear-gradient(180deg,#fffaf4,#fff2e4);
    }
    .tag-label{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:8px;
      margin-bottom:10px;
      color:var(--wine);
      font-size:14px;
      font-weight:950;
    }
    .tag-list{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .filter-tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 11px;
      border-radius:999px;
      border:1px solid rgba(231,185,140,.9);
      background:#fff;
      color:var(--muted);
      font-size:13px;
      font-weight:850;
      transition:var(--ease);
    }
    .filter-tag b{
      color:var(--brand-dark);
      font-size:12px;
    }
    .filter-tag:hover,
    .filter-tag.is-active{
      color:var(--brand-dark);
      background:#ffe5c7;
      border-color:#df9f69;
      transform:translateY(-1px);
    }

    .matrix-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:22px;
    }
    .matrix-head h2{
      margin:0;
      font-size:34px;
      line-height:1.15;
      font-weight:1000;
      letter-spacing:-.035em;
    }
    .matrix-head p{margin:6px 0 0;color:var(--muted)}
    .sort-pills{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:8px;
    }
    .sort-pill{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.78);
      color:var(--muted);
      font-size:13px;
      font-weight:900;
    }
    .sort-pill.active{
      color:var(--brand-dark);
      border-color:var(--line-strong);
      background:var(--cream);
    }
    .card-matrix{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      align-items:stretch;
    }
    .entry-card{
      position:relative;
      display:flex;
      flex-direction:column;
      min-height:320px;
      padding:14px;
      border:1px solid rgba(231,185,140,.88);
      border-radius:24px;
      background:rgba(255,255,255,.82);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      transition:var(--ease);
    }
    .entry-card:hover{
      transform:translateY(-5px);
      border-color:#de9a62;
      box-shadow:0 22px 42px rgba(101,51,22,.14);
    }
    .entry-card.is-major{
      grid-column:span 2;
      min-height:360px;
      background:linear-gradient(145deg,#fff,#fff0dc);
    }
    .cover{
      position:relative;
      min-height:128px;
      border-radius:19px;
      overflow:hidden;
      background:
        radial-gradient(circle at 25% 20%,rgba(255,203,123,.9),transparent 24%),
        radial-gradient(circle at 78% 24%,rgba(129,59,52,.58),transparent 26%),
        linear-gradient(135deg,#f3b15d,#d95d2b 46%,#5c2a23);
      border:1px solid rgba(255,255,255,.7);
    }
    .entry-card.is-major .cover{min-height:170px}
    .cover:after{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg,rgba(255,255,255,.18),transparent 45%),
        repeating-linear-gradient(90deg,rgba(255,255,255,.08) 0 1px,transparent 1px 18px);
      opacity:.75;
    }
    .cover-chip{
      position:absolute;
      z-index:2;
      top:12px;
      left:12px;
      display:inline-flex;
      align-items:center;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(48,31,24,.78);
      color:#ffe2bd;
      font-size:12px;
      font-weight:950;
      backdrop-filter:blur(8px);
    }
    .entry-body{
      display:flex;
      flex-direction:column;
      flex:1;
      padding:14px 4px 2px;
    }
    .entry-card h3{
      margin:0 0 8px;
      font-size:21px;
      line-height:1.25;
      font-weight:1000;
      letter-spacing:-.025em;
    }
    .entry-card p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:14.5px;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:7px;
      margin-top:auto;
      padding-top:8px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:5px;
      padding:7px 9px;
      border-radius:999px;
      background:#fff3df;
      color:var(--brand-dark);
      border:1px solid #efd0ad;
      font-size:12px;
      font-weight:900;
    }
    .card-link{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      min-height:42px;
      padding:10px 13px;
      border-radius:16px;
      background:#3a2419;
      color:#fff;
      font-weight:950;
    }
    .card-link:hover{color:#fff;background:#7c332a}
    .card-link span:last-child{
      width:24px;height:24px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(255,255,255,.16);
    }

    .reputation-wrap{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:24px;
      align-items:center;
      padding:26px;
      border-radius:var(--radius-lg);
      border:1px solid var(--line);
      background:
        linear-gradient(135deg,rgba(255,255,255,.86),rgba(255,238,212,.8)),
        radial-gradient(circle at 12% 20%,rgba(247,196,108,.22),transparent 34%);
      box-shadow:var(--shadow);
    }
    .avatar-stack{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:0;
      margin:18px 0 0;
    }
    .avatar{
      width:54px;
      height:54px;
      margin-right:-12px;
      border-radius:50%;
      border:3px solid #fffaf2;
      background:linear-gradient(135deg,#ffcb7b,#d95d2b 55%,#7c332a);
      box-shadow:0 8px 18px rgba(93,47,21,.14);
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:1000;
    }
    .avatar:nth-child(2){background:linear-gradient(135deg,#f3b15d,#813b34)}
    .avatar:nth-child(3){background:linear-gradient(135deg,#ffe0ad,#a93e1f)}
    .avatar:nth-child(4){background:linear-gradient(135deg,#d95d2b,#3a2419)}
    .avatar.more{background:#fff;color:var(--brand-dark);border-color:#ffe1bd}
    .bubble-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .bubble{
      position:relative;
      padding:16px;
      border-radius:22px;
      border:1px solid #efd1ae;
      background:#fffaf3;
      box-shadow:var(--shadow-soft);
    }
    .bubble:before{
      content:"";
      position:absolute;
      left:18px;
      bottom:-8px;
      width:16px;height:16px;
      transform:rotate(45deg);
      background:#fffaf3;
      border-right:1px solid #efd1ae;
      border-bottom:1px solid #efd1ae;
    }
    .bubble strong{
      display:block;
      margin-bottom:5px;
      font-size:16px;
    }
    .bubble p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .stars{
      color:#d95d2b;
      letter-spacing:1px;
      font-size:13px;
      margin-bottom:5px;
    }

    .rule-panel{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:26px;
      align-items:start;
    }
    .rule-card{
      padding:24px;
      border-radius:var(--radius-lg);
      border:1px solid var(--line);
      background:#fff;
      box-shadow:var(--shadow-soft);
    }
    .rule-card h2{
      margin:0 0 10px;
      font-size:32px;
      line-height:1.15;
      font-weight:1000;
    }
    .rule-card p{margin:0;color:var(--muted)}
    .rule-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
    }
    .rule-list li{
      display:flex;
      gap:10px;
      padding:12px 0;
      border-top:1px solid #f2dcc5;
      color:var(--muted);
      font-weight:700;
    }
    .rule-list li:before{
      content:"✓";
      width:24px;height:24px;
      flex:0 0 24px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:#fff1dd;
      color:var(--brand-dark);
      font-weight:1000;
    }
    .accordion{
      margin:0;
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line);
      border-radius:20px;
      background:#fff;
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .accordion-title{
      border:0 !important;
      padding:18px 48px 18px 18px;
      color:var(--ink);
      font-size:17px;
      font-weight:950;
      background:#fffaf4;
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:#fff0d9;
      color:var(--brand-dark);
      outline:none;
    }
    .accordion-title:before{
      right:18px;
      margin-top:-10px;
      color:var(--brand-dark);
      font-size:22px;
    }
    .accordion-content{
      border:0 !important;
      padding:0 18px 18px;
      color:var(--muted);
      background:#fff;
    }

    .cta-band{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      padding:34px;
      background:
        radial-gradient(circle at 20% 18%,rgba(255,203,123,.28),transparent 30%),
        linear-gradient(135deg,#3a2419,#7c332a 58%,#d95d2b);
      color:#fff;
      box-shadow:0 24px 55px rgba(93,47,21,.2);
    }
    .cta-band:after{
      content:"";
      position:absolute;
      inset:18px;
      border:1px dashed rgba(255,255,255,.18);
      border-radius:24px;
      pointer-events:none;
    }
    .cta-inner{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr auto;
      gap:22px;
      align-items:center;
    }
    .cta-band h2{
      margin:0 0 8px;
      font-size:clamp(28px,4vw,44px);
      line-height:1.12;
      font-weight:1000;
      letter-spacing:-.04em;
    }
    .cta-band p{
      margin:0;
      max-width:720px;
      color:#f3d8c5;
    }
    .cta-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .cta-band .btn-secondary{
      background:rgba(255,255,255,.12);
      color:#fff;
      border-color:rgba(255,255,255,.32);
    }
    .cta-band .btn-secondary:hover{
      background:rgba(255,255,255,.2);
      color:#fff;
    }

    .site-footer{
      padding:42px 0 28px;
      background:#2d1f19;
      color:#f5e4d4;
      margin-top:42px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:28px;
      align-items:start;
      padding-bottom:24px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:20px;
      font-weight:1000;
      color:#fff;
    }
    .footer-brand span{
      width:34px;height:34px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:#ffcb7b;
      color:#7c332a;
      font-weight:1000;
    }
    .footer-note{
      max-width:620px;
      margin:12px 0 0;
      color:#d8bfab;
      font-size:14px;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
    }
    .footer-links a{
      padding:9px 12px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:999px;
      color:#f5e4d4;
      font-size:14px;
      font-weight:800;
      background:rgba(255,255,255,.04);
    }
    .footer-links a:hover{
      color:#fff;
      border-color:rgba(255,203,123,.45);
      background:rgba(255,203,123,.08);
    }
    .copyright{
      padding-top:18px;
      color:#bfa491;
      font-size:13px;
    }

    @media (max-width:1024px){
      .site-container{width:min(100% - 30px,var(--container))}
      .hero-panel,
      .reputation-wrap,
      .rule-panel{grid-template-columns:1fr}
      .card-matrix{grid-template-columns:repeat(2,1fr)}
      .tag-groups{grid-template-columns:1fr}
      .cta-inner{grid-template-columns:1fr}
      .cta-actions{justify-content:flex-start}
      .entry-card.is-major{grid-column:span 1}
    }
    @media (max-width:768px){
      .site-header{padding:10px 0}
      .desktop-nav{display:none}
      .mobile-title-bar{display:flex}
      .section{padding:48px 0}
      .category-hero{padding:30px 0 20px}
      .hero-panel{padding:20px;border-radius:24px}
      .hero-panel:before{inset:10px;border-radius:20px}
      .hero-mini-grid{grid-template-columns:1fr}
      .filter-head,
      .matrix-head{display:block}
      .sort-pills{justify-content:flex-start;margin-top:14px}
      .bubble-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }
    @media (max-width:520px){
      .site-container{width:calc(100% - 22px)}
      .brand-logo{font-size:14px;padding-right:12px}
      .brand-logo-mark{width:32px;height:32px}
      .menu-icon-wrap{padding:9px 11px;font-size:14px}
      h1{font-size:34px}
      .hero-copy p{font-size:16px}
      .hero-actions,.cta-actions{flex-direction:column}
      .btn{width:100%}
      .card-matrix{grid-template-columns:1fr}
      .filter-shell,.reputation-wrap,.rule-card,.cta-band{padding:18px;border-radius:24px}
      .entry-card{min-height:auto}
      .section-title{font-size:30px}
      .tag-list{gap:7px}
      .filter-tag{font-size:12px;padding:7px 9px}
      .avatar{width:48px;height:48px}
    }
