/* roulang page: index */
:root{
      --ink:#10251f;
      --ink-2:#182f28;
      --ink-soft:#28473d;
      --amber:#d8903a;
      --amber-dark:#b87324;
      --copper:#8a6542;
      --fog:#e7eee8;
      --paper:#f7f4ec;
      --paper-2:#fffaf0;
      --white:#ffffff;
      --text:#20332d;
      --muted:#65756f;
      --line:rgba(16,37,31,.13);
      --line-copper:rgba(138,101,66,.22);
      --shadow:0 14px 36px rgba(16,37,31,.09);
      --shadow-hover:0 20px 48px rgba(16,37,31,.14);
      --radius:16px;
      --radius-lg:26px;
      --pill:999px;
      --container:1200px;
      --ease:180ms ease;
    }
    *{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);
      line-height:1.78;
      background:
        linear-gradient(90deg, rgba(16,37,31,.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(16,37,31,.028) 1px, transparent 1px),
        radial-gradient(circle at 8% 0%, rgba(216,144,58,.16), transparent 30%),
        linear-gradient(180deg,var(--paper),#f3f0e7 44%,#eef5ef 100%);
      background-size:34px 34px,34px 34px,100% 100%,100% 100%;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color var(--ease),background var(--ease),border-color var(--ease),transform var(--ease),box-shadow var(--ease)}
    img{max-width:100%;height:auto;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    input,select,textarea{
      width:100%;
      border:1px solid var(--line);
      background:rgba(255,255,255,.92);
      border-radius:14px;
      min-height:50px;
      padding:0 18px;
      color:var(--text);
      outline:none;
      transition:border-color var(--ease),box-shadow var(--ease),background var(--ease);
    }
    input:focus,select:focus,textarea:focus{
      border-color:var(--amber);
      background:#fffdf7;
      box-shadow:0 0 0 4px rgba(216,144,58,.16);
    }
    .site-wrap{min-height:100vh}
    .rou-container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 22px;
    }
    .skip-link{
      position:absolute;
      left:-999px;
      top:8px;
      background:var(--ink);
      color:#fff;
      padding:10px 14px;
      border-radius:12px;
      z-index:1000;
    }
    .skip-link:focus{left:12px}
    .floating-header{
      position:fixed;
      top:20px;
      left:0;
      right:0;
      z-index:99;
      pointer-events:none;
    }
    .nav-shell{
      pointer-events:auto;
      max-width:var(--container);
      margin:0 auto;
      padding:0 22px;
    }
    .nav-pill{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:10px 12px 10px 18px;
      border:1px solid rgba(16,37,31,.12);
      border-radius:var(--pill);
      background:rgba(247,244,236,.88);
      backdrop-filter:blur(18px);
      box-shadow:0 12px 34px rgba(16,37,31,.11);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
      color:var(--ink);
      font-weight:800;
      letter-spacing:.01em;
    }
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:12px;
      background:linear-gradient(135deg,var(--ink),#25473b);
      border:1px solid rgba(216,144,58,.55);
      position:relative;
      box-shadow:inset 0 0 0 3px rgba(255,255,255,.06);
    }
    .brand-mark::before{
      content:"";
      position:absolute;
      width:12px;
      height:12px;
      top:5px;
      right:5px;
      border-top:2px solid var(--amber);
      border-right:2px solid var(--amber);
      border-radius:2px;
    }
    .brand-text{font-size:16px;white-space:nowrap}
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:4px;
      margin:0;
      list-style:none;
      flex:1;
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:0 14px;
      border-radius:var(--pill);
      font-size:14px;
      font-weight:650;
      color:var(--ink-soft);
      position:relative;
    }
    .nav-links a:hover{
      background:rgba(231,238,232,.92);
      color:var(--ink);
      transform:translateY(-1px);
    }
    .nav-links a.active{
      background:#fff7e7;
      color:var(--ink);
      box-shadow:inset 0 0 0 1px rgba(216,144,58,.22);
    }
    .nav-links a.active::after{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--amber);
      position:absolute;
      bottom:4px;
      left:50%;
      transform:translateX(-50%);
    }
    .nav-actions{display:flex;align-items:center;gap:8px}
    .mobile-toggle{
      display:none;
      width:42px;
      height:42px;
      border:0;
      border-radius:50%;
      background:var(--ink);
      color:#fff;
      align-items:center;
      justify-content:center;
    }
    .mobile-toggle span,
    .mobile-toggle span::before,
    .mobile-toggle span::after{
      display:block;
      width:18px;
      height:2px;
      background:currentColor;
      border-radius:2px;
      position:relative;
      transition:transform var(--ease),opacity var(--ease);
    }
    .mobile-toggle span::before,.mobile-toggle span::after{content:"";position:absolute;left:0}
    .mobile-toggle span::before{top:-6px}
    .mobile-toggle span::after{top:6px}
    .mobile-toggle.is-open span{background:transparent}
    .mobile-toggle.is-open span::before{top:0;transform:rotate(45deg);background:#fff}
    .mobile-toggle.is-open span::after{top:0;transform:rotate(-45deg);background:#fff}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:0 21px;
      border-radius:var(--pill);
      border:1px solid transparent;
      font-weight:750;
      font-size:15px;
      line-height:1;
      white-space:nowrap;
    }
    .btn-primary{
      background:var(--ink);
      color:#fff;
      box-shadow:0 10px 22px rgba(16,37,31,.18);
    }
    .btn-primary:hover,.btn-primary:focus{
      background:#1f3a31;
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 14px 30px rgba(16,37,31,.25);
    }
    .btn-amber{
      background:var(--amber);
      color:var(--ink);
      box-shadow:0 12px 24px rgba(216,144,58,.24);
    }
    .btn-amber:hover,.btn-amber:focus{
      background:#e5a250;
      color:var(--ink);
      transform:translateY(-2px);
      box-shadow:0 16px 32px rgba(216,144,58,.32);
    }
    .btn-outline{
      background:rgba(255,255,255,.35);
      color:var(--ink);
      border-color:rgba(16,37,31,.18);
    }
    .btn-outline:hover,.btn-outline:focus{
      background:var(--fog);
      color:var(--ink);
      transform:translateY(-2px);
      border-color:rgba(216,144,58,.38);
    }
    .btn:focus-visible,.nav-links a:focus-visible,.brand:focus-visible,.mobile-toggle:focus-visible{
      outline:3px solid rgba(216,144,58,.45);
      outline-offset:3px;
    }
    main{padding-top:0}
    section{position:relative}
    .hero{
      padding:132px 0 58px;
      min-height:720px;
      display:flex;
      align-items:center;
    }
    .hero-stage{
      border-radius:34px;
      overflow:hidden;
      border:1px solid rgba(16,37,31,.12);
      background:
        linear-gradient(135deg,rgba(16,37,31,.94),rgba(18,44,36,.92)),
        radial-gradient(circle at 78% 18%,rgba(216,144,58,.22),transparent 34%);
      box-shadow:0 24px 70px rgba(16,37,31,.20);
      color:#f9f3e5;
      position:relative;
    }
    .hero-stage::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(180deg,rgba(255,255,255,.03) 1px,transparent 1px);
      background-size:42px 42px;
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      z-index:1;
      padding:56px 52px 34px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:18px;
      padding:8px 13px;
      border:1px solid rgba(216,144,58,.42);
      border-radius:var(--pill);
      background:rgba(255,250,240,.08);
      color:#ffdda9;
      font-size:13px;
      font-weight:700;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 0 5px rgba(216,144,58,.13);
    }
    .hero h1{
      max-width:820px;
      margin:0 0 18px;
      color:#fffaf0;
      font-size:52px;
      line-height:1.18;
      font-weight:820;
      letter-spacing:.01em;
    }
    .hero-desc{
      max-width:760px;
      margin:0 0 28px;
      color:rgba(255,250,240,.82);
      font-size:18px;
      line-height:1.9;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:13px;
      align-items:center;
      margin-bottom:30px;
    }
    .hero-actions .btn-outline{
      color:#fffaf0;
      border-color:rgba(255,250,240,.30);
      background:rgba(255,255,255,.06);
    }
    .hero-actions .btn-outline:hover{background:rgba(255,250,240,.14)}
    .hero-panel{
      margin-top:20px;
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:20px;
      align-items:stretch;
    }
    .access-board{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .access-tile{
      min-height:128px;
      padding:16px;
      border-radius:18px;
      background:rgba(255,250,240,.10);
      border:1px solid rgba(255,250,240,.16);
      position:relative;
      overflow:hidden;
    }
    .access-tile::after{
      content:"";
      position:absolute;
      right:-18px;
      top:-18px;
      width:58px;
      height:58px;
      border-radius:18px;
      border:1px solid rgba(216,144,58,.38);
      transform:rotate(12deg);
    }
    .access-tile strong{
      display:block;
      color:#fffaf0;
      font-size:17px;
      margin:13px 0 6px;
      line-height:1.35;
    }
    .access-tile span{
      color:rgba(255,250,240,.68);
      font-size:13px;
      line-height:1.65;
    }
    .tile-no{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:26px;
      height:26px;
      border-radius:50%;
      background:rgba(216,144,58,.18);
      color:#ffd89f;
      border:1px solid rgba(216,144,58,.44);
      font-size:12px;
      font-weight:800;
    }
    .trust-strip{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
    }
    .trust-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:16px;
      border-radius:18px;
      background:rgba(255,250,240,.12);
      border:1px solid rgba(255,250,240,.16);
    }
    .trust-icon{
      flex:0 0 34px;
      width:34px;
      height:34px;
      border-radius:12px;
      background:rgba(216,144,58,.16);
      border:1px solid rgba(216,144,58,.34);
      position:relative;
    }
    .trust-icon::before{
      content:"";
      position:absolute;
      inset:9px;
      border-left:2px solid #ffd28d;
      border-bottom:2px solid #ffd28d;
      transform:rotate(-45deg);
    }
    .trust-item b{display:block;color:#fffaf0;font-size:14px;line-height:1.25}
    .trust-item small{display:block;color:rgba(255,250,240,.64);font-size:12px;margin-top:4px;line-height:1.55}
    .hero-bottom{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:14px;
      margin-top:26px;
      padding-top:22px;
      border-top:1px solid rgba(255,250,240,.15);
      color:rgba(255,250,240,.70);
      font-size:14px;
    }
    .hero-bottom span{display:inline-flex;align-items:center;gap:8px}
    .hero-bottom span::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--amber);
    }
    .section-pad{padding:76px 0}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:30px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:10px;
      color:var(--copper);
      font-size:13px;
      font-weight:800;
    }
    .section-kicker::before{
      content:"";
      width:28px;
      height:2px;
      border-radius:2px;
      background:var(--amber);
    }
    .section-title{
      margin:0;
      color:var(--ink);
      font-size:34px;
      line-height:1.25;
      font-weight:820;
    }
    .section-desc{
      max-width:620px;
      margin:10px 0 0;
      color:var(--muted);
      font-size:16px;
      line-height:1.85;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--ink);
      font-weight:800;
      border-bottom:1px solid rgba(216,144,58,.55);
    }
    .text-link:hover{color:var(--amber-dark);transform:translateX(2px)}
    .benefit-band{
      background:linear-gradient(180deg,rgba(255,255,255,.28),rgba(231,238,232,.34));
    }
    .benefit-layout{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:24px;
      align-items:stretch;
    }
    .feature-card,.compact-card,.review-card,.guide-card,.catalog-card,.news-panel,.form-panel{
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:rgba(255,255,255,.72);
      box-shadow:var(--shadow);
      transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease),background var(--ease);
    }
    .feature-card:hover,.compact-card:hover,.review-card:hover,.guide-card:hover,.catalog-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(216,144,58,.36);
      background:rgba(255,255,255,.9);
    }
    .feature-card{
      min-height:410px;
      padding:30px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(135deg,rgba(255,255,255,.86),rgba(247,244,236,.82)),
        repeating-linear-gradient(135deg,transparent 0 10px,rgba(138,101,66,.045) 10px 11px);
    }
    .feature-card::before{
      content:"";
      position:absolute;
      inset:0 0 auto 0;
      height:7px;
      background:linear-gradient(90deg,var(--amber),rgba(216,144,58,.25));
    }
    .card-label,.badge{
      display:inline-flex;
      align-items:center;
      width:max-content;
      gap:7px;
      padding:7px 11px;
      border-radius:var(--pill);
      background:#fff3d8;
      color:#70491f;
      border:1px solid rgba(216,144,58,.28);
      font-size:13px;
      font-weight:800;
      line-height:1;
    }
    .feature-card h3,.compact-card h3,.guide-card h3,.catalog-card h3{
      margin:16px 0 10px;
      color:var(--ink);
      font-size:22px;
      line-height:1.35;
      font-weight:800;
    }
    .feature-card p,.compact-card p,.guide-card p,.catalog-card p{
      margin:0;
      color:var(--muted);
      line-height:1.8;
    }
    .point-list{
      margin:22px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .point-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--text);
      font-size:15px;
    }
    .point-list li::before{
      content:"";
      flex:0 0 9px;
      width:9px;
      height:9px;
      margin-top:9px;
      border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 0 4px rgba(216,144,58,.14);
    }
    .compact-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
    }
    .compact-card{
      padding:22px;
      min-height:196px;
      position:relative;
      overflow:hidden;
    }
    .compact-card::after{
      content:attr(data-no);
      position:absolute;
      right:18px;
      top:14px;
      color:rgba(16,37,31,.10);
      font-weight:900;
      font-size:42px;
      line-height:1;
    }
    .qualification{
      background:linear-gradient(180deg,rgba(247,244,236,.34),rgba(255,255,255,.24));
    }
    .qualification-grid{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:24px;
    }
    .side-note{
      padding:28px;
      border-radius:var(--radius-lg);
      background:var(--ink);
      color:#fffaf0;
      box-shadow:0 18px 46px rgba(16,37,31,.18);
      border:1px solid rgba(216,144,58,.28);
    }
    .side-note h3{margin:0 0 12px;font-size:24px;line-height:1.35;color:#fffaf0}
    .side-note p{margin:0 0 18px;color:rgba(255,250,240,.72)}
    .side-note .mini-stat{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-top:20px;
    }
    .mini-stat div{
      padding:16px;
      border-radius:16px;
      background:rgba(255,250,240,.08);
      border:1px solid rgba(255,250,240,.14);
    }
    .mini-stat b{display:block;font-size:24px;color:#ffd89f;line-height:1.1}
    .mini-stat span{display:block;margin-top:6px;font-size:12px;color:rgba(255,250,240,.62)}
    .rule-list{
      display:grid;
      gap:14px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .rule-list li{
      display:grid;
      grid-template-columns:48px 1fr;
      gap:16px;
      padding:20px;
      border:1px solid var(--line);
      border-radius:18px;
      background:rgba(255,255,255,.68);
      box-shadow:0 8px 24px rgba(16,37,31,.06);
    }
    .rule-no{
      width:48px;
      height:48px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#fff4dd;
      border:1px solid rgba(216,144,58,.28);
      color:var(--amber-dark);
      font-weight:900;
    }
    .rule-list h3{margin:0 0 6px;color:var(--ink);font-size:18px}
    .rule-list p{margin:0;color:var(--muted);font-size:15px;line-height:1.75}
    .catalog-layout{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:20px;
    }
    .catalog-card{
      padding:24px;
      min-height:230px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
      overflow:hidden;
    }
    .catalog-card.large{grid-column:span 5;background:linear-gradient(135deg,#fffaf0,#e9f1ea)}
    .catalog-card.medium{grid-column:span 4}
    .catalog-card.small{grid-column:span 3}
    .catalog-meta{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-top:18px;
    }
    .meta-chip{
      display:inline-flex;
      padding:6px 10px;
      border-radius:var(--pill);
      background:rgba(231,238,232,.82);
      color:var(--ink-soft);
      font-size:12px;
      font-weight:750;
    }
    .reviews{
      background:
        linear-gradient(180deg,rgba(231,238,232,.38),rgba(247,244,236,.52));
    }
    .orbit{
      border-radius:var(--radius-lg);
      overflow:hidden;
    }
    .orbit-container{min-height:258px}
    .review-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      padding:6px;
    }
    .review-card{
      padding:24px;
      min-height:230px;
      background:#fffaf0;
    }
    .review-top{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
    }
    .avatar{
      width:42px;
      height:42px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--ink);
      color:#ffd89f;
      font-weight:900;
    }
    .review-top b{display:block;color:var(--ink);line-height:1.2}
    .review-top span{display:block;color:var(--muted);font-size:12px;margin-top:2px}
    .review-card p{margin:0;color:var(--text);line-height:1.85}
    .orbit-bullets button{
      width:10px;
      height:10px;
      background:rgba(16,37,31,.25);
      margin:.18rem;
    }
    .orbit-bullets button.is-active{background:var(--amber)}
    .orbit-previous,.orbit-next{
      background:rgba(16,37,31,.88);
      border-radius:50%;
      width:38px;
      height:38px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .protect-strip{
      padding:26px 0;
      background:var(--ink);
      color:#fffaf0;
    }
    .protect-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .protect-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:16px;
      border-radius:16px;
      background:rgba(255,250,240,.07);
      border:1px solid rgba(255,250,240,.12);
    }
    .line-icon{
      flex:0 0 32px;
      width:32px;
      height:32px;
      border-radius:12px;
      border:1px solid rgba(216,144,58,.45);
      position:relative;
    }
    .line-icon::before{
      content:"";
      position:absolute;
      left:9px;
      top:9px;
      width:12px;
      height:8px;
      border-left:2px solid #ffd89f;
      border-bottom:2px solid #ffd89f;
      transform:rotate(-45deg);
    }
    .protect-item b{display:block;font-size:15px;color:#fffaf0}
    .protect-item span{display:block;margin-top:3px;color:rgba(255,250,240,.62);font-size:12px;line-height:1.55}
    .guide-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .guide-card{
      padding:24px;
      min-height:250px;
      position:relative;
    }
    .guide-step{
      width:42px;
      height:42px;
      border-radius:15px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--ink);
      color:#ffd89f;
      font-weight:900;
      box-shadow:0 10px 20px rgba(16,37,31,.13);
    }
    .news-section{background:rgba(255,255,255,.28)}
    .news-layout{
      display:grid;
      grid-template-columns:1.3fr .7fr;
      gap:24px;
    }
    .news-panel{
      padding:24px;
      background:rgba(255,255,255,.76);
    }
    .news-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:0;
    }
    .news-list li+li{border-top:1px solid var(--line)}
    .news-list a{
      display:grid;
      grid-template-columns:86px 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px 0;
    }
    .news-list time{
      color:var(--copper);
      font-size:13px;
      font-weight:800;
    }
    .news-list strong{
      display:block;
      color:var(--ink);
      font-size:17px;
      line-height:1.35;
    }
    .news-list span{
      display:block;
      margin-top:5px;
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
    }
    .news-list em{
      font-style:normal;
      color:var(--amber-dark);
      font-weight:800;
    }
    .news-list a:hover strong{color:var(--amber-dark)}
    .insight-card{
      padding:24px;
      border-radius:var(--radius);
      background:linear-gradient(145deg,var(--ink),#203c33);
      color:#fffaf0;
      min-height:100%;
      border:1px solid rgba(216,144,58,.26);
      box-shadow:0 18px 44px rgba(16,37,31,.16);
    }
    .insight-card blockquote{
      margin:18px 0;
      padding:0 0 0 18px;
      border-left:4px solid var(--amber);
      color:rgba(255,250,240,.86);
      font-size:18px;
      line-height:1.75;
    }
    .insight-card p{color:rgba(255,250,240,.68);margin:0}
    .calendar-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .calendar-card{
      padding:22px;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:rgba(255,255,255,.72);
      box-shadow:var(--shadow);
    }
    .date-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:58px;
      height:34px;
      padding:0 12px;
      border-radius:var(--pill);
      background:var(--ink);
      color:#ffd89f;
      font-weight:900;
      font-size:13px;
      margin-bottom:14px;
    }
    .calendar-card h3{margin:0 0 8px;color:var(--ink);font-size:19px}
    .calendar-card p{margin:0;color:var(--muted);font-size:15px;line-height:1.75}
    .cta-section{padding:82px 0}
    .cta-panel{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:28px;
      align-items:center;
      padding:38px;
      border-radius:30px;
      background:
        linear-gradient(135deg,rgba(16,37,31,.98),rgba(28,58,48,.96)),
        repeating-linear-gradient(135deg,transparent 0 12px,rgba(216,144,58,.06) 12px 13px);
      color:#fffaf0;
      box-shadow:0 24px 64px rgba(16,37,31,.22);
      border:1px solid rgba(216,144,58,.28);
    }
    .cta-panel h2{margin:0 0 12px;color:#fffaf0;font-size:32px;line-height:1.3}
    .cta-panel p{margin:0;color:rgba(255,250,240,.72);line-height:1.85}
    .preference-form{
      display:grid;
      grid-template-columns:1fr 1fr auto;
      gap:12px;
      padding:16px;
      border-radius:22px;
      background:rgba(255,250,240,.08);
      border:1px solid rgba(255,250,240,.14);
    }
    .preference-form input,.preference-form select{
      border-color:rgba(255,250,240,.18);
      background:rgba(255,250,240,.92);
    }
    .faq-section{background:linear-gradient(180deg,rgba(231,238,232,.42),rgba(247,244,236,.68))}
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      background:rgba(255,255,255,.76);
      box-shadow:0 8px 22px rgba(16,37,31,.05);
    }
    .accordion-title{
      border:0!important;
      color:var(--ink);
      font-size:17px;
      font-weight:800;
      padding:19px 54px 19px 22px;
      line-height:1.45;
      background:rgba(255,255,255,.62);
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#fff7e7;
      color:var(--ink);
    }
    .accordion-title::before{
      right:22px;
      color:var(--amber-dark);
      font-size:22px;
      margin-top:-12px;
    }
    .accordion-content{
      border:0!important;
      padding:0 22px 22px 22px;
      background:rgba(255,255,255,.76);
      color:var(--muted);
      line-height:1.85;
    }
    .accordion-content p{
      margin:0;
      padding-left:14px;
      border-left:4px solid var(--amber);
    }
    .site-footer{
      background:var(--ink);
      color:rgba(255,250,240,.72);
      padding:56px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr .9fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fffaf0;
      font-weight:850;
      font-size:18px;
      margin-bottom:12px;
    }
    .footer-brand .brand-mark{width:32px;height:32px}
    .footer-grid p{margin:0;color:rgba(255,250,240,.62);line-height:1.8}
    .footer-title{
      color:#fffaf0;
      font-weight:800;
      margin:0 0 14px;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,250,240,.68);
      font-size:14px;
    }
    .footer-links a:hover{color:#ffd89f}
    .footer-bottom{
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid rgba(255,250,240,.12);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      font-size:13px;
      color:rgba(255,250,240,.54);
    }
    @media (max-width:1024px){
      .hero h1{font-size:42px}
      .hero-panel,.benefit-layout,.qualification-grid,.news-layout,.cta-panel{grid-template-columns:1fr}
      .access-board{grid-template-columns:repeat(2,1fr)}
      .protect-grid,.guide-grid{grid-template-columns:repeat(2,1fr)}
      .catalog-card.large,.catalog-card.medium,.catalog-card.small{grid-column:span 6}
      .review-grid{grid-template-columns:1fr}
      .preference-form{grid-template-columns:1fr 1fr}
      .preference-form .btn{grid-column:1 / -1}
      .nav-links{gap:0}
      .nav-links a{padding:0 10px}
    }
    @media (max-width:760px){
      .floating-header{top:12px}
      .nav-pill{
        border-radius:24px;
        align-items:flex-start;
        flex-wrap:wrap;
        padding:10px;
      }
      .brand-text{font-size:14px}
      .mobile-toggle{display:flex;margin-left:auto}
      .nav-actions{margin-left:auto}
      .nav-actions>.btn{display:none}
      .nav-links{
        display:none;
        order:5;
        flex:0 0 100%;
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:8px;
        padding:12px 4px 4px;
      }
      .nav-links.is-open{display:flex}
      .nav-links a{
        min-height:46px;
        justify-content:center;
        background:rgba(255,255,255,.54);
      }
      .hero{padding:110px 0 42px;min-height:auto}
      .hero-inner{padding:38px 22px 24px}
      .hero h1{font-size:34px;line-height:1.22}
      .hero-desc{font-size:16px}
      .hero-actions{align-items:stretch}
      .hero-actions .btn{width:100%}
      .access-board,.trust-strip,.compact-grid,.protect-grid,.guide-grid,.calendar-grid,.footer-grid{grid-template-columns:1fr}
      .section-pad{padding:54px 0}
      .section-head{display:block}
      .section-title{font-size:27px}
      .feature-card{min-height:auto;padding:24px}
      .qualification-grid{gap:18px}
      .rule-list li{grid-template-columns:42px 1fr;padding:18px}
      .rule-no{width:42px;height:42px}
      .catalog-layout{grid-template-columns:1fr}
      .catalog-card.large,.catalog-card.medium,.catalog-card.small{grid-column:auto}
      .news-list a{grid-template-columns:1fr;gap:6px}
      .news-list em{display:none}
      .cta-panel{padding:26px 20px;border-radius:24px}
      .cta-panel h2{font-size:26px}
      .preference-form{grid-template-columns:1fr;padding:12px}
      .footer-bottom{display:block}
      .footer-bottom span{display:block;margin-top:8px}
    }
    @media (max-width:520px){
      .rou-container,.nav-shell{padding:0 14px}
      .hero-stage{border-radius:24px}
      .hero h1{font-size:31px}
      .access-tile{min-height:116px}
      .btn{width:100%;padding:0 16px}
      .side-note .mini-stat{grid-template-columns:1fr}
      .orbit-previous,.orbit-next{display:none}
    }
    @media (prefers-reduced-motion:reduce){
      *,*::before,*::after{scroll-behavior:auto!important;transition:none!important;animation:none!important}
    }

/* roulang page: category2 */
:root {
      --rou-ink: #10251f;
      --rou-ink-2: #111c18;
      --rou-accent: #d8903a;
      --rou-accent-dark: #b87428;
      --rou-copper: #8a6542;
      --rou-mist: #e7eee8;
      --rou-paper: #f7f4ec;
      --rou-card: #fffdf7;
      --rou-info: #6c8d88;
      --rou-text: #20342d;
      --rou-muted: #66766f;
      --rou-line: rgba(16, 37, 31, 0.13);
      --rou-line-strong: rgba(138, 101, 66, 0.28);
      --rou-shadow: 0 14px 36px rgba(16, 37, 31, 0.08);
      --rou-shadow-hover: 0 20px 48px rgba(16, 37, 31, 0.13);
      --rou-radius: 16px;
      --rou-radius-sm: 12px;
      --rou-pill: 999px;
      --rou-speed: 220ms;
      --rou-max: 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(--rou-text);
      line-height: 1.78;
      background:
        linear-gradient(rgba(16, 37, 31, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 37, 31, 0.035) 1px, transparent 1px),
        var(--rou-paper);
      background-size: 28px 28px;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--rou-speed) ease, background-color var(--rou-speed) ease, border-color var(--rou-speed) ease, transform var(--rou-speed) ease;
    }

    a:hover,
    a:focus {
      color: var(--rou-accent-dark);
    }

    button,
    input,
    select {
      font: inherit;
    }

    button,
    .button {
      transition: transform var(--rou-speed) ease, box-shadow var(--rou-speed) ease, background-color var(--rou-speed) ease, border-color var(--rou-speed) ease;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible {
      outline: 3px solid rgba(216, 144, 58, 0.42);
      outline-offset: 3px;
    }

    img {
      max-width: 100%;
      display: block;
    }

    h1,
    h2,
    h3,
    h4,
    p {
      margin-top: 0;
    }

    h1,
    h2,
    h3 {
      color: var(--rou-ink);
      line-height: 1.18;
      letter-spacing: 0;
    }

    p {
      color: var(--rou-muted);
    }

    .rou-container {
      width: min(calc(100% - 36px), var(--rou-max));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      z-index: 30;
      top: 18px;
      left: 0;
      right: 0;
      pointer-events: none;
    }

    .pill-nav {
      pointer-events: auto;
      width: min(calc(100% - 32px), var(--rou-max));
      margin: 0 auto;
      padding: 10px 12px;
      border: 1px solid rgba(16, 37, 31, 0.12);
      border-radius: var(--rou-pill);
      background: rgba(247, 244, 236, 0.9);
      backdrop-filter: blur(14px);
      box-shadow: 0 12px 32px rgba(16, 37, 31, 0.10);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      font-weight: 800;
      color: var(--rou-ink);
      line-height: 1.2;
    }

    .brand-mark {
      width: 28px;
      height: 34px;
      border-radius: 8px;
      border: 2px solid var(--rou-accent);
      background:
        linear-gradient(135deg, rgba(216, 144, 58, 0.24), transparent 44%),
        var(--rou-ink);
      box-shadow: inset 0 0 0 1px rgba(255, 253, 247, 0.24);
      position: relative;
      flex: 0 0 auto;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      right: 5px;
      top: 5px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--rou-accent);
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin: 0;
      list-style: none;
      flex: 1;
    }

    .nav-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 15px;
      border-radius: var(--rou-pill);
      color: var(--rou-text);
      font-weight: 650;
      font-size: 14px;
      white-space: nowrap;
    }

    .nav-links a:hover {
      background: rgba(231, 238, 232, 0.9);
      color: var(--rou-ink);
      transform: translateY(-1px);
    }

    .nav-links a.is-active {
      background: rgba(216, 144, 58, 0.16);
      color: var(--rou-ink);
    }

    .nav-links a.is-active::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 6px;
      width: 18px;
      height: 3px;
      border-radius: var(--rou-pill);
      background: var(--rou-accent);
      transform: translateX(-50%);
    }

    .nav-cta,
    .rou-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 20px;
      border-radius: var(--rou-pill);
      border: 1px solid transparent;
      background: var(--rou-ink);
      color: #fffdf7;
      font-weight: 750;
      line-height: 1.2;
      box-shadow: 0 10px 22px rgba(16, 37, 31, 0.16);
      cursor: pointer;
      white-space: nowrap;
    }

    .nav-cta:hover,
    .rou-button:hover {
      transform: translateY(-2px);
      background: var(--rou-accent);
      color: var(--rou-ink);
      box-shadow: 0 16px 30px rgba(138, 101, 66, 0.20);
    }

    .rou-button.secondary {
      background: transparent;
      color: var(--rou-ink);
      border-color: rgba(16, 37, 31, 0.22);
      box-shadow: none;
    }

    .rou-button.secondary:hover {
      background: var(--rou-mist);
      border-color: rgba(16, 37, 31, 0.34);
      color: var(--rou-ink);
      box-shadow: 0 12px 24px rgba(16, 37, 31, 0.08);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: var(--rou-ink);
      color: #fffdf7;
      position: relative;
      cursor: pointer;
    }

    .mobile-toggle span,
    .mobile-toggle::before,
    .mobile-toggle::after {
      content: "";
      position: absolute;
      left: 12px;
      width: 20px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      transition: transform var(--rou-speed) ease, opacity var(--rou-speed) ease;
    }

    .mobile-toggle span {
      top: 21px;
    }

    .mobile-toggle::before {
      top: 15px;
    }

    .mobile-toggle::after {
      top: 27px;
    }

    .mobile-toggle.is-open span {
      opacity: 0;
    }

    .mobile-toggle.is-open::before {
      transform: translateY(6px) rotate(45deg);
    }

    .mobile-toggle.is-open::after {
      transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-panel {
      display: none;
    }

    .hero {
      padding: 132px 0 42px;
      background:
        radial-gradient(circle at 12% 18%, rgba(216, 144, 58, 0.13), transparent 30%),
        linear-gradient(135deg, rgba(231, 238, 232, 0.88), rgba(247, 244, 236, 0.96));
      border-bottom: 1px solid var(--rou-line);
    }

    .hero-band {
      min-height: 346px;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 26px 0;
    }

    .eyebrow-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 30px;
      padding: 5px 12px;
      border-radius: var(--rou-pill);
      border: 1px solid rgba(138, 101, 66, 0.25);
      background: rgba(255, 253, 247, 0.72);
      color: var(--rou-copper);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.2;
    }

    .badge::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--rou-accent);
    }

    .hero h1 {
      max-width: 720px;
      margin-bottom: 18px;
      font-size: clamp(32px, 4.2vw, 50px);
      font-weight: 820;
    }

    .hero-lede {
      max-width: 680px;
      margin-bottom: 24px;
      font-size: 17px;
      color: #43564e;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .qualification-note {
      margin-top: 18px;
      padding: 12px 16px;
      border-left: 4px solid var(--rou-accent);
      border-radius: 0 var(--rou-radius-sm) var(--rou-radius-sm) 0;
      background: rgba(255, 253, 247, 0.68);
      color: var(--rou-muted);
      font-size: 14px;
    }

    .access-matrix {
      border: 1px solid var(--rou-line-strong);
      border-radius: 22px;
      padding: 18px;
      background: rgba(255, 253, 247, 0.82);
      box-shadow: var(--rou-shadow);
      position: relative;
      overflow: hidden;
    }

    .access-matrix::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(135deg, rgba(16, 37, 31, 0.035) 0 1px, transparent 1px 14px);
      pointer-events: none;
    }

    .matrix-head,
    .matrix-grid,
    .matrix-foot {
      position: relative;
      z-index: 1;
    }

    .matrix-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      padding-bottom: 14px;
      margin-bottom: 14px;
      border-bottom: 1px dashed rgba(16, 37, 31, 0.18);
    }

    .matrix-head strong {
      color: var(--rou-ink);
      font-size: 18px;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 11px;
      border-radius: var(--rou-pill);
      background: rgba(231, 238, 232, 0.85);
      color: var(--rou-ink);
      font-size: 13px;
      font-weight: 750;
      white-space: nowrap;
    }

    .status-pill::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #5e8f75;
    }

    .matrix-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .mini-entry {
      min-height: 126px;
      padding: 15px;
      border: 1px solid var(--rou-line);
      border-radius: 14px;
      background: var(--rou-card);
      box-shadow: 0 8px 20px rgba(16, 37, 31, 0.05);
      transition: transform var(--rou-speed) ease, border-color var(--rou-speed) ease, box-shadow var(--rou-speed) ease;
    }

    .mini-entry:hover {
      transform: translateY(-3px);
      border-color: rgba(216, 144, 58, 0.55);
      box-shadow: var(--rou-shadow);
    }

    .entry-code {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 11px;
      color: var(--rou-copper);
      font-size: 13px;
      font-weight: 800;
    }

    .entry-code span:last-child {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(216, 144, 58, 0.18);
      color: var(--rou-ink);
      font-size: 12px;
    }

    .mini-entry h2,
    .mini-entry h3 {
      margin-bottom: 6px;
      font-size: 17px;
      font-weight: 760;
    }

    .mini-entry p {
      margin: 0;
      font-size: 14px;
      line-height: 1.62;
    }

    .matrix-foot {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 15px;
    }

    main {
      background: linear-gradient(180deg, rgba(247, 244, 236, 0.74), rgba(231, 238, 232, 0.54));
    }

    .section {
      padding: 76px 0;
    }

    .section.compact {
      padding: 54px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.42fr);
      gap: 24px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-kicker {
      margin-bottom: 8px;
      color: var(--rou-copper);
      font-weight: 800;
      font-size: 14px;
    }

    .section-head h2 {
      margin-bottom: 0;
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 790;
    }

    .section-head p {
      margin-bottom: 0;
      font-size: 16px;
    }

    .filter-console {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      padding: 16px;
      border: 1px solid var(--rou-line);
      border-radius: 20px;
      background: rgba(255, 253, 247, 0.78);
      box-shadow: var(--rou-shadow);
    }

    .filter-label {
      margin-right: 4px;
      color: var(--rou-ink);
      font-weight: 790;
    }

    .filter-chip {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: var(--rou-pill);
      border: 1px solid rgba(16, 37, 31, 0.12);
      background: #fffdf7;
      color: var(--rou-muted);
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
    }

    .filter-chip:hover {
      border-color: rgba(216, 144, 58, 0.48);
      color: var(--rou-ink);
      transform: translateY(-1px);
    }

    .filter-chip.is-current {
      background: var(--rou-accent);
      color: var(--rou-ink);
      border-color: transparent;
    }

    .benefit-strip {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .benefit-item {
      padding: 14px 15px;
      border-radius: 14px;
      border: 1px solid rgba(16, 37, 31, 0.11);
      background: rgba(231, 238, 232, 0.62);
      color: var(--rou-ink);
      font-weight: 730;
      font-size: 14px;
    }

    .benefit-item span {
      display: block;
      color: var(--rou-muted);
      font-weight: 500;
      margin-top: 4px;
      line-height: 1.55;
    }

    .process-wrap {
      display: grid;
      grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
      gap: 28px;
      align-items: start;
    }

    .process-panel {
      position: sticky;
      top: 110px;
      padding: 24px;
      border-radius: 20px;
      border: 1px solid var(--rou-line-strong);
      background: var(--rou-ink);
      box-shadow: var(--rou-shadow);
    }

    .process-panel h2 {
      color: #fffdf7;
      font-size: 28px;
      margin-bottom: 12px;
    }

    .process-panel p {
      color: rgba(255, 253, 247, 0.72);
      margin-bottom: 20px;
    }

    .process-panel .badge {
      background: rgba(216, 144, 58, 0.18);
      color: #fff2df;
      border-color: rgba(216, 144, 58, 0.38);
    }

    .step-list {
      display: grid;
      gap: 16px;
      position: relative;
    }

    .step-card {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 16px;
      padding: 20px;
      border-radius: 18px;
      border: 1px solid var(--rou-line);
      background: var(--rou-card);
      box-shadow: var(--rou-shadow);
      transition: transform var(--rou-speed) ease, border-color var(--rou-speed) ease, box-shadow var(--rou-speed) ease;
    }

    .step-card:hover {
      transform: translateY(-3px);
      border-color: rgba(216, 144, 58, 0.48);
      box-shadow: var(--rou-shadow-hover);
    }

    .step-num {
      width: 48px;
      height: 48px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: rgba(216, 144, 58, 0.18);
      border: 1px solid rgba(216, 144, 58, 0.34);
      color: var(--rou-ink);
      font-weight: 850;
    }

    .step-card h3 {
      margin-bottom: 7px;
      font-size: 20px;
      font-weight: 770;
    }

    .step-card p {
      margin-bottom: 12px;
      line-height: 1.7;
    }

    .inline-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0;
      list-style: none;
    }

    .inline-list li {
      padding: 5px 10px;
      border-radius: var(--rou-pill);
      background: rgba(231, 238, 232, 0.78);
      color: var(--rou-ink);
      font-size: 13px;
      font-weight: 700;
    }

    .compare-shell {
      overflow: hidden;
      border: 1px solid var(--rou-line-strong);
      border-radius: 20px;
      background: var(--rou-card);
      box-shadow: var(--rou-shadow);
    }

    .compare-table {
      width: 100%;
      margin: 0;
      border-collapse: separate;
      border-spacing: 0;
    }

    .compare-table thead {
      background: var(--rou-ink);
      color: #fffdf7;
    }

    .compare-table th,
    .compare-table td {
      padding: 18px 20px;
      border-bottom: 1px solid var(--rou-line);
      text-align: left;
      vertical-align: top;
      line-height: 1.62;
    }

    .compare-table th {
      color: #fffdf7;
      font-size: 15px;
      font-weight: 800;
    }

    .compare-table td:first-child {
      color: var(--rou-ink);
      font-weight: 800;
    }

    .compare-table tr:last-child td {
      border-bottom: 0;
    }

    .mark-good,
    .mark-info {
      display: inline-flex;
      align-items: center;
      padding: 5px 10px;
      border-radius: var(--rou-pill);
      font-size: 13px;
      font-weight: 750;
    }

    .mark-good {
      background: rgba(94, 143, 117, 0.16);
      color: #315e49;
    }

    .mark-info {
      background: rgba(108, 141, 136, 0.16);
      color: #38635e;
    }

    .plan-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
      gap: 24px;
    }

    .feature-card,
    .request-card {
      border: 1px solid var(--rou-line);
      border-radius: 20px;
      background: var(--rou-card);
      box-shadow: var(--rou-shadow);
    }

    .feature-card {
      padding: 24px;
      min-height: 100%;
    }

    .feature-card h2 {
      font-size: 29px;
      margin-bottom: 12px;
    }

    .feature-list {
      display: grid;
      gap: 12px;
      margin: 22px 0 0;
      list-style: none;
    }

    .feature-list li {
      position: relative;
      padding: 13px 14px 13px 38px;
      border-radius: 14px;
      background: rgba(231, 238, 232, 0.66);
      color: var(--rou-text);
      font-weight: 650;
    }

    .feature-list li::before {
      content: "";
      position: absolute;
      left: 15px;
      top: 20px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--rou-accent);
    }

    .request-card {
      padding: 22px;
      background:
        linear-gradient(135deg, rgba(216, 144, 58, 0.08), transparent 44%),
        var(--rou-card);
    }

    .request-card h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .access-form {
      display: grid;
      gap: 13px;
      margin-top: 18px;
    }

    .field-group label {
      display: block;
      margin-bottom: 7px;
      color: var(--rou-ink);
      font-size: 14px;
      font-weight: 760;
    }

    .field-group input,
    .field-group select {
      width: 100%;
      height: 50px;
      margin: 0;
      border: 1px solid rgba(16, 37, 31, 0.18);
      border-radius: var(--rou-pill);
      background: #fffdf7;
      color: var(--rou-text);
      padding: 0 16px;
      box-shadow: none;
    }

    .field-group input:focus,
    .field-group select:focus {
      border-color: var(--rou-accent);
      background: rgba(231, 238, 232, 0.36);
      box-shadow: 0 0 0 4px rgba(216, 144, 58, 0.12);
    }

    .form-note {
      margin: 0;
      color: var(--rou-muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .cta-panel {
      border-radius: 24px;
      border: 1px solid rgba(216, 144, 58, 0.34);
      background:
        linear-gradient(135deg, rgba(216, 144, 58, 0.18), transparent 42%),
        var(--rou-ink);
      box-shadow: var(--rou-shadow-hover);
      padding: 34px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
    }

    .cta-panel h2 {
      color: #fffdf7;
      margin-bottom: 8px;
      font-size: clamp(25px, 3vw, 34px);
    }

    .cta-panel p {
      margin-bottom: 0;
      color: rgba(255, 253, 247, 0.74);
    }

    .cta-panel .rou-button {
      background: var(--rou-accent);
      color: var(--rou-ink);
    }

    .cta-panel .rou-button:hover {
      background: #f0ad55;
    }

    .faq-wrap {
      max-width: 900px;
      margin: 0 auto;
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid var(--rou-line);
      border-radius: 16px;
      overflow: hidden;
      background: var(--rou-card);
      box-shadow: 0 8px 22px rgba(16, 37, 31, 0.06);
    }

    .accordion-title {
      min-height: 54px;
      border: 0;
      color: var(--rou-ink);
      font-weight: 760;
      font-size: 16px;
      padding: 17px 52px 17px 20px;
      background: var(--rou-card);
    }

    .accordion-title::before {
      color: var(--rou-accent);
      font-size: 22px;
      margin-top: -12px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: rgba(231, 238, 232, 0.66);
      color: var(--rou-ink);
    }

    .accordion-content {
      border: 0;
      border-top: 1px solid var(--rou-line);
      background: #fffdf7;
      padding: 18px 20px 18px 24px;
      position: relative;
    }

    .accordion-content::before {
      content: "";
      position: absolute;
      left: 0;
      top: 16px;
      bottom: 16px;
      width: 4px;
      border-radius: 0 var(--rou-pill) var(--rou-pill) 0;
      background: var(--rou-accent);
    }

    .accordion-content p {
      margin-bottom: 0;
    }

    .site-footer {
      background: var(--rou-ink-2);
      color: rgba(255, 253, 247, 0.78);
      padding: 58px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.7fr 0.7fr;
      gap: 34px;
      margin-bottom: 34px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: #fffdf7;
      font-size: 18px;
      font-weight: 800;
    }

    .site-footer p {
      max-width: 460px;
      color: rgba(255, 253, 247, 0.68);
      margin-bottom: 0;
    }

    .footer-title {
      color: #fffdf7;
      font-size: 16px;
      margin-bottom: 13px;
      font-weight: 800;
    }

    .footer-links {
      margin: 0;
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255, 253, 247, 0.72);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--rou-accent);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 253, 247, 0.12);
      color: rgba(255, 253, 247, 0.56);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .pill-nav {
        gap: 10px;
      }

      .nav-links a {
        padding: 0 10px;
      }

      .hero-band,
      .process-wrap,
      .plan-grid {
        grid-template-columns: 1fr;
      }

      .process-panel {
        position: static;
      }

      .benefit-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-head {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .site-header {
        top: 12px;
      }

      .pill-nav {
        border-radius: 24px;
        padding: 9px 10px;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .mobile-toggle {
        display: inline-flex;
      }

      .mobile-panel {
        pointer-events: auto;
        width: min(calc(100% - 32px), var(--rou-max));
        margin: 10px auto 0;
        padding: 12px;
        border: 1px solid rgba(16, 37, 31, 0.13);
        border-radius: 18px;
        background: rgba(255, 253, 247, 0.96);
        box-shadow: var(--rou-shadow);
      }

      .mobile-panel.is-open {
        display: block;
      }

      .mobile-panel a {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 13px;
        color: var(--rou-ink);
        font-weight: 720;
      }

      .mobile-panel a:hover,
      .mobile-panel a.is-active {
        background: rgba(216, 144, 58, 0.16);
      }

      .mobile-panel .rou-button {
        width: 100%;
        margin-top: 8px;
      }

      .hero {
        padding-top: 116px;
      }

      .hero-copy {
        padding: 8px 0 0;
      }

      .matrix-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .section {
        padding: 56px 0;
      }

      .section.compact {
        padding: 42px 0;
      }

      .compare-shell {
        border: 0;
        background: transparent;
        box-shadow: none;
      }

      .compare-table,
      .compare-table thead,
      .compare-table tbody,
      .compare-table tr,
      .compare-table th,
      .compare-table td {
        display: block;
        width: 100%;
      }

      .compare-table thead {
        display: none;
      }

      .compare-table tr {
        margin-bottom: 14px;
        border: 1px solid var(--rou-line);
        border-radius: 16px;
        background: var(--rou-card);
        box-shadow: var(--rou-shadow);
        overflow: hidden;
      }

      .compare-table td {
        border-bottom: 1px solid var(--rou-line);
        padding: 14px 16px;
      }

      .compare-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        color: var(--rou-copper);
        font-size: 13px;
        font-weight: 800;
      }

      .cta-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      .rou-container {
        width: min(calc(100% - 24px), var(--rou-max));
      }

      .brand {
        font-size: 14px;
      }

      .brand-mark {
        width: 25px;
        height: 31px;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero-lede {
        font-size: 16px;
      }

      .hero-actions,
      .matrix-head,
      .cta-panel {
        align-items: stretch;
      }

      .hero-actions .rou-button,
      .hero-actions .secondary {
        width: 100%;
      }

      .matrix-grid,
      .benefit-strip {
        grid-template-columns: 1fr;
      }

      .step-card {
        grid-template-columns: 1fr;
      }

      .step-num {
        width: 44px;
        height: 44px;
      }

      .filter-console {
        align-items: stretch;
      }

      .filter-label {
        width: 100%;
      }

      .filter-chip {
        justify-content: center;
      }

      .cta-panel {
        padding: 24px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

/* roulang page: category1 */
:root {
      --rou-ink: #10251f;
      --rou-ink-2: #111c18;
      --rou-amber: #d8903a;
      --rou-amber-dark: #b87425;
      --rou-copper: #8a6542;
      --rou-mist: #e7eee8;
      --rou-paper: #f7f4ec;
      --rou-card: #fffdf7;
      --rou-text: #20342d;
      --rou-muted: #66736d;
      --rou-line: rgba(16, 37, 31, 0.14);
      --rou-line-strong: rgba(138, 101, 66, 0.32);
      --rou-shadow: 0 14px 34px rgba(16, 37, 31, 0.09);
      --rou-shadow-hover: 0 20px 46px rgba(16, 37, 31, 0.14);
      --rou-radius: 16px;
      --rou-radius-sm: 12px;
      --rou-nav-height: 72px;
      --rou-speed: 220ms;
    }

    * {
      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(--rou-text);
      line-height: 1.78;
      background:
        linear-gradient(rgba(16, 37, 31, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 37, 31, 0.035) 1px, transparent 1px),
        var(--rou-paper);
      background-size: 34px 34px;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--rou-speed) ease, background-color var(--rou-speed) ease, border-color var(--rou-speed) ease, transform var(--rou-speed) ease, box-shadow var(--rou-speed) ease;
    }

    a:hover,
    a:focus {
      color: var(--rou-ink);
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button,
    .button {
      transition: transform var(--rou-speed) ease, box-shadow var(--rou-speed) ease, background-color var(--rou-speed) ease, border-color var(--rou-speed) ease;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 3px solid rgba(216, 144, 58, 0.42);
      outline-offset: 3px;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .rou-container {
      width: min(100% - 32px, 1200px);
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      z-index: 50;
      top: 18px;
      left: 0;
      right: 0;
      pointer-events: none;
    }

    .nav-shell {
      pointer-events: auto;
      min-height: var(--rou-nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 12px 10px 20px;
      border: 1px solid rgba(16, 37, 31, 0.12);
      border-radius: 999px;
      background: rgba(247, 244, 236, 0.9);
      box-shadow: 0 16px 38px rgba(16, 37, 31, 0.12);
      backdrop-filter: blur(14px);
    }

    .brand-link,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--rou-ink);
      white-space: nowrap;
    }

    .brand-mark {
      width: 28px;
      height: 34px;
      border-radius: 8px;
      display: inline-block;
      position: relative;
      flex: 0 0 auto;
      background: linear-gradient(145deg, var(--rou-ink), #24443a);
      box-shadow: inset 0 0 0 2px rgba(216, 144, 58, 0.42), 0 8px 18px rgba(16, 37, 31, 0.18);
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      top: 7px;
      right: 6px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--rou-amber);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      margin: 0;
      list-style: none;
    }

    .nav-menu a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 15px;
      border-radius: 999px;
      color: #31443c;
      font-size: 15px;
      font-weight: 700;
    }

    .nav-menu a:hover {
      background: rgba(231, 238, 232, 0.9);
      color: var(--rou-ink);
    }

    .nav-menu a.is-active {
      color: var(--rou-ink);
      background: rgba(216, 144, 58, 0.16);
    }

    .nav-menu a.is-active::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 5px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      transform: translateX(-50%);
      background: var(--rou-amber);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      background: var(--rou-ink);
      color: #fff8e8;
      font-weight: 800;
      box-shadow: 0 10px 22px rgba(16, 37, 31, 0.18);
      white-space: nowrap;
    }

    .nav-cta:hover {
      color: var(--rou-ink);
      background: var(--rou-amber);
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(138, 101, 66, 0.22);
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 999px;
      background: var(--rou-ink);
      color: #fff8e8;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      background: currentColor;
      border-radius: 99px;
    }

    .page-hero {
      padding: 124px 0 46px;
      background:
        radial-gradient(circle at 18% 22%, rgba(216, 144, 58, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(231, 238, 232, 0.96), rgba(247, 244, 236, 0.92));
      border-bottom: 1px solid var(--rou-line);
    }

    .hero-panel {
      min-height: 318px;
      display: grid;
      align-items: center;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 32px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 14px;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid rgba(216, 144, 58, 0.38);
      background: rgba(255, 253, 247, 0.78);
      color: var(--rou-copper);
      font-size: 14px;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--rou-amber);
      box-shadow: 0 0 0 5px rgba(216, 144, 58, 0.16);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 760px;
      color: var(--rou-ink);
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.18;
      font-weight: 800;
      margin-bottom: 18px;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 680px;
      margin-bottom: 24px;
      color: #43554e;
      font-size: 18px;
      line-height: 1.86;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }

    .rou-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      line-height: 1.2;
      cursor: pointer;
    }

    .rou-btn.primary {
      background: var(--rou-ink);
      color: #fff8e8;
      box-shadow: 0 12px 24px rgba(16, 37, 31, 0.18);
    }

    .rou-btn.primary:hover {
      background: var(--rou-amber);
      color: var(--rou-ink);
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(138, 101, 66, 0.24);
    }

    .rou-btn.secondary {
      color: var(--rou-ink);
      border-color: rgba(16, 37, 31, 0.18);
      background: rgba(255, 253, 247, 0.72);
    }

    .rou-btn.secondary:hover {
      background: var(--rou-mist);
      border-color: rgba(16, 37, 31, 0.28);
      transform: translateY(-2px);
    }

    .entry-board {
      position: relative;
      display: grid;
      gap: 14px;
      padding: 18px;
      border-radius: 22px;
      border: 1px solid var(--rou-line-strong);
      background:
        linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(231, 238, 232, 0.88));
      box-shadow: var(--rou-shadow);
    }

    .entry-board::before {
      content: "";
      position: absolute;
      inset: 13px;
      border: 1px dashed rgba(138, 101, 66, 0.22);
      border-radius: 18px;
      pointer-events: none;
    }

    .board-card {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 14px;
      padding: 15px;
      border-radius: 14px;
      border: 1px solid rgba(16, 37, 31, 0.12);
      background: rgba(255, 253, 247, 0.88);
    }

    .board-no {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--rou-ink);
      color: #fff8e8;
      font-weight: 800;
    }

    .board-card strong {
      display: block;
      color: var(--rou-ink);
      font-size: 17px;
      line-height: 1.35;
    }

    .board-card span {
      color: var(--rou-muted);
      font-size: 14px;
    }

    .status-pill,
    .tag-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 3px 10px;
      border-radius: 999px;
      color: var(--rou-copper);
      background: rgba(216, 144, 58, 0.14);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .section {
      padding: 78px 0;
    }

    .section.compact {
      padding: 54px 0;
    }

    .section-heading {
      display: grid;
      grid-template-columns: 0.75fr 1fr;
      gap: 28px;
      align-items: end;
      margin-bottom: 26px;
    }

    .section-kicker {
      color: var(--rou-copper);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .section-heading h2 {
      color: var(--rou-ink);
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.28;
      font-weight: 800;
      margin-bottom: 0;
      letter-spacing: 0;
    }

    .section-heading p {
      color: var(--rou-muted);
      font-size: 17px;
      margin-bottom: 0;
    }

    .filter-console {
      margin-top: -28px;
      position: relative;
      z-index: 2;
    }

    .filter-inner {
      padding: 16px;
      border-radius: 20px;
      border: 1px solid rgba(16, 37, 31, 0.12);
      background: rgba(255, 253, 247, 0.94);
      box-shadow: var(--rou-shadow);
    }

    .filter-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 0 4px 12px;
      color: var(--rou-muted);
      font-size: 14px;
      font-weight: 700;
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .filter-tags a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 15px;
      border-radius: 999px;
      border: 1px solid rgba(16, 37, 31, 0.12);
      background: #fffdf7;
      color: #385047;
      font-weight: 800;
      font-size: 14px;
    }

    .filter-tags a:hover,
    .filter-tags a.is-active {
      color: var(--rou-ink);
      border-color: rgba(216, 144, 58, 0.58);
      background: rgba(216, 144, 58, 0.18);
      transform: translateY(-1px);
    }

    .featured-layout {
      display: grid;
      grid-template-columns: 0.94fr 1.06fr;
      gap: 24px;
      align-items: stretch;
    }

    .access-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 22px;
      border-radius: var(--rou-radius);
      border: 1px solid var(--rou-line);
      background: var(--rou-card);
      box-shadow: var(--rou-shadow);
      overflow: hidden;
      transition: transform var(--rou-speed) ease, box-shadow var(--rou-speed) ease, border-color var(--rou-speed) ease;
    }

    .access-card::before {
      content: "";
      position: absolute;
      inset: 0 auto auto 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--rou-amber), rgba(216, 144, 58, 0.18));
    }

    .access-card:hover {
      transform: translateY(-4px);
      border-color: rgba(216, 144, 58, 0.42);
      box-shadow: var(--rou-shadow-hover);
    }

    .access-card.major {
      min-height: 458px;
      background:
        linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(231, 238, 232, 0.72));
    }

    .card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 20px;
    }

    .card-index {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: var(--rou-ink);
      color: #fff8e8;
      font-weight: 900;
      box-shadow: inset 0 0 0 2px rgba(216, 144, 58, 0.36);
    }

    .access-card h3 {
      color: var(--rou-ink);
      font-size: 22px;
      line-height: 1.35;
      font-weight: 800;
      margin-bottom: 10px;
      letter-spacing: 0;
    }

    .access-card p {
      color: var(--rou-muted);
      margin-bottom: 18px;
    }

    .point-list {
      margin: 0 0 22px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .point-list li {
      position: relative;
      padding-left: 18px;
      color: #334840;
      line-height: 1.65;
    }

    .point-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.72em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--rou-amber);
    }

    .card-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding-top: 16px;
      border-top: 1px solid rgba(16, 37, 31, 0.1);
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      color: var(--rou-ink);
      font-weight: 900;
    }

    .text-link::after {
      content: "›";
      margin-left: 7px;
      color: var(--rou-amber);
      font-size: 22px;
      line-height: 1;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .mini-grid .access-card {
      min-height: 220px;
      padding: 20px;
    }

    .mini-grid .access-card h3 {
      font-size: 19px;
    }

    .flow-band {
      background: rgba(231, 238, 232, 0.72);
      border-top: 1px solid var(--rou-line);
      border-bottom: 1px solid var(--rou-line);
    }

    .flow-line {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      counter-reset: flow;
    }

    .flow-step {
      position: relative;
      padding: 22px;
      border-radius: var(--rou-radius);
      border: 1px solid rgba(16, 37, 31, 0.12);
      background: rgba(255, 253, 247, 0.84);
    }

    .flow-step::before {
      counter-increment: flow;
      content: counter(flow);
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      border-radius: 50%;
      background: var(--rou-amber);
      color: var(--rou-ink);
      font-weight: 900;
    }

    .flow-step h3 {
      color: var(--rou-ink);
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .flow-step p {
      color: var(--rou-muted);
      margin-bottom: 0;
      font-size: 15px;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
    }

    .proof-panel {
      padding: 26px;
      border-radius: 20px;
      border: 1px solid rgba(16, 37, 31, 0.12);
      background: var(--rou-ink);
      color: #fff8e8;
      box-shadow: var(--rou-shadow);
    }

    .proof-panel h2 {
      color: #fff8e8;
      font-size: 30px;
      line-height: 1.3;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .proof-panel p {
      color: rgba(255, 248, 232, 0.78);
    }

    .proof-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    .metric {
      padding: 16px;
      border-radius: 14px;
      background: rgba(255, 248, 232, 0.08);
      border: 1px solid rgba(255, 248, 232, 0.14);
    }

    .metric strong {
      display: block;
      color: var(--rou-amber);
      font-size: 26px;
      line-height: 1.1;
      font-weight: 900;
      margin-bottom: 6px;
    }

    .metric span {
      color: rgba(255, 248, 232, 0.78);
      font-size: 14px;
    }

    .notice-stack {
      display: grid;
      gap: 14px;
    }

    .notice-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      padding: 20px;
      border-radius: var(--rou-radius);
      border: 1px solid var(--rou-line);
      background: rgba(255, 253, 247, 0.9);
    }

    .notice-icon {
      width: 38px;
      height: 38px;
      border-radius: 13px;
      background: rgba(216, 144, 58, 0.18);
      position: relative;
    }

    .notice-icon::after {
      content: "";
      position: absolute;
      inset: 11px;
      border-radius: 50%;
      border: 2px solid var(--rou-amber);
    }

    .notice-item h3 {
      color: var(--rou-ink);
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .notice-item p {
      color: var(--rou-muted);
      margin-bottom: 0;
      font-size: 15px;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: 1fr 0.88fr;
      gap: 28px;
      align-items: center;
      padding: 34px;
      border-radius: 24px;
      color: #fff8e8;
      background:
        linear-gradient(135deg, rgba(216, 144, 58, 0.18), transparent 34%),
        var(--rou-ink);
      box-shadow: 0 20px 48px rgba(16, 37, 31, 0.18);
      overflow: hidden;
      position: relative;
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px dashed rgba(255, 248, 232, 0.18);
      border-radius: 18px;
      pointer-events: none;
    }

    .cta-panel > * {
      position: relative;
      z-index: 1;
    }

    .cta-panel h2 {
      color: #fff8e8;
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.28;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .cta-panel p {
      color: rgba(255, 248, 232, 0.78);
      margin-bottom: 22px;
      font-size: 17px;
    }

    .preference-form {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 18px;
      border-radius: 18px;
      background: rgba(255, 248, 232, 0.08);
      border: 1px solid rgba(255, 248, 232, 0.14);
    }

    .preference-form label {
      color: rgba(255, 248, 232, 0.82);
      font-weight: 800;
      font-size: 14px;
      margin: 0;
    }

    .preference-form input,
    .preference-form select {
      height: 50px;
      margin: 0;
      border-radius: 999px;
      border: 1px solid rgba(255, 248, 232, 0.24);
      background: rgba(255, 253, 247, 0.94);
      color: var(--rou-ink);
      box-shadow: none;
      padding: 0 16px;
    }

    .preference-form input:focus,
    .preference-form select:focus {
      border-color: var(--rou-amber);
      background: #fffdf7;
      box-shadow: 0 0 0 4px rgba(216, 144, 58, 0.2);
    }

    .preference-form .rou-btn {
      width: 100%;
      background: var(--rou-amber);
      color: var(--rou-ink);
    }

    .preference-form .rou-btn:hover {
      background: #efad58;
      transform: translateY(-2px);
    }

    .faq-wrap {
      max-width: 920px;
      margin: 0 auto;
    }

    .accordion {
      border: 0;
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border-radius: var(--rou-radius-sm);
      border: 1px solid var(--rou-line);
      background: var(--rou-card);
      box-shadow: 0 8px 22px rgba(16, 37, 31, 0.06);
      overflow: hidden;
    }

    .accordion-title {
      min-height: 54px;
      padding: 18px 50px 18px 22px;
      border: 0;
      color: var(--rou-ink);
      font-size: 17px;
      font-weight: 800;
      line-height: 1.45;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--rou-ink);
      background: rgba(231, 238, 232, 0.64);
    }

    .accordion-title::before {
      right: 20px;
      color: var(--rou-amber);
      font-size: 22px;
      margin-top: -12px;
    }

    .accordion-content {
      border: 0;
      padding: 0 22px 20px;
      background: transparent;
      color: var(--rou-muted);
      line-height: 1.8;
    }

    .accordion-content p {
      margin-bottom: 0;
      padding-left: 14px;
      border-left: 4px solid var(--rou-amber);
    }

    .site-footer {
      padding: 56px 0 28px;
      background: var(--rou-ink-2);
      color: rgba(255, 248, 232, 0.78);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.8fr 0.9fr;
      gap: 36px;
      margin-bottom: 32px;
    }

    .footer-brand {
      color: #fff8e8;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .site-footer p {
      max-width: 430px;
      color: rgba(255, 248, 232, 0.72);
      margin-bottom: 0;
    }

    .footer-title {
      color: #fff8e8;
      font-size: 16px;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-links {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255, 248, 232, 0.72);
      font-weight: 650;
    }

    .footer-links a:hover {
      color: var(--rou-amber);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 248, 232, 0.12);
      color: rgba(255, 248, 232, 0.58);
      font-size: 14px;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
      }
    }

    @media screen and (max-width: 1024px) {
      .nav-shell {
        border-radius: 24px;
        align-items: flex-start;
        flex-wrap: wrap;
      }

      .menu-toggle {
        display: block;
      }

      .nav-menu,
      .nav-cta {
        display: none;
      }

      .nav-shell.is-open .nav-menu {
        order: 3;
        width: 100%;
        display: grid;
        gap: 8px;
        padding: 10px 0 2px;
      }

      .nav-shell.is-open .nav-menu a {
        width: 100%;
        justify-content: center;
        min-height: 46px;
      }

      .nav-shell.is-open .nav-cta {
        order: 4;
        width: 100%;
        display: inline-flex;
        margin-top: 6px;
      }

      .hero-panel,
      .featured-layout,
      .proof-grid,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .section-heading {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .flow-line {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media screen and (max-width: 768px) {
      .rou-container {
        width: min(100% - 24px, 1200px);
      }

      .site-header {
        top: 10px;
      }

      .nav-shell {
        padding: 9px 10px 9px 14px;
      }

      .brand-link {
        max-width: calc(100% - 58px);
        white-space: normal;
        line-height: 1.25;
        font-size: 15px;
      }

      .page-hero {
        padding: 108px 0 38px;
      }

      h1 {
        font-size: 34px;
      }

      .hero-copy {
        font-size: 16px;
      }

      .board-card {
        grid-template-columns: auto 1fr;
      }

      .board-card .status-pill {
        grid-column: 2;
        justify-self: start;
      }

      .section {
        padding: 58px 0;
      }

      .section.compact {
        padding: 44px 0;
      }

      .mini-grid,
      .flow-line,
      .proof-metrics,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .access-card.major {
        min-height: auto;
      }

      .card-footer,
      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .cta-panel {
        padding: 24px;
      }
    }

    @media screen and (max-width: 520px) {
      .hero-actions,
      .cta-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .rou-btn,
      .nav-cta {
        width: 100%;
      }

      .filter-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
      }

      .filter-tags a {
        width: 100%;
        justify-content: center;
      }

      .entry-board {
        padding: 14px;
      }

      .access-card,
      .mini-grid .access-card,
      .flow-step,
      .notice-item {
        padding: 18px;
      }

      .accordion-title {
        font-size: 16px;
        padding-left: 18px;
      }
    }
