/* roulang page: index */
:root{
      --ink:#14211d;
      --muted:#65736c;
      --soft:#f6f2ea;
      --soft-2:#ece8dc;
      --panel:#fffdf8;
      --primary:#173d35;
      --primary-2:#23594d;
      --amber:#c9852f;
      --amber-2:#e0b36c;
      --copper:#8e634a;
      --sage:#dfe8df;
      --line:rgba(31,61,52,.14);
      --line-strong:rgba(31,61,52,.28);
      --shadow:0 18px 48px rgba(25,49,42,.12);
      --shadow-hover:0 24px 64px rgba(25,49,42,.18);
      --radius-xl:34px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-pill:999px;
      --container:1200px;
      --ease:180ms ease-out;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 12% 2%, rgba(201,133,47,.16), transparent 34%),
        radial-gradient(circle at 82% 10%, rgba(35,89,77,.14), transparent 30%),
        linear-gradient(180deg,#faf7ef 0%,#f3efe6 52%,#f8f5ee 100%);
      line-height:1.78;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    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}
    input,select,textarea{
      width:100%;
      border:1px solid var(--line);
      border-radius:16px;
      min-height:50px;
      padding:12px 15px;
      color:var(--ink);
      background:#fffefa;
      outline:none;
      transition:border-color var(--ease),box-shadow var(--ease),background var(--ease);
    }
    textarea{min-height:112px;resize:vertical}
    input:focus,select:focus,textarea:focus{
      border-color:rgba(35,89,77,.65);
      box-shadow:0 0 0 4px rgba(35,89,77,.12);
      background:#fff;
    }
    a:focus-visible,button:focus-visible,.button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(201,133,47,.45);
      outline-offset:3px;
    }
    .grid-container{max-width:var(--container)}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(250,247,239,.9);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
      box-shadow:0 8px 26px rgba(20,33,29,.05);
    }
    .nav-wrap{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:900;
      background:
        linear-gradient(135deg,var(--primary),var(--primary-2) 54%,var(--amber));
      box-shadow:0 12px 26px rgba(23,61,53,.22);
      flex:0 0 auto;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.18;
      min-width:0;
    }
    .brand-title{
      max-width:310px;
      font-size:15px;
      font-weight:800;
      letter-spacing:.01em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{font-size:12px;color:var(--muted);margin-top:2px}
    .seg-nav{
      display:flex;
      align-items:center;
      gap:8px;
      padding:7px;
      border:1px solid var(--line);
      border-radius:var(--radius-pill);
      background:rgba(255,253,248,.72);
      overflow-x:auto;
      scrollbar-width:none;
      max-width:100%;
    }
    .seg-nav::-webkit-scrollbar{display:none}
    .seg-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:8px 16px;
      border-radius:var(--radius-pill);
      font-size:14px;
      font-weight:700;
      color:#36524a;
      white-space:nowrap;
    }
    .seg-nav a:hover{background:rgba(35,89,77,.09);color:var(--primary)}
    .seg-nav a.active{
      background:var(--primary);
      color:#fffdf6;
      box-shadow:0 10px 22px rgba(23,61,53,.16);
    }
    .nav-cta{
      flex:0 0 auto;
      min-height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:10px 18px;
      border-radius:var(--radius-pill);
      color:#fff;
      font-size:14px;
      font-weight:800;
      background:linear-gradient(135deg,var(--primary),var(--amber));
      box-shadow:0 14px 28px rgba(142,99,74,.2);
    }
    .nav-cta:hover{color:#fff;transform:translateY(-2px);box-shadow:var(--shadow-hover)}
    .hero{
      position:relative;
      padding:92px 0 74px;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:24px 0 auto 0;
      height:360px;
      background:
        linear-gradient(90deg,rgba(23,61,53,.06) 1px,transparent 1px),
        linear-gradient(180deg,rgba(23,61,53,.06) 1px,transparent 1px);
      background-size:46px 46px;
      mask-image:linear-gradient(180deg,rgba(0,0,0,.55),transparent);
      pointer-events:none;
    }
    .eyebrow,.tag,.mini-badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:var(--radius-pill);
      font-weight:800;
      letter-spacing:.02em;
      line-height:1.2;
    }
    .eyebrow{
      padding:9px 13px;
      font-size:13px;
      color:var(--primary);
      border:1px solid rgba(35,89,77,.18);
      background:rgba(223,232,223,.68);
    }
    .eyebrow:before,.status-dot:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 0 5px rgba(201,133,47,.15);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      max-width:760px;
      margin:18px 0 18px;
      font-size:clamp(32px,5vw,56px);
      line-height:1.12;
      font-weight:900;
      letter-spacing:-.04em;
    }
    .hero-lead{
      max-width:660px;
      color:#4f625b;
      font-size:18px;
      line-height:1.88;
      margin-bottom:28px;
    }
    .hero-actions,.cta-actions{display:flex;flex-wrap:wrap;gap:12px}
    .button.primary-btn,.button.secondary-btn{
      min-height:50px;
      border-radius:var(--radius-pill);
      padding:13px 22px;
      font-weight:850;
      border:1px solid transparent;
      margin:0;
    }
    .button.primary-btn{
      color:#fff;
      background:linear-gradient(135deg,var(--primary) 0%,var(--primary-2) 52%,var(--amber) 100%);
      box-shadow:0 16px 34px rgba(23,61,53,.18);
    }
    .button.primary-btn:hover,.button.primary-btn:focus{color:#fff;transform:translateY(-2px);box-shadow:var(--shadow-hover);background:linear-gradient(155deg,var(--primary),var(--amber))}
    .button.secondary-btn{
      color:var(--primary);
      background:rgba(255,253,248,.88);
      border-color:var(--line-strong);
    }
    .button.secondary-btn:hover,.button.secondary-btn:focus{background:rgba(223,232,223,.72);color:var(--primary);transform:translateY(-2px)}
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:24px;
    }
    .mini-badge{
      padding:9px 12px;
      font-size:13px;
      color:#40554e;
      border:1px solid var(--line);
      background:rgba(255,253,248,.66);
    }
    .visual-panel{
      position:relative;
      padding:26px;
      border-radius:var(--radius-xl);
      border:1px solid rgba(23,61,53,.16);
      background:
        radial-gradient(circle at 18% 12%,rgba(224,179,108,.28),transparent 36%),
        linear-gradient(145deg,rgba(255,253,248,.96),rgba(238,232,218,.9));
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .visual-panel:after{
      content:"";
      position:absolute;
      width:220px;height:220px;
      right:-70px;top:-70px;
      border-radius:50%;
      border:34px solid rgba(35,89,77,.08);
    }
    .risk-meter{
      position:relative;
      z-index:1;
      min-height:390px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:18px;
    }
    .meter-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding-bottom:16px;
      border-bottom:1px solid var(--line);
    }
    .meter-title{font-size:18px;font-weight:900;margin:0}
    .risk-score{
      width:82px;height:82px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fffdf6;
      font-size:26px;
      font-weight:900;
      background:conic-gradient(var(--amber) 0 64%,rgba(23,61,53,.17) 64% 100%);
      box-shadow:inset 0 0 0 10px rgba(255,253,248,.92);
    }
    .tag-cloud{display:flex;flex-wrap:wrap;gap:10px}
    .tag{
      padding:9px 12px;
      font-size:12px;
      color:#284b43;
      background:rgba(223,232,223,.74);
      border:1px solid rgba(35,89,77,.12);
    }
    .tag.warn{color:#754b16;background:rgba(224,179,108,.22);border-color:rgba(201,133,47,.24)}
    .process-line{display:grid;gap:12px}
    .process-node{
      display:flex;
      align-items:center;
      gap:12px;
      padding:13px;
      border-radius:18px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(23,61,53,.1);
    }
    .node-num{
      width:32px;height:32px;
      border-radius:12px;
      display:grid;
      place-items:center;
      font-weight:900;
      color:#fff;
      background:var(--primary);
      flex:0 0 auto;
    }
    .node-text strong{display:block;font-size:14px;line-height:1.3}
    .node-text span{display:block;color:var(--muted);font-size:12px;margin-top:2px}
    section{padding:82px 0}
    .section-head{
      max-width:760px;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      margin-bottom:12px;
      color:var(--amber);
      font-size:13px;
      font-weight:900;
      letter-spacing:.08em;
    }
    h2{
      font-size:clamp(28px,3.2vw,38px);
      line-height:1.22;
      font-weight:900;
      letter-spacing:-.03em;
      margin-bottom:12px;
    }
    .section-desc{
      color:var(--muted);
      font-size:17px;
      max-width:760px;
    }
    .pain-layout{align-items:stretch}
    .feature-card,.pain-card,.case-card,.topic-card,.contact-card,.faq-wrap,.result-card{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:rgba(255,253,248,.8);
      box-shadow:0 12px 34px rgba(25,49,42,.08);
      transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease),background var(--ease);
    }
    .feature-card:hover,.pain-card:hover,.case-card:hover,.topic-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(201,133,47,.28);
      background:#fffdf8;
    }
    .pain-card{padding:24px;height:100%}
    .pain-card.major{
      min-height:100%;
      padding:30px;
      color:#fffdf6;
      background:
        linear-gradient(145deg,rgba(23,61,53,.96),rgba(35,89,77,.88)),
        radial-gradient(circle at right top,rgba(201,133,47,.38),transparent 40%);
    }
    .pain-card.major p,.pain-card.major .risk-list li{color:rgba(255,253,246,.78)}
    .card-icon{
      width:46px;height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:900;
      background:linear-gradient(135deg,var(--primary),var(--amber));
      margin-bottom:18px;
    }
    .pain-card h3,.feature-card h3,.case-card h3,.topic-card h3{font-size:21px;font-weight:900;margin-bottom:8px}
    .pain-card p,.feature-card p,.case-card p,.topic-card p{color:var(--muted);margin-bottom:0}
    .risk-list{list-style:none;margin:18px 0 0;padding:0;display:grid;gap:11px}
    .risk-list li{
      position:relative;
      padding-left:24px;
      color:#4f625b;
    }
    .risk-list li:before{
      content:"";
      position:absolute;
      left:0;top:.75em;
      width:9px;height:9px;
      border-radius:50%;
      background:var(--amber);
    }
    .solution{
      background:linear-gradient(180deg,rgba(223,232,223,.38),rgba(255,253,248,.1));
    }
    .step-card{
      position:relative;
      padding:24px;
      border-radius:26px;
      border:1px solid var(--line);
      background:#fffdf8;
      min-height:230px;
      box-shadow:0 12px 34px rgba(20,33,29,.07);
    }
    .step-card:before{
      content:"";
      position:absolute;
      inset:0 0 auto;
      height:5px;
      border-radius:26px 26px 0 0;
      background:linear-gradient(90deg,var(--primary),var(--amber));
    }
    .step-badge{
      width:42px;height:42px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:900;
      background:var(--primary);
      margin-bottom:18px;
    }
    .step-card h3{font-size:20px;font-weight:900;margin-bottom:8px}
    .step-card p{color:var(--muted);margin:0}
    .result-card{
      padding:30px;
      height:100%;
      background:
        linear-gradient(145deg,#fffdf8,rgba(223,232,223,.38));
    }
    .result-num{
      display:block;
      font-size:42px;
      line-height:1;
      font-weight:950;
      letter-spacing:-.04em;
      color:var(--primary);
      margin-bottom:8px;
    }
    .progress{
      height:10px;
      border-radius:999px;
      background:rgba(23,61,53,.09);
      overflow:hidden;
      margin-top:18px;
    }
    .progress span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--amber));
    }
    .topics{
      padding-top:0;
    }
    .topic-card{
      padding:26px;
      height:100%;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:20px;
    }
    .topic-top{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
    .topic-label{
      display:inline-flex;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(224,179,108,.2);
      color:#765019;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .link-more{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:42px;
      color:var(--primary);
      font-weight:900;
    }
    .link-more:hover{color:var(--amber);transform:translateX(3px)}
    .evidence-panel{
      padding:34px;
      border-radius:var(--radius-xl);
      color:#fffdf6;
      background:
        radial-gradient(circle at 12% 22%,rgba(224,179,108,.28),transparent 28%),
        linear-gradient(135deg,#173d35,#102721);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .evidence-panel p{color:rgba(255,253,246,.78)}
    .evidence-list{
      display:grid;
      gap:14px;
      margin:24px 0 0;
      padding:0;
      list-style:none;
    }
    .evidence-list li{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:15px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .evidence-list b{color:#fff}
    .status-dot{display:flex;align-items:center;margin-top:7px}
    .case-card{padding:26px;height:100%}
    .case-meta{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:16px;
    }
    .avatar-group{display:flex}
    .avatar{
      width:34px;height:34px;
      border-radius:50%;
      display:grid;
      place-items:center;
      margin-left:-8px;
      border:2px solid #fffdf8;
      color:#fff;
      font-size:12px;
      font-weight:900;
      background:linear-gradient(135deg,var(--primary-2),var(--amber));
    }
    .avatar:first-child{margin-left:0}
    .quote{
      padding-left:16px;
      border-left:3px solid var(--amber);
      color:#40554e;
    }
    .faq-section{background:rgba(255,253,248,.44)}
    .faq-wrap{padding:14px}
    .accordion{background:transparent;margin:0}
    .accordion-item{border-bottom:1px solid var(--line)}
    .accordion-item:last-child{border-bottom:0}
    .accordion-title{
      border:0!important;
      background:transparent!important;
      color:var(--ink)!important;
      font-size:17px;
      font-weight:900;
      padding:20px 44px 20px 14px;
      line-height:1.45;
    }
    .accordion-title:hover{color:var(--primary)!important;background:rgba(223,232,223,.35)!important}
    .accordion-title:before{color:var(--amber);font-size:22px;margin-top:-12px}
    .accordion-content{
      border:0!important;
      background:transparent!important;
      color:var(--muted);
      padding:0 18px 22px;
      line-height:1.85;
    }
    .contact-card{
      padding:30px;
      height:100%;
      background:#fffdf8;
    }
    .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .form-grid .full{grid-column:1/-1}
    label{
      color:#344c44;
      font-weight:800;
      font-size:14px;
      margin-bottom:6px;
    }
    .help-text{color:var(--muted);font-size:13px;margin-top:10px}
    .cta-band{
      padding:0 0 88px;
    }
    .cta-box{
      padding:42px;
      border-radius:var(--radius-xl);
      color:#fffdf6;
      background:
        radial-gradient(circle at 85% 20%,rgba(224,179,108,.3),transparent 34%),
        linear-gradient(135deg,var(--primary),#102721 72%,#6f4b35);
      box-shadow:var(--shadow-hover);
    }
    .cta-box h2{color:#fffdf6;margin-bottom:10px}
    .cta-box p{color:rgba(255,253,246,.78);margin-bottom:0}
    .cta-box .secondary-btn{background:rgba(255,255,255,.1);color:#fff;border-color:rgba(255,255,255,.28)}
    .cta-box .secondary-btn:hover{background:rgba(255,255,255,.18);color:#fff}
    .site-footer{
      background:#0f241f;
      color:rgba(255,253,246,.8);
      padding:56px 0 28px;
    }
    .footer-title{
      color:#fffdf6;
      font-size:18px;
      font-weight:900;
      margin-bottom:10px;
      max-width:360px;
    }
    .footer-desc{color:rgba(255,253,246,.64);max-width:420px}
    .footer-links{list-style:none;margin:0;padding:0;display:grid;gap:10px}
    .footer-links a{color:rgba(255,253,246,.74);font-weight:700}
    .footer-links a:hover{color:var(--amber)}
    .footer-heading{color:#fffdf6;font-weight:900;margin-bottom:12px}
    .footer-bottom{
      margin-top:34px;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.12);
      color:rgba(255,253,246,.55);
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    @media (max-width:1024px){
      .nav-wrap{flex-wrap:wrap}
      .brand{flex:1 1 auto}
      .seg-nav{order:3;width:100%}
      .hero{padding:68px 0 56px}
      section{padding:64px 0}
    }
    @media (max-width:768px){
      .brand-title{max-width:230px}
      .nav-cta{padding:9px 14px}
      .visual-panel{margin-top:28px;padding:20px}
      .risk-meter{min-height:330px}
      .form-grid{grid-template-columns:1fr}
      .cta-box{padding:30px 22px}
      .cta-actions .button,.hero-actions .button{width:100%}
      .footer-bottom{display:block}
      .footer-bottom span{display:block;margin-top:8px}
    }
    @media (max-width:520px){
      .nav-wrap{gap:10px}
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .brand-title{max-width:180px;font-size:14px}
      .brand-sub{display:none}
      h1{font-size:32px;letter-spacing:-.03em}
      .hero-lead,.section-desc{font-size:16px}
      .pain-card,.case-card,.topic-card,.contact-card,.result-card{padding:22px}
      .meter-head{align-items:flex-start}
      .risk-score{width:68px;height:68px;font-size:22px}
      .seg-nav a{padding:8px 13px;font-size:13px}
      section{padding:52px 0}
    }

/* roulang page: category2 */
:root{
      --ink:#16221f;
      --muted:#64716b;
      --soft:#f4f1ea;
      --paper:#fffdf8;
      --paper-2:#eef3ec;
      --green:#173f36;
      --green-2:#23584c;
      --green-3:#dce9e2;
      --amber:#c9822e;
      --amber-2:#f0c16e;
      --copper:#8f6648;
      --purple-gray:#7c7184;
      --line:rgba(35,88,76,.16);
      --line-dark:rgba(255,255,255,.18);
      --shadow:0 24px 70px rgba(23,63,54,.12);
      --shadow-hover:0 28px 80px rgba(23,63,54,.18);
      --radius-xl:34px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-pill:999px;
      --ease:180ms ease-out;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 4%, rgba(240,193,110,.24), transparent 28rem),
        radial-gradient(circle at 85% 12%, rgba(35,88,76,.14), transparent 26rem),
        linear-gradient(180deg,#f7f3ea 0%,#fbfaf6 42%,#eef3ec 100%);
      line-height:1.78;
      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}
    input,select,textarea{
      width:100%;
      min-height:52px;
      border:1px solid var(--line);
      border-radius:16px;
      background:rgba(255,253,248,.92);
      color:var(--ink);
      padding:12px 16px;
      outline:none;
      transition:border-color var(--ease),box-shadow var(--ease),background var(--ease);
    }
    textarea{min-height:118px;resize:vertical}
    input:focus,select:focus,textarea:focus{
      border-color:rgba(35,88,76,.58);
      box-shadow:0 0 0 4px rgba(35,88,76,.12);
      background:#fff;
    }
    a:focus-visible,button:focus-visible,.button:focus-visible{
      outline:3px solid rgba(201,130,46,.45);
      outline-offset:3px;
    }
    .grid-container{max-width:1200px}
    .section{
      padding:88px 0;
      position:relative;
    }
    .section.tight{padding:64px 0}
    .section-heading{
      margin-bottom:34px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:30px;
      padding:5px 12px;
      border-radius:var(--radius-pill);
      background:rgba(220,233,226,.8);
      color:var(--green);
      border:1px solid rgba(35,88,76,.14);
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 0 4px rgba(201,130,46,.15);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      max-width:780px;
      margin-bottom:22px;
      font-size:clamp(32px,5vw,56px);
      line-height:1.13;
      font-weight:800;
      letter-spacing:-.04em;
    }
    h2{
      max-width:760px;
      margin-bottom:14px;
      font-size:clamp(28px,3.5vw,38px);
      line-height:1.22;
      font-weight:800;
      letter-spacing:-.025em;
    }
    h3{
      font-size:22px;
      line-height:1.32;
      font-weight:800;
      margin-bottom:10px;
    }
    .lead{
      max-width:740px;
      color:#50615a;
      font-size:18px;
      line-height:1.9;
      margin-bottom:0;
    }
    .muted{color:var(--muted)}
    .button,.btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      border-radius:var(--radius-pill);
      padding:13px 22px;
      font-weight:800;
      line-height:1.1;
      border:1px solid transparent;
      cursor:pointer;
      margin:0;
    }
    .button.primary,.btn-primary{
      color:#fffdf8;
      background:linear-gradient(135deg,var(--green) 0%,var(--green-2) 52%,var(--amber) 100%);
      box-shadow:0 14px 34px rgba(23,63,54,.22);
    }
    .button.primary:hover,.btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 46px rgba(23,63,54,.3);
      background:linear-gradient(145deg,var(--green-2) 0%,var(--green) 50%,#b87427 100%);
    }
    .button.secondary,.btn-secondary{
      color:var(--green);
      background:rgba(255,253,248,.75);
      border-color:rgba(35,88,76,.22);
      box-shadow:none;
    }
    .button.secondary:hover,.btn-secondary:hover{
      background:var(--green-3);
      color:var(--green);
      transform:translateY(-2px);
      border-color:rgba(35,88,76,.38);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(247,243,234,.9);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(35,88,76,.12);
    }
    .nav-wrap{
      min-height:82px;
      display:flex;
      align-items:center;
      gap:20px;
      justify-content:space-between;
    }
    .brand{
      display:flex;
      align-items:center;
      min-width:0;
      gap:12px;
    }
    .brand-mark{
      flex:0 0 46px;
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:900;
      background:
        linear-gradient(135deg,rgba(255,255,255,.18),transparent 42%),
        linear-gradient(145deg,var(--green),#0e2a25);
      box-shadow:0 14px 30px rgba(23,63,54,.2);
    }
    .brand-text{
      min-width:0;
      display:flex;
      flex-direction:column;
      line-height:1.18;
    }
    .brand-title{
      max-width:310px;
      color:var(--ink);
      font-size:16px;
      font-weight:900;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      margin-top:3px;
      color:var(--muted);
      font-size:12px;
      font-weight:700;
    }
    .seg-nav{
      display:flex;
      align-items:center;
      gap:8px;
      padding:6px;
      border-radius:var(--radius-pill);
      background:rgba(255,253,248,.76);
      border:1px solid rgba(35,88,76,.13);
      box-shadow:0 10px 28px rgba(23,63,54,.06);
      overflow-x:auto;
      scrollbar-width:none;
    }
    .seg-nav::-webkit-scrollbar{display:none}
    .seg-nav a{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:9px 15px;
      border-radius:var(--radius-pill);
      color:#40534c;
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
    }
    .seg-nav a:hover{
      color:var(--green);
      background:rgba(220,233,226,.8);
    }
    .seg-nav a.active{
      color:#fffdf8;
      background:linear-gradient(135deg,var(--green),var(--green-2));
      box-shadow:0 10px 22px rgba(23,63,54,.18);
    }
    .nav-cta{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:44px;
      padding:12px 18px;
      border-radius:var(--radius-pill);
      color:#fffdf8;
      font-weight:900;
      background:linear-gradient(135deg,var(--amber),var(--green));
      box-shadow:0 14px 32px rgba(143,102,72,.22);
    }
    .nav-cta:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(143,102,72,.28);
    }

    .hero{
      padding:86px 0 72px;
      overflow:hidden;
    }
    .hero-panel{
      position:relative;
      padding:34px;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(145deg,rgba(23,63,54,.96),rgba(35,88,76,.93) 52%,rgba(143,102,72,.88)),
        radial-gradient(circle at 20% 20%,rgba(240,193,110,.24),transparent 20rem);
      color:#fffdf8;
      box-shadow:var(--shadow);
      overflow:hidden;
      min-height:430px;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(255,255,255,.16);
      border-radius:28px;
      pointer-events:none;
    }
    .matrix-top{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-bottom:28px;
    }
    .matrix-title{
      font-size:15px;
      font-weight:900;
      letter-spacing:.04em;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 11px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      color:#fff5dd;
      font-size:12px;
      font-weight:800;
    }
    .status-pill::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--amber-2);
    }
    .risk-matrix{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
      margin-bottom:22px;
    }
    .risk-cell{
      padding:17px;
      min-height:112px;
      border-radius:20px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.16);
    }
    .risk-cell strong{
      display:block;
      font-size:26px;
      line-height:1;
      margin-bottom:10px;
      color:#ffe8b5;
    }
    .risk-cell span{
      display:block;
      color:rgba(255,253,248,.8);
      font-size:13px;
      line-height:1.55;
    }
    .flow-bars{
      position:relative;
      z-index:1;
      display:grid;
      gap:12px;
    }
    .flow-bar{
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.15);
    }
    .bar-row{
      display:flex;
      justify-content:space-between;
      gap:10px;
      margin-bottom:9px;
      font-size:13px;
      color:rgba(255,253,248,.85);
      font-weight:800;
    }
    .bar-track{
      height:8px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.16);
      overflow:hidden;
    }
    .bar-fill{
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--amber-2),#fff4d3);
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:26px;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      background:rgba(255,253,248,.72);
      border:1px solid rgba(35,88,76,.13);
      color:#40534c;
      font-size:13px;
      font-weight:800;
    }

    .card{
      height:100%;
      padding:26px;
      border-radius:var(--radius-lg);
      background:rgba(255,253,248,.88);
      border:1px solid var(--line);
      box-shadow:0 16px 44px rgba(23,63,54,.08);
      transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease),background var(--ease);
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(35,88,76,.26);
      background:#fffdf8;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:15px 0 0;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      border-radius:var(--radius-pill);
      padding:5px 10px;
      color:var(--green);
      background:rgba(220,233,226,.76);
      border:1px solid rgba(35,88,76,.12);
      font-size:12px;
      font-weight:800;
    }
    .timeline{
      position:relative;
      display:grid;
      gap:18px;
    }
    .timeline::before{
      content:"";
      position:absolute;
      left:28px;
      top:14px;
      bottom:14px;
      width:2px;
      background:linear-gradient(180deg,var(--green),rgba(201,130,46,.4));
    }
    .timeline-item{
      position:relative;
      padding-left:76px;
    }
    .step-dot{
      position:absolute;
      left:0;
      top:0;
      width:58px;
      height:58px;
      border-radius:20px;
      display:grid;
      place-items:center;
      color:#fff;
      font-size:18px;
      font-weight:900;
      background:linear-gradient(145deg,var(--green),var(--amber));
      box-shadow:0 12px 26px rgba(23,63,54,.18);
      z-index:1;
    }
    .timeline-card{
      padding:24px 26px;
      border-radius:var(--radius-lg);
      background:#fffdf8;
      border:1px solid var(--line);
      box-shadow:0 14px 38px rgba(23,63,54,.07);
    }
    .timeline-card p{color:var(--muted);margin-bottom:14px}
    .check-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .check-list li{
      position:relative;
      padding-left:28px;
      color:#485b54;
      line-height:1.65;
    }
    .check-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:.55em;
      width:16px;
      height:16px;
      border-radius:50%;
      background:rgba(201,130,46,.16);
      border:1px solid rgba(201,130,46,.42);
    }
    .check-list li::after{
      content:"";
      position:absolute;
      left:5px;
      top:calc(.55em + 4px);
      width:6px;
      height:6px;
      border-radius:50%;
      background:var(--amber);
    }

    .matrix-section{
      border-radius:var(--radius-xl);
      padding:34px;
      background:
        linear-gradient(135deg,rgba(220,233,226,.72),rgba(255,253,248,.9)),
        radial-gradient(circle at right top,rgba(240,193,110,.24),transparent 22rem);
      border:1px solid rgba(35,88,76,.14);
      box-shadow:0 16px 46px rgba(23,63,54,.08);
    }
    .compare-table{
      width:100%;
      margin:0;
      border-collapse:separate;
      border-spacing:0 12px;
    }
    .compare-table thead th{
      color:#385048;
      font-size:13px;
      letter-spacing:.04em;
      padding:0 16px 8px;
      border:0;
      background:transparent;
    }
    .compare-table tbody tr{
      background:#fffdf8;
      box-shadow:0 12px 30px rgba(23,63,54,.06);
    }
    .compare-table tbody td{
      padding:18px 16px;
      border:0;
      color:#4c5f58;
      vertical-align:top;
      line-height:1.65;
    }
    .compare-table tbody td:first-child{
      border-radius:18px 0 0 18px;
      color:var(--ink);
      font-weight:900;
    }
    .compare-table tbody td:last-child{border-radius:0 18px 18px 0}
    .level{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:5px 10px;
      border-radius:var(--radius-pill);
      background:rgba(201,130,46,.14);
      color:#8a551c;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }

    .dark-band{
      background:
        radial-gradient(circle at 10% 0%,rgba(240,193,110,.22),transparent 24rem),
        linear-gradient(145deg,#102b26,#173f36 58%,#2b4039);
      color:#fffdf8;
      border-radius:var(--radius-xl);
      padding:42px;
      overflow:hidden;
      position:relative;
    }
    .dark-band h2,.dark-band h3{color:#fffdf8}
    .dark-band p{color:rgba(255,253,248,.78)}
    .evidence-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:stretch;
      margin-top:26px;
    }
    .evidence-card{
      padding:24px;
      border-radius:24px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.15);
    }
    .evidence-card strong{
      display:block;
      margin-bottom:10px;
      color:#ffe5a9;
      font-size:20px;
    }
    .count-stack{
      display:grid;
      gap:12px;
    }
    .count-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      min-height:62px;
      padding:14px 16px;
      border-radius:18px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.14);
    }
    .count-item b{font-size:24px;color:#ffe5a9}
    .count-item span{color:rgba(255,253,248,.78);font-size:13px;font-weight:800}

    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:20px;
      overflow:hidden;
      background:#fffdf8;
      border:1px solid var(--line);
      box-shadow:0 12px 34px rgba(23,63,54,.06);
    }
    .accordion-title{
      border:0!important;
      padding:20px 56px 20px 22px;
      color:var(--ink);
      font-size:17px;
      font-weight:900;
      line-height:1.35;
      background:#fffdf8;
    }
    .accordion-title:hover,.accordion-title:focus{
      color:var(--green);
      background:var(--paper-2);
    }
    .accordion-title::before{
      color:var(--amber);
      font-size:24px;
      right:22px;
      margin-top:-13px;
    }
    .accordion-content{
      border:0!important;
      padding:0 22px 22px;
      color:var(--muted);
      background:#fffdf8;
      line-height:1.8;
    }

    .contact-card{
      border-radius:var(--radius-xl);
      padding:36px;
      background:
        linear-gradient(135deg,rgba(255,253,248,.94),rgba(238,243,236,.92)),
        radial-gradient(circle at 90% 10%,rgba(201,130,46,.2),transparent 18rem);
      border:1px solid rgba(35,88,76,.14);
      box-shadow:var(--shadow);
    }
    .form-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .form-grid .full{grid-column:1/-1}
    label{
      display:block;
      margin-bottom:8px;
      color:#40534c;
      font-size:13px;
      font-weight:900;
    }
    .form-note{
      margin-top:12px;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
    }

    .cta-panel{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      padding:38px;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg,var(--green),var(--green-2) 55%,var(--copper)),
        radial-gradient(circle at 8% 10%,rgba(240,193,110,.35),transparent 20rem);
      color:#fffdf8;
      box-shadow:var(--shadow);
    }
    .cta-panel h2{color:#fffdf8;margin-bottom:10px}
    .cta-panel p{color:rgba(255,253,248,.78);margin-bottom:0;max-width:720px}
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      flex:0 0 auto;
    }

    .site-footer{
      padding:58px 0 30px;
      background:#102b26;
      color:rgba(255,253,248,.8);
    }
    .footer-title{
      margin-bottom:12px;
      color:#fffdf8;
      font-size:19px;
      font-weight:900;
    }
    .footer-desc{
      color:rgba(255,253,248,.68);
      margin-bottom:0;
      line-height:1.8;
    }
    .footer-heading{
      margin-bottom:12px;
      color:#ffe1a1;
      font-weight:900;
      font-size:14px;
      letter-spacing:.04em;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:8px;
    }
    .footer-links a{
      color:rgba(255,253,248,.72);
      font-weight:700;
    }
    .footer-links a:hover{color:#ffe1a1}
    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-top:36px;
      padding-top:22px;
      border-top:1px solid var(--line-dark);
      color:rgba(255,253,248,.58);
      font-size:13px;
    }

    @media (max-width:1024px){
      .nav-wrap{
        flex-wrap:wrap;
        padding:14px 0;
        gap:12px;
      }
      .brand{width:calc(100% - 128px)}
      .seg-nav{
        order:3;
        width:100%;
      }
      .hero{padding-top:56px}
      .hero-panel{margin-top:26px}
      .evidence-grid{grid-template-columns:1fr}
      .cta-panel{
        align-items:flex-start;
        flex-direction:column;
      }
    }
    @media (max-width:768px){
      .section{padding:62px 0}
      .section.tight{padding:48px 0}
      .brand-title{max-width:230px}
      .brand-sub{display:none}
      .nav-cta{padding:11px 14px;font-size:14px}
      .hero-actions .button,.hero-actions .btn{width:100%}
      .risk-matrix{grid-template-columns:1fr}
      .timeline::before{left:22px}
      .timeline-item{padding-left:62px}
      .step-dot{width:46px;height:46px;border-radius:16px}
      .matrix-section,.dark-band,.contact-card,.cta-panel{padding:26px}
      .compare-table thead{display:none}
      .compare-table,.compare-table tbody,.compare-table tr,.compare-table td{display:block;width:100%}
      .compare-table tbody tr{
        margin-bottom:14px;
        border-radius:18px;
        overflow:hidden;
      }
      .compare-table tbody td{
        padding:13px 16px;
        border-bottom:1px solid rgba(35,88,76,.08);
      }
      .compare-table tbody td::before{
        content:attr(data-label);
        display:block;
        margin-bottom:4px;
        color:var(--green);
        font-size:12px;
        font-weight:900;
      }
      .compare-table tbody td:first-child,
      .compare-table tbody td:last-child{border-radius:0}
      .form-grid{grid-template-columns:1fr}
      .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
      }
    }
    @media (max-width:520px){
      h1{letter-spacing:-.025em}
      .grid-container{padding-left:18px;padding-right:18px}
      .hero-panel{padding:24px;min-height:auto}
      .matrix-top{align-items:flex-start;flex-direction:column}
      .hero-badges{display:grid;grid-template-columns:1fr 1fr}
      .mini-badge{justify-content:center;text-align:center}
      .card,.timeline-card{padding:22px}
      .cta-actions,.cta-actions .button,.cta-actions .btn{width:100%}
    }

