/* roulang page: index */
:root{
      --bg:#fbf5ee;
      --bg-soft:#fff9f3;
      --card:#fffdfb;
      --card-2:#fff7ef;
      --line:#ead7c7;
      --line-2:#f1e2d6;
      --text:#231915;
      --muted:#7c6458;
      --muted-2:#9d8578;
      --primary:#c9372d;
      --primary-2:#ff6a2b;
      --accent:#ffb146;
      --accent-2:#ffe1b1;
      --success:#2f8a5b;
      --shadow:0 18px 45px rgba(180,70,20,.10);
      --shadow-2:0 12px 30px rgba(180,70,20,.16);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:18px;
      --radius-sm:14px;
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(255,177,70,.14), transparent 28%),
        radial-gradient(circle at top right, rgba(201,55,45,.10), transparent 24%),
        linear-gradient(180deg, #fcf8f3 0%, #f8f1ea 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(201,55,45,.16);color:var(--text)}
    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:80;
      background:rgba(252,248,243,.92);
      backdrop-filter:saturate(150%) blur(10px);
      border-bottom:1px solid rgba(234,215,199,.72);
      box-shadow:0 10px 25px rgba(127,77,31,.05);
    }
    .brand-row{
      padding:16px 0 10px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-mark{
      width:48px;
      height:48px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(145deg, var(--primary), var(--primary-2));
      color:#fff;
      font-weight:900;
      font-size:18px;
      letter-spacing:.5px;
      box-shadow:0 12px 24px rgba(201,55,45,.25);
      position:relative;
      overflow:hidden;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:auto -10px -10px auto;
      width:26px;
      height:26px;
      border-radius:50%;
      background:rgba(255,255,255,.18);
    }
    .brand-text{
      min-width:0;
    }
    .brand-text strong{
      display:block;
      font-size:18px;
      font-weight:900;
      line-height:1.2;
      letter-spacing:.2px;
      color:#1f1512;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text span{
      display:block;
      margin-top:2px;
      font-size:12px;
      color:var(--muted);
      font-weight:600;
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .button{
      border-radius:999px !important;
      border:1px solid transparent !important;
      font-weight:800;
      letter-spacing:.1px;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
      margin:0;
      box-shadow:none;
      padding:.82rem 1.12rem;
    }
    .button:hover,
    .button:focus{
      transform:translateY(-2px);
      box-shadow:0 14px 24px rgba(180,70,20,.12);
    }
    .button.primary{
      background:linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
      color:#fff;
      box-shadow:0 14px 22px rgba(201,55,45,.18);
    }
    .button.primary:hover,
    .button.primary:focus{
      color:#fff;
      background:linear-gradient(135deg, #b92e25 0%, #ff7a32 100%);
    }
    .button.secondary{
      background:#fff;
      color:var(--primary);
      border-color:rgba(201,55,45,.22) !important;
    }
    .button.secondary:hover,
    .button.secondary:focus{
      background:#fff4ec;
      color:#b82f26;
      border-color:rgba(201,55,45,.36) !important;
    }
    .button.ghost{
      background:rgba(255,255,255,.78);
      color:var(--text);
      border-color:var(--line) !important;
    }
    .button.ghost:hover,
    .button.ghost:focus{
      background:#fff;
      color:var(--primary);
      border-color:rgba(201,55,45,.28) !important;
    }
    .segment-nav{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:0 0 16px;
      scrollbar-width:none;
      -ms-overflow-style:none;
    }
    .segment-nav::-webkit-scrollbar{display:none}
    .segment-nav li{flex:0 0 auto}
    .segment-nav a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:11px 16px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:#392722;
      font-weight:800;
      font-size:14px;
      white-space:nowrap;
      box-shadow:0 8px 18px rgba(180,70,20,.05);
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }
    .segment-nav a:hover{
      transform:translateY(-1px);
      border-color:rgba(201,55,45,.26);
      box-shadow:0 12px 24px rgba(180,70,20,.10);
    }
    .segment-nav a.active,
    .segment-nav a[aria-current="page"]{
      background:linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
      color:#fff;
      border-color:transparent;
      box-shadow:0 14px 24px rgba(201,55,45,.18);
    }
    main{padding:18px 0 72px}
    .section{padding:14px 0}
    .section .section-inner{
      background:rgba(255,252,248,.88);
      border:1px solid rgba(234,215,199,.78);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:26px;
      position:relative;
      overflow:hidden;
    }
    .section.section-soft .section-inner{background:linear-gradient(180deg, rgba(255,253,250,.96), rgba(255,247,239,.88))}
    .section-inner::before{
      content:"";
      position:absolute;
      inset:auto -40px -60px auto;
      width:220px;
      height:220px;
      background:radial-gradient(circle, rgba(255,177,70,.16), transparent 68%);
      pointer-events:none;
    }
    .section-inner::after{
      content:"";
      position:absolute;
      inset:-70px auto auto -70px;
      width:180px;
      height:180px;
      background:radial-gradient(circle, rgba(201,55,45,.08), transparent 70%);
      pointer-events:none;
    }
    .section-body{position:relative;z-index:1}
    .section-heading{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
      flex-wrap:wrap;
    }
    .section-heading h2{
      margin:0;
      font-size:clamp(24px, 2.4vw, 34px);
      line-height:1.2;
      font-weight:900;
      color:#281a16;
    }
    .section-heading p{
      margin:0;
      color:var(--muted);
      max-width:62ch;
      font-size:15px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:10px;
      color:var(--primary);
      font-size:13px;
      font-weight:800;
      letter-spacing:.2px;
      text-transform:none;
    }
    .eyebrow .dot{
      width:9px;
      height:9px;
      border-radius:50%;
      background:linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow:0 0 0 5px rgba(201,55,45,.08);
    }

    .hero-section{padding-top:4px}
    .hero-section .section-inner{
      background:
        linear-gradient(135deg, rgba(255,253,250,.96) 0%, rgba(255,244,232,.94) 48%, rgba(255,239,226,.96) 100%);
      border-color:rgba(245,214,193,.88);
      min-height:540px;
    }
    .hero-section .section-inner::before{
      inset:auto -50px -60px auto;
      width:300px;
      height:300px;
      background:radial-gradient(circle, rgba(255,177,70,.22), transparent 64%);
    }
    .hero-section .section-inner::after{
      inset:-80px auto auto -70px;
      width:260px;
      height:260px;
      background:radial-gradient(circle, rgba(201,55,45,.10), transparent 70%);
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.16fr .84fr;
      gap:28px;
      align-items:center;
    }
    .hero-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(201,55,45,.08);
      color:var(--primary);
      font-weight:800;
      font-size:13px;
      border:1px solid rgba(201,55,45,.12);
    }
    .hero h1{
      margin:14px 0 14px;
      font-size:clamp(30px, 4vw, 50px);
      line-height:1.16;
      letter-spacing:-.02em;
      font-weight:900;
      color:#211713;
      max-width:12em;
    }
    .hero p{
      margin:0;
      font-size:16px;
      color:var(--muted);
      max-width:42em;
    }
    .hero-bullets{
      list-style:none;
      padding:0;
      margin:18px 0 22px;
      display:grid;
      gap:12px;
    }
    .hero-bullets li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:#412c25;
      font-size:15px;
    }
    .hero-bullets .dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      margin-top:9px;
      flex:0 0 auto;
      box-shadow:0 0 0 4px rgba(201,55,45,.08);
    }
    .hero-cta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:10px;
    }
    .hero-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .mini-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(234,215,199,.92);
      font-size:13px;
      font-weight:800;
      color:#3c2a23;
      box-shadow:0 10px 18px rgba(180,70,20,.06);
    }
    .mini-pill.price{
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      color:#fff;
      border-color:transparent;
    }
    .hero-panel{
      background:rgba(255,255,255,.74);
      border:1px solid rgba(234,215,199,.92);
      border-radius:24px;
      padding:20px;
      box-shadow:var(--shadow);
      position:relative;
    }
    .panel-title{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      margin-bottom:14px;
      font-weight:900;
      color:#251813;
      font-size:16px;
    }
    .panel-title small{
      color:var(--muted);
      font-weight:700;
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .entry-card{
      border-radius:18px;
      padding:14px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,248,241,.94) 100%);
      border:1px solid var(--line);
      min-height:118px;
      box-shadow:0 10px 22px rgba(180,70,20,.06);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:rgba(201,55,45,.26);
      box-shadow:0 14px 26px rgba(180,70,20,.11);
    }
    .entry-card strong{
      display:block;
      font-size:16px;
      line-height:1.35;
      margin-bottom:8px;
    }
    .entry-card small{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .entry-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:8px;
      margin-top:10px;
      font-size:12px;
      color:var(--muted-2);
    }
    .entry-meta span:last-child{
      color:var(--primary);
      font-weight:800;
    }
    .step-card{
      margin-top:14px;
      border-radius:18px;
      padding:14px 16px;
      background:linear-gradient(135deg, rgba(201,55,45,.08), rgba(255,177,70,.14));
      border:1px dashed rgba(201,55,45,.24);
      color:#4a2b20;
      font-weight:700;
      line-height:1.6;
    }
    .step-card strong{color:#1d130f}
    .trust-strip .section-inner{padding:16px 20px}
    .trust-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
    }
    .trust-item{
      display:flex;
      align-items:center;
      gap:12px;
      padding:14px 16px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 18px rgba(180,70,20,.05);
      min-height:74px;
    }
    .icon-chip{
      width:40px;
      height:40px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, var(--primary), var(--accent));
      color:#fff;
      font-weight:900;
      flex:0 0 auto;
      box-shadow:0 10px 18px rgba(201,55,45,.12);
    }
    .trust-item strong{
      display:block;
      font-size:15px;
      line-height:1.3;
    }
    .trust-item span{
      display:block;
      font-size:13px;
      color:var(--muted);
      line-height:1.45;
    }

    .catalog-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:18px;
      align-items:start;
    }
    .catalog-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .catalog-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:16px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 18px rgba(180,70,20,.05);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .catalog-item:hover{
      transform:translateY(-2px);
      border-color:rgba(201,55,45,.26);
      box-shadow:0 14px 28px rgba(180,70,20,.10);
    }
    .catalog-num{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      color:#fff;
      font-weight:900;
      box-shadow:0 12px 20px rgba(201,55,45,.18);
      flex:0 0 auto;
    }
    .catalog-item h3{
      margin:0 0 5px;
      font-size:18px;
      line-height:1.32;
      font-weight:900;
      color:#281a16;
    }
    .catalog-item p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }
    .catalog-meta{
      text-align:right;
      display:grid;
      gap:8px;
      justify-items:end;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      background:var(--accent-2);
      color:#7d430a;
      white-space:nowrap;
    }
    .badge.alt{
      background:rgba(201,55,45,.10);
      color:var(--primary);
    }
    .badge.success{
      background:rgba(47,138,91,.12);
      color:var(--success);
    }
    .catalog-mini{
      padding:22px;
      border-radius:24px;
      background:linear-gradient(180deg, rgba(255,248,241,.98), rgba(255,241,229,.88));
      border:1px solid rgba(234,215,199,.88);
      box-shadow:0 14px 28px rgba(180,70,20,.07);
    }
    .catalog-mini h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.25;
      font-weight:900;
    }
    .catalog-mini p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .catalog-mini ul{
      margin:14px 0 0 18px;
      color:#3b2a23;
    }
    .catalog-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      font-size:13px;
      font-weight:800;
      color:#402c25;
      box-shadow:0 8px 16px rgba(180,70,20,.05);
      transition:transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .chip:hover{
      transform:translateY(-1px);
      border-color:rgba(201,55,45,.24);
      background:#fff7f0;
    }

    .featured-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
    }
    .featured-main{
      padding:24px;
      border-radius:24px;
      background:
        linear-gradient(135deg, rgba(201,55,45,.07), rgba(255,177,70,.10)),
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,241,.92));
      border:1px solid rgba(201,55,45,.14);
      box-shadow:0 14px 30px rgba(180,70,20,.08);
    }
    .featured-main h3{
      margin:0 0 12px;
      font-size:24px;
      line-height:1.25;
      font-weight:900;
    }
    .featured-main p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
    }
    .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
      color:var(--muted);
      font-size:12px;
    }
    .featured-list{
      display:grid;
      gap:12px;
    }
    .featured-mini{
      padding:16px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 18px rgba(180,70,20,.05);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .featured-mini:hover{
      transform:translateY(-2px);
      border-color:rgba(201,55,45,.25);
      box-shadow:0 14px 26px rgba(180,70,20,.10);
    }
    .featured-mini h4{
      margin:0 0 6px;
      font-size:17px;
      line-height:1.35;
      font-weight:900;
      color:#281a16;
    }
    .featured-mini p{
      margin:0;
      font-size:14px;
      color:var(--muted);
      line-height:1.7;
    }
    .cta-inline{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:16px;
    }

    .loop-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:18px;
      align-items:start;
    }
    .loop-list{
      display:grid;
      gap:12px;
    }
    .loop-link{
      display:block;
      padding:16px 18px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 18px rgba(180,70,20,.05);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .loop-link:hover{
      transform:translateY(-2px);
      border-color:rgba(201,55,45,.30);
      box-shadow:0 14px 28px rgba(180,70,20,.10);
    }
    .loop-link h4{
      margin:0 0 6px;
      font-size:17px;
      line-height:1.38;
      font-weight:900;
      color:#2a1d18;
    }
    .loop-link p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .loop-aside{
      padding:22px;
      border-radius:24px;
      background:linear-gradient(180deg, rgba(255,250,245,.98), rgba(255,240,230,.90));
      border:1px solid rgba(234,215,199,.88);
      box-shadow:0 14px 30px rgba(180,70,20,.08);
    }
    .loop-aside h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.25;
      font-weight:900;
    }
    .loop-aside p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .remind-list{
      list-style:none;
      margin:16px 0 0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .remind-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px 0;
      border-bottom:1px dashed rgba(234,215,199,.92);
    }
    .remind-list li:last-child{border-bottom:0}
    .remind-index{
      width:30px;
      height:30px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(201,55,45,.08);
      color:var(--primary);
      font-weight:900;
      flex:0 0 auto;
    }
    .remind-list strong{
      display:block;
      margin-bottom:3px;
      font-size:14px;
      line-height:1.4;
    }
    .remind-list span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }
    .security-bar{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
      margin-top:16px;
    }
    .security-bar div{
      background:#fff;
      border:1px solid var(--line);
      border-radius:16px;
      padding:12px 10px;
      text-align:center;
      font-size:13px;
      font-weight:800;
      color:#403028;
      box-shadow:0 10px 16px rgba(180,70,20,.05);
    }

    .related-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:18px;
      align-items:stretch;
    }
    .related-hero{
      padding:24px;
      border-radius:24px;
      background:
        linear-gradient(135deg, rgba(255,177,70,.16), rgba(201,55,45,.08)),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,241,.92));
      border:1px solid rgba(201,55,45,.14);
      box-shadow:0 14px 30px rgba(180,70,20,.08);
    }
    .related-hero h3{
      margin:0 0 12px;
      font-size:24px;
      line-height:1.25;
      font-weight:900;
    }
    .related-hero p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.78;
    }
    .related-stack{
      display:grid;
      gap:14px;
    }
    .related-card{
      padding:18px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 18px rgba(180,70,20,.05);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .related-card:hover{
      transform:translateY(-2px);
      border-color:rgba(201,55,45,.25);
      box-shadow:0 14px 24px rgba(180,70,20,.10);
    }
    .related-card h4{
      margin:0 0 6px;
      font-size:18px;
      line-height:1.35;
      font-weight:900;
    }
    .related-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.68;
    }
    .related-card .meta-line{margin-top:10px}
    .related-card.large{
      min-height:100%;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }

    .collect-band .section-inner{
      background:linear-gradient(135deg, rgba(201,55,45,.95), rgba(255,106,43,.95));
      color:#fff;
      border-color:transparent;
    }
    .collect-band .section-inner::before,
    .collect-band .section-inner::after{display:none}
    .collect-band h2,
    .collect-band p,
    .collect-band .chip,
    .collect-band .mini-pill{color:#fff}
    .collect-band .section-heading p{color:rgba(255,255,255,.86)}
    .collect-band .cta-inline .button.secondary{
      background:rgba(255,255,255,.98);
      border-color:transparent !important;
      color:var(--primary);
    }
    .collect-band .cta-inline .button.ghost{
      background:rgba(255,255,255,.12);
      color:#fff;
      border-color:rgba(255,255,255,.26) !important;
    }
    .collect-band .mini-pill{
      background:rgba(255,255,255,.14);
      border-color:rgba(255,255,255,.22);
      box-shadow:none;
    }
    .collect-band .mini-pill.price{
      background:#fff;
      color:var(--primary);
    }
    .collect-band .security-bar div{
      background:rgba(255,255,255,.14);
      border-color:rgba(255,255,255,.20);
      color:#fff;
      box-shadow:none;
    }

    .feedback-grid{
      display:grid;
      grid-template-columns:1fr .74fr;
      gap:18px;
      align-items:start;
    }
    .feedback-card{
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 12px 24px rgba(180,70,20,.06);
    }
    .feedback-card h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.28;
      font-weight:900;
    }
    .feedback-card p{
      margin:0 0 18px;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .form-field{
      display:grid;
      gap:8px;
    }
    .form-field.full{grid-column:1/-1}
    .form-field label{
      font-size:13px;
      font-weight:800;
      color:#35241e;
    }
    .form-field input,
    .form-field textarea,
    .form-field select{
      width:100%;
      border-radius:16px;
      border:1px solid var(--line);
      background:#fffdfb;
      color:var(--text);
      padding:13px 14px;
      transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
    }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus{
      border-color:rgba(201,55,45,.35);
      box-shadow:0 0 0 4px rgba(201,55,45,.08);
      background:#fff;
      outline:none;
    }
    .form-field textarea{
      min-height:122px;
      resize:vertical;
    }
    .form-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .feedback-side{
      display:grid;
      gap:14px;
    }
    .hint-card{
      padding:20px;
      border-radius:24px;
      background:linear-gradient(180deg, rgba(255,248,241,.98), rgba(255,242,232,.88));
      border:1px solid rgba(234,215,199,.88);
      box-shadow:0 12px 24px rgba(180,70,20,.06);
    }
    .hint-card h4{
      margin:0 0 10px;
      font-size:18px;
      line-height:1.35;
      font-weight:900;
    }
    .hint-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .hint-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }

    .faq .section-inner{padding-bottom:10px}
    .accordion{
      margin:0;
      border:0;
      background:transparent;
    }
    .accordion-item{
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      margin-bottom:12px;
      box-shadow:0 10px 18px rgba(180,70,20,.05);
    }
    .accordion-title{
      font-size:16px;
      font-weight:800;
      color:#2b1c17;
      padding:18px 48px 18px 18px;
      background:#fff;
      line-height:1.45;
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:#fff8f1;
      color:#1f1512;
    }
    .accordion-title::before{
      right:18px;
      color:var(--primary);
      margin-top:-9px;
    }
    .accordion-content{
      padding:0 18px 18px;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      background:#fff;
    }

    .site-footer{
      margin-top:22px;
      background:#221613;
      color:#f5e9df;
      border-top:1px solid rgba(255,255,255,.06);
      box-shadow:0 -16px 36px rgba(54,26,11,.16);
    }
    .site-footer .container{padding:34px 0}
    .footer-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr .85fr;
      gap:18px;
      align-items:start;
    }
    .footer-brand{
      display:grid;
      gap:14px;
    }
    .footer-brand .brand{
      align-items:flex-start;
    }
    .footer-brand .brand-text strong{color:#fff}
    .footer-brand .brand-text span{color:rgba(245,233,223,.72)}
    .footer-brand p{
      margin:0;
      color:rgba(245,233,223,.78);
      font-size:14px;
      line-height:1.8;
      max-width:38em;
    }
    .footer-heading{
      margin:0 0 12px;
      font-size:15px;
      font-weight:900;
      color:#fff;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(245,233,223,.84);
      font-size:14px;
      transition:color .2s ease, transform .2s ease;
      display:inline-flex;
      width:max-content;
    }
    .footer-links a:hover{color:#fff;transform:translateX(2px)}
    .footer-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .footer-tags .chip{
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.12);
      color:rgba(255,255,255,.88);
      box-shadow:none;
    }
    .footer-bottom{
      margin-top:26px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:12px;
      color:rgba(245,233,223,.68);
      font-size:13px;
    }

    .toast{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%) translateY(18px);
      opacity:0;
      pointer-events:none;
      background:#211613;
      color:#fff;
      border-radius:999px;
      padding:12px 16px;
      box-shadow:0 18px 40px rgba(0,0,0,.18);
      transition:opacity .2s ease, transform .2s ease;
      z-index:120;
      font-size:14px;
      font-weight:700;
    }
    .toast.show{
      opacity:1;
      transform:translateX(-50%) translateY(0);
    }

    .sr-note{
      display:block;
      font-size:12px;
      color:var(--muted-2);
      margin-top:6px;
    }

    .callout{
      border-radius:24px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.96);
      box-shadow:0 10px 18px rgba(180,70,20,.05);
    }

    @media (max-width: 1024px){
      .hero-grid,
      .catalog-grid,
      .featured-grid,
      .loop-grid,
      .related-grid,
      .feedback-grid,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .trust-grid,
      .security-bar{
        grid-template-columns:repeat(2, 1fr);
      }
      .section-heading{
        align-items:flex-start;
        flex-direction:column;
      }
      .hero h1{max-width:100%}
      .catalog-item{grid-template-columns:auto 1fr}
      .catalog-meta{grid-column:1/-1;text-align:left;justify-items:start}
      .hero-section .section-inner{min-height:auto}
    }
    @media (max-width: 640px){
      .container{width:min(var(--container), calc(100% - 20px))}
      .brand-row{
        flex-direction:column;
        align-items:flex-start;
      }
      .header-actions{
        width:100%;
        justify-content:flex-start;
      }
      .header-actions .button{
        flex:1 1 auto;
        justify-content:center;
      }
      .segment-nav{
        padding-bottom:12px;
      }
      .section .section-inner{
        padding:18px;
        border-radius:22px;
      }
      .hero h1{
        font-size:clamp(28px, 8vw, 36px);
      }
      .hero p,
      .section-heading p,
      .featured-main p,
      .loop-aside p,
      .catalog-mini p,
      .feedback-card p{
        font-size:14px;
      }
      .hero-bullets li{
        font-size:14px;
      }
      .hero-cta .button,
      .cta-inline .button,
      .form-actions .button{
        width:100%;
        justify-content:center;
      }
      .entry-grid{
        grid-template-columns:1fr;
      }
      .trust-grid,
      .security-bar{
        grid-template-columns:1fr;
      }
      .form-grid{
        grid-template-columns:1fr;
      }
      .accordion-title{
        padding-right:44px;
      }
      .footer-bottom{
        flex-direction:column;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#f8efe8;
      --bg-soft:#fff7f1;
      --surface:#ffffff;
      --surface-2:#fff3e8;
      --text:#241815;
      --muted:#73584c;
      --line:#ead3c5;
      --brand:#d83c2f;
      --brand-2:#ff7c31;
      --brand-3:#ffb24a;
      --green:#3f9a77;
      --shadow:0 18px 42px rgba(160,70,28,.12);
      --shadow-soft:0 10px 22px rgba(160,70,28,.08);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      background:
        radial-gradient(circle at top left, rgba(255,131,76,.14), transparent 32%),
        radial-gradient(circle at right top, rgba(255,196,116,.14), transparent 28%),
        linear-gradient(180deg, #fff9f5 0%, #f7eee6 42%, #f4e9df 100%);
      color:var(--text);
      line-height:1.75;
      font-size:16px;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(216,60,47,.18);color:var(--text)}
    :focus{outline:none}
    :focus-visible{
      outline:3px solid rgba(255,124,49,.28);
      outline-offset:2px;
    }
    .container,
    .grid-container{
      width:min(var(--container), calc(100% - 32px));
      margin-inline:auto;
    }
    main{display:block;padding-bottom:28px}
    .section-block{padding:24px 0 36px}
    .section-soft{
      background:linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,243,232,.64));
      border-top:1px solid rgba(234,211,197,.38);
      border-bottom:1px solid rgba(234,211,197,.38);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:60;
      background:rgba(255,248,241,.9);
      backdrop-filter:saturate(160%) blur(14px);
      border-bottom:1px solid rgba(234,211,197,.74);
      box-shadow:0 8px 24px rgba(140,74,32,.06);
    }
    .site-header .container{padding:14px 0 12px}
    .brand-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-mark{
      width:48px;
      height:48px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:900;
      letter-spacing:.02em;
      background:
        linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 56%, var(--brand-3) 100%);
      box-shadow:0 14px 24px rgba(216,60,47,.24);
      flex:none;
    }
    .brand-text{min-width:0}
    .brand-text strong{
      display:block;
      font-size:1.02rem;
      line-height:1.18;
      font-weight:900;
      letter-spacing:.01em;
      color:var(--text);
    }
    .brand-text span{
      display:block;
      margin-top:3px;
      font-size:.84rem;
      color:var(--muted);
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .button{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      margin:0;
      border:none;
      border-radius:999px;
      padding:.88rem 1.15rem;
      line-height:1;
      font-weight:800;
      letter-spacing:.01em;
      cursor:pointer;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      -webkit-tap-highlight-color:transparent;
      white-space:nowrap;
    }
    .button:hover{transform:translateY(-2px)}
    .button:active{transform:translateY(0)}
    .button.small{padding:.72rem .98rem;font-size:.88rem}
    .button.primary,
    .button:not(.secondary):not(.ghost){
      color:#fff;
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 52%, #ff923f 100%);
      box-shadow:0 14px 28px rgba(216,60,47,.24);
    }
    .button.primary:hover,
    .button:not(.secondary):not(.ghost):hover{
      box-shadow:0 18px 34px rgba(216,60,47,.3);
      color:#fff;
    }
    .button.secondary{
      color:var(--brand);
      background:#fff2e8;
      border:1px solid rgba(216,60,47,.16);
      box-shadow:0 10px 20px rgba(160,70,28,.08);
    }
    .button.secondary:hover{
      border-color:rgba(216,60,47,.28);
      background:#ffe8d6;
      color:#b6372c;
    }
    .button.ghost{
      color:var(--brand);
      background:transparent;
      border:1px solid rgba(216,60,47,.18);
    }
    .button.ghost:hover{
      background:rgba(216,60,47,.06);
      border-color:rgba(216,60,47,.3);
    }
    .menu.segment-nav{
      list-style:none;
      margin:12px 0 0;
      padding:0;
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      scrollbar-width:none;
      -ms-overflow-style:none;
    }
    .menu.segment-nav::-webkit-scrollbar{display:none}
    .menu.segment-nav li{flex:none}
    .menu.segment-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      white-space:nowrap;
      padding:10px 16px;
      border-radius:999px;
      background:#fff;
      color:var(--muted);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      font-weight:800;
      font-size:.95rem;
    }
    .menu.segment-nav a:hover{
      transform:translateY(-1px);
      border-color:rgba(216,60,47,.28);
      color:var(--text);
    }
    .menu.segment-nav a.active{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 55%, #ff9341 100%);
      box-shadow:0 16px 28px rgba(216,60,47,.24);
    }
    .page-cover{
      padding:26px 0 10px;
    }
    .cover-shell{
      position:relative;
      overflow:hidden;
      padding:clamp(22px, 3.3vw, 34px);
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,247,239,.92)),
        linear-gradient(135deg, rgba(255,124,49,.04), rgba(216,60,47,.04));
      border:1px solid rgba(234,211,197,.84);
      box-shadow:var(--shadow);
    }
    .cover-shell::before,
    .cover-shell::after{
      content:"";
      position:absolute;
      border-radius:999px;
      pointer-events:none;
      opacity:.55;
    }
    .cover-shell::before{
      width:220px;height:220px;
      right:-78px;top:-82px;
      background:radial-gradient(circle, rgba(255,174,84,.28) 0%, rgba(255,174,84,0) 70%);
    }
    .cover-shell::after{
      width:280px;height:280px;
      left:-120px;bottom:-130px;
      background:radial-gradient(circle, rgba(216,60,47,.10) 0%, rgba(216,60,47,0) 72%);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(216,60,47,.08);
      color:var(--brand);
      font-weight:800;
      font-size:.82rem;
      letter-spacing:.06em;
    }
    .hero-title{
      margin:.6rem 0 1rem;
      font-size:clamp(2rem, 4vw, 3.35rem);
      line-height:1.16;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .hero-lead{
      margin:0;
      max-width:44rem;
      color:var(--muted);
      font-size:1.05rem;
      line-height:1.82;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .hero-stats{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
    }
    .stat-pill{
      min-width:136px;
      padding:14px 16px;
      border-radius:18px;
      background:rgba(255,255,255,.9);
      border:1px solid rgba(234,211,197,.92);
      box-shadow:var(--shadow-soft);
    }
    .stat-pill strong{
      display:block;
      color:var(--brand);
      font-size:1.2rem;
      line-height:1.15;
      font-weight:900;
    }
    .stat-pill span{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-size:.84rem;
    }
    .cover-panel{
      position:relative;
      z-index:1;
      background:linear-gradient(180deg, rgba(255,250,246,.96), rgba(255,241,228,.94));
      border:1px solid rgba(234,211,197,.9);
      border-radius:24px;
      padding:18px;
      box-shadow:var(--shadow-soft);
    }
    .panel-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:14px;
    }
    .price-pill{
      display:inline-flex;
      align-items:center;
      padding:8px 12px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 62%, #ff983e 100%);
      color:#fff;
      font-weight:900;
      box-shadow:0 12px 24px rgba(216,60,47,.26);
    }
    .panel-tag{
      display:inline-flex;
      align-items:center;
      padding:7px 11px;
      border-radius:999px;
      background:#fff;
      color:var(--muted);
      border:1px solid var(--line);
      font-size:.84rem;
      font-weight:800;
    }
    .panel-stack{
      display:grid;
      gap:12px;
    }
    .panel-step{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:13px 14px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(234,211,197,.95);
    }
    .step-num{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      flex:none;
      font-size:.92rem;
      font-weight:900;
      color:var(--brand);
      background:rgba(216,60,47,.08);
    }
    .panel-step strong{
      display:block;
      margin-bottom:2px;
      font-size:1rem;
      line-height:1.25;
    }
    .panel-step span{
      display:block;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.72;
    }
    .callout.promo-callout{
      margin:14px 0 0;
      padding:14px 16px;
      border-radius:18px;
      border:1px solid rgba(216,60,47,.16);
      background:linear-gradient(135deg, rgba(216,60,47,.08), rgba(255,124,49,.12));
      color:var(--text);
    }
    .callout.promo-callout strong{
      display:block;
      margin-bottom:2px;
      color:var(--brand);
      font-weight:900;
    }
    .callout.promo-callout p{
      margin:0;
      color:var(--muted);
      font-size:.93rem;
      line-height:1.7;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .section-head h2,
    .section-head h3{
      margin:0;
      font-size:clamp(1.3rem, 2.5vw, 2rem);
      line-height:1.2;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .section-head p{
      margin:0;
      max-width:44rem;
      color:var(--muted);
      line-height:1.78;
    }
    .chip-row{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:9px 14px;
      border-radius:999px;
      background:#fff;
      color:var(--muted);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      font-size:.9rem;
      font-weight:800;
      white-space:nowrap;
      transition:all .2s ease;
    }
    .chip:hover,
    .chip.active{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 62%, #ff943b 100%);
      box-shadow:0 14px 26px rgba(216,60,47,.22);
      transform:translateY(-1px);
    }
    .chip-scroll{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .surface-card,
    .index-panel,
    .entry-card,
    .recommend-card,
    .compare-card,
    .feedback-card{
      background:rgba(255,255,255,.94);
      border:1px solid rgba(234,211,197,.94);
      border-radius:22px;
      box-shadow:var(--shadow-soft);
    }
    .index-panel{
      padding:18px;
      position:sticky;
      top:116px;
    }
    .index-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .index-list li a{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:12px 12px;
      border-radius:16px;
      background:linear-gradient(180deg, #fff, #fff7f0);
      border:1px solid rgba(234,211,197,.84);
      transition:all .2s ease;
    }
    .index-list li a:hover{
      transform:translateY(-1px);
      border-color:rgba(216,60,47,.24);
      box-shadow:0 10px 18px rgba(160,70,28,.08);
    }
    .index-num{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      flex:none;
      background:rgba(216,60,47,.08);
      color:var(--brand);
      font-weight:900;
      font-size:.9rem;
    }
    .index-text strong{
      display:block;
      font-size:1rem;
      line-height:1.3;
      margin-bottom:2px;
    }
    .index-text em{
      display:block;
      color:var(--muted);
      font-style:normal;
      font-size:.88rem;
      line-height:1.6;
    }
    .panel-metrics{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:10px;
      margin-top:14px;
    }
    .metric{
      padding:12px 12px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,244,235,.95));
      border:1px solid rgba(234,211,197,.9);
    }
    .metric strong{
      display:block;
      color:var(--brand);
      font-size:1.05rem;
      font-weight:900;
    }
    .metric span{
      display:block;
      color:var(--muted);
      font-size:.83rem;
      line-height:1.45;
    }
    .entry-card{
      padding:18px;
      height:100%;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .entry-card:hover{
      transform:translateY(-3px);
      border-color:rgba(216,60,47,.24);
      box-shadow:0 18px 32px rgba(160,70,28,.12);
    }
    .entry-card.featured{
      background:
        linear-gradient(180deg, rgba(255,248,242,.98), rgba(255,255,255,.95));
      border:1px solid rgba(216,60,47,.16);
      margin-bottom:14px;
    }
    .entry-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .card-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:999px;
      font-size:.78rem;
      font-weight:900;
      letter-spacing:.02em;
      background:rgba(216,60,47,.08);
      color:var(--brand);
    }
    .badge.gray{
      background:#f5eee8;
      color:var(--muted);
    }
    .badge.success{
      background:rgba(63,154,119,.12);
      color:var(--green);
    }
    .entry-rank{
      min-width:54px;
      text-align:right;
      color:rgba(36,24,21,.28);
      font-size:1.2rem;
      font-weight:900;
      line-height:1;
    }
    .entry-title{
      margin:12px 0 10px;
      font-size:1.13rem;
      line-height:1.34;
      font-weight:900;
      letter-spacing:-.01em;
    }
    .entry-desc{
      margin:0;
      color:var(--muted);
      line-height:1.78;
      font-size:.96rem;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .entry-meta span{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:#fff6ed;
      border:1px solid rgba(234,211,197,.9);
      color:var(--muted);
      font-size:.82rem;
      font-weight:700;
    }
    .entry-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .entry-grid{
      display:grid;
      gap:14px;
    }
    .trust-strip{
      display:grid;
      grid-template-columns:repeat(5, minmax(0, 1fr));
      gap:12px;
    }
    .trust-item{
      display:flex;
      align-items:center;
      gap:12px;
      padding:14px 15px;
      border-radius:18px;
      background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,245,236,.95));
      border:1px solid rgba(234,211,197,.94);
      box-shadow:var(--shadow-soft);
    }
    .trust-icon{
      width:38px;
      height:38px;
      border-radius:14px;
      display:grid;
      place-items:center;
      flex:none;
      background:rgba(216,60,47,.08);
      color:var(--brand);
      font-weight:900;
    }
    .trust-item strong{
      display:block;
      font-size:.96rem;
      line-height:1.24;
      font-weight:900;
    }
    .trust-item span{
      display:block;
      color:var(--muted);
      font-size:.84rem;
      line-height:1.55;
    }
    .recommend-card,
    .compare-card,
    .feedback-card{
      padding:18px;
      height:100%;
    }
    .recommend-card.large{
      background:
        linear-gradient(180deg, rgba(255,247,239,.98), rgba(255,255,255,.98));
      border:1px solid rgba(216,60,47,.14);
    }
    .recommend-card h3,
    .compare-card h3,
    .feedback-card h3{
      margin:0 0 8px;
      font-size:1.12rem;
      font-weight:900;
      line-height:1.3;
    }
    .recommend-card p,
    .compare-card p,
    .feedback-card p{
      margin:0;
      color:var(--muted);
      line-height:1.78;
      font-size:.96rem;
    }
    .recommend-card .action-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      margin-top:14px;
      color:var(--brand);
      font-weight:900;
    }
    .recommend-card .action-link:hover{color:#b9372d}
    .compare-grid{
      display:grid;
      gap:12px;
      margin-top:14px;
    }
    .compare-row{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .compare-col{
      padding:14px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(234,211,197,.94);
    }
    .compare-col .mini-label{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:999px;
      background:#fff3e8;
      color:var(--brand);
      font-size:.78rem;
      font-weight:900;
      margin-bottom:10px;
    }
    .compare-col strong{
      display:block;
      margin-bottom:4px;
      font-size:1rem;
      font-weight:900;
      line-height:1.3;
    }
    .compare-col p{
      font-size:.9rem;
      line-height:1.68;
    }
    .cta-band{
      padding:24px 0 18px;
    }
    .cta-inner{
      position:relative;
      overflow:hidden;
      border-radius:28px;
      padding:clamp(22px, 3.8vw, 34px);
      background:
        linear-gradient(135deg, #cf392e 0%, #e14d2f 44%, #ff8a31 100%);
      color:#fff;
      box-shadow:0 20px 36px rgba(188,56,29,.22);
    }
    .cta-inner::before{
      content:"";
      position:absolute;
      right:-68px;
      top:-74px;
      width:240px;
      height:240px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,255,255,.2) 0%, rgba(255,255,255,0) 68%);
      pointer-events:none;
    }
    .cta-inner::after{
      content:"";
      position:absolute;
      left:-80px;
      bottom:-90px;
      width:260px;
      height:260px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,234,213,.16) 0%, rgba(255,234,213,0) 68%);
      pointer-events:none;
    }
    .cta-tag{
      display:inline-flex;
      align-items:center;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.16);
      color:#fff;
      font-weight:800;
      font-size:.84rem;
      letter-spacing:.06em;
      position:relative;
      z-index:1;
    }
    .cta-inner h2{
      margin:14px 0 10px;
      font-size:clamp(1.5rem, 3vw, 2.3rem);
      line-height:1.18;
      font-weight:900;
      position:relative;
      z-index:1;
    }
    .cta-inner p{
      margin:0;
      max-width:46rem;
      color:rgba(255,255,255,.9);
      line-height:1.82;
      position:relative;
      z-index:1;
    }
    .cta-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
      position:relative;
      z-index:1;
    }
    .cta-inner .button.secondary{
      background:#fff;
      color:var(--brand);
      border-color:transparent;
    }
    .cta-inner .button.secondary:hover{
      background:#fff6ee;
      color:#b8362d;
    }
    .cta-inner .button.ghost{
      color:#fff;
      border-color:rgba(255,255,255,.34);
      background:transparent;
    }
    .cta-inner .button.ghost:hover{
      background:rgba(255,255,255,.12);
      color:#fff;
    }
    .faq-wrap .accordion{
      margin:0;
      background:transparent;
      border:0;
    }
    .faq-wrap .accordion-item{
      margin:0 0 12px;
      border:1px solid rgba(234,211,197,.94);
      border-radius:18px;
      overflow:hidden;
      background:#fff;
      box-shadow:var(--shadow-soft);
    }
    .faq-wrap .accordion-title{
      position:relative;
      padding:1.05rem 1.15rem;
      color:var(--text);
      font-weight:900;
      line-height:1.45;
      background:linear-gradient(180deg, #fff, #fff8f2);
    }
    .faq-wrap .accordion-title::before{
      right:1rem;
      color:var(--brand);
      margin-top:-.6rem;
      font-size:1.2rem;
    }
    .faq-wrap .accordion-content{
      padding:0 1.15rem 1.1rem;
      color:var(--muted);
      line-height:1.8;
      border-top:1px solid rgba(234,211,197,.7);
      background:#fff;
    }
    .feedback-card .grid-x{margin-top:12px}
    .feedback-card label{
      display:block;
      margin-bottom:8px;
      color:var(--text);
      font-size:.92rem;
      font-weight:800;
    }
    .feedback-card input,
    .feedback-card textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(234,211,197,.94);
      background:#fff;
      color:var(--text);
      padding:12px 13px;
      box-shadow:inset 0 1px 1px rgba(255,255,255,.7);
      transition:border-color .2s ease, box-shadow .2s ease;
    }
    .feedback-card input:focus,
    .feedback-card textarea:focus{
      border-color:rgba(216,60,47,.34);
      box-shadow:0 0 0 4px rgba(216,60,47,.09);
    }
    .feedback-card textarea{min-height:116px;resize:vertical}
    .feedback-note{
      margin-top:10px;
      color:var(--muted);
      font-size:.85rem;
      line-height:1.68;
    }
    .site-footer{
      background:#201613;
      color:#f8eadf;
      margin-top:30px;
      padding:36px 0 18px;
    }
    .site-footer .brand-text strong{color:#fff}
    .site-footer .brand-text span,
    .site-footer p,
    .site-footer a,
    .site-footer span{
      color:rgba(248,234,223,.82);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .82fr .83fr;
      gap:24px;
      align-items:start;
    }
    .footer-heading{
      margin:0 0 12px;
      font-size:1rem;
      color:#fff;
      font-weight:900;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .footer-links a:hover{
      color:#fff;
      text-decoration:none;
    }
    .footer-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .footer-tags .chip{
      background:rgba(255,255,255,.08);
      color:#fff;
      border-color:rgba(255,255,255,.12);
      box-shadow:none;
    }
    .footer-tags .chip:hover{
      background:rgba(255,255,255,.14);
    }
    .footer-bottom{
      margin-top:24px;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(248,234,223,.68);
      font-size:.88rem;
      line-height:1.7;
    }
    .muted{color:var(--muted)}
    .mt-12{margin-top:12px}
    .mt-16{margin-top:16px}
    .mt-18{margin-top:18px}
    .mt-24{margin-top:24px}
    .mb-0{margin-bottom:0}
    @media (max-width: 1140px){
      .trust-strip{grid-template-columns:repeat(2, minmax(0, 1fr))}
      .footer-grid{grid-template-columns:1fr 1fr}
      .index-panel{position:relative;top:auto}
    }
    @media (max-width: 840px){
      .brand-row{flex-direction:column;align-items:flex-start}
      .header-actions{width:100%;justify-content:flex-start}
      .header-actions .button{flex:1}
      .section-head{flex-direction:column;align-items:flex-start}
      .compare-row{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .hero-title{font-size:clamp(1.8rem, 6.8vw, 2.65rem)}
    }
    @media (max-width: 640px){
      .site-header .container{padding:12px 0 10px}
      .menu.segment-nav{gap:8px;padding-bottom:4px}
      .menu.segment-nav a{padding:9px 13px}
      .hero-actions,
      .cta-actions{width:100%}
      .hero-actions .button,
      .cta-actions .button{flex:1}
      .hero-stats{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr))}
      .trust-strip{grid-template-columns:1fr}
      .panel-metrics{grid-template-columns:1fr}
      .footer-bottom{flex-direction:column;align-items:flex-start}
      .entry-card,
      .cover-panel,
      .index-panel,
      .recommend-card,
      .compare-card,
      .feedback-card{
        border-radius:18px;
      }
      .container,
      .grid-container{
        width:min(calc(100% - 22px), var(--container));
      }
    }
    @media (max-width: 520px){
      body{font-size:15px}
      .hero-stats{grid-template-columns:1fr}
      .stat-pill{min-width:0;width:100%}
      .chip-row,
      .chip-scroll{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:4px;
        scrollbar-width:none;
      }
      .chip-row::-webkit-scrollbar,
      .chip-scroll::-webkit-scrollbar{display:none}
      .chip,
      .menu.segment-nav a{
        flex:0 0 auto;
      }
      .entry-top{flex-direction:column}
      .entry-rank{text-align:left}
    }

/* roulang page: category2 */
:root{
      --bg: #fff6ef;
      --bg-soft: #fffaf6;
      --surface: #ffffff;
      --surface-2: #fff2e7;
      --surface-3: #fff8f0;
      --text: #24160f;
      --muted: #7a6153;
      --line: #edd6c7;
      --line-strong: #dfb49b;
      --primary: #d74124;
      --primary-2: #ff7a2f;
      --accent: #ffb347;
      --accent-2: #ffd77a;
      --success: #4ba36b;
      --warning: #d59a20;
      --shadow: 0 18px 40px rgba(183, 72, 23, 0.12);
      --shadow-soft: 0 10px 26px rgba(183, 72, 23, 0.08);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --radius-pill: 999px;
      --gap-xl: 32px;
      --gap-lg: 24px;
      --gap-md: 16px;
      --gap-sm: 10px;
      --container: min(1180px, calc(100% - 32px));
      --grad-primary: linear-gradient(135deg, #ff8a3d 0%, #e24a26 52%, #c93621 100%);
      --grad-soft: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,244,233,0.96) 100%);
      --grad-panel: linear-gradient(135deg, rgba(255,248,243,0.96) 0%, rgba(255,239,228,0.96) 100%);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body{
      margin:0;
      font-family: "PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(255,192,120,0.20), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(224,74,38,0.12), transparent 22%),
        linear-gradient(180deg, #fff7f1 0%, #fff4ea 52%, #fff8f3 100%);
      line-height: 1.75;
      overflow-x:hidden;
    }
    img { max-width:100%; display:block; }
    a{
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, transform .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
    }
    a:hover{ color: var(--primary); }
    button, input, textarea{
      font: inherit;
    }
    ::selection{
      background: rgba(215,65,36,0.18);
      color: var(--text);
    }

    .container{
      width: var(--container);
      margin: 0 auto;
    }

    .site-header{
      position: sticky;
      top: 0;
      z-index: 60;
      background: rgba(255, 249, 244, 0.96);
      border-bottom: 1px solid rgba(233, 210, 196, 0.88);
      box-shadow: 0 8px 28px rgba(176, 87, 32, 0.08);
      backdrop-filter: saturate(145%) blur(8px);
    }
    .site-header .container{
      padding: 14px 0 16px;
    }
    .brand-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap: 12px;
      min-width: 0;
    }
    .brand:hover{ transform: translateY(-1px); }
    .brand-mark{
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display:grid;
      place-items:center;
      font-weight: 900;
      letter-spacing: .04em;
      color: #fff;
      background: var(--grad-primary);
      box-shadow: 0 10px 24px rgba(215,65,36,0.28);
      flex: 0 0 auto;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width: 0;
    }
    .brand-text strong{
      font-size: 17px;
      line-height: 1.1;
      font-weight: 900;
      color: var(--text);
      white-space: nowrap;
      overflow:hidden;
      text-overflow: ellipsis;
    }
    .brand-text span{
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content:flex-end;
    }

    .button{
      border: none;
      border-radius: var(--radius-pill);
      padding: 12px 18px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: .01em;
      box-shadow: none;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
      display:inline-flex;
      align-items:center;
      gap: 8px;
      cursor: pointer;
    }
    .button.small{
      padding: 10px 15px;
      font-size: 13px;
    }
    .button.primary{
      background: var(--grad-primary);
      color: #fff;
      box-shadow: 0 14px 30px rgba(215,65,36,0.26);
      border: 1px solid rgba(255,255,255,0.06);
    }
    .button.primary:hover{
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(215,65,36,0.30);
    }
    .button.secondary{
      background: rgba(255, 226, 210, 0.9);
      color: #8d341f;
      border: 1px solid rgba(217, 113, 69, 0.20);
    }
    .button.secondary:hover{
      background: rgba(255, 213, 192, 0.96);
      color: #7c2f1c;
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }
    .button.ghost{
      background: rgba(255,255,255,0.76);
      color: var(--text);
      border: 1px solid var(--line);
    }
    .button.ghost:hover{
      background: #fff;
      border-color: var(--line-strong);
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
      color: var(--primary);
    }

    .segment-nav{
      display:flex;
      gap: 10px;
      margin: 14px 0 0;
      padding: 0 0 2px;
      overflow-x: auto;
      flex-wrap: nowrap;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .segment-nav::-webkit-scrollbar{ display:none; }
    .segment-nav li{
      flex: 0 0 auto;
    }
    .segment-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height: 42px;
      padding: 10px 16px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(228, 184, 159, 0.92);
      background: rgba(255,255,255,0.96);
      color: #7b4a36;
      font-weight: 700;
      font-size: 14px;
      line-height: 1;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(180, 92, 35, 0.05);
    }
    .segment-nav a:hover{
      color: var(--primary);
      border-color: rgba(216, 79, 39, 0.38);
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(180, 92, 35, 0.08);
    }
    .segment-nav a.active{
      color: #fff;
      border-color: transparent;
      background: var(--grad-primary);
      box-shadow: 0 14px 26px rgba(215, 65, 36, 0.24);
    }

    .page-main{
      padding: 24px 0 0;
    }
    .section{
      padding: clamp(42px, 5vw, 72px) 0;
    }
    .section.alt{
      background: linear-gradient(180deg, rgba(255,251,247,0.8), rgba(255,244,234,0.88));
      border-top: 1px solid rgba(238, 217, 203, 0.72);
      border-bottom: 1px solid rgba(238, 217, 203, 0.72);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 18px;
      margin-bottom: 22px;
      flex-wrap: wrap;
    }
    .section-head h2{
      margin: 0;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: -0.02em;
    }
    .section-head p{
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      max-width: 620px;
    }

    .chip{
      display:inline-flex;
      align-items:center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(227, 191, 163, 0.92);
      background: rgba(255,255,255,0.88);
      color: #7c4e38;
      font-size: 13px;
      font-weight: 700;
      line-height: 1;
      box-shadow: 0 6px 14px rgba(178, 88, 34, 0.05);
      white-space: nowrap;
    }
    .chip.hot{
      background: linear-gradient(135deg, rgba(255, 222, 195, 0.98), rgba(255, 248, 239, 0.98));
      color: #9b341d;
      border-color: rgba(215, 65, 36, 0.18);
    }
    .chip.count{
      background: rgba(255, 239, 223, 0.95);
      color: #9a411e;
      border-color: rgba(216, 130, 58, 0.24);
    }
    .chip.success{
      background: rgba(238, 250, 242, 0.96);
      color: #2f7d53;
      border-color: rgba(88, 163, 111, 0.24);
    }

    .hero-cover{
      position: relative;
      overflow: hidden;
      padding: 36px 0 24px;
    }
    .hero-cover::before,
    .hero-cover::after{
      content:"";
      position:absolute;
      inset:auto;
      pointer-events:none;
      border-radius: 50%;
      z-index: 0;
    }
    .hero-cover::before{
      width: 340px;
      height: 340px;
      right: -90px;
      top: -80px;
      background: radial-gradient(circle, rgba(255,166,92,0.24), rgba(255,166,92,0.04) 55%, transparent 68%);
      filter: blur(1px);
    }
    .hero-cover::after{
      width: 260px;
      height: 260px;
      left: -120px;
      bottom: -90px;
      background: radial-gradient(circle, rgba(223, 74, 33, 0.14), rgba(223, 74, 33, 0.02) 60%, transparent 72%);
    }
    .hero-grid{
      position: relative;
      z-index: 1;
      align-items: stretch;
    }
    .hero-panel{
      border: 1px solid rgba(232, 200, 177, 0.9);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,247,240,0.96));
      box-shadow: var(--shadow);
      padding: clamp(24px, 3vw, 34px);
      overflow:hidden;
    }
    .hero-panel.left{
      min-height: 100%;
    }
    .hero-topline{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }
    .price-chip{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 9px 14px;
      border-radius: var(--radius-pill);
      background: rgba(255, 245, 232, 0.98);
      border: 1px solid rgba(216, 126, 50, 0.24);
      color: #ab451b;
      font-weight: 900;
      font-size: 14px;
      letter-spacing: .02em;
    }
    .price-chip strong{
      font-size: 22px;
      line-height: 1;
      color: var(--primary);
    }
    .hero-title{
      margin: 0 0 14px;
      font-size: clamp(30px, 5vw, 44px);
      line-height: 1.18;
      letter-spacing: -0.03em;
      font-weight: 900;
      max-width: 11.6em;
    }
    .hero-lead{
      margin: 0;
      max-width: 44em;
      font-size: 16px;
      color: var(--muted);
    }
    .hero-meta{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      margin: 18px 0 22px;
    }
    .meta-pill{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: var(--radius-pill);
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(225, 198, 174, 0.92);
      font-size: 13px;
      color: #7b5a4a;
      font-weight: 700;
    }
    .meta-pill strong{
      color: var(--text);
    }
    .hero-actions{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .hero-stats{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }
    .stat-card{
      border-radius: var(--radius-lg);
      border: 1px solid rgba(229, 200, 177, 0.92);
      background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,245,235,0.96));
      padding: 14px 14px 13px;
      box-shadow: 0 10px 18px rgba(175, 92, 40, 0.06);
      min-height: 90px;
    }
    .stat-card .num{
      display:block;
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 900;
      line-height: 1.05;
      color: var(--primary);
      margin-bottom: 7px;
      letter-spacing: -0.04em;
    }
    .stat-card span{
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .hero-panel.right{
      background: linear-gradient(180deg, rgba(255, 244, 234, 0.98), rgba(255, 251, 247, 0.98));
    }
    .matrix-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap: 12px;
      margin-bottom: 16px;
    }
    .matrix-head h3{
      margin: 0;
      font-size: 20px;
      line-height: 1.2;
      font-weight: 900;
    }
    .matrix-head p{
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 13px;
    }
    .badge-line{
      display:flex;
      align-items:center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content:flex-end;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      border: 1px solid transparent;
      line-height: 1;
      white-space: nowrap;
    }
    .badge.updated{
      color: #9d341c;
      background: rgba(255, 229, 214, 0.96);
      border-color: rgba(223, 86, 48, 0.18);
    }
    .badge.ready{
      color: #2f7d53;
      background: rgba(236, 250, 241, 0.96);
      border-color: rgba(85, 160, 109, 0.18);
    }
    .badge.tip{
      color: #915718;
      background: rgba(255, 240, 210, 0.98);
      border-color: rgba(214, 158, 36, 0.18);
    }
    .mini-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .mini-card{
      border-radius: var(--radius-md);
      background: linear-gradient(180deg, #fff, #fff6ee);
      border: 1px solid rgba(228, 203, 184, 0.95);
      padding: 14px 14px 15px;
      box-shadow: 0 10px 18px rgba(178, 90, 34, 0.05);
      min-height: 112px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position: relative;
      overflow:hidden;
    }
    .mini-card::before{
      content:"";
      position:absolute;
      top: 12px;
      right: 12px;
      width: 54px;
      height: 54px;
      border-radius: 18px;
      background: radial-gradient(circle at 30% 30%, rgba(255,168,87,0.28), rgba(255,168,87,0.08) 70%, transparent 76%);
    }
    .mini-card strong{
      display:block;
      font-size: 26px;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .mini-card span{
      display:block;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
      max-width: 12em;
    }
    .mini-card .small-tag{
      margin-top: 10px;
      display:inline-flex;
      align-items:center;
      width: fit-content;
      padding: 6px 10px;
      border-radius: var(--radius-pill);
      background: rgba(255,233,206,0.95);
      color: #8c441d;
      font-size: 12px;
      font-weight: 800;
    }
    .status-strip{
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: var(--radius-md);
      background: linear-gradient(90deg, rgba(255,244,232,0.98), rgba(255,252,246,0.98));
      border: 1px solid rgba(227, 198, 170, 0.92);
      display:flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .chips-wrap{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items:center;
    }
    .chips-scroll{
      display:flex;
      gap: 10px;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 2px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .chips-scroll::-webkit-scrollbar{ display:none; }
    .chips-scroll .chip{
      flex: 0 0 auto;
    }

    .overview-grid{
      display:grid;
      grid-template-columns: 320px minmax(0, 1fr);
      gap: 22px;
      align-items:start;
    }
    .side-card{
      border-radius: var(--radius-xl);
      border: 1px solid rgba(228, 196, 173, 0.94);
      background: rgba(255,255,255,0.96);
      box-shadow: var(--shadow-soft);
      padding: 22px;
    }
    .side-card.sticky{
      position: sticky;
      top: 120px;
    }
    .toc-title{
      margin: 0 0 12px;
      font-size: 20px;
      line-height: 1.2;
      font-weight: 900;
    }
    .toc-sub{
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 14px;
    }
    .toc-list{
      list-style: none;
      padding: 0;
      margin: 0;
      display:grid;
      gap: 10px;
    }
    .toc-list li a{
      display:flex;
      gap: 10px;
      align-items:flex-start;
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px solid rgba(227, 196, 173, 0.78);
      background: linear-gradient(180deg, #fff, #fff7f0);
    }
    .toc-list li a:hover{
      transform: translateY(-2px);
      border-color: rgba(215, 65, 36, 0.28);
      box-shadow: 0 12px 20px rgba(183, 72, 23, 0.08);
    }
    .toc-num{
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      border-radius: 10px;
      display:grid;
      place-items:center;
      font-size: 12px;
      font-weight: 900;
      color: #fff;
      background: var(--grad-primary);
      box-shadow: 0 8px 18px rgba(215, 65, 36, 0.18);
      margin-top: 1px;
    }
    .toc-content{
      min-width: 0;
    }
    .toc-content strong{
      display:block;
      font-size: 15px;
      line-height: 1.35;
      font-weight: 800;
      margin-bottom: 4px;
    }
    .toc-content span{
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }
    .toc-note{
      margin-top: 16px;
      padding: 14px;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(255,236,216,0.96), rgba(255,250,245,0.98));
      border: 1px solid rgba(224, 170, 103, 0.24);
      color: #86511f;
      font-size: 13px;
      line-height: 1.7;
    }

    .entry-stack{
      display:grid;
      gap: 14px;
    }
    .entry-card{
      position: relative;
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,247,239,0.98));
      border: 1px solid rgba(230, 199, 176, 0.95);
      box-shadow: var(--shadow-soft);
      padding: 20px;
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .entry-card::after{
      content:"";
      position:absolute;
      inset: auto -40px -46px auto;
      width: 160px;
      height: 160px;
      border-radius: 46px;
      background: radial-gradient(circle, rgba(255,170,97,0.18), transparent 68%);
      transform: rotate(20deg);
      pointer-events:none;
    }
    .entry-card:hover{
      transform: translateY(-3px);
      border-color: rgba(215, 65, 36, 0.26);
      box-shadow: 0 18px 34px rgba(183, 72, 23, 0.11);
    }
    .entry-card.featured{
      background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,244,232,0.98));
      border: 1px solid rgba(220, 110, 52, 0.20);
      box-shadow: 0 22px 40px rgba(183, 72, 23, 0.12);
    }
    .entry-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 12px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }
    .entry-index{
      width: 44px;
      height: 44px;
      border-radius: 15px;
      background: var(--grad-primary);
      color: #fff;
      display:grid;
      place-items:center;
      font-weight: 900;
      box-shadow: 0 12px 22px rgba(215, 65, 36, 0.22);
      flex: 0 0 auto;
    }
    .entry-body{
      position: relative;
      z-index: 1;
    }
    .entry-body h3{
      margin: 0 0 8px;
      font-size: 20px;
      line-height: 1.25;
      font-weight: 900;
      letter-spacing: -0.02em;
    }
    .entry-body p{
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }
    .entry-tags{
      display:flex;
      gap: 8px;
      flex-wrap: wrap;
      margin: 14px 0 12px;
    }
    .entry-meta{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items:center;
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 14px;
    }
    .entry-meta span{
      display:inline-flex;
      align-items:center;
      gap: 6px;
      padding: 6px 0;
    }
    .entry-actions{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .feature-grid{
      display:grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr);
      gap: 22px;
      align-items:stretch;
    }
    .spotlight-card{
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(215,65,36,0.96), rgba(255,122,47,0.96)),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,245,236,0.96));
      color: #fff;
      padding: 28px;
      box-shadow: 0 22px 42px rgba(215,65,36,0.24);
      position: relative;
      overflow:hidden;
      min-height: 100%;
    }
    .spotlight-card::before{
      content:"";
      position:absolute;
      inset: 18px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 22px;
      pointer-events:none;
    }
    .spotlight-card::after{
      content:"";
      position:absolute;
      right:-90px;
      top:-100px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 68%);
    }
    .spotlight-card h3{
      margin: 0 0 10px;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.2;
      font-weight: 900;
      position: relative;
      z-index: 1;
    }
    .spotlight-card p{
      margin: 0;
      max-width: 34em;
      opacity: .94;
      position: relative;
      z-index: 1;
    }
    .spotlight-list{
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      display:grid;
      gap: 10px;
      position: relative;
      z-index: 1;
    }
    .spotlight-list li{
      display:flex;
      gap: 10px;
      align-items:flex-start;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: 16px;
      padding: 12px 14px;
      backdrop-filter: none;
    }
    .spotlight-list strong{
      display:inline-flex;
      width: 28px;
      height: 28px;
      align-items:center;
      justify-content:center;
      border-radius: 10px;
      background: rgba(255,255,255,0.18);
      flex: 0 0 auto;
    }
    .spotlight-actions{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 18px;
      position: relative;
      z-index: 1;
    }
    .spotlight-actions .button.ghost{
      background: rgba(255,255,255,0.92);
      color: #b13d21;
      border-color: rgba(255,255,255,0.88);
    }

    .stack-card{
      display:grid;
      gap: 14px;
    }
    .mini-feature{
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, #fff, #fff7f0);
      border: 1px solid rgba(230, 201, 179, 0.94);
      padding: 18px;
      box-shadow: var(--shadow-soft);
    }
    .mini-feature .eyebrow{
      display:inline-flex;
      padding: 6px 10px;
      border-radius: var(--radius-pill);
      background: rgba(255, 233, 210, 0.96);
      color: #9a431f;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .mini-feature h4{
      margin: 0 0 8px;
      font-size: 17px;
      line-height: 1.3;
      font-weight: 900;
    }
    .mini-feature p{
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }
    .mini-feature .note{
      margin-top: 12px;
      display:flex;
      align-items:center;
      gap: 8px;
      color: #8f4b23;
      font-size: 13px;
      font-weight: 700;
    }

    .trust-bar{
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,246,236,0.96));
      border: 1px solid rgba(226, 199, 177, 0.94);
      box-shadow: var(--shadow-soft);
      padding: 18px;
    }
    .trust-grid{
      display:grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
    }
    .trust-item{
      display:flex;
      gap: 12px;
      align-items:flex-start;
      padding: 14px;
      border-radius: 18px;
      background: linear-gradient(180deg, #fff, #fff8f0);
      border: 1px solid rgba(229, 203, 184, 0.9);
      min-height: 92px;
    }
    .trust-icon{
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display:grid;
      place-items:center;
      background: linear-gradient(135deg, rgba(255, 221, 186, 0.98), rgba(255, 248, 239, 0.98));
      color: var(--primary);
      flex: 0 0 auto;
      box-shadow: 0 8px 16px rgba(181, 90, 31, 0.08);
    }
    .trust-item strong{
      display:block;
      font-size: 15px;
      line-height: 1.3;
      font-weight: 900;
      margin-bottom: 4px;
    }
    .trust-item span{
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .faq-wrap{
      border-radius: var(--radius-xl);
      overflow:hidden;
      border: 1px solid rgba(230, 200, 178, 0.94);
      box-shadow: var(--shadow-soft);
      background: rgba(255,255,255,0.96);
    }
    .accordion.faq-accordion{
      margin: 0;
      background: transparent;
    }
    .accordion.faq-accordion .accordion-item{
      border-bottom: 1px solid rgba(234, 212, 198, 0.9);
      background: transparent;
    }
    .accordion.faq-accordion .accordion-item:last-child{
      border-bottom: 0;
    }
    .accordion.faq-accordion .accordion-title{
      font-size: 16px;
      line-height: 1.5;
      font-weight: 800;
      color: var(--text);
      padding: 20px 22px;
      background: linear-gradient(180deg, #fff, #fffaf5);
    }
    .accordion.faq-accordion .accordion-title:hover{
      background: linear-gradient(180deg, #fff, #fff5ec);
      color: var(--primary);
    }
    .accordion.faq-accordion .accordion-content{
      padding: 0 22px 22px;
      background: linear-gradient(180deg, #fff, #fffaf6);
      color: var(--muted);
      font-size: 15px;
    }
    .accordion.faq-accordion .accordion-content p{
      margin: 0;
    }

    .cta-wrap{
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(215,65,36,0.98), rgba(255,122,47,0.96)),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,244,234,0.96));
      color: #fff;
      box-shadow: 0 24px 44px rgba(215, 65, 36, 0.24);
      padding: clamp(24px, 3vw, 34px);
      position: relative;
      overflow:hidden;
    }
    .cta-wrap::before{
      content:"";
      position:absolute;
      inset: 18px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,0.18);
      pointer-events:none;
    }
    .cta-grid{
      display:grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
      gap: 20px;
      align-items:start;
      position: relative;
      z-index: 1;
    }
    .cta-wrap h2{
      margin: 0 0 12px;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.2;
      font-weight: 900;
    }
    .cta-wrap p{
      margin: 0;
      max-width: 34em;
      opacity: .94;
    }
    .cta-pills{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 18px 0 0;
    }
    .cta-pills .chip{
      background: rgba(255,255,255,0.14);
      color: #fff;
      border-color: rgba(255,255,255,0.22);
      box-shadow: none;
    }
    .cta-actions{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }
    .cta-actions .button{
      box-shadow: none;
    }
    .cta-actions .button.secondary{
      background: rgba(255,255,255,0.94);
      color: #b13d21;
      border-color: rgba(255,255,255,0.88);
    }
    .cta-actions .button.ghost{
      background: rgba(255,255,255,0.12);
      color: #fff;
      border-color: rgba(255,255,255,0.32);
    }
    .feedback-form{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.22);
      padding: 18px;
      backdrop-filter: none;
    }
    .feedback-form label{
      display:block;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 8px;
      color: rgba(255,255,255,0.92);
    }
    .feedback-form .field{
      margin-bottom: 14px;
    }
    .feedback-form input,
    .feedback-form textarea{
      width:100%;
      border: 1px solid rgba(255,255,255,0.34);
      background: rgba(255,255,255,0.94);
      color: var(--text);
      border-radius: 16px;
      padding: 13px 14px;
      outline: none;
      transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
    }
    .feedback-form textarea{
      min-height: 112px;
      resize: vertical;
    }
    .feedback-form input:focus,
    .feedback-form textarea:focus{
      border-color: rgba(255,255,255,0.88);
      box-shadow: 0 0 0 4px rgba(255,255,255,0.16);
    }
    .feedback-form .button{
      width:100%;
      justify-content:center;
      background: #fff;
      color: #b13d21;
    }
    .feedback-form .button:hover{
      color: #8f2f1a;
    }

    .site-footer{
      margin-top: 0;
      background: linear-gradient(180deg, #362118 0%, #241710 100%);
      color: rgba(255,255,255,0.88);
      padding: 56px 0 24px;
      position: relative;
      overflow:hidden;
    }
    .site-footer::before{
      content:"";
      position:absolute;
      inset:auto -120px -120px auto;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,131,70,0.16), transparent 68%);
      pointer-events:none;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.25fr 0.85fr 0.9fr;
      gap: 24px;
      align-items:start;
    }
    .site-footer .brand .brand-mark{
      box-shadow: 0 10px 24px rgba(255, 133, 70, 0.22);
    }
    .site-footer .brand-text strong{
      color: #fff;
    }
    .site-footer .brand-text span,
    .site-footer p,
    .footer-bottom{
      color: rgba(255,255,255,0.66);
    }
    .footer-heading{
      margin: 0 0 14px;
      font-size: 16px;
      line-height: 1.3;
      font-weight: 900;
      color: #fff;
    }
    .footer-links{
      list-style: none;
      margin: 0;
      padding: 0;
      display:grid;
      gap: 10px;
    }
    .footer-links a{
      color: rgba(255,255,255,0.78);
    }
    .footer-links a:hover{
      color: #fff;
    }
    .footer-tags{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .site-footer .chip{
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.82);
      box-shadow: none;
    }
    .footer-bottom{
      margin-top: 26px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display:flex;
      justify-content:space-between;
      gap: 12px;
      flex-wrap: wrap;
      font-size: 13px;
    }

    .callout.soft{
      border-radius: 18px;
      border: 1px solid rgba(226, 197, 170, 0.86);
      background: linear-gradient(180deg, #fff, #fff6ef);
      color: var(--muted);
      margin: 0;
    }

    .hide-scrollbar{
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .hide-scrollbar::-webkit-scrollbar{ display:none; }

    @media (max-width: 1024px){
      .overview-grid{
        grid-template-columns: 1fr;
      }
      .side-card.sticky{
        position: static;
      }
      .feature-grid,
      .cta-grid,
      .footer-grid{
        grid-template-columns: 1fr;
      }
      .trust-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 768px){
      .brand-row{
        flex-direction: column;
        align-items: stretch;
      }
      .header-actions{
        justify-content:flex-start;
      }
      .hero-stats{
        grid-template-columns: 1fr;
      }
      .mini-grid{
        grid-template-columns: 1fr;
      }
      .section-head{
        align-items:flex-start;
      }
      .trust-grid{
        grid-template-columns: 1fr;
      }
      .cta-wrap::before,
      .spotlight-card::before{
        inset: 12px;
      }
    }
    @media (max-width: 640px){
      .site-header .container,
      .section,
      .hero-cover{
        padding-left: 0;
        padding-right: 0;
      }
      .site-header .container{
        width: calc(100% - 24px);
      }
      .container{
        width: calc(100% - 24px);
      }
      .brand-text strong{
        white-space: normal;
      }
      .hero-title{
        max-width: none;
      }
      .hero-panel,
      .side-card,
      .entry-card,
      .spotlight-card,
      .mini-feature,
      .trust-bar,
      .faq-wrap,
      .cta-wrap{
        border-radius: 20px;
      }
      .entry-top,
      .matrix-head{
        flex-direction: column;
        align-items:flex-start;
      }
      .badge-line{
        justify-content:flex-start;
      }
      .hero-actions,
      .entry-actions,
      .spotlight-actions,
      .cta-actions,
      .chips-wrap{
        display:flex;
      }
      .button{
        width: auto;
      }
      .segment-nav a{
        min-height: 40px;
        padding: 10px 14px;
      }
      .accordion.faq-accordion .accordion-title,
      .accordion.faq-accordion .accordion-content{
        padding-left: 16px;
        padding-right: 16px;
      }
    }
