/* roulang page: index */
:root{
      --bg:#07090B;
      --bg-2:#0B0F10;
      --panel:#101514;
      --panel-2:#131917;
      --panel-3:#0E1212;
      --text:#EAF0E5;
      --muted:#AAB2A0;
      --muted-2:#7F897A;
      --primary:#A7FF3D;
      --primary-2:#8CEB2F;
      --amber:#FFB23F;
      --danger:#8E2F2F;
      --line:rgba(167,255,61,.18);
      --line-soft:rgba(255,255,255,.08);
      --shadow:0 18px 50px rgba(0,0,0,.38);
      --shadow-glow:0 0 0 1px rgba(167,255,61,.22),0 18px 55px rgba(0,0,0,.42),0 0 28px rgba(167,255,61,.08);
      --radius:16px;
      --radius-sm:10px;
      --container:1220px;
      --ease:cubic-bezier(.2,.7,.2,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:PingFang SC,Microsoft YaHei,Noto Sans SC,Arial,sans-serif;
      color:var(--text);
      line-height:1.78;
      background:
        radial-gradient(circle at 12% 8%, rgba(167,255,61,.10), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255,178,63,.08), transparent 25%),
        linear-gradient(180deg,#07090B 0%,#0B0F10 42%,#07090B 100%);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      background:
        linear-gradient(rgba(167,255,61,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167,255,61,.035) 1px, transparent 1px),
        repeating-linear-gradient(180deg, rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px, transparent 1px, transparent 5px);
      background-size:42px 42px,42px 42px,100% 6px;
      opacity:.72;
      mask-image:linear-gradient(to bottom, black, rgba(0,0,0,.82), transparent 96%);
    }
    a{color:inherit;text-decoration:none;transition:color .22s var(--ease),border-color .22s var(--ease),background .22s var(--ease),transform .22s var(--ease)}
    a:hover,a:focus{color:var(--primary)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea{font-family:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(167,255,61,.28);color:#fff}
    .site-container{max-width:var(--container);margin:0 auto;padding:0 22px}
    .section{padding:86px 0;position:relative}
    .section.tight{padding:62px 0}
    .section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:30px}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-size:12px;
      letter-spacing:.12em;
      font-weight:800;
      margin-bottom:10px;
    }
    .section-kicker:before{
      content:"";
      width:18px;
      height:2px;
      background:var(--primary);
      box-shadow:0 0 14px rgba(167,255,61,.65);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(2rem,5vw,3.25rem);
      line-height:1.16;
      font-weight:820;
      letter-spacing:-.04em;
      margin-bottom:20px;
    }
    h2{
      font-size:clamp(1.55rem,3vw,2.15rem);
      line-height:1.25;
      font-weight:780;
      letter-spacing:-.03em;
      margin-bottom:12px;
    }
    h3{font-size:1.16rem;line-height:1.38;font-weight:740;margin-bottom:10px}
    p{color:var(--muted);font-size:16px}
    .lead{font-size:17px;line-height:1.88;color:#D7DED0}
    .text-limited{max-width:720px}

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(7,9,11,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid var(--line-soft);
      box-shadow:0 10px 34px rgba(0,0,0,.22);
    }
    .brand-row{
      border-bottom:1px solid rgba(255,255,255,.06);
      padding:13px 0;
    }
    .brand-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand-logo{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .logo-mark{
      width:42px;
      height:42px;
      border:1px solid var(--line);
      background:
        linear-gradient(135deg,rgba(167,255,61,.18),rgba(167,255,61,.02)),
        #0C1110;
      border-radius:12px;
      position:relative;
      box-shadow:inset 0 0 18px rgba(167,255,61,.12);
      flex:0 0 auto;
      clip-path:polygon(0 0,100% 0,100% 72%,72% 100%,0 100%);
    }
    .logo-mark:before,.logo-mark:after{
      content:"";
      position:absolute;
      inset:10px;
      border:1px solid rgba(167,255,61,.38);
    }
    .logo-mark:after{
      inset:18px 8px;
      border-left:0;
      border-right:0;
      transform:skewX(-18deg);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .brand-title{
      font-weight:800;
      color:#F4FAEF;
      line-height:1.25;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:360px;
    }
    .brand-sub{
      color:var(--muted-2);
      font-size:12px;
      line-height:1.35;
      letter-spacing:.05em;
    }
    .top-search{
      flex:1 1 430px;
      max-width:520px;
      display:flex;
      align-items:center;
      gap:8px;
      background:#0E1212;
      border:1px solid var(--line-soft);
      border-radius:14px;
      padding:6px;
      transition:border-color .22s var(--ease),box-shadow .22s var(--ease);
    }
    .top-search:focus-within{
      border-color:rgba(167,255,61,.48);
      box-shadow:0 0 0 4px rgba(167,255,61,.08);
    }
    .top-search input{
      margin:0;
      border:0;
      box-shadow:none;
      background:transparent;
      color:var(--text);
      height:36px;
      padding:0 10px;
      font-size:14px;
    }
    .top-search input::placeholder{color:#768070}
    .top-search button{
      border:0;
      background:var(--primary);
      color:#11170E;
      height:36px;
      min-width:74px;
      border-radius:10px;
      font-weight:800;
      transition:transform .22s var(--ease),filter .22s var(--ease),box-shadow .22s var(--ease);
    }
    .top-search button:hover{
      filter:brightness(1.08);
      box-shadow:0 0 22px rgba(167,255,61,.24);
      transform:translateY(-1px);
    }
    .header-actions{display:flex;align-items:center;gap:10px;flex:0 0 auto}
    .mini-link{
      font-size:13px;
      color:var(--muted);
      border:1px solid var(--line-soft);
      padding:8px 12px;
      border-radius:12px;
      background:rgba(255,255,255,.02);
    }
    .mini-link:hover{border-color:var(--line);background:rgba(167,255,61,.06)}
    .menu-toggle{
      display:none;
      width:42px;
      height:42px;
      border:1px solid var(--line-soft);
      border-radius:12px;
      background:#0E1212;
      color:var(--text);
      align-items:center;
      justify-content:center;
      font-weight:800;
    }

    .channel-row{padding:9px 0}
    .channel-inner{display:flex;align-items:center;gap:12px;overflow-x:auto;scrollbar-width:none}
    .channel-inner::-webkit-scrollbar{display:none}
    .channel-label{
      color:var(--muted-2);
      font-size:12px;
      white-space:nowrap;
      padding-right:2px;
    }
    .channel-menu{
      display:flex;
      gap:9px;
      margin:0;
      padding:0;
      list-style:none;
      white-space:nowrap;
    }
    .channel-menu a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border:1px solid var(--line-soft);
      border-radius:999px;
      background:rgba(255,255,255,.025);
      color:#C8D0C1;
      font-size:13px;
      font-weight:700;
    }
    .channel-menu a:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:#465044;
      box-shadow:0 0 0 3px rgba(255,255,255,.02);
    }
    .channel-menu a:hover,.channel-menu a.active{
      color:#10160D;
      background:var(--primary);
      border-color:var(--primary);
      box-shadow:0 0 20px rgba(167,255,61,.16);
    }
    .channel-menu a:hover:before,.channel-menu a.active:before{background:#11170E}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:12px 18px;
      border-radius:13px;
      font-size:15px;
      font-weight:800;
      border:1px solid transparent;
      position:relative;
      overflow:hidden;
      transition:transform .22s var(--ease),box-shadow .22s var(--ease),background .22s var(--ease),border-color .22s var(--ease),color .22s var(--ease);
      clip-path:polygon(0 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%);
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      color:#10160D;
      box-shadow:0 12px 30px rgba(167,255,61,.12);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#10160D;
      transform:translateY(-2px);
      box-shadow:0 0 0 1px rgba(167,255,61,.32),0 18px 42px rgba(167,255,61,.18);
      filter:brightness(1.06);
    }
    .btn-secondary{
      background:rgba(255,255,255,.035);
      border-color:var(--line-soft);
      color:#E8EFE2;
    }
    .btn-secondary:hover,.btn-secondary:focus{
      border-color:rgba(167,255,61,.45);
      background:rgba(167,255,61,.07);
      color:var(--primary);
      transform:translateY(-2px);
    }
    .badge,.tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 9px;
      border-radius:999px;
      border:1px solid var(--line-soft);
      color:#C8D0C1;
      background:rgba(255,255,255,.035);
      font-size:12px;
      font-weight:750;
      line-height:1;
    }
    .badge.green{border-color:rgba(167,255,61,.30);color:var(--primary);background:rgba(167,255,61,.07)}
    .badge.amber{border-color:rgba(255,178,63,.32);color:var(--amber);background:rgba(255,178,63,.07)}
    .dot{
      display:inline-block;
      width:8px;height:8px;border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 12px rgba(167,255,61,.65);
    }

    .hero{
      padding:76px 0 70px;
      min-height:640px;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:22px;
      pointer-events:none;
      border:1px solid rgba(167,255,61,.08);
      clip-path:polygon(0 0,94% 0,100% 10%,100% 100%,6% 100%,0 90%);
    }
    .hero:after{
      content:"";
      position:absolute;
      left:-10%;
      right:-10%;
      top:0;
      height:2px;
      background:linear-gradient(90deg,transparent,rgba(167,255,61,.52),transparent);
      animation:scan 6s linear infinite;
      opacity:.55;
    }
    @keyframes scan{
      0%{transform:translateY(0)}
      100%{transform:translateY(650px)}
    }
    .hero-panel{
      max-width:980px;
      margin:0 auto;
      text-align:center;
      position:relative;
      z-index:1;
    }
    .hero-chip-row{
      display:flex;
      align-items:center;
      justify-content:center;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .hero p.hero-desc{
      max-width:820px;
      margin:0 auto 26px;
      font-size:17px;
      color:#D5DEC9;
      line-height:1.88;
    }
    .hero-search-wrap{
      margin:28px auto 18px;
      max-width:760px;
      background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
      border:1px solid var(--line);
      border-radius:20px;
      padding:10px;
      box-shadow:var(--shadow);
      position:relative;
    }
    .hero-search-wrap:before,.hero-search-wrap:after{
      content:"";
      position:absolute;
      width:28px;
      height:28px;
      border-color:var(--primary);
      border-style:solid;
      opacity:.65;
    }
    .hero-search-wrap:before{left:-1px;top:-1px;border-width:1px 0 0 1px;border-top-left-radius:20px}
    .hero-search-wrap:after{right:-1px;bottom:-1px;border-width:0 1px 1px 0;border-bottom-right-radius:20px}
    .hero-search{
      display:grid;
      grid-template-columns:1fr auto;
      gap:10px;
      background:#0C1110;
      border:1px solid rgba(255,255,255,.08);
      border-radius:15px;
      padding:8px;
    }
    .hero-search input{
      height:48px;
      margin:0;
      border:0;
      background:transparent;
      box-shadow:none;
      color:var(--text);
      padding:0 14px;
      font-size:15px;
    }
    .hero-search input::placeholder{color:#7D8778}
    .hero-search button{
      min-width:128px;
      border:0;
      border-radius:12px;
      background:var(--primary);
      color:#10160D;
      font-weight:850;
      transition:filter .22s var(--ease),transform .22s var(--ease);
    }
    .hero-search button:hover{filter:brightness(1.08);transform:translateY(-1px)}
    .quick-cats{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:10px;
      margin:18px auto 26px;
    }
    .quick-cats a{
      border:1px solid var(--line-soft);
      border-radius:999px;
      padding:8px 12px;
      color:#CBD4C4;
      background:rgba(255,255,255,.025);
      font-size:13px;
      font-weight:700;
    }
    .quick-cats a:hover{
      border-color:var(--line);
      color:var(--primary);
      background:rgba(167,255,61,.06);
      transform:translateY(-1px);
    }
    .hero-actions{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      max-width:820px;
      margin:32px auto 0;
    }
    .metric-card{
      background:rgba(16,21,20,.72);
      border:1px solid var(--line-soft);
      border-radius:16px;
      padding:16px 14px;
      text-align:left;
      position:relative;
      overflow:hidden;
    }
    .metric-card:before{
      content:"";
      position:absolute;
      inset:0 auto 0 0;
      width:3px;
      background:var(--primary);
      opacity:.75;
    }
    .metric-num{
      display:block;
      color:#F0F6EA;
      font-size:24px;
      font-weight:850;
      line-height:1.1;
    }
    .metric-label{
      display:block;
      color:var(--muted);
      font-size:12px;
      margin-top:6px;
    }

    .matrix{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:20px;
    }
    .entry-board{
      background:linear-gradient(180deg,rgba(16,21,20,.86),rgba(12,17,16,.94));
      border:1px solid var(--line-soft);
      border-radius:var(--radius);
      padding:24px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .entry-board:after{
      content:"";
      position:absolute;
      right:-70px;
      top:-70px;
      width:180px;
      height:180px;
      border:1px solid rgba(167,255,61,.12);
      border-radius:50%;
      box-shadow:inset 0 0 0 18px rgba(167,255,61,.025);
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
      margin-top:18px;
    }
    .entry-item{
      min-height:128px;
      padding:18px;
      border-radius:15px;
      border:1px solid var(--line-soft);
      background:
        linear-gradient(135deg,rgba(167,255,61,.055),transparent 42%),
        #0E1312;
      position:relative;
      overflow:hidden;
      transition:transform .22s var(--ease),border-color .22s var(--ease),box-shadow .22s var(--ease);
    }
    .entry-item:hover{
      transform:translateY(-4px);
      border-color:rgba(167,255,61,.36);
      box-shadow:var(--shadow-glow);
    }
    .entry-code{
      color:var(--primary);
      font-size:12px;
      letter-spacing:.12em;
      font-weight:850;
      margin-bottom:8px;
    }
    .entry-item p{font-size:14px;line-height:1.65;margin-bottom:0}
    .radar-panel{
      border:1px solid rgba(167,255,61,.14);
      border-radius:var(--radius);
      background:
        radial-gradient(circle at center,rgba(167,255,61,.12),transparent 33%),
        linear-gradient(180deg,#111715,#0B0F10);
      min-height:100%;
      padding:24px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .radar-circle{
      width:240px;
      height:240px;
      margin:8px auto 20px;
      border-radius:50%;
      border:1px solid rgba(167,255,61,.28);
      position:relative;
      background:
        linear-gradient(90deg,transparent 49%,rgba(167,255,61,.18) 50%,transparent 51%),
        linear-gradient(0deg,transparent 49%,rgba(167,255,61,.18) 50%,transparent 51%);
      box-shadow:inset 0 0 42px rgba(167,255,61,.08);
    }
    .radar-circle:before{
      content:"";
      position:absolute;
      inset:28px;
      border:1px solid rgba(167,255,61,.16);
      border-radius:50%;
    }
    .radar-circle:after{
      content:"";
      position:absolute;
      left:50%;
      top:50%;
      width:50%;
      height:2px;
      background:linear-gradient(90deg,var(--primary),transparent);
      transform-origin:left center;
      animation:radar 5s linear infinite;
      opacity:.72;
    }
    @keyframes radar{to{transform:rotate(360deg)}}
    .radar-point{
      position:absolute;
      width:9px;height:9px;border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 14px rgba(255,178,63,.75);
    }
    .p1{left:64%;top:28%}.p2{left:28%;top:54%}.p3{left:58%;top:70%}
    .status-list{display:grid;gap:10px}
    .status-line{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:11px 12px;
      background:rgba(255,255,255,.035);
      border:1px solid var(--line-soft);
      border-radius:12px;
      color:#DCE5D7;
      font-size:14px;
    }
    .status-line span:last-child{color:var(--primary);font-weight:800}

    .steps{
      position:relative;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      margin-top:28px;
    }
    .step-card{
      background:var(--panel);
      border:1px solid var(--line-soft);
      border-radius:var(--radius);
      padding:24px 20px;
      min-height:230px;
      position:relative;
      overflow:hidden;
      box-shadow:0 12px 34px rgba(0,0,0,.22);
      transition:transform .22s var(--ease),border-color .22s var(--ease);
    }
    .step-card:hover{transform:translateY(-5px);border-color:rgba(167,255,61,.34)}
    .step-num{
      display:inline-flex;
      color:#10160D;
      background:var(--primary);
      font-size:13px;
      font-weight:900;
      padding:4px 8px;
      border-radius:8px;
      margin-bottom:18px;
    }
    .step-card p{font-size:14px;line-height:1.72;margin-bottom:0}
    .step-card:after{
      content:"";
      position:absolute;
      right:-26px;
      bottom:-26px;
      width:88px;height:88px;
      border:1px solid rgba(167,255,61,.10);
      transform:rotate(45deg);
    }

    .track-wrap{
      position:relative;
    }
    .track-wrap:before,.track-wrap:after{
      content:"";
      position:absolute;
      top:0;
      bottom:0;
      width:64px;
      z-index:2;
      pointer-events:none;
    }
    .track-wrap:before{left:0;background:linear-gradient(90deg,var(--bg),transparent)}
    .track-wrap:after{right:0;background:linear-gradient(270deg,var(--bg),transparent)}
    .content-track{
      display:flex;
      gap:18px;
      overflow-x:auto;
      padding:8px 4px 18px;
      scroll-snap-type:x proximity;
      scrollbar-color:rgba(167,255,61,.35) rgba(255,255,255,.04);
    }
    .content-track::-webkit-scrollbar{height:8px}
    .content-track::-webkit-scrollbar-thumb{background:rgba(167,255,61,.35);border-radius:999px}
    .track-card{
      flex:0 0 310px;
      min-height:330px;
      scroll-snap-align:start;
      border-radius:18px;
      border:1px solid var(--line-soft);
      background:
        linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.015)),
        #111614;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow);
      transition:transform .25s var(--ease),border-color .25s var(--ease),box-shadow .25s var(--ease);
    }
    .track-card:hover{
      transform:translateY(-4px) scale(1.025);
      border-color:rgba(167,255,61,.36);
      box-shadow:var(--shadow-glow);
    }
    .track-visual{
      height:146px;
      background:
        linear-gradient(135deg,rgba(167,255,61,.16),transparent 55%),
        linear-gradient(90deg,rgba(255,178,63,.10),transparent),
        #0B0F10;
      position:relative;
      overflow:hidden;
    }
    .track-visual:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(167,255,61,.20);
      clip-path:polygon(0 0,100% 0,100% 78%,80% 100%,0 100%);
    }
    .track-visual:after{
      content:"";
      position:absolute;
      left:22px;
      right:22px;
      bottom:30px;
      height:7px;
      background:linear-gradient(90deg,var(--primary),rgba(167,255,61,.08));
      border-radius:999px;
    }
    .track-body{
      padding:18px;
    }
    .track-body p{font-size:14px;line-height:1.7;margin-bottom:15px}
    .track-tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}
    .track-overlay{
      position:absolute;
      inset:auto 0 0;
      padding:18px;
      background:linear-gradient(180deg,transparent,rgba(0,0,0,.86) 18%,rgba(0,0,0,.92));
      transform:translateY(52%);
      transition:transform .25s var(--ease);
    }
    .track-card:hover .track-overlay{transform:translateY(0)}
    .track-overlay p{font-size:13px;margin-bottom:10px;color:#D7DED0}
    .link-arrow{
      color:var(--primary);
      font-weight:850;
      font-size:14px;
      display:inline-flex;
      align-items:center;
      gap:6px;
    }

    .progress-layout{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:22px;
      align-items:stretch;
    }
    .timeline{
      border:1px solid var(--line-soft);
      background:var(--panel);
      border-radius:var(--radius);
      padding:24px;
      box-shadow:var(--shadow);
    }
    .timeline-item{
      position:relative;
      padding-left:28px;
      padding-bottom:22px;
      border-left:1px solid rgba(167,255,61,.18);
    }
    .timeline-item:last-child{padding-bottom:0}
    .timeline-item:before{
      content:"";
      position:absolute;
      left:-5px;
      top:3px;
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 14px rgba(167,255,61,.65);
    }
    .timeline-item h3{font-size:16px;margin-bottom:4px}
    .timeline-item p{font-size:14px;margin-bottom:0}
    .coverage-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .coverage-card{
      background:linear-gradient(180deg,rgba(19,25,23,.96),rgba(13,18,17,.96));
      border:1px solid var(--line-soft);
      border-radius:var(--radius);
      padding:22px;
      min-height:160px;
      transition:transform .22s var(--ease),border-color .22s var(--ease);
    }
    .coverage-card:hover{transform:translateY(-4px);border-color:rgba(167,255,61,.35)}
    .progress-bar{
      height:9px;
      background:rgba(255,255,255,.06);
      border-radius:999px;
      overflow:hidden;
      margin:15px 0 9px;
    }
    .progress-fill{
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--amber));
      box-shadow:0 0 16px rgba(167,255,61,.24);
    }
    .percent{font-weight:850;color:#F1F7EC}

    .news-layout{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:22px;
    }
    .news-list,.recommend-panel{
      border:1px solid var(--line-soft);
      background:var(--panel);
      border-radius:var(--radius);
      padding:22px;
      box-shadow:var(--shadow);
    }
    .news-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:14px;
      padding:14px 0;
      border-bottom:1px solid rgba(255,255,255,.07);
    }
    .news-item:last-child{border-bottom:0}
    .news-date{
      color:var(--primary);
      font-weight:850;
      font-size:13px;
      border:1px solid rgba(167,255,61,.20);
      border-radius:9px;
      padding:5px 8px;
      background:rgba(167,255,61,.045);
    }
    .news-item a{
      color:#E7EEE0;
      font-weight:750;
      line-height:1.45;
    }
    .news-item a:hover{color:var(--primary)}
    .news-desc{color:var(--muted-2);font-size:13px}
    .recommend-card{
      padding:16px;
      border:1px solid var(--line-soft);
      border-radius:14px;
      background:rgba(255,255,255,.03);
      margin-bottom:14px;
      transition:transform .22s var(--ease),border-color .22s var(--ease);
    }
    .recommend-card:hover{transform:translateY(-3px);border-color:rgba(255,178,63,.36)}
    .recommend-card p{font-size:14px;margin-bottom:0}

    .assurance-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .assurance-item{
      border:1px solid var(--line-soft);
      background:#0E1312;
      border-radius:16px;
      padding:20px;
      min-height:176px;
      position:relative;
      overflow:hidden;
    }
    .assurance-item:before{
      content:"";
      position:absolute;
      top:0;left:20px;right:20px;height:2px;
      background:linear-gradient(90deg,transparent,var(--primary),transparent);
      opacity:.65;
    }
    .assurance-icon{
      width:38px;height:38px;border-radius:12px;
      border:1px solid rgba(167,255,61,.25);
      color:var(--primary);
      display:flex;align-items:center;justify-content:center;
      margin-bottom:14px;
      background:rgba(167,255,61,.05);
      font-weight:900;
    }
    .assurance-item p{font-size:14px;margin-bottom:0}

    .voice-wall{
      display:grid;
      grid-template-columns:1fr 1.1fr .9fr;
      gap:16px;
    }
    .voice{
      border:1px solid var(--line-soft);
      border-radius:18px;
      padding:20px;
      background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
      min-height:190px;
      transition:transform .22s var(--ease),border-color .22s var(--ease);
    }
    .voice:hover{transform:translateY(-4px);border-color:rgba(167,255,61,.32)}
    .avatar-row{display:flex;align-items:center;gap:12px;margin-bottom:13px}
    .avatar{
      width:38px;height:38px;border-radius:50%;
      background:linear-gradient(135deg,var(--primary),rgba(255,178,63,.75));
      color:#10160D;
      display:flex;align-items:center;justify-content:center;
      font-weight:900;
    }
    .voice-name{font-weight:800;color:#F1F7EC}
    .voice-meta{font-size:12px;color:var(--muted-2)}
    .voice p{font-size:14px;margin-bottom:0}

    .calendar{
      border:1px solid var(--line-soft);
      border-radius:var(--radius);
      background:var(--panel);
      padding:22px;
      box-shadow:var(--shadow);
    }
    .calendar-row{
      display:grid;
      grid-template-columns:92px 1fr auto;
      gap:16px;
      align-items:center;
      padding:15px 0;
      border-bottom:1px solid rgba(255,255,255,.07);
    }
    .calendar-row:last-child{border-bottom:0}
    .cal-date{
      color:#10160D;
      background:var(--amber);
      border-radius:10px;
      padding:6px 9px;
      font-size:13px;
      font-weight:850;
      text-align:center;
    }
    .calendar-row h3{font-size:16px;margin:0 0 2px}
    .calendar-row p{font-size:13px;margin:0}
    .cal-state{font-size:12px;color:var(--primary);font-weight:850}

    .cta-panel{
      border:1px solid rgba(167,255,61,.22);
      border-radius:24px;
      padding:34px;
      background:
        linear-gradient(135deg,rgba(167,255,61,.11),transparent 36%),
        linear-gradient(180deg,#121816,#090D0C);
      box-shadow:var(--shadow-glow);
      overflow:hidden;
      position:relative;
      clip-path:polygon(0 0,100% 0,100% calc(100% - 28px),calc(100% - 28px) 100%,0 100%);
    }
    .cta-panel:after{
      content:"";
      position:absolute;
      right:28px;top:28px;
      width:120px;height:120px;
      border:1px solid rgba(167,255,61,.14);
      border-radius:50%;
    }
    .cta-inner{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line-soft);
      border-radius:15px;
      overflow:hidden;
      background:var(--panel);
    }
    .accordion-title{
      border:0;
      background:transparent;
      color:#EAF0E5;
      font-weight:800;
      font-size:16px;
      padding:18px 52px 18px 20px;
      line-height:1.45;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(167,255,61,.055);
      color:var(--primary);
    }
    .accordion-title:before{color:var(--primary);font-size:22px;margin-top:-12px}
    .accordion-content{
      border:0;
      background:#0C1110;
      color:var(--muted);
      padding:0 20px 20px;
    }
    .accordion-content p{font-size:15px;margin-bottom:0}

    .site-footer{
      background:#060807;
      border-top:1px solid var(--line-soft);
      padding:54px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr .75fr;
      gap:28px;
      margin-bottom:32px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
    }
    .footer-brand strong{font-size:18px;color:#F4FAEF}
    .footer-card{
      border:1px solid var(--line-soft);
      background:rgba(255,255,255,.025);
      border-radius:18px;
      padding:20px;
    }
    .footer-card h3{font-size:15px;color:#F2F8EC;margin-bottom:12px}
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:8px;
    }
    .footer-links a{
      color:var(--muted);
      font-size:14px;
    }
    .footer-links a:hover{color:var(--primary)}
    .copyright{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.07);
      color:#7E8779;
      font-size:13px;
    }
    .back-top{
      position:fixed;
      right:18px;
      bottom:18px;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--line);
      background:#0E1312;
      color:var(--primary);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      opacity:0;
      pointer-events:none;
      transform:translateY(10px);
      transition:opacity .22s var(--ease),transform .22s var(--ease);
      z-index:40;
    }
    .back-top.show{opacity:1;pointer-events:auto;transform:translateY(0)}
    .back-top:hover{box-shadow:0 0 22px rgba(167,255,61,.18);transform:translateY(-2px)}

    @media (max-width:1023px){
      .section{padding:68px 0}
      .brand-inner{flex-wrap:wrap}
      .top-search{order:3;flex-basis:100%;max-width:none}
      .matrix,.progress-layout,.news-layout,.cta-inner{grid-template-columns:1fr}
      .steps{grid-template-columns:repeat(2,1fr)}
      .assurance-strip{grid-template-columns:repeat(2,1fr)}
      .voice-wall{grid-template-columns:1fr 1fr}
      .cta-actions{justify-content:flex-start}
      .footer-grid{grid-template-columns:1fr 1fr}
      .footer-grid .footer-card:first-child{grid-column:1/-1}
    }
    @media (max-width:639px){
      .site-container{padding:0 16px}
      .section{padding:52px 0}
      .section-head{display:block}
      .brand-row{padding:10px 0}
      .brand-title{max-width:230px;font-size:14px}
      .brand-sub{display:none}
      .header-actions .mini-link{display:none}
      .menu-toggle{display:flex}
      .top-search{display:none}
      .top-search.open{display:flex}
      .channel-label{display:none}
      .hero{padding:52px 0 56px;min-height:auto}
      .hero p.hero-desc{font-size:15px;line-height:1.78}
      .hero-search{grid-template-columns:1fr}
      .hero-search button{height:44px}
      .hero-actions .btn{width:100%}
      .hero-metrics{grid-template-columns:1fr}
      .entry-grid,.steps,.coverage-grid,.assurance-strip,.voice-wall{grid-template-columns:1fr}
      .radar-circle{width:210px;height:210px}
      .track-card{flex-basis:82vw}
      .track-overlay{transform:translateY(0)}
      .track-wrap:before,.track-wrap:after{width:28px}
      .news-item{grid-template-columns:1fr;gap:6px}
      .calendar-row{grid-template-columns:1fr;gap:8px}
      .cta-panel{padding:24px 20px}
      .cta-actions .btn{width:100%}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column;align-items:flex-start}
    }
    @media (prefers-reduced-motion:reduce){
      *,*:before,*:after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
    }

/* roulang page: category1 */
:root{
      --bg:#07090B;
      --bg-2:#0B0F10;
      --panel:#101514;
      --panel-2:#131A18;
      --panel-3:#18201D;
      --text:#E8EEE5;
      --muted:#AAB2A0;
      --soft:#D7DED0;
      --line:rgba(167,255,61,.18);
      --line-2:rgba(255,255,255,.09);
      --primary:#A7FF3D;
      --primary-2:#8CEB2F;
      --amber:#FFB23F;
      --red:#8E2F2F;
      --shadow:0 20px 60px rgba(0,0,0,.42);
      --shadow-soft:0 14px 38px rgba(0,0,0,.32);
      --radius:18px;
      --radius-sm:12px;
      --container:1240px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 15% 8%, rgba(167,255,61,.12), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255,178,63,.10), transparent 25%),
        linear-gradient(180deg,#07090B 0%,#0B0F10 45%,#07090B 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-2;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.12));
    }
    body:after{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      opacity:.08;
      background:repeating-linear-gradient(180deg, transparent 0, transparent 6px, rgba(167,255,61,.28) 7px);
    }
    a{color:inherit;text-decoration:none;transition:color .22s var(--ease),border-color .22s var(--ease),background .22s var(--ease),transform .22s var(--ease)}
    a:hover,a:focus{color:var(--primary)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea{font:inherit}
    button{cursor:pointer}
    :focus-visible{outline:2px solid var(--primary);outline-offset:3px}
    .site-container{width:min(calc(100% - 40px),var(--container));margin:0 auto}
    .section{padding:82px 0;position:relative}
    .section.tight{padding-top:52px}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      border:1px solid var(--line);
      background:rgba(167,255,61,.055);
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      letter-spacing:.08em;
      font-weight:700;
    }
    .eyebrow:before{
      content:"";
      width:7px;
      height:7px;
      background:var(--primary);
      box-shadow:0 0 18px rgba(167,255,61,.75);
      border-radius:50%;
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(30px,4.5vw,52px);
      line-height:1.16;
      letter-spacing:-.04em;
      font-weight:800;
      margin-bottom:18px;
    }
    h2{
      font-size:clamp(25px,3vw,34px);
      line-height:1.24;
      font-weight:780;
      letter-spacing:-.03em;
      margin-bottom:10px;
    }
    h3{
      font-size:20px;
      line-height:1.35;
      font-weight:740;
      margin-bottom:10px;
    }
    p{color:var(--muted);font-size:16px}
    .lead{font-size:17px;color:#CAD3C4;max-width:760px}
    .site-header{
      position:sticky;
      top:0;
      z-index:30;
      background:rgba(7,9,11,.88);
      backdrop-filter:blur(14px);
      border-bottom:1px solid var(--line-2);
      box-shadow:0 14px 38px rgba(0,0,0,.25);
    }
    .brand-row{
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .logo-mark{
      width:36px;
      height:36px;
      display:inline-block;
      position:relative;
      border:1px solid rgba(167,255,61,.52);
      background:
        linear-gradient(135deg, rgba(167,255,61,.16), transparent 54%),
        #0D1211;
      clip-path:polygon(0 0, 82% 0, 100% 18%, 100% 100%, 18% 100%, 0 82%);
      box-shadow:0 0 24px rgba(167,255,61,.18);
      flex:0 0 auto;
    }
    .logo-mark:before,.logo-mark:after{
      content:"";
      position:absolute;
      background:var(--primary);
    }
    .logo-mark:before{width:16px;height:2px;left:9px;top:17px;box-shadow:0 0 12px rgba(167,255,61,.75)}
    .logo-mark:after{width:2px;height:16px;left:16px;top:10px}
    .brand-name{
      display:flex;
      flex-direction:column;
      line-height:1.2;
    }
    .brand-name strong{font-size:17px;font-weight:800;letter-spacing:-.02em}
    .brand-name span{font-size:12px;color:var(--muted)}
    .header-search{
      flex:1 1 520px;
      max-width:560px;
      position:relative;
    }
    .header-search input{
      width:100%;
      height:42px;
      margin:0;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:#0E1212;
      color:var(--text);
      padding:0 112px 0 18px;
      box-shadow:none;
    }
    .header-search input::placeholder{color:#747D72}
    .header-search input:focus{
      border-color:rgba(167,255,61,.62);
      background:#0E1212;
      box-shadow:0 0 0 4px rgba(167,255,61,.08);
    }
    .search-btn{
      position:absolute;
      top:5px;
      right:5px;
      height:32px;
      border:0;
      border-radius:999px;
      padding:0 15px;
      background:var(--primary);
      color:#0B0F10;
      font-weight:800;
    }
    .search-btn:hover{background:#C6FF72}
    .header-quick{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
    }
    .quick-link{
      font-size:13px;
      color:var(--soft);
      border:1px solid var(--line-2);
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.03);
    }
    .quick-link:hover{border-color:var(--line);background:rgba(167,255,61,.06)}
    .channel-row{
      border-top:1px solid rgba(255,255,255,.06);
      overflow:hidden;
    }
    .channel-menu{
      list-style:none;
      margin:0 auto;
      padding:9px 0 10px;
      width:min(calc(100% - 40px),var(--container));
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .channel-menu::-webkit-scrollbar{display:none}
    .channel-menu a{
      display:inline-flex;
      align-items:center;
      min-height:36px;
      white-space:nowrap;
      color:#BFC9B8;
      border:1px solid rgba(255,255,255,.09);
      border-radius:999px;
      background:rgba(255,255,255,.025);
      padding:7px 14px;
      font-weight:700;
      font-size:14px;
    }
    .channel-menu a:hover{
      color:var(--primary);
      border-color:rgba(167,255,61,.35);
      transform:translateY(-1px);
    }
    .channel-menu a.active{
      color:#10140F;
      background:var(--primary);
      border-color:var(--primary);
      box-shadow:0 0 22px rgba(167,255,61,.2);
    }
    .category-hero{
      padding:58px 0 42px;
      background:
        linear-gradient(120deg, rgba(167,255,61,.08), transparent 38%),
        linear-gradient(290deg, rgba(255,178,63,.08), transparent 32%);
      border-bottom:1px solid var(--line-2);
      position:relative;
      overflow:hidden;
    }
    .category-hero:before{
      content:"";
      position:absolute;
      right:5vw;
      top:-90px;
      width:310px;
      height:310px;
      border:1px solid rgba(167,255,61,.14);
      border-radius:50%;
      box-shadow:inset 0 0 0 34px rgba(167,255,61,.025),0 0 70px rgba(167,255,61,.08);
    }
    .hero-panel{
      position:relative;
      border:1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
        rgba(13,18,17,.84);
      box-shadow:var(--shadow);
      border-radius:var(--radius);
      padding:32px;
      overflow:hidden;
    }
    .hero-panel:after{
      content:"";
      position:absolute;
      inset:14px;
      border:1px solid rgba(255,255,255,.055);
      border-radius:14px;
      pointer-events:none;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      border-radius:12px;
      padding:0 18px;
      font-weight:800;
      border:1px solid transparent;
      transition:transform .22s var(--ease),box-shadow .22s var(--ease),background .22s var(--ease),border-color .22s var(--ease),color .22s var(--ease);
    }
    .btn-primary{
      background:var(--primary);
      color:#090D0A;
      box-shadow:0 0 28px rgba(167,255,61,.18);
      clip-path:polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }
    .btn-primary:hover{color:#090D0A;background:#C7FF79;transform:translateY(-2px);box-shadow:0 0 38px rgba(167,255,61,.28)}
    .btn-secondary{
      color:var(--soft);
      background:rgba(255,255,255,.035);
      border-color:rgba(255,255,255,.12);
    }
    .btn-secondary:hover{color:var(--primary);border-color:rgba(167,255,61,.42);background:rgba(167,255,61,.055);transform:translateY(-2px)}
    .status-stack{
      display:grid;
      gap:14px;
    }
    .status-card{
      border:1px solid rgba(255,255,255,.09);
      background:
        linear-gradient(90deg, rgba(167,255,61,.065), transparent 62%),
        rgba(8,12,12,.76);
      border-radius:16px;
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .status-card.tall{
      min-height:420px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:
        linear-gradient(180deg, rgba(167,255,61,.10), transparent 45%),
        linear-gradient(145deg, #131A18, #0A0E0D);
    }
    .status-card:before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      width:4px;
      height:100%;
      background:linear-gradient(180deg,var(--primary),transparent);
      opacity:.72;
    }
    .status-meta{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px;color:var(--muted);font-size:13px}
    .status-dot{display:inline-flex;align-items:center;gap:7px}
    .status-dot:before{content:"";width:8px;height:8px;border-radius:50%;background:var(--primary);box-shadow:0 0 16px rgba(167,255,61,.85)}
    .metric-number{font-size:38px;font-weight:850;letter-spacing:-.04em;color:var(--text);line-height:1}
    .metric-label{font-size:14px;color:var(--muted);margin-top:8px}
    .mini-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:18px}
    .mini-item{
      border:1px solid rgba(255,255,255,.08);
      border-radius:13px;
      padding:14px;
      background:rgba(255,255,255,.03);
    }
    .mini-item strong{display:block;font-size:15px;margin-bottom:4px}
    .mini-item span{font-size:12px;color:var(--muted)}
    .filter-panel{
      margin-top:-18px;
      position:relative;
      z-index:2;
      border:1px solid var(--line-2);
      border-radius:18px;
      background:rgba(12,17,16,.92);
      box-shadow:var(--shadow-soft);
      padding:18px;
    }
    .filter-row{
      display:flex;
      align-items:center;
      gap:12px;
      overflow-x:auto;
      scrollbar-width:none;
      padding-bottom:2px;
    }
    .filter-row::-webkit-scrollbar{display:none}
    .filter-label{
      flex:0 0 auto;
      color:var(--soft);
      font-size:13px;
      font-weight:800;
      letter-spacing:.05em;
    }
    .filter-chip{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:7px;
      border:1px solid rgba(255,255,255,.10);
      background:#0E1212;
      color:#BAC4B4;
      padding:9px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:700;
    }
    .filter-chip:hover,.filter-chip.active{
      color:#0A0E0B;
      background:var(--primary);
      border-color:var(--primary);
      box-shadow:0 0 20px rgba(167,255,61,.15);
    }
    .rail-wrap{position:relative}
    .content-rail{
      display:flex;
      gap:18px;
      overflow-x:auto;
      padding:6px 4px 24px;
      scroll-snap-type:x proximity;
      scrollbar-color:rgba(167,255,61,.35) rgba(255,255,255,.05);
    }
    .content-rail::-webkit-scrollbar{height:8px}
    .content-rail::-webkit-scrollbar-track{background:rgba(255,255,255,.05);border-radius:20px}
    .content-rail::-webkit-scrollbar-thumb{background:rgba(167,255,61,.42);border-radius:20px}
    .rail-card{
      flex:0 0 310px;
      height:360px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.09);
      background:
        linear-gradient(160deg, rgba(167,255,61,.11), transparent 38%),
        linear-gradient(25deg, rgba(255,178,63,.10), transparent 38%),
        #111715;
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
      scroll-snap-align:start;
      transition:transform .26s var(--ease),border-color .26s var(--ease),box-shadow .26s var(--ease);
    }
    .rail-card:before{
      content:"";
      position:absolute;
      inset:18px 18px auto auto;
      width:70px;
      height:70px;
      border:1px solid rgba(167,255,61,.16);
      border-radius:50%;
      box-shadow:inset 0 0 0 16px rgba(167,255,61,.025);
    }
    .rail-card:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, transparent 25%, rgba(0,0,0,.82) 74%, rgba(0,0,0,.92));
      opacity:.92;
    }
    .rail-card:hover{
      transform:translateY(-4px) scale(1.025);
      border-color:rgba(167,255,61,.38);
      box-shadow:0 24px 70px rgba(0,0,0,.48),0 0 26px rgba(167,255,61,.08);
    }
    .rail-info{
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      z-index:2;
      padding:22px;
      transform:translateY(12px);
      transition:transform .26s var(--ease);
    }
    .rail-card:hover .rail-info{transform:translateY(0)}
    .tag-list{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:12px}
    .tag{
      display:inline-flex;
      align-items:center;
      border:1px solid rgba(167,255,61,.22);
      background:rgba(167,255,61,.075);
      color:var(--primary);
      border-radius:8px;
      padding:4px 8px;
      font-size:12px;
      font-weight:800;
    }
    .tag.amber{border-color:rgba(255,178,63,.25);background:rgba(255,178,63,.08);color:var(--amber)}
    .rail-info h3{margin-bottom:8px}
    .rail-info p{font-size:14px;line-height:1.65;margin-bottom:14px}
    .inline-link{
      color:var(--primary);
      font-weight:800;
      font-size:14px;
    }
    .inline-link:after{content:" →"}
    .mixed-grid{
      display:grid;
      grid-template-columns:1.15fr 1fr 1fr;
      gap:18px;
    }
    .info-card{
      border:1px solid rgba(255,255,255,.09);
      border-radius:18px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
        rgba(14,19,18,.9);
      box-shadow:var(--shadow-soft);
      padding:22px;
      position:relative;
      overflow:hidden;
      min-height:235px;
      transition:transform .24s var(--ease),border-color .24s var(--ease),background .24s var(--ease);
    }
    .info-card.featured{grid-row:span 2;min-height:488px;background:
      radial-gradient(circle at 70% 12%, rgba(167,255,61,.15), transparent 34%),
      linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018)),
      #111715;
    }
    .info-card:hover{
      transform:translateY(-4px);
      border-color:rgba(167,255,61,.35);
      background:
        linear-gradient(145deg, rgba(167,255,61,.08), rgba(255,255,255,.018)),
        rgba(14,19,18,.94);
    }
    .card-code{
      color:rgba(167,255,61,.8);
      font-size:12px;
      font-weight:900;
      letter-spacing:.12em;
      margin-bottom:14px;
    }
    .info-card p{font-size:15px;margin-bottom:18px}
    .field-list{list-style:none;margin:18px 0 0;padding:0;display:grid;gap:10px}
    .field-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:#C3CCBD;
      font-size:14px;
      border-top:1px solid rgba(255,255,255,.06);
      padding-top:10px;
    }
    .field-list li:before{
      content:"";
      width:8px;
      height:8px;
      margin-top:8px;
      flex:0 0 auto;
      border-radius:2px;
      background:var(--primary);
      box-shadow:0 0 12px rgba(167,255,61,.65);
    }
    .progress-layout{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:stretch;
    }
    .timeline{
      border:1px solid rgba(255,255,255,.09);
      border-radius:18px;
      background:rgba(14,19,18,.82);
      padding:24px;
      box-shadow:var(--shadow-soft);
    }
    .timeline-item{
      position:relative;
      padding-left:30px;
      padding-bottom:22px;
      border-left:1px solid rgba(167,255,61,.22);
    }
    .timeline-item:last-child{padding-bottom:0}
    .timeline-item:before{
      content:"";
      position:absolute;
      left:-6px;
      top:0;
      width:11px;
      height:11px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 16px rgba(167,255,61,.75);
    }
    .timeline-item strong{display:block;color:var(--text);margin-bottom:4px}
    .timeline-item span{color:var(--muted);font-size:14px}
    .progress-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
    .progress-card{
      border:1px solid rgba(255,255,255,.09);
      border-radius:18px;
      background:rgba(14,19,18,.82);
      padding:20px;
      box-shadow:var(--shadow-soft);
    }
    .bar{
      width:100%;
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.07);
      overflow:hidden;
      margin:15px 0 10px;
    }
    .bar span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--amber));
      box-shadow:0 0 18px rgba(167,255,61,.28);
    }
    .progress-card small{color:var(--muted)}
    .pagination-wrap{display:flex;align-items:center;justify-content:center;margin-top:34px}
    .pagination .current{
      background:var(--primary);
      color:#0A0E0B;
      border-radius:10px;
      font-weight:900;
    }
    .pagination a{
      color:var(--soft);
      border-radius:10px;
      background:rgba(255,255,255,.04);
      margin:0 3px;
    }
    .pagination a:hover{background:rgba(167,255,61,.12);color:var(--primary)}
    .assurance-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .assurance-card{
      border:1px solid rgba(255,255,255,.09);
      border-radius:18px;
      background:rgba(14,19,18,.82);
      padding:22px;
    }
    .assurance-card strong{display:block;font-size:18px;margin-bottom:8px}
    .assurance-card p{font-size:15px;margin-bottom:0}
    .faq-panel{
      border:1px solid var(--line-2);
      border-radius:18px;
      background:rgba(14,19,18,.84);
      overflow:hidden;
      box-shadow:var(--shadow-soft);
    }
    .accordion{background:transparent;margin:0}
    .accordion-item{border-bottom:1px solid rgba(255,255,255,.08)}
    .accordion-item:last-child{border-bottom:0}
    .accordion-title{
      border:0!important;
      background:transparent!important;
      color:var(--text)!important;
      font-weight:800;
      font-size:16px;
      line-height:1.55;
      padding:20px 54px 20px 20px;
    }
    .accordion-title:hover,.accordion-title:focus{color:var(--primary)!important;background:rgba(167,255,61,.045)!important}
    .accordion-content{
      border:0!important;
      background:rgba(0,0,0,.16)!important;
      color:var(--muted);
      padding:0 20px 20px;
      font-size:15px;
      line-height:1.8;
    }
    .cta-panel{
      border:1px solid rgba(167,255,61,.24);
      border-radius:22px;
      background:
        linear-gradient(110deg, rgba(167,255,61,.13), transparent 42%),
        linear-gradient(290deg, rgba(255,178,63,.10), transparent 40%),
        #101514;
      box-shadow:var(--shadow);
      padding:34px;
      position:relative;
      overflow:hidden;
      clip-path:polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg, transparent, rgba(167,255,61,.08), transparent);
      transform:translateX(-100%);
      animation:scan 5.5s linear infinite;
    }
    @keyframes scan{to{transform:translateX(100%)}}
    .cta-content{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:24px}
    .cta-content p{margin-bottom:0;max-width:720px}
    .cta-buttons{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
    .site-footer{
      background:#07090B;
      border-top:1px solid rgba(255,255,255,.08);
      padding:56px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .8fr .8fr;
      gap:20px;
      margin-bottom:26px;
    }
    .footer-card{
      border:1px solid rgba(255,255,255,.08);
      border-radius:18px;
      background:rgba(255,255,255,.025);
      padding:22px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
    }
    .footer-brand strong{font-size:18px}
    .footer-card h3{font-size:16px;margin-bottom:12px}
    .footer-card p{font-size:14px;margin-bottom:0}
    .footer-links{list-style:none;margin:0;padding:0;display:grid;gap:9px}
    .footer-links a{color:var(--muted);font-size:14px}
    .footer-links a:hover{color:var(--primary);padding-left:4px}
    .copyright{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:#778174;
      font-size:13px;
      border-top:1px solid rgba(255,255,255,.07);
      padding-top:18px;
    }
    .back-top{
      position:fixed;
      right:18px;
      bottom:18px;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(167,255,61,.32);
      background:rgba(12,17,16,.92);
      color:var(--primary);
      display:none;
      align-items:center;
      justify-content:center;
      z-index:40;
      box-shadow:var(--shadow-soft);
    }
    .back-top.show{display:flex}
    @media (max-width:1023px){
      .brand-row{flex-wrap:wrap;padding:14px 0}
      .header-search{order:3;flex-basis:100%;max-width:none}
      .header-quick{margin-left:auto}
      .mixed-grid{grid-template-columns:1fr 1fr}
      .info-card.featured{grid-column:1/-1;grid-row:auto;min-height:auto}
      .progress-layout{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .cta-content{align-items:flex-start;flex-direction:column}
      .cta-buttons{justify-content:flex-start}
    }
    @media (max-width:767px){
      .site-container{width:min(calc(100% - 28px),var(--container))}
      .section{padding:58px 0}
      .section-head{display:block}
      .brand-name strong{font-size:15px}
      .brand-name span{display:none}
      .quick-link{display:none}
      .category-hero{padding:34px 0 28px}
      .hero-panel{padding:22px}
      .status-card.tall{min-height:340px;margin-top:18px}
      .hero-actions .btn{width:100%}
      .filter-panel{padding:14px}
      .rail-card{flex-basis:82vw;height:335px}
      .mixed-grid,.assurance-grid,.progress-cards{grid-template-columns:1fr}
      .mini-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column;align-items:flex-start}
      .cta-panel{padding:24px}
      .cta-buttons,.cta-buttons .btn{width:100%}
      .section-head .lead{margin-bottom:0}
    }
    @media (max-width:520px){
      h1{font-size:30px}
      h2{font-size:25px}
      .brand-row{gap:12px}
      .header-search input{padding-right:94px}
      .search-btn{padding:0 12px}
      .channel-menu{width:calc(100% - 24px)}
      .rail-card{flex-basis:84vw}
      .status-card{padding:16px}
      .metric-number{font-size:32px}
    }
    @media (prefers-reduced-motion:reduce){
      *,*:before,*:after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
    }
