/* roulang page: index */
:root{
      --green:#1F8A4C;
      --green-dark:#17683A;
      --green-soft:#EAF7EA;
      --lime:#C8F24A;
      --ink:#111827;
      --text:#374151;
      --muted:#64748B;
      --line:#E5E7EB;
      --bg:#F6F8F5;
      --white:#FFFFFF;
      --orange:#F59E0B;
      --red:#EF4444;
      --radius-sm:12px;
      --radius:20px;
      --radius-lg:28px;
      --shadow:0 16px 42px rgba(17,24,39,.08);
      --shadow-hover:0 22px 56px rgba(23,104,58,.16);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 8%, rgba(200,242,74,.18), transparent 26%),
        linear-gradient(180deg,#FAFCF8 0%, var(--bg) 44%, #FFFFFF 100%);
      line-height:1.78;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    :focus-visible{outline:3px solid rgba(200,242,74,.8);outline-offset:3px}
    .site-container{width:min(1240px,100%);margin-inline:auto;padding-inline:32px}
    .section{padding:92px 0}
    .section-tight{padding:72px 0}
    .dock-wrap{position:fixed;top:18px;left:0;right:0;z-index:50;pointer-events:none}
    .dock{
      pointer-events:auto;
      width:min(1180px,calc(100% - 40px));
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:10px 12px 10px 16px;
      border:1px solid rgba(229,231,235,.92);
      border-radius:999px;
      background:rgba(255,255,255,.86);
      backdrop-filter:blur(14px);
      box-shadow:0 14px 38px rgba(17,24,39,.10);
    }
    .logo{
      display:flex;align-items:center;gap:10px;min-width:max-content;
      font-weight:850;color:var(--ink);letter-spacing:.01em;
    }
    .logo-mark{
      width:38px;height:38px;border-radius:50%;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--green),var(--green-dark));
      color:#fff;box-shadow:inset 0 0 0 3px rgba(255,255,255,.2);
      position:relative;
    }
    .logo-mark:after{
      content:"";position:absolute;width:22px;height:2px;background:rgba(200,242,74,.9);
      transform:rotate(-18deg);border-radius:999px;
    }
    .nav-links{display:flex;align-items:center;gap:4px;flex:1;justify-content:center}
    .nav-link{
      padding:10px 13px;border-radius:999px;font-size:14px;font-weight:700;color:#4B5563;
      transition:.22s ease;white-space:nowrap;
    }
    .nav-link:hover{background:var(--green-soft);color:var(--green-dark);transform:translateY(-1px)}
    .nav-link.active{background:#DFF4D8;color:var(--green-dark)}
    .nav-cta{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      padding:11px 18px;border-radius:999px;background:var(--green);color:white;
      font-size:14px;font-weight:800;box-shadow:0 10px 24px rgba(31,138,76,.22);
      transition:.22s ease;white-space:nowrap;
    }
    .nav-cta:hover{background:var(--green-dark);transform:translateY(-2px);box-shadow:0 16px 34px rgba(31,138,76,.28)}
    .menu-btn{display:none;width:44px;height:44px;border:1px solid var(--line);border-radius:50%;background:#fff;color:var(--ink)}
    .hero{
      min-height:760px;
      padding:154px 0 76px;
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";position:absolute;inset:0;
      background:
        linear-gradient(90deg,rgba(246,248,245,.96) 0%,rgba(246,248,245,.84) 47%,rgba(246,248,245,.48) 100%),
        url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
      z-index:-2;
    }
    .hero:after{
      content:"";position:absolute;inset:auto -120px -240px auto;width:520px;height:520px;border:1px solid rgba(31,138,76,.14);
      border-radius:50%;box-shadow:0 0 0 70px rgba(31,138,76,.035),0 0 0 140px rgba(31,138,76,.026);z-index:-1;
    }
    .eyebrow{
      display:inline-flex;align-items:center;gap:9px;
      padding:8px 12px;border:1px solid rgba(31,138,76,.18);
      background:rgba(255,255,255,.78);border-radius:999px;color:var(--green-dark);
      font-size:14px;font-weight:800;box-shadow:0 8px 22px rgba(17,24,39,.05);
    }
    .eyebrow .dot{width:8px;height:8px;border-radius:50%;background:var(--lime);box-shadow:0 0 0 5px rgba(200,242,74,.25)}
    h1,h2,h3{color:var(--ink);line-height:1.16;margin:0}
    .hero-title{font-size:clamp(34px,5vw,64px);font-weight:900;letter-spacing:-.02em;margin-top:24px;max-width:720px}
    .hero-title span{color:var(--green-dark);position:relative}
    .hero-copy{font-size:18px;line-height:1.9;color:#46515f;max-width:640px;margin-top:22px}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:9px;
      min-height:48px;padding:13px 20px;border-radius:999px;font-weight:850;
      transition:.22s ease;border:1px solid transparent;
    }
    .btn-primary{background:var(--green);color:#fff;box-shadow:0 14px 28px rgba(31,138,76,.24)}
    .btn-primary:hover{background:var(--green-dark);transform:translateY(-2px);box-shadow:0 18px 42px rgba(31,138,76,.3)}
    .btn-secondary{background:#fff;color:var(--green-dark);border-color:rgba(31,138,76,.18)}
    .btn-secondary:hover{background:var(--green-soft);transform:translateY(-2px);border-color:rgba(31,138,76,.32)}
    .btn-dark{background:#10251A;color:#fff}
    .btn-dark:hover{background:#07140D;transform:translateY(-2px)}
    .hero-panel{
      border:1px solid rgba(229,231,235,.82);
      background:rgba(255,255,255,.92);
      border-radius:30px;
      padding:20px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";position:absolute;left:0;right:0;top:0;height:5px;background:linear-gradient(90deg,var(--green),var(--lime),var(--green));
    }
    .score-row{
      display:grid;grid-template-columns:86px 1fr auto;gap:14px;align-items:center;
      padding:15px;border:1px solid #EDF0EB;border-radius:18px;background:#fff;
      transition:.22s ease;
    }
    .score-row:hover{border-color:rgba(31,138,76,.28);transform:translateY(-2px);box-shadow:0 12px 30px rgba(17,24,39,.07)}
    .badge{
      display:inline-flex;align-items:center;justify-content:center;
      padding:5px 9px;border-radius:999px;font-size:12px;font-weight:850;white-space:nowrap;
    }
    .badge-green{background:#E7F7E8;color:var(--green-dark)}
    .badge-lime{background:#F1FFD3;color:#4E6B00}
    .badge-orange{background:#FFF2D9;color:#A35A00}
    .badge-red{background:#FFE8E8;color:#B91C1C}
    .badge-slate{background:#EEF2F6;color:#475569}
    .score{font-size:24px;font-weight:950;color:var(--ink);letter-spacing:.02em}
    .searchbar{
      display:flex;align-items:center;gap:10px;border:1px solid var(--line);background:#fff;
      border-radius:999px;padding:7px 8px 7px 18px;box-shadow:0 10px 26px rgba(17,24,39,.05);
    }
    .searchbar input{border:0;outline:0;background:transparent;width:100%;min-height:42px;color:var(--ink)}
    .searchbar:focus-within{border-color:rgba(31,138,76,.45);box-shadow:0 0 0 4px rgba(31,138,76,.08)}
    .section-head{display:flex;align-items:end;justify-content:space-between;gap:28px;margin-bottom:36px}
    .section-kicker{color:var(--green-dark);font-weight:900;margin-bottom:10px}
    .section-title{font-size:clamp(28px,3.4vw,44px);font-weight:900;letter-spacing:-.015em}
    .section-desc{max-width:620px;color:var(--muted);font-size:17px;margin-top:12px}
    .pain-track{position:relative;display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
    .pain-track:before{content:"";position:absolute;left:10%;right:10%;top:34px;height:2px;background:linear-gradient(90deg,rgba(31,138,76,.1),rgba(31,138,76,.35),rgba(31,138,76,.1));z-index:0}
    .pain-item{position:relative;z-index:1;background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;box-shadow:0 10px 28px rgba(17,24,39,.05)}
    .pain-num{width:68px;height:68px;border-radius:22px;display:grid;place-items:center;background:linear-gradient(135deg,#F2FAEB,#fff);border:1px solid rgba(31,138,76,.15);color:var(--green-dark);font-size:24px;font-weight:950;margin-bottom:18px}
    .solution-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:26px}
    .module-card{
      background:#fff;border:1px solid var(--line);border-radius:24px;padding:24px;
      box-shadow:0 12px 34px rgba(17,24,39,.06);transition:.22s ease;
    }
    .module-card:hover{transform:translateY(-3px);border-color:rgba(31,138,76,.28);box-shadow:var(--shadow-hover)}
    .module-list{display:grid;gap:14px}
    .module-line{display:grid;grid-template-columns:46px 1fr auto;gap:14px;align-items:start;padding:16px;border-radius:18px;background:#F9FBF7;border:1px solid #EDF0EB}
    .icon{
      width:46px;height:46px;border-radius:16px;background:#EAF7EA;color:var(--green-dark);display:grid;place-items:center;font-weight:950;
    }
    .category-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
    .category-card{
      min-height:184px;border-radius:24px;overflow:hidden;position:relative;
      border:1px solid rgba(255,255,255,.5);box-shadow:var(--shadow);transition:.25s ease;background:#10251A;color:#fff;
    }
    .category-card img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;opacity:.54;transition:.25s ease}
    .category-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(16,37,26,.1),rgba(16,37,26,.88))}
    .category-card .inner{position:relative;z-index:1;height:100%;padding:18px;display:flex;flex-direction:column;justify-content:flex-end}
    .category-card:hover{transform:translateY(-4px);box-shadow:0 22px 48px rgba(17,24,39,.16)}
    .category-card:hover img{transform:scale(1.06);opacity:.7}
    .dashboard{
      background:#10251A;color:#DDEBE2;border-radius:30px;padding:34px;position:relative;overflow:hidden;
    }
    .dashboard:before{
      content:"";position:absolute;inset:0;background:
        linear-gradient(rgba(200,242,74,.05) 1px,transparent 1px),
        linear-gradient(90deg,rgba(200,242,74,.05) 1px,transparent 1px);
      background-size:42px 42px;opacity:.8;
    }
    .dashboard > *{position:relative;z-index:1}
    .metric-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
    .metric{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06);border-radius:22px;padding:22px}
    .metric strong{display:block;color:#fff;font-size:30px;line-height:1.1;margin-bottom:9px}
    .progress{height:8px;border-radius:999px;background:rgba(255,255,255,.12);overflow:hidden;margin-top:16px}
    .progress span{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--lime),#fff)}
    .info-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:26px;align-items:stretch}
    .feature-image{border-radius:28px;overflow:hidden;min-height:420px;position:relative;box-shadow:var(--shadow)}
    .feature-image img{width:100%;height:100%;object-fit:cover}
    .feature-image:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent,rgba(16,37,26,.65))}
    .feature-caption{position:absolute;left:24px;right:24px;bottom:24px;z-index:1;color:#fff}
    .news-list{display:grid;gap:14px}
    .news-item{display:grid;grid-template-columns:112px 1fr;gap:16px;padding:14px;background:#fff;border:1px solid var(--line);border-radius:20px;transition:.22s ease}
    .news-item:hover{transform:translateY(-2px);border-color:rgba(31,138,76,.28);box-shadow:0 14px 36px rgba(17,24,39,.07)}
    .news-item img{width:112px;height:86px;border-radius:15px;object-fit:cover}
    .reviews{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
    .review-card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:20px;box-shadow:0 12px 30px rgba(17,24,39,.05);transition:.22s ease}
    .review-card:hover{transform:translateY(-3px);border-color:rgba(31,138,76,.28);box-shadow:var(--shadow-hover)}
    .stars{color:#E6A400;letter-spacing:.05em}
    .faq-wrap{display:grid;grid-template-columns:.8fr 1.2fr;gap:34px}
    .faq-list{display:grid;gap:12px}
    .faq-item{border:1px solid var(--line);background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 10px 24px rgba(17,24,39,.04)}
    .faq-question{width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;text-align:left;background:#fff;border:0;padding:18px 20px;color:var(--ink);font-weight:850}
    .faq-question span:last-child{width:28px;height:28px;border-radius:50%;background:#F0F6EF;color:var(--green-dark);display:grid;place-items:center;flex:0 0 auto;transition:.2s ease}
    .faq-answer{display:none;padding:0 20px 20px;color:#536170;line-height:1.85}
    .faq-item.open .faq-answer{display:block}
    .faq-item.open .faq-question span:last-child{transform:rotate(45deg);background:var(--green);color:#fff}
    .cta{
      border-radius:32px;background:
        linear-gradient(135deg,rgba(234,247,234,.96),rgba(255,255,255,.96)),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      border:1px solid rgba(31,138,76,.16);
      padding:42px;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .cta:after{
      content:"";position:absolute;right:-80px;top:-80px;width:260px;height:260px;border-radius:50%;
      background:rgba(200,242,74,.25);filter:blur(2px);
    }
    .cta > *{position:relative;z-index:1}
    .summary-panel{background:#fff;border:1px solid var(--line);border-radius:24px;padding:18px;box-shadow:0 14px 34px rgba(17,24,39,.06)}
    footer{background:#07140D;color:#D6E4DA;margin-top:0}
    .footer-top{padding:58px 0 36px;display:grid;grid-template-columns:1.3fr repeat(3,.7fr);gap:28px;border-bottom:1px solid rgba(255,255,255,.1)}
    .footer-title{color:#fff;font-weight:900;margin-bottom:14px}
    .footer-link{display:block;color:#B8C8BD;margin:8px 0;transition:.2s ease}
    .footer-link:hover{color:#fff;transform:translateX(3px)}
    .footer-bottom{text-align:center;padding:22px 20px 30px;color:#AEBDB3;font-size:14px}
    .footer-bottom a{color:#D6E4DA;margin:0 6px}
    .footer-bottom a:hover{color:#fff}
    @media (max-width: 1100px){
      .nav-links{display:none}
      .menu-btn{display:grid;place-items:center}
      .dock{border-radius:28px;align-items:flex-start;flex-wrap:wrap}
      .nav-cta{margin-left:auto}
      .nav-links.open{display:flex;order:3;flex-basis:100%;justify-content:flex-start;overflow-x:auto;padding:8px 2px 2px}
      .solution-grid,.info-grid,.faq-wrap{grid-template-columns:1fr}
      .category-grid{grid-template-columns:repeat(3,1fr)}
      .reviews{grid-template-columns:repeat(2,1fr)}
      .metric-grid{grid-template-columns:repeat(2,1fr)}
      .pain-track{grid-template-columns:repeat(2,1fr)}
      .pain-track:before{display:none}
      .footer-top{grid-template-columns:1fr 1fr}
    }
    @media (max-width: 768px){
      .site-container{padding-inline:20px}
      .section{padding:66px 0}
      .section-tight{padding:54px 0}
      .hero{padding-top:132px;min-height:auto}
      .dock{width:calc(100% - 24px);padding:9px}
      .logo span{font-size:15px}
      .nav-cta{display:none}
      .hero-copy{font-size:16px}
      .score-row{grid-template-columns:1fr;gap:8px}
      .section-head{display:block}
      .category-grid{grid-template-columns:1fr 1fr}
      .module-line{grid-template-columns:42px 1fr}
      .module-line .badge{grid-column:2}
      .news-item{grid-template-columns:92px 1fr}
      .news-item img{width:92px;height:82px}
      .reviews{grid-template-columns:1fr}
      .footer-top{grid-template-columns:1fr}
      .cta{padding:28px}
      .searchbar{border-radius:24px;align-items:stretch;flex-direction:column;padding:12px}
      .searchbar .btn{width:100%}
    }
    @media (max-width: 520px){
      .category-grid,.pain-track,.metric-grid{grid-template-columns:1fr}
      .hero-title{font-size:34px}
      .btn{width:100%}
      .hero .flex-wrap{width:100%}
      .score{font-size:22px}
      .dashboard{padding:24px}
    }

/* roulang page: category2 */
:root{
      --green:#1F8A4C;
      --green-dark:#17683A;
      --green-deep:#0F3D27;
      --lime:#C8F24A;
      --lime-soft:#EFFBD1;
      --bg:#F6F8F5;
      --card:#FFFFFF;
      --text:#111827;
      --muted:#4B5563;
      --soft:#6B7280;
      --border:#E5E7EB;
      --orange:#F59E0B;
      --red:#EF4444;
      --slate:#64748B;
      --radius-sm:12px;
      --radius:18px;
      --radius-lg:26px;
      --shadow:0 12px 36px rgba(17,24,39,.08);
      --shadow-hover:0 18px 46px rgba(31,138,76,.16);
      --ring:0 0 0 4px rgba(31,138,76,.16);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(200,242,74,.18), transparent 26%),
        linear-gradient(180deg,#F8FAF6 0%,#F6F8F5 42%,#FFFFFF 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:var(--lime);color:#12351F}
    :focus-visible{outline:none;box-shadow:var(--ring)}
    .site-container{width:min(1220px,100%);margin:0 auto;padding:0 28px}
    .section{padding:88px 0}
    .section-tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      color:var(--green-dark);background:#EAF7ED;border:1px solid #CFEBD6;
      padding:7px 12px;border-radius:999px;font-size:14px;font-weight:750;
    }
    .eyebrow::before{
      content:"";width:8px;height:8px;border-radius:999px;background:var(--lime);
      box-shadow:0 0 0 4px rgba(200,242,74,.28);
    }
    .section-title{
      margin:16px 0 12px;font-weight:850;letter-spacing:.01em;
      font-size:clamp(28px,4vw,44px);line-height:1.2;color:#0F2418;
    }
    .section-desc{font-size:17px;color:var(--muted);max-width:760px}
    .dock-wrap{
      position:fixed;top:0;left:0;right:0;z-index:50;
      padding:20px 20px 0;pointer-events:none;
    }
    .dock{
      pointer-events:auto;width:min(1180px,100%);margin:0 auto;
      display:flex;align-items:center;gap:16px;justify-content:space-between;
      padding:10px 12px 10px 16px;border-radius:999px;
      background:rgba(255,255,255,.88);border:1px solid rgba(229,231,235,.94);
      box-shadow:0 12px 36px rgba(17,24,39,.10);
      backdrop-filter:blur(14px);
    }
    .logo{display:inline-flex;align-items:center;gap:10px;font-weight:850;color:#102318;white-space:nowrap}
    .logo-mark{
      width:34px;height:34px;border-radius:50%;
      display:inline-flex;align-items:center;justify-content:center;
      color:#0B2D19;font-weight:900;
      background:linear-gradient(135deg,var(--lime),#88D66A);
      box-shadow:inset 0 0 0 2px rgba(255,255,255,.45);
    }
    .nav-links{display:flex;align-items:center;gap:4px;min-width:0}
    .nav-link{
      padding:9px 12px;border-radius:999px;color:#425047;font-size:14px;font-weight:700;
      transition:.22s ease;white-space:nowrap;
    }
    .nav-link:hover{background:#EEF8EF;color:var(--green-dark);transform:translateY(-1px)}
    .nav-link.active{background:#E4F6D8;color:var(--green-dark)}
    .nav-cta{
      display:inline-flex;align-items:center;justify-content:center;min-height:42px;
      padding:0 18px;border-radius:999px;background:var(--green);color:white;
      font-weight:800;font-size:14px;box-shadow:0 10px 22px rgba(31,138,76,.22);
      transition:.22s ease;white-space:nowrap;
    }
    .nav-cta:hover{background:var(--green-dark);transform:translateY(-2px);box-shadow:0 14px 28px rgba(23,104,58,.26)}
    .menu-btn{
      display:none;width:44px;height:44px;border-radius:999px;border:1px solid var(--border);
      background:#fff;color:#173D27;font-size:20px;align-items:center;justify-content:center;
    }

    .hero{
      position:relative;padding:144px 0 78px;overflow:hidden;
    }
    .hero::before{
      content:"";position:absolute;inset:0;
      background:
        linear-gradient(90deg,rgba(246,248,245,.96) 0%,rgba(246,248,245,.86) 46%,rgba(246,248,245,.74) 100%),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      z-index:-2;
    }
    .hero::after{
      content:"";position:absolute;inset:auto -10% 0 -10%;height:180px;
      background:linear-gradient(180deg,rgba(246,248,245,0),var(--bg));z-index:-1;
    }
    .hero-grid{display:grid;grid-template-columns:1.03fr .97fr;gap:40px;align-items:center}
    .hero h1{
      margin:20px 0 18px;font-size:clamp(34px,5.2vw,62px);
      line-height:1.13;font-weight:900;color:#0D2015;letter-spacing:.01em;
      max-width:780px;
    }
    .hero-lead{font-size:18px;line-height:1.9;color:#374151;max-width:670px}
    .hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
    .btn{
      min-height:48px;display:inline-flex;align-items:center;justify-content:center;gap:8px;
      padding:0 20px;border-radius:999px;font-weight:850;border:1px solid transparent;
      transition:.22s ease;white-space:nowrap;
    }
    .btn-primary{background:var(--green);color:white;box-shadow:0 12px 26px rgba(31,138,76,.22)}
    .btn-primary:hover{background:var(--green-dark);transform:translateY(-2px);box-shadow:0 18px 34px rgba(31,138,76,.28)}
    .btn-secondary{background:#fff;color:#143820;border-color:#DDE8DE}
    .btn-secondary:hover{border-color:#BBDDBC;background:#F2FAF0;transform:translateY(-2px)}
    .calendar-panel{
      background:rgba(255,255,255,.93);border:1px solid rgba(229,231,235,.9);
      border-radius:var(--radius-lg);box-shadow:var(--shadow);padding:22px;
      position:relative;overflow:hidden;
    }
    .calendar-panel::before{
      content:"";position:absolute;right:-60px;top:-60px;width:170px;height:170px;border-radius:50%;
      background:rgba(200,242,74,.24);
    }
    .panel-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px;position:relative}
    .panel-title{font-weight:900;color:#102318;font-size:20px}
    .pill{display:inline-flex;align-items:center;gap:6px;border-radius:999px;padding:6px 10px;font-size:13px;font-weight:800}
    .pill-live{background:#FFF5DF;color:#9A5B00}
    .pill-green{background:#EAF7ED;color:var(--green-dark)}
    .pill-slate{background:#EEF2F7;color:#475569}
    .date-tabs{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-bottom:18px}
    .date-tab{
      padding:10px 8px;border-radius:14px;border:1px solid #E1E8E0;background:#FAFCF8;text-align:center;
      transition:.2s ease;
    }
    .date-tab strong{display:block;font-size:14px;color:#14231A}
    .date-tab span{font-size:12px;color:#6B7280}
    .date-tab.active{background:#143820;color:white;border-color:#143820}
    .date-tab.active strong,.date-tab.active span{color:white}
    .schedule-mini{display:flex;flex-direction:column;gap:10px}
    .mini-row{
      display:grid;grid-template-columns:66px 1fr auto;gap:12px;align-items:center;
      padding:13px;border-radius:16px;border:1px solid #EDF0EB;background:#fff;
      transition:.22s ease;
    }
    .mini-row:hover{transform:translateY(-2px);border-color:#BBDDBC;box-shadow:0 12px 24px rgba(17,24,39,.06)}
    .time{font-weight:900;color:#0F2418}
    .league{font-size:12px;color:var(--soft)}
    .teams{font-weight:850;color:#17231B;line-height:1.45}
    .status{font-size:12px;font-weight:850;border-radius:999px;padding:5px 9px;white-space:nowrap}
    .status-focus{background:#FEE2E2;color:#B91C1C}
    .status-pre{background:#EAF7ED;color:#17683A}
    .status-night{background:#EEF2F7;color:#475569}

    .filter-card{
      margin-top:-26px;position:relative;z-index:3;
      background:#fff;border:1px solid var(--border);box-shadow:var(--shadow);
      border-radius:24px;padding:18px;
    }
    .filter-grid{display:grid;grid-template-columns:1.15fr .85fr auto;gap:14px;align-items:center}
    .search-box{
      display:flex;align-items:center;gap:10px;background:#F7FAF5;border:1px solid #E0E8DF;
      min-height:50px;border-radius:999px;padding:0 16px;
    }
    .search-box input{
      width:100%;border:0;background:transparent;color:#17231B;outline:none;
    }
    .search-box input::placeholder{color:#7A867E}
    .league-select{
      min-height:50px;border-radius:999px;border:1px solid #E0E8DF;background:#F7FAF5;
      padding:0 16px;color:#27382D;font-weight:700;outline:none;width:100%;
    }
    .filter-button{
      min-height:50px;border-radius:999px;background:#102318;color:#fff;font-weight:850;padding:0 22px;
      transition:.22s ease;
    }
    .filter-button:hover{background:var(--green-dark);transform:translateY(-2px)}
    .chips{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
    .chip{
      border:1px solid #DCE8DB;background:#FBFDF9;color:#3C4D42;padding:7px 12px;border-radius:999px;
      font-size:13px;font-weight:750;transition:.2s ease;
    }
    .chip:hover,.chip.active{background:#E4F6D8;border-color:#BBDDBC;color:var(--green-dark)}

    .timeline-wrap{
      display:grid;grid-template-columns:280px 1fr;gap:28px;align-items:start;
    }
    .date-rail{
      position:sticky;top:96px;background:#fff;border:1px solid var(--border);border-radius:22px;
      padding:16px;box-shadow:0 10px 28px rgba(17,24,39,.05);
    }
    .rail-item{
      display:flex;align-items:center;justify-content:space-between;gap:10px;
      padding:13px 14px;border-radius:16px;margin-bottom:8px;color:#4B5563;font-weight:800;
      transition:.2s ease;
    }
    .rail-item:hover{background:#F1F8EE;color:var(--green-dark)}
    .rail-item.active{background:#143820;color:#fff}
    .rail-item span:last-child{font-size:12px;padding:3px 8px;border-radius:999px;background:rgba(255,255,255,.18)}
    .day-group{
      background:#fff;border:1px solid var(--border);border-radius:24px;padding:20px;
      box-shadow:0 10px 30px rgba(17,24,39,.05);margin-bottom:18px;
    }
    .day-head{
      display:flex;align-items:flex-end;justify-content:space-between;gap:16px;
      padding-bottom:15px;border-bottom:1px solid #EDF0EA;margin-bottom:14px;
    }
    .day-head h3{font-size:24px;font-weight:900;color:#102318}
    .day-head p{color:var(--soft);font-size:14px}
    .match-list{display:flex;flex-direction:column;gap:12px}
    .match-row{
      display:grid;grid-template-columns:98px 118px 1fr 110px;gap:16px;align-items:center;
      padding:15px;border-radius:18px;border:1px solid #EDF0EA;background:#FBFDF9;
      transition:.22s ease;
    }
    .match-row:hover{background:#fff;border-color:#BBDDBC;box-shadow:var(--shadow-hover);transform:translateY(-2px)}
    .match-time strong{display:block;font-size:18px;color:#0F2418}
    .match-time span,.match-league span{display:block;font-size:12px;color:#6B7280}
    .match-league strong{font-size:14px;color:#38473D}
    .match-teams{display:flex;align-items:center;justify-content:center;gap:14px;font-weight:900;color:#17231B}
    .match-teams .vs{
      color:#758176;font-size:13px;border:1px solid #DCE8DB;border-radius:999px;padding:3px 8px;background:#fff;
    }
    .match-action{text-align:right}
    .link-arrow{font-weight:850;color:var(--green-dark);font-size:14px;display:inline-flex;gap:4px;align-items:center}
    .link-arrow span{transition:.2s ease}
    .match-row:hover .link-arrow span,.card:hover .link-arrow span{transform:translateX(3px)}

    .feature-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:26px;align-items:stretch}
    .image-card{
      position:relative;border-radius:26px;overflow:hidden;min-height:440px;box-shadow:var(--shadow);
      background:#0F2418;
    }
    .image-card img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;opacity:.78}
    .image-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,36,24,.05),rgba(15,36,24,.82))}
    .image-card-content{position:absolute;left:24px;right:24px;bottom:24px;z-index:2;color:#fff}
    .image-card-content h3{font-size:28px;font-weight:900;line-height:1.25;margin-bottom:10px}
    .image-card-content p{color:#D7E4D8}
    .insight-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
    .card{
      background:#fff;border:1px solid var(--border);border-radius:22px;padding:20px;
      box-shadow:0 10px 28px rgba(17,24,39,.05);transition:.22s ease;
    }
    .card:hover{border-color:#BBDDBC;box-shadow:var(--shadow-hover);transform:translateY(-3px)}
    .icon-dot{
      width:42px;height:42px;border-radius:14px;display:flex;align-items:center;justify-content:center;
      background:#EAF7ED;color:var(--green-dark);font-weight:900;margin-bottom:14px;
    }
    .card h3{font-size:20px;font-weight:900;color:#102318;margin-bottom:8px}
    .card p{color:#536058;font-size:15px;line-height:1.75}
    .stat-strip{
      display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:24px;
    }
    .stat{
      padding:18px;border-radius:20px;background:#fff;border:1px solid #E3EAE1;
    }
    .stat strong{display:block;font-size:28px;color:#143820;font-weight:950}
    .stat span{color:#68766D;font-size:14px}

    .calendar-board{
      background:#102318;color:#fff;border-radius:28px;padding:28px;overflow:hidden;position:relative;
    }
    .calendar-board::before{
      content:"";position:absolute;inset:0;
      background:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.05) 1px, transparent 1px);
      background-size:42px 42px;opacity:.45;
    }
    .board-content{position:relative;z-index:2}
    .week-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:10px;margin-top:22px}
    .week-cell{
      min-height:118px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);
      border-radius:18px;padding:12px;transition:.22s ease;
    }
    .week-cell:hover{background:rgba(200,242,74,.12);transform:translateY(-2px)}
    .week-cell .date{font-weight:900;color:#fff}
    .week-cell .note{font-size:12px;color:#B8C8BD;margin-top:4px}
    .week-cell .tag{display:inline-flex;margin-top:12px;padding:4px 8px;border-radius:999px;background:rgba(200,242,74,.18);color:#E8FF9A;font-size:12px;font-weight:800}
    .week-cell.highlight{border-color:rgba(200,242,74,.55);background:rgba(200,242,74,.14)}

    .faq-list{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    details{
      background:#fff;border:1px solid var(--border);border-radius:20px;padding:18px 20px;
      box-shadow:0 10px 26px rgba(17,24,39,.04);transition:.2s ease;
    }
    details:hover{border-color:#BBDDBC}
    details[open]{box-shadow:var(--shadow)}
    summary{
      list-style:none;cursor:pointer;font-weight:900;color:#102318;display:flex;justify-content:space-between;gap:16px;
    }
    summary::-webkit-details-marker{display:none}
    summary::after{content:"+";color:var(--green);font-size:22px;line-height:1}
    details[open] summary::after{content:"−"}
    details p{margin-top:12px;color:#536058;font-size:15px;line-height:1.8}

    .cta{
      background:#EAF7ED;border:1px solid #D5EBD8;border-radius:30px;padding:36px;
      display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center;position:relative;overflow:hidden;
    }
    .cta::before{
      content:"";position:absolute;right:-80px;bottom:-100px;width:260px;height:260px;border-radius:50%;
      background:rgba(200,242,74,.35);
    }
    .cta > *{position:relative;z-index:2}
    .cta h2{font-size:clamp(26px,3.4vw,40px);line-height:1.22;font-weight:900;color:#102318;margin-bottom:10px}
    .cta p{color:#44564B;max-width:700px}
    .cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}

    footer{background:#071A10;color:#E8F2EA;padding:58px 0 24px}
    .footer-top{display:grid;grid-template-columns:1.5fr .75fr .75fr .75fr;gap:34px;padding-bottom:34px;border-bottom:1px solid rgba(255,255,255,.12)}
    .footer-title{font-weight:900;color:#fff;margin-bottom:14px}
    .footer-link{display:block;color:#B8C8BD;margin:8px 0;transition:.2s ease}
    .footer-link:hover{color:var(--lime);transform:translateX(3px)}
    .footer-bottom{text-align:center;color:#AEBDB2;font-size:14px;padding-top:22px;line-height:1.85}
    .footer-bottom a{color:#D6E7DA;transition:.2s ease}
    .footer-bottom a:hover{color:var(--lime)}

    @media (max-width:1080px){
      .dock{border-radius:28px;align-items:flex-start;flex-wrap:wrap}
      .nav-links{
        order:4;width:100%;display:none;padding:8px 2px 2px;overflow-x:auto;
      }
      .nav-links.open{display:flex}
      .menu-btn{display:flex}
      .nav-cta{margin-left:auto}
      .hero-grid,.feature-grid{grid-template-columns:1fr}
      .timeline-wrap{grid-template-columns:1fr}
      .date-rail{position:relative;top:auto;display:flex;overflow-x:auto;gap:8px}
      .rail-item{min-width:150px;margin-bottom:0}
      .footer-top{grid-template-columns:1fr 1fr}
      .filter-grid{grid-template-columns:1fr 1fr}
      .filter-button{grid-column:1/-1}
    }
    @media (max-width:768px){
      .site-container{padding:0 20px}
      .section{padding:68px 0}
      .hero{padding:128px 0 58px}
      .dock-wrap{padding:14px 12px 0}
      .dock{padding:9px 10px}
      .logo span:last-child{font-size:15px}
      .nav-cta{display:none}
      .hero-actions,.cta-actions{width:100%}
      .btn{width:100%}
      .date-tabs{grid-template-columns:repeat(2,1fr)}
      .filter-grid{grid-template-columns:1fr}
      .match-row{grid-template-columns:1fr;gap:9px}
      .match-teams{justify-content:flex-start;flex-wrap:wrap}
      .match-action{text-align:left}
      .insight-grid,.stat-strip,.faq-list{grid-template-columns:1fr}
      .week-grid{grid-template-columns:repeat(2,1fr)}
      .cta{grid-template-columns:1fr;padding:26px}
      .footer-top{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .hero h1{font-size:34px}
      .mini-row{grid-template-columns:1fr}
      .panel-head{align-items:flex-start;flex-direction:column}
      .week-grid{grid-template-columns:1fr}
      .day-head{align-items:flex-start;flex-direction:column}
      .calendar-board{padding:22px}
    }

/* roulang page: category1 */
:root {
      --green: #1F8A4C;
      --green-dark: #17683A;
      --green-soft: #E9F7ED;
      --lime: #C8F24A;
      --ink: #111827;
      --muted: #4B5563;
      --subtle: #64748B;
      --line: #E5E7EB;
      --paper: #FFFFFF;
      --bg: #F6F8F5;
      --orange: #F59E0B;
      --red: #EF4444;
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 24px;
      --shadow: 0 12px 36px rgba(17, 24, 39, .08);
      --shadow-strong: 0 18px 48px rgba(23, 104, 58, .16);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      color: var(--ink);
      background:
        linear-gradient(180deg, rgba(233, 247, 237, .86), rgba(246, 248, 245, 1) 380px),
        radial-gradient(circle at 12% 20%, rgba(200, 242, 74, .16), transparent 28%),
        var(--bg);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background-color .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      background: rgba(200, 242, 74, .55);
      color: var(--green-dark);
    }

    .site-container {
      width: min(1220px, calc(100% - 40px));
      margin: 0 auto;
    }

    .dock-wrap {
      position: fixed;
      top: 18px;
      left: 0;
      right: 0;
      z-index: 50;
      padding: 0 20px;
      pointer-events: none;
    }

    .dock {
      width: min(1180px, 100%);
      margin: 0 auto;
      min-height: 68px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px 12px 10px 16px;
      border: 1px solid rgba(229, 231, 235, .92);
      border-radius: 999px;
      background: rgba(255, 255, 255, .88);
      box-shadow: 0 14px 42px rgba(17, 24, 39, .10);
      backdrop-filter: blur(16px);
      pointer-events: auto;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
      font-weight: 800;
      color: var(--green-dark);
      white-space: nowrap;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 32% 24%, var(--lime), var(--green) 68%);
      color: #ffffff;
      font-size: 18px;
      box-shadow: inset 0 -4px 10px rgba(23, 104, 58, .25), 0 8px 18px rgba(31, 138, 76, .18);
    }

    .nav-links {
      flex: 1 1 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      min-width: 0;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 13px;
      border-radius: 999px;
      color: #374151;
      font-size: 15px;
      font-weight: 650;
      white-space: nowrap;
    }

    .nav-link:hover {
      background: var(--green-soft);
      color: var(--green-dark);
      transform: translateY(-1px);
    }

    .nav-link.active {
      background: #DDF3E4;
      color: var(--green-dark);
      box-shadow: inset 0 0 0 1px rgba(31, 138, 76, .12);
    }

    .nav-cta {
      flex: 0 0 auto;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--green);
      color: #fff;
      font-weight: 750;
      font-size: 15px;
      box-shadow: 0 10px 22px rgba(31, 138, 76, .25);
    }

    .nav-cta:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
      box-shadow: var(--shadow-strong);
    }

    .menu-btn {
      display: none;
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 999px;
      background: var(--green-soft);
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 800;
    }

    .nav-link:focus-visible,
    .nav-cta:focus-visible,
    .menu-btn:focus-visible,
    .btn:focus-visible,
    .filter-pill:focus-visible,
    .faq-question:focus-visible,
    input:focus-visible {
      outline: 3px solid rgba(200, 242, 74, .8);
      outline-offset: 3px;
    }

    main {
      padding-top: 112px;
    }

    .section {
      padding: 86px 0;
    }

    .section-tight {
      padding: 62px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(31, 138, 76, .10);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 750;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--lime);
      box-shadow: 0 0 0 4px rgba(200, 242, 74, .25);
    }

    .hero {
      position: relative;
      padding: 40px 0 88px;
    }

    .hero-shell {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      background:
        linear-gradient(90deg, rgba(246, 248, 245, .96) 0%, rgba(246, 248, 245, .90) 48%, rgba(17, 24, 39, .28) 100%),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      border: 1px solid rgba(229, 231, 235, .9);
      box-shadow: var(--shadow);
      padding: clamp(28px, 5vw, 58px);
    }

    .hero-shell::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(31, 138, 76, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 138, 76, .06) 1px, transparent 1px);
      background-size: 44px 44px;
      pointer-events: none;
      mask-image: linear-gradient(90deg, #000, transparent 82%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      margin: 18px 0 18px;
      max-width: 780px;
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1.14;
      font-weight: 850;
      color: var(--ink);
    }

    .hero-lead {
      max-width: 680px;
      color: var(--muted);
      font-size: clamp(16px, 2vw, 19px);
      line-height: 1.85;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 780;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
    }

    .btn-primary {
      background: var(--green);
      color: #fff;
      box-shadow: 0 12px 28px rgba(31, 138, 76, .25);
    }

    .btn-primary:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-strong);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, .88);
      color: var(--green-dark);
      border-color: rgba(31, 138, 76, .18);
    }

    .btn-secondary:hover {
      background: var(--green-soft);
      transform: translateY(-2px);
      border-color: rgba(31, 138, 76, .32);
    }

    .match-panel {
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, .94);
      border: 1px solid rgba(229, 231, 235, .95);
      border-radius: 24px;
      box-shadow: 0 18px 44px rgba(17, 24, 39, .12);
      padding: 18px;
    }

    .panel-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .status-dot {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--subtle);
      font-size: 14px;
      font-weight: 650;
    }

    .status-dot::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 4px rgba(245, 158, 11, .13);
    }

    .score-card,
    .compact-match {
      display: grid;
      grid-template-columns: minmax(92px, .8fr) minmax(180px, 1.6fr) minmax(80px, .7fr) minmax(82px, .5fr);
      align-items: center;
      gap: 14px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--paper);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .score-card:hover,
    .compact-match:hover,
    .feature-card:hover,
    .advice-card:hover,
    .observation-card:hover {
      transform: translateY(-3px);
      border-color: rgba(31, 138, 76, .32);
      box-shadow: var(--shadow);
    }

    .score-list {
      display: grid;
      gap: 12px;
    }

    .league {
      font-weight: 800;
      color: var(--green-dark);
      font-size: 14px;
    }

    .time {
      color: var(--subtle);
      font-size: 13px;
      margin-top: 2px;
    }

    .teams {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-width: 0;
    }

    .team-name {
      font-weight: 780;
      color: #1F2937;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .score {
      min-width: 72px;
      text-align: center;
      padding: 6px 12px;
      border-radius: 12px;
      background: #111827;
      color: #fff;
      font-size: 20px;
      font-weight: 850;
      line-height: 1.1;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 750;
      white-space: nowrap;
    }

    .badge-live {
      background: rgba(245, 158, 11, .13);
      color: #A15C03;
    }

    .badge-soon {
      background: rgba(100, 116, 139, .13);
      color: #475569;
    }

    .badge-end {
      background: rgba(31, 138, 76, .12);
      color: var(--green-dark);
    }

    .badge-focus {
      background: rgba(239, 68, 68, .11);
      color: #B91C1C;
    }

    .filter-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 10px 26px rgba(17, 24, 39, .05);
      overflow-x: auto;
      scrollbar-width: thin;
    }

    .filter-pill {
      border: 0;
      flex: 0 0 auto;
      min-height: 40px;
      padding: 0 16px;
      border-radius: 999px;
      color: #374151;
      background: #F3F6F1;
      font-weight: 750;
      transition: transform .2s ease, background-color .2s ease, color .2s ease;
    }

    .filter-pill:hover,
    .filter-pill.active {
      background: var(--green);
      color: #fff;
      transform: translateY(-1px);
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-title h2 {
      margin-top: 14px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.2;
      font-weight: 850;
    }

    .section-title p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
    }

    .surface {
      background: rgba(255, 255, 255, .76);
      border-top: 1px solid rgba(229, 231, 235, .8);
      border-bottom: 1px solid rgba(229, 231, 235, .8);
    }

    .feature-card,
    .advice-card,
    .observation-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--paper);
      box-shadow: 0 8px 24px rgba(17, 24, 39, .04);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .feature-card {
      overflow: hidden;
    }

    .feature-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
    }

    .feature-body {
      padding: 22px;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .metric {
      padding: 20px;
      border-radius: 20px;
      background: linear-gradient(180deg, #FFFFFF, #F5FAF6);
      border: 1px solid var(--line);
    }

    .metric strong {
      display: block;
      color: var(--green-dark);
      font-size: 30px;
      line-height: 1;
      font-weight: 900;
    }

    .metric span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .advice-card {
      padding: 24px;
      display: flex;
      gap: 16px;
    }

    .step-num {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--green-dark);
      color: #fff;
      font-weight: 850;
    }

    .observation-card {
      padding: 24px;
      min-height: 100%;
    }

    .observation-card .tag-line {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0;
    }

    .mini-tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 3px 9px;
      border-radius: 999px;
      background: var(--green-soft);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 750;
    }

    .visual-block {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      min-height: 440px;
      background: #0C2A1A;
      box-shadow: var(--shadow);
    }

    .visual-block img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .72;
    }

    .visual-block::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(12, 42, 26, .90), rgba(12, 42, 26, .36));
    }

    .visual-content {
      position: relative;
      z-index: 1;
      padding: clamp(28px, 5vw, 54px);
      color: #fff;
      max-width: 660px;
    }

    .visual-content p {
      color: #D5E2D9;
      margin-top: 14px;
      font-size: 17px;
    }

    .progress-row {
      margin-top: 26px;
      display: grid;
      gap: 14px;
    }

    .progress-item {
      padding: 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, .10);
      border: 1px solid rgba(255, 255, 255, .16);
    }

    .progress-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: #fff;
      font-weight: 750;
      margin-bottom: 10px;
    }

    .progress-track {
      height: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .20);
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      border-radius: inherit;
      background: var(--lime);
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 8px 22px rgba(17, 24, 39, .04);
    }

    .faq-question {
      width: 100%;
      min-height: 58px;
      padding: 18px 22px;
      border: 0;
      background: #fff;
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      text-align: left;
      font-weight: 800;
    }

    .faq-question span:first-child {
      min-width: 0;
    }

    .faq-icon {
      flex: 0 0 auto;
      width: 30px;
      height: 30px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--green-soft);
      color: var(--green-dark);
      font-size: 20px;
      transition: transform .2s ease;
    }

    .faq-answer {
      display: none;
      padding: 0 22px 20px;
      color: var(--muted);
      line-height: 1.85;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .cta {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(31, 138, 76, .96), rgba(23, 104, 58, .96)),
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, .12) 50%, transparent 51%);
      color: #fff;
      padding: clamp(28px, 5vw, 52px);
      box-shadow: var(--shadow-strong);
    }

    .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, .10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
      background-size: 38px 38px;
      opacity: .7;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.35fr .8fr;
      gap: 28px;
      align-items: center;
    }

    .cta p {
      color: #DDF3E4;
      margin-top: 12px;
      font-size: 17px;
      line-height: 1.85;
    }

    .cta-panel {
      border-radius: 22px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .18);
      padding: 18px;
    }

    .cta .btn-secondary {
      background: #fff;
      color: var(--green-dark);
      border-color: rgba(255, 255, 255, .4);
    }

    footer {
      background: #071B11;
      color: #fff;
      padding: 64px 0 28px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.45fr .7fr .7fr .7fr;
      gap: 34px;
      padding-bottom: 38px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-title {
      color: #fff;
      font-size: 16px;
      font-weight: 850;
      margin-bottom: 14px;
    }

    .footer-link {
      display: block;
      color: #B8C8BD;
      margin: 9px 0;
      font-size: 15px;
    }

    .footer-link:hover,
    .footer-bottom a:hover {
      color: var(--lime);
    }

    .footer-bottom {
      padding-top: 24px;
      text-align: center;
      color: #AFC0B5;
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-bottom a {
      color: #D4E1D8;
    }

    @media (max-width: 1100px) {
      .dock {
        border-radius: 28px;
        align-items: flex-start;
        flex-wrap: wrap;
      }

      .nav-links {
        order: 4;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 4px 2px 0;
      }

      .nav-cta {
        margin-left: auto;
      }

      .hero-shell {
        background:
          linear-gradient(180deg, rgba(246, 248, 245, .96) 0%, rgba(246, 248, 245, .90) 58%, rgba(17, 24, 39, .24) 100%),
          url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      }

      .metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 32px, 1220px);
      }

      .dock-wrap {
        top: 12px;
        padding: 0 12px;
      }

      .dock {
        min-height: 62px;
        padding: 9px;
        border-radius: 24px;
      }

      .logo span:last-child {
        font-size: 15px;
      }

      .logo-mark {
        width: 36px;
        height: 36px;
      }

      .menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        overflow: visible;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-link {
        width: 100%;
        justify-content: center;
      }

      .nav-cta {
        display: none;
      }

      main {
        padding-top: 92px;
      }

      .hero {
        padding: 24px 0 58px;
      }

      .hero-shell {
        border-radius: 24px;
      }

      .section,
      .section-tight {
        padding: 58px 0;
      }

      .score-card,
      .compact-match {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .teams {
        justify-content: space-between;
      }

      .score {
        min-width: 64px;
        font-size: 18px;
      }

      .metric-grid {
        grid-template-columns: 1fr;
      }

      .advice-card {
        flex-direction: column;
      }

      .visual-block {
        min-height: auto;
      }

      .visual-block img {
        position: absolute;
      }

      .visual-content {
        padding: 30px 22px;
      }

      .cta-inner {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .btn-row {
        width: 100%;
      }

      .btn {
        width: 100%;
      }

      .hero h1 {
        font-size: 34px;
      }

      .filter-bar {
        border-radius: 20px;
      }

      .feature-card img {
        height: 180px;
      }

      .teams {
        align-items: stretch;
        flex-direction: column;
      }

      .score {
        width: 100%;
      }

      .footer-bottom {
        font-size: 13px;
      }
    }

/* roulang page: category4 */
:root {
      --green: #1F8A4C;
      --green-dark: #17683A;
      --green-soft: #EAF7EE;
      --lime: #C8F24A;
      --ink: #111827;
      --muted: #4B5563;
      --subtle: #6B7280;
      --line: #E5E7EB;
      --paper: #FFFFFF;
      --bg: #F6F8F5;
      --orange: #F59E0B;
      --red: #EF4444;
      --slate: #64748B;
      --radius: 20px;
      --shadow: 0 12px 36px rgba(17, 24, 39, .08);
      --shadow-hover: 0 18px 48px rgba(17, 24, 39, .12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 10% 0%, rgba(200, 242, 74, .16), transparent 28%),
        linear-gradient(180deg, #F8FBF6 0%, var(--bg) 44%, #FFFFFF 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 3px solid rgba(200, 242, 74, .78);
      outline-offset: 3px;
    }

    .site-container {
      width: min(1240px, calc(100% - 40px));
      margin: 0 auto;
    }

    .section {
      padding: 92px 0;
    }

    .section-tight {
      padding: 70px 0;
    }

    .dock-wrap {
      position: fixed;
      top: 18px;
      left: 0;
      right: 0;
      z-index: 50;
      pointer-events: none;
    }

    .dock {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      min-height: 66px;
      padding: 10px 12px 10px 18px;
      display: flex;
      align-items: center;
      gap: 18px;
      border: 1px solid rgba(229, 231, 235, .92);
      border-radius: 999px;
      background: rgba(255, 255, 255, .88);
      box-shadow: 0 16px 44px rgba(17, 24, 39, .10);
      backdrop-filter: blur(18px);
      pointer-events: auto;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--green-dark);
      white-space: nowrap;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #12351F;
      font-weight: 900;
      background:
        linear-gradient(135deg, var(--lime), #F2FFD0 45%, #FFFFFF 46%, #CFEF94 100%);
      border: 1px solid rgba(31, 138, 76, .18);
      box-shadow: inset 0 -3px 8px rgba(31, 138, 76, .16);
    }

    .nav-links {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    .nav-link {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 13px;
      border-radius: 999px;
      color: #374151;
      font-size: 14px;
      font-weight: 650;
      transition: transform .2s ease, background .2s ease, color .2s ease;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link.active {
      background: var(--green-soft);
      color: var(--green-dark);
      transform: translateY(-1px);
    }

    .nav-cta {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 18px;
      border-radius: 999px;
      color: #FFFFFF;
      background: var(--green);
      font-size: 14px;
      font-weight: 760;
      box-shadow: 0 10px 22px rgba(31, 138, 76, .22);
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(31, 138, 76, .30);
    }

    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #FFFFFF;
      color: var(--green-dark);
      font-weight: 800;
    }

    .hero {
      position: relative;
      padding: 150px 0 86px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.70)),
        url("/assets/images/backpic/back-2.webp");
      background-size: cover;
      background-position: center;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -10% -22% -10%;
      height: 48%;
      background: linear-gradient(180deg, transparent, rgba(246, 248, 245, .96));
      z-index: -1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border: 1px solid rgba(31, 138, 76, .16);
      border-radius: 999px;
      color: var(--green-dark);
      background: rgba(255, 255, 255, .72);
      font-size: 14px;
      font-weight: 760;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 5px rgba(200, 242, 74, .22);
    }

    .hero h1 {
      margin: 22px 0 18px;
      max-width: 760px;
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1.14;
      font-weight: 850;
      color: #0F1F17;
    }

    .hero-copy {
      max-width: 660px;
      color: #415044;
      font-size: 18px;
      line-height: 1.9;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 780;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: var(--green);
      color: #FFFFFF;
      box-shadow: 0 14px 30px rgba(31, 138, 76, .24);
    }

    .btn-primary:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(31, 138, 76, .30);
    }

    .btn-secondary {
      color: var(--green-dark);
      background: rgba(255, 255, 255, .82);
      border-color: rgba(31, 138, 76, .18);
    }

    .btn-secondary:hover {
      border-color: rgba(31, 138, 76, .38);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .hero-panel {
      border: 1px solid rgba(229, 231, 235, .86);
      border-radius: 28px;
      background: rgba(255, 255, 255, .86);
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
      overflow: hidden;
    }

    .panel-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
    }

    .metric-card,
    .info-card,
    .analysis-card,
    .faq-item,
    .flow-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 10px 28px rgba(17, 24, 39, .05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .metric-card:hover,
    .info-card:hover,
    .analysis-card:hover,
    .flow-card:hover {
      transform: translateY(-3px);
      border-color: rgba(31, 138, 76, .28);
      box-shadow: var(--shadow-hover);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 760;
      background: var(--green-soft);
      color: var(--green-dark);
      white-space: nowrap;
    }

    .badge-warn {
      background: rgba(245, 158, 11, .12);
      color: #9A5E00;
    }

    .badge-hot {
      background: rgba(239, 68, 68, .11);
      color: #B91C1C;
    }

    .data-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      padding: 16px 20px;
      border-bottom: 1px solid var(--line);
    }

    .data-row:last-child {
      border-bottom: 0;
    }

    .bar {
      height: 10px;
      border-radius: 999px;
      background: #EEF2EE;
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--green), var(--lime));
    }

    .comparison {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      min-height: 420px;
      background: #0F2518;
      color: #FFFFFF;
      box-shadow: var(--shadow);
    }

    .comparison img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .34;
    }

    .comparison::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(15, 37, 24, .92), rgba(15, 37, 24, .62)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 76px);
    }

    .comparison-content {
      position: relative;
      z-index: 1;
      padding: 38px;
    }

    .team-line {
      display: grid;
      grid-template-columns: 128px 1fr 58px;
      gap: 16px;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .search-box {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px;
      border: 1px solid rgba(31, 138, 76, .18);
      border-radius: 999px;
      background: #FFFFFF;
      box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
    }

    .search-box input {
      width: 100%;
      min-height: 44px;
      border: 0;
      padding: 0 14px;
      color: var(--ink);
      background: transparent;
      outline: none;
    }

    .search-box button {
      min-height: 44px;
      padding: 0 18px;
      border: 0;
      border-radius: 999px;
      background: var(--green);
      color: #FFFFFF;
      font-weight: 780;
      transition: background .2s ease, transform .2s ease;
      white-space: nowrap;
    }

    .search-box button:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .section-title {
      max-width: 760px;
    }

    .section-title h2 {
      font-size: clamp(28px, 3.4vw, 42px);
      line-height: 1.22;
      font-weight: 820;
      color: #102016;
    }

    .section-title p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
    }

    .flow-card {
      padding: 24px;
      position: relative;
    }

    .flow-index {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #102016;
      color: var(--lime);
      font-weight: 850;
    }

    .faq-item {
      overflow: hidden;
      box-shadow: none;
    }

    .faq-question {
      width: 100%;
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 22px;
      border: 0;
      background: #FFFFFF;
      color: var(--ink);
      text-align: left;
      font-weight: 780;
    }

    .faq-question span:last-child {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--green-soft);
      color: var(--green-dark);
      flex: 0 0 auto;
      transition: transform .2s ease;
    }

    .faq-answer {
      display: none;
      padding: 0 22px 20px;
      color: var(--muted);
      line-height: 1.85;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-question span:last-child {
      transform: rotate(45deg);
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(31, 138, 76, .96), rgba(23, 104, 58, .94)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 1px, transparent 1px 80px);
      color: #FFFFFF;
      box-shadow: var(--shadow);
    }

    .cta-band::after {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 260px;
      height: 260px;
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 50%;
    }

    footer {
      background: #0D1F14;
      color: #FFFFFF;
      padding: 66px 0 30px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr .8fr .8fr .8fr;
      gap: 42px;
      padding-bottom: 42px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-title {
      color: #FFFFFF;
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .footer-link {
      display: block;
      color: #B8C8BD;
      padding: 7px 0;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-link:hover {
      color: var(--lime);
      transform: translateX(2px);
    }

    .footer-bottom {
      padding-top: 26px;
      text-align: center;
      color: #AAB8AF;
      font-size: 14px;
      line-height: 1.9;
    }

    .footer-bottom a:hover {
      color: var(--lime);
    }

    @media (max-width: 1100px) {
      .dock {
        gap: 10px;
      }

      .nav-link {
        padding: 0 10px;
        font-size: 13px;
      }

      .nav-cta {
        display: none;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 860px) {
      .dock {
        align-items: center;
        border-radius: 26px;
        flex-wrap: wrap;
      }

      .menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
      }

      .nav-links {
        display: none;
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 8px 2px 2px;
      }

      .nav-links.open {
        display: flex;
      }

      .hero {
        padding-top: 132px;
      }

      .team-line {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .comparison-content {
        padding: 28px;
      }
    }

    @media (max-width: 640px) {
      .site-container {
        width: min(100% - 32px, 1240px);
      }

      .section,
      .section-tight {
        padding: 58px 0;
      }

      .dock-wrap {
        top: 10px;
      }

      .dock {
        width: calc(100% - 20px);
        padding: 9px 10px 9px 12px;
      }

      .logo span:last-child {
        font-size: 15px;
      }

      .logo-mark {
        width: 34px;
        height: 34px;
      }

      .hero-copy {
        font-size: 16px;
      }

      .search-box {
        border-radius: 22px;
        align-items: stretch;
        flex-direction: column;
      }

      .search-box button {
        width: 100%;
      }

      .data-row {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .cta-band {
        border-radius: 24px;
      }
    }

/* roulang page: category3 */
:root {
      --green: #1F8A4C;
      --green-dark: #17683A;
      --green-soft: #EAF6EC;
      --lime: #C8F24A;
      --ink: #111827;
      --muted: #4B5563;
      --soft: #F6F8F5;
      --border: #E5E7EB;
      --line: rgba(31, 138, 76, .18);
      --orange: #F59E0B;
      --red: #EF4444;
      --slate: #64748B;
      --shadow: 0 18px 46px rgba(17, 24, 39, .09);
      --shadow-hover: 0 22px 58px rgba(17, 24, 39, .13);
      --radius: 22px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 9% 12%, rgba(200, 242, 74, .18), transparent 28%),
        radial-gradient(circle at 92% 4%, rgba(31, 138, 76, .11), transparent 32%),
        linear-gradient(180deg, #F7FAF6 0%, #FFFFFF 42%, #F6F8F5 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      background: rgba(200, 242, 74, .65);
      color: #0B2616;
    }

    .site-container {
      width: min(1200px, calc(100% - 40px));
      margin: 0 auto;
    }

    .dock-wrap {
      position: fixed;
      top: 18px;
      left: 0;
      right: 0;
      z-index: 50;
      pointer-events: none;
    }

    .dock {
      pointer-events: auto;
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
      min-height: 68px;
      padding: 10px 12px 10px 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      border: 1px solid rgba(229, 231, 235, .92);
      border-radius: 999px;
      background: rgba(255, 255, 255, .88);
      box-shadow: 0 16px 42px rgba(17, 24, 39, .08);
      backdrop-filter: blur(16px);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: #12351F;
      white-space: nowrap;
      letter-spacing: .01em;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #0D2415;
      font-weight: 900;
      background:
        linear-gradient(135deg, var(--lime), #FFFFFF 55%, #A7DF3A),
        radial-gradient(circle at center, rgba(31, 138, 76, .18), transparent 62%);
      box-shadow: inset 0 0 0 2px rgba(31, 138, 76, .16), 0 8px 18px rgba(31, 138, 76, .18);
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 13px;
      border-radius: 999px;
      color: #374151;
      font-size: 14px;
      font-weight: 650;
      transition: transform .22s ease, background .22s ease, color .22s ease;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      outline: none;
      transform: translateY(-1px);
      background: var(--green-soft);
      color: var(--green-dark);
    }

    .nav-link.active {
      background: #E2F4D7;
      color: var(--green-dark);
    }

    .nav-cta {
      min-height: 44px;
      padding: 0 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: var(--green);
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 12px 24px rgba(31, 138, 76, .26);
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
      white-space: nowrap;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible {
      outline: none;
      transform: translateY(-2px);
      background: var(--green-dark);
      box-shadow: 0 16px 32px rgba(31, 138, 76, .32);
    }

    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: #F1F6EF;
      color: var(--green-dark);
      font-size: 22px;
      transition: background .2s ease, transform .2s ease;
    }

    .menu-btn:hover,
    .menu-btn:focus-visible {
      outline: 3px solid rgba(200, 242, 74, .45);
      background: #E6F2DF;
    }

    main {
      padding-top: 112px;
    }

    .section {
      padding: 88px 0;
    }

    .section-tight {
      padding: 68px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid rgba(31, 138, 76, .18);
      border-radius: 999px;
      background: rgba(234, 246, 236, .78);
      color: var(--green-dark);
      font-weight: 800;
      font-size: 14px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--lime);
      box-shadow: 0 0 0 4px rgba(200, 242, 74, .24);
    }

    .hero {
      position: relative;
      min-height: 690px;
      display: flex;
      align-items: center;
      overflow: hidden;
      border-bottom: 1px solid rgba(229, 231, 235, .72);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(247, 250, 246, .96) 0%, rgba(247, 250, 246, .82) 48%, rgba(247, 250, 246, .58) 100%),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(31, 138, 76, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 138, 76, .08) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.72), transparent 88%);
      z-index: -1;
    }

    .hero-title {
      font-size: clamp(2.3rem, 5vw, 4.1rem);
      line-height: 1.14;
      letter-spacing: -.02em;
      font-weight: 900;
      color: #0E1F14;
    }

    .hero-text {
      font-size: 18px;
      color: #435046;
      line-height: 1.9;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 800;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
    }

    .btn-primary {
      color: #fff;
      background: var(--green);
      box-shadow: 0 14px 30px rgba(31, 138, 76, .28);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      outline: none;
      transform: translateY(-2px);
      background: var(--green-dark);
      box-shadow: 0 18px 38px rgba(31, 138, 76, .34);
    }

    .btn-secondary {
      color: var(--green-dark);
      background: rgba(255,255,255,.88);
      border: 1px solid rgba(31, 138, 76, .18);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      outline: none;
      transform: translateY(-2px);
      background: #F2F9EC;
      border-color: rgba(31, 138, 76, .34);
    }

    .rank-panel,
    .card {
      border: 1px solid rgba(229, 231, 235, .9);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .88);
      box-shadow: var(--shadow);
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }

    .card:hover,
    .rank-panel:hover {
      transform: translateY(-3px);
      border-color: rgba(31, 138, 76, .26);
      box-shadow: var(--shadow-hover);
    }

    .hero-board {
      border-radius: 30px;
      background:
        linear-gradient(145deg, rgba(13, 45, 25, .94), rgba(20, 77, 41, .91)),
        url('/assets/images/coverpic/cover-5.webp') center/cover no-repeat;
      color: #fff;
      box-shadow: 0 24px 60px rgba(17, 24, 39, .22);
      border: 1px solid rgba(255, 255, 255, .18);
      overflow: hidden;
      position: relative;
    }

    .hero-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 72% 20%, rgba(200, 242, 74, .22), transparent 28%),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
      background-size: auto, 52px 52px;
      pointer-events: none;
    }

    .board-inner {
      position: relative;
      z-index: 1;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .badge-green {
      background: #E6F6E8;
      color: var(--green-dark);
    }

    .badge-lime {
      background: rgba(200, 242, 74, .25);
      color: #133D21;
    }

    .badge-dark {
      background: rgba(255,255,255,.14);
      color: #F7FFE6;
      border: 1px solid rgba(255,255,255,.18);
    }

    .badge-orange {
      background: rgba(245, 158, 11, .13);
      color: #A35D03;
    }

    .filter-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 15px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--border);
      color: #374151;
      font-weight: 750;
      font-size: 14px;
      transition: .22s ease;
    }

    .filter-pill:hover,
    .filter-pill.active {
      background: #E4F5DA;
      border-color: rgba(31, 138, 76, .28);
      color: var(--green-dark);
      transform: translateY(-1px);
    }

    .standings-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0 10px;
    }

    .standings-table th {
      text-align: left;
      color: #64748B;
      font-size: 13px;
      font-weight: 800;
      padding: 0 14px 4px;
      white-space: nowrap;
    }

    .standings-table td {
      background: #fff;
      padding: 16px 14px;
      border-top: 1px solid rgba(229, 231, 235, .9);
      border-bottom: 1px solid rgba(229, 231, 235, .9);
      vertical-align: middle;
    }

    .standings-table td:first-child {
      border-left: 1px solid rgba(229, 231, 235, .9);
      border-radius: 16px 0 0 16px;
    }

    .standings-table td:last-child {
      border-right: 1px solid rgba(229, 231, 235, .9);
      border-radius: 0 16px 16px 0;
    }

    .rank-badge {
      width: 32px;
      height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      font-weight: 900;
      background: #F0F5EF;
      color: #385144;
    }

    .rank-badge.top {
      background: var(--green);
      color: #fff;
    }

    .rank-badge.warn {
      background: rgba(239, 68, 68, .12);
      color: #B91C1C;
    }

    .team-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 4px rgba(31, 138, 76, .12);
    }

    .form-dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 900;
      color: #fff;
    }

    .form-win { background: var(--green); }
    .form-draw { background: var(--slate); }
    .form-loss { background: var(--red); }

    .progress-line {
      height: 10px;
      border-radius: 999px;
      background: #EEF2EC;
      overflow: hidden;
    }

    .progress-line span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--green), var(--lime));
    }

    .zone-card {
      position: relative;
      overflow: hidden;
    }

    .zone-card::after {
      content: "";
      position: absolute;
      width: 130px;
      height: 130px;
      right: -44px;
      top: -46px;
      border-radius: 50%;
      background: rgba(200, 242, 74, .22);
    }

    .search-box {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px;
      border: 1px solid rgba(229, 231, 235, .95);
      background: rgba(255,255,255,.92);
      border-radius: 999px;
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }

    .search-box input {
      width: 100%;
      border: 0;
      outline: none;
      background: transparent;
      padding: 0 10px;
      color: var(--ink);
      min-height: 42px;
    }

    .search-box:focus-within {
      border-color: rgba(31, 138, 76, .45);
      box-shadow: 0 0 0 4px rgba(200, 242, 74, .22);
    }

    .faq-item {
      border: 1px solid rgba(229, 231, 235, .9);
      border-radius: 18px;
      background: rgba(255,255,255,.92);
      overflow: hidden;
      box-shadow: 0 10px 28px rgba(17, 24, 39, .05);
    }

    .faq-question {
      width: 100%;
      min-height: 62px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      border: 0;
      background: transparent;
      font-weight: 850;
      color: #17241A;
      gap: 16px;
    }

    .faq-question span:last-child {
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: #EDF7E8;
      color: var(--green-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform .2s ease;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
      line-height: 1.85;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-question span:last-child {
      transform: rotate(45deg);
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
      background:
        linear-gradient(135deg, rgba(23,104,58,.96), rgba(31,138,76,.9)),
        url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
      color: #fff;
      box-shadow: 0 24px 56px rgba(31, 138, 76, .22);
    }

    .cta-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
      background-size: 64px 64px;
      opacity: .46;
    }

    .cta-band > * {
      position: relative;
      z-index: 1;
    }

    footer {
      background: #0B2415;
      color: #E9F5EC;
      padding: 64px 0 26px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 42px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer-title {
      color: #fff;
      font-size: 16px;
      font-weight: 850;
      margin-bottom: 14px;
    }

    .footer-link {
      display: block;
      color: #B8C8BD;
      padding: 6px 0;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-link:hover,
    .footer-link:focus-visible {
      outline: none;
      color: var(--lime);
      transform: translateX(3px);
    }

    .footer-bottom {
      padding-top: 24px;
      text-align: center;
      color: #B8C8BD;
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-bottom a {
      color: #DDEADF;
      transition: color .2s ease;
    }

    .footer-bottom a:hover {
      color: var(--lime);
    }

    @media (max-width: 1100px) {
      .dock {
        align-items: flex-start;
        border-radius: 28px;
        flex-wrap: wrap;
      }

      .nav-links {
        order: 4;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 4px 0 2px;
        scrollbar-width: none;
      }

      .nav-links::-webkit-scrollbar {
        display: none;
      }

      .nav-cta {
        margin-left: auto;
      }

      .hero {
        min-height: auto;
        padding: 84px 0 70px;
      }

      main {
        padding-top: 126px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 32px, 1200px);
      }

      .dock-wrap {
        top: 12px;
      }

      .dock {
        width: calc(100% - 24px);
        padding: 10px;
      }

      .logo span:last-child {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
      }

      .nav-cta {
        display: none;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        max-height: 70vh;
        overflow-y: auto;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-link {
        justify-content: center;
        width: 100%;
      }

      main {
        padding-top: 96px;
      }

      .hero {
        padding: 70px 0 56px;
      }

      .section,
      .section-tight {
        padding: 58px 0;
      }

      .standings-wrap {
        overflow-x: auto;
        padding-bottom: 8px;
      }

      .standings-table {
        min-width: 760px;
      }

      .search-box {
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
      }

      .search-box .btn {
        width: 100%;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    @media (max-width: 520px) {
      .hero-title {
        font-size: 34px;
      }

      .btn {
        width: 100%;
      }

      .hero-actions {
        flex-direction: column;
      }

      .cta-band {
        border-radius: 24px;
      }

      .footer-bottom {
        font-size: 13px;
      }
    }

/* roulang page: category5 */
:root {
      --green: #1F8A4C;
      --green-dark: #17683A;
      --lime: #C8F24A;
      --bg: #F6F8F5;
      --ink: #111827;
      --muted: #4B5563;
      --soft: #E5E7EB;
      --card: #FFFFFF;
      --orange: #F59E0B;
      --red: #EF4444;
      --slate: #64748B;
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 24px;
      --shadow: 0 12px 36px rgba(17, 24, 39, .08);
      --shadow-hover: 0 18px 46px rgba(23, 104, 58, .14);
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      color: var(--ink);
      background:
        linear-gradient(90deg, rgba(31, 138, 76, .04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(31, 138, 76, .035) 1px, transparent 1px),
        var(--bg);
      background-size: 48px 48px;
      line-height: 1.75;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible {
      outline: 3px solid rgba(200, 242, 74, .85);
      outline-offset: 3px;
    }

    .site-container {
      width: min(1180px, calc(100% - 40px));
      margin-inline: auto;
    }

    .dock-wrap {
      position: fixed;
      z-index: 60;
      top: 0;
      left: 0;
      right: 0;
      padding: 18px 20px 0;
      pointer-events: none;
    }

    .dock {
      width: min(1180px, 100%);
      margin: 0 auto;
      min-height: 68px;
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 10px 12px 10px 16px;
      border: 1px solid rgba(229, 231, 235, .95);
      border-radius: 999px;
      background: rgba(255, 255, 255, .92);
      box-shadow: 0 14px 38px rgba(17, 24, 39, .10);
      backdrop-filter: blur(14px);
      pointer-events: auto;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
      color: var(--ink);
      font-weight: 800;
      white-space: nowrap;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, var(--lime), var(--green) 62%, var(--green-dark));
      color: #fff;
      font-size: 16px;
      box-shadow: inset 0 -2px 6px rgba(17, 24, 39, .18);
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .nav-link {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      padding: 0 13px;
      border-radius: 999px;
      color: #374151;
      font-size: 14px;
      font-weight: 650;
      transition: transform .2s ease, background .2s ease, color .2s ease;
      white-space: nowrap;
    }

    .nav-link:hover {
      transform: translateY(-1px);
      background: rgba(31, 138, 76, .08);
      color: var(--green-dark);
    }

    .nav-link.active {
      background: rgba(200, 242, 74, .38);
      color: var(--green-dark);
    }

    .nav-cta,
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--green);
      color: #fff;
      font-weight: 750;
      box-shadow: 0 10px 24px rgba(31, 138, 76, .24);
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }

    .nav-cta:hover,
    .btn-primary:hover {
      transform: translateY(-2px);
      background: var(--green-dark);
      box-shadow: 0 16px 34px rgba(31, 138, 76, .28);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid rgba(23, 104, 58, .22);
      border-radius: 999px;
      background: #fff;
      color: var(--green-dark);
      font-weight: 750;
      transition: transform .2s ease, border .2s ease, background .2s ease;
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(31, 138, 76, .45);
      background: rgba(31, 138, 76, .06);
    }

    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: rgba(31, 138, 76, .1);
      color: var(--green-dark);
      cursor: pointer;
    }

    .section {
      padding: 92px 0;
    }

    .section-tight {
      padding: 74px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(31, 138, 76, .08);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 750;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 4px rgba(200, 242, 74, .25);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 154px 0 92px;
      background: linear-gradient(135deg, rgba(246, 248, 245, .96), rgba(255, 255, 255, .8));
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(90deg, rgba(255,255,255,.8), rgba(255,255,255,.62)), url("/assets/images/backpic/back-2.webp");
      background-size: cover;
      background-position: center;
      opacity: .55;
      z-index: -1;
    }

    .hero-title {
      font-size: clamp(34px, 5vw, 60px);
      line-height: 1.14;
      font-weight: 850;
      max-width: 780px;
    }

    .hero-copy {
      margin-top: 22px;
      max-width: 660px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.9;
    }

    .search-panel {
      margin-top: 30px;
      display: flex;
      width: min(620px, 100%);
      gap: 10px;
      padding: 8px;
      border: 1px solid rgba(229, 231, 235, .95);
      border-radius: 999px;
      background: rgba(255, 255, 255, .92);
      box-shadow: var(--shadow);
    }

    .search-panel input {
      min-width: 0;
      flex: 1;
      border: 0;
      background: transparent;
      padding: 0 16px;
      color: var(--ink);
      outline: 0;
    }

    .news-visual {
      position: relative;
      min-height: 430px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(229, 231, 235, .9);
      box-shadow: var(--shadow);
      background: #0f2a1d;
    }

    .news-visual img {
      width: 100%;
      height: 100%;
      min-height: 430px;
      object-fit: cover;
      opacity: .78;
    }

    .visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 26, 16, .08), rgba(7, 26, 16, .78));
    }

    .visual-card {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      padding: 22px;
      border-radius: 20px;
      background: rgba(255, 255, 255, .94);
      box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(31, 138, 76, .09);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 750;
      white-space: nowrap;
    }

    .badge.hot {
      background: rgba(239, 68, 68, .10);
      color: #B91C1C;
    }

    .badge.live {
      background: rgba(245, 158, 11, .12);
      color: #B45309;
    }

    .card {
      border: 1px solid rgba(229, 231, 235, .95);
      border-radius: var(--radius-md);
      background: var(--card);
      box-shadow: 0 10px 28px rgba(17, 24, 39, .055);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .card:hover {
      transform: translateY(-3px);
      border-color: rgba(31, 138, 76, .28);
      box-shadow: var(--shadow-hover);
    }

    .lead-card {
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      gap: 28px;
      overflow: hidden;
      padding: 18px;
    }

    .lead-card img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      border-radius: 18px;
    }

    .article-item {
      display: grid;
      grid-template-columns: 112px 1fr;
      gap: 16px;
      padding: 16px;
      align-items: center;
    }

    .article-item img {
      width: 112px;
      height: 86px;
      object-fit: cover;
      border-radius: 14px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .topic-tag {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(31, 138, 76, .16);
      background: #fff;
      color: #24563a;
      font-weight: 700;
      font-size: 14px;
      transition: background .2s ease, transform .2s ease, border-color .2s ease;
    }

    .topic-tag:hover {
      transform: translateY(-2px);
      background: rgba(200, 242, 74, .22);
      border-color: rgba(31, 138, 76, .32);
    }

    .insight-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 24px;
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 18px;
    }

    .timeline-item {
      position: relative;
      padding: 18px 18px 18px 46px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(229, 231, 235, .95);
    }

    .timeline-item::before {
      content: "";
      position: absolute;
      left: 19px;
      top: 24px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(31, 138, 76, .12);
    }

    .focus-card {
      padding: 24px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, #123923, #1F8A4C);
      color: #fff;
      overflow: hidden;
      position: relative;
    }

    .focus-card::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -90px;
      bottom: -130px;
      border: 1px solid rgba(200, 242, 74, .35);
      border-radius: 50%;
    }

    .stat-pill {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .18);
      color: rgba(255, 255, 255, .86);
    }

    .stat-pill:last-child {
      border-bottom: 0;
    }

    .faq-item {
      border: 1px solid rgba(229, 231, 235, .95);
      border-radius: 18px;
      background: #fff;
      overflow: hidden;
    }

    .faq-item summary {
      cursor: pointer;
      list-style: none;
      padding: 20px 22px;
      font-weight: 800;
      color: var(--ink);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      float: right;
      color: var(--green);
      font-size: 22px;
      line-height: 1;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-item p {
      padding: 0 22px 22px;
      color: var(--muted);
      line-height: 1.85;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      padding: 42px;
      background:
        linear-gradient(90deg, rgba(23, 104, 58, .95), rgba(31, 138, 76, .88)),
        url("/assets/images/backpic/back-3.webp");
      background-size: cover;
      background-position: center;
      color: #fff;
      box-shadow: 0 24px 54px rgba(23, 104, 58, .22);
    }

    .cta-band::after {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 22px;
      pointer-events: none;
    }

    footer {
      padding: 70px 0 28px;
      background: #071A10;
      color: #fff;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr .7fr .7fr .7fr;
      gap: 38px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-title {
      margin-bottom: 14px;
      color: #fff;
      font-size: 16px;
      font-weight: 800;
    }

    .footer-link {
      display: block;
      margin: 9px 0;
      color: #B8C8BD;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-link:hover {
      color: var(--lime);
      transform: translateX(3px);
    }

    .footer-bottom {
      padding-top: 26px;
      text-align: center;
      color: #AAB8AF;
      font-size: 14px;
      line-height: 1.9;
    }

    .footer-bottom a {
      color: #D7E3DB;
      transition: color .2s ease;
    }

    .footer-bottom a:hover {
      color: var(--lime);
    }

    @media (max-width: 1024px) {
      .dock {
        align-items: center;
        flex-wrap: wrap;
        border-radius: 28px;
      }

      .nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 4px 0 2px;
      }

      .nav-cta {
        margin-left: auto;
      }

      .hero {
        padding-top: 176px;
      }

      .lead-card,
      .insight-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 32px, 1180px);
      }

      .dock-wrap {
        padding: 12px 12px 0;
      }

      .dock {
        min-height: 62px;
        padding: 9px;
      }

      .logo span:last-child {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .nav-links {
        display: none;
      }

      .nav-links.open {
        display: flex;
      }

      .menu-btn {
        display: inline-grid;
        place-items: center;
      }

      .nav-cta {
        display: none;
      }

      .hero {
        padding: 124px 0 66px;
      }

      .hero-copy {
        font-size: 16px;
      }

      .search-panel {
        flex-direction: column;
        align-items: stretch;
        border-radius: 22px;
      }

      .search-panel input {
        min-height: 44px;
      }

      .section {
        padding: 66px 0;
      }

      .section-tight {
        padding: 56px 0;
      }

      .news-visual,
      .news-visual img {
        min-height: 360px;
      }

      .lead-card img {
        height: 260px;
      }

      .article-item {
        grid-template-columns: 86px 1fr;
        gap: 12px;
      }

      .article-item img {
        width: 86px;
        height: 72px;
      }

      .cta-band {
        padding: 30px 22px;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .hero-title {
        font-size: 34px;
      }

      .visual-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 16px;
      }

      .tag-row {
        gap: 8px;
      }

      .topic-tag {
        font-size: 13px;
      }

      .footer-bottom {
        font-size: 13px;
      }
    }

/* roulang page: category6 */
:root {
      --primary: #1F8A4C;
      --primary-dark: #17683A;
      --accent: #C8F24A;
      --accent-soft: #EFFAD0;
      --ink: #111827;
      --muted: #4B5563;
      --soft: #F6F8F5;
      --line: #E5E7EB;
      --footer: #082A19;
      --card: #FFFFFF;
      --orange: #F59E0B;
      --red: #EF4444;
      --slate: #64748B;
      --radius-sm: 12px;
      --radius: 20px;
      --radius-lg: 28px;
      --shadow: 0 14px 40px rgba(17, 24, 39, .08);
      --shadow-hover: 0 18px 54px rgba(31, 138, 76, .15);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 8% 4%, rgba(200, 242, 74, .20), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(31, 138, 76, .12), transparent 34%),
        linear-gradient(180deg, #F8FBF6 0%, #FFFFFF 46%, #F6F8F5 100%);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      background: rgba(200, 242, 74, .65);
      color: #082A19;
    }

    :focus-visible {
      outline: 3px solid rgba(200, 242, 74, .95);
      outline-offset: 3px;
      border-radius: 12px;
    }

    .site-container {
      width: min(1240px, calc(100% - 40px));
      margin-inline: auto;
    }

    .dock-wrap {
      position: fixed;
      left: 0;
      right: 0;
      top: 18px;
      z-index: 50;
      pointer-events: none;
    }

    .dock {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      min-height: 66px;
      padding: 8px 10px 8px 14px;
      border: 1px solid rgba(229, 231, 235, .92);
      border-radius: 999px;
      background: rgba(255, 255, 255, .92);
      box-shadow: 0 16px 42px rgba(17, 24, 39, .10);
      backdrop-filter: blur(18px);
      display: flex;
      align-items: center;
      gap: 12px;
      pointer-events: auto;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      font-weight: 800;
      color: #0B2E1B;
      letter-spacing: .01em;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #0B2E1B;
      font-weight: 900;
      background:
        linear-gradient(135deg, var(--accent) 0%, #DDFB7A 42%, #FFFFFF 100%);
      border: 1px solid rgba(31, 138, 76, .18);
      box-shadow: inset 0 -5px 12px rgba(31, 138, 76, .12);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
      justify-content: center;
    }

    .nav-link {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      color: #374151;
      transition: transform .2s ease, background .2s ease, color .2s ease;
      white-space: nowrap;
    }

    .nav-link:hover {
      transform: translateY(-1px);
      background: #EEF8E9;
      color: var(--primary-dark);
    }

    .nav-link.active {
      background: var(--accent-soft);
      color: var(--primary-dark);
      box-shadow: inset 0 0 0 1px rgba(31, 138, 76, .12);
    }

    .nav-cta {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
      border-radius: 999px;
      background: var(--primary);
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 12px 26px rgba(31, 138, 76, .22);
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(23, 104, 58, .28);
    }

    .menu-btn {
      display: none;
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 999px;
      background: #EEF8E9;
      color: var(--primary-dark);
      font-size: 20px;
      font-weight: 900;
      transition: background .2s ease, transform .2s ease;
    }

    .menu-btn:hover {
      background: var(--accent-soft);
      transform: translateY(-1px);
    }

    main {
      overflow: hidden;
    }

    .hero {
      position: relative;
      padding: 150px 0 88px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(248, 251, 246, .96) 0%, rgba(248, 251, 246, .84) 48%, rgba(248, 251, 246, .94) 100%),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -10% 0 -10%;
      height: 120px;
      background:
        linear-gradient(90deg, transparent 0 49%, rgba(31, 138, 76, .12) 49% 51%, transparent 51% 100%),
        repeating-linear-gradient(90deg, rgba(31, 138, 76, .08) 0 1px, transparent 1px 108px);
      opacity: .55;
      z-index: -1;
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(31, 138, 76, .16);
      background: rgba(255, 255, 255, .74);
      color: var(--primary-dark);
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 8px 24px rgba(17, 24, 39, .05);
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(200, 242, 74, .24);
    }

    .hero-title {
      margin-top: 22px;
      max-width: 760px;
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1.14;
      font-weight: 900;
      letter-spacing: -.02em;
      color: #0B1F14;
    }

    .hero-desc {
      margin-top: 22px;
      max-width: 680px;
      font-size: 18px;
      line-height: 1.9;
      color: var(--muted);
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 0 22px;
      font-weight: 850;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 14px 30px rgba(31, 138, 76, .24);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(23, 104, 58, .28);
    }

    .btn-soft {
      background: #fff;
      color: var(--primary-dark);
      border-color: rgba(31, 138, 76, .18);
      box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
    }

    .btn-soft:hover {
      background: #F3FBE9;
      transform: translateY(-2px);
      border-color: rgba(31, 138, 76, .28);
    }

    .topic-board {
      border-radius: 32px;
      overflow: hidden;
      background: #0D2B1B;
      color: #fff;
      box-shadow: 0 24px 80px rgba(8, 42, 25, .22);
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .topic-visual {
      position: relative;
      min-height: 420px;
      background:
        linear-gradient(180deg, rgba(8, 42, 25, .18), rgba(8, 42, 25, .70)),
        url("/assets/images/coverpic/cover-8.webp") center/cover no-repeat;
    }

    .topic-ribbon {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .mini-score {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .92);
      color: #0B1F14;
      box-shadow: 0 14px 28px rgba(8, 42, 25, .18);
    }

    .badge,
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.2;
      white-space: nowrap;
    }

    .badge-green {
      background: #EAF8E8;
      color: var(--primary-dark);
    }

    .badge-accent {
      background: rgba(200, 242, 74, .22);
      color: #21440E;
    }

    .badge-orange {
      background: rgba(245, 158, 11, .14);
      color: #9A5B00;
    }

    .badge-red {
      background: rgba(239, 68, 68, .12);
      color: #B91C1C;
    }

    .section {
      padding: 88px 0;
    }

    .section-muted {
      background: rgba(246, 248, 245, .72);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 34px;
    }

    .section-kicker {
      color: var(--primary-dark);
      font-weight: 900;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .section-title {
      font-size: clamp(28px, 3.4vw, 44px);
      line-height: 1.2;
      font-weight: 900;
      color: #0B1F14;
      letter-spacing: -.015em;
    }

    .section-desc {
      max-width: 620px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
      margin-top: 12px;
    }

    .card {
      background: var(--card);
      border: 1px solid rgba(229, 231, 235, .94);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .card:hover {
      transform: translateY(-3px);
      border-color: rgba(31, 138, 76, .26);
      box-shadow: var(--shadow-hover);
    }

    .feature-topic {
      position: relative;
      min-height: 360px;
      overflow: hidden;
      border-radius: 28px;
      background: #0D2B1B;
      color: #fff;
      box-shadow: 0 18px 48px rgba(8, 42, 25, .18);
    }

    .feature-topic img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .72;
      transform: scale(1.01);
      transition: transform .35s ease, opacity .35s ease;
    }

    .feature-topic:hover img {
      transform: scale(1.045);
      opacity: .82;
    }

    .feature-topic::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8, 42, 25, .18) 0%, rgba(8, 42, 25, .52) 40%, rgba(8, 42, 25, .88) 100%);
    }

    .feature-content {
      position: absolute;
      inset: auto 0 0 0;
      z-index: 2;
      padding: 28px;
    }

    .topic-card {
      padding: 22px;
      border-radius: 22px;
      background:
        linear-gradient(180deg, #FFFFFF, #FBFDF9);
      border: 1px solid rgba(229, 231, 235, .92);
      box-shadow: 0 10px 30px rgba(17, 24, 39, .06);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .topic-card:hover {
      transform: translateY(-3px);
      border-color: rgba(31, 138, 76, .28);
      box-shadow: var(--shadow-hover);
    }

    .topic-icon {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #EEF8E9;
      color: var(--primary-dark);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .topic-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .horizontal-strip {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding: 4px 4px 18px;
      scroll-snap-type: x mandatory;
    }

    .horizontal-strip::-webkit-scrollbar {
      height: 8px;
    }

    .horizontal-strip::-webkit-scrollbar-thumb {
      background: rgba(31, 138, 76, .25);
      border-radius: 999px;
    }

    .strip-item {
      min-width: 310px;
      scroll-snap-align: start;
      padding: 20px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid rgba(229, 231, 235, .95);
      box-shadow: 0 10px 28px rgba(17, 24, 39, .05);
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 18px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 18px;
      top: 8px;
      bottom: 8px;
      width: 2px;
      background: linear-gradient(180deg, rgba(31, 138, 76, .35), rgba(200, 242, 74, .55), rgba(31, 138, 76, .12));
    }

    .timeline-item {
      position: relative;
      padding-left: 56px;
    }

    .timeline-dot {
      position: absolute;
      left: 6px;
      top: 12px;
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: var(--accent);
      border: 5px solid #fff;
      box-shadow: 0 0 0 1px rgba(31, 138, 76, .20), 0 8px 20px rgba(31, 138, 76, .15);
    }

    .timeline-box {
      padding: 22px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid rgba(229, 231, 235, .92);
      box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
    }

    .stat-panel {
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(31, 138, 76, .96), rgba(13, 65, 36, .98));
      color: #fff;
      padding: 28px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 22px 56px rgba(8, 42, 25, .22);
    }

    .stat-panel::before {
      content: "";
      position: absolute;
      inset: -40px -20px auto auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(200, 242, 74, .22);
    }

    .meter {
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .18);
      overflow: hidden;
    }

    .meter span {
      display: block;
      height: 100%;
      border-radius: 999px;
      background: var(--accent);
    }

    .guide-card {
      padding: 26px;
      border-radius: 26px;
      background: #fff;
      border: 1px solid rgba(229, 231, 235, .92);
      box-shadow: var(--shadow);
      min-height: 100%;
    }

    .guide-index {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #0B2E1B;
      color: var(--accent);
      font-weight: 900;
      margin-bottom: 18px;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 34px;
      align-items: start;
    }

    .faq-item {
      border: 1px solid rgba(229, 231, 235, .95);
      border-radius: 18px;
      background: #fff;
      margin-bottom: 12px;
      overflow: hidden;
      box-shadow: 0 8px 22px rgba(17, 24, 39, .04);
    }

    .faq-question {
      width: 100%;
      min-height: 58px;
      padding: 16px 18px;
      border: 0;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: #0B1F14;
      font-weight: 850;
      text-align: left;
    }

    .faq-question span:last-child {
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #EEF8E9;
      color: var(--primary-dark);
      transition: transform .2s ease;
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--muted);
      line-height: 1.85;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-question span:last-child {
      transform: rotate(45deg);
      background: var(--accent-soft);
    }

    .cta {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      padding: 42px;
      background:
        linear-gradient(110deg, rgba(11, 46, 27, .95), rgba(31, 138, 76, .90)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
      color: #fff;
      box-shadow: 0 24px 70px rgba(8, 42, 25, .22);
    }

    .cta::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, .10) 49% 51%, transparent 51% 100%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 58px);
      opacity: .38;
      pointer-events: none;
    }

    .cta > * {
      position: relative;
      z-index: 2;
    }

    .search-box {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(229, 231, 235, .92);
      box-shadow: 0 14px 38px rgba(17, 24, 39, .08);
    }

    .search-box input {
      width: 100%;
      min-height: 46px;
      border: 0;
      outline: 0;
      padding: 0 14px;
      color: var(--ink);
      background: transparent;
    }

    .search-box input::placeholder {
      color: #94A3B8;
    }

    .search-box:focus-within {
      box-shadow: 0 0 0 4px rgba(200, 242, 74, .34), 0 16px 36px rgba(17, 24, 39, .08);
    }

    footer {
      background: var(--footer);
      color: #fff;
      padding: 64px 0 28px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr .8fr .8fr .8fr;
      gap: 34px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-title {
      font-size: 16px;
      font-weight: 900;
      margin-bottom: 16px;
      color: #F7FFF2;
    }

    .footer-link {
      display: block;
      color: #B8C8BD;
      margin: 10px 0;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-link:hover {
      color: var(--accent);
      transform: translateX(3px);
    }

    .footer-bottom {
      padding-top: 26px;
      text-align: center;
      color: #B8C8BD;
      font-size: 14px;
      line-height: 1.9;
    }

    .footer-bottom a {
      color: #D9E8DD;
      transition: color .2s ease;
    }

    .footer-bottom a:hover {
      color: var(--accent);
    }

    @media (max-width: 1024px) {
      .dock {
        border-radius: 28px;
        align-items: center;
        flex-wrap: wrap;
      }

      .nav-links {
        order: 4;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 6px 2px 2px;
        display: none;
      }

      .nav-links.open {
        display: flex;
      }

      .menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .nav-cta {
        margin-left: auto;
      }

      .hero {
        padding-top: 142px;
      }

      .topic-ribbon {
        grid-template-columns: 1fr;
      }

      .section-head,
      .faq-wrap {
        grid-template-columns: 1fr;
        display: grid;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 32px, 1240px);
      }

      .dock-wrap {
        top: 12px;
      }

      .dock {
        width: calc(100% - 20px);
        padding: 8px;
      }

      .logo span:last-child {
        font-size: 15px;
      }

      .nav-cta {
        display: none;
      }

      .hero {
        padding: 126px 0 62px;
      }

      .hero-desc {
        font-size: 16px;
      }

      .topic-visual {
        min-height: 540px;
      }

      .section {
        padding: 62px 0;
      }

      .section-head {
        margin-bottom: 26px;
      }

      .feature-topic {
        min-height: 310px;
      }

      .cta {
        padding: 30px 22px;
      }

      .search-box {
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
      }

      .search-box .btn {
        width: 100%;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .logo-mark {
        width: 34px;
        height: 34px;
      }

      .nav-link {
        padding: 0 12px;
      }

      .hero-title {
        font-size: 34px;
      }

      .btn {
        width: 100%;
      }

      .hero-actions {
        width: 100%;
      }

      .strip-item {
        min-width: 270px;
      }

      .topic-board {
        border-radius: 24px;
      }

      .topic-ribbon {
        left: 14px;
        right: 14px;
        bottom: 14px;
      }
    }
