/* roulang page: index */
:root{
      --bg:#faf7f3;
      --panel:#ffffff;
      --panel-2:#fffaf6;
      --line:#eaded5;
      --line-strong:#d8c6b7;
      --text:#171717;
      --muted:#6f675f;
      --brand:#e34b2c;
      --brand-2:#ff8a1e;
      --brand-3:#ffd7c1;
      --shadow:0 14px 40px rgba(67,35,19,.08);
      --radius:8px;
      --radius-sm:6px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:
        linear-gradient(180deg, rgba(255,255,255,.7) 0, rgba(255,255,255,0) 120px),
        var(--bg);
      color:var(--text);
      font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height:1.65;
      letter-spacing:0;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:#ffd2c1;color:#1f140f}
    .container-app{
      width:min(1180px, calc(100% - 32px));
      margin-inline:auto;
    }
    .surface{
      background:var(--panel);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      border-radius:var(--radius);
    }
    .surface-soft{
      background:var(--panel-2);
      border:1px solid var(--line);
      border-radius:var(--radius);
    }
    .topbar{
      background:#1f1a16;
      color:#f7ede5;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .topbar a:hover{color:#ffd7c1}
    .nav-wrap{
      background:rgba(250,247,243,.88);
      backdrop-filter:saturate(130%) blur(14px);
      border-bottom:1px solid rgba(234,222,213,.9);
    }
    .brand-mark{
      display:flex;
      align-items:center;
      gap:.7rem;
      min-width:0;
    }
    .brand-badge{
      width:38px;height:38px;
      border-radius:10px;
      background:linear-gradient(145deg, var(--brand), var(--brand-2));
      color:#fff;
      display:grid;
      place-items:center;
      box-shadow:0 10px 24px rgba(227,75,44,.24);
      flex:0 0 auto;
    }
    .brand-name{
      min-width:0;
      line-height:1.12;
    }
    .brand-name strong{
      display:block;
      font-size:1rem;
      font-weight:800;
      color:var(--text);
      white-space:normal;
    }
    .brand-name span{
      display:block;
      font-size:.79rem;
      color:var(--muted);
      margin-top:.12rem;
      white-space:normal;
    }
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.8rem 1rem;
      border-radius:8px;
      color:#3a322d;
      transition:transform .18s ease, color .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      color:var(--brand);
      background:#fff5ef;
      transform:translateY(-1px);
    }
    .nav-link.active{
      color:var(--brand);
      background:#fff0e8;
      box-shadow:inset 0 0 0 1px #ffd6c4;
    }
    .btn-primary,
    .btn-secondary,
    .btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.5rem;
      border-radius:8px;
      font-weight:700;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      white-space:nowrap;
      line-height:1;
    }
    .btn-primary{
      background:linear-gradient(145deg, var(--brand), var(--brand-2));
      color:#fff;
      box-shadow:0 14px 28px rgba(227,75,44,.18);
    }
    .btn-primary:hover{transform:translateY(-1px);box-shadow:0 18px 32px rgba(227,75,44,.24)}
    .btn-secondary{
      background:#fff;
      color:var(--text);
      border:1px solid var(--line-strong);
    }
    .btn-secondary:hover{
      transform:translateY(-1px);
      border-color:#f0b79f;
      color:var(--brand);
      box-shadow:var(--shadow);
    }
    .btn-ghost{
      background:transparent;
      border:1px solid rgba(255,255,255,.16);
      color:#fff;
    }
    .btn-ghost:hover{transform:translateY(-1px);background:rgba(255,255,255,.08)}
    .chip{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.42rem .72rem;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:#5f554c;
      font-size:.86rem;
      line-height:1;
      white-space:nowrap;
    }
    .chip-accent{
      background:#fff2ea;
      border-color:#ffd2be;
      color:#b53d1d;
    }
    .section-title{
      display:flex;
      flex-wrap:wrap;
      align-items:end;
      justify-content:space-between;
      gap:1rem;
      margin-bottom:1rem;
    }
    .section-title h2{
      margin:0;
      font-size:1.55rem;
      line-height:1.18;
      font-weight:900;
      letter-spacing:0;
      color:#1f1814;
    }
    .section-title p{
      margin:0;
      color:var(--muted);
      max-width:62ch;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:.35rem .7rem;
      border-radius:999px;
      background:#fff3eb;
      color:var(--brand);
      border:1px solid #ffd2be;
      font-size:.82rem;
      font-weight:700;
    }
    .panel{
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .panel-soft{
      background:var(--panel-2);
      border:1px solid var(--line);
      border-radius:var(--radius);
    }
    .card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:0 8px 24px rgba(36,21,12,.05);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{
      transform:translateY(-2px);
      border-color:#f0b79f;
      box-shadow:var(--shadow);
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:.3rem;
      padding:.28rem .56rem;
      border-radius:999px;
      font-size:.76rem;
      font-weight:700;
      line-height:1;
      border:1px solid transparent;
      white-space:nowrap;
    }
    .tag-hot{background:#fff0eb;color:#bf4124;border-color:#ffd4c6}
    .tag-warm{background:#fff8e9;color:#9e5b00;border-color:#ffe0aa}
    .tag-calm{background:#f5f7fa;color:#4b5662;border-color:#dde5ef}
    .tag-dark{background:#2d241f;color:#fff;border-color:#2d241f}
    .stat{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:1rem;
      box-shadow:0 10px 24px rgba(36,21,12,.04);
    }
    .stat .value{
      font-size:1.75rem;
      font-weight:900;
      line-height:1;
      color:#1b1512;
      letter-spacing:0;
    }
    .stat .label{
      margin-top:.35rem;
      color:var(--muted);
      font-size:.88rem;
    }
    .progress{
      height:10px;
      border-radius:999px;
      background:#f2e8e1;
      overflow:hidden;
      border:1px solid #eaded5;
    }
    .progress > span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--brand), var(--brand-2));
    }
    .faq details{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:0;
      box-shadow:0 8px 20px rgba(36,21,12,.04);
      overflow:hidden;
    }
    .faq summary{
      list-style:none;
      cursor:pointer;
      padding:1rem 1.1rem;
      font-weight:800;
      color:#201813;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
    }
    .faq summary::-webkit-details-marker{display:none}
    .faq summary::after{
      content:"+";
      color:var(--brand);
      font-size:1.2rem;
      line-height:1;
      flex:0 0 auto;
    }
    .faq details[open] summary{
      border-bottom:1px solid var(--line);
      background:#fffaf7;
    }
    .faq details[open] summary::after{content:"–"}
    .faq .answer{
      padding:0 1.1rem 1rem;
      color:#5d544d;
    }
    .list-link{
      display:flex;
      align-items:flex-start;
      gap:.8rem;
      padding:.9rem 0;
      border-bottom:1px solid #efe4dc;
      transition:color .18s ease;
    }
    .list-link:hover .title{color:var(--brand)}
    .list-link:last-child{border-bottom:0}
    .list-link .dot{
      width:9px;height:9px;
      border-radius:50%;
      margin-top:.48rem;
      background:linear-gradient(145deg, var(--brand), var(--brand-2));
      flex:0 0 auto;
      box-shadow:0 0 0 4px #fff0e8;
    }
    .list-link .title{
      font-weight:800;
      color:#1e1714;
      line-height:1.45;
    }
    .list-link .meta{
      display:flex;
      align-items:center;
      gap:.45rem;
      flex-wrap:wrap;
      margin-top:.35rem;
      color:var(--muted);
      font-size:.83rem;
    }
    .timeline{
      display:grid;
      gap:.7rem;
    }
    .timeline .step{
      display:grid;
      grid-template-columns:2.6rem 1fr;
      gap:.8rem;
      align-items:start;
      padding:.9rem;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:#fff;
    }
    .timeline .num{
      width:2.2rem;height:2.2rem;
      border-radius:10px;
      display:grid;
      place-items:center;
      font-weight:900;
      color:#fff;
      background:linear-gradient(145deg, var(--brand), var(--brand-2));
      box-shadow:0 8px 18px rgba(227,75,44,.16);
    }
    .timeline .headline{
      font-weight:800;
      color:#1e1714;
      margin-bottom:.15rem;
    }
    .timeline .desc{
      color:var(--muted);
      font-size:.92rem;
    }
    .pill-bar{
      display:flex;
      gap:.55rem;
      flex-wrap:wrap;
    }
    .triple-grid{
      display:grid;
      gap:.9rem;
      grid-template-columns:repeat(3, minmax(0,1fr));
    }
    .notice{
      background:linear-gradient(180deg, #fff9f5, #fff);
      border:1px solid #f1ddd0;
      border-radius:var(--radius);
    }
    .mobile-menu{
      border-top:1px solid var(--line);
      background:#fff;
    }
    .input{
      width:100%;
      border:1px solid #d9ccbf;
      background:#fff;
      border-radius:8px;
      padding:.82rem .95rem;
      color:var(--text);
      outline:none;
      transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    .input:focus{
      border-color:#f0a78b;
      box-shadow:0 0 0 4px rgba(227,75,44,.1);
    }
    .label{
      display:block;
      font-size:.88rem;
      font-weight:700;
      color:#433934;
      margin-bottom:.38rem;
    }
    .modal{
      position:fixed;
      inset:0;
      z-index:60;
      display:none;
      align-items:center;
      justify-content:center;
      padding:1rem;
    }
    .modal.is-open{display:flex}
    .modal-overlay{
      position:absolute;
      inset:0;
      background:rgba(24,18,15,.42);
      backdrop-filter:blur(3px);
    }
    .modal-panel{
      position:relative;
      z-index:1;
      width:min(760px, 100%);
      max-height:min(88vh, 880px);
      overflow:auto;
      background:#fff;
      border:1px solid var(--line);
      border-radius:12px;
      box-shadow:0 28px 80px rgba(0,0,0,.26);
    }
    .icon-btn{
      width:2.4rem;height:2.4rem;
      border-radius:8px;
      display:grid;
      place-items:center;
      border:1px solid var(--line);
      background:#fff;
      color:#3e342f;
      transition:transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
    }
    .icon-btn:hover{
      transform:translateY(-1px);
      border-color:#f0b79f;
      color:var(--brand);
      background:#fff8f4;
    }
    .footer{
      background:#1f1a16;
      color:#efe6de;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .footer a{color:#f7ddd0}
    .footer a:hover{color:#fff}
    @media (max-width: 1024px){
      .triple-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
    }
    @media (max-width: 768px){
      .container-app{width:min(1180px, calc(100% - 24px))}
      .section-title h2{font-size:1.3rem}
      .triple-grid{grid-template-columns:1fr}
    }
    @media (max-width: 520px){
      .brand-name strong{font-size:.96rem}
      .brand-name span{font-size:.74rem}
      .nav-link{width:100%;justify-content:flex-start}
      .chip{font-size:.82rem}
      .stat .value{font-size:1.5rem}
      .list-link{padding:.82rem 0}
    }

/* roulang page: category1 */
:root{
  --bg:#f6f1ea;
  --panel:#fffdf9;
  --panel-2:#fff7ef;
  --line:#eadfce;
  --line-2:#f0e7da;
  --text:#1f1b17;
  --muted:#6e655b;
  --muted-2:#8c8276;
  --brand:#d9481f;
  --brand-2:#ff7a18;
  --brand-3:#b72c19;
  --accent:#ffe0cf;
  --ok:#1f8f5f;
  --shadow:0 14px 34px rgba(70, 40, 20, 0.08);
  --shadow-2:0 10px 24px rgba(70, 40, 20, 0.12);
  --radius:8px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    linear-gradient(180deg,#fffefb 0%, #f8f4ee 34%, #f4efe7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height:1.65;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
::selection{background:rgba(217,72,31,.18);color:var(--text)}
.container-app{
  width:min(1200px, calc(100% - 2rem));
  margin:0 auto;
}
.page-shell{
  position:relative;
}
.topbar{
  background:linear-gradient(90deg,#241914 0%, #40251a 45%, #5a2d17 100%);
  color:#fff;
}
.topbar a,.topbar button{color:#fff}
.brand-mark{
  display:flex;
  align-items:center;
  gap:.75rem;
  min-width:0;
}
.brand-badge{
  width:2.55rem;
  height:2.55rem;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,var(--brand),var(--brand-2));
  color:#fff;
  box-shadow:0 8px 18px rgba(217,72,31,.24);
  flex:none;
}
.brand-name{
  display:flex;
  flex-direction:column;
  gap:.08rem;
  min-width:0;
}
.brand-name strong{
  font-size:1rem;
  line-height:1.1;
}
.brand-name span{
  font-size:.78rem;
  color:rgba(255,255,255,.72);
}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(160%) blur(12px);
  background:rgba(251,247,241,.88);
  border-bottom:1px solid rgba(234,223,206,.88);
}
.site-header .container-app{
  padding-top:.85rem;
  padding-bottom:.85rem;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.65rem .9rem;
  border-radius:999px;
  font-size:.94rem;
  color:#453d36;
  transition:transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
.nav-link:hover{
  background:rgba(217,72,31,.08);
  color:#8f2a13;
  transform:translateY(-1px);
}
.nav-link.active{
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:0 10px 18px rgba(217,72,31,.22);
}
.nav-cta{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.8rem 1rem;
  border-radius:999px;
  background:#1f1b17;
  color:#fff;
  border:1px solid #1f1b17;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.nav-cta:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-2);
}
.nav-cta svg,.btn svg,.icon-line svg{
  width:1rem;height:1rem;flex:none;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  min-height:2.75rem;
  padding:.72rem 1rem;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  box-shadow:0 12px 26px rgba(217,72,31,.2);
}
.btn-primary:hover{box-shadow:0 16px 28px rgba(217,72,31,.25)}
.btn-ghost{
  background:#fff;
  border-color:var(--line);
  color:#3d342b;
}
.btn-ghost:hover{
  border-color:#d9c6b2;
  background:#fffaf4;
}
.btn-dark{
  background:#231d18;
  color:#fff;
}
.btn-dark:hover{background:#171310}
.badge-soft,
.tag-soft{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.35rem .65rem;
  border-radius:999px;
  font-size:.78rem;
  border:1px solid var(--line);
  background:#fff;
  color:#5e5549;
}
.badge-hot{
  background:#fff0e7;
  border-color:#ffd3ba;
  color:#a23a13;
}
.badge-strong{
  background:linear-gradient(135deg,#fff, #fff3e7);
  border-color:#f4ccb0;
  color:#c14215;
}
.section-shell{
  padding:1.1rem 0 1.2rem;
}
.panel{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(234,223,206,.9);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.panel-strong{
  background:linear-gradient(180deg,#fffdf9 0%, #fff8f0 100%);
  border:1px solid #ead8c5;
}
.hero-panel{
  position:relative;
  overflow:hidden;
}
.hero-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(217,72,31,.08), rgba(255,122,24,.04) 40%, transparent 70%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  gap:1.2rem;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.38rem .72rem;
  border-radius:999px;
  background:#fff3ea;
  color:#9b3412;
  border:1px solid #ffd4bd;
  font-size:.82rem;
  font-weight:700;
}
.hero-title{
  font-size:clamp(2rem, 4vw, 3.35rem);
  line-height:1.06;
  letter-spacing:0;
  font-weight:900;
}
.hero-sub{
  color:var(--muted);
  font-size:1rem;
  max-width:46rem;
}
.chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.4rem .7rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:#574d41;
  font-size:.84rem;
}
.chip strong{color:#a03c16}
.hero-box{
  position:relative;
  z-index:1;
}
.matrix-panel{
  padding:1rem;
  background:linear-gradient(180deg,#fff 0%, #fff9f3 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.matrix-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  margin-bottom:.9rem;
}
.matrix-title{
  font-size:1rem;
  font-weight:800;
}
.matrix-note{
  font-size:.82rem;
  color:var(--muted);
}
.step-list{
  display:grid;
  gap:.55rem;
}
.step-item{
  display:flex;
  align-items:flex-start;
  gap:.7rem;
  padding:.65rem .72rem;
  border-radius:8px;
  background:#fff;
  border:1px solid var(--line-2);
}
.step-num{
  width:1.6rem;
  height:1.6rem;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  flex:none;
}
.step-item p{
  margin:0;
  font-size:.9rem;
  color:#4a4137;
}
.metric-grid{
  display:grid;
  gap:.75rem;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.metric{
  padding:.85rem .8rem;
  border-radius:8px;
  background:#fff;
  border:1px solid var(--line-2);
}
.metric strong{
  display:block;
  font-size:1.18rem;
  line-height:1.1;
  color:#8f2a13;
}
.metric span{
  display:block;
  margin-top:.25rem;
  color:var(--muted);
  font-size:.84rem;
}
.icon-strip{
  display:grid;
  gap:.8rem;
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.icon-item{
  display:flex;
  align-items:center;
  gap:.7rem;
  padding:.85rem .8rem;
  border-radius:8px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 8px 20px rgba(54,26,12,.04);
}
.icon-item .ico{
  width:2.1rem;
  height:2.1rem;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:#fff2e9;
  color:#c14114;
  flex:none;
}
.icon-item strong{
  display:block;
  font-size:.88rem;
  line-height:1.1;
}
.icon-item span{
  display:block;
  font-size:.78rem;
  color:var(--muted);
  margin-top:.18rem;
}
.strip-title{
  font-size:.96rem;
  font-weight:800;
  margin-bottom:.75rem;
}
.controls-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  align-items:center;
  justify-content:space-between;
}
.filter-bar{
  display:flex;
  gap:.5rem;
  overflow-x:auto;
  padding-bottom:.2rem;
  scrollbar-width:thin;
}
.filter-bar::-webkit-scrollbar{height:8px}
.filter-bar::-webkit-scrollbar-thumb{background:#e0d2c0;border-radius:999px}
.filter-chip{
  flex:none;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.5rem .75rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:#5a5147;
  white-space:nowrap;
  font-size:.88rem;
  transition:transform .15s ease, border-color .15s ease, background .15s ease;
}
.filter-chip:hover{
  transform:translateY(-1px);
  background:#fff7ef;
  border-color:#e1bea1;
}
.filter-chip.active{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  border-color:transparent;
}
.select-box{
  min-width:11rem;
  height:2.6rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  padding:0 .9rem;
  color:#473f35;
  outline:none;
}
.select-box:focus,
input:focus,
textarea:focus{
  border-color:#d37a48;
  box-shadow:0 0 0 3px rgba(217,72,31,.12);
}
.search-prompt{
  font-size:.9rem;
  color:var(--muted);
}
.dir-card{
  position:sticky;
  top:8.25rem;
  padding:1rem;
}
.dir-title{
  font-weight:900;
  font-size:1rem;
}
.dir-text{
  margin-top:.3rem;
  color:var(--muted);
  font-size:.88rem;
}
.dir-list{
  display:grid;
  gap:.45rem;
  margin-top:.9rem;
}
.dir-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.8rem;
  padding:.72rem .8rem;
  border-radius:8px;
  border:1px solid var(--line);
  background:#fff;
  color:#42382f;
  transition:background .15s ease, transform .15s ease, border-color .15s ease;
}
.dir-list a:hover{
  background:#fff7ef;
  border-color:#ebc7ae;
  transform:translateY(-1px);
}
.dir-list a span{
  color:var(--muted);
  font-size:.82rem;
}
.content-grid{
  display:grid;
  gap:1rem;
}
.card-grid{
  display:grid;
  gap:1rem;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.entry-card{
  display:flex;
  flex-direction:column;
  gap:.9rem;
  padding:1rem;
  background:linear-gradient(180deg,#fff 0%, #fffaf4 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 10px 24px rgba(57,32,15,.05);
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.entry-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-2);
  border-color:#e3c6ad;
}
.entry-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
}
.entry-title{
  font-size:1.06rem;
  font-weight:900;
  line-height:1.25;
}
.entry-sub{
  margin-top:.35rem;
  color:var(--muted);
  font-size:.9rem;
}
.entry-tags{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
}
.entry-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:.7rem;
  padding-top:.1rem;
  border-top:1px dashed #ecdcc8;
}
.price-tag{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.38rem .65rem;
  border-radius:999px;
  background:linear-gradient(135deg,#fff0e5,#ffe0cf);
  color:#a73d12;
  font-weight:800;
  font-size:.84rem;
}
.rate-pill{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  color:#7c6e5f;
  font-size:.84rem;
}
.progress{
  width:100%;
  height:.46rem;
  border-radius:999px;
  background:#f0e2d6;
  overflow:hidden;
}
.progress > span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
}
.card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  align-items:center;
}
.small-btn{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.55rem .8rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:#43382f;
  font-size:.86rem;
  font-weight:700;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.small-btn:hover{
  transform:translateY(-1px);
  background:#fff7ef;
  border-color:#e6c7ab;
}
.small-btn.primary{
  background:#231d18;
  color:#fff;
  border-color:#231d18;
}
.summary-band{
  display:grid;
  gap:1rem;
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.stat-card{
  padding:1rem;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.stat-card strong{
  display:block;
  font-size:1.8rem;
  line-height:1;
  color:#8f2a13;
}
.stat-card span{
  display:block;
  margin-top:.35rem;
  font-size:.9rem;
  color:var(--muted);
}
.comp-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}
.comp-table th,
.comp-table td{
  padding:.85rem .9rem;
  text-align:left;
  border-bottom:1px solid #f1e6d9;
  font-size:.92rem;
}
.comp-table th{
  background:#fff6ee;
  color:#4a3f36;
}
.comp-table tr:last-child td{border-bottom:none}
.comp-table td strong{color:#8f2a13}
.notice-card{
  padding:1rem;
  border-radius:var(--radius);
  background:#fff7ef;
  border:1px solid #f0cfb6;
}
.notice-card p{margin:0;color:#5a5147;font-size:.92rem}
.privacy-list{
  display:grid;
  gap:.55rem;
  margin:0;
  padding:0;
  list-style:none;
}
.privacy-list li{
  display:flex;
  align-items:flex-start;
  gap:.55rem;
  color:#564c42;
  font-size:.92rem;
}
.privacy-list li svg{
  width:1rem;height:1rem;flex:none;color:#c14114;margin-top:.18rem
}
.faq details{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.faq details + details{margin-top:.75rem}
.faq summary{
  list-style:none;
  cursor:pointer;
  padding:1rem 1.05rem;
  font-weight:800;
  color:#362e27;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary span{
  color:#9a3c16;
  flex:none;
  transition:transform .15s ease;
}
.faq details[open] summary span{transform:rotate(180deg)}
.faq .answer{
  padding:0 1.05rem 1rem;
  color:var(--muted);
  font-size:.94rem;
}
.related-grid{
  display:grid;
  gap:1rem;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.related-card{
  padding:1rem;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff 0%, #fff9f2 100%);
  box-shadow:var(--shadow);
}
.related-card strong{
  display:block;
  font-size:1.03rem;
}
.related-card p{
  margin:.35rem 0 0;
  color:var(--muted);
  font-size:.9rem;
}
.footer{
  margin-top:1.25rem;
  background:#14110f;
  color:#fff;
}
.footer a{color:rgba(255,255,255,.82)}
.footer a:hover{color:#fff}
.footer .brand-name span{color:rgba(255,255,255,.68)}
.footer .muted{color:rgba(255,255,255,.66)}
.footer-links{
  display:grid;
  gap:.45rem;
}
.footer-note{
  margin-top:1.1rem;
  padding-top:1rem;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:.8rem;
  color:rgba(255,255,255,.62);
  font-size:.9rem;
}
.overlay{
  position:fixed;
  inset:0;
  background:rgba(18,12,8,.46);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:70;
}
.overlay.open{
  opacity:1;
  pointer-events:auto;
}
.modal{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  padding:1rem;
  z-index:80;
  pointer-events:none;
  opacity:0;
  transition:opacity .18s ease;
}
.modal.open{
  opacity:1;
  pointer-events:auto;
}
.modal-card{
  width:min(680px, 100%);
  background:linear-gradient(180deg,#fff 0%, #fff8f0 100%);
  border:1px solid #e8d7c3;
  border-radius:12px;
  box-shadow:0 26px 60px rgba(38, 22, 12, .2);
  overflow:hidden;
}
.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 1.1rem;
  border-bottom:1px solid #f0e2d5;
}
.modal-head strong{
  font-size:1.05rem;
}
.modal-body{
  padding:1.1rem;
}
.form-grid{
  display:grid;
  gap:.9rem;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.field{
  display:grid;
  gap:.35rem;
}
.field label{
  font-size:.86rem;
  font-weight:700;
  color:#51483f;
}
.field input,
.field select,
.field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  padding:.75rem .85rem;
  color:#2a231d;
  outline:none;
}
.field textarea{min-height:100px;resize:vertical}
.modal-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin-top:1rem;
}
.mobile-menu{
  border-top:1px solid rgba(234,223,206,.9);
}
.mobile-menu .nav-link{
  justify-content:flex-start;
  width:100%;
}
@media (max-width: 1024px){
  .icon-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
  .summary-band{grid-template-columns:1fr}
  .card-grid{grid-template-columns:1fr}
  .related-grid{grid-template-columns:1fr}
  .dir-card{position:static}
}
@media (max-width: 768px){
  .container-app{width:min(100% - 1rem, 1200px)}
  .hero-title{font-size:2rem}
  .metric-grid{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .controls-wrap{align-items:stretch}
  .select-box{width:100%}
  .nav-cta{width:100%;justify-content:center}
}
@media (max-width: 520px){
  .btn,.small-btn,.nav-link{width:100%;justify-content:center}
  .icon-strip{grid-template-columns:1fr}
  .entry-meta{align-items:flex-start}
}

/* roulang page: category2 */
:root{
      --bg:#fff8f4;
      --panel:#ffffff;
      --panel-soft:#fff2ea;
      --line:#ecd9cf;
      --text:#1f2937;
      --muted:#6b7280;
      --brand:#f97316;
      --brand-2:#ef4444;
      --brand-3:#fb7185;
      --accent:#b45309;
      --shadow:0 12px 28px rgba(31,41,55,.08);
      --shadow-soft:0 8px 20px rgba(31,41,55,.06);
      --radius:8px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.6;
      letter-spacing:0;
    }
    a{text-decoration:none;color:inherit}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:#fed7aa;color:#7c2d12}
    .container-app{
      width:min(1200px,calc(100% - 1.5rem));
      margin-inline:auto;
    }
    .topbar{
      background:#111827;
      color:#fff;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .topbar a,.topbar button{color:#fff}
    .topbar-pill{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.38rem .72rem;
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      background:rgba(255,255,255,.04);
      transition:.18s ease;
    }
    .topbar-pill:hover{background:rgba(255,255,255,.08)}
    .site-header{
      position:sticky;
      top:0;
      z-index:40;
      background:rgba(255,248,244,.92);
      backdrop-filter:saturate(1.3) blur(10px);
      border-bottom:1px solid rgba(236,217,207,.9);
    }
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:.75rem;
      min-width:0;
    }
    .brand-badge{
      width:42px;
      height:42px;
      border-radius:12px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:0 8px 18px rgba(249,115,22,.22);
      flex:0 0 auto;
    }
    .brand-name{
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .brand-name strong{
      display:block;
      font-size:1rem;
      line-height:1.2;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-name span{
      display:block;
      font-size:.82rem;
      color:var(--muted);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .nav-shell{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:.9rem 0;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:.65rem .95rem;
      border-radius:999px;
      color:#374151;
      border:1px solid transparent;
      transition:.18s ease;
      font-weight:600;
      font-size:.95rem;
    }
    .nav-link:hover{
      color:var(--brand-2);
      background:#fff;
      border-color:#f6d2bf;
      transform:translateY(-1px);
    }
    .nav-link.active,
    .nav-link[aria-current="page"]{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:0 10px 18px rgba(239,68,68,.18);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:.65rem;
    }
    .icon-btn,.btn-primary,.btn-secondary,.btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.5rem;
      min-height:42px;
      padding:.62rem 1rem;
      border-radius:999px;
      border:1px solid transparent;
      transition:.18s ease;
      font-weight:700;
      cursor:pointer;
      letter-spacing:0;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:0 12px 22px rgba(249,115,22,.18);
    }
    .btn-primary:hover{transform:translateY(-1px);filter:brightness(1.02)}
    .btn-secondary{
      background:#fff;
      color:#111827;
      border-color:#f2c9b4;
    }
    .btn-secondary:hover{
      border-color:#f59e0b;
      color:#9a3412;
      transform:translateY(-1px);
    }
    .btn-ghost{
      background:rgba(255,255,255,.15);
      border-color:rgba(255,255,255,.18);
      color:#fff;
    }
    .btn-ghost:hover{background:rgba(255,255,255,.2)}
    .icon-btn{
      width:42px;
      padding:0;
      background:#fff;
      border:1px solid #f0d8c9;
      color:#374151;
    }
    .icon-btn:hover{border-color:#f59e0b;color:#9a3412;transform:translateY(-1px)}
    .mobile-menu{
      border-top:1px solid #ecd9cf;
      background:rgba(255,248,244,.98);
    }
    .mobile-menu a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:.85rem 0;
      border-bottom:1px solid #f1e3db;
      font-weight:600;
      color:#374151;
    }
    .mobile-menu a.active{color:var(--brand-2)}
    .section-band{
      padding:1.3rem 0;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.34rem .68rem;
      border-radius:999px;
      background:#fff;
      border:1px solid #f1ddd0;
      color:#9a3412;
      font-size:.82rem;
      font-weight:700;
      letter-spacing:0;
    }
    .section-title{
      margin:.8rem 0 .5rem;
      font-size:clamp(1.55rem,2.4vw,2.2rem);
      line-height:1.15;
      letter-spacing:0;
      color:#111827;
    }
    .section-desc{
      color:var(--muted);
      font-size:.98rem;
      max-width:64rem;
    }
    .hero-shell{
      padding:1.2rem 0 1rem;
    }
    .hero-panel{
      background:linear-gradient(180deg,#fff 0%,#fffaf7 100%);
      border:1px solid #efd8cc;
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:1rem;
      align-items:stretch;
    }
    .hero-copy{
      padding:1.35rem;
    }
    .hero-eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:.34rem .7rem;
      border-radius:999px;
      background:#fff3eb;
      color:#c2410c;
      border:1px solid #f7c3a3;
      font-size:.84rem;
      font-weight:700;
    }
    .hero-title{
      margin:.85rem 0 .7rem;
      font-size:clamp(2rem,3vw,3rem);
      line-height:1.06;
      letter-spacing:0;
      color:#111827;
      font-weight:900;
    }
    .hero-subtitle{
      margin:0;
      color:#4b5563;
      font-size:1rem;
      max-width:42rem;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
      margin-top:1rem;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.4rem .72rem;
      border-radius:999px;
      background:#fff;
      border:1px solid #ead7cd;
      color:#374151;
      font-size:.85rem;
      font-weight:600;
    }
    .tag.hot{background:#fff4ed;border-color:#f8c7a3;color:#b45309}
    .tag.warn{background:#fff1f2;border-color:#fecdd3;color:#be123c}
    .tag.cool{background:#fff;background:#fff;border-color:#f0ddd4;color:#7c2d12}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.7rem;
      margin-top:1.2rem;
    }
    .trust-row{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:.7rem;
      margin-top:1.25rem;
    }
    .trust-item{
      display:flex;
      align-items:center;
      gap:.55rem;
      padding:.72rem .8rem;
      background:#fff;
      border:1px solid #efd8cc;
      border-radius:10px;
      box-shadow:var(--shadow-soft);
      min-height:58px;
    }
    .trust-item strong{
      display:block;
      font-size:.9rem;
      line-height:1.1;
    }
    .trust-item span{
      display:block;
      font-size:.77rem;
      color:var(--muted);
    }
    .coupon-wall{
      padding:1.2rem;
      background:linear-gradient(180deg,#fff5ee 0%,#fff 100%);
      border-left:1px solid #efd8cc;
    }
    .coupon-main{
      border-radius:12px;
      border:1px solid #f5c5a5;
      background:linear-gradient(135deg,#ffedd5 0%,#fff7ed 45%,#ffffff 100%);
      padding:1.05rem;
      box-shadow:var(--shadow-soft);
    }
    .coupon-main .face{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:1rem;
    }
    .coupon-price{
      font-size:2rem;
      font-weight:900;
      line-height:1;
      color:#9a3412;
      letter-spacing:0;
    }
    .coupon-note{
      color:#7c2d12;
      font-size:.85rem;
      font-weight:700;
    }
    .mini-wall{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:.75rem;
      margin-top:.85rem;
    }
    .mini-card{
      background:#fff;
      border:1px solid #efd8cc;
      border-radius:10px;
      padding:.8rem;
      min-height:110px;
      box-shadow:var(--shadow-soft);
    }
    .mini-card h3{
      margin:0 0 .35rem;
      font-size:.95rem;
      line-height:1.2;
      font-weight:800;
      color:#111827;
    }
    .mini-card p{
      margin:0;
      color:var(--muted);
      font-size:.84rem;
      line-height:1.55;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      gap:.3rem;
      margin-bottom:.55rem;
      font-size:.72rem;
      font-weight:800;
      color:#c2410c;
      background:#fff7ed;
      border:1px solid #fed7aa;
      padding:.22rem .5rem;
      border-radius:999px;
    }
    .filter-strip{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:1rem 0 .5rem;
      flex-wrap:wrap;
    }
    .filter-row{
      display:flex;
      align-items:center;
      gap:.5rem;
      flex-wrap:nowrap;
      overflow-x:auto;
      padding-bottom:.25rem;
      scrollbar-width:thin;
    }
    .filter-row::-webkit-scrollbar{height:6px}
    .filter-row::-webkit-scrollbar-thumb{background:#f0c7b0;border-radius:999px}
    .filter-chip{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.5rem .78rem;
      border-radius:999px;
      border:1px solid #ead7cd;
      background:#fff;
      color:#374151;
      white-space:nowrap;
      font-size:.85rem;
      font-weight:700;
      transition:.18s ease;
    }
    .filter-chip:hover,.filter-chip.active{
      border-color:#fb923c;
      color:#9a3412;
      background:#fff7ed;
      transform:translateY(-1px);
    }
    .result-meta{
      display:flex;
      align-items:center;
      gap:.7rem;
      flex-wrap:wrap;
      color:#6b7280;
      font-size:.92rem;
    }
    .sort-group{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.3rem;
      background:#fff;
      border:1px solid #ead7cd;
      border-radius:999px;
    }
    .sort-pill{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.45rem .72rem;
      border-radius:999px;
      color:#374151;
      font-size:.84rem;
      font-weight:700;
    }
    .sort-pill.active{
      background:#fff4ed;
      color:#9a3412;
    }
    .content-grid{
      display:grid;
      grid-template-columns:280px 1fr;
      gap:1rem;
      align-items:start;
      margin-top:.8rem;
    }
    .side-rail{
      position:sticky;
      top:7.4rem;
      align-self:start;
      display:grid;
      gap:1rem;
    }
    .panel{
      background:#fff;
      border:1px solid #efd8cc;
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .panel-head{
      padding:1rem 1rem .8rem;
      border-bottom:1px solid #f2e3da;
      background:linear-gradient(180deg,#fff 0%,#fffaf7 100%);
    }
    .panel-head h3{
      margin:0;
      font-size:1rem;
      font-weight:800;
      color:#111827;
    }
    .panel-head p{
      margin:.28rem 0 0;
      font-size:.84rem;
      color:var(--muted);
    }
    .panel-body{padding:1rem}
    .anchor-list{
      display:grid;
      gap:.55rem;
    }
    .anchor-list a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:.75rem .8rem;
      border-radius:10px;
      background:#fff;
      border:1px solid #eed8ca;
      font-weight:700;
      color:#374151;
      transition:.18s ease;
    }
    .anchor-list a:hover{
      border-color:#fb923c;
      color:#9a3412;
      transform:translateX(2px);
    }
    .anchor-list a span{
      color:#9ca3af;
      font-weight:700;
      font-size:.8rem;
    }
    .mini-steps{
      display:grid;
      gap:.65rem;
    }
    .step-row{
      display:flex;
      gap:.75rem;
      align-items:flex-start;
    }
    .step-num{
      width:30px;
      height:30px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:#fff4ed;
      color:#9a3412;
      border:1px solid #fdba74;
      font-size:.85rem;
      font-weight:900;
      flex:0 0 auto;
    }
    .step-row strong{
      display:block;
      font-size:.92rem;
      margin-bottom:.15rem;
    }
    .step-row p{
      margin:0;
      font-size:.82rem;
      color:var(--muted);
      line-height:1.5;
    }
    .main-column{
      display:grid;
      gap:1rem;
    }
    .compare-table-wrap{
      overflow-x:auto;
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:720px;
    }
    .compare-table th,
    .compare-table td{
      padding:.9rem .85rem;
      border-bottom:1px solid #f0e0d7;
      text-align:left;
      font-size:.92rem;
      vertical-align:top;
    }
    .compare-table th{
      background:#fff7f1;
      color:#7c2d12;
      font-size:.82rem;
      text-transform:uppercase;
      letter-spacing:.02em;
    }
    .compare-table tr:hover td{background:#fffdfb}
    .table-badge{
      display:inline-flex;
      align-items:center;
      padding:.24rem .55rem;
      border-radius:999px;
      font-size:.74rem;
      font-weight:800;
      border:1px solid transparent;
    }
    .table-badge.hot{background:#fff1f2;color:#be123c;border-color:#fecdd3}
    .table-badge.new{background:#ecfeff;color:#0f766e;border-color:#a5f3fc}
    .table-badge.pick{background:#fff7ed;color:#9a3412;border-color:#fed7aa}
    .table-badge.line{background:#eff6ff;color:#1d4ed8;border-color:#bfdbfe}
    .waterfall{
      display:grid;
      gap:1rem;
      grid-template-columns:repeat(3,minmax(0,1fr));
    }
    .feature-card{
      background:#fff;
      border:1px solid #efd8cc;
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      padding:1rem;
      display:flex;
      flex-direction:column;
      gap:.7rem;
      min-height:100%;
    }
    .feature-card h3{
      margin:0;
      font-size:1rem;
      font-weight:800;
      color:#111827;
      line-height:1.25;
    }
    .feature-card p{
      margin:0;
      color:var(--muted);
      font-size:.9rem;
      line-height:1.62;
    }
    .card-foot{
      margin-top:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:.6rem;
    }
    .card-meta{
      display:flex;
      align-items:center;
      gap:.45rem;
      flex-wrap:wrap;
    }
    .status{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.25rem .58rem;
      border-radius:999px;
      font-size:.72rem;
      font-weight:800;
      border:1px solid transparent;
    }
    .status.hot{background:#fff1f2;color:#be123c;border-color:#fecdd3}
    .status.new{background:#eef2ff;color:#4338ca;border-color:#c7d2fe}
    .status.pick{background:#fff7ed;color:#9a3412;border-color:#fed7aa}
    .status.up{background:#ecfdf5;color:#047857;border-color:#a7f3d0}
    .btn-mini{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.42rem .72rem;
      border-radius:999px;
      border:1px solid #f0c6ae;
      background:#fff;
      color:#9a3412;
      font-size:.82rem;
      font-weight:800;
      transition:.18s ease;
    }
    .btn-mini:hover{background:#fff7ed;border-color:#fb923c;transform:translateY(-1px)}
    .metric-band{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:1rem;
    }
    .metric-card{
      background:#fff;
      border:1px solid #efd8cc;
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      padding:1rem;
    }
    .metric-card strong{
      display:block;
      font-size:1.65rem;
      line-height:1;
      color:#9a3412;
      letter-spacing:0;
    }
    .metric-card span{
      display:block;
      margin-top:.25rem;
      color:#374151;
      font-size:.9rem;
      font-weight:700;
    }
    .metric-card p{
      margin:.55rem 0 0;
      color:var(--muted);
      font-size:.84rem;
    }
    .progress{
      margin-top:.75rem;
      height:8px;
      border-radius:999px;
      background:#fde7dc;
      overflow:hidden;
    }
    .progress > span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--brand),var(--brand-2));
    }
    .cta-panel{
      display:grid;
      grid-template-columns:1.02fr .98fr;
      gap:1rem;
      background:linear-gradient(135deg,#fff 0%,#fff8f3 100%);
      border:1px solid #efd8cc;
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:1.1rem;
    }
    .cta-list{
      display:grid;
      gap:.7rem;
      margin-top:.95rem;
    }
    .cta-line{
      display:flex;
      align-items:flex-start;
      gap:.65rem;
      color:#374151;
      font-size:.93rem;
    }
    .cta-dot{
      width:20px;
      height:20px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:#fff4ed;
      color:#c2410c;
      border:1px solid #fdba74;
      flex:0 0 auto;
      margin-top:.1rem;
    }
    .cta-card{
      background:#111827;
      color:#fff;
      border-radius:12px;
      padding:1rem;
      box-shadow:var(--shadow);
      display:grid;
      gap:.8rem;
      align-content:start;
    }
    .cta-card h3{
      margin:0;
      font-size:1.08rem;
      line-height:1.2;
    }
    .cta-card p{
      margin:0;
      color:rgba(255,255,255,.76);
      font-size:.9rem;
    }
    .privacy-box{
      background:#fff;
      border:1px solid #efd8cc;
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      padding:1rem 1.1rem;
    }
    .privacy-list{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:.8rem;
      margin-top:.85rem;
    }
    .privacy-item{
      padding:.72rem .8rem;
      border-radius:10px;
      background:#fff7f1;
      border:1px solid #f2ddcf;
      color:#374151;
      font-size:.88rem;
    }
    .faq-grid{
      display:grid;
      gap:.75rem;
    }
    details.faq-item{
      background:#fff;
      border:1px solid #efd8cc;
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    details.faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:1rem 1rem;
      font-weight:800;
      color:#111827;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    details.faq-item summary span{
      color:#9ca3af;
      font-weight:900;
    }
    details.faq-item[open] summary{
      background:#fff7f1;
      color:#9a3412;
    }
    .faq-answer{
      padding:0 1rem 1rem;
      color:#4b5563;
      font-size:.92rem;
      line-height:1.72;
    }
    .related-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:1rem;
    }
    .related-card{
      background:#fff;
      border:1px solid #efd8cc;
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      padding:1rem;
    }
    .related-card h3{
      margin:0 0 .3rem;
      font-size:1rem;
      font-weight:800;
      color:#111827;
    }
    .related-card p{
      margin:0 0 .85rem;
      color:var(--muted);
      font-size:.9rem;
      line-height:1.6;
    }
    .footer{
      margin-top:2rem;
      background:#111111;
      color:#fff;
    }
    .footer a{color:#fff}
    .footer .brand-name span{color:rgba(255,255,255,.7)}
    .footer .footer-link{
      color:rgba(255,255,255,.74);
      transition:.18s ease;
    }
    .footer .footer-link:hover{color:#fff}
    .footer .border-top-light{border-top:1px solid rgba(255,255,255,.1)}
    .modal-mask{
      position:fixed;
      inset:0;
      background:rgba(17,24,39,.42);
      display:none;
      align-items:center;
      justify-content:center;
      padding:1rem;
      z-index:60;
    }
    .modal-mask.open{display:flex}
    .modal{
      width:min(720px,100%);
      background:#fff;
      border-radius:14px;
      border:1px solid #efd8cc;
      box-shadow:0 25px 60px rgba(17,24,39,.2);
      overflow:hidden;
    }
    .modal-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:1rem;
      padding:1rem 1rem .85rem;
      background:linear-gradient(180deg,#fff7f1 0%,#fff 100%);
      border-bottom:1px solid #f1e0d6;
    }
    .modal-head h3{
      margin:0;
      font-size:1.08rem;
      font-weight:900;
      color:#111827;
    }
    .modal-head p{
      margin:.3rem 0 0;
      color:var(--muted);
      font-size:.88rem;
    }
    .modal-body{
      padding:1rem;
    }
    .form-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:.85rem;
    }
    .field{
      display:grid;
      gap:.4rem;
    }
    .field label{
      font-size:.86rem;
      font-weight:800;
      color:#374151;
    }
    .field input,
    .field select,
    .field textarea{
      width:100%;
      border:1px solid #e7d8cf;
      border-radius:10px;
      background:#fff;
      color:#111827;
      padding:.78rem .85rem;
      outline:none;
      transition:.18s ease;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus{
      border-color:#fb923c;
      box-shadow:0 0 0 3px rgba(251,146,60,.12);
    }
    .field textarea{
      min-height:110px;
      resize:vertical;
      grid-column:1/-1;
    }
    .form-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      flex-wrap:wrap;
      margin-top:1rem;
    }
    .success-toast{
      position:fixed;
      right:1rem;
      bottom:1rem;
      z-index:70;
      min-width:240px;
      max-width:calc(100vw - 2rem);
      background:#111827;
      color:#fff;
      border-radius:12px;
      box-shadow:var(--shadow);
      padding:.85rem 1rem;
      display:none;
    }
    .success-toast.show{display:block}
    .success-toast p{margin:0;font-size:.9rem}
    .success-toast span{display:block;margin-top:.2rem;color:rgba(255,255,255,.72);font-size:.8rem}
    .mobile-only{display:none}
    .desktop-nav{display:flex}
    @media (max-width: 1024px){
      .hero-grid,.content-grid,.cta-panel,.metric-band,.privacy-list,.related-grid,.waterfall{grid-template-columns:1fr 1fr}
      .hero-grid{grid-template-columns:1fr}
      .coupon-wall{border-left:none;border-top:1px solid #efd8cc}
      .content-grid{grid-template-columns:1fr}
      .side-rail{position:static}
      .trust-row{grid-template-columns:repeat(2,minmax(0,1fr))}
      .metric-band,.privacy-list,.related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .waterfall{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width: 768px){
      .nav-shell{padding:.75rem 0}
      .desktop-nav,.desktop-actions{display:none}
      .mobile-only{display:inline-flex}
      .hero-copy,.coupon-wall,.panel-body,.panel-head,.cta-panel,.modal-body,.modal-head{padding-left:.9rem;padding-right:.9rem}
      .hero-title{font-size:1.8rem}
      .hero-actions,.filter-strip,.cta-panel,.form-foot{align-items:stretch}
      .hero-actions .btn-primary,.hero-actions .btn-secondary,.cta-panel .btn-primary,.cta-panel .btn-secondary,.form-foot .btn-primary,.form-foot .btn-secondary{width:100%}
      .trust-row,.metric-band,.privacy-list,.related-grid,.waterfall,.mini-wall{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
    }
    @media (max-width: 520px){
      .topbar .container-app{width:min(100% - 1rem,1200px)}
      .topbar .flex{gap:.5rem}
      .topbar-pill{padding:.34rem .58rem;font-size:.8rem}
      .hero-copy{padding:.9rem}
      .coupon-wall{padding:.9rem}
      .coupon-price{font-size:1.7rem}
      .brand-name strong{font-size:.96rem}
      .brand-name span{font-size:.74rem}
      .section-title{font-size:1.45rem}
    }
