/* roulang page: index */
:root{
      --bg:#0b0d0f;
      --bg-soft:#101317;
      --bg-elevated:#151a1f;
      --card:#11161b;
      --card-2:#141920;
      --line:rgba(255,255,255,.08);
      --line-strong:rgba(255,255,255,.14);
      --text:#f4f7fb;
      --muted:#b0b8c4;
      --muted-2:#8b95a5;
      --green:#98ff66;
      --green-deep:#4fd13d;
      --cyan:#73f3ef;
      --amber:#ffbc66;
      --shadow:0 24px 70px rgba(0,0,0,.35);
      --shadow-soft:0 12px 30px rgba(0,0,0,.22);
      --radius:20px;
      --radius-sm:14px;
      --radius-xs:10px;
      --container:1280px;
      --gap:24px;
      --gap-lg:32px;
      --section:92px;
      --header-h:88px;
      --transition:.26s cubic-bezier(.2,.75,.22,1);
      --focus:0 0 0 4px rgba(152,255,102,.16);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:PingFang SC,HarmonyOS Sans,Source Han Sans,Microsoft YaHei,sans-serif;
      background:
        radial-gradient(1100px 620px at 12% -8%, rgba(115,243,239,.12), transparent 44%),
        radial-gradient(900px 500px at 92% 2%, rgba(152,255,102,.10), transparent 38%),
        linear-gradient(180deg, #0b0d0f 0%, #0b0d0f 28%, #0d1014 100%);
      color:var(--text);
      line-height:1.65;
      overflow-x:hidden;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    body::before,
    body::after{
      content:"";
      position:fixed;
      inset:auto;
      pointer-events:none;
      z-index:-1;
      filter:blur(24px);
      opacity:.75;
    }
    body::before{
      width:360px;height:360px;left:-120px;top:120px;
      background:radial-gradient(circle, rgba(152,255,102,.14), transparent 68%);
    }
    body::after{
      width:420px;height:420px;right:-160px;bottom:40px;
      background:radial-gradient(circle, rgba(115,243,239,.11), transparent 68%);
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    button{
      border:0;
      cursor:pointer;
      background:none;
      color:inherit;
    }
    input,textarea{
      width:100%;
      border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      color:var(--text);
      border-radius:14px;
      outline:none;
      transition:border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }
    input::placeholder,textarea::placeholder{color:var(--muted-2)}
    input:focus-visible,textarea:focus-visible,button:focus-visible,a:focus-visible{
      outline:none;
      box-shadow:var(--focus);
    }
    .container{
      width:min(calc(100% - 40px), var(--container));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(14px);
      background:rgba(10,12,15,.74);
      border-bottom:1px solid rgba(255,255,255,.06);
      transition:box-shadow var(--transition), background var(--transition), border-color var(--transition);
    }
    .site-header.is-scrolled{
      background:rgba(10,12,15,.92);
      box-shadow:0 12px 24px rgba(0,0,0,.16);
      border-bottom-color:rgba(255,255,255,.08);
    }
    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      min-height:68px;
      padding:16px 0 10px;
    }
    .brand-wrap{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-size:20px;
      font-weight:800;
      letter-spacing:.2px;
      line-height:1.1;
      white-space:nowrap;
    }
    .brand-mark{
      width:34px;height:34px;border-radius:12px;
      background:
        linear-gradient(145deg, rgba(152,255,102,.22), rgba(115,243,239,.10)),
        linear-gradient(180deg, #1b232b, #101317);
      border:1px solid rgba(152,255,102,.18);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      background:rgba(244,247,251,.94);
      border-radius:999px;
    }
    .brand-mark::before{width:10px;height:10px;left:8px;top:8px;box-shadow:14px 0 0 rgba(152,255,102,.9)}
    .brand-mark::after{width:18px;height:4px;left:8px;bottom:8px;background:rgba(115,243,239,.85)}
    .brand-sub{
      font-size:12px;
      color:var(--muted);
      border:1px solid var(--line);
      padding:4px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.02);
      flex:0 0 auto;
    }
    .header-tools{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:12px;
      flex:1;
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:10px;
      max-width:380px;
      width:100%;
      margin-left:auto;
      border:1px solid var(--line);
      border-radius:999px;
      padding:8px 10px 8px 14px;
      background:rgba(255,255,255,.03);
      transition:border-color var(--transition), background var(--transition), box-shadow var(--transition);
    }
    .search-box:focus-within{
      border-color:rgba(152,255,102,.34);
      box-shadow:var(--focus);
      background:rgba(255,255,255,.05);
    }
    .search-box svg{width:18px;height:18px;color:var(--muted)}
    .search-box input{
      border:0;
      background:transparent;
      padding:6px 0;
      border-radius:0;
      box-shadow:none;
    }
    .search-box button{
      white-space:nowrap;
      font-size:14px;
      padding:9px 16px;
      border-radius:999px;
      color:#09110b;
      background:linear-gradient(135deg, var(--green), #d8ff9a);
      font-weight:700;
      box-shadow:0 10px 22px rgba(152,255,102,.16);
      transition:transform var(--transition), box-shadow var(--transition), filter var(--transition);
    }
    .search-box button:hover{transform:translateY(-2px);box-shadow:0 16px 28px rgba(152,255,102,.23);filter:saturate(105%)}
    .menu-btn{
      display:none;
      align-items:center;
      justify-content:center;
      width:44px;height:44px;
      border-radius:14px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      color:var(--text);
      transition:transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
    }
    .menu-btn:hover{transform:translateY(-1px);border-color:rgba(152,255,102,.28);box-shadow:var(--shadow-soft)}
    .channel-nav{
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 0 14px;
      min-height:54px;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .nav-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 16px;
      border-radius:999px;
      color:var(--muted);
      border:1px solid transparent;
      background:transparent;
      transition:transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
      white-space:nowrap;
      font-size:14px;
    }
    .nav-link:hover{
      transform:translateY(-1px);
      color:var(--text);
      background:rgba(255,255,255,.04);
      border-color:rgba(255,255,255,.08);
      box-shadow:var(--shadow-soft);
    }
    .nav-link.active{
      color:#09110b;
      background:linear-gradient(135deg, var(--green), #d8ff9a);
      font-weight:700;
      box-shadow:0 16px 26px rgba(152,255,102,.18);
    }
    .trendbar{
      display:flex;
      align-items:center;
      gap:10px;
      padding:0 0 16px;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .trendbar::-webkit-scrollbar{display:none}
    .trendbar .label{
      color:var(--muted);
      font-size:12px;
      flex:0 0 auto;
      letter-spacing:.18em;
      text-transform:uppercase;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      border-radius:999px;
      border:1px solid var(--line);
      padding:7px 12px;
      color:var(--muted);
      background:rgba(255,255,255,.02);
      transition:transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
      white-space:nowrap;
      font-size:13px;
    }
    .chip:hover,.chip.is-active{
      transform:translateY(-1px);
      color:var(--text);
      border-color:rgba(115,243,239,.30);
      background:rgba(115,243,239,.08);
      box-shadow:var(--shadow-soft);
    }
    .main-wrap{padding-bottom:44px}
    .section{
      padding:var(--section) 0;
      scroll-margin-top:110px;
    }
    .hero{
      position:relative;
      padding-top:46px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:repeat(12, minmax(0,1fr));
      gap:var(--gap-lg);
      align-items:center;
    }
    .hero-copy{
      grid-column:span 7;
      min-width:0;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:#d8e1ea;
      font-size:13px;
      letter-spacing:.18em;
      text-transform:uppercase;
      margin-bottom:16px;
    }
    .eyebrow::before{
      content:"";
      width:44px;height:1px;
      background:linear-gradient(90deg, var(--green), rgba(255,255,255,.08));
      flex:0 0 auto;
    }
    .hero h1{
      margin:0;
      font-size:clamp(36px, 4.2vw, 58px);
      line-height:1.06;
      letter-spacing:-.03em;
      font-weight:800;
      max-width:10.8em;
    }
    .hero-lead{
      margin:22px 0 0;
      color:var(--muted);
      font-size:clamp(16px, 1.4vw, 18px);
      max-width:44rem;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:48px;
      padding:0 18px;
      border-radius:14px;
      border:1px solid transparent;
      font-weight:700;
      letter-spacing:.01em;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition), opacity var(--transition);
      will-change:transform;
    }
    .btn:hover{transform:translateY(-3px)}
    .btn:active{transform:translateY(-1px) scale(.99)}
    .btn-primary{
      background:linear-gradient(135deg, var(--green), #d9ffa0);
      color:#08110a;
      box-shadow:0 16px 28px rgba(152,255,102,.16);
    }
    .btn-primary:hover{box-shadow:0 20px 36px rgba(152,255,102,.22)}
    .btn-outline{
      color:var(--text);
      background:rgba(255,255,255,.02);
      border-color:var(--line);
    }
    .btn-outline:hover{
      border-color:rgba(115,243,239,.32);
      background:rgba(115,243,239,.06);
      box-shadow:var(--shadow-soft);
    }
    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:20px;
    }
    .mini-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.03);
      border:1px solid var(--line);
      color:var(--muted);
      font-size:13px;
    }
    .mini-pill strong{color:var(--text);font-weight:700}
    .hero-panel{
      grid-column:span 5;
      min-width:0;
    }
    .bento{
      position:relative;
      padding:22px;
      border-radius:28px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
        linear-gradient(145deg, rgba(16,19,23,.98), rgba(9,11,13,.94));
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .bento::before{
      content:"";
      position:absolute;
      inset:-1px;
      background:radial-gradient(620px 220px at 26% 0%, rgba(152,255,102,.10), transparent 60%),
                 radial-gradient(540px 220px at 100% 18%, rgba(115,243,239,.10), transparent 58%);
      pointer-events:none;
    }
    .bento-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .bento-title{
      margin:0;
      font-size:20px;
      line-height:1.2;
      font-weight:800;
    }
    .bento-sub{
      margin:6px 0 0;
      color:var(--muted);
      font-size:14px;
    }
    .bento-flag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:12px;
      color:#08110a;
      background:linear-gradient(135deg, var(--amber), #ffe0ab);
      border-radius:999px;
      padding:7px 11px;
      font-weight:700;
      white-space:nowrap;
      box-shadow:0 10px 20px rgba(255,188,102,.15);
    }
    .bento-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
    }
    .bento-card{
      min-height:122px;
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.03);
      border:1px solid var(--line);
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }
    .bento-card:hover{transform:translateY(-2px);border-color:rgba(152,255,102,.26);box-shadow:var(--shadow-soft);background:rgba(255,255,255,.05)}
    .bento-card h3{
      margin:0 0 8px;
      font-size:15px;
      line-height:1.3;
      font-weight:700;
    }
    .bento-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
    }
    .bento-card .num{
      display:block;
      font-size:28px;
      line-height:1;
      font-weight:800;
      letter-spacing:-.03em;
      margin-bottom:10px;
      color:var(--text);
    }
    .bento-stats{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:14px;
      position:relative;
      z-index:1;
    }
    .bento-stats .mini-pill{
      background:rgba(255,255,255,.04);
      border-color:rgba(255,255,255,.08);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:28px;
    }
    .section-head .copy{
      max-width:720px;
    }
    .section-head h2{
      margin:0;
      font-size:clamp(26px, 2.6vw, 38px);
      line-height:1.12;
      letter-spacing:-.03em;
      font-weight:800;
    }
    .section-head p{
      margin:12px 0 0;
      color:var(--muted);
      max-width:60rem;
      font-size:15px;
    }
    .section-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 14px;
      border-radius:999px;
      border:1px solid rgba(115,243,239,.22);
      background:rgba(115,243,239,.06);
      color:#d8ffff;
      font-size:13px;
      white-space:nowrap;
      flex:0 0 auto;
    }
    .matrix-grid{
      display:grid;
      grid-template-columns:repeat(12, minmax(0,1fr));
      gap:var(--gap);
      align-items:stretch;
    }
    .feature-card{
      position:relative;
      border-radius:24px;
      border:1px solid var(--line);
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)), var(--card);
      padding:24px;
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
      min-width:0;
    }
    .feature-card::before{
      content:"";
      position:absolute;
      left:0;top:0;right:0;height:3px;
      background:linear-gradient(90deg, transparent, rgba(152,255,102,.8), rgba(115,243,239,.8));
      opacity:.65;
      transform:scaleX(.72);
      transform-origin:left;
      transition:transform var(--transition), opacity var(--transition);
    }
    .feature-card:hover{
      transform:translateY(-4px);
      border-color:rgba(152,255,102,.28);
      background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)), var(--card-2);
      box-shadow:0 20px 44px rgba(0,0,0,.30);
    }
    .feature-card:hover::before{transform:scaleX(1);opacity:1}
    .feature-card.large{grid-column:span 7}
    .feature-card.side{grid-column:span 5}
    .feature-card.tall{grid-column:span 5;display:flex;flex-direction:column;justify-content:space-between}
    .feature-card h3{
      margin:0;
      font-size:24px;
      line-height:1.2;
      font-weight:800;
    }
    .feature-card .summary{
      margin:14px 0 0;
      color:var(--muted);
      font-size:15px;
      max-width:34rem;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:18px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:999px;
      border:1px solid var(--line);
      color:var(--muted);
      font-size:12px;
      background:rgba(255,255,255,.02);
    }
    .tag.is-accent{
      color:#08110a;
      background:linear-gradient(135deg, var(--green), #ddffab);
      border-color:transparent;
      font-weight:700;
    }
    .bullet-list{
      display:grid;
      gap:10px;
      margin:18px 0 0;
      padding:0;
      list-style:none;
      color:var(--text);
    }
    .bullet-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--muted);
      font-size:14px;
    }
    .bullet-list i{
      width:8px;height:8px;
      border-radius:50%;
      margin-top:9px;
      background:linear-gradient(135deg, var(--green), var(--cyan));
      flex:0 0 auto;
      box-shadow:0 0 0 4px rgba(152,255,102,.08);
    }
    .feature-cta{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-top:20px;
      color:#dfffb1;
      font-weight:700;
      font-size:14px;
    }
    .feature-cta span{
      width:30px;height:30px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:rgba(152,255,102,.10);
      border:1px solid rgba(152,255,102,.18);
      transition:transform var(--transition), background var(--transition);
    }
    .feature-cta:hover span{transform:translateX(2px);background:rgba(152,255,102,.16)}
    .note-panel{
      padding:18px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.02);
      color:var(--muted);
      min-height:100%;
    }
    .note-panel h4{
      margin:0 0 10px;
      color:var(--text);
      font-size:16px;
    }
    .note-panel .list{
      display:grid;
      gap:10px;
      padding:0;
      margin:0;
      list-style:none;
    }
    .note-panel .list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      font-size:14px;
    }
    .note-panel .list li::before{
      content:"";
      width:8px;height:8px;
      border-radius:999px;
      margin-top:8px;
      flex:0 0 auto;
      background:var(--cyan);
      box-shadow:0 0 0 4px rgba(115,243,239,.10);
    }
    .triples{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:var(--gap);
    }
    .triple-card{
      padding:24px;
      border-radius:24px;
      border:1px solid var(--line);
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)), var(--card);
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .triple-card:hover{
      transform:translateY(-4px);
      border-color:rgba(115,243,239,.24);
      box-shadow:var(--shadow-soft);
    }
    .triple-icon{
      width:46px;height:46px;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:var(--green);
      margin-bottom:16px;
    }
    .triple-card h3{margin:0;font-size:18px;line-height:1.2;font-weight:800}
    .triple-card p{margin:12px 0 0;color:var(--muted);font-size:14px}
    .data-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:var(--gap);
    }
    .data-card{
      padding:22px;
      border-radius:22px;
      border:1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
        linear-gradient(160deg, rgba(20,25,31,.98), rgba(13,16,20,.96));
      box-shadow:var(--shadow-soft);
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .data-card:hover{
      transform:translateY(-3px);
      border-color:rgba(152,255,102,.22);
      box-shadow:0 22px 38px rgba(0,0,0,.25);
    }
    .data-card .big{
      font-size:42px;
      line-height:1;
      font-weight:800;
      letter-spacing:-.04em;
      color:var(--text);
    }
    .data-card .small{
      margin-top:10px;
      color:var(--muted);
      font-size:14px;
    }
    .news-layout{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:var(--gap);
      align-items:start;
    }
    .news-list{
      grid-column:span 7;
      display:grid;
      gap:12px;
    }
    .news-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:16px 18px;
      border-radius:18px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      transition:transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
    }
    .news-item:hover{
      transform:translateY(-2px);
      border-color:rgba(115,243,239,.24);
      background:rgba(255,255,255,.05);
      box-shadow:var(--shadow-soft);
    }
    .news-item .dot{
      width:12px;height:12px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--green), var(--cyan));
      box-shadow:0 0 0 5px rgba(152,255,102,.10);
      flex:0 0 auto;
    }
    .news-item h3{
      margin:0;
      font-size:15px;
      line-height:1.4;
      font-weight:700;
    }
    .news-item p{
      margin:4px 0 0;
      color:var(--muted);
      font-size:13px;
    }
    .news-meta{
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:8px;
      color:var(--muted-2);
      font-size:12px;
      white-space:nowrap;
    }
    .news-meta .mini-tag{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:6px 10px;
      border-radius:999px;
      color:#08110a;
      background:linear-gradient(135deg, rgba(152,255,102,.95), rgba(217,255,160,.95));
      font-weight:700;
    }
    .news-side{
      grid-column:span 5;
      display:grid;
      gap:var(--gap);
    }
    .side-card{
      padding:22px;
      border-radius:24px;
      border:1px solid var(--line);
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)), var(--card);
    }
    .side-card h3{
      margin:0;
      font-size:18px;
      font-weight:800;
    }
    .side-card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:14px;
    }
    .heat-grid{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .time-line{
      display:grid;
      gap:12px;
      margin-top:16px;
    }
    .timeline-row{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:var(--muted);
      font-size:14px;
    }
    .timeline-row .mark{
      width:28px;height:28px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#08110a;
      background:linear-gradient(135deg, var(--amber), #ffe0ab);
      font-weight:800;
      flex:0 0 auto;
      box-shadow:0 10px 18px rgba(255,188,102,.12);
    }
    .timeline-row strong{display:block;color:var(--text);margin-bottom:4px}
    .steps-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:var(--gap);
    }
    .step-card{
      padding:22px;
      border-radius:22px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      position:relative;
      overflow:hidden;
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .step-card:hover{
      transform:translateY(-4px);
      border-color:rgba(152,255,102,.24);
      box-shadow:var(--shadow-soft);
    }
    .step-card .index{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:38px;height:38px;
      border-radius:14px;
      background:linear-gradient(135deg, var(--green), #d9ffa0);
      color:#08110a;
      font-weight:800;
      margin-bottom:14px;
      box-shadow:0 14px 24px rgba(152,255,102,.12);
    }
    .step-card h3{margin:0;font-size:18px;line-height:1.2;font-weight:800}
    .step-card p{margin:12px 0 0;color:var(--muted);font-size:14px}
    .lead-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:var(--gap);
      align-items:stretch;
    }
    .lead-copy{
      grid-column:span 6;
      padding:28px;
      border-radius:28px;
      border:1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
        linear-gradient(145deg, rgba(17,22,27,.96), rgba(10,12,15,.94));
      box-shadow:var(--shadow-soft);
    }
    .lead-copy h2{
      margin:0;
      font-size:clamp(26px, 2.8vw, 40px);
      line-height:1.1;
      font-weight:800;
    }
    .lead-copy p{
      margin:14px 0 0;
      color:var(--muted);
      font-size:15px;
      max-width:38rem;
    }
    .lead-copy .checklist{
      display:grid;
      gap:10px;
      margin:20px 0 0;
      padding:0;
      list-style:none;
    }
    .lead-copy .checklist li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--text);
      font-size:14px;
    }
    .lead-copy .checklist li::before{
      content:"";
      width:10px;height:10px;
      margin-top:7px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--green), var(--cyan));
      box-shadow:0 0 0 4px rgba(152,255,102,.08);
      flex:0 0 auto;
    }
    .lead-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .lead-panel{
      grid-column:span 6;
      padding:26px;
      border-radius:28px;
      border:1px solid var(--line);
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)), var(--card);
      box-shadow:var(--shadow-soft);
    }
    .lead-panel h3{
      margin:0 0 12px;
      font-size:20px;
      font-weight:800;
    }
    .lead-panel p{
      margin:0 0 16px;
      color:var(--muted);
      font-size:14px;
    }
    .form-tips{
      display:grid;
      gap:10px;
      padding:0;
      margin:0 0 18px;
      list-style:none;
    }
    .form-tips li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--muted);
      font-size:14px;
    }
    .form-tips li::before{
      content:"";
      width:8px;height:8px;border-radius:999px;
      margin-top:8px;
      background:var(--amber);
      box-shadow:0 0 0 4px rgba(255,188,102,.10);
      flex:0 0 auto;
    }
    .privacy-box{
      margin-top:16px;
      padding:16px 18px;
      border-radius:18px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.07);
      color:var(--muted);
      font-size:13px;
    }
    .faq-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:var(--gap);
      align-items:start;
    }
    .faq-list{
      grid-column:span 7;
      display:grid;
      gap:12px;
    }
    .faq-item{
      border-radius:20px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      overflow:hidden;
      transition:border-color var(--transition), background var(--transition), box-shadow var(--transition);
    }
    .faq-item[open]{
      border-color:rgba(152,255,102,.22);
      background:rgba(255,255,255,.05);
      box-shadow:var(--shadow-soft);
    }
    .faq-question{
      list-style:none;
      padding:18px 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      cursor:pointer;
      font-weight:700;
      color:var(--text);
      outline:none;
    }
    .faq-question::-webkit-details-marker{display:none}
    .faq-question .icon{
      width:28px;height:28px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border:1px solid var(--line);
      color:var(--muted);
      flex:0 0 auto;
      transition:transform var(--transition), background var(--transition), color var(--transition);
    }
    .faq-item[open] .faq-question .icon{
      transform:rotate(45deg);
      color:#08110a;
      background:linear-gradient(135deg, var(--green), #d9ffa0);
      border-color:transparent;
    }
    .faq-answer{
      padding:0 20px 18px;
      color:var(--muted);
      font-size:14px;
    }
    .faq-side{
      grid-column:span 5;
      display:grid;
      gap:var(--gap);
    }
    .trust-card{
      padding:24px;
      border-radius:24px;
      border:1px solid var(--line);
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)), var(--card);
    }
    .trust-card h3{margin:0;font-size:18px;font-weight:800}
    .trust-card p{margin:12px 0 0;color:var(--muted);font-size:14px}
    .trust-list{
      display:grid;
      gap:12px;
      margin:18px 0 0;
      padding:0;
      list-style:none;
    }
    .trust-list li{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--text);
      font-size:14px;
    }
    .trust-list span{
      width:10px;height:10px;border-radius:999px;
      background:var(--green);
      box-shadow:0 0 0 4px rgba(152,255,102,.10);
      flex:0 0 auto;
    }
    .site-footer{
      padding:32px 0 36px;
      border-top:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.01);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:2fr 1fr 1fr;
      gap:var(--gap);
      align-items:start;
    }
    .footer-brand{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .footer-brand h2{
      margin:0;
      font-size:22px;
      line-height:1.2;
      font-weight:800;
    }
    .footer-brand p{
      margin:0;
      color:var(--muted);
      max-width:34rem;
      font-size:14px;
    }
    .footer-links h3,.footer-note h3{
      margin:0 0 12px;
      font-size:15px;
      font-weight:800;
    }
    .footer-links ul,.footer-note ul{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:var(--muted);
      transition:color var(--transition), transform var(--transition);
      display:inline-flex;
      width:fit-content;
    }
    .footer-links a:hover{color:var(--text);transform:translateX(2px)}
    .footer-note{
      color:var(--muted);
      font-size:13px;
    }
    .footer-note .tech{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .footer-note .tech span{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.02);
    }
    .floating-cta{
      position:fixed;
      right:22px;
      bottom:22px;
      z-index:40;
      display:inline-flex;
      align-items:center;
      gap:10px;
      border-radius:999px;
      padding:14px 18px;
      background:linear-gradient(135deg, var(--green), #d9ffa0);
      color:#08110a;
      font-weight:800;
      box-shadow:0 18px 36px rgba(152,255,102,.18);
      border:1px solid rgba(255,255,255,.16);
      transition:transform var(--transition), box-shadow var(--transition);
    }
    .floating-cta:hover{transform:translateY(-3px);box-shadow:0 22px 40px rgba(152,255,102,.24)}
    .mobile-cta-bar{
      display:none;
      position:fixed;
      left:0;
      right:0;
      bottom:0;
      z-index:45;
      padding:12px 16px calc(12px + env(safe-area-inset-bottom));
      background:linear-gradient(180deg, rgba(11,13,15,.20), rgba(11,13,15,.94) 28%, rgba(11,13,15,.98));
      border-top:1px solid rgba(255,255,255,.08);
      gap:10px;
    }
    .mobile-cta-bar .btn{flex:1}
    .modal{
      position:fixed;
      inset:0;
      z-index:80;
      display:none;
      align-items:center;
      justify-content:center;
      padding:20px;
    }
    .modal.is-open{display:flex}
    .modal-backdrop{
      position:absolute;
      inset:0;
      background:rgba(0,0,0,.68);
      backdrop-filter:blur(8px);
    }
    .modal-card{
      position:relative;
      z-index:1;
      width:min(100%, 720px);
      border-radius:28px;
      border:1px solid rgba(255,255,255,.09);
      background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)),
        linear-gradient(145deg, rgba(18,22,28,.98), rgba(9,11,13,.97));
      box-shadow:0 32px 80px rgba(0,0,0,.46);
      overflow:hidden;
    }
    .modal-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:18px;
      padding:24px 24px 0;
    }
    .modal-head h3{
      margin:0;
      font-size:24px;
      font-weight:800;
    }
    .modal-head p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:14px;
    }
    .close-btn{
      width:42px;height:42px;
      border-radius:14px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      color:var(--text);
      transition:transform var(--transition), border-color var(--transition), background var(--transition);
      flex:0 0 auto;
    }
    .close-btn:hover{transform:translateY(-2px);border-color:rgba(152,255,102,.24);background:rgba(255,255,255,.06)}
    .modal-body{
      padding:22px 24px 24px;
    }
    .form-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .field.full{grid-column:1/-1}
    .field label{
      color:#e9eef4;
      font-size:13px;
      font-weight:700;
    }
    .field input,.field textarea{
      min-height:48px;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      resize:vertical;
    }
    .field input:focus,.field textarea:focus{
      border-color:rgba(152,255,102,.36);
      box-shadow:var(--focus);
    }
    .modal-actions{
      display:flex;
      justify-content:flex-end;
      gap:12px;
      margin-top:18px;
      flex-wrap:wrap;
    }
    .status-box{
      margin-top:14px;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(152,255,102,.18);
      background:rgba(152,255,102,.06);
      color:#dafcc0;
      font-size:13px;
      display:none;
    }
    .status-box.is-show{display:block}
    .empty-state{
      display:none;
      padding:18px;
      border-radius:18px;
      border:1px dashed rgba(255,255,255,.14);
      color:var(--muted);
      background:rgba(255,255,255,.02);
      text-align:center;
    }
    .skeleton{
      position:relative;
      overflow:hidden;
      background:rgba(255,255,255,.04);
    }
    .skeleton::after{
      content:"";
      position:absolute;
      inset:0;
      transform:translateX(-100%);
      background:linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
      animation:sheen 1.4s infinite;
    }
    @keyframes sheen{100%{transform:translateX(100%)}}
    @media (max-width: 1180px){
      .hero-grid,.lead-grid,.faq-grid,.news-layout{grid-template-columns:1fr}
      .hero-copy,.hero-panel,.feature-card.large,.feature-card.side,.feature-card.tall,.news-list,.news-side,.lead-copy,.lead-panel,.faq-list,.faq-side{grid-column:auto}
      .feature-card h3{font-size:22px}
      .data-grid,.triples,.steps-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width: 900px){
      .topbar{gap:12px}
      .search-box{max-width:none}
      .menu-btn{display:inline-flex}
      .channel-nav{display:none;padding:0 0 16px}
      .site-header.is-open .channel-nav{display:flex;flex-wrap:wrap}
      .trendbar{display:none}
      .hero{padding-top:22px}
      .section{padding:56px 0}
      .section-head{flex-direction:column;align-items:flex-start}
      .matrix-grid{grid-template-columns:1fr}
      .feature-card.large,.feature-card.side,.feature-card.tall{grid-column:auto}
      .data-grid,.triples,.steps-grid,.footer-grid{grid-template-columns:1fr}
      .modal-card{border-radius:24px}
      .form-grid{grid-template-columns:1fr}
    }
    @media (max-width: 680px){
      .container{width:min(calc(100% - 28px), var(--container))}
      .brand{font-size:18px}
      .brand-sub{display:none}
      .search-box{padding:7px 10px 7px 12px}
      .search-box button{padding:8px 12px}
      .hero h1{max-width:12em}
      .hero-actions,.lead-actions,.modal-actions{width:100%}
      .btn{width:auto;flex:1;min-width:calc(50% - 6px)}
      .hero-actions .btn{flex:1 1 100%}
      .news-item{grid-template-columns:1fr;align-items:flex-start}
      .news-meta{align-items:flex-start}
      .mobile-cta-bar{display:flex}
      .floating-cta{display:none}
      .section{padding:44px 0}
      .hero-grid{gap:20px}
      .bento{padding:18px}
      .bento-grid{grid-template-columns:1fr}
      .bento-card{min-height:auto}
      .faq-question{padding:16px}
      .faq-answer{padding:0 16px 16px}
    }

