/* roulang page: index */
:root{
      --bg:#070909;
      --bg-2:#0b1110;
      --panel:#101716;
      --panel-2:#141d1b;
      --panel-3:#1a2421;
      --text:#f4fbf8;
      --muted:#98a9a4;
      --muted-2:#6f817c;
      --line:rgba(132,255,217,.16);
      --line-strong:rgba(89,255,207,.42);
      --primary:#37f6bd;
      --primary-2:#17c996;
      --amber:#f1b94a;
      --amber-2:#d98d25;
      --danger:#ff6f6f;
      --radius-sm:10px;
      --radius:18px;
      --radius-lg:28px;
      --shadow:0 22px 70px rgba(0,0,0,.42);
      --shadow-soft:0 14px 35px rgba(0,0,0,.22);
      --max:1180px;
      --space:clamp(48px,7vw,92px);
      --font:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      background:
        radial-gradient(circle at 18% 6%, rgba(55,246,189,.12), transparent 34%),
        radial-gradient(circle at 80% 14%, rgba(241,185,74,.10), transparent 30%),
        linear-gradient(180deg,#050707 0%,#09100f 42%,#070909 100%);
      color:var(--text);
      line-height:1.72;
      overflow-x:hidden;
      text-rendering:optimizeLegibility;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.022) 1px, transparent 1px);
      background-size:46px 46px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 80%);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    a:hover,a:focus{color:var(--primary)}
    img{max-width:100%;height:auto;display:block}
    button,input{font:inherit}
    input,button,a{outline:none}
    input:focus-visible,button:focus-visible,a:focus-visible{
      outline:2px solid rgba(55,246,189,.68);
      outline-offset:3px;
      border-radius:10px;
    }
    .site-container{width:min(calc(100% - 32px),var(--max));margin-inline:auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(7,9,9,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(132,255,217,.12);
      box-shadow:0 10px 34px rgba(0,0,0,.22);
    }
    .topbar{
      min-height:76px;
      display:flex;
      align-items:center;
      gap:22px;
      justify-content:space-between;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      font-weight:900;
      letter-spacing:-.04em;
      color:var(--text);
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:#06110e;
      background:linear-gradient(135deg,var(--primary),#9affdf 48%,var(--amber));
      box-shadow:0 0 26px rgba(55,246,189,.28);
      font-weight:950;
    }
    .brand-text{font-size:18px}
    .header-search{
      flex:1;
      max-width:460px;
      position:relative;
    }
    .header-search i{
      position:absolute;
      left:16px;
      top:50%;
      transform:translateY(-50%);
      color:var(--muted);
      font-size:14px;
    }
    .header-search input{
      width:100%;
      height:44px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(16,23,22,.78);
      color:var(--text);
      padding:0 18px 0 42px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }
    .header-search input::placeholder{color:#7f918b}
    .nav-cta,.btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border-radius:999px;
      min-height:44px;
      padding:0 20px;
      font-weight:800;
      border:1px solid transparent;
      cursor:pointer;
      white-space:nowrap;
    }
    .btn-primary,.nav-cta{
      color:#04100d;
      background:linear-gradient(135deg,var(--primary),#9dffdd);
      box-shadow:0 0 0 1px rgba(55,246,189,.18),0 14px 32px rgba(55,246,189,.20);
    }
    .btn-primary:hover,.nav-cta:hover{
      color:#04100d;
      transform:translateY(-2px);
      box-shadow:0 0 0 1px rgba(55,246,189,.40),0 18px 44px rgba(55,246,189,.28);
    }
    .btn-ghost{
      background:rgba(20,29,27,.72);
      border-color:var(--line);
      color:var(--text);
    }
    .btn-ghost:hover{
      background:rgba(55,246,189,.08);
      border-color:var(--line-strong);
      transform:translateY(-2px);
    }
    .channelbar{
      border-top:1px solid rgba(255,255,255,.04);
      overflow-x:auto;
      scrollbar-width:none;
    }
    .channelbar::-webkit-scrollbar{display:none}
    .channel-tabs{
      display:flex;
      gap:10px;
      padding:12px 0 14px;
      min-width:max-content;
      margin:0;
      list-style:none;
    }
    .channel-tabs a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border:1px solid rgba(132,255,217,.13);
      background:rgba(16,23,22,.62);
      color:#c6d5d1;
      padding:8px 14px;
      border-radius:999px;
      font-size:14px;
      font-weight:750;
    }
    .channel-tabs a:hover,.channel-tabs a.active{
      color:#06110e;
      background:linear-gradient(135deg,var(--primary),#8fffdc);
      border-color:transparent;
      box-shadow:0 0 22px rgba(55,246,189,.18);
    }
    main{overflow:hidden}
    section{padding:var(--space) 0}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-size:13px;
      font-weight:900;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:10px;
    }
    .eyebrow:before{
      content:"";
      width:26px;
      height:2px;
      background:linear-gradient(90deg,var(--primary),transparent);
      border-radius:99px;
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(34px,6.2vw,72px);
      line-height:1.04;
      letter-spacing:-.07em;
      margin-bottom:18px;
      max-width:980px;
    }
    h2{
      font-size:clamp(26px,3.6vw,44px);
      line-height:1.12;
      letter-spacing:-.045em;
      margin-bottom:12px;
    }
    h3{
      font-size:20px;
      line-height:1.3;
      letter-spacing:-.025em;
      margin-bottom:10px;
    }
    .lead{
      color:#c3d0cc;
      font-size:clamp(16px,2vw,19px);
      max-width:820px;
      margin-bottom:0;
    }
    .muted{color:var(--muted)}
    .hero{
      padding-top:54px;
      position:relative;
    }
    .hero:after{
      content:"";
      position:absolute;
      left:50%;
      bottom:20px;
      width:90vw;
      height:1px;
      transform:translateX(-50%);
      background:linear-gradient(90deg,transparent,rgba(55,246,189,.35),transparent);
    }
    .hero-panel{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 16% 18%, rgba(55,246,189,.18), transparent 35%),
        linear-gradient(145deg,rgba(20,29,27,.86),rgba(8,12,12,.94));
      box-shadow:var(--shadow);
      padding:clamp(24px,4vw,46px);
      position:relative;
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:-1px;
      background:linear-gradient(110deg,transparent 0%,rgba(55,246,189,.16) 45%,transparent 62%);
      transform:translateX(-70%);
      animation:sheen 6s ease-in-out infinite;
      pointer-events:none;
    }
    @keyframes sheen{50%{transform:translateX(70%)}100%{transform:translateX(70%)}}
    .hero-bento{
      display:grid;
      grid-template-columns:1.04fr .96fr;
      gap:24px;
      align-items:stretch;
      position:relative;
      z-index:1;
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:center;
      min-height:430px;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
    .quick-pills{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:24px;
    }
    .pill,.badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(16,23,22,.68);
      color:#cce0db;
      padding:7px 12px;
      font-size:13px;
      font-weight:750;
    }
    .pill.active,.badge.hot{
      border-color:rgba(55,246,189,.48);
      background:rgba(55,246,189,.13);
      color:#dffff5;
    }
    .bento-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      grid-template-rows:repeat(4,108px);
      gap:12px;
    }
    .poster-tile{
      position:relative;
      border-radius:20px;
      border:1px solid rgba(132,255,217,.16);
      background:
        linear-gradient(160deg,rgba(255,255,255,.08),rgba(255,255,255,0)),
        radial-gradient(circle at 24% 18%,rgba(55,246,189,.22),transparent 38%),
        var(--panel);
      overflow:hidden;
      padding:16px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-width:0;
      box-shadow:var(--shadow-soft);
      transition:.25s ease;
    }
    .poster-tile:hover{
      transform:translateY(-4px);
      border-color:rgba(55,246,189,.44);
      box-shadow:0 22px 46px rgba(0,0,0,.36),0 0 24px rgba(55,246,189,.12);
    }
    .poster-tile:after{
      content:"";
      position:absolute;
      width:110px;
      height:110px;
      right:-42px;
      bottom:-42px;
      border-radius:50%;
      background:rgba(55,246,189,.10);
      border:1px solid rgba(55,246,189,.18);
    }
    .poster-tile strong{
      font-size:18px;
      line-height:1.25;
      letter-spacing:-.025em;
      position:relative;
      z-index:1;
    }
    .poster-tile span{
      color:var(--muted);
      font-size:13px;
      position:relative;
      z-index:1;
    }
    .tile-large{grid-column:span 2;grid-row:span 2}
    .tile-wide{grid-column:span 2}
    .tile-tall{grid-row:span 2}
    .tile-amber{
      background:
        linear-gradient(160deg,rgba(241,185,74,.20),rgba(255,255,255,.02)),
        var(--panel-2);
      border-color:rgba(241,185,74,.26);
    }
    .pain-strip{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:18px;
      align-items:stretch;
    }
    .pain-card,.card{
      background:linear-gradient(180deg,rgba(20,29,27,.92),rgba(12,17,16,.92));
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:24px;
      box-shadow:var(--shadow-soft);
      transition:.24s ease;
    }
    .card:hover,.pain-card:hover{
      transform:translateY(-4px);
      border-color:rgba(55,246,189,.35);
      box-shadow:0 20px 50px rgba(0,0,0,.30);
    }
    .pain-list{
      display:grid;
      gap:12px;
      margin:18px 0 0;
      padding:0;
      list-style:none;
    }
    .pain-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:#cbd9d5;
      padding:12px 0;
      border-top:1px solid rgba(255,255,255,.06);
    }
    .pain-list i{color:var(--amber);margin-top:5px}
    .mini-stats{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      height:100%;
    }
    .stat-card{
      border-radius:18px;
      border:1px solid rgba(132,255,217,.14);
      background:rgba(16,23,22,.72);
      padding:20px;
      min-height:140px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .stat-num{
      font-size:clamp(30px,4vw,48px);
      line-height:1;
      font-weight:950;
      letter-spacing:-.06em;
      color:var(--primary);
    }
    .stat-card:nth-child(2) .stat-num,.stat-card:nth-child(3) .stat-num{color:var(--amber)}
    .steps-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .step-card{position:relative;overflow:hidden}
    .step-no{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      background:rgba(55,246,189,.12);
      border:1px solid rgba(55,246,189,.25);
      color:var(--primary);
      font-weight:950;
      margin-bottom:18px;
    }
    .step-card:before{
      content:"";
      position:absolute;
      top:42px;
      right:-30px;
      width:120px;
      height:1px;
      background:linear-gradient(90deg,rgba(55,246,189,.38),transparent);
      transform:rotate(-22deg);
    }
    .result-layout{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:18px;
      align-items:stretch;
    }
    .meter-card{
      padding:30px;
      border-radius:var(--radius-lg);
      border:1px solid rgba(241,185,74,.22);
      background:
        radial-gradient(circle at 85% 18%, rgba(241,185,74,.15), transparent 32%),
        linear-gradient(180deg,rgba(20,29,27,.92),rgba(12,17,16,.96));
      min-height:360px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .meter-ring{
      width:190px;
      height:190px;
      border-radius:50%;
      margin:12px auto;
      background:conic-gradient(var(--primary) 0 78%,rgba(255,255,255,.08) 78% 100%);
      display:grid;
      place-items:center;
      box-shadow:0 0 46px rgba(55,246,189,.13);
    }
    .meter-ring div{
      width:138px;height:138px;border-radius:50%;
      background:#0c1110;
      display:grid;place-items:center;
      text-align:center;
      border:1px solid rgba(255,255,255,.06);
      font-weight:950;
      font-size:34px;
      color:var(--text);
    }
    .bars{display:grid;gap:14px}
    .bar-row{display:grid;gap:8px}
    .bar-meta{display:flex;justify-content:space-between;color:#c8d5d1;font-weight:750;font-size:14px}
    .bar-track{height:10px;border-radius:999px;background:rgba(255,255,255,.07);overflow:hidden}
    .bar-fill{height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--primary),var(--amber))}
    .entry-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
    }
    .entry-list{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .entry-item{
      padding:18px;
      border-radius:18px;
      background:rgba(16,23,22,.76);
      border:1px solid rgba(132,255,217,.14);
      min-height:148px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:.24s ease;
    }
    .entry-item:hover{border-color:var(--line-strong);transform:translateY(-3px)}
    .entry-item .icon{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      color:#06110e;
      background:linear-gradient(135deg,var(--primary),#c7ffed);
      margin-bottom:12px;
    }
    .share-panel{
      border-radius:var(--radius);
      padding:26px;
      border:1px solid rgba(241,185,74,.22);
      background:
        linear-gradient(145deg,rgba(241,185,74,.12),rgba(55,246,189,.05)),
        rgba(16,23,22,.86);
    }
    .material-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px 0;
      border-top:1px solid rgba(255,255,255,.07);
    }
    .material-row:first-of-type{border-top:0}
    .material-row span{color:var(--muted);font-size:14px}
    .news-wrap{
      display:grid;
      grid-template-columns:1fr 340px;
      gap:22px;
      align-items:start;
    }
    .news-list{
      margin:0;
      padding:0;
      list-style:none;
      border-radius:var(--radius);
      overflow:hidden;
      border:1px solid var(--line);
      background:rgba(16,23,22,.72);
    }
    .news-list li+li{border-top:1px solid rgba(255,255,255,.06)}
    .news-list a{
      display:grid;
      grid-template-columns:110px 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px 20px;
      color:var(--text);
    }
    .news-list a:hover{background:rgba(55,246,189,.06)}
    .news-date{
      color:var(--amber);
      font-size:13px;
      font-weight:850;
      font-variant-numeric:tabular-nums;
    }
    .news-title{font-weight:850}
    .news-desc{color:var(--muted);font-size:14px;margin-top:2px}
    .side-reco{
      position:sticky;
      top:150px;
      border-radius:var(--radius);
      border:1px solid rgba(132,255,217,.16);
      background:rgba(16,23,22,.80);
      padding:22px;
    }
    .side-reco ul{margin:16px 0 0;padding:0;list-style:none}
    .side-reco li{
      display:flex;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
      border-top:1px solid rgba(255,255,255,.06);
      color:#cbd8d4;
      font-size:14px;
    }
    .quote-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr 1fr;
      gap:16px;
      align-items:stretch;
    }
    .quote-card{
      position:relative;
      min-height:210px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .quote-card:before{
      content:"“";
      font-size:72px;
      line-height:1;
      color:rgba(55,246,189,.22);
      position:absolute;
      top:8px;
      right:22px;
      font-weight:950;
    }
    .avatar{
      width:44px;height:44px;border-radius:50%;
      display:grid;place-items:center;
      background:linear-gradient(135deg,rgba(55,246,189,.24),rgba(241,185,74,.22));
      border:1px solid rgba(255,255,255,.12);
      color:var(--text);
      font-weight:900;
      margin-bottom:12px;
    }
    .faq-area{
      max-width:980px;
      margin-inline:auto;
    }
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      background:rgba(16,23,22,.80);
    }
    .accordion-title{
      color:var(--text);
      background:transparent;
      border:0;
      font-weight:900;
      font-size:16px;
      padding:20px 54px 20px 22px;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(55,246,189,.06);
      color:var(--primary);
    }
    :last-child:not(.is-active)>.accordion-title{border-bottom:0}
    .accordion-content{
      background:rgba(7,9,9,.35);
      border:0;
      border-top:1px solid rgba(255,255,255,.06);
      color:#c7d4d0;
      padding:18px 22px 22px;
    }
    .cta-band{
      padding:0 0 var(--space);
    }
    .cta-inner{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      border:1px solid rgba(55,246,189,.26);
      background:
        radial-gradient(circle at 16% 18%,rgba(55,246,189,.18),transparent 34%),
        radial-gradient(circle at 90% 26%,rgba(241,185,74,.16),transparent 32%),
        linear-gradient(135deg,rgba(20,29,27,.96),rgba(7,9,9,.98));
      padding:clamp(28px,5vw,54px);
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .cta-inner:after{
      content:"";
      position:absolute;
      inset:auto -120px -150px auto;
      width:320px;height:320px;border-radius:50%;
      border:1px solid rgba(55,246,189,.18);
      background:rgba(55,246,189,.05);
      pointer-events:none;
    }
    .site-footer{
      border-top:1px solid rgba(132,255,217,.12);
      background:#050706;
      padding:36px 0;
      color:var(--muted);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:24px;
      align-items:start;
    }
    .footer-title{
      color:var(--text);
      font-weight:950;
      margin-bottom:10px;
      letter-spacing:-.03em;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:8px;
    }
    .footer-links a{color:var(--muted)}
    .footer-links a:hover{color:var(--primary)}
    .copyright{
      margin-top:28px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.06);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      font-size:13px;
    }
    @media (max-width:1024px){
      .topbar{flex-wrap:wrap;padding:14px 0}
      .header-search{order:3;max-width:none;flex-basis:100%}
      .hero-bento,.pain-strip,.result-layout,.entry-grid,.news-wrap{grid-template-columns:1fr}
      .hero-copy{min-height:auto}
      .bento-grid{grid-template-rows:repeat(4,92px)}
      .steps-grid{grid-template-columns:repeat(2,1fr)}
      .quote-grid{grid-template-columns:1fr 1fr}
      .side-reco{position:relative;top:0}
    }
    @media (max-width:768px){
      .site-container{width:min(calc(100% - 24px),var(--max))}
      section{padding:48px 0}
      .section-head{display:block}
      .brand-text{font-size:16px}
      .nav-cta{width:100%}
      .topbar{gap:12px}
      .brand{width:100%;justify-content:flex-start}
      .hero-panel{padding:22px}
      .hero-actions .btn{width:100%}
      .bento-grid{
        grid-template-columns:repeat(2,1fr);
        grid-template-rows:none;
      }
      .poster-tile{min-height:132px}
      .tile-large,.tile-wide,.tile-tall{grid-column:span 1;grid-row:span 1}
      .mini-stats,.entry-list,.steps-grid,.quote-grid,.footer-grid{grid-template-columns:1fr}
      .news-list a{grid-template-columns:1fr;gap:6px}
      .news-list i{display:none}
      .cta-inner{grid-template-columns:1fr}
      .cta-inner .hero-actions{margin-top:0}
      .channel-tabs a{font-size:13px;padding:8px 12px}
    }
    @media (max-width:520px){
      h1{font-size:36px}
      h2{font-size:27px}
      .poster-tile strong{font-size:16px}
      .pain-card,.card,.share-panel,.meter-card{padding:20px}
      .material-row{display:block}
      .stat-card{min-height:118px}
      .meter-ring{width:160px;height:160px}
      .meter-ring div{width:116px;height:116px;font-size:28px}
      .copyright{display:block}
    }