/* roulang page: category1 */
:root{
      --ink:#12211c;
      --ink-soft:#49615a;
      --muted:#6f817a;
      --bg:#f5f2ea;
      --bg-2:#ecefe7;
      --card:#fffdf7;
      --card-2:#f9f6ee;
      --primary:#123d35;
      --primary-2:#1e5a4c;
      --amber:#c9852f;
      --amber-2:#e3b15e;
      --copper:#8f6645;
      --purple-gray:#756b7e;
      --line:rgba(29,64,55,.16);
      --line-strong:rgba(29,64,55,.28);
      --shadow:0 18px 45px rgba(31,55,48,.12);
      --shadow-hover:0 24px 65px rgba(31,55,48,.18);
      --radius-xl:34px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:12px;
      --pill:999px;
      --section:88px;
      --speed:200ms ease-out;
      --font:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 4%,rgba(201,133,47,.16),transparent 32%),
        radial-gradient(circle at 92% 12%,rgba(18,61,53,.12),transparent 34%),
        linear-gradient(180deg,var(--bg),#fbfaf5 46%,var(--bg-2));
      line-height:1.78;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color var(--speed),background var(--speed),border-color var(--speed),transform var(--speed),box-shadow var(--speed)}
    a:hover,a:focus{color:var(--primary)}
    img{max-width:100%;height:auto;display:block}
    button,input,select,textarea{font-family:inherit}
    input,select,textarea{
      width:100%;
      min-height:48px;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fffef9;
      color:var(--ink);
      padding:12px 15px;
      box-shadow:none;
      transition:border-color var(--speed),box-shadow var(--speed),background var(--speed);
    }
    textarea{min-height:118px;resize:vertical}
    input:focus,select:focus,textarea:focus{
      outline:none;
      border-color:rgba(18,61,53,.58);
      box-shadow:0 0 0 4px rgba(18,61,53,.12);
      background:#fff;
    }
    .grid-container{max-width:1200px}
    .section{padding:var(--section) 0}
    .section-tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:var(--pill);
      border:1px solid rgba(201,133,47,.28);
      background:rgba(255,252,244,.78);
      color:#68471f;
      font-weight:700;
      font-size:13px;
      letter-spacing:.03em;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 0 5px rgba(201,133,47,.14);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      max-width:760px;
      font-size:clamp(31px,5vw,56px);
      line-height:1.12;
      letter-spacing:-.04em;
      font-weight:800;
      margin:18px 0 20px;
      color:var(--ink);
    }
    h2{
      font-size:clamp(28px,3.4vw,38px);
      line-height:1.22;
      letter-spacing:-.03em;
      font-weight:800;
      margin-bottom:14px;
    }
    h3{
      font-size:22px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:10px;
    }
    p{color:var(--ink-soft)}
    .lead{
      max-width:720px;
      color:var(--ink-soft);
      font-size:18px;
      line-height:1.88;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(245,242,234,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(29,64,55,.12);
    }
    .nav-wrap{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:260px;
      color:var(--ink);
    }
    .brand:hover{transform:translateY(-1px)}
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fffaf0;
      font-weight:900;
      background:linear-gradient(135deg,var(--primary),var(--copper) 72%,var(--amber));
      box-shadow:0 12px 25px rgba(18,61,53,.22);
      flex:0 0 auto;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.22;min-width:0}
    .brand-title{
      font-size:15px;
      font-weight:900;
      max-width:260px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{font-size:12px;color:var(--muted);font-weight:700}
    .seg-nav{
      display:flex;
      align-items:center;
      gap:8px;
      padding:7px;
      border-radius:var(--pill);
      background:rgba(255,253,247,.72);
      border:1px solid var(--line);
      box-shadow:0 10px 30px rgba(31,55,48,.06);
      overflow-x:auto;
      scrollbar-width:none;
    }
    .seg-nav::-webkit-scrollbar{display:none}
    .seg-nav a{
      min-height:38px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:8px 16px;
      border-radius:var(--pill);
      color:var(--ink-soft);
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
    }
    .seg-nav a:hover{
      background:rgba(18,61,53,.08);
      color:var(--primary);
    }
    .seg-nav a.active{
      color:#fffaf0;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 10px 24px rgba(18,61,53,.22);
    }
    .nav-cta,.btn-primary,.btn-secondary,.mini-btn{
      min-height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:var(--pill);
      font-weight:900;
      cursor:pointer;
      border:0;
      line-height:1.2;
      text-align:center;
    }
    .nav-cta,.btn-primary{
      padding:13px 21px;
      color:#fffaf0;
      background:linear-gradient(135deg,var(--primary),#6c5b3b 58%,var(--amber));
      box-shadow:0 14px 28px rgba(104,76,39,.24);
    }
    .nav-cta:hover,.btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 20px 38px rgba(104,76,39,.3);
      filter:saturate(1.05);
    }
    .btn-secondary{
      padding:12px 20px;
      background:rgba(255,253,247,.86);
      color:var(--primary);
      border:1px solid rgba(18,61,53,.22);
    }
    .btn-secondary:hover{
      background:rgba(18,61,53,.08);
      color:var(--primary);
      transform:translateY(-2px);
    }
    .mini-btn{
      min-height:38px;
      padding:9px 14px;
      color:var(--primary);
      background:rgba(18,61,53,.08);
      border:1px solid rgba(18,61,53,.13);
      font-size:14px;
    }
    .mini-btn:hover{
      background:rgba(201,133,47,.14);
      color:#65410c;
      transform:translateY(-1px);
    }
    a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(201,133,47,.48);
      outline-offset:3px;
    }
    .hero{
      position:relative;
      padding:86px 0 76px;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:24px 3vw auto auto;
      width:470px;
      height:470px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(201,133,47,.22),rgba(18,61,53,.06) 42%,transparent 70%);
      pointer-events:none;
    }
    .hero-copy{position:relative;z-index:1}
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin:28px 0 24px}
    .hero-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:var(--pill);
      padding:8px 12px;
      background:rgba(255,253,247,.78);
      border:1px solid var(--line);
      color:var(--ink-soft);
      font-weight:800;
      font-size:13px;
    }
    .tag .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary-2);
    }
    .tag.warn .dot{background:var(--amber)}
    .radar-card{
      position:relative;
      z-index:1;
      border-radius:var(--radius-xl);
      padding:26px;
      background:
        linear-gradient(145deg,rgba(255,253,247,.95),rgba(238,235,224,.92)),
        radial-gradient(circle at 20% 10%,rgba(201,133,47,.18),transparent 35%);
      border:1px solid rgba(18,61,53,.15);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .radar-card::after{
      content:"";
      position:absolute;
      inset:auto -80px -110px auto;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(18,61,53,.08);
    }
    .panel-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:15px;
      margin-bottom:22px;
      position:relative;
      z-index:1;
    }
    .panel-title{font-weight:900;font-size:18px}
    .status-pill{
      border-radius:var(--pill);
      padding:7px 10px;
      background:rgba(201,133,47,.13);
      color:#765018;
      border:1px solid rgba(201,133,47,.25);
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }
    .risk-ring{
      min-height:260px;
      border-radius:28px;
      background:
        radial-gradient(circle at center,rgba(18,61,53,.08) 0 16%,transparent 17% 100%),
        repeating-radial-gradient(circle at center,rgba(18,61,53,.18) 0 1px,transparent 1px 42px),
        conic-gradient(from 220deg,rgba(201,133,47,.2),rgba(18,61,53,.18),rgba(117,107,126,.18),rgba(201,133,47,.2));
      border:1px solid var(--line);
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      overflow:hidden;
    }
    .risk-ring .center{
      width:132px;
      height:132px;
      border-radius:34px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      text-align:center;
      background:rgba(255,253,247,.9);
      border:1px solid rgba(18,61,53,.18);
      box-shadow:0 18px 35px rgba(18,61,53,.12);
      font-weight:900;
      color:var(--primary);
    }
    .risk-ring .center strong{font-size:34px;line-height:1}
    .risk-ring .center span{font-size:12px;color:var(--muted);margin-top:5px}
    .orbit{
      position:absolute;
      border-radius:var(--pill);
      padding:7px 11px;
      font-size:12px;
      font-weight:900;
      background:rgba(255,253,247,.9);
      border:1px solid var(--line);
      color:var(--ink-soft);
      box-shadow:0 10px 20px rgba(31,55,48,.08);
    }
    .o1{top:35px;left:34px}.o2{top:54px;right:30px}.o3{bottom:45px;left:45px}.o4{bottom:34px;right:45px}
    .metrics-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:16px;
      position:relative;
      z-index:1;
    }
    .metric{
      border-radius:20px;
      background:rgba(255,253,247,.72);
      border:1px solid var(--line);
      padding:14px;
    }
    .metric strong{
      display:block;
      font-size:24px;
      line-height:1.1;
      color:var(--primary);
      font-weight:900;
    }
    .metric span{font-size:12px;color:var(--muted);font-weight:800}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:20px;
      margin-bottom:32px;
    }
    .section-head p{max-width:680px;margin-bottom:0}
    .filter-bar{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:12px;
      border-radius:24px;
      background:rgba(255,253,247,.7);
      border:1px solid var(--line);
      margin-bottom:26px;
    }
    .filter-chip{
      display:inline-flex;
      align-items:center;
      min-height:38px;
      padding:8px 14px;
      border-radius:var(--pill);
      background:#fffdf7;
      border:1px solid rgba(18,61,53,.13);
      color:var(--ink-soft);
      font-weight:900;
      font-size:14px;
    }
    .filter-chip.active{
      background:rgba(18,61,53,.1);
      color:var(--primary);
      border-color:rgba(18,61,53,.26);
    }
    .topic-card,.method-card,.scenario-card,.contact-card{
      height:100%;
      border-radius:var(--radius-lg);
      background:rgba(255,253,247,.86);
      border:1px solid var(--line);
      box-shadow:0 14px 34px rgba(31,55,48,.08);
      transition:transform var(--speed),box-shadow var(--speed),border-color var(--speed),background var(--speed);
      overflow:hidden;
    }
    .topic-card:hover,.method-card:hover,.scenario-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(201,133,47,.32);
      background:#fffef9;
    }
    .topic-card{padding:23px;display:flex;flex-direction:column;gap:14px}
    .topic-top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
    }
    .topic-index{
      width:42px;
      height:42px;
      flex:0 0 auto;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:rgba(18,61,53,.08);
      color:var(--primary);
      font-weight:900;
    }
    .topic-card h3{font-size:20px;margin-bottom:6px}
    .topic-card p{margin-bottom:0}
    .chip-line{display:flex;flex-wrap:wrap;gap:8px;margin-top:auto}
    .small-chip{
      display:inline-flex;
      border-radius:var(--pill);
      padding:6px 9px;
      background:rgba(201,133,47,.1);
      color:#74501c;
      font-size:12px;
      font-weight:900;
      border:1px solid rgba(201,133,47,.17);
    }
    .method-strip{
      border-radius:var(--radius-xl);
      background:linear-gradient(135deg,#153d35,#2a4c41 52%,#85613e);
      color:#fffaf0;
      padding:34px;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .method-strip::after{
      content:"";
      position:absolute;
      right:-90px;
      top:-90px;
      width:260px;
      height:260px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.06);
    }
    .method-strip h2,.method-strip p{color:#fffaf0}
    .method-strip p{opacity:.82}
    .method-steps{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:14px;
      margin-top:24px;
      position:relative;
      z-index:1;
    }
    .method-step{
      border-radius:22px;
      background:rgba(255,255,255,.09);
      border:1px solid rgba(255,255,255,.16);
      padding:18px;
      min-height:172px;
    }
    .step-no{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:34px;
      height:34px;
      border-radius:13px;
      background:rgba(227,177,94,.22);
      color:#ffe8ba;
      font-weight:900;
      margin-bottom:12px;
    }
    .method-step strong{display:block;color:#fff;font-size:17px;margin-bottom:8px}
    .method-step span{display:block;color:rgba(255,250,240,.78);font-size:14px;line-height:1.65}
    .scenario-card{
      padding:26px;
      background:
        linear-gradient(180deg,rgba(255,253,247,.92),rgba(246,242,232,.92));
    }
    .scenario-card .icon{
      width:48px;
      height:48px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(18,61,53,.09);
      color:var(--primary);
      font-weight:900;
      margin-bottom:18px;
    }
    .check-list{
      list-style:none;
      margin:18px 0 0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .check-list li{
      position:relative;
      padding-left:28px;
      color:var(--ink-soft);
    }
    .check-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:.62em;
      width:14px;
      height:14px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--primary),var(--amber));
      box-shadow:0 0 0 4px rgba(18,61,53,.08);
    }
    .evidence-board{
      border-radius:var(--radius-xl);
      background:rgba(255,253,247,.78);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:28px;
    }
    .evidence-item{
      display:flex;
      gap:16px;
      padding:18px 0;
      border-bottom:1px solid rgba(18,61,53,.11);
    }
    .evidence-item:last-child{border-bottom:0}
    .rank{
      width:38px;
      height:38px;
      flex:0 0 auto;
      border-radius:14px;
      background:rgba(201,133,47,.12);
      color:#7d5318;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
    }
    .evidence-item strong{display:block;margin-bottom:4px}
    .evidence-item p{margin:0;font-size:15px}
    .callout.note-box{
      border-radius:var(--radius-lg);
      border:1px solid rgba(201,133,47,.26);
      background:rgba(255,248,232,.78);
      color:var(--ink-soft);
      padding:22px;
      margin:0;
    }
    .note-box strong{color:#74501c}
    .accordion{
      background:transparent;
      border:0;
      margin:0;
    }
    .accordion-item{
      border:1px solid var(--line);
      border-radius:20px;
      overflow:hidden;
      background:rgba(255,253,247,.82);
      margin-bottom:12px;
      box-shadow:0 10px 24px rgba(31,55,48,.06);
    }
    .accordion-title{
      border:0!important;
      color:var(--ink)!important;
      font-weight:900;
      font-size:17px;
      padding:20px 52px 20px 22px;
      background:transparent;
      min-height:62px;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(18,61,53,.06);
      color:var(--primary)!important;
    }
    .accordion-title::before{
      right:22px;
      margin-top:-8px;
      color:var(--amber);
      font-size:22px;
      font-weight:900;
    }
    .accordion-content{
      border:0!important;
      background:rgba(255,253,247,.86);
      color:var(--ink-soft);
      padding:0 22px 22px;
      line-height:1.85;
    }
    .contact-card{
      padding:30px;
      background:
        linear-gradient(135deg,rgba(255,253,247,.96),rgba(239,235,222,.94)),
        radial-gradient(circle at 88% 8%,rgba(201,133,47,.16),transparent 30%);
    }
    .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .form-grid .full{grid-column:1/-1}
    label{
      display:block;
      color:var(--ink);
      font-weight:900;
      margin-bottom:7px;
      font-size:14px;
    }
    .form-hint{
      color:var(--muted);
      font-size:13px;
      margin:10px 0 0;
    }
    .cta-band{
      border-radius:36px;
      padding:34px;
      background:
        linear-gradient(135deg,#123d35,#315344 58%,#a06f36),
        radial-gradient(circle at 12% 20%,rgba(255,255,255,.18),transparent 26%);
      color:#fffaf0;
      box-shadow:0 26px 70px rgba(18,61,53,.24);
      position:relative;
      overflow:hidden;
    }
    .cta-band::before{
      content:"";
      position:absolute;
      right:-70px;
      bottom:-110px;
      width:300px;
      height:300px;
      border-radius:50%;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.18);
    }
    .cta-band h2,.cta-band p{color:#fffaf0}
    .cta-band p{opacity:.84;margin-bottom:0}
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
      position:relative;
      z-index:1;
    }
    .cta-band .btn-secondary{
      background:rgba(255,255,255,.12);
      color:#fffaf0;
      border-color:rgba(255,255,255,.28);
    }
    .cta-band .btn-secondary:hover{background:rgba(255,255,255,.2)}
    .site-footer{
      padding:62px 0 26px;
      background:#102b25;
      color:#efe9dd;
      margin-top:0;
    }
    .footer-title{
      font-size:20px;
      line-height:1.35;
      font-weight:900;
      margin-bottom:12px;
      color:#fffaf0;
    }
    .footer-desc{
      color:rgba(239,233,221,.72);
      margin-bottom:0;
      line-height:1.82;
    }
    .footer-heading{
      color:#fffaf0;
      font-weight:900;
      margin-bottom:12px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:8px;
    }
    .footer-links a{
      color:rgba(239,233,221,.72);
      font-weight:700;
    }
    .footer-links a:hover{color:#e3b15e}
    .footer-bottom{
      margin-top:34px;
      padding-top:20px;
      border-top:1px solid rgba(239,233,221,.14);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(239,233,221,.58);
      font-size:13px;
    }
    @media (max-width:1024px){
      :root{--section:74px}
      .nav-wrap{flex-wrap:wrap;padding:14px 0}
      .brand{min-width:220px;flex:1}
      .seg-nav{order:3;width:100%}
      .nav-cta{margin-left:auto}
      .method-steps{grid-template-columns:repeat(3,1fr)}
      .section-head{align-items:flex-start;flex-direction:column}
    }
    @media (max-width:768px){
      :root{--section:58px}
      .hero{padding:60px 0 54px}
      .brand-title{max-width:210px}
      .brand-sub{display:none}
      .nav-cta{padding:11px 15px;font-size:14px}
      .metrics-row{grid-template-columns:1fr}
      .method-steps{grid-template-columns:1fr}
      .method-strip,.cta-band,.evidence-board,.contact-card{padding:24px;border-radius:28px}
      .form-grid{grid-template-columns:1fr}
      .cta-actions{justify-content:flex-start;margin-top:20px}
    }
    @media (max-width:520px){
      body{font-size:15px}
      .grid-container{padding-left:18px;padding-right:18px}
      .nav-wrap{gap:12px}
      .brand{min-width:0;width:calc(100% - 128px)}
      .brand-mark{width:40px;height:40px;border-radius:14px}
      .brand-title{max-width:190px;font-size:14px}
      .seg-nav a{padding:8px 13px;font-size:13px}
      .hero-actions .btn-primary,.hero-actions .btn-secondary,.cta-actions .btn-primary,.cta-actions .btn-secondary{
        width:100%;
      }
      .radar-card{padding:18px;border-radius:26px}
      .risk-ring{min-height:225px}
      .orbit{font-size:11px;padding:6px 8px}
      .o1{left:14px}.o2{right:12px}.o3{left:18px}.o4{right:16px}
      .filter-bar{flex-wrap:nowrap;overflow-x:auto;border-radius:20px}
      .filter-chip{white-space:nowrap}
      .topic-card,.scenario-card{padding:20px}
      .footer-bottom{flex-direction:column}
    }
