/* roulang page: index */
:root{
      --bg:#FAF8F5;
      --bg-soft:#F3F0EC;
      --panel:#FFFFFF;
      --panel-2:#F7E8E8;
      --text:#202124;
      --muted:#64676f;
      --line:#E4DDD7;
      --line-strong:#D5C9C2;
      --brand:#7A2432;
      --brand-dark:#611C28;
      --brand-soft:#F6E5E7;
      --copper:#B8875A;
      --shadow:0 8px 24px rgba(32,33,36,.06);
      --shadow-strong:0 12px 28px rgba(122,36,50,.16);
      --radius:14px;
      --radius-sm:10px;
      --space:24px;
      --space-lg:40px;
      --space-xl:64px;
      --font: "PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html,body{margin:0;padding:0}
    body{
      font-family:var(--font);
      background:
        linear-gradient(180deg, rgba(250,248,245,.98), rgba(248,244,239,.98)),
        repeating-linear-gradient(0deg, rgba(122,36,50,.02) 0, rgba(122,36,50,.02) 1px, transparent 1px, transparent 120px);
      color:var(--text);
      line-height:1.75;
      letter-spacing:0;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:var(--brand);text-decoration:none;transition:all .2s ease}
    a:hover{color:var(--brand-dark)}
    img{max-width:100%;display:block}
    button,input,select,textarea{
      font:inherit;
      letter-spacing:0;
    }
    ::selection{background:rgba(122,36,50,.12);color:var(--brand-dark)}
    .page-wrap{min-height:100vh}
    .container-wide{max-width:1240px;margin:0 auto;padding:0 18px}
    .container-narrow{max-width:860px;margin:0 auto;padding:0 18px}
    .site-header{
      background:rgba(250,248,245,.94);
      backdrop-filter:saturate(120%) blur(8px);
      border-bottom:1px solid var(--line);
      position:relative;
      z-index:20;
    }
    .top-row{
      padding:16px 0 14px;
    }
    .brand-block{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:40px;height:40px;border-radius:12px;
      background:linear-gradient(145deg, #8B2D3C, #6E1F2D);
      box-shadow:0 10px 22px rgba(122,36,50,.22);
      flex:0 0 auto;
      position:relative;
    }
    .brand-mark::after{
      content:"";
      position:absolute;inset:10px 12px 12px 10px;
      border:1px solid rgba(255,255,255,.55);
      border-radius:10px;
    }
    .brand-text{
      min-width:0;
    }
    .brand-name{
      display:block;
      font-size:20px;
      font-weight:700;
      line-height:1.15;
      color:var(--text);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      display:flex;align-items:center;gap:8px;
      color:var(--muted);
      font-size:13px;
      margin-top:4px;
    }
    .adult-badge,.mini-badge,.chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      border:1px solid rgba(122,36,50,.12);
      background:var(--brand-soft);
      color:var(--brand);
      padding:7px 12px;
      font-size:13px;
      line-height:1;
      white-space:nowrap;
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:10px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      padding:8px 10px 8px 16px;
      box-shadow:0 6px 16px rgba(32,33,36,.04);
      min-height:48px;
    }
    .search-box input{
      margin:0;
      border:0;
      box-shadow:none;
      background:transparent;
      padding:0;
      height:auto;
      min-width:0;
      color:var(--text);
    }
    .search-box input::placeholder{color:#8a8d93}
    .search-box input:focus{
      box-shadow:none;
      outline:none;
    }
    .search-button{
      border:0;
      border-radius:999px;
      background:var(--brand);
      color:#fff;
      padding:10px 16px;
      min-height:36px;
      font-weight:600;
      transition:all .2s ease;
      white-space:nowrap;
    }
    .search-button:hover,
    .search-button:focus{
      background:var(--brand-dark);
      transform:translateY(-1px);
      box-shadow:var(--shadow-strong);
    }
    .header-cta{
      display:flex;
      justify-content:flex-end;
      gap:10px;
      flex-wrap:wrap;
    }
    .button{
      border-radius:12px;
      min-height:46px;
      padding:0 18px;
      line-height:44px;
      font-weight:600;
      border:1px solid transparent;
      transition:all .2s ease;
      letter-spacing:0;
    }
    .button.primary{
      background:var(--brand);
      color:#fff;
      box-shadow:0 10px 18px rgba(122,36,50,.14);
    }
    .button.primary:hover,
    .button.primary:focus{
      background:var(--brand-dark);
      transform:translateY(-1px);
      box-shadow:var(--shadow-strong);
    }
    .button.secondary{
      background:transparent;
      color:var(--brand);
      border-color:rgba(122,36,50,.18);
    }
    .button.secondary:hover,
    .button.secondary:focus{
      background:rgba(122,36,50,.06);
      color:var(--brand-dark);
      transform:translateY(-1px);
    }
    .button.light{
      background:#fff;
      color:var(--brand);
      border-color:var(--line);
    }
    .button.light:hover,
    .button.light:focus{
      border-color:rgba(122,36,50,.22);
      transform:translateY(-1px);
      box-shadow:var(--shadow);
    }
    .channel-row{
      border-top:1px solid var(--line);
      background:rgba(255,255,255,.55);
    }
    .channel-tabs{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:12px 0;
      scrollbar-width:none;
      -ms-overflow-style:none;
      mask-image:linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    }
    .channel-tabs::-webkit-scrollbar{display:none}
    .channel-tabs a{
      display:inline-flex;
      align-items:center;
      height:38px;
      padding:0 15px;
      border-radius:999px;
      border:1px solid transparent;
      color:#34363b;
      background:#fff;
      box-shadow:0 4px 10px rgba(32,33,36,.04);
      white-space:nowrap;
      font-size:14px;
      transition:all .2s ease;
      flex:0 0 auto;
    }
    .channel-tabs a:hover{
      border-color:rgba(122,36,50,.16);
      color:var(--brand-dark);
      transform:translateY(-1px);
    }
    .channel-tabs a.is-active{
      background:var(--brand-soft);
      color:var(--brand);
      border-color:rgba(122,36,50,.14);
      box-shadow:none;
    }

    .section{
      padding:78px 0;
      position:relative;
    }
    .section.alt{
      background:rgba(243,240,236,.6);
      border-top:1px solid rgba(228,221,215,.7);
      border-bottom:1px solid rgba(228,221,215,.7);
    }
    .section-title{
      margin:0 0 14px;
      font-size:clamp(28px, 3vw, 36px);
      line-height:1.18;
      color:var(--text);
      font-weight:800;
      letter-spacing:0;
    }
    .section-desc{
      margin:0;
      color:var(--muted);
      font-size:16px;
      max-width:760px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:13px;
      color:var(--brand);
      background:var(--brand-soft);
      border:1px solid rgba(122,36,50,.12);
      border-radius:999px;
      padding:7px 12px;
      margin-bottom:14px;
      white-space:nowrap;
    }
    .eyebrow::before{
      content:"";
      width:7px;height:7px;border-radius:999px;
      background:var(--brand);
      display:inline-block;
    }

    .hero{
      padding:34px 0 88px;
      background:
        linear-gradient(180deg, rgba(252,249,246,.96), rgba(249,245,241,.96)),
        repeating-linear-gradient(90deg, rgba(122,36,50,.02) 0, rgba(122,36,50,.02) 1px, transparent 1px, transparent 160px);
      border-bottom:1px solid var(--line);
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg, rgba(122,36,50,.03), transparent 48%),
        linear-gradient(315deg, rgba(184,135,90,.04), transparent 42%);
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      z-index:1;
      align-items:start;
    }
    .hero-title{
      margin:0 0 16px;
      font-size:clamp(34px, 4.4vw, 52px);
      line-height:1.15;
      font-weight:900;
      letter-spacing:0;
      color:var(--text);
      max-width:760px;
    }
    .hero-title strong{color:var(--brand)}
    .hero-copy{
      margin:0 0 20px;
      font-size:17px;
      color:var(--muted);
      max-width:680px;
      line-height:1.8;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin:0 0 18px;
    }
    .hero-meta{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:12px;
    }
    .hero-note{
      font-size:13px;
      color:var(--muted);
      margin:0;
    }
    .hero-panel{
      background:rgba(255,255,255,.86);
      border:1px solid var(--line);
      border-radius:18px;
      box-shadow:var(--shadow);
      padding:18px;
      position:relative;
    }
    .panel-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .panel-head h3{
      margin:0;
      font-size:18px;
      color:var(--text);
      font-weight:800;
    }
    .panel-head span{
      color:var(--brand);
      font-size:13px;
      white-space:nowrap;
      background:var(--brand-soft);
      border-radius:999px;
      padding:6px 10px;
    }
    .matrix-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:10px;
      margin-bottom:14px;
    }
    .matrix-item{
      border:1px solid var(--line);
      border-radius:14px;
      background:#fff;
      padding:13px 12px;
      min-height:90px;
    }
    .matrix-item strong{
      display:block;
      font-size:15px;
      margin-bottom:6px;
      color:var(--text);
    }
    .matrix-item p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
    }
    .status-box{
      border-radius:16px;
      background:linear-gradient(180deg, #fff, #fcf5f5);
      border:1px solid rgba(122,36,50,.12);
      padding:14px;
    }
    .status-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:8px;
    }
    .status-label{
      font-size:13px;
      color:var(--muted);
    }
    .status-value{
      color:var(--brand);
      font-weight:700;
      font-size:14px;
    }
    .countdown{
      display:flex;
      align-items:baseline;
      gap:8px;
      margin:10px 0 12px;
      color:var(--text);
    }
    .countdown strong{
      font-size:28px;
      line-height:1;
      color:var(--brand-dark);
      letter-spacing:0;
    }
    .countdown span{
      font-size:13px;
      color:var(--muted);
    }
    .status-list{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .status-list .chip{
      background:#fff;
      color:var(--text);
      border-color:rgba(122,36,50,.12);
    }
    .hero-peek{
      position:absolute;
      left:50%;
      bottom:-20px;
      transform:translateX(-50%);
      width:min(1180px, calc(100% - 36px));
      z-index:2;
    }
    .peek-card{
      background:#fff;
      border:1px solid rgba(122,36,50,.16);
      box-shadow:0 14px 26px rgba(32,33,36,.08);
      border-radius:16px;
      padding:14px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .peek-card strong{
      color:var(--brand-dark);
      font-size:16px;
      white-space:nowrap;
    }
    .peek-card span{
      color:var(--muted);
      font-size:14px;
    }

    .step-list{
      list-style:none;
      padding:0;
      margin:34px 0 0;
      position:relative;
    }
    .step-list::before{
      content:"";
      position:absolute;
      left:26px;
      top:10px;
      bottom:10px;
      width:2px;
      background:linear-gradient(180deg, rgba(122,36,50,.35), rgba(184,135,90,.18));
    }
    .step-item{
      position:relative;
      padding-left:68px;
      margin-bottom:18px;
    }
    .step-item:last-child{margin-bottom:0}
    .step-item::before{
      content:"";
      position:absolute;
      left:16px;
      top:20px;
      width:22px;
      height:22px;
      border-radius:999px;
      background:var(--brand);
      box-shadow:0 0 0 6px rgba(122,36,50,.08);
    }
    .step-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:16px;
      padding:18px;
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:80px 1fr;
      gap:14px;
      align-items:start;
    }
    .step-num{
      font-size:30px;
      font-weight:900;
      line-height:1;
      color:var(--brand);
    }
    .step-body h3{
      margin:0 0 6px;
      font-size:20px;
      font-weight:800;
      color:var(--text);
    }
    .step-body p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .step-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-bottom:12px;
    }
    .step-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .compare-wrap{
      margin-top:30px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .compare-table{
      width:100%;
      border-collapse:collapse;
      margin:0;
    }
    .compare-table th,
    .compare-table td{
      padding:16px 15px;
      border-bottom:1px solid var(--line);
      text-align:left;
      vertical-align:top;
      font-size:14px;
      line-height:1.7;
    }
    .compare-table thead th{
      background:linear-gradient(180deg, #fcf8f7, #f9f3f2);
      color:var(--text);
      font-size:15px;
      font-weight:800;
    }
    .compare-table tbody tr:last-child td{border-bottom:0}
    .compare-table .feature{
      font-weight:700;
      color:var(--text);
      width:22%;
    }
    .compare-table .plan-reco{
      background:rgba(122,36,50,.03);
    }
    .compare-table .plan-reco .plan-title{
      color:var(--brand);
      font-weight:800;
    }
    .plan-title{
      display:block;
      margin-bottom:6px;
      color:var(--text);
      font-weight:700;
    }
    .plan-desc{
      display:block;
      color:var(--muted);
      font-size:13px;
    }
    .plan-tags{
      display:flex;
      flex-wrap:wrap;
      gap:6px;
      margin-top:8px;
    }
    .plan-tags .mini-badge{
      padding:5px 9px;
      font-size:12px;
      background:#fff;
      color:var(--text);
    }
    .plan-action{
      margin-top:12px;
    }
    .mobile-plans{display:none}
    .plan-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:16px;
      padding:16px;
      box-shadow:var(--shadow);
      margin-bottom:14px;
    }
    .plan-card:last-child{margin-bottom:0}
    .plan-card.reco{
      border-color:rgba(122,36,50,.22);
      box-shadow:var(--shadow-strong);
    }
    .plan-card-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
    }
    .plan-card-head h3{
      margin:0;
      font-size:18px;
      font-weight:800;
      color:var(--text);
    }
    .price{
      color:var(--brand);
      font-weight:800;
      white-space:nowrap;
    }
    .plan-list{
      list-style:none;
      padding:0;
      margin:0 0 14px;
    }
    .plan-list li{
      padding:8px 0;
      border-bottom:1px dashed rgba(228,221,215,.9);
      color:var(--text);
      font-size:14px;
    }
    .plan-list li:last-child{border-bottom:0}
    .plan-list strong{color:var(--brand-dark)}
    .plan-card .button{width:100%;justify-content:center}

    .entry-banner{
      background:linear-gradient(180deg, #fbefe8, #f9e9ea);
      border-top:1px solid rgba(122,36,50,.12);
      border-bottom:1px solid rgba(122,36,50,.12);
    }
    .entry-bar{
      border-radius:18px;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(122,36,50,.14);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .entry-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-bottom:10px;
    }
    .entry-top h3{
      margin:0;
      font-size:22px;
      color:var(--text);
      font-weight:800;
    }
    .entry-status{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .entry-body{
      display:grid;
      grid-template-columns:1.4fr .9fr;
      gap:18px;
      align-items:center;
    }
    .entry-copy{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
    }
    .entry-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .entry-panel{
      background:#fff;
      border-radius:16px;
      border:1px solid var(--line);
      padding:16px;
    }
    .entry-panel ul{
      list-style:none;
      margin:0;
      padding:0;
    }
    .entry-panel li{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:9px 0;
      border-bottom:1px dashed rgba(228,221,215,.9);
      font-size:14px;
      color:var(--text);
    }
    .entry-panel li:last-child{border-bottom:0}
    .entry-panel span{color:var(--muted)}

    .form-grid{
      align-items:start;
      margin-top:28px;
    }
    .form-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      box-shadow:var(--shadow);
      padding:20px;
    }
    .form-card .lead{
      margin:0 0 16px;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
    }
    .form-warning{
      background:var(--brand-soft);
      border:1px solid rgba(122,36,50,.12);
      color:var(--brand-dark);
      border-radius:14px;
      padding:12px 14px;
      font-size:14px;
      margin-bottom:16px;
    }
    .form-warning strong{color:var(--brand)}
    .form-label{
      color:var(--text);
      font-weight:700;
      font-size:14px;
      margin-bottom:8px;
    }
    .form-control,
    .form-card input[type="text"],
    .form-card input[type="tel"],
    .form-card select,
    .form-card textarea{
      border-radius:12px;
      border:1px solid var(--line-strong);
      background:#fff;
      min-height:48px;
      box-shadow:none;
      transition:all .2s ease;
      padding:12px 14px;
      color:var(--text);
    }
    .form-card textarea{
      min-height:126px;
      resize:vertical;
    }
    .form-card input:focus,
    .form-card select:focus,
    .form-card textarea:focus{
      border-color:var(--brand);
      box-shadow:0 0 0 4px rgba(122,36,50,.1);
    }
    .form-foot{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:6px;
    }
    .checkbox-wrap{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--text);
      line-height:1.7;
      font-size:14px;
    }
    .checkbox-wrap input{
      margin-top:5px;
      width:18px;height:18px;
      accent-color:var(--brand);
      flex:0 0 auto;
    }
    .form-help{
      color:var(--muted);
      font-size:13px;
      margin:0;
    }
    .form-message{
      margin-top:12px;
      font-size:14px;
      color:var(--brand-dark);
      min-height:22px;
    }
    .support-card{
      background:linear-gradient(180deg, rgba(247,232,232,.85), rgba(255,255,255,.92));
      border:1px solid rgba(122,36,50,.12);
      border-radius:18px;
      box-shadow:var(--shadow);
      padding:20px;
      margin-bottom:18px;
    }
    .support-card h3{
      margin:0 0 12px;
      font-size:20px;
      font-weight:800;
      color:var(--text);
    }
    .support-card p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
    }
    .support-list{
      list-style:none;
      margin:0;
      padding:0;
    }
    .support-list li{
      position:relative;
      padding-left:20px;
      margin-bottom:10px;
      color:var(--text);
      font-size:14px;
      line-height:1.7;
    }
    .support-list li::before{
      content:"";
      position:absolute;
      left:0;top:11px;
      width:8px;height:8px;border-radius:999px;
      background:var(--brand);
    }
    .support-list strong{color:var(--brand-dark)}
    .support-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .support-tags .chip{
      background:#fff;
    }
    .support-box{
      background:#fff;
      border-radius:16px;
      border:1px solid var(--line);
      padding:18px;
      box-shadow:var(--shadow);
    }
    .support-box h4{
      margin:0 0 10px;
      font-size:16px;
      color:var(--text);
      font-weight:800;
    }
    .support-box p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }

    .news-layout{
      margin-top:28px;
      align-items:start;
    }
    .news-list{
      list-style:none;
      margin:0;
      padding:0;
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .news-item{
      border-bottom:1px solid var(--line);
      padding:18px 18px 17px;
      transition:background .2s ease, transform .2s ease;
    }
    .news-item:last-child{border-bottom:0}
    .news-item:hover{background:rgba(122,36,50,.025)}
    .news-top{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      margin-bottom:8px;
    }
    .news-top .mini-badge{
      background:var(--brand-soft);
    }
    .news-title{
      display:block;
      font-size:18px;
      font-weight:800;
      color:var(--text);
      line-height:1.35;
      margin-bottom:8px;
    }
    .news-excerpt{
      margin:0 0 10px;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .news-meta{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      color:#777;
      font-size:13px;
    }
    .news-side{
      background:linear-gradient(180deg, #fff, #fcf6f5);
      border:1px solid var(--line);
      border-radius:18px;
      padding:18px;
      box-shadow:var(--shadow);
    }
    .news-side h3{
      margin:0 0 12px;
      font-size:20px;
      font-weight:800;
      color:var(--text);
    }
    .news-side p{
      margin:0 0 14px;
      color:var(--muted);
      line-height:1.8;
      font-size:15px;
    }
    .news-side .button{width:100%;justify-content:center}
    .news-side .mini-badge{
      margin-bottom:10px;
    }
    .news-side .focus-list{
      list-style:none;
      margin:16px 0 0;
      padding:0;
    }
    .news-side .focus-list li{
      padding:10px 0;
      border-bottom:1px dashed rgba(228,221,215,.9);
      color:var(--text);
      font-size:14px;
    }
    .news-side .focus-list li:last-child{border-bottom:0}

    .faq-wrap{
      margin-top:28px;
    }
    .accordion{
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .accordion-title{
      color:var(--text);
      font-weight:800;
      padding:18px 18px 18px 50px;
      font-size:16px;
      line-height:1.6;
      background:#fff;
      border-bottom:1px solid var(--line);
      position:relative;
    }
    .accordion-title::before{
      content:"+";
      position:absolute;
      left:18px;
      top:14px;
      width:24px;height:24px;
      border-radius:999px;
      border:1px solid rgba(122,36,50,.16);
      color:var(--brand);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:700;
      background:var(--brand-soft);
    }
    .accordion-item.is-active .accordion-title::before{content:"–"}
    .accordion-content{
      border-bottom:1px solid var(--line);
      background:#fff;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
      padding:0 18px 18px 50px;
    }
    .accordion-item:last-child .accordion-title,
    .accordion-item:last-child .accordion-content{
      border-bottom:0;
    }

    .site-footer{
      background:#1f1f22;
      color:#ddd;
      padding:34px 0 24px;
      margin-top:0;
    }
    .footer-grid{
      align-items:start;
      gap:24px;
    }
    .footer-brand{
      margin:0 0 10px;
      color:#fff;
      font-size:20px;
      font-weight:800;
    }
    .footer-copy{
      margin:0;
      color:#b9bcc2;
      font-size:14px;
      line-height:1.8;
    }
    .footer-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:16px;
    }
    .footer-links a,
    .footer-links span{
      color:#e7e0dc;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.09);
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
    }
    .footer-right{
      text-align:right;
    }
    .footer-right p{
      margin:0 0 8px;
      color:#c9cbd1;
      font-size:14px;
      line-height:1.8;
    }
    .footer-right .tech{
      color:#9ea2aa;
      font-size:13px;
    }

    .section-compact{
      padding-top:58px;
      padding-bottom:58px;
    }
    .section-topline{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:22px;
      flex-wrap:wrap;
    }
    .section-topline .section-desc{
      max-width:700px;
    }

    .callout-lite{
      border:1px solid rgba(122,36,50,.12);
      background:#fff;
      border-radius:16px;
      box-shadow:var(--shadow);
      padding:16px 18px;
    }
    .callout-lite strong{
      color:var(--brand-dark);
    }

    .visually-hidden{
      position:absolute!important;
      width:1px;height:1px;
      padding:0;margin:-1px;
      overflow:hidden;clip:rect(0,0,0,0);
      border:0;
    }

    .button:focus,
    a:focus,
    input:focus,
    select:focus,
    textarea:focus{
      outline:none;
    }
    .button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible{
      box-shadow:0 0 0 3px rgba(122,36,50,.18);
    }

    @media screen and (min-width: 640px){
      .top-row .grid-x{align-items:center}
    }
    @media screen and (max-width: 1024px){
      .hero{
        padding-top:28px;
      }
      .hero-title{max-width:none}
      .entry-body,
      .form-grid,
      .news-layout{
        grid-template-columns:1fr;
      }
      .footer-right{text-align:left}
    }
    @media screen and (max-width: 768px){
      .section{
        padding:58px 0;
      }
      .top-row{
        padding:14px 0 12px;
      }
      .brand-name{
        font-size:18px;
      }
      .search-box{
        margin-top:12px;
        width:100%;
      }
      .header-cta{
        justify-content:flex-start;
        margin-top:12px;
      }
      .hero-title{
        font-size:clamp(30px, 8vw, 38px);
      }
      .hero-copy{
        font-size:16px;
      }
      .matrix-grid{
        grid-template-columns:1fr;
      }
      .step-list::before{left:18px}
      .step-item{
        padding-left:52px;
      }
      .step-item::before{
        left:8px;
      }
      .step-card{
        grid-template-columns:1fr;
      }
      .compare-table{
        display:none;
      }
      .mobile-plans{
        display:block;
        margin-top:28px;
      }
      .hero-peek{
        position:relative;
        left:auto;
        bottom:auto;
        transform:none;
        width:100%;
        margin-top:18px;
      }
      .peek-card{
        flex-direction:column;
        align-items:flex-start;
      }
      .entry-actions{
        justify-content:flex-start;
      }
      .channel-tabs{
        padding:10px 0;
      }
    }
    @media screen and (max-width: 520px){
      .button{
        width:100%;
        justify-content:center;
      }
      .hero-actions,
      .step-actions,
      .entry-actions{
        display:grid;
        grid-template-columns:1fr;
      }
      .hero-meta{
        gap:8px;
      }
      .chip,.mini-badge,.adult-badge{
        font-size:12px;
      }
      .accordion-title{
        padding-left:44px;
      }
      .accordion-content{
        padding-left:44px;
      }
      .search-box{
        flex-wrap:wrap;
        border-radius:18px;
      }
      .search-button{
        width:100%;
      }
      .footer-links{
        gap:8px;
      }
      .footer-links a,
      .footer-links span{
        width:100%;
        text-align:center;
      }
      .hero{
        padding-bottom:74px;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #faf8f5;
      --bg-soft: #f3f0ec;
      --panel: #fffdfb;
      --panel-2: #f7edea;
      --text: #202124;
      --muted: #6f6a63;
      --line: #ded7d0;
      --line-strong: #c8bbb1;
      --accent: #7a2432;
      --accent-2: #8b2d3c;
      --accent-soft: #f7e8e8;
      --accent-soft-2: #f1d9dc;
      --copper: #b8875a;
      --olive: #65745d;
      --shadow: 0 8px 24px rgba(32, 33, 36, 0.06);
      --shadow-strong: 0 16px 38px rgba(32, 33, 36, 0.1);
      --radius: 12px;
      --radius-sm: 10px;
      --container: 1240px;
      --container-narrow: 860px;
      --space-xs: 6px;
      --space-sm: 12px;
      --space-md: 18px;
      --space-lg: 24px;
      --space-xl: 36px;
      --space-2xl: 56px;
      --space-3xl: 84px;
      --font-stack: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font-stack);
      color: var(--text);
      background:
        linear-gradient(180deg, rgba(247, 232, 232, 0.28), rgba(250, 248, 245, 0) 280px),
        var(--bg);
      line-height: 1.8;
      letter-spacing: 0;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    body, input, button, textarea, select {
      font-family: var(--font-stack);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    }

    a:hover,
    a:focus {
      color: var(--accent);
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 2px solid rgba(122, 36, 50, 0.26);
      outline-offset: 2px;
    }

    img {
      max-width: 100%;
      display: block;
      height: auto;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    p {
      margin: 0 0 14px;
      color: var(--muted);
    }

    h1, h2, h3, h4 {
      margin: 0;
      color: var(--text);
      line-height: 1.18;
      letter-spacing: 0;
      word-break: break-word;
      overflow-wrap: anywhere;
    }

    h1 {
      font-size: 3.05rem;
      font-weight: 800;
      max-width: 12em;
    }

    h2 {
      font-size: 2.05rem;
      font-weight: 750;
    }

    h3 {
      font-size: 1.28rem;
      font-weight: 700;
    }

    ul, ol {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .visually-hidden {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }

    .site-shell {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container-wide {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .container-narrow {
      width: min(100% - 32px, var(--container-narrow));
      margin: 0 auto;
    }

    .site-header {
      background: rgba(250, 248, 245, 0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(222, 215, 208, 0.8);
    }

    .top-row {
      padding: 18px 0 16px;
    }

    .brand-block {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background:
        linear-gradient(135deg, var(--accent) 0%, #5f1c28 45%, #3f131b 100%);
      box-shadow: 0 10px 20px rgba(122, 36, 50, 0.18);
      position: relative;
      flex: 0 0 auto;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.36);
    }

    .brand-text {
      min-width: 0;
    }

    .brand-name {
      display: inline-block;
      font-size: 1.14rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 5px;
      max-width: 100%;
    }

    .brand-name:hover {
      color: var(--accent);
    }

    .brand-sub {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      font-size: .88rem;
      color: var(--muted);
    }

    .adult-badge {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-weight: 700;
      font-size: .8rem;
      border: 1px solid rgba(122, 36, 50, 0.12);
      white-space: nowrap;
    }

    .search-box {
      display: flex;
      align-items: stretch;
      gap: 10px;
      width: 100%;
      margin: 0;
    }

    .search-box input {
      min-width: 0;
      flex: 1 1 auto;
      height: 48px;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: var(--panel);
      padding: 0 16px;
      color: var(--text);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
      transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    }

    .search-box input::placeholder {
      color: #8b8278;
    }

    .search-box input:focus {
      border-color: rgba(122, 36, 50, 0.45);
      box-shadow: 0 0 0 4px rgba(122, 36, 50, 0.08);
      background: #fff;
    }

    .search-button {
      height: 48px;
      border: 0;
      border-radius: 12px;
      padding: 0 18px;
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      box-shadow: 0 10px 22px rgba(122, 36, 50, 0.15);
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
      white-space: nowrap;
    }

    .search-button:hover {
      background: var(--accent-2);
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(122, 36, 50, 0.22);
    }

    .search-button:active {
      transform: translateY(0);
    }

    .header-cta {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      margin: 0;
      padding: 0 20px;
      border-radius: 12px;
      font-weight: 700;
      border: 1px solid transparent;
      cursor: pointer;
      letter-spacing: 0;
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
      text-shadow: none;
    }

    .button.primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 10px 22px rgba(122, 36, 50, 0.14);
    }

    .button.primary:hover,
    .button.primary:focus {
      background: var(--accent-2);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 16px 32px rgba(122, 36, 50, 0.18);
    }

    .button.secondary {
      background: rgba(255, 255, 255, 0.82);
      color: var(--accent);
      border-color: rgba(122, 36, 50, 0.18);
      box-shadow: 0 8px 18px rgba(32, 33, 36, 0.04);
    }

    .button.secondary:hover,
    .button.secondary:focus {
      background: #fff;
      color: var(--accent);
      border-color: rgba(122, 36, 50, 0.28);
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(32, 33, 36, 0.08);
    }

    .button.tiny {
      min-height: 40px;
      padding: 0 16px;
      font-size: .95rem;
    }

    .channel-row {
      border-top: 1px solid rgba(222, 215, 208, 0.65);
      border-bottom: 1px solid rgba(222, 215, 208, 0.65);
      background: rgba(255, 253, 251, 0.88);
    }

    .channel-tabs {
      display: flex;
      align-items: center;
      gap: 10px;
      overflow-x: auto;
      padding: 12px 4px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .channel-tabs::-webkit-scrollbar,
    .pill-scroll::-webkit-scrollbar {
      display: none;
    }

    .channel-tabs a,
    .pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid transparent;
      white-space: nowrap;
      color: var(--text);
      font-size: .95rem;
      background: transparent;
      flex: 0 0 auto;
    }

    .channel-tabs a:hover,
    .pill:hover {
      background: rgba(122, 36, 50, 0.05);
      color: var(--accent);
    }

    .channel-tabs a.is-active,
    .pill.is-active {
      background: var(--accent-soft);
      border-color: rgba(122, 36, 50, 0.12);
      color: var(--accent);
      font-weight: 700;
    }

    .page-main {
      flex: 1 0 auto;
    }

    .category-intro {
      padding: 34px 0 22px;
      position: relative;
    }

    .category-intro::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 100%;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(122, 36, 50, 0.03), rgba(255,255,255,0));
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(122, 36, 50, 0.08);
      color: var(--accent);
      font-size: .86rem;
      font-weight: 700;
      border: 1px solid rgba(122, 36, 50, 0.12);
      margin-bottom: 14px;
    }

    .category-intro h1 {
      margin-bottom: 16px;
    }

    .lead {
      font-size: 1.08rem;
      line-height: 1.85;
      max-width: 38em;
      color: #4d4741;
    }

    .intro-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .status-board {
      background: linear-gradient(180deg, #fffdfb 0%, #f8f3ef 100%);
      border: 1px solid rgba(222, 215, 208, 0.92);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    .status-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .status-heading strong {
      font-size: 1rem;
      color: var(--text);
    }

    .status-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .status-metric {
      background: #fff;
      border: 1px solid rgba(222, 215, 208, 0.85);
      border-radius: 11px;
      padding: 14px;
      min-height: 88px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 8px 18px rgba(32,33,36,.03);
    }

    .status-metric span {
      font-size: .86rem;
      color: var(--muted);
    }

    .status-metric strong {
      display: block;
      color: var(--text);
      font-size: 1.05rem;
      margin-top: 8px;
    }

    .pill-strip {
      padding: 10px 0 0;
    }

    .pill-scroll {
      display: flex;
      align-items: center;
      gap: 10px;
      overflow-x: auto;
      padding: 0 2px 8px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .section-block {
      padding: 72px 0;
    }

    .section-block.alt {
      background: linear-gradient(180deg, rgba(247, 232, 232, 0.24), rgba(255, 255, 255, 0));
      border-top: 1px solid rgba(222, 215, 208, 0.45);
      border-bottom: 1px solid rgba(222, 215, 208, 0.45);
    }

    .section-head {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 24px;
    }

    .section-head p {
      max-width: 44em;
      color: var(--muted);
    }

    .section-head.narrow {
      margin-bottom: 18px;
    }

    .topic-grid {
      align-items: stretch;
    }

    .topic-card {
      background: var(--panel);
      border: 1px solid rgba(222, 215, 208, 0.96);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      overflow: hidden;
    }

    .topic-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--copper));
      opacity: .9;
    }

    .topic-card h3 {
      font-size: 1.18rem;
      margin-top: 2px;
    }

    .topic-card p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .card-labels,
    .inline-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .mini-tag {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      background: #f5f0eb;
      color: #5e554f;
      border: 1px solid rgba(222, 215, 208, 0.9);
      font-size: .82rem;
      font-weight: 600;
      white-space: nowrap;
    }

    .mini-tag.accent {
      background: var(--accent-soft);
      color: var(--accent);
      border-color: rgba(122, 36, 50, 0.12);
    }

    .mini-tag.olive {
      background: rgba(101, 116, 93, 0.08);
      color: var(--olive);
      border-color: rgba(101, 116, 93, 0.14);
    }

    .meta-line {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: .88rem;
    }

    .meta-line span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .card-actions {
      margin-top: auto;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .article-flow {
      display: grid;
      gap: 14px;
    }

    .flow-item {
      background: var(--panel);
      border: 1px solid rgba(222, 215, 208, 0.96);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 18px 20px;
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      gap: 16px;
      align-items: start;
    }

    .flow-index {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(122, 36, 50, 0.12), rgba(184, 135, 90, 0.16));
      color: var(--accent);
      font-size: 1.1rem;
      font-weight: 800;
      display: grid;
      place-items: center;
      border: 1px solid rgba(122, 36, 50, 0.12);
    }

    .flow-body {
      min-width: 0;
    }

    .flow-body h3 {
      margin-bottom: 8px;
      font-size: 1.14rem;
    }

    .flow-body p {
      margin-bottom: 12px;
    }

    .flow-footer {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      align-items: center;
    }

    .note-callout {
      margin-top: 20px;
      background: linear-gradient(180deg, rgba(122, 36, 50, 0.06), rgba(247, 232, 232, 0.18));
      border: 1px solid rgba(122, 36, 50, 0.1);
      border-radius: var(--radius);
      padding: 18px 20px;
      color: #4d4741;
    }

    .note-callout p {
      margin: 0;
      color: #4d4741;
    }

    .faq-accordion {
      border: 0;
      background: transparent;
      margin: 0;
    }

    .faq-accordion .accordion-item {
      border: 1px solid rgba(222, 215, 208, 0.96);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: var(--shadow);
      overflow: hidden;
      margin-bottom: 14px;
    }

    .faq-accordion .accordion-title {
      color: var(--text);
      font-size: 1rem;
      font-weight: 700;
      padding: 18px 52px 18px 18px;
      background: #fff;
      border: 0;
    }

    .faq-accordion .accordion-title:hover {
      background: rgba(122, 36, 50, 0.03);
      color: var(--accent);
    }

    .faq-accordion .accordion-title::before {
      right: 20px;
      top: 50%;
      margin-top: -8px;
      border-color: var(--accent) transparent transparent;
    }

    .faq-accordion .accordion-content {
      border: 0;
      padding: 0 18px 18px;
      color: var(--muted);
      background: #fff;
    }

    .faq-accordion p {
      margin: 0;
      color: var(--muted);
    }

    .compliance-box {
      margin-top: 20px;
      background: linear-gradient(180deg, #fff, rgba(247, 232, 232, 0.24));
      border: 1px solid rgba(222, 215, 208, 0.96);
      border-radius: var(--radius);
      padding: 20px 22px;
      box-shadow: var(--shadow);
    }

    .compliance-box h3 {
      font-size: 1.05rem;
      margin-bottom: 12px;
    }

    .compliance-list {
      display: grid;
      gap: 10px;
    }

    .compliance-list li {
      position: relative;
      padding-left: 18px;
      color: var(--muted);
    }

    .compliance-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .82em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      transform: translateY(-50%);
    }

    .article-shell {
      max-width: 820px;
      margin: 0 auto;
    }

    .article-body {
      background: var(--panel);
      border: 1px solid rgba(222, 215, 208, 0.96);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
    }

    .article-content h2 {
      font-size: 1.5rem;
      margin: 30px 0 14px;
      padding-left: 14px;
      border-left: 4px solid var(--accent);
    }

    .article-content h3 {
      font-size: 1.14rem;
      margin: 22px 0 10px;
    }

    .article-content p {
      margin-bottom: 16px;
      color: #49423d;
    }

    .article-note {
      background: #f8f4ef;
      border: 1px solid rgba(222, 215, 208, 0.96);
      border-radius: 10px;
      padding: 14px 16px;
      margin: 16px 0;
    }

    .related-list {
      display: grid;
      gap: 12px;
    }

    .related-item {
      border: 1px solid rgba(222, 215, 208, 0.9);
      border-radius: 10px;
      background: #fff;
      padding: 16px 18px;
    }

    .related-item strong {
      display: block;
      margin-bottom: 4px;
    }

    .site-footer {
      background: linear-gradient(180deg, #2a1a1f 0%, #221519 100%);
      color: rgba(255, 255, 255, 0.86);
      padding: 44px 0 32px;
      margin-top: 40px;
    }

    .footer-grid {
      align-items: start;
    }

    .footer-brand {
      color: #fff;
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .footer-copy {
      color: rgba(255, 255, 255, 0.72);
      max-width: 52em;
      margin-bottom: 14px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.9);
      padding-bottom: 2px;
      border-bottom: 1px solid transparent;
    }

    .footer-links a:hover {
      border-bottom-color: rgba(255, 255, 255, 0.55);
      color: #fff;
    }

    .footer-links span {
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-right {
      text-align: left;
    }

    .footer-right p {
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 10px;
    }

    .tech {
      font-size: .92rem;
      color: rgba(255, 255, 255, 0.64);
    }

    @media (max-width: 1024px) {
      h1 {
        font-size: 2.65rem;
      }

      .section-block {
        padding: 60px 0;
      }

      .status-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .top-row {
        padding: 16px 0 14px;
      }

      .brand-block {
        margin-bottom: 14px;
      }

      .header-cta {
        justify-content: flex-start;
        margin-top: 12px;
      }

      .search-box {
        flex-wrap: wrap;
      }

      .search-box input,
      .search-button {
        width: 100%;
      }

      h1 {
        font-size: 2.2rem;
        max-width: 100%;
      }

      h2 {
        font-size: 1.7rem;
      }

      .category-intro {
        padding-top: 26px;
      }

      .status-board {
        margin-top: 20px;
      }

      .section-block {
        padding: 48px 0;
      }

      .flow-item {
        grid-template-columns: 1fr;
      }

      .flow-index {
        width: 42px;
        height: 42px;
      }

      .article-body {
        padding: 22px 18px;
      }
    }

    @media (max-width: 520px) {
      .container-wide,
      .container-narrow {
        width: min(100% - 24px, 100%);
      }

      .brand-name {
        font-size: 1.02rem;
      }

      .brand-sub {
        font-size: .82rem;
        gap: 8px;
      }

      .button {
        width: 100%;
      }

      .intro-actions {
        width: 100%;
      }

      .intro-actions .button {
        width: 100%;
      }

      .status-grid {
        grid-template-columns: 1fr;
      }

      .topic-card,
      .flow-item,
      .note-callout,
      .compliance-box {
        padding-left: 16px;
        padding-right: 16px;
      }

      .faq-accordion .accordion-title {
        padding-right: 46px;
        font-size: .98rem;
      }

      .footer-right {
        margin-top: 16px;
      }
    }

/* roulang page: category2 */
:root{
      --bg:#faf8f5;
      --bg-soft:#f5eee8;
      --panel:#ffffff;
      --panel-soft:#fbf6f2;
      --line:#e7ddd3;
      --line-strong:#d8c9bc;
      --text:#202124;
      --muted:#6f655f;
      --muted-2:#8a7d74;
      --brand:#7a2432;
      --brand-2:#8b2d3c;
      --brand-soft:#f4dde0;
      --accent:#b8875a;
      --accent-soft:#f7ede2;
      --success:#587458;
      --shadow:0 8px 24px rgba(32,33,36,.06);
      --shadow-strong:0 14px 34px rgba(32,33,36,.09);
      --radius:14px;
      --radius-sm:10px;
      --container:1240px;
      --header-h:72px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      line-height:1.75;
      letter-spacing:0;
      background:
        linear-gradient(180deg, #fbf8f5 0%, #f3ede7 100%);
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(90deg, rgba(122,36,50,.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(122,36,50,.018) 1px, transparent 1px);
      background-size:34px 34px;
      opacity:.35;
      z-index:-1;
    }
    img{max-width:100%;display:block}
    a{color:inherit;text-decoration:none;transition:background-color .18s ease,color .18s ease,box-shadow .18s ease,border-color .18s ease,transform .18s ease}
    button,input,select,textarea{font:inherit}
    input,select,textarea,button{letter-spacing:0}
    button{cursor:pointer}
    ::selection{background:rgba(122,36,50,.16);color:var(--text)}
    .visually-hidden{
      position:absolute!important;
      width:1px;height:1px;
      margin:-1px;padding:0;border:0;
      overflow:hidden;clip:rect(0 0 0 0);
      white-space:nowrap;
    }
    .container-wide{
      width:min(var(--container),calc(100% - 32px));
      margin:0 auto;
    }
    .site-header{
      position:relative;
      z-index:20;
      background:rgba(250,248,245,.94);
      backdrop-filter:blur(8px);
      border-bottom:1px solid rgba(231,221,211,.9);
      box-shadow:0 1px 0 rgba(255,255,255,.4) inset;
    }
    .top-row{
      padding:12px 0 10px;
    }
    .brand-block{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      position:relative;
      width:46px;
      height:46px;
      border-radius:13px;
      background:
        linear-gradient(135deg, rgba(122,36,50,.95), rgba(139,45,60,.92));
      box-shadow:0 10px 24px rgba(122,36,50,.22);
      flex:0 0 auto;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:auto;
      background:rgba(255,255,255,.8);
      border-radius:999px;
    }
    .brand-mark::before{
      width:20px;height:2px;
      left:13px;top:16px;
    }
    .brand-mark::after{
      width:12px;height:2px;
      left:17px;top:25px;
      opacity:.9;
    }
    .brand-text{min-width:0}
    .brand-name{
      display:inline-block;
      max-width:100%;
      font-size:20px;
      line-height:1.15;
      font-weight:800;
      color:var(--text);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-top:6px;
      font-size:13px;
      color:var(--muted);
    }
    .adult-badge{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      background:var(--brand-soft);
      color:var(--brand);
      border:1px solid rgba(122,36,50,.12);
      font-weight:700;
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:10px;
      padding:8px;
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:16px;
      box-shadow:var(--shadow);
    }
    .search-box input{
      flex:1 1 auto;
      min-width:0;
      height:44px;
      padding:0 12px;
      border:1px solid transparent;
      background:transparent;
      border-radius:12px;
      color:var(--text);
      outline:none;
      box-shadow:none;
      margin:0;
    }
    .search-box input::placeholder{color:#9a8e84}
    .search-box input:focus{
      border-color:rgba(122,36,50,.28);
      box-shadow:0 0 0 4px rgba(122,36,50,.08);
    }
    .search-button{
      flex:0 0 auto;
      height:44px;
      padding:0 18px;
      border:none;
      border-radius:12px;
      background:var(--brand);
      color:#fff;
      font-weight:700;
      box-shadow:0 8px 18px rgba(122,36,50,.18);
    }
    .search-button:hover,.search-button:focus{
      background:#6a2030;
      box-shadow:0 12px 24px rgba(122,36,50,.26);
      transform:translateY(-1px);
    }
    .header-cta{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex-wrap:wrap;
    }
    .button{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:46px;
      padding:0 20px;
      border-radius:12px;
      font-weight:700;
      line-height:1;
      border:1px solid transparent;
      white-space:nowrap;
      box-shadow:none;
      margin:0;
    }
    .button.primary{
      background:var(--brand);
      color:#fff;
      border-color:var(--brand);
      box-shadow:0 10px 22px rgba(122,36,50,.18);
    }
    .button.primary:hover,.button.primary:focus{
      background:#6a2030;
      border-color:#6a2030;
      transform:translateY(-1px);
      box-shadow:0 14px 30px rgba(122,36,50,.24);
    }
    .button.secondary{
      background:#f6f0ea;
      color:var(--brand);
      border-color:rgba(122,36,50,.18);
    }
    .button.secondary:hover,.button.secondary:focus{
      background:#f0e4df;
      border-color:rgba(122,36,50,.28);
      transform:translateY(-1px);
      box-shadow:0 10px 22px rgba(32,33,36,.06);
    }
    .button:disabled{
      cursor:not-allowed;
      opacity:.56;
      transform:none!important;
      box-shadow:none!important;
    }
    .channel-row{
      background:rgba(255,255,255,.72);
      border-bottom:1px solid var(--line);
    }
    .channel-tabs{
      display:flex;
      gap:10px;
      align-items:center;
      overflow-x:auto;
      white-space:nowrap;
      padding:11px 0;
      scrollbar-width:none;
      -ms-overflow-style:none;
      mask-image:linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
    }
    .channel-tabs::-webkit-scrollbar{display:none}
    .channel-tabs a{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:40px;
      padding:0 16px;
      border-radius:999px;
      border:1px solid transparent;
      color:var(--muted);
      background:transparent;
      font-size:14px;
      font-weight:700;
    }
    .channel-tabs a:hover{
      background:#f3ece6;
      color:var(--brand);
      border-color:rgba(122,36,50,.08);
    }
    .channel-tabs a.is-active{
      background:var(--brand-soft);
      color:var(--brand);
      border-color:rgba(122,36,50,.14);
      box-shadow:0 8px 18px rgba(122,36,50,.08);
    }
    main{display:block}
    .section-pad{
      padding:72px 0;
    }
    .topic-banner{
      padding:28px 0 0;
    }
    .banner-surface{
      position:relative;
      overflow:hidden;
      padding:30px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,246,242,.9));
      border:1px solid var(--line);
      border-radius:22px;
      box-shadow:var(--shadow-strong);
    }
    .banner-surface::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(90deg, rgba(122,36,50,.03) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, rgba(122,36,50,.02) 0 1px, transparent 1px 100%);
      background-size:36px 36px;
      opacity:.55;
      pointer-events:none;
    }
    .banner-inner{
      position:relative;
      z-index:1;
    }
    .eyebrow{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:10px;
      margin:0 0 14px;
      font-size:13px;
      color:var(--muted);
    }
    .eyebrow-tag{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      border:1px solid rgba(122,36,50,.12);
      background:var(--brand-soft);
      color:var(--brand);
      font-weight:700;
    }
    .eyebrow-text{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      background:#f6f0ea;
      color:#5f574f;
      border:1px solid rgba(140,127,114,.14);
    }
    .banner-title{
      margin:0;
      font-size:50px;
      line-height:1.16;
      letter-spacing:0;
      font-weight:800;
      color:var(--text);
      max-width:12em;
    }
    .banner-lead{
      margin:16px 0 0;
      max-width:40rem;
      font-size:18px;
      line-height:1.8;
      color:var(--muted);
    }
    .banner-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:22px;
    }
    .banner-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:20px;
    }
    .mini-chip{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      background:#f7f1eb;
      border:1px solid rgba(140,127,114,.14);
      color:#5b524a;
      font-size:13px;
      font-weight:700;
    }
    .status-grid{
      position:relative;
      z-index:1;
    }
    .status-card{
      padding:18px 18px 16px;
      border-radius:18px;
      background:var(--panel);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      margin-bottom:12px;
    }
    .status-card:last-child{margin-bottom:0}
    .status-label{
      display:block;
      font-size:12px;
      letter-spacing:0;
      color:var(--muted-2);
      margin-bottom:8px;
    }
    .status-value{
      display:block;
      font-size:22px;
      line-height:1.2;
      font-weight:800;
      color:var(--text);
      margin-bottom:6px;
    }
    .status-desc{
      display:block;
      font-size:13px;
      line-height:1.6;
      color:var(--muted);
    }
    .status-step{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:14px 15px;
      border-radius:16px;
      background:var(--panel-soft);
      border:1px solid rgba(122,36,50,.10);
      margin-top:12px;
    }
    .step-no{
      flex:0 0 auto;
      width:34px;
      height:34px;
      border-radius:10px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:14px;
      font-weight:800;
      color:var(--brand);
      background:var(--brand-soft);
      border:1px solid rgba(122,36,50,.12);
    }
    .step-copy strong{
      display:block;
      font-size:15px;
      line-height:1.3;
      margin-bottom:4px;
      color:var(--text);
    }
    .step-copy span{
      display:block;
      font-size:13px;
      line-height:1.6;
      color:var(--muted);
    }
    .section-head{
      margin-bottom:22px;
    }
    .section-head h2{
      margin:0;
      font-size:32px;
      line-height:1.22;
      letter-spacing:0;
      font-weight:800;
      color:var(--text);
    }
    .section-head p{
      margin:10px 0 0;
      max-width:48rem;
      font-size:16px;
      line-height:1.75;
      color:var(--muted);
    }
    .panel{
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:18px;
      box-shadow:var(--shadow);
    }
    .filter-panel{
      padding:20px;
    }
    .filter-panel h3{
      margin:0 0 14px;
      font-size:18px;
      line-height:1.35;
      font-weight:800;
      color:var(--text);
    }
    .filter-panel .subnote{
      margin:14px 0 0;
      padding:12px 14px;
      border-radius:14px;
      background:var(--panel-soft);
      border:1px solid rgba(122,36,50,.10);
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
    }
    .filter-pills{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .filter-pills a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:36px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid rgba(140,127,114,.16);
      background:#f7f1ec;
      color:#5f574f;
      font-size:13px;
      font-weight:700;
    }
    .filter-pills a:hover{
      background:#f1e5de;
      border-color:rgba(122,36,50,.16);
      color:var(--brand);
      transform:translateY(-1px);
    }
    .filter-pills a.is-active{
      background:var(--brand-soft);
      color:var(--brand);
      border-color:rgba(122,36,50,.16);
    }
    .flow-list{
      display:grid;
      gap:16px;
    }
    .flow-card{
      padding:18px;
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:18px;
      box-shadow:var(--shadow);
      transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
    }
    .flow-card:hover{
      transform:translateY(-2px);
      border-color:rgba(122,36,50,.16);
      box-shadow:var(--shadow-strong);
    }
    .flow-index{
      margin:0 0 8px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:42px;
      height:32px;
      padding:0 10px;
      border-radius:10px;
      background:var(--brand-soft);
      border:1px solid rgba(122,36,50,.12);
      color:var(--brand);
      font-size:14px;
      font-weight:800;
    }
    .flow-card h3{
      margin:0;
      font-size:23px;
      line-height:1.3;
      color:var(--text);
      font-weight:800;
    }
    .flow-card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .tag-row span{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      background:#f6f0ea;
      border:1px solid rgba(140,127,114,.12);
      color:#625850;
      font-size:12px;
      font-weight:700;
    }
    .flow-meta{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:10px;
      justify-content:space-between;
      height:100%;
      padding-left:14px;
      border-left:1px solid rgba(231,221,211,.7);
    }
    .flow-state{
      font-size:13px;
      color:var(--success);
      font-weight:700;
    }
    .flow-action{
      margin-top:auto;
    }
    .flow-action .button{
      min-height:42px;
      padding:0 16px;
    }
    .compare-module{
      padding:0 0 72px;
    }
    .compare-surface{
      padding:22px;
      border-radius:18px;
      background:rgba(255,255,255,.86);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius:16px;
      border:1px solid var(--line);
      background:#fff;
    }
    .compare-table th,
    .compare-table td{
      padding:14px 16px;
      text-align:left;
      border-bottom:1px solid var(--line);
      vertical-align:top;
      font-size:14px;
      line-height:1.65;
    }
    .compare-table th{
      background:#f7f1ec;
      font-size:13px;
      letter-spacing:0;
      color:#5f574f;
      font-weight:800;
    }
    .compare-table tr:last-child th,
    .compare-table tr:last-child td{
      border-bottom:none;
    }
    .compare-table td strong{
      color:var(--text);
    }
    .compare-stack{
      display:none;
      gap:12px;
    }
    .compare-card{
      padding:16px;
      border-radius:16px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .compare-card h3{
      margin:0 0 10px;
      font-size:18px;
      font-weight:800;
      color:var(--text);
    }
    .compare-card ul{
      margin:0;
      padding-left:18px;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .compare-card li + li{margin-top:6px}
    .consult-strip{
      padding:22px 0;
      background:linear-gradient(180deg, #fbf0f1 0%, #f8ebe7 100%);
      border-top:1px solid rgba(122,36,50,.08);
      border-bottom:1px solid rgba(122,36,50,.08);
    }
    .consult-strip h2{
      margin:0;
      font-size:28px;
      line-height:1.25;
      font-weight:800;
      color:var(--text);
    }
    .consult-strip p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
    }
    .consult-badges{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      flex-wrap:wrap;
      gap:10px;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:0 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(122,36,50,.12);
      color:var(--brand);
      font-size:13px;
      font-weight:700;
      box-shadow:0 8px 18px rgba(122,36,50,.06);
    }
    .form-section{
      padding:72px 0 60px;
    }
    .form-side{
      padding:20px;
    }
    .form-side h3{
      margin:0 0 12px;
      font-size:20px;
      line-height:1.35;
      font-weight:800;
    }
    .check-list{
      margin:0;
      padding:0;
      list-style:none;
    }
    .check-list li{
      position:relative;
      padding-left:22px;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .check-list li + li{margin-top:8px}
    .check-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:.72em;
      width:10px;
      height:10px;
      border-radius:3px;
      background:var(--brand-soft);
      border:1px solid rgba(122,36,50,.16);
      transform:translateY(-50%);
    }
    .form-side .subnote{
      margin-top:14px;
      padding:12px 14px;
      border-radius:14px;
      background:var(--panel-soft);
      border:1px solid rgba(122,36,50,.10);
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
    }
    .form-card{
      padding:22px;
    }
    .form-card .grid-x .cell{
      margin-bottom:14px;
    }
    .form-card label{
      display:block;
      color:var(--text);
      font-size:14px;
      font-weight:700;
      margin-bottom:8px;
    }
    .form-card input[type="text"],
    .form-card input[type="tel"],
    .form-card select,
    .form-card textarea{
      width:100%;
      margin:0;
      border-radius:12px;
      border:1px solid #d8cec4;
      background:#fff;
      color:var(--text);
      box-shadow:none;
      transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease,background-color .18s ease;
    }
    .form-card input[type="text"],
    .form-card input[type="tel"],
    .form-card select{
      height:48px;
      padding:0 14px;
    }
    .form-card textarea{
      min-height:132px;
      padding:14px;
      resize:vertical;
    }
    .form-card input:focus,
    .form-card select:focus,
    .form-card textarea:focus{
      border-color:rgba(122,36,50,.34);
      box-shadow:0 0 0 4px rgba(122,36,50,.08);
      outline:none;
    }
    .adult-check{
      display:flex;
      align-items:flex-start;
      gap:10px;
      margin-top:4px;
      padding:14px 14px 12px;
      border-radius:14px;
      background:var(--panel-soft);
      border:1px solid rgba(122,36,50,.10);
      font-size:14px;
      line-height:1.65;
      color:var(--text);
      font-weight:600;
    }
    .adult-check input{
      margin:4px 0 0;
      accent-color:var(--brand);
      width:18px;
      height:18px;
      flex:0 0 auto;
    }
    .form-note{
      margin-top:12px;
      font-size:13px;
      line-height:1.65;
      color:var(--muted);
    }
    .form-feedback{
      margin-top:12px;
      min-height:20px;
      font-size:13px;
      line-height:1.6;
      color:var(--brand);
    }
    .form-submit{
      width:100%;
      margin-top:8px;
    }
    .faq-section{
      padding:0 0 72px;
    }
    .accordion.faq-accordion{
      border:0;
      background:transparent;
    }
    .faq-accordion .accordion-item{
      border:1px solid var(--line);
      border-radius:16px;
      overflow:hidden;
      background:var(--panel);
      box-shadow:var(--shadow);
      margin-bottom:12px;
    }
    .faq-accordion .accordion-title{
      margin:0;
      padding:16px 18px;
      font-size:16px;
      line-height:1.5;
      font-weight:800;
      color:var(--text);
      background:#fff;
      border:none;
    }
    .faq-accordion .accordion-title:hover{
      background:#faf5f2;
      color:var(--brand);
    }
    .faq-accordion .accordion-item.is-active .accordion-title{
      background:var(--brand-soft);
      color:var(--brand);
    }
    .faq-accordion .accordion-content{
      padding:0 18px 18px;
      border:none;
      background:#fff;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .faq-accordion .accordion-content p{
      margin:14px 0 0;
    }
    .site-footer{
      background:#201b1a;
      color:#f4ede7;
      border-top:1px solid rgba(255,255,255,.08);
      margin-top:0;
    }
    .footer-grid{
      padding:38px 0;
    }
    .footer-brand{
      margin:0;
      font-size:22px;
      line-height:1.2;
      font-weight:800;
      color:#fff;
    }
    .footer-copy{
      margin:10px 0 0;
      max-width:50rem;
      color:rgba(244,237,231,.82);
      font-size:14px;
      line-height:1.75;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px 14px;
      align-items:center;
      margin-top:18px;
      color:rgba(244,237,231,.92);
      font-size:13px;
    }
    .footer-links a{
      color:inherit;
      border-bottom:1px solid transparent;
      padding-bottom:1px;
    }
    .footer-links a:hover{
      border-bottom-color:rgba(255,255,255,.7);
      color:#fff;
    }
    .footer-right{
      color:rgba(244,237,231,.86);
      font-size:14px;
      line-height:1.8;
    }
    .footer-right p{margin:0}
    .footer-right p + p{margin-top:12px}
    .tech{
      color:rgba(244,237,231,.64);
      font-size:13px;
    }
    .article-template{
      display:block;
    }
    .article-template .article-body{
      max-width:820px;
      margin:0 auto;
      font-size:17px;
      line-height:1.8;
    }
    .article-template h2{
      margin:28px 0 14px;
      padding-left:14px;
      border-left:4px solid var(--brand);
      font-size:28px;
      line-height:1.25;
    }
    .article-template h3{
      margin:22px 0 10px;
      font-size:22px;
      line-height:1.3;
      font-weight:800;
    }
    .article-template p{
      margin:0 0 16px;
    }
    .article-template .info-callout{
      margin:22px 0;
      padding:16px 18px;
      border-radius:14px;
      background:var(--panel-soft);
      border:1px solid rgba(122,36,50,.10);
    }
    .article-template table{
      width:100%;
      border-collapse:collapse;
      margin:18px 0 24px;
    }
    .article-template th,
    .article-template td{
      border:1px solid var(--line);
      padding:12px 14px;
      text-align:left;
      font-size:15px;
    }
    .article-template th{background:#f7f1ec}
    .article-template .related-list{
      display:grid;
      gap:12px;
    }
    .article-template .related-card{
      padding:14px 16px;
      border:1px solid var(--line);
      border-radius:14px;
      background:#fff;
      box-shadow:var(--shadow);
    }
    .article-template .related-card a{
      display:block;
      font-weight:800;
      margin-bottom:6px;
    }
    .article-template .related-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }
    .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

    @media print{
      .site-header,.channel-row,.consult-strip,.site-footer,.button{box-shadow:none!important}
      body{background:#fff}
    }
    @media (max-width: 63.99em){
      .banner-title{font-size:40px;max-width:none}
      .section-head h2{font-size:28px}
      .consult-strip h2{font-size:24px}
      .compare-table{display:none}
      .compare-stack{display:grid}
      .flow-meta{
        margin-top:14px;
        padding-left:0;
        border-left:0;
        border-top:1px solid rgba(231,221,211,.7);
        padding-top:14px;
      }
      .form-side{margin-bottom:16px}
    }
    @media (max-width: 39.99em){
      .container-wide{width:min(var(--container),calc(100% - 24px))}
      .top-row{padding:10px 0 12px}
      .brand-block{align-items:flex-start}
      .brand-mark{width:42px;height:42px;border-radius:12px}
      .brand-name{font-size:18px;white-space:normal}
      .brand-sub{font-size:12px}
      .header-cta,
      .search-box{width:100%}
      .search-box{flex-direction:column;align-items:stretch;padding:10px}
      .search-box input{width:100%;height:46px}
      .search-button{width:100%}
      .header-cta{justify-content:stretch}
      .header-cta .button{width:100%}
      .banner-surface{padding:20px}
      .banner-title{font-size:34px}
      .banner-lead{font-size:16px}
      .banner-actions .button{width:100%}
      .section-pad{padding:54px 0}
      .section-head h2{font-size:24px}
      .section-head p{font-size:15px}
      .flow-card{padding:16px}
      .flow-card h3{font-size:20px}
      .flow-card p{font-size:14px}
      .status-card{padding:16px}
      .consult-strip{padding:20px 0}
      .consult-badges{justify-content:flex-start;margin-top:14px}
      .form-card,.filter-panel{padding:16px}
      .form-card input[type="text"],
      .form-card input[type="tel"],
      .form-card select{height:46px}
      .faq-accordion .accordion-title{padding:14px 16px;font-size:15px}
      .faq-accordion .accordion-content{padding:0 16px 16px;font-size:14px}
      .footer-grid{padding:30px 0}
      .footer-brand{font-size:20px}
    }
