/* roulang page: index */
:root{
      --ink:#111318;
      --ink-2:#181A1F;
      --muted:#69707C;
      --soft:#F7F3EA;
      --soft-2:#F4F5F7;
      --card:#FFFFFF;
      --line:rgba(17,19,24,.10);
      --orange:#FF7A1A;
      --orange-2:#E9690C;
      --green:#19B87A;
      --blue:#267DFF;
      --purple:#8B5CF6;
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --shadow:0 14px 40px rgba(17,19,24,.08);
      --shadow-strong:0 22px 60px rgba(17,19,24,.14);
      --container:1200px;
      --nav-h:68px;
      --ease:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--ink);
      background:linear-gradient(180deg,var(--soft) 0%,#fff 38%,var(--soft-2) 100%);
      line-height:1.75;
      overflow-x:hidden;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    ::selection{background:rgba(255,122,26,.22);color:var(--ink)}
    .site-container{width:min(var(--container),calc(100% - 32px));margin-inline:auto}
    .section{padding:82px 0;position:relative}
    .section-tight{padding:62px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,122,26,.10);
      color:#A74900;
      font-size:14px;
      font-weight:800;
      letter-spacing:.02em;
      border:1px solid rgba(255,122,26,.16);
    }
    .section-title{
      margin:16px 0 0;
      font-size:clamp(28px,3vw,38px);
      line-height:1.25;
      font-weight:850;
      letter-spacing:-.04em;
    }
    .section-desc{
      margin:14px 0 0;
      max-width:760px;
      color:var(--muted);
      font-size:16.5px;
    }
    .btn-brand,.btn-ghost,.btn-darkline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      border-radius:999px;
      padding:12px 20px;
      font-weight:800;
      border:1px solid transparent;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-brand{
      color:#fff;
      background:linear-gradient(135deg,var(--orange),#FF9B38);
      box-shadow:0 12px 28px rgba(255,122,26,.28);
    }
    .btn-brand:hover,.btn-brand:focus{
      color:#fff;
      background:linear-gradient(135deg,var(--orange-2),var(--orange));
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(255,122,26,.36);
    }
    .btn-ghost{
      color:var(--ink);
      background:rgba(255,255,255,.82);
      border-color:rgba(17,19,24,.12);
    }
    .btn-ghost:hover,.btn-ghost:focus{
      color:var(--ink);
      background:rgba(255,122,26,.10);
      border-color:rgba(255,122,26,.32);
      transform:translateY(-2px);
    }
    .btn-darkline{
      color:#fff;
      background:rgba(17,19,24,.88);
      border-color:rgba(255,255,255,.18);
    }
    .btn-darkline:hover{color:#fff;background:#000;transform:translateY(-2px)}
    .nav-shell{
      position:fixed;
      top:18px;
      left:0;
      right:0;
      z-index:1030;
      pointer-events:none;
    }
    .navbar{
      pointer-events:auto;
      width:min(var(--container),calc(100% - 32px));
      margin:auto;
      min-height:var(--nav-h);
      border-radius:999px;
      padding:8px 10px 8px 18px;
      background:rgba(255,255,255,.86);
      backdrop-filter:blur(14px);
      border:1px solid rgba(17,19,24,.08);
      box-shadow:0 14px 38px rgba(17,19,24,.10);
    }
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:10px;
      margin:0;
      font-weight:900;
      letter-spacing:-.04em;
      color:var(--ink);
      font-size:18px;
    }
    .brand-mark{
      width:36px;height:36px;border-radius:50%;
      background:conic-gradient(from 180deg,var(--orange),var(--green),var(--blue),var(--orange));
      display:grid;place-items:center;
      color:#fff;
      box-shadow:0 8px 20px rgba(255,122,26,.25);
      position:relative;
      overflow:hidden;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:8px;
      border-radius:50%;
      background:rgba(17,19,24,.90);
    }
    .brand-mark i{position:relative;z-index:1;font-size:16px}
    .navbar-nav{
      align-items:center;
      gap:6px;
    }
    .nav-link{
      border-radius:999px;
      padding:9px 15px!important;
      color:rgba(17,19,24,.72);
      font-weight:750;
      font-size:14.5px;
    }
    .nav-link:hover{background:rgba(255,122,26,.10);color:var(--ink)}
    .nav-link.active{
      color:#fff!important;
      background:var(--orange);
      box-shadow:0 8px 18px rgba(255,122,26,.24);
    }
    .navbar-toggler{
      border:0;
      width:44px;height:44px;
      border-radius:50%;
      background:var(--ink);
      color:#fff;
      display:inline-grid;
      place-items:center;
      box-shadow:none!important;
    }
    .offcanvas{
      border:0;
      border-radius:24px 0 0 24px;
      background:var(--soft);
    }
    .offcanvas-header{padding:24px}
    .offcanvas-body{padding:0 24px 24px}
    .offcanvas .nav-link{padding:14px 16px!important;margin-bottom:8px;background:#fff}
    .hero{
      min-height:82vh;
      padding:112px 0 58px;
      display:flex;
      align-items:stretch;
      background:
        radial-gradient(circle at 12% 18%,rgba(255,122,26,.28),transparent 26%),
        radial-gradient(circle at 84% 22%,rgba(38,125,255,.20),transparent 28%),
        linear-gradient(135deg,#17191E 0%,#1D2028 42%,#F7F3EA 42.2%,#F7F3EA 100%);
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:-20% -10% auto auto;
      width:52vw;height:58vw;
      background:repeating-linear-gradient(135deg,rgba(255,122,26,.20) 0 12px,transparent 12px 34px);
      transform:rotate(-8deg);
      border-radius:50%;
      opacity:.55;
    }
    .hero:after{
      content:"";
      position:absolute;
      left:-80px;bottom:-130px;
      width:430px;height:430px;
      background:linear-gradient(135deg,rgba(25,184,122,.26),rgba(38,125,255,.16));
      border-radius:44% 56% 61% 39%;
      filter:blur(.2px);
    }
    .hero-board{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr);
      gap:24px;
      align-items:stretch;
    }
    .hero-panel{
      border-radius:36px;
      padding:34px;
      min-height:560px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      position:relative;
      box-shadow:var(--shadow-strong);
    }
    .hero-main{
      color:#fff;
      background:
        linear-gradient(125deg,rgba(17,19,24,.96),rgba(24,26,31,.84)),
        radial-gradient(circle at 80% 18%,rgba(255,122,26,.45),transparent 30%);
      border:1px solid rgba(255,255,255,.10);
    }
    .hero-main:before{
      content:"";
      position:absolute;
      right:-80px;top:52px;
      width:360px;height:160px;
      background:linear-gradient(90deg,rgba(255,122,26,.35),rgba(25,184,122,.22),rgba(38,125,255,.22));
      transform:skewX(-22deg) rotate(-7deg);
      border-radius:40px;
    }
    .series-tabs{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      position:relative;
      z-index:1;
      margin-bottom:40px;
    }
    .series-tabs span{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      color:#fff;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.16);
      font-size:13px;
      font-weight:750;
    }
    .hero h1{
      position:relative;
      z-index:1;
      max-width:760px;
      margin:0;
      font-size:clamp(30px,5vw,56px);
      line-height:1.16;
      font-weight:900;
      letter-spacing:-.06em;
    }
    .hero-lead{
      position:relative;
      z-index:1;
      max-width:760px;
      margin:22px 0 0;
      color:rgba(255,255,255,.76);
      font-size:17px;
      line-height:1.8;
    }
    .hero-actions{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:34px;
      position:relative;
      z-index:1;
    }
    .stat-chip{
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.12);
    }
    .stat-chip strong{display:block;font-size:22px;line-height:1;color:#fff}
    .stat-chip span{display:block;margin-top:8px;color:rgba(255,255,255,.66);font-size:13px}
    .hero-side{
      background:#fff;
      border:1px solid rgba(17,19,24,.08);
    }
    .poster-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
      position:relative;
      z-index:1;
    }
    .poster-card{
      min-height:150px;
      padding:18px;
      border-radius:24px;
      background:var(--soft-2);
      border:1px solid rgba(17,19,24,.08);
      position:relative;
      overflow:hidden;
      transition:var(--ease);
    }
    .poster-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:rgba(255,122,26,.35)}
    .poster-card:after{
      content:"";
      position:absolute;
      right:-22px;bottom:-26px;
      width:96px;height:96px;
      border-radius:30px;
      background:rgba(255,255,255,.42);
      transform:rotate(18deg);
    }
    .poster-card.orange{background:linear-gradient(135deg,rgba(255,122,26,.20),#fff)}
    .poster-card.green{background:linear-gradient(135deg,rgba(25,184,122,.18),#fff)}
    .poster-card.blue{background:linear-gradient(135deg,rgba(38,125,255,.17),#fff)}
    .poster-card.purple{background:linear-gradient(135deg,rgba(139,92,246,.16),#fff)}
    .poster-no{
      width:40px;height:40px;border-radius:14px;
      display:grid;place-items:center;
      color:#fff;background:var(--ink);
      font-weight:900;
      margin-bottom:16px;
    }
    .poster-card h3{font-size:18px;font-weight:850;margin:0 0 8px}
    .poster-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.65}
    .age-note{
      margin-top:16px;
      padding:16px 18px;
      border-radius:22px;
      background:rgba(25,184,122,.10);
      color:#17664A;
      border:1px solid rgba(25,184,122,.18);
      font-size:14px;
      font-weight:650;
    }
    .age-note i{margin-right:6px}
    .compare-wrap{
      margin-top:30px;
      border-radius:var(--radius-xl);
      background:#fff;
      box-shadow:var(--shadow);
      border:1px solid rgba(17,19,24,.08);
      overflow:hidden;
    }
    .compare-table{margin:0;vertical-align:middle}
    .compare-table th{
      background:var(--ink);
      color:#fff;
      padding:18px;
      font-size:15px;
      border-color:rgba(255,255,255,.10);
    }
    .compare-table td{
      padding:18px;
      color:#434A55;
      border-color:rgba(17,19,24,.08);
      font-size:15px;
    }
    .compare-table .feature-name{
      font-weight:850;color:var(--ink);background:#FBFAF6;
    }
    .check{color:var(--green);font-weight:900}
    .warn{color:var(--orange);font-weight:900}
    .entry-rail{
      margin-top:30px;
      display:flex;
      gap:18px;
      overflow-x:auto;
      padding:4px 4px 20px;
      scroll-snap-type:x mandatory;
      scrollbar-width:none;
    }
    .entry-rail::-webkit-scrollbar{display:none}
    .rail-card{
      flex:0 0 260px;
      min-height:260px;
      scroll-snap-align:start;
      border-radius:28px;
      padding:22px;
      border:1px solid rgba(17,19,24,.08);
      background:#fff;
      box-shadow:0 10px 30px rgba(17,19,24,.06);
      position:relative;
      overflow:hidden;
      transition:var(--ease);
    }
    .rail-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:rgba(255,122,26,.35)}
    .rail-card:before{
      content:"";
      position:absolute;
      inset:auto -36px -40px auto;
      width:120px;height:120px;
      border-radius:34px;
      transform:rotate(18deg);
      background:rgba(255,122,26,.13);
    }
    .rail-card.green:before{background:rgba(25,184,122,.13)}
    .rail-card.blue:before{background:rgba(38,125,255,.13)}
    .rail-card.purple:before{background:rgba(139,92,246,.13)}
    .rail-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-bottom:22px;
    }
    .rail-no{
      width:44px;height:44px;border-radius:16px;
      display:grid;place-items:center;
      background:var(--ink);
      color:#fff;font-weight:900;
    }
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:850;
      background:rgba(25,184,122,.10);
      color:#14734F;
      border:1px solid rgba(25,184,122,.16);
    }
    .badge-orange{background:rgba(255,122,26,.10);color:#A74900;border-color:rgba(255,122,26,.16)}
    .badge-blue{background:rgba(38,125,255,.10);color:#155BC5;border-color:rgba(38,125,255,.16)}
    .rail-card h3{font-size:20px;font-weight:850;margin:0 0 10px}
    .rail-card p{font-size:14.5px;color:var(--muted);line-height:1.65;margin:0 0 18px}
    .rail-card a{
      position:relative;
      z-index:1;
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-weight:850;
      color:var(--ink);
    }
    .rail-card a:hover{color:var(--orange)}
    .feature-layout{
      margin-top:30px;
      display:grid;
      grid-template-columns:7fr 5fr;
      gap:22px;
      align-items:stretch;
    }
    .feature-card{
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid rgba(17,19,24,.08);
      box-shadow:var(--shadow);
      padding:28px;
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .feature-card:hover{transform:translateY(-4px);border-color:rgba(255,122,26,.35);box-shadow:var(--shadow-strong)}
    .feature-card.big{
      min-height:360px;
      background:
        linear-gradient(135deg,rgba(255,122,26,.15),rgba(255,255,255,.94) 45%),
        #fff;
    }
    .feature-card.big:after{
      content:"";
      position:absolute;
      right:-70px;top:60px;
      width:260px;height:260px;
      border-radius:60px;
      background:linear-gradient(135deg,rgba(25,184,122,.14),rgba(38,125,255,.16));
      transform:rotate(22deg);
    }
    .icon-box{
      width:52px;height:52px;
      border-radius:18px;
      display:grid;place-items:center;
      background:var(--ink);
      color:#fff;
      font-size:22px;
      margin-bottom:22px;
    }
    .feature-card h3{font-size:24px;font-weight:880;margin:0 0 12px}
    .feature-card p{color:var(--muted);margin:0;position:relative;z-index:1}
    .feature-list{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-top:26px;
    }
    .feature-list span{
      padding:12px 14px;
      border-radius:16px;
      background:#fff;
      border:1px solid rgba(17,19,24,.08);
      font-size:14px;
      font-weight:750;
    }
    .stack{display:grid;gap:22px}
    .info-list{
      display:grid;
      gap:14px;
      margin-top:26px;
    }
    .info-item{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:16px;
      border-radius:18px;
      background:rgba(244,245,247,.80);
      border:1px solid rgba(17,19,24,.07);
    }
    .info-item i{color:var(--orange);font-size:20px;line-height:1.4}
    .info-item strong{display:block;font-weight:850;margin-bottom:2px}
    .info-item span{display:block;color:var(--muted);font-size:14px;line-height:1.6}
    .news-zone{
      background:var(--ink);
      color:#fff;
      overflow:hidden;
    }
    .news-zone:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg,transparent 0 58%,rgba(255,122,26,.14) 58.2% 70%,transparent 70.2%),
        radial-gradient(circle at 78% 18%,rgba(38,125,255,.22),transparent 28%);
      pointer-events:none;
    }
    .news-zone .section-desc{color:rgba(255,255,255,.66)}
    .news-grid{
      position:relative;
      z-index:1;
      margin-top:30px;
      display:grid;
      grid-template-columns:8fr 4fr;
      gap:22px;
    }
    .news-list,.side-reco{
      border-radius:var(--radius-xl);
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      padding:22px;
      backdrop-filter:blur(6px);
    }
    .news-link{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px 0;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .news-link:last-child{border-bottom:0}
    .news-date{
      min-width:82px;
      padding:7px 10px;
      border-radius:999px;
      text-align:center;
      font-size:12px;
      font-weight:900;
      color:#fff;
      background:rgba(255,122,26,.22);
      border:1px solid rgba(255,122,26,.25);
    }
    .news-link h3{margin:0;font-size:17px;font-weight:850;color:#fff}
    .news-link p{margin:4px 0 0;color:rgba(255,255,255,.62);font-size:14px;line-height:1.6}
    .news-link:hover h3{color:#FFC18B}
    .news-link i{color:rgba(255,255,255,.52)}
    .side-reco h3{font-size:22px;font-weight:880;margin:0 0 12px}
    .side-reco p{color:rgba(255,255,255,.68);margin:0 0 18px}
    .mini-tags{display:flex;flex-wrap:wrap;gap:10px}
    .mini-tags span{
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.10);
      color:rgba(255,255,255,.78);
      font-size:13px;
      font-weight:750;
      border:1px solid rgba(255,255,255,.12);
    }
    .steps-grid{
      margin-top:30px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .step-card{
      border-radius:24px;
      padding:22px;
      background:#fff;
      border:1px solid rgba(17,19,24,.08);
      box-shadow:0 10px 30px rgba(17,19,24,.05);
      transition:var(--ease);
    }
    .step-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:rgba(255,122,26,.32)}
    .step-num{
      width:42px;height:42px;border-radius:15px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--orange),#FFB16A);
      color:#fff;
      font-weight:900;
      margin-bottom:18px;
    }
    .step-card h3{font-size:19px;font-weight:850;margin:0 0 9px}
    .step-card p{font-size:14.5px;color:var(--muted);margin:0;line-height:1.65}
    .trust-strip{
      margin-top:30px;
      border-radius:var(--radius-xl);
      padding:24px;
      background:#fff;
      border:1px solid rgba(17,19,24,.08);
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .trust-item{
      padding:18px;
      border-radius:22px;
      background:linear-gradient(135deg,var(--soft),#fff);
      border:1px solid rgba(17,19,24,.06);
    }
    .trust-item strong{display:block;font-size:28px;font-weight:900;letter-spacing:-.05em}
    .trust-item span{display:block;color:var(--muted);font-size:14px;margin-top:4px}
    .open-zone{
      background:
        linear-gradient(135deg,rgba(255,122,26,.18),rgba(247,243,234,.95) 48%,rgba(25,184,122,.12)),
        var(--soft);
    }
    .membership-card{
      margin-top:30px;
      border-radius:34px;
      background:#fff;
      border:1px solid rgba(17,19,24,.08);
      box-shadow:var(--shadow-strong);
      padding:28px;
      display:grid;
      grid-template-columns:1fr 1.2fr;
      gap:24px;
      position:relative;
      overflow:hidden;
    }
    .membership-card:before{
      content:"";
      position:absolute;
      right:-120px;top:-120px;
      width:300px;height:300px;
      border-radius:70px;
      transform:rotate(24deg);
      background:linear-gradient(135deg,rgba(255,122,26,.18),rgba(38,125,255,.14));
    }
    .price-box{
      position:relative;
      z-index:1;
      border-radius:28px;
      background:var(--ink);
      color:#fff;
      padding:28px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:300px;
    }
    .price-box h3{font-size:26px;font-weight:900;margin:0 0 12px}
    .price-box p{color:rgba(255,255,255,.70);margin:0}
    .price-box .free{
      font-size:42px;
      line-height:1;
      font-weight:950;
      color:#fff;
      margin-top:28px;
      letter-spacing:-.06em;
    }
    .benefit-list{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .benefit{
      padding:18px;
      border-radius:22px;
      background:var(--soft-2);
      border:1px solid rgba(17,19,24,.07);
    }
    .benefit i{color:var(--green);font-size:20px}
    .benefit strong{display:block;margin:8px 0 4px;font-weight:850}
    .benefit span{display:block;color:var(--muted);font-size:14px;line-height:1.6}
    .accordion{
      margin-top:30px;
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid rgba(17,19,24,.08)!important;
      border-radius:22px!important;
      overflow:hidden;
      box-shadow:0 10px 28px rgba(17,19,24,.045);
      background:#fff;
    }
    .accordion-button{
      min-height:58px;
      padding:18px 22px;
      font-weight:850;
      color:var(--ink);
      background:#fff;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--ink);
      background:linear-gradient(90deg,rgba(255,122,26,.12),#fff);
      border-left:5px solid var(--orange);
    }
    .accordion-button:focus{box-shadow:0 0 0 4px rgba(255,122,26,.18)!important}
    .accordion-body{
      padding:0 22px 22px 27px;
      color:var(--muted);
      line-height:1.8;
      font-size:15.5px;
    }
    .final-cta{
      margin-top:38px;
      border-radius:34px;
      padding:34px;
      background:
        linear-gradient(135deg,var(--orange),#FFB16A 45%,var(--soft) 45.2%),
        var(--orange);
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow-strong);
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .final-cta:after{
      content:"";
      position:absolute;
      right:22%;top:-40px;
      width:150px;height:260px;
      border-radius:34px;
      border:1px solid rgba(255,255,255,.40);
      transform:rotate(24deg);
    }
    .final-cta h2{position:relative;z-index:1;font-size:clamp(26px,3vw,36px);font-weight:900;line-height:1.25;margin:0 0 10px}
    .final-cta p{position:relative;z-index:1;margin:0;color:rgba(17,19,24,.72);max-width:660px}
    .final-actions{position:relative;z-index:1;display:flex;gap:12px;flex-wrap:wrap}
    .site-footer{
      background:var(--ink);
      color:rgba(255,255,255,.72);
      padding:54px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr 1fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-weight:900;
      font-size:20px;
      letter-spacing:-.04em;
      margin-bottom:14px;
    }
    .footer-title{color:#fff;font-weight:850;margin-bottom:14px}
    .footer-links{display:grid;gap:10px}
    .footer-links a:hover{color:#FFB16A;transform:translateX(3px)}
    .footer-note{
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      font-size:14px;
      line-height:1.75;
    }
    .copyright{
      margin-top:34px;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      font-size:13px;
      color:rgba(255,255,255,.52);
    }
    @media (max-width:1199px){
      .hero-board{grid-template-columns:1fr}
      .hero-panel{min-height:auto}
      .poster-grid{grid-template-columns:repeat(4,1fr)}
      .poster-card{min-height:136px}
      .feature-layout,.news-grid{grid-template-columns:1fr}
      .steps-grid,.trust-strip{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991px){
      .navbar{border-radius:28px}
      .hero{padding-top:104px;min-height:auto;background:linear-gradient(160deg,#17191E 0%,#1D2028 58%,#F7F3EA 58.2%)}
      .hero-main,.hero-side{padding:24px;border-radius:30px}
      .poster-grid{grid-template-columns:repeat(2,1fr)}
      .membership-card{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:767px){
      .site-container{width:min(100% - 24px,var(--container))}
      .section{padding:62px 0}
      .hero{padding-top:96px}
      .hero-stats{grid-template-columns:1fr}
      .hero-actions .btn-brand,.hero-actions .btn-ghost{width:100%}
      .poster-grid{grid-template-columns:1fr}
      .rail-card{flex-basis:82vw}
      .compare-wrap{overflow-x:auto}
      .compare-table{min-width:720px}
      .feature-list,.benefit-list{grid-template-columns:1fr}
      .steps-grid,.trust-strip{grid-template-columns:1fr}
      .news-link{grid-template-columns:1fr auto;gap:8px}
      .news-date{grid-column:1 / -1;width:max-content}
      .final-cta{grid-template-columns:1fr;padding:24px}
      .final-actions .btn-darkline,.final-actions .btn-ghost{width:100%}
    }
    @media (max-width:520px){
      .navbar{width:calc(100% - 20px);padding-left:12px}
      .navbar-brand{font-size:16px}
      .brand-mark{width:34px;height:34px}
      .hero-panel{padding:20px;border-radius:26px}
      .series-tabs span{font-size:12px}
      .stat-chip strong{font-size:20px}
      .section-title{letter-spacing:-.035em}
      .feature-card,.membership-card{padding:20px;border-radius:26px}
      .price-box{padding:22px;min-height:260px}
      .footer-brand{font-size:18px}
    }

/* roulang page: category1 */
:root{
      --ink:#111318;
      --ink-2:#181A1F;
      --muted:#656973;
      --soft:#F7F3EA;
      --soft-2:#F4F5F7;
      --white:#ffffff;
      --orange:#FF7A1A;
      --orange-dark:#E8660C;
      --orange-soft:#FFF0E4;
      --green:#19B87A;
      --green-soft:#E8F8F1;
      --blue:#267DFF;
      --blue-soft:#EAF2FF;
      --purple:#7257FF;
      --purple-soft:#F0EDFF;
      --line:rgba(17,19,24,.10);
      --line-strong:rgba(17,19,24,.16);
      --shadow:0 14px 40px rgba(17,19,24,.08);
      --shadow-lg:0 22px 70px rgba(17,19,24,.12);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --container:1200px;
      --nav-h:72px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 4%, rgba(255,122,26,.13), transparent 30%),
        radial-gradient(circle at 92% 10%, rgba(38,125,255,.12), transparent 28%),
        linear-gradient(180deg,var(--soft) 0%, #fff 36%, var(--soft-2) 100%);
      line-height:1.75;
      overflow-x:hidden;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    ::selection{background:rgba(255,122,26,.22)}

    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }

    .nav-shell{
      position:fixed;
      top:18px;
      left:50%;
      transform:translateX(-50%);
      z-index:1030;
      width:min(var(--container), calc(100% - 32px));
    }
    .nav-shell .navbar{
      min-height:64px;
      padding:8px 12px 8px 16px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.86);
      border:1px solid rgba(17,19,24,.08);
      box-shadow:0 18px 45px rgba(17,19,24,.10);
      backdrop-filter:blur(14px);
      -webkit-backdrop-filter:blur(14px);
    }
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:10px;
      margin:0;
      font-size:18px;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--ink);
      white-space:nowrap;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:
        linear-gradient(135deg,var(--orange),#FF9C47 45%,var(--green));
      box-shadow:0 10px 24px rgba(255,122,26,.28);
      flex:0 0 auto;
    }
    .brand-mark i{font-size:20px;font-weight:800}
    .navbar-nav{
      gap:8px;
      align-items:center;
    }
    .nav-link{
      border-radius:var(--radius-pill);
      padding:10px 16px !important;
      color:rgba(17,19,24,.72);
      font-weight:700;
      font-size:15px;
      line-height:1;
    }
    .nav-link:hover,
    .nav-link:focus{
      color:var(--ink);
      background:rgba(255,122,26,.10);
      outline:none;
    }
    .nav-link.active{
      color:#fff !important;
      background:var(--orange);
      box-shadow:0 10px 24px rgba(255,122,26,.28);
    }
    .navbar-toggler{
      border:0;
      width:44px;
      height:44px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:var(--ink);
      background:rgba(17,19,24,.06);
      box-shadow:none !important;
    }
    .navbar-toggler i{font-size:24px}
    .offcanvas{
      border:0;
      background:var(--soft);
      border-radius:24px 0 0 24px;
    }
    .offcanvas-header{
      padding:24px;
      border-bottom:1px solid var(--line);
    }
    .offcanvas-body{padding:18px 24px 28px}
    .mobile-links{
      display:grid;
      gap:10px;
    }
    .mobile-links a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:15px 16px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--line);
      font-weight:800;
    }
    .mobile-links a.active{
      color:#fff;
      background:var(--orange);
      border-color:var(--orange);
    }

    main{position:relative}
    .page-hero{
      position:relative;
      min-height:430px;
      padding:116px 0 58px;
      overflow:hidden;
      background:
        linear-gradient(118deg, rgba(17,19,24,.94), rgba(24,26,31,.86) 54%, rgba(255,122,26,.18)),
        radial-gradient(circle at 78% 18%, rgba(255,122,26,.35), transparent 24%),
        radial-gradient(circle at 18% 86%, rgba(25,184,122,.20), transparent 26%);
      color:#fff;
      isolation:isolate;
    }
    .page-hero:before,
    .page-hero:after{
      content:"";
      position:absolute;
      inset:auto;
      z-index:-1;
      pointer-events:none;
    }
    .page-hero:before{
      width:620px;
      height:210px;
      right:-120px;
      top:100px;
      transform:rotate(-14deg);
      background:linear-gradient(90deg, rgba(255,122,26,.34), rgba(38,125,255,.24), rgba(25,184,122,.18));
      border-radius:999px;
      filter:blur(.2px);
    }
    .page-hero:after{
      width:460px;
      height:460px;
      left:-180px;
      bottom:-240px;
      border-radius:50%;
      border:70px solid rgba(255,255,255,.07);
    }
    .hero-noise{
      position:absolute;
      inset:0;
      opacity:.38;
      background-image:
        linear-gradient(135deg, rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(45deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size:34px 34px, 58px 58px;
      mask-image:linear-gradient(180deg,#000,transparent 88%);
      pointer-events:none;
    }
    .breadcrumb-wrap{
      margin-bottom:20px;
      position:relative;
      z-index:2;
    }
    .breadcrumb{
      --bs-breadcrumb-divider:"/";
      margin:0;
      display:inline-flex;
      padding:9px 14px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(10px);
    }
    .breadcrumb-item,
    .breadcrumb-item a{
      color:rgba(255,255,255,.72);
      font-size:14px;
      font-weight:700;
    }
    .breadcrumb-item.active{color:#fff}
    .breadcrumb-item+.breadcrumb-item::before{color:rgba(255,255,255,.48)}
    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(340px,.72fr);
      gap:34px;
      align-items:stretch;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      background:rgba(255,122,26,.14);
      border:1px solid rgba(255,122,26,.28);
      color:#FFD7BA;
      font-size:14px;
      font-weight:800;
      margin-bottom:14px;
    }
    h1{
      margin:0 0 18px;
      max-width:760px;
      font-size:clamp(30px,4.2vw,52px);
      line-height:1.18;
      letter-spacing:-.045em;
      font-weight:850;
    }
    .hero-copy{
      margin:0;
      max-width:760px;
      color:rgba(255,255,255,.76);
      font-size:17px;
      line-height:1.85;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:26px;
    }
    .btn-custom{
      --btn-bg:#fff;
      --btn-color:var(--ink);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 20px;
      border-radius:var(--radius-pill);
      border:1px solid transparent;
      background:var(--btn-bg);
      color:var(--btn-color);
      font-weight:800;
      line-height:1;
      box-shadow:0 10px 26px rgba(17,19,24,.10);
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }
    .btn-custom:hover{
      transform:translateY(-3px);
      box-shadow:0 16px 32px rgba(17,19,24,.14);
    }
    .btn-custom:focus-visible{
      outline:3px solid rgba(255,122,26,.32);
      outline-offset:3px;
    }
    .btn-orange{
      --btn-bg:var(--orange);
      --btn-color:#fff;
      box-shadow:0 12px 28px rgba(255,122,26,.32);
    }
    .btn-orange:hover{
      background:var(--orange-dark);
      color:#fff;
      box-shadow:0 18px 38px rgba(255,122,26,.38);
    }
    .btn-ghost{
      --btn-bg:rgba(255,255,255,.10);
      --btn-color:#fff;
      border-color:rgba(255,255,255,.22);
      box-shadow:none;
    }
    .btn-ghost:hover{
      background:rgba(255,255,255,.16);
      color:#fff;
      border-color:rgba(255,255,255,.36);
    }
    .hero-panel{
      position:relative;
      padding:22px;
      border-radius:32px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      box-shadow:0 22px 70px rgba(0,0,0,.20);
      backdrop-filter:blur(12px);
      overflow:hidden;
      min-height:275px;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      width:180px;
      height:180px;
      border-radius:50%;
      right:-48px;
      top:-48px;
      background:rgba(255,122,26,.30);
      filter:blur(4px);
    }
    .status-board{
      position:relative;
      display:grid;
      gap:14px;
    }
    .status-card{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:15px;
      border-radius:20px;
      background:rgba(255,255,255,.88);
      color:var(--ink);
      border:1px solid rgba(255,255,255,.45);
    }
    .status-icon{
      width:38px;
      height:38px;
      border-radius:14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      flex:0 0 auto;
      background:var(--orange);
    }
    .status-card:nth-child(2) .status-icon{background:var(--green)}
    .status-card:nth-child(3) .status-icon{background:var(--blue)}
    .status-card strong{
      display:block;
      font-size:16px;
      line-height:1.35;
      margin-bottom:3px;
    }
    .status-card span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.55;
    }

    .section{
      padding:76px 0;
      position:relative;
    }
    .section-tight{padding-top:54px}
    .section-soft{background:var(--soft)}
    .section-gray{background:var(--soft-2)}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:22px;
      margin-bottom:28px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:9px;
      color:var(--orange);
      font-weight:850;
      font-size:14px;
    }
    h2{
      margin:0;
      font-size:clamp(26px,3vw,36px);
      line-height:1.25;
      letter-spacing:-.03em;
      font-weight:850;
      color:var(--ink);
    }
    .section-desc{
      margin:10px 0 0;
      max-width:680px;
      color:var(--muted);
      font-size:16px;
    }
    .tag-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      background:#fff;
      border:1px solid var(--line);
      color:rgba(17,19,24,.76);
      font-weight:750;
      font-size:14px;
      line-height:1;
      white-space:nowrap;
    }
    .tag.orange{background:var(--orange);color:#fff;border-color:var(--orange)}
    .tag.green{background:var(--green-soft);color:#08784D;border-color:rgba(25,184,122,.18)}
    .tag.blue{background:var(--blue-soft);color:#145DC5;border-color:rgba(38,125,255,.18)}
    .tag.purple{background:var(--purple-soft);color:#4D35C7;border-color:rgba(114,87,255,.18)}

    .filter-shell{
      padding:18px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      margin-bottom:30px;
      overflow:hidden;
    }
    .filter-scroll{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:2px 2px 8px;
      scrollbar-width:none;
      -webkit-overflow-scrolling:touch;
    }
    .filter-scroll::-webkit-scrollbar{display:none}
    .filter-pill{
      flex:0 0 auto;
      border:1px solid var(--line);
      background:var(--soft-2);
      color:rgba(17,19,24,.78);
      border-radius:var(--radius-pill);
      padding:11px 16px;
      font-weight:800;
      font-size:14px;
      cursor:pointer;
      transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }
    .filter-pill:hover{
      transform:translateY(-2px);
      background:var(--orange-soft);
      border-color:rgba(255,122,26,.28);
      color:var(--ink);
    }
    .filter-pill.active{
      background:var(--orange);
      color:#fff;
      border-color:var(--orange);
      box-shadow:0 12px 24px rgba(255,122,26,.22);
    }

    .content-layout{
      display:grid;
      grid-template-columns:minmax(0, 8fr) minmax(300px, 4fr);
      gap:26px;
      align-items:start;
    }
    .entry-list{
      display:grid;
      gap:20px;
    }
    .entry-card{
      display:grid;
      grid-template-columns:132px minmax(0,1fr);
      gap:20px;
      padding:20px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 30px rgba(17,19,24,.055);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .entry-card:hover{
      transform:translateY(-4px);
      border-color:rgba(255,122,26,.38);
      box-shadow:var(--shadow);
    }
    .entry-thumb{
      position:relative;
      min-height:132px;
      border-radius:22px;
      overflow:hidden;
      background:
        linear-gradient(135deg, rgba(255,122,26,.95), rgba(255,184,111,.70)),
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.45), transparent 30%);
      display:flex;
      align-items:flex-end;
      padding:14px;
      color:#fff;
      isolation:isolate;
    }
    .entry-card:nth-child(2) .entry-thumb{background:linear-gradient(135deg, rgba(25,184,122,.95), rgba(151,232,199,.78))}
    .entry-card:nth-child(3) .entry-thumb{background:linear-gradient(135deg, rgba(38,125,255,.95), rgba(151,192,255,.74))}
    .entry-card:nth-child(4) .entry-thumb{background:linear-gradient(135deg, rgba(114,87,255,.95), rgba(200,190,255,.78))}
    .entry-card:nth-child(5) .entry-thumb{background:linear-gradient(135deg, rgba(24,26,31,.95), rgba(255,122,26,.45))}
    .entry-thumb:before{
      content:"";
      position:absolute;
      width:120px;
      height:120px;
      top:-36px;
      right:-32px;
      border-radius:50%;
      border:24px solid rgba(255,255,255,.22);
      z-index:-1;
    }
    .entry-no{
      font-size:34px;
      font-weight:900;
      line-height:1;
      letter-spacing:-.04em;
    }
    .entry-body{
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .entry-top{
      display:flex;
      justify-content:space-between;
      gap:16px;
      align-items:flex-start;
      margin-bottom:8px;
    }
    .entry-title{
      margin:0;
      font-size:21px;
      line-height:1.35;
      letter-spacing:-.02em;
      font-weight:850;
      color:var(--ink);
    }
    .entry-title a:hover{color:var(--orange-dark)}
    .entry-desc{
      margin:0 0 14px;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .entry-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-bottom:18px;
    }
    .entry-actions{
      display:flex;
      align-items:center;
      gap:10px;
      margin-top:auto;
      flex-wrap:wrap;
    }
    .btn-small{
      min-height:40px;
      padding:10px 15px;
      font-size:14px;
      box-shadow:none;
    }
    .btn-lightline{
      background:#fff;
      color:var(--ink);
      border-color:var(--line-strong);
    }
    .btn-lightline:hover{
      background:var(--orange-soft);
      color:var(--ink);
      border-color:rgba(255,122,26,.30);
    }

    .side-stack{
      position:sticky;
      top:108px;
      display:grid;
      gap:18px;
    }
    .side-card{
      padding:22px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 12px 34px rgba(17,19,24,.065);
      overflow:hidden;
      position:relative;
    }
    .side-card.tint{
      background:
        linear-gradient(135deg, rgba(255,122,26,.12), rgba(255,255,255,.92) 45%, rgba(25,184,122,.10)),
        #fff;
    }
    .side-title{
      display:flex;
      align-items:center;
      gap:10px;
      margin:0 0 12px;
      font-size:18px;
      font-weight:850;
      line-height:1.35;
    }
    .side-title i{color:var(--orange)}
    .side-text{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .check-list{
      display:grid;
      gap:10px;
      padding:0;
      margin:14px 0 0;
      list-style:none;
    }
    .check-list li{
      display:flex;
      gap:9px;
      align-items:flex-start;
      color:rgba(17,19,24,.76);
      font-size:14px;
      line-height:1.65;
    }
    .check-list i{
      color:var(--green);
      margin-top:3px;
      flex:0 0 auto;
    }

    .timeline-panel{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .step-card{
      position:relative;
      padding:24px 20px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 30px rgba(17,19,24,.05);
      overflow:hidden;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .step-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow);
      border-color:rgba(255,122,26,.30);
    }
    .step-card:after{
      content:"";
      position:absolute;
      right:-36px;
      bottom:-42px;
      width:120px;
      height:120px;
      border-radius:50%;
      background:rgba(255,122,26,.10);
    }
    .step-number{
      width:42px;
      height:42px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:var(--orange);
      font-weight:900;
      margin-bottom:18px;
      box-shadow:0 10px 22px rgba(255,122,26,.22);
    }
    .step-card:nth-child(2) .step-number{background:var(--green);box-shadow:0 10px 22px rgba(25,184,122,.20)}
    .step-card:nth-child(3) .step-number{background:var(--blue);box-shadow:0 10px 22px rgba(38,125,255,.20)}
    .step-card:nth-child(4) .step-number{background:var(--purple);box-shadow:0 10px 22px rgba(114,87,255,.18)}
    .step-card h3{
      margin:0 0 8px;
      font-size:19px;
      line-height:1.35;
      font-weight:850;
    }
    .step-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
    }

    .notice-grid{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:24px;
      align-items:stretch;
    }
    .notice-large{
      padding:30px;
      border-radius:30px;
      color:#fff;
      background:
        linear-gradient(135deg, rgba(17,19,24,.96), rgba(24,26,31,.90)),
        radial-gradient(circle at 85% 20%, rgba(255,122,26,.50), transparent 30%);
      position:relative;
      overflow:hidden;
      min-height:280px;
    }
    .notice-large:before{
      content:"";
      position:absolute;
      width:360px;
      height:120px;
      right:-70px;
      bottom:10px;
      border-radius:999px;
      transform:rotate(-18deg);
      background:linear-gradient(90deg, rgba(255,122,26,.28), rgba(25,184,122,.16), rgba(38,125,255,.20));
    }
    .notice-large h2,
    .notice-large p,
    .notice-large .tag-row{
      position:relative;
      z-index:1;
    }
    .notice-large h2{color:#fff;margin-bottom:12px}
    .notice-large p{color:rgba(255,255,255,.72);max-width:650px;margin-bottom:20px}
    .notice-list{
      display:grid;
      gap:14px;
    }
    .mini-card{
      padding:20px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 30px rgba(17,19,24,.055);
    }
    .mini-card strong{
      display:flex;
      align-items:center;
      gap:9px;
      font-size:17px;
      margin-bottom:7px;
    }
    .mini-card i{color:var(--orange)}
    .mini-card span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }

    .accordion{
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid var(--line) !important;
      border-radius:22px !important;
      overflow:hidden;
      background:#fff;
      box-shadow:0 8px 24px rgba(17,19,24,.045);
    }
    .accordion-button{
      min-height:58px;
      padding:18px 22px;
      color:var(--ink);
      background:#fff;
      font-weight:850;
      border:0;
      box-shadow:none !important;
      line-height:1.45;
    }
    .accordion-button:not(.collapsed){
      color:var(--ink);
      background:linear-gradient(90deg, rgba(255,122,26,.12), #fff 46%);
    }
    .accordion-button:focus{
      border-color:transparent;
      box-shadow:0 0 0 3px rgba(255,122,26,.18) !important;
    }
    .accordion-button::after{
      width:34px;
      height:34px;
      border-radius:50%;
      background-color:var(--soft-2);
      background-position:center;
      background-size:16px;
    }
    .accordion-body{
      position:relative;
      padding:0 24px 22px 38px;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }
    .accordion-body:before{
      content:"";
      position:absolute;
      left:22px;
      top:6px;
      bottom:28px;
      width:4px;
      border-radius:999px;
      background:var(--orange);
    }

    .cta-band{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      padding:34px;
      background:
        linear-gradient(120deg, rgba(255,122,26,.96), rgba(255,176,98,.82) 48%, rgba(247,243,234,.94)),
        radial-gradient(circle at 92% 18%, rgba(25,184,122,.22), transparent 28%);
      box-shadow:0 18px 54px rgba(255,122,26,.22);
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .cta-band:before{
      content:"";
      position:absolute;
      right:220px;
      top:-80px;
      width:220px;
      height:420px;
      border-radius:999px;
      transform:rotate(28deg);
      background:rgba(255,255,255,.22);
    }
    .cta-band h2,
    .cta-band p,
    .cta-band .cta-actions{
      position:relative;
      z-index:1;
    }
    .cta-band h2{
      color:#fff;
      margin-bottom:8px;
    }
    .cta-band p{
      margin:0;
      color:rgba(255,255,255,.86);
      max-width:680px;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .cta-actions .btn-custom{
      box-shadow:0 12px 26px rgba(17,19,24,.12);
    }

    .site-footer{
      background:var(--ink-2);
      color:#fff;
      padding:58px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .55fr .9fr;
      gap:38px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:14px;
      font-size:20px;
      font-weight:850;
    }
    .footer-title{
      color:#fff;
      font-size:15px;
      font-weight:850;
      margin-bottom:13px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.62);
      font-size:14px;
    }
    .footer-links a:hover{
      color:var(--orange);
      transform:translateX(3px);
    }
    .footer-note{
      color:rgba(255,255,255,.62);
      font-size:14px;
      line-height:1.8;
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding-top:22px;
      color:rgba(255,255,255,.46);
      font-size:13px;
    }

    @media (max-width: 1199.98px){
      .site-container{width:min(100% - 34px, var(--container))}
      .hero-grid{grid-template-columns:1fr .82fr}
      .timeline-panel{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width: 991.98px){
      .page-hero{padding-top:106px}
      .hero-grid{grid-template-columns:1fr}
      .content-layout{grid-template-columns:1fr}
      .side-stack{position:static}
      .notice-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .footer-grid > div:first-child{grid-column:1/-1}
    }
    @media (max-width: 767.98px){
      .nav-shell{top:12px;width:calc(100% - 20px)}
      .nav-shell .navbar{min-height:60px;padding:8px 10px 8px 12px}
      .navbar-brand{font-size:16px}
      .brand-mark{width:34px;height:34px}
      .page-hero{min-height:auto;padding:96px 0 44px}
      .hero-panel{padding:18px;border-radius:26px}
      .section{padding:58px 0}
      .section-head{display:block}
      .section-desc{font-size:15px}
      .entry-card{
        grid-template-columns:1fr;
        padding:18px;
      }
      .entry-thumb{min-height:118px}
      .entry-top{display:block}
      .entry-title{font-size:19px}
      .timeline-panel{grid-template-columns:1fr}
      .cta-band{
        grid-template-columns:1fr;
        padding:26px 22px;
        border-radius:28px;
      }
      .cta-actions{justify-content:flex-start}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width: 575.98px){
      .site-container{width:calc(100% - 24px)}
      h1{font-size:28px}
      h2{font-size:25px}
      .hero-actions .btn-custom,
      .cta-actions .btn-custom{
        width:100%;
      }
      .filter-shell{padding:14px;border-radius:22px}
      .filter-pill{padding:10px 14px}
      .status-card{padding:13px}
      .notice-large{padding:24px 20px;border-radius:26px}
      .copyright{display:grid;gap:8px}
    }