/* roulang page: category2 */
:root {
      --bg: #f5f6f3;
      --surface: #ffffff;
      --surface-soft: #eef0eb;
      --ink: #151715;
      --muted: #666c66;
      --weak: #8a918a;
      --line: rgba(21, 23, 21, .12);
      --line-strong: rgba(21, 23, 21, .2);
      --graphite: #20231f;
      --charcoal: #111310;
      --green: #9cff49;
      --cyan: #2ed4c8;
      --amber: #ffb650;
      --danger: #d94b4b;
      --radius-sm: 10px;
      --radius: 18px;
      --radius-lg: 28px;
      --shadow: 0 18px 50px rgba(17, 19, 16, .10);
      --shadow-soft: 0 10px 30px rgba(17, 19, 16, .08);
      --max: 1220px;
      --header-h: 154px;
      --ease: cubic-bezier(.22, .61, .36, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      min-height: 100vh;
      background:
        radial-gradient(circle at 82% 8%, rgba(156, 255, 73, .18), transparent 28%),
        linear-gradient(180deg, #fafbf8 0%, var(--bg) 42%, #eaede7 100%);
      color: var(--ink);
      font-family: "PingFang SC", "HarmonyOS Sans", "Source Han Sans SC", "Microsoft YaHei", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.7;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
      background: none;
    }

    input,
    textarea,
    select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      color: var(--ink);
      outline: none;
      transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: rgba(46, 212, 200, .9);
      box-shadow: 0 0 0 4px rgba(46, 212, 200, .14);
    }

    textarea {
      min-height: 116px;
      resize: vertical;
    }

    ::selection {
      background: rgba(156, 255, 73, .7);
      color: #111310;
    }

    .container {
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(245, 246, 243, .92);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(18px);
      transition: box-shadow .25s var(--ease), background .25s var(--ease);
    }

    .site-header.is-scrolled {
      background: rgba(250, 251, 248, .96);
      box-shadow: 0 12px 35px rgba(17, 19, 16, .08);
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 16px 0 12px;
    }

    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 20px;
      color: var(--charcoal);
      white-space: nowrap;
      transition: transform .2s var(--ease);
    }

    .brand:hover {
      transform: translateY(-1px);
    }

    .brand-mark {
      width: 32px;
      height: 32px;
      border-radius: 11px;
      background:
        linear-gradient(135deg, var(--green), var(--cyan));
      box-shadow: inset 0 -8px 16px rgba(17, 19, 16, .18), 0 8px 22px rgba(46, 212, 200, .22);
      position: relative;
      flex: 0 0 auto;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px;
      border-radius: 7px;
      border: 2px solid rgba(17, 19, 16, .55);
    }

    .brand-sub {
      padding: 4px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      font-size: 13px;
      background: rgba(255, 255, 255, .72);
      white-space: nowrap;
    }

    .header-tools {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      justify-content: flex-end;
      min-width: 0;
    }

    .search-box {
      width: min(460px, 100%);
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 8px 8px 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, .82);
      transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    }

    .search-box:focus-within {
      border-color: rgba(156, 255, 73, .85);
      box-shadow: 0 0 0 4px rgba(156, 255, 73, .14);
    }

    .search-box svg {
      width: 20px;
      height: 20px;
      color: var(--weak);
      flex: 0 0 auto;
    }

    .search-box input {
      height: 34px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      min-width: 0;
    }

    .search-box button {
      height: 34px;
      padding: 0 15px;
      border-radius: 999px;
      background: var(--charcoal);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    }

    .search-box button:hover {
      transform: translateY(-2px);
      background: #000;
      box-shadow: 0 10px 22px rgba(17, 19, 16, .2);
    }

    .menu-btn {
      display: none;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      color: var(--ink);
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
    }

    .menu-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(46, 212, 200, .7);
      box-shadow: var(--shadow-soft);
    }

    .channel-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      overflow-x: auto;
      scrollbar-width: none;
      padding: 0 0 12px;
    }

    .channel-nav::-webkit-scrollbar {
      display: none;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      height: 38px;
      padding: 0 16px;
      border: 1px solid transparent;
      border-radius: 999px;
      color: var(--muted);
      font-weight: 700;
      white-space: nowrap;
      transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
    }

    .nav-link:hover {
      color: var(--ink);
      background: rgba(255, 255, 255, .8);
      border-color: var(--line);
      transform: translateY(-1px);
    }

    .nav-link.active {
      color: #111310;
      background: var(--green);
      border-color: rgba(17, 19, 16, .08);
      box-shadow: inset 0 -10px 18px rgba(17, 19, 16, .08);
    }

    .trendbar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 0 14px;
      border-top: 1px solid rgba(21, 23, 21, .07);
      overflow-x: auto;
      scrollbar-width: none;
    }

    .trendbar::-webkit-scrollbar {
      display: none;
    }

    .trendbar .label {
      color: var(--weak);
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }

    .chip,
    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      white-space: nowrap;
      line-height: 1;
    }

    .chip {
      height: 30px;
      padding: 0 12px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .72);
      color: var(--muted);
      font-size: 13px;
      transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
    }

    .chip:hover,
    .chip.is-active {
      transform: translateY(-1px);
      border-color: rgba(46, 212, 200, .7);
      background: rgba(46, 212, 200, .12);
      color: var(--ink);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 84px 0;
    }

    .section.tight {
      padding-top: 52px;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-top: 28px;
      color: var(--weak);
      font-size: 14px;
    }

    .breadcrumb a {
      transition: color .2s var(--ease);
    }

    .breadcrumb a:hover {
      color: var(--ink);
    }

    .hero {
      padding: 34px 0 82px;
    }

    .hero-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      min-height: 560px;
      padding: 54px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(120deg, rgba(17, 19, 16, .94), rgba(32, 35, 31, .90)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='760' viewBox='0 0 1200 760'%3E%3Crect width='1200' height='760' fill='%23111310'/%3E%3Cg opacity='.38'%3E%3Cpath d='M78 548h340v74H78zM792 109h258v52H792zM694 500h340v88H694zM147 172h454v94H147z' fill='%23383d35'/%3E%3Cpath d='M95 563h92v14H95zM207 563h170v14H207zM711 520h130v16H711zM861 520h126v16H861zM165 194h330v18H165zM165 226h198v14H165zM812 124h194v12H812z' fill='%23f5f6f3'/%3E%3Cpath d='M616 62v642M52 361h1095' stroke='%23f5f6f3' stroke-width='2' stroke-dasharray='10 18' opacity='.38'/%3E%3Ccircle cx='616' cy='361' r='118' fill='none' stroke='%239cff49' stroke-width='4' opacity='.7'/%3E%3C/g%3E%3C/svg%3E") center/cover;
      color: #fff;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: var(--shadow);
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      inset: auto 42px 34px auto;
      width: 164px;
      height: 164px;
      border-radius: 28px;
      border: 1px solid rgba(156, 255, 73, .5);
      transform: rotate(8deg);
      opacity: .55;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      align-self: flex-start;
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 999px;
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
      font-weight: 700;
      backdrop-filter: blur(10px);
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(156, 255, 73, .14);
    }

    h1 {
      max-width: 780px;
      margin-top: 34px;
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 690px;
      margin-top: 22px;
      color: rgba(255, 255, 255, .78);
      font-size: 19px;
      line-height: 1.85;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 34px rgba(17, 19, 16, .18);
    }

    .btn:active {
      transform: translateY(-1px);
    }

    .btn:focus-visible,
    .chip:focus-visible,
    .nav-link:focus-visible,
    .faq-question:focus-visible,
    .menu-btn:focus-visible {
      outline: 3px solid rgba(46, 212, 200, .35);
      outline-offset: 3px;
    }

    .btn-primary {
      background: var(--green);
      color: #111310;
      border-color: rgba(156, 255, 73, .86);
    }

    .btn-dark {
      background: var(--charcoal);
      color: #fff;
      border-color: rgba(255, 255, 255, .08);
    }

    .btn-dark:hover {
      border-color: rgba(156, 255, 73, .5);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, .08);
      color: #fff;
      border-color: rgba(255, 255, 255, .18);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, .14);
      border-color: rgba(255, 255, 255, .32);
    }

    .btn-line {
      background: #fff;
      color: var(--ink);
      border-color: var(--line);
    }

    .invite-panel {
      display: grid;
      gap: 18px;
    }

    .reward-card,
    .side-card,
    .topic-card,
    .compare-card,
    .faq-item,
    .form-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .86);
      box-shadow: var(--shadow-soft);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    }

    .reward-card:hover,
    .side-card:hover,
    .topic-card:hover,
    .compare-card:hover {
      transform: translateY(-4px);
      border-color: rgba(46, 212, 200, .46);
      box-shadow: var(--shadow);
    }

    .reward-card {
      padding: 28px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 240, 235, .88));
    }

    .reward-head {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: start;
      margin-bottom: 20px;
    }

    .reward-head h2 {
      font-size: 24px;
      line-height: 1.25;
      font-weight: 800;
    }

    .badge {
      min-height: 28px;
      padding: 0 10px;
      background: rgba(255, 182, 80, .18);
      color: #7a4a07;
      border: 1px solid rgba(255, 182, 80, .38);
      font-size: 13px;
      font-weight: 800;
    }

    .progress-meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .progress {
      height: 12px;
      border-radius: 999px;
      background: #dde2d7;
      overflow: hidden;
      box-shadow: inset 0 1px 2px rgba(17, 19, 16, .12);
    }

    .progress span {
      display: block;
      width: 68%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--green), var(--cyan));
    }

    .reward-note {
      margin-top: 16px;
      color: var(--muted);
      font-size: 15px;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .side-card {
      padding: 20px;
      min-height: 142px;
    }

    .side-card .num {
      color: var(--ink);
      font-size: 34px;
      line-height: 1;
      font-weight: 800;
    }

    .side-card p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .86fr) minmax(260px, .42fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-kicker {
      color: var(--muted);
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(28px, 3.4vw, 44px);
      line-height: 1.18;
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-summary {
      color: var(--muted);
      font-size: 16px;
    }

    .hot-matrix {
      display: grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      grid-auto-rows: minmax(150px, auto);
      gap: 18px;
    }

    .topic-card {
      padding: 26px;
      position: relative;
      overflow: hidden;
    }

    .topic-card.large {
      grid-row: span 2;
      background: var(--charcoal);
      color: #fff;
    }

    .topic-card.large p,
    .topic-card.large .meta {
      color: rgba(255, 255, 255, .68);
    }

    .topic-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 24px;
      right: 24px;
      height: 4px;
      border-radius: 0 0 999px 999px;
      background: rgba(46, 212, 200, .55);
      transition: background .2s var(--ease);
    }

    .topic-card:hover::before {
      background: var(--green);
    }

    .topic-card h3 {
      font-size: 22px;
      line-height: 1.25;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .topic-card p {
      color: var(--muted);
      font-size: 15px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .tag {
      min-height: 28px;
      padding: 0 10px;
      border: 1px solid var(--line);
      background: rgba(238, 240, 235, .78);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .topic-card.large .tag {
      background: rgba(255, 255, 255, .1);
      border-color: rgba(255, 255, 255, .15);
      color: rgba(255, 255, 255, .8);
    }

    .compare-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      align-items: stretch;
    }

    .compare-card {
      padding: 28px;
    }

    .compare-card.dark {
      background: var(--graphite);
      color: #fff;
    }

    .compare-card.dark p,
    .compare-card.dark li {
      color: rgba(255, 255, 255, .72);
    }

    .compare-card h3 {
      font-size: 26px;
      line-height: 1.22;
      margin-bottom: 14px;
      font-weight: 800;
    }

    .compare-card p {
      color: var(--muted);
      margin-bottom: 20px;
    }

    .check-list {
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      color: var(--muted);
      font-size: 15px;
    }

    .check-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      margin-top: 8px;
      border-radius: 50%;
      background: var(--green);
      flex: 0 0 auto;
      box-shadow: 0 0 0 5px rgba(156, 255, 73, .14);
    }

    .scoreboard {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 22px;
    }

    .score {
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 16px;
      background: rgba(255, 255, 255, .08);
    }

    .score strong {
      display: block;
      color: var(--green);
      font-size: 32px;
      line-height: 1;
      font-weight: 800;
    }

    .score span {
      display: block;
      margin-top: 8px;
      color: rgba(255, 255, 255, .65);
      font-size: 13px;
    }

    .timeline-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 24px;
      align-items: start;
    }

    .timeline {
      display: grid;
      gap: 16px;
      position: relative;
    }

    .time-item {
      display: grid;
      grid-template-columns: 110px minmax(0, 1fr);
      gap: 20px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .82);
      box-shadow: var(--shadow-soft);
    }

    .time {
      font-weight: 800;
      color: var(--ink);
    }

    .time small {
      display: block;
      margin-top: 3px;
      color: var(--weak);
      font-weight: 700;
      font-size: 12px;
    }

    .time-content h3 {
      font-size: 20px;
      line-height: 1.3;
      font-weight: 800;
    }

    .time-content p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 15px;
    }

    .trend-card {
      position: sticky;
      top: calc(var(--header-h) + 24px);
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      box-shadow: var(--shadow-soft);
    }

    .trend-card h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .rank-list {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .rank-list li {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr) auto;
      align-items: center;
      gap: 10px;
      padding: 12px;
      border-radius: 14px;
      background: var(--surface-soft);
      color: var(--muted);
      font-size: 14px;
    }

    .rank-list b {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--charcoal);
      color: #fff;
      font-size: 13px;
    }

    .rank-list strong {
      color: var(--ink);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .rank-list span {
      color: var(--weak);
      font-size: 12px;
      white-space: nowrap;
    }

    .process-band {
      border-radius: var(--radius-lg);
      background: var(--charcoal);
      color: #fff;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 22px;
    }

    .process-step {
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .07);
    }

    .process-step b {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: var(--green);
      color: var(--charcoal);
      font-weight: 800;
    }

    .process-step h3 {
      margin-top: 16px;
      font-size: 18px;
      font-weight: 800;
    }

    .process-step p {
      margin-top: 8px;
      color: rgba(255, 255, 255, .68);
      font-size: 14px;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: .76fr 1.24fr;
      gap: 28px;
      align-items: start;
    }

    .faq-copy {
      padding: 28px;
      border-radius: var(--radius);
      background: var(--surface-soft);
      border: 1px solid var(--line);
    }

    .faq-copy h2 {
      font-size: 32px;
      line-height: 1.2;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .faq-copy p {
      color: var(--muted);
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 20px 22px;
      color: var(--ink);
      font-weight: 800;
      text-align: left;
    }

    .faq-question span:last-child {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--surface-soft);
      color: var(--muted);
      flex: 0 0 auto;
      transition: transform .2s var(--ease), background .2s var(--ease);
    }

    .faq-item.open .faq-question span:last-child {
      transform: rotate(45deg);
      background: var(--green);
      color: var(--charcoal);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s var(--ease);
    }

    .faq-answer p {
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .cta-band {
      padding: 42px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(135deg, rgba(156, 255, 73, .28), rgba(46, 212, 200, .16)),
        #ffffff;
      border: 1px solid rgba(21, 23, 21, .1);
      box-shadow: var(--shadow-soft);
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
    }

    .cta-band h2 {
      font-size: clamp(28px, 3.2vw, 42px);
      line-height: 1.18;
      font-weight: 800;
    }

    .cta-band p {
      max-width: 700px;
      margin-top: 12px;
      color: var(--muted);
    }

    .privacy-note {
      margin-top: 22px;
      padding: 18px 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .62);
      color: var(--muted);
      font-size: 14px;
    }

    .floating-cta {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 45;
      min-height: 52px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--charcoal);
      color: #fff;
      border: 1px solid rgba(156, 255, 73, .35);
      font-weight: 800;
      box-shadow: 0 18px 40px rgba(17, 19, 16, .24);
      transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }

    .floating-cta:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 52px rgba(17, 19, 16, .30);
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal.open {
      display: flex;
    }

    .modal-mask {
      position: absolute;
      inset: 0;
      background: rgba(17, 19, 16, .58);
      backdrop-filter: blur(6px);
    }

    .form-card {
      position: relative;
      width: min(560px, 100%);
      padding: 28px;
      z-index: 1;
      background: #fff;
    }

    .form-head {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: start;
      margin-bottom: 20px;
    }

    .form-head h2 {
      font-size: 26px;
      line-height: 1.25;
      font-weight: 800;
    }

    .form-head p {
      margin-top: 6px;
      color: var(--muted);
      font-size: 14px;
    }

    .close-btn {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: var(--surface-soft);
      color: var(--ink);
      transition: transform .2s var(--ease), border-color .2s var(--ease);
      flex: 0 0 auto;
    }

    .close-btn:hover {
      transform: rotate(90deg);
      border-color: rgba(217, 75, 75, .4);
    }

    .form-grid {
      display: grid;
      gap: 14px;
    }

    .field label {
      display: block;
      margin-bottom: 7px;
      color: var(--ink);
      font-size: 14px;
      font-weight: 800;
    }

    .field input,
    .field textarea,
    .field select {
      padding: 13px 14px;
    }

    .field .error {
      display: none;
      margin-top: 6px;
      color: var(--danger);
      font-size: 13px;
    }

    .field.invalid input,
    .field.invalid textarea {
      border-color: rgba(217, 75, 75, .78);
      box-shadow: 0 0 0 4px rgba(217, 75, 75, .1);
    }

    .field.invalid .error {
      display: block;
    }

    .submit-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 6px;
    }

    .form-status {
      color: var(--muted);
      font-size: 14px;
      min-height: 22px;
    }

    .form-status.success {
      color: #357d18;
      font-weight: 800;
    }

    .skeleton {
      display: none;
      height: 10px;
      width: 150px;
      border-radius: 999px;
      background: linear-gradient(90deg, #e5e8e0, #f6f7f4, #e5e8e0);
      background-size: 200% 100%;
      animation: shimmer 1.1s linear infinite;
    }

    .form-card.loading .skeleton {
      display: block;
    }

    @keyframes shimmer {
      to {
        background-position: -200% 0;
      }
    }

    .empty-state {
      padding: 18px;
      border: 1px dashed var(--line-strong);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .5);
      color: var(--muted);
      font-size: 14px;
    }

    .site-footer {
      padding: 58px 0;
      background: var(--charcoal);
      color: #fff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .55fr .85fr;
      gap: 34px;
      align-items: start;
    }

    .footer-brand h2 {
      font-size: 24px;
      font-weight: 800;
    }

    .footer-brand p,
    .footer-note li,
    .footer-links a {
      color: rgba(255, 255, 255, .66);
      font-size: 14px;
    }

    .footer-brand p {
      margin-top: 12px;
      max-width: 520px;
    }

    .footer-links h3,
    .footer-note h3 {
      font-size: 16px;
      margin-bottom: 12px;
    }

    .footer-links ul,
    .footer-note ul {
      display: grid;
      gap: 8px;
      list-style: none;
    }

    .footer-links a {
      transition: color .2s var(--ease), transform .2s var(--ease);
      display: inline-flex;
    }

    .footer-links a:hover {
      color: var(--green);
      transform: translateX(3px);
    }

    .tech {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
      color: rgba(255, 255, 255, .45);
      font-size: 13px;
    }

    @media (max-width: 1279px) {
      .hero-shell,
      .compare-layout {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        min-height: 500px;
      }

      .hot-matrix {
        grid-template-columns: 1fr 1fr;
      }

      .topic-card.large {
        grid-column: span 2;
        grid-row: auto;
      }

      .timeline-wrap {
        grid-template-columns: 1fr;
      }

      .trend-card {
        position: static;
      }
    }

    @media (max-width: 1023px) {
      :root {
        --header-h: 148px;
      }

      .container {
        width: min(100% - 36px, var(--max));
      }

      .topbar {
        align-items: flex-start;
      }

      .brand-wrap {
        flex-wrap: wrap;
      }

      .search-box {
        width: min(380px, 100%);
      }

      .section {
        padding: 64px 0;
      }

      .section-head,
      .faq-layout,
      .cta-band {
        grid-template-columns: 1fr;
      }

      .scoreboard,
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand {
        grid-column: span 2;
      }
    }

    @media (max-width: 767px) {
      .container {
        width: min(100% - 28px, var(--max));
      }

      .site-header .container {
        width: min(100% - 22px, var(--max));
      }

      .topbar {
        gap: 12px;
        padding-top: 12px;
      }

      .brand {
        font-size: 17px;
      }

      .brand-sub {
        display: none;
      }

      .header-tools {
        flex: 0 0 auto;
      }

      .search-box {
        position: absolute;
        left: 11px;
        right: 11px;
        top: 68px;
        width: auto;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
      }

      .site-header.search-open .search-box {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .search-box button {
        padding: 0 12px;
      }

      .menu-btn {
        display: inline-flex;
      }

      .channel-nav {
        padding-top: 2px;
      }

      .trendbar {
        padding-bottom: 10px;
      }

      .breadcrumb {
        padding-top: 18px;
        font-size: 13px;
      }

      .hero {
        padding: 24px 0 58px;
      }

      .hero-copy {
        min-height: 520px;
        padding: 30px 24px;
        border-radius: 22px;
      }

      h1 {
        font-size: 32px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .mini-grid,
      .hot-matrix,
      .scoreboard,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .topic-card.large {
        grid-column: auto;
      }

      .section {
        padding: 50px 0;
      }

      .section-title {
        font-size: 28px;
      }

      .time-item {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .process-band,
      .cta-band {
        padding: 24px;
        border-radius: 22px;
      }

      .footer-grid,
      .footer-brand {
        grid-template-columns: 1fr;
        grid-column: auto;
      }

      .floating-cta {
        left: 14px;
        right: 14px;
        bottom: 12px;
        width: calc(100% - 28px);
      }

      .modal {
        align-items: flex-end;
        padding: 0;
      }

      .form-card {
        width: 100%;
        max-height: 92vh;
        overflow: auto;
        border-radius: 24px 24px 0 0;
        padding: 24px 18px 28px;
      }

      .submit-row {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .hero-actions,
      .cta-actions {
        width: 100%;
      }

      .reward-head {
        flex-direction: column;
      }

      .side-card .num {
        font-size: 30px;
      }

      .faq-question {
        padding: 18px;
      }

      .faq-answer p {
        padding: 0 18px 18px;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#f6f7f4;
      --surface:#ffffff;
      --ink:#171917;
      --muted:#62675f;
      --weak:#8b9188;
      --line:#dfe4dc;
      --dark:#191c19;
      --dark-2:#242823;
      --lime:#b8ff3d;
      --cyan:#53d8d2;
      --amber:#ffb94f;
      --danger:#e65b5b;
      --radius:18px;
      --radius-sm:12px;
      --shadow:0 18px 45px rgba(23,25,23,.08);
      --shadow-strong:0 24px 60px rgba(23,25,23,.14);
      --container:1220px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","HarmonyOS Sans","Source Han Sans SC","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:
        linear-gradient(180deg,rgba(255,255,255,.9),rgba(246,247,244,.95) 420px),
        radial-gradient(circle at 80% 18%,rgba(184,255,61,.12),transparent 28%),
        var(--bg);
      line-height:1.68;
      letter-spacing:0;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{border:0;cursor:pointer}
    input,textarea,select{outline:none}
    ::selection{background:var(--lime);color:#111}
    .container{max-width:var(--container);margin:0 auto;padding:0 24px}
    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(246,247,244,.92);
      backdrop-filter:saturate(1.4) blur(16px);
      border-bottom:1px solid rgba(223,228,220,.9);
    }
    .topbar{
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand-wrap{display:flex;align-items:center;gap:12px;min-width:0}
    .brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      font-size:20px;
      color:var(--ink);
      white-space:nowrap;
    }
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:50%;
      background:
        linear-gradient(135deg,var(--lime),var(--cyan));
      box-shadow:inset 0 0 0 6px rgba(255,255,255,.62),0 10px 24px rgba(83,216,210,.25);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      width:8px;
      height:8px;
      border-radius:50%;
      right:6px;
      top:7px;
      background:var(--dark);
    }
    .brand-sub{
      padding:5px 10px;
      border:1px solid var(--line);
      border-radius:999px;
      color:var(--muted);
      font-size:13px;
      background:rgba(255,255,255,.65);
      white-space:nowrap;
    }
    .header-tools{display:flex;align-items:center;gap:12px;min-width:320px;justify-content:flex-end}
    .search-box{
      width:min(420px,42vw);
      display:flex;
      align-items:center;
      gap:8px;
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:999px;
      padding:7px 8px 7px 14px;
      box-shadow:0 8px 24px rgba(23,25,23,.04);
      transition:var(--ease);
    }
    .search-box:focus-within{
      border-color:rgba(83,216,210,.85);
      box-shadow:0 0 0 4px rgba(83,216,210,.14),0 12px 30px rgba(23,25,23,.08);
    }
    .search-box svg{width:19px;height:19px;color:var(--weak);flex:0 0 auto}
    .search-box input{
      flex:1;
      border:0;
      background:transparent;
      min-width:0;
      color:var(--ink);
      font-size:14px;
    }
    .search-box button{
      background:var(--dark);
      color:#fff;
      border-radius:999px;
      padding:7px 14px;
      font-size:13px;
      transition:var(--ease);
      white-space:nowrap;
    }
    .search-box button:hover{transform:translateY(-2px);box-shadow:0 10px 20px rgba(23,25,23,.16)}
    .menu-btn{
      display:none;
      width:42px;
      height:42px;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      background:var(--surface);
      color:var(--ink);
      border:1px solid var(--line);
      transition:var(--ease);
    }
    .menu-btn:hover,.menu-btn:focus-visible{border-color:var(--cyan);box-shadow:0 0 0 4px rgba(83,216,210,.12)}
    .channel-nav{
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 0 12px;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .nav-link{
      position:relative;
      flex:0 0 auto;
      padding:9px 14px;
      border-radius:999px;
      color:var(--muted);
      font-weight:650;
      font-size:14px;
    }
    .nav-link:hover{color:var(--ink);background:rgba(255,255,255,.8)}
    .nav-link.active{
      color:#111;
      background:var(--lime);
      box-shadow:0 10px 26px rgba(184,255,61,.25);
    }
    .trendbar{
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 0 14px;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .trendbar::-webkit-scrollbar{display:none}
    .trendbar .label{
      color:var(--weak);
      font-size:13px;
      flex:0 0 auto;
    }
    .chip,.tag,.badge-status{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.75);
      color:var(--muted);
      white-space:nowrap;
      transition:var(--ease);
    }
    .chip{
      padding:6px 11px;
      font-size:13px;
    }
    .chip:hover,.chip.is-active{
      color:var(--ink);
      border-color:rgba(184,255,61,.75);
      background:rgba(184,255,61,.22);
    }
    .page-hero{padding:44px 0 40px}
    .breadcrumb-line{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--weak);
      font-size:14px;
      margin-bottom:22px;
      flex-wrap:wrap;
    }
    .breadcrumb-line a:hover{color:var(--ink)}
    .hero-panel{
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(340px,.72fr);
      gap:34px;
      align-items:stretch;
    }
    .hero-copy{
      padding:38px 0;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:18px;
      color:var(--dark);
      font-weight:750;
      font-size:14px;
    }
    .eyebrow:before{
      content:"";
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--lime);
      box-shadow:0 0 0 6px rgba(184,255,61,.2);
    }
    h1{
      margin:0;
      font-size:clamp(34px,4.4vw,54px);
      line-height:1.12;
      font-weight:800;
      letter-spacing:0;
      max-width:820px;
    }
    .lead{
      margin:20px 0 0;
      max-width:720px;
      color:var(--muted);
      font-size:19px;
      line-height:1.75;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      margin-top:28px;
      flex-wrap:wrap;
    }
    .btn-main,.btn-line,.btn-soft{
      min-height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:12px 20px;
      font-weight:750;
      transition:var(--ease);
      border:1px solid transparent;
    }
    .btn-main{
      background:var(--dark);
      color:#fff;
      box-shadow:0 16px 30px rgba(23,25,23,.16);
    }
    .btn-main:hover{color:#fff;transform:translateY(-3px);box-shadow:0 22px 42px rgba(23,25,23,.22);border-color:rgba(184,255,61,.55)}
    .btn-line{
      background:rgba(255,255,255,.62);
      border-color:var(--line);
      color:var(--ink);
    }
    .btn-line:hover{transform:translateY(-3px);border-color:var(--cyan);box-shadow:0 16px 34px rgba(83,216,210,.14)}
    .btn-soft{
      background:rgba(184,255,61,.2);
      color:var(--ink);
      border-color:rgba(184,255,61,.5);
    }
    .btn-soft:hover{transform:translateY(-2px);background:rgba(184,255,61,.32)}
    .btn-main:active,.btn-line:active,.btn-soft:active{transform:translateY(0)}
    .btn-main:focus-visible,.btn-line:focus-visible,.btn-soft:focus-visible,.chip:focus-visible,.nav-link:focus-visible{
      outline:3px solid rgba(83,216,210,.36);
      outline-offset:2px;
    }
    .visual-board{
      min-height:420px;
      border-radius:28px;
      padding:22px;
      background:
        linear-gradient(135deg,rgba(25,28,25,.95),rgba(36,40,35,.96)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='600' viewBox='0 0 900 600'%3E%3Cpath d='M0 60h900M0 170h900M0 280h900M0 390h900M0 500h900M120 0v600M300 0v600M480 0v600M660 0v600M840 0v600' stroke='%23ffffff' stroke-opacity='.06'/%3E%3C/svg%3E");
      color:#fff;
      box-shadow:var(--shadow-strong);
      position:relative;
      overflow:hidden;
    }
    .visual-board:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(255,255,255,.1);
      border-radius:22px;
      pointer-events:none;
    }
    .status-row{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .badge-status{
      padding:7px 10px;
      font-size:12px;
      color:#e9f4ea;
      border-color:rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
    }
    .badge-status.online:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--lime);
      margin-right:7px;
    }
    .matrix{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      margin-top:28px;
    }
    .matrix-card{
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.07);
      border-radius:18px;
      padding:18px;
      min-height:136px;
    }
    .matrix-card.large{
      grid-column:span 2;
      min-height:150px;
      background:linear-gradient(135deg,rgba(184,255,61,.16),rgba(83,216,210,.08));
    }
    .matrix-card strong{
      display:block;
      font-size:24px;
      line-height:1.2;
      margin-bottom:9px;
    }
    .matrix-card span{color:rgba(255,255,255,.68);font-size:14px}
    .section{padding:72px 0}
    .section-tight{padding:56px 0}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:24px;
      margin-bottom:26px;
    }
    .section-head h2{
      margin:0;
      font-size:34px;
      line-height:1.18;
      font-weight:800;
    }
    .section-head p{
      margin:0;
      max-width:560px;
      color:var(--muted);
    }
    .control-panel{
      display:grid;
      grid-template-columns:1fr auto auto;
      gap:12px;
      padding:16px;
      border:1px solid var(--line);
      border-radius:22px;
      background:rgba(255,255,255,.75);
      box-shadow:0 14px 36px rgba(23,25,23,.05);
    }
    .field{
      height:48px;
      border:1px solid var(--line);
      border-radius:999px;
      background:#fff;
      padding:0 16px;
      color:var(--ink);
      transition:var(--ease);
      width:100%;
    }
    .field:focus{
      border-color:var(--cyan);
      box-shadow:0 0 0 4px rgba(83,216,210,.13);
    }
    .content-layout{
      display:grid;
      grid-template-columns:280px minmax(0,1fr);
      gap:28px;
      align-items:start;
    }
    .filter-rail{
      position:sticky;
      top:168px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.78);
      border-radius:22px;
      padding:18px;
      box-shadow:0 12px 34px rgba(23,25,23,.04);
    }
    .rail-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      font-weight:800;
      margin-bottom:14px;
    }
    .rail-group{padding:14px 0;border-top:1px solid var(--line)}
    .rail-group:first-of-type{border-top:0;padding-top:0}
    .rail-group h3{
      font-size:14px;
      color:var(--weak);
      margin:0 0 10px;
      font-weight:750;
    }
    .rail-list{display:flex;flex-wrap:wrap;gap:8px}
    .rail-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      width:100%;
      padding:11px 12px;
      border-radius:14px;
      color:var(--muted);
      background:rgba(246,247,244,.75);
      margin-bottom:8px;
      transition:var(--ease);
    }
    .rail-link:hover,.rail-link.selected{
      color:var(--ink);
      background:rgba(184,255,61,.18);
      box-shadow:inset 0 0 0 1px rgba(184,255,61,.45);
    }
    .rail-link small{color:var(--weak)}
    .tag{
      padding:7px 10px;
      font-size:13px;
    }
    .tag.hot{border-color:rgba(255,185,79,.45);background:rgba(255,185,79,.13);color:#6d4a10}
    .tag.ok{border-color:rgba(83,216,210,.48);background:rgba(83,216,210,.13);color:#1e5a58}
    .cards-area{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:20px;
    }
    .entry-card{
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:22px;
      overflow:hidden;
      box-shadow:0 12px 32px rgba(23,25,23,.05);
      transition:var(--ease);
    }
    .entry-card:hover{
      transform:translateY(-4px);
      border-color:rgba(83,216,210,.65);
      box-shadow:var(--shadow);
    }
    .entry-card.featured{grid-column:span 2;display:grid;grid-template-columns:.95fr 1.05fr}
    .cover{
      aspect-ratio:16/10;
      background:
        linear-gradient(135deg,rgba(23,25,23,.92),rgba(36,40,35,.72)),
        linear-gradient(45deg,rgba(184,255,61,.25),transparent 45%),
        repeating-linear-gradient(90deg,rgba(255,255,255,.08) 0 1px,transparent 1px 54px);
      min-height:210px;
      display:flex;
      align-items:end;
      padding:18px;
      color:#fff;
      position:relative;
    }
    .cover:after{
      content:"";
      position:absolute;
      inset:auto 18px 18px 18px;
      height:3px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--lime),var(--cyan),transparent);
      opacity:.9;
    }
    .cover .cover-label{
      position:relative;
      z-index:1;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.16);
      font-size:13px;
    }
    .entry-body{padding:20px}
    .entry-body h3{
      margin:0 0 9px;
      font-size:21px;
      font-weight:800;
      line-height:1.28;
    }
    .entry-body p{
      margin:0;
      color:var(--muted);
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .card-tags{display:flex;flex-wrap:wrap;gap:8px;margin:15px 0}
    .meta-line{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      padding-top:14px;
      border-top:1px solid var(--line);
      color:var(--weak);
      font-size:13px;
    }
    .mini-action{
      color:var(--ink);
      font-weight:800;
    }
    .mini-action:hover{color:#2a7874}
    .info-stack{
      display:grid;
      gap:14px;
    }
    .info-row{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:16px;
      border:1px solid var(--line);
      border-radius:18px;
      background:rgba(255,255,255,.76);
      transition:var(--ease);
    }
    .info-row:hover{border-color:rgba(184,255,61,.7);transform:translateY(-2px)}
    .rank{
      width:38px;
      height:38px;
      border-radius:12px;
      background:var(--dark);
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:800;
    }
    .info-row h3{margin:0;font-size:17px;font-weight:800}
    .info-row p{margin:3px 0 0;color:var(--muted);font-size:14px}
    .scoreboard{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .score{
      background:var(--dark);
      color:#fff;
      border-radius:20px;
      padding:24px;
      min-height:152px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      border:1px solid rgba(255,255,255,.08);
      box-shadow:0 16px 38px rgba(23,25,23,.12);
    }
    .score:nth-child(2){background:#fdfdfb;color:var(--ink);border-color:var(--line)}
    .score:nth-child(3){background:linear-gradient(135deg,rgba(184,255,61,.9),rgba(83,216,210,.64));color:#111}
    .score strong{font-size:42px;line-height:1;font-weight:800}
    .score span{color:inherit;opacity:.72;font-size:14px}
    .process-band{
      background:var(--dark);
      color:#fff;
      border-radius:30px;
      padding:34px;
      overflow:hidden;
      position:relative;
    }
    .process-band:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg,rgba(184,255,61,.12),transparent 55%,rgba(83,216,210,.1));
      pointer-events:none;
    }
    .timeline{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      margin-top:24px;
    }
    .step{
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.06);
      border-radius:18px;
      padding:18px;
    }
    .step .num{color:var(--lime);font-weight:800;margin-bottom:12px}
    .step h3{font-size:18px;margin:0 0 8px;font-weight:800}
    .step p{margin:0;color:rgba(255,255,255,.68);font-size:14px}
    .privacy-zone{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:28px;
      align-items:start;
    }
    .quiet-card{
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(255,255,255,.72);
      padding:24px;
      box-shadow:0 12px 34px rgba(23,25,23,.04);
    }
    .quiet-card h2{font-size:28px;margin:0 0 12px;font-weight:800}
    .quiet-card p{color:var(--muted);margin:0}
    .faq-list{display:grid;gap:12px}
    .faq-item{
      border:1px solid var(--line);
      border-radius:18px;
      background:#fff;
      overflow:hidden;
    }
    .faq-question{
      width:100%;
      background:#fff;
      padding:18px 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:var(--ink);
      font-weight:800;
      text-align:left;
    }
    .faq-question span:last-child{
      width:28px;
      height:28px;
      border-radius:50%;
      background:rgba(184,255,61,.22);
      display:grid;
      place-items:center;
      flex:0 0 auto;
      transition:var(--ease);
    }
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .26s ease;
    }
    .faq-answer p{
      margin:0;
      padding:0 20px 18px;
      color:var(--muted);
    }
    .faq-item.open .faq-answer{max-height:180px}
    .faq-item.open .faq-question span:last-child{transform:rotate(45deg);background:rgba(83,216,210,.18)}
    .cta-strip{
      margin-top:28px;
      border-radius:28px;
      background:#fff;
      border:1px solid var(--line);
      padding:28px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      box-shadow:var(--shadow);
    }
    .cta-strip h2{margin:0 0 8px;font-size:28px;font-weight:800}
    .cta-strip p{margin:0;color:var(--muted)}
    .site-footer{
      margin-top:70px;
      background:var(--dark);
      color:#eef3ee;
      padding:56px 0 34px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr 1fr;
      gap:34px;
    }
    .footer-brand h2{
      margin:0 0 12px;
      font-size:24px;
      font-weight:800;
    }
    .footer-brand p,.footer-note li{
      color:rgba(238,243,238,.68);
      margin:0;
    }
    .footer-links h3,.footer-note h3{font-size:16px;margin:0 0 14px;font-weight:800}
    .footer-links ul,.footer-note ul{list-style:none;padding:0;margin:0;display:grid;gap:9px}
    .footer-links a{color:rgba(238,243,238,.72)}
    .footer-links a:hover{color:var(--lime)}
    .tech{
      margin-top:20px;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.1);
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(238,243,238,.58);
      font-size:13px;
    }
    .modal-layer{
      position:fixed;
      inset:0;
      z-index:300;
      display:none;
      align-items:center;
      justify-content:center;
      padding:24px;
      background:rgba(12,14,12,.58);
      backdrop-filter:blur(10px);
    }
    .modal-layer.show{display:flex}
    .lead-modal{
      width:min(560px,100%);
      background:#fff;
      border-radius:26px;
      padding:24px;
      box-shadow:0 30px 90px rgba(0,0,0,.28);
    }
    .modal-head{
      display:flex;
      align-items:start;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }
    .modal-head h2{margin:0;font-size:26px;font-weight:800}
    .modal-head p{margin:6px 0 0;color:var(--muted)}
    .close-btn{
      width:40px;
      height:40px;
      border-radius:50%;
      background:rgba(23,25,23,.06);
      font-size:22px;
      line-height:1;
      transition:var(--ease);
    }
    .close-btn:hover{background:rgba(230,91,91,.12);color:var(--danger)}
    .form-grid{display:grid;gap:12px}
    .form-grid label{font-weight:750;font-size:14px}
    .form-grid textarea{min-height:110px;resize:vertical;border-radius:18px;padding:14px 16px}
    .form-note{font-size:13px;color:var(--weak);margin:2px 0 0}
    .form-error{display:none;color:var(--danger);font-size:13px}
    .form-error.show{display:block}
    .submit-state{display:none;color:#2a7874;font-weight:750;margin-top:10px}
    .submit-state.show{display:block}
    .skeleton{
      border-radius:12px;
      min-height:14px;
      background:linear-gradient(90deg,#ecefeb,#f7f8f5,#ecefeb);
      background-size:220% 100%;
      animation:pulse 1.6s infinite;
    }
    .empty-state{
      border:1px dashed var(--line);
      border-radius:18px;
      padding:18px;
      color:var(--weak);
      background:rgba(255,255,255,.58);
      text-align:center;
    }
    @keyframes pulse{0%{background-position:0 0}100%{background-position:-220% 0}}
    @media (max-width:1199px){
      .hero-panel{grid-template-columns:1fr}
      .visual-board{min-height:360px}
      .content-layout{grid-template-columns:240px minmax(0,1fr)}
      .scoreboard{grid-template-columns:repeat(2,1fr)}
      .timeline{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991px){
      .container{padding:0 18px}
      .topbar{min-height:auto;padding:14px 0;align-items:flex-start}
      .brand-wrap{flex-wrap:wrap}
      .header-tools{min-width:0}
      .search-box{width:260px}
      .menu-btn{display:inline-flex}
      .channel-nav{
        max-height:0;
        overflow:hidden;
        padding:0;
        transition:max-height .24s ease,padding .24s ease;
      }
      .site-header.nav-open .channel-nav{max-height:160px;padding:0 0 12px}
      .trendbar{padding-bottom:12px}
      .section{padding:54px 0}
      .content-layout{grid-template-columns:1fr}
      .filter-rail{position:static}
      .entry-card.featured{grid-template-columns:1fr}
      .privacy-zone{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .footer-brand{grid-column:span 2}
    }
    @media (max-width:767px){
      .topbar{gap:12px}
      .brand{font-size:17px;white-space:normal}
      .brand-sub{display:none}
      .header-tools{gap:8px}
      .search-box{
        width:46px;
        height:42px;
        padding:0;
        justify-content:center;
      }
      .search-box input,.search-box button{display:none}
      .search-box svg{width:20px;height:20px}
      .page-hero{padding:28px 0 28px}
      .hero-copy{padding:16px 0}
      .lead{font-size:16px}
      .visual-board{min-height:auto;padding:18px;border-radius:22px}
      .matrix{grid-template-columns:1fr}
      .matrix-card.large{grid-column:auto}
      .control-panel{grid-template-columns:1fr}
      .cards-area{grid-template-columns:1fr}
      .entry-card.featured{grid-column:auto}
      .section-head{display:block}
      .section-head h2{font-size:28px;margin-bottom:10px}
      .scoreboard,.timeline{grid-template-columns:1fr}
      .process-band{padding:24px;border-radius:22px}
      .info-row{grid-template-columns:auto 1fr}
      .info-row .mini-action{grid-column:2}
      .cta-strip{display:block;padding:22px}
      .cta-strip .btn-main{margin-top:18px;width:100%}
      .footer-grid,.footer-brand{grid-template-columns:1fr;grid-column:auto}
      .modal-layer{align-items:flex-end;padding:0}
      .lead-modal{border-radius:24px 24px 0 0;max-height:92vh;overflow:auto}
      .mobile-fixed{
        position:fixed;
        left:14px;
        right:14px;
        bottom:14px;
        z-index:180;
        box-shadow:0 18px 45px rgba(23,25,23,.24);
      }
      body{padding-bottom:76px}
    }
    @media (max-width:520px){
      .container{padding:0 14px}
      h1{font-size:31px}
      .hero-actions .btn-main,.hero-actions .btn-line{width:100%}
      .score strong{font-size:36px}
      .entry-body h3{font-size:19px}
    }
