/* roulang page: index */
:root{
      --bg:#f7f5ef;
      --bg-soft:#fffaf0;
      --paper:#ffffff;
      --paper-2:#fffcf6;
      --ink:#171923;
      --muted:#667085;
      --weak:#8a90a2;
      --brand:#e4572e;
      --brand-dark:#bc3f1d;
      --brand-soft:#fff0e9;
      --accent:#1f8a70;
      --accent-soft:#e8f7f2;
      --night:#12131a;
      --night-2:#1c1d27;
      --gold:#f5b84b;
      --border:#e7e1d6;
      --border-dark:rgba(255,255,255,.12);
      --shadow-sm:0 8px 24px rgba(23,25,35,.08);
      --shadow-md:0 18px 55px rgba(23,25,35,.12);
      --shadow-lg:0 28px 80px rgba(23,25,35,.18);
      --radius-sm:12px;
      --radius-md:18px;
      --radius-lg:28px;
      --radius-xl:38px;
      --sidebar:278px;
      --container:1160px;
      --trans:180ms ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:
        radial-gradient(circle at 82% 8%, rgba(228,87,46,.12), transparent 28rem),
        radial-gradient(circle at 16% 22%, rgba(31,138,112,.10), transparent 26rem),
        var(--bg);
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      line-height:1.75;
      letter-spacing:.01em;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:color var(--trans),background var(--trans),border-color var(--trans),transform var(--trans),box-shadow var(--trans)}
    a:hover,a:focus{color:var(--brand)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(228,87,46,.18);color:var(--ink)}
    :focus-visible{outline:3px solid rgba(228,87,46,.35);outline-offset:3px;border-radius:10px}

    .site-shell{min-height:100vh}
    .container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }
    .content-area{
      margin-left:var(--sidebar);
      min-height:100vh;
    }

    .side-nav{
      position:fixed;
      inset:0 auto 0 0;
      width:var(--sidebar);
      background:rgba(18,19,26,.96);
      color:#fff;
      z-index:1000;
      border-right:1px solid rgba(255,255,255,.09);
      box-shadow:14px 0 45px rgba(18,19,26,.14);
      display:flex;
      flex-direction:column;
      padding:24px 18px;
      backdrop-filter:blur(18px);
    }
    .brand-block{
      display:flex;
      align-items:center;
      gap:12px;
      padding:8px 8px 22px;
      border-bottom:1px solid var(--border-dark);
    }
    .brand-mark{
      width:44px;height:44px;border-radius:16px;
      display:grid;place-items:center;
      background:linear-gradient(145deg,var(--brand),#ff8d5b);
      color:#fff;
      box-shadow:0 15px 30px rgba(228,87,46,.32);
      font-weight:900;
      letter-spacing:-.06em;
    }
    .brand-text{min-width:0}
    .brand-name{
      display:block;
      font-size:17px;
      font-weight:850;
      line-height:1.22;
      color:#fff;
    }
    .brand-sub{
      display:block;
      margin-top:4px;
      font-size:12px;
      color:rgba(255,255,255,.58);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .nav-label{
      margin:24px 8px 10px;
      font-size:12px;
      color:rgba(255,255,255,.45);
      letter-spacing:.16em;
    }
    .nav-menu{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:8px;
    }
    .nav-menu a{
      display:flex;
      align-items:center;
      gap:11px;
      padding:13px 14px;
      border-radius:16px;
      color:rgba(255,255,255,.76);
      border:1px solid transparent;
      font-weight:720;
    }
    .nav-menu a i{width:18px;text-align:center;color:rgba(255,255,255,.55)}
    .nav-menu a:hover{
      color:#fff;
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.10);
      transform:translateX(2px);
    }
    .nav-menu a.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(228,87,46,.98),rgba(245,184,75,.82));
      box-shadow:0 15px 35px rgba(228,87,46,.26);
    }
    .nav-menu a.active i{color:#fff}
    .side-card{
      margin-top:auto;
      padding:16px;
      border-radius:22px;
      background:linear-gradient(160deg,rgba(255,255,255,.10),rgba(255,255,255,.04));
      border:1px solid rgba(255,255,255,.10);
    }
    .side-card strong{
      display:block;
      color:#fff;
      font-size:15px;
      margin-bottom:6px;
    }
    .side-card p{
      margin:0 0 12px;
      color:rgba(255,255,255,.64);
      font-size:13px;
      line-height:1.65;
    }
    .side-mini-btn{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 12px;
      border-radius:999px;
      background:#fff;
      color:var(--night);
      font-weight:800;
      font-size:13px;
    }
    .side-mini-btn:hover{transform:translateY(-1px);box-shadow:0 10px 24px rgba(0,0,0,.18);color:var(--brand)}

    .mobile-header{
      display:none;
      position:sticky;
      top:0;
      z-index:999;
      background:rgba(255,250,240,.92);
      border-bottom:1px solid var(--border);
      backdrop-filter:blur(16px);
    }
    .mobile-header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      min-height:68px;
      width:min(var(--container), calc(100% - 28px));
      margin:auto;
    }
    .mobile-brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      line-height:1.2;
    }
    .mobile-toggle{
      width:44px;height:44px;
      border:1px solid var(--border);
      border-radius:14px;
      background:#fff;
      color:var(--ink);
      display:grid;
      place-items:center;
      box-shadow:var(--shadow-sm);
    }
    .mobile-menu{
      display:none;
      width:min(var(--container), calc(100% - 28px));
      margin:0 auto 12px;
      padding:10px;
      border:1px solid var(--border);
      border-radius:18px;
      background:#fff;
      box-shadow:var(--shadow-sm);
    }
    .mobile-menu.open{display:block}
    .mobile-menu a{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border-radius:12px;
      font-weight:800;
      color:var(--ink);
    }
    .mobile-menu a.active{background:var(--brand-soft);color:var(--brand)}

    .top-strip{
      background:rgba(255,255,255,.72);
      border-bottom:1px solid rgba(231,225,214,.75);
    }
    .top-strip .container{
      min-height:54px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .strip-left,.strip-right{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-size:14px;
    }
    .status-dot{
      width:9px;height:9px;border-radius:999px;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(31,138,112,.12);
    }
    .strip-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 11px;
      border:1px solid var(--border);
      border-radius:999px;
      background:#fff;
      color:var(--ink);
      font-weight:760;
      white-space:nowrap;
    }

    .section{
      padding:76px 0;
      position:relative;
    }
    .section.tight{padding:52px 0}
    .section.dark{
      background:var(--night);
      color:#fff;
      overflow:hidden;
    }
    .section.dark:before{
      content:"";
      position:absolute;
      inset:-20% -10% auto auto;
      width:42rem;height:42rem;
      border-radius:50%;
      background:radial-gradient(circle,rgba(228,87,46,.22),transparent 62%);
      pointer-events:none;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:12px;
      color:var(--brand);
      font-weight:860;
      font-size:14px;
    }
    .section-title{
      margin:0;
      font-size:clamp(26px,3vw,42px);
      line-height:1.22;
      letter-spacing:-.035em;
      font-weight:920;
    }
    .section-desc{
      margin:10px 0 0;
      max-width:720px;
      color:var(--muted);
      font-size:16px;
      line-height:1.9;
    }
    .dark .section-desc,.dark .muted{color:rgba(255,255,255,.68)}
    .section-action{
      flex:0 0 auto;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:12px 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:850;
      line-height:1;
      box-shadow:none;
      transition:transform var(--trans),box-shadow var(--trans),background var(--trans),border-color var(--trans),color var(--trans);
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      background:linear-gradient(135deg,var(--brand),#ff8a55);
      color:#fff;
      box-shadow:0 16px 34px rgba(228,87,46,.24);
    }
    .btn-primary:hover,.btn-primary:focus{color:#fff;box-shadow:0 20px 44px rgba(228,87,46,.32)}
    .btn-secondary{
      background:#fff;
      color:var(--ink);
      border-color:var(--border);
    }
    .btn-secondary:hover{color:var(--brand);border-color:rgba(228,87,46,.35);box-shadow:var(--shadow-sm)}
    .btn-dark{
      background:var(--night);
      color:#fff;
      border-color:rgba(255,255,255,.12);
    }
    .btn-dark:hover{color:#fff;background:#232532;box-shadow:var(--shadow-sm)}
    .btn-ghost{
      background:rgba(255,255,255,.08);
      color:#fff;
      border-color:rgba(255,255,255,.16);
    }
    .btn-ghost:hover{color:#fff;background:rgba(255,255,255,.13)}

    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:999px;
      background:var(--brand-soft);
      color:var(--brand-dark);
      font-size:13px;
      font-weight:820;
      line-height:1;
    }
    .badge.green{background:var(--accent-soft);color:var(--accent)}
    .badge.dark{background:rgba(255,255,255,.10);color:#fff;border:1px solid rgba(255,255,255,.10)}
    .muted{color:var(--muted)}

    .hero{
      padding:0 0 64px;
    }
    .hero-banner{
      margin-top:26px;
      border:1px solid var(--border);
      border-radius:0 0 var(--radius-xl) var(--radius-xl);
      background:
        linear-gradient(100deg,rgba(255,250,240,.96),rgba(255,255,255,.82) 50%,rgba(232,247,242,.92)),
        repeating-linear-gradient(135deg,rgba(228,87,46,.07) 0 1px,transparent 1px 18px);
      box-shadow:var(--shadow-md);
      overflow:hidden;
    }
    .hero-inner{
      padding:34px 34px 28px;
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:28px;
      align-items:end;
    }
    .hero-brand-row{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:14px;
    }
    .hero h1{
      margin:0;
      max-width:930px;
      font-size:clamp(30px,4.2vw,58px);
      line-height:1.12;
      letter-spacing:-.055em;
      font-weight:950;
    }
    .hero-lead{
      margin:16px 0 0;
      max-width:820px;
      color:#475467;
      font-size:18px;
      line-height:1.9;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
    }
    .hero-mini-panel{
      justify-self:stretch;
      border:1px solid rgba(23,25,35,.08);
      border-radius:26px;
      background:rgba(255,255,255,.72);
      padding:18px;
      box-shadow:var(--shadow-sm);
    }
    .mini-panel-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:900;
      margin-bottom:14px;
    }
    .progress-line{
      height:10px;
      border-radius:999px;
      background:#efe6da;
      overflow:hidden;
      margin:10px 0 16px;
    }
    .progress-line span{
      display:block;
      height:100%;
      width:72%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--accent),var(--gold),var(--brand));
    }
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:22px;
    }
    .stat{
      padding:15px 14px;
      border:1px solid rgba(23,25,35,.08);
      border-radius:20px;
      background:rgba(255,255,255,.72);
    }
    .stat b{
      display:block;
      font-size:24px;
      line-height:1.1;
      font-weight:950;
      letter-spacing:-.03em;
      color:var(--ink);
    }
    .stat span{
      display:block;
      margin-top:6px;
      color:var(--muted);
      font-size:13px;
      line-height:1.45;
    }

    .play-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:24px;
      align-items:stretch;
    }
    .play-card{
      background:var(--paper);
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      padding:28px;
      box-shadow:var(--shadow-sm);
    }
    .play-card.featured{
      background:
        linear-gradient(160deg,rgba(18,19,26,.94),rgba(28,29,39,.96)),
        radial-gradient(circle at 80% 10%,rgba(228,87,46,.25),transparent 38%);
      color:#fff;
      border-color:rgba(255,255,255,.1);
      overflow:hidden;
      position:relative;
    }
    .play-card.featured:after{
      content:"";
      position:absolute;
      right:-80px;bottom:-80px;
      width:220px;height:220px;
      border-radius:50%;
      background:rgba(245,184,75,.14);
    }
    .play-card h3{
      margin:0 0 10px;
      font-size:25px;
      line-height:1.3;
      font-weight:920;
      letter-spacing:-.035em;
    }
    .play-card p{
      margin:0;
      color:var(--muted);
    }
    .play-card.featured p{color:rgba(255,255,255,.70)}
    .step-list{
      margin:22px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:14px;
      position:relative;
      z-index:1;
    }
    .step-list li{
      display:grid;
      grid-template-columns:40px 1fr;
      gap:12px;
      align-items:start;
    }
    .step-no{
      width:40px;height:40px;border-radius:14px;
      display:grid;place-items:center;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.13);
      color:#fff;
      font-weight:900;
    }
    .step-list strong{display:block;color:#fff;margin-bottom:2px}
    .step-list span{display:block;color:rgba(255,255,255,.66);font-size:14px;line-height:1.6}
    .rule-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-top:20px;
    }
    .rule{
      padding:16px;
      border-radius:18px;
      background:var(--paper-2);
      border:1px solid var(--border);
    }
    .rule i{
      width:34px;height:34px;border-radius:12px;
      display:grid;place-items:center;
      margin-bottom:10px;
      color:var(--brand);
      background:var(--brand-soft);
    }
    .rule strong{display:block;margin-bottom:4px;font-weight:900}
    .rule span{display:block;color:var(--muted);font-size:14px;line-height:1.65}

    .hot-board{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
    .order-card{
      background:var(--paper);
      border:1px solid var(--border);
      border-radius:24px;
      padding:20px;
      box-shadow:var(--shadow-sm);
      transition:transform var(--trans),box-shadow var(--trans),border-color var(--trans);
    }
    .order-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:rgba(228,87,46,.28);
    }
    .order-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
    }
    .order-card h3{
      margin:0;
      font-size:20px;
      font-weight:920;
      letter-spacing:-.02em;
    }
    .order-card p{
      margin:0 0 16px;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
    }
    .avatars{
      display:flex;
      align-items:center;
      margin-right:auto;
    }
    .avatar{
      width:32px;height:32px;border-radius:999px;
      display:grid;place-items:center;
      margin-left:-8px;
      border:2px solid #fff;
      background:linear-gradient(135deg,#ffe3d4,#d9f4ec);
      color:var(--night);
      font-size:12px;
      font-weight:900;
    }
    .avatar:first-child{margin-left:0}
    .order-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-top:1px dashed var(--border);
      padding-top:14px;
    }
    .join-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--brand);
      font-weight:880;
    }
    .join-link:hover{gap:10px;color:var(--brand-dark)}

    .recommend-wrap{
      background:var(--paper);
      border:1px solid var(--border);
      border-radius:var(--radius-xl);
      padding:22px;
      box-shadow:var(--shadow-sm);
      overflow:hidden;
    }
    .rail{
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding:4px 2px 10px;
      scroll-snap-type:x mandatory;
    }
    .rail::-webkit-scrollbar{height:8px}
    .rail::-webkit-scrollbar-thumb{background:#d8d0c4;border-radius:999px}
    .rail-card{
      min-width:245px;
      scroll-snap-align:start;
      border-radius:24px;
      padding:18px;
      background:
        linear-gradient(160deg,rgba(18,19,26,.92),rgba(18,19,26,.74)),
        radial-gradient(circle at 85% 15%,rgba(228,87,46,.46),transparent 44%);
      color:#fff;
      min-height:210px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      border:1px solid rgba(255,255,255,.10);
      position:relative;
      overflow:hidden;
    }
    .rail-card:nth-child(2n){
      background:
        linear-gradient(160deg,rgba(31,138,112,.92),rgba(18,19,26,.86)),
        radial-gradient(circle at 20% 10%,rgba(245,184,75,.36),transparent 42%);
    }
    .rail-card:after{
      content:"";
      position:absolute;
      inset:auto -28px -36px auto;
      width:130px;height:130px;border-radius:38px;
      transform:rotate(18deg);
      background:rgba(255,255,255,.08);
    }
    .rail-card strong{
      position:relative;
      z-index:1;
      font-size:21px;
      line-height:1.3;
      font-weight:930;
    }
    .rail-card span{
      position:relative;
      z-index:1;
      color:rgba(255,255,255,.70);
      font-size:14px;
      line-height:1.65;
    }

    .update-panel{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:22px;
      align-items:start;
    }
    .kpi-card{
      padding:28px;
      border-radius:var(--radius-lg);
      border:1px solid var(--border);
      background:linear-gradient(180deg,#fff,var(--paper-2));
      box-shadow:var(--shadow-sm);
    }
    .kpi-big{
      display:block;
      font-size:54px;
      line-height:1;
      font-weight:950;
      letter-spacing:-.08em;
      color:var(--brand);
      margin-bottom:8px;
    }
    .kpi-card p{margin:0;color:var(--muted)}
    .table-like{
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:#fff;
      box-shadow:var(--shadow-sm);
    }
    .update-row{
      display:grid;
      grid-template-columns:140px 1fr 110px;
      gap:14px;
      padding:17px 18px;
      align-items:center;
      border-bottom:1px solid var(--border);
    }
    .update-row:last-child{border-bottom:none}
    .update-row time{color:var(--weak);font-size:14px;font-weight:750}
    .update-row strong{font-weight:900}
    .update-row span{text-align:right;color:var(--accent);font-weight:850;font-size:14px}

    .entry-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .entry{
      padding:20px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-sm);
      min-height:150px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .entry:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:rgba(31,138,112,.26)}
    .entry i{
      width:42px;height:42px;border-radius:16px;
      display:grid;place-items:center;
      background:var(--accent-soft);
      color:var(--accent);
      margin-bottom:18px;
      font-size:18px;
    }
    .entry strong{font-size:18px;font-weight:920}
    .entry span{display:block;margin-top:6px;color:var(--muted);font-size:14px;line-height:1.55}

    .news-layout{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:22px;
      align-items:start;
    }
    .news-list,.editor-pick{
      background:#fff;
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-sm);
      overflow:hidden;
    }
    .news-list ul{
      list-style:none;
      margin:0;
      padding:0;
    }
    .news-list li{
      display:grid;
      grid-template-columns:104px 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px 20px;
      border-bottom:1px solid var(--border);
    }
    .news-list li:last-child{border-bottom:none}
    .news-date{
      color:var(--weak);
      font-weight:760;
      font-size:14px;
    }
    .news-list a{
      font-weight:900;
      color:var(--ink);
      line-height:1.55;
    }
    .news-list a:hover{color:var(--brand)}
    .news-tag{
      padding:6px 10px;
      border-radius:999px;
      color:var(--accent);
      background:var(--accent-soft);
      font-size:12px;
      font-weight:850;
      white-space:nowrap;
    }
    .editor-pick{padding:22px}
    .editor-pick h3{
      margin:0 0 14px;
      font-size:22px;
      font-weight:930;
      letter-spacing:-.03em;
    }
    .pick-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .pick-list li{
      padding:14px;
      border-radius:18px;
      background:var(--paper-2);
      border:1px solid var(--border);
    }
    .pick-list strong{display:block;margin-bottom:5px;font-weight:900}
    .pick-list span{display:block;color:var(--muted);font-size:14px;line-height:1.6}

    .timeline{
      position:relative;
      display:grid;
      gap:16px;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:21px;
      top:18px;
      bottom:18px;
      width:2px;
      background:linear-gradient(var(--brand),var(--accent));
      opacity:.35;
    }
    .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:44px 1fr;
      gap:16px;
      align-items:start;
    }
    .timeline-dot{
      width:44px;height:44px;border-radius:16px;
      display:grid;place-items:center;
      background:#fff;
      border:1px solid var(--border);
      color:var(--brand);
      box-shadow:var(--shadow-sm);
      z-index:1;
    }
    .timeline-card{
      padding:18px 20px;
      border-radius:22px;
      border:1px solid var(--border);
      background:#fff;
      box-shadow:var(--shadow-sm);
    }
    .timeline-card strong{display:block;font-size:18px;font-weight:920;margin-bottom:4px}
    .timeline-card span{display:block;color:var(--muted);line-height:1.7}

    .faq-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .faq-item{
      background:#fff;
      border:1px solid var(--border);
      border-radius:24px;
      padding:22px;
      box-shadow:var(--shadow-sm);
    }
    .faq-item h3{
      margin:0 0 9px;
      font-size:19px;
      font-weight:930;
      line-height:1.45;
    }
    .faq-item p{
      margin:0;
      color:var(--muted);
      line-height:1.85;
    }

    .cta-panel{
      display:grid;
      grid-template-columns:1fr 420px;
      gap:26px;
      align-items:stretch;
      padding:30px;
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 12% 20%,rgba(245,184,75,.18),transparent 28rem),
        linear-gradient(145deg,#171923,#252633);
      color:#fff;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow-lg);
      position:relative;
      overflow:hidden;
    }
    .cta-panel:after{
      content:"";
      position:absolute;
      right:-120px;top:-120px;
      width:320px;height:320px;border-radius:50%;
      background:rgba(228,87,46,.22);
      pointer-events:none;
    }
    .cta-copy{position:relative;z-index:1}
    .cta-copy h2{
      margin:0;
      font-size:clamp(28px,3.4vw,46px);
      line-height:1.18;
      font-weight:950;
      letter-spacing:-.05em;
    }
    .cta-copy p{
      margin:14px 0 22px;
      max-width:680px;
      color:rgba(255,255,255,.72);
      font-size:17px;
      line-height:1.9;
    }
    .price-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:22px;
    }
    .price-chip{
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .price-chip b{display:block;font-size:22px;line-height:1.1;color:#fff}
    .price-chip span{display:block;margin-top:6px;color:rgba(255,255,255,.62);font-size:13px;line-height:1.5}
    .lead-form{
      position:relative;
      z-index:1;
      background:#fff;
      color:var(--ink);
      border-radius:28px;
      padding:22px;
      box-shadow:0 22px 65px rgba(0,0,0,.25);
    }
    .lead-form h3{
      margin:0 0 6px;
      font-size:22px;
      font-weight:930;
    }
    .lead-form p{margin:0 0 16px;color:var(--muted);font-size:14px;line-height:1.65}
    .form-field{margin-bottom:12px}
    .form-field label{
      display:block;
      margin-bottom:6px;
      font-size:13px;
      font-weight:850;
      color:#344054;
    }
    .form-field input,.form-field select{
      width:100%;
      height:46px;
      border:1px solid var(--border);
      border-radius:14px;
      background:#fff;
      padding:0 13px;
      color:var(--ink);
      box-shadow:none;
      transition:border-color var(--trans),box-shadow var(--trans);
    }
    .form-field input:focus,.form-field select:focus{
      border-color:rgba(228,87,46,.55);
      box-shadow:0 0 0 4px rgba(228,87,46,.12);
      outline:none;
    }
    .form-note{
      margin-top:10px;
      color:var(--weak);
      font-size:12px;
      line-height:1.55;
    }
    .form-message{
      display:none;
      margin-top:12px;
      padding:10px 12px;
      border-radius:14px;
      background:var(--accent-soft);
      color:var(--accent);
      font-weight:800;
      font-size:13px;
    }
    .form-message.show{display:block}

    .site-footer{
      margin-left:var(--sidebar);
      background:#0f1017;
      color:#fff;
      padding:42px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      gap:12px;
      align-items:center;
      margin-bottom:14px;
    }
    .footer-brand strong{font-size:18px;font-weight:930}
    .footer-text{
      max-width:680px;
      color:rgba(255,255,255,.62);
      margin:0;
      line-height:1.85;
    }
    .footer-links{
      display:flex;
      justify-content:flex-end;
      gap:10px;
      flex-wrap:wrap;
    }
    .footer-links a{
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.09);
      color:rgba(255,255,255,.72);
      font-weight:760;
      font-size:14px;
    }
    .footer-links a:hover{color:#fff;background:rgba(255,255,255,.11)}
    .copyright{
      margin-top:28px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.10);
      color:rgba(255,255,255,.45);
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }

    @media (max-width:1180px){
      :root{--sidebar:238px}
      .side-nav{padding:20px 14px}
      .brand-name{font-size:15px}
      .entry-grid{grid-template-columns:repeat(2,1fr)}
      .cta-panel{grid-template-columns:1fr}
      .lead-form{max-width:560px}
    }

    @media (max-width:1024px){
      .side-nav{display:none}
      .mobile-header{display:block}
      .content-area,.site-footer{margin-left:0}
      .top-strip .container{min-height:50px}
      .hero-inner{grid-template-columns:1fr}
      .hero-mini-panel{max-width:none}
      .play-grid,.update-panel,.news-layout{grid-template-columns:1fr}
      .section{padding:62px 0}
    }

    @media (max-width:768px){
      .container{width:calc(100% - 28px)}
      .top-strip .container{
        align-items:flex-start;
        padding:12px 0;
        flex-direction:column;
        gap:8px;
      }
      .strip-right{flex-wrap:wrap}
      .hero{padding-bottom:48px}
      .hero-banner{margin-top:16px;border-radius:0 0 28px 28px}
      .hero-inner{padding:26px 18px 22px}
      .hero-lead{font-size:16px}
      .hero-stats,.rule-grid,.hot-board,.faq-grid,.price-row{
        grid-template-columns:1fr;
      }
      .section-head{
        display:block;
      }
      .section-action{justify-content:flex-start;margin-top:18px}
      .news-list li{
        grid-template-columns:1fr;
        gap:6px;
      }
      .news-tag{justify-self:start}
      .update-row{
        grid-template-columns:1fr;
        gap:4px;
      }
      .update-row span{text-align:left}
      .entry-grid{grid-template-columns:1fr}
      .cta-panel{padding:22px;border-radius:28px}
      .lead-form{padding:18px;border-radius:22px}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }

    @media (max-width:520px){
      body{line-height:1.68}
      .mobile-header-inner{min-height:62px}
      .brand-mark{width:40px;height:40px;border-radius:14px}
      .mobile-brand span{font-size:14px}
      .hero-actions .btn,.cta-copy .btn{width:100%}
      .btn{min-height:44px}
      .section{padding:50px 0}
      .section.tight{padding:42px 0}
      .play-card,.kpi-card,.editor-pick,.faq-item{padding:20px}
      .rail-card{min-width:220px}
      .copyright{display:block}
      .copyright span{display:block;margin-top:6px}
    }