/* roulang page: category1 */
:root {
      --bg: #080a0c;
      --bg-soft: #101316;
      --panel: #15191d;
      --panel-strong: #1b2025;
      --line: rgba(184, 255, 226, 0.16);
      --line-strong: rgba(87, 255, 199, 0.42);
      --text: #f4fbf8;
      --muted: #a5b3b0;
      --muted-2: #7e8c89;
      --green: #55ffc7;
      --green-deep: #16c995;
      --amber: #f3c66d;
      --amber-soft: rgba(243, 198, 109, 0.12);
      --danger: #ff7f8a;
      --shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
      --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.24);
      --radius: 18px;
      --radius-sm: 12px;
      --container: 1180px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 16% 2%, rgba(85, 255, 199, 0.10), transparent 26%),
        radial-gradient(circle at 86% 18%, rgba(243, 198, 109, 0.08), transparent 24%),
        linear-gradient(180deg, #07090b 0%, #0b0d10 42%, #080a0c 100%);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
      line-height: 1.72;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button,
    a,
    input,
    select {
      outline: none;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible {
      outline: 3px solid rgba(85, 255, 199, 0.42);
      outline-offset: 3px;
    }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(8, 10, 12, 0.90);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    }

    .topbar {
      min-height: 76px;
      display: grid;
      grid-template-columns: auto minmax(260px, 1fr) auto;
      align-items: center;
      gap: 22px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      color: #06100d;
      font-weight: 900;
      background: linear-gradient(135deg, var(--green), var(--amber));
      box-shadow: 0 0 24px rgba(85, 255, 199, 0.24);
    }

    .brand-text {
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
      white-space: nowrap;
    }

    .header-search {
      height: 46px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.045);
      color: var(--muted);
    }

    .header-search i {
      color: var(--green);
      font-size: 15px;
    }

    .header-search input {
      width: 100%;
      height: 100%;
      margin: 0;
      border: 0;
      color: var(--text);
      background: transparent;
      box-shadow: none;
    }

    .header-search input::placeholder {
      color: var(--muted-2);
    }

    .header-search input:focus {
      border: 0;
      background: transparent;
      box-shadow: none;
    }

    .nav-cta,
    .btn-primary,
    .btn-ghost,
    .card-action,
    .load-more {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      font-weight: 800;
      line-height: 1.2;
      cursor: pointer;
    }

    .nav-cta,
    .btn-primary {
      color: #06100d;
      background: linear-gradient(135deg, var(--green), #9dffd9);
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 12px 28px rgba(85, 255, 199, 0.18);
    }

    .nav-cta:hover,
    .btn-primary:hover {
      color: #06100d;
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(85, 255, 199, 0.28);
    }

    .btn-ghost,
    .load-more {
      color: var(--text);
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid var(--line);
    }

    .btn-ghost:hover,
    .load-more:hover {
      color: var(--green);
      border-color: var(--line-strong);
      background: rgba(85, 255, 199, 0.08);
      transform: translateY(-2px);
    }

    .channelbar {
      min-height: 54px;
      display: flex;
      align-items: center;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(85, 255, 199, 0.5) transparent;
    }

    .channel-tabs {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0;
      padding: 8px 0;
      list-style: none;
      white-space: nowrap;
    }

    .channel-tabs a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 36px;
      padding: 0 14px;
      border: 1px solid transparent;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .channel-tabs a:hover,
    .channel-tabs a.active {
      color: var(--green);
      border-color: var(--line-strong);
      background: rgba(85, 255, 199, 0.08);
    }

    main {
      position: relative;
    }

    .page-hero {
      padding: 66px 0 34px;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 16px 0 auto 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(85, 255, 199, 0.65), rgba(243, 198, 109, 0.45), transparent);
      opacity: 0.6;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      color: var(--muted-2);
      font-size: 14px;
    }

    .breadcrumb a {
      color: var(--muted);
    }

    .breadcrumb a:hover {
      color: var(--green);
    }

    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
      gap: 32px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 34px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--green);
      background: rgba(85, 255, 199, 0.07);
      font-size: 13px;
      font-weight: 800;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 820px;
      margin-bottom: 18px;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 760px;
      margin-bottom: 26px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 26px;
    }

    .quick-pills,
    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 34px;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.04);
      font-size: 13px;
      font-weight: 750;
    }

    .pill.is-active {
      color: #06100d;
      border-color: rgba(85, 255, 199, 0.9);
      background: var(--green);
    }

    .pill.is-disabled {
      color: rgba(165, 179, 176, 0.45);
      border-color: rgba(255, 255, 255, 0.07);
      cursor: not-allowed;
    }

    .pill:not(.is-disabled):hover {
      color: var(--green);
      border-color: var(--line-strong);
      background: rgba(85, 255, 199, 0.08);
    }

    .entry-matrix {
      min-height: 430px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        var(--panel);
      box-shadow: var(--shadow);
    }

    .matrix-card {
      position: relative;
      overflow: hidden;
      min-height: 170px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 18px;
      background: var(--panel-strong);
      isolation: isolate;
    }

    .matrix-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(85, 255, 199, 0.20), transparent 46%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 16px);
      opacity: 0.68;
      z-index: -1;
    }

    .matrix-card:nth-child(2) {
      margin-top: 28px;
    }

    .matrix-card:nth-child(3) {
      margin-top: -28px;
    }

    .matrix-card:nth-child(4)::before {
      background:
        linear-gradient(135deg, rgba(243, 198, 109, 0.22), transparent 48%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 14px);
    }

    .matrix-icon {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      border-radius: 14px;
      color: var(--green);
      background: rgba(8, 10, 12, 0.64);
      border: 1px solid var(--line);
    }

    .matrix-card strong {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
    }

    .matrix-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .section {
      padding: 66px 0;
    }

    .section-header {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-kicker {
      margin-bottom: 9px;
      color: var(--amber);
      font-size: 13px;
      font-weight: 850;
    }

    h2 {
      margin-bottom: 12px;
      font-size: clamp(26px, 3vw, 38px);
      line-height: 1.22;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-header p {
      color: var(--muted);
      font-size: 16px;
    }

    .filter-panel {
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
      box-shadow: var(--shadow-soft);
    }

    .filter-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }

    .filter-title {
      font-size: 18px;
      font-weight: 900;
    }

    .select-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .select-wrap select {
      min-width: 150px;
      height: 40px;
      margin: 0;
      padding: 0 34px 0 12px;
      border: 1px solid var(--line);
      border-radius: 12px;
      color: var(--text);
      background-color: var(--panel);
      box-shadow: none;
    }

    .select-wrap select:focus {
      border-color: var(--line-strong);
      box-shadow: 0 0 0 3px rgba(85, 255, 199, 0.12);
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 24px;
      align-items: start;
    }

    .result-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .result-card {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(21, 25, 29, 0.94);
      box-shadow: var(--shadow-soft);
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .result-card:hover {
      transform: translateY(-5px);
      border-color: var(--line-strong);
      background: rgba(26, 32, 36, 0.98);
      box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(85, 255, 199, 0.12);
    }

    .thumb {
      position: relative;
      min-height: 150px;
      padding: 18px;
      display: flex;
      align-items: flex-end;
      background:
        linear-gradient(135deg, rgba(85, 255, 199, 0.24), rgba(243, 198, 109, 0.08)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.26));
    }

    .thumb::after {
      content: "";
      position: absolute;
      inset: 16px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 16px;
      background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0 1px, transparent 1px 18px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
      opacity: 0.42;
    }

    .thumb-badge {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 11px;
      border-radius: 999px;
      color: #06100d;
      background: var(--green);
      font-size: 12px;
      font-weight: 900;
    }

    .result-body {
      padding: 18px;
    }

    .result-body h3 {
      margin-bottom: 8px;
      font-size: 19px;
      line-height: 1.35;
      font-weight: 900;
    }

    .meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px 14px;
      margin-bottom: 12px;
      color: var(--muted-2);
      font-size: 13px;
    }

    .result-body p {
      margin-bottom: 16px;
      color: var(--muted);
      font-size: 14px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 9px;
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.07);
      font-size: 12px;
      font-weight: 750;
    }

    .tag.good {
      color: var(--green);
      border-color: rgba(85, 255, 199, 0.30);
      background: rgba(85, 255, 199, 0.08);
    }

    .tag.warn {
      color: var(--amber);
      border-color: rgba(243, 198, 109, 0.28);
      background: var(--amber-soft);
    }

    .card-action {
      width: 100%;
      min-height: 42px;
      color: var(--text);
      background: rgba(8, 10, 12, 0.52);
      border: 1px solid var(--line);
    }

    .card-action:hover {
      color: #06100d;
      border-color: var(--green);
      background: var(--green);
    }

    .side-panel {
      position: sticky;
      top: 148px;
      display: grid;
      gap: 16px;
    }

    .info-card {
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(21, 25, 29, 0.92);
      box-shadow: var(--shadow-soft);
    }

    .info-card h3 {
      margin-bottom: 12px;
      font-size: 18px;
      font-weight: 900;
    }

    .info-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .info-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .info-list i {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      color: var(--green);
      background: rgba(85, 255, 199, 0.08);
    }

    .mini-stat {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .mini-stat div {
      padding: 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.075);
    }

    .mini-stat strong {
      display: block;
      color: var(--amber);
      font-size: 22px;
      line-height: 1;
    }

    .mini-stat span {
      color: var(--muted);
      font-size: 12px;
    }

    .process-band {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.025);
    }

    .step-strip {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr 1fr 0.9fr;
      gap: 14px;
    }

    .step-card {
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(21, 25, 29, 0.82);
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .step-card:hover {
      transform: translateY(-4px);
      border-color: var(--line-strong);
      background: rgba(26, 32, 36, 0.92);
    }

    .step-num {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      border-radius: 12px;
      color: #06100d;
      background: var(--amber);
      font-weight: 950;
    }

    .step-card h3 {
      margin-bottom: 8px;
      font-size: 18px;
      font-weight: 900;
    }

    .step-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .latest-layout {
      display: grid;
      grid-template-columns: 0.76fr 1.24fr;
      gap: 24px;
      align-items: start;
    }

    .update-card {
      min-height: 100%;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background:
        linear-gradient(135deg, rgba(243, 198, 109, 0.11), transparent 44%),
        rgba(21, 25, 29, 0.92);
      box-shadow: var(--shadow-soft);
    }

    .update-card .large-number {
      display: block;
      margin: 14px 0 10px;
      color: var(--amber);
      font-size: 58px;
      line-height: 1;
      font-weight: 950;
    }

    .update-card p {
      color: var(--muted);
    }

    .timeline {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .timeline li {
      display: grid;
      grid-template-columns: 112px 1fr;
      gap: 16px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.035);
    }

    .timeline time {
      color: var(--green);
      font-weight: 900;
      font-size: 13px;
    }

    .timeline strong {
      display: block;
      margin-bottom: 4px;
      font-size: 16px;
    }

    .timeline span {
      color: var(--muted);
      font-size: 14px;
    }

    .faq-wrap {
      max-width: 900px;
    }

    .accordion {
      background: transparent;
      border: 0;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      background: rgba(21, 25, 29, 0.86);
    }

    .accordion-title {
      display: flex;
      align-items: center;
      min-height: 58px;
      padding: 18px 54px 18px 20px;
      border: 0;
      color: var(--text);
      font-size: 16px;
      font-weight: 900;
      background: transparent;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--green);
      background: rgba(85, 255, 199, 0.055);
    }

    .accordion-title::before {
      color: var(--green);
      font-size: 20px;
      margin-top: -12px;
    }

    .accordion-content {
      padding: 0 20px 20px;
      border: 0;
      color: var(--muted);
      background: transparent;
    }

    .pagination-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 28px;
      color: var(--muted);
    }

    .pagination {
      margin: 0;
    }

    .pagination a,
    .pagination .current {
      border-radius: 10px;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.045);
    }

    .pagination .current {
      color: #06100d;
      background: var(--green);
    }

    .pagination a:hover {
      color: var(--green);
      background: rgba(85, 255, 199, 0.08);
    }

    .cta-section {
      padding: 74px 0;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
      padding: 34px;
      border: 1px solid var(--line-strong);
      border-radius: 26px;
      background:
        linear-gradient(120deg, rgba(85, 255, 199, 0.16), rgba(255, 255, 255, 0.035) 48%, rgba(243, 198, 109, 0.12)),
        var(--panel);
      box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: auto 30px 22px 30px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--green), var(--amber), transparent);
      opacity: 0.8;
    }

    .cta-panel h2 {
      margin-bottom: 10px;
    }

    .cta-panel p {
      max-width: 760px;
      margin-bottom: 0;
      color: var(--muted);
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .site-footer {
      padding: 54px 0 30px;
      border-top: 1px solid var(--line);
      background: #07090b;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr 0.8fr 0.8fr;
      gap: 32px;
      margin-bottom: 28px;
    }

    .footer-title {
      margin-bottom: 12px;
      color: var(--text);
      font-size: 17px;
      font-weight: 900;
    }

    .site-footer p {
      max-width: 460px;
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--green);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      color: var(--muted-2);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .topbar {
        grid-template-columns: 1fr auto;
        gap: 14px;
        padding: 14px 0;
      }

      .header-search {
        grid-column: 1 / -1;
        order: 3;
      }

      .hero-layout,
      .content-grid,
      .latest-layout {
        grid-template-columns: 1fr;
      }

      .entry-matrix {
        min-height: 360px;
      }

      .side-panel {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .step-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cta-panel {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .topbar {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .brand {
        justify-content: flex-start;
      }

      .brand-text {
        font-size: 16px;
      }

      .nav-cta {
        width: 100%;
      }

      .channelbar {
        margin: 0 -14px;
        padding: 0 14px;
      }

      .page-hero {
        padding: 42px 0 20px;
      }

      .hero-copy {
        padding: 20px 0 10px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .entry-matrix,
      .result-grid,
      .side-panel,
      .step-strip,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .matrix-card:nth-child(2),
      .matrix-card:nth-child(3) {
        margin-top: 0;
      }

      .filter-top {
        align-items: flex-start;
        flex-direction: column;
      }

      .filter-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
      }

      .pill {
        white-space: nowrap;
      }

      .section {
        padding: 46px 0;
      }

      .timeline li {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .pagination-wrap {
        flex-direction: column;
      }

      .cta-panel {
        padding: 24px;
      }

      .cta-actions,
      .btn-primary,
      .btn-ghost {
        width: 100%;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 32px;
      }

      h2 {
        font-size: 25px;
      }

      .entry-matrix {
        padding: 10px;
        gap: 10px;
      }

      .matrix-card {
        min-height: 150px;
      }

      .thumb {
        min-height: 132px;
      }

      .mini-stat {
        grid-template-columns: 1fr;
      }
    }
