/* roulang page: index */
:root{
      --bg:#f5f7f6;
      --surface:#ffffff;
      --surface-2:#f0f4f1;
      --line:#d9e4dc;
      --text:#132016;
      --muted:#5e6f64;
      --soft:#7f8f85;
      --green:#28a745;
      --green-deep:#1f8a39;
      --green-soft:#e6f6eb;
      --green-soft-2:#d3f0da;
      --warning:#e39c35;
      --shadow:0 16px 40px rgba(19,32,22,.08);
      --shadow-sm:0 10px 24px rgba(19,32,22,.06);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1180px;
      --gap:24px;
      --gap-sm:14px;
      --transition:220ms cubic-bezier(.2,.8,.2,1);
      --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", Arial, sans-serif;
    }

    *,*::before,*::after{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 15% -10%, rgba(40,167,69,.10), transparent 42%),
        radial-gradient(900px 500px at 92% 8%, rgba(40,167,69,.07), transparent 38%),
        linear-gradient(180deg, #fbfcfb 0%, var(--bg) 100%);
      line-height:1.7;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }

    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(40,167,69,.18)}
    :focus-visible{outline:3px solid rgba(40,167,69,.28); outline-offset:2px}

    .site-wrap{
      min-height:100vh;
      position:relative;
      overflow:hidden;
    }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .section{
      padding:72px 0;
      position:relative;
    }

    .section-tight{
      padding:56px 0;
    }

    .section-head{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      align-items:flex-end;
      gap:16px;
      margin-bottom:26px;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--green-deep);
      font-weight:700;
      font-size:14px;
      letter-spacing:.02em;
      background:var(--green-soft);
      border:1px solid rgba(40,167,69,.12);
      padding:8px 12px;
      border-radius:999px;
      box-shadow:0 8px 18px rgba(40,167,69,.06);
    }

    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 4px rgba(40,167,69,.14);
    }

    .section h2{
      margin:10px 0 0;
      font-size:clamp(26px, 3vw, 38px);
      line-height:1.18;
      letter-spacing:-.02em;
    }

    .section .desc{
      margin:0;
      max-width:720px;
      color:var(--muted);
      font-size:15px;
    }

    .site-header{
      position:sticky;
      top:14px;
      z-index:1000;
      padding:14px 0 0;
      pointer-events:none;
    }

    .dock{
      pointer-events:auto;
      display:flex;
      align-items:center;
      gap:16px;
      padding:14px 16px;
      width:min(var(--container), calc(100% - 20px));
      margin:0 auto;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(217,228,220,.9);
      border-radius:999px;
      box-shadow:var(--shadow);
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
    }

    .brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
      font-weight:800;
      letter-spacing:-.02em;
      white-space:nowrap;
    }

    .brand-mark{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg, var(--green) 0%, #63c77a 100%);
      box-shadow:0 10px 18px rgba(40,167,69,.24);
      font-size:16px;
      font-weight:900;
    }

    .dock-nav{
      display:flex;
      align-items:center;
      gap:8px;
      margin-left:4px;
      flex:1 1 auto;
      min-width:0;
      overflow:auto;
      scrollbar-width:none;
    }
    .dock-nav::-webkit-scrollbar{display:none}

    .nav-link{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      font-weight:600;
      transition:background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
      white-space:nowrap;
    }
    .nav-link:hover{
      color:var(--text);
      background:#f4f7f5;
      transform:translateY(-1px);
    }
    .nav-link.active{
      color:var(--green-deep);
      background:var(--green-soft);
      box-shadow:inset 0 0 0 1px rgba(40,167,69,.12);
    }

    .dock-search{
      display:flex;
      align-items:center;
      gap:8px;
      flex:0 0 320px;
      max-width:320px;
      min-width:220px;
      margin-left:auto;
    }

    .dock-search input{
      width:100%;
      height:44px;
      border:1px solid var(--line);
      border-radius:999px;
      padding:0 16px;
      background:#fff;
      color:var(--text);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
      transition:border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    }
    .dock-search input::placeholder{color:#8a9890}
    .dock-search input:focus{
      border-color:rgba(40,167,69,.55);
      box-shadow:0 0 0 4px rgba(40,167,69,.10);
    }

    .dock-search button,
    .btn{
      height:44px;
      border:0;
      border-radius:999px;
      padding:0 18px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      cursor:pointer;
      transition:transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
      font-weight:700;
      white-space:nowrap;
    }

    .dock-search button{
      color:#fff;
      background:linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
      box-shadow:0 10px 18px rgba(40,167,69,.22);
      flex:0 0 auto;
    }
    .dock-search button:hover,
    .btn-primary:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 22px rgba(40,167,69,.24);
      background:linear-gradient(135deg, #33b04f 0%, #177733 100%);
    }

    .dock-cta{
      flex:0 0 auto;
      height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 18px;
      border-radius:999px;
      color:var(--green-deep);
      border:1px solid rgba(40,167,69,.22);
      background:rgba(230,246,235,.58);
      font-weight:700;
      transition:transform var(--transition), background var(--transition), border-color var(--transition);
    }
    .dock-cta:hover{
      transform:translateY(-1px);
      background:var(--green-soft);
      border-color:rgba(40,167,69,.34);
    }

    .hero{
      padding:34px 0 26px;
    }

    .hero-card{
      position:relative;
      padding:36px;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,251,249,.98) 100%);
      border:1px solid rgba(217,228,220,.85);
      box-shadow:var(--shadow);
      overflow:hidden;
    }

    .hero-card::before,
    .hero-card::after{
      content:"";
      position:absolute;
      border-radius:50%;
      filter:blur(24px);
      pointer-events:none;
      opacity:.7;
    }
    .hero-card::before{
      width:320px;
      height:320px;
      right:-110px;
      top:-130px;
      background:rgba(40,167,69,.10);
    }
    .hero-card::after{
      width:220px;
      height:220px;
      left:-90px;
      bottom:-120px;
      background:rgba(99,199,122,.08);
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:28px;
      align-items:center;
      position:relative;
      z-index:1;
    }

    .hero-copy{
      max-width:620px;
    }

    .hero-copy h1{
      margin:16px 0 16px;
      font-size:clamp(38px, 5.2vw, 68px);
      line-height:1.05;
      letter-spacing:-.04em;
    }

    .hero-copy p{
      margin:0;
      max-width:620px;
      color:var(--muted);
      font-size:16px;
      line-height:1.85;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:24px 0 20px;
    }

    .btn{
      border:1px solid transparent;
      box-shadow:var(--shadow-sm);
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    }
    .btn-ghost{
      color:var(--green-deep);
      background:#fff;
      border-color:rgba(40,167,69,.18);
    }
    .btn-ghost:hover{
      transform:translateY(-1px);
      border-color:rgba(40,167,69,.38);
      box-shadow:0 14px 22px rgba(19,32,22,.08);
    }

    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
    }

    .point{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(217,228,220,.9);
      color:var(--muted);
      font-size:14px;
      box-shadow:0 10px 20px rgba(19,32,22,.04);
    }
    .point strong{
      color:var(--text);
      font-size:15px;
    }

    .hero-stage{
      position:relative;
      min-height:460px;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .stage-stack{
      position:relative;
      width:min(100%, 440px);
      aspect-ratio: .9 / 1;
    }

    .stage-card{
      position:absolute;
      inset:auto;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(217,228,220,.95);
      box-shadow:0 18px 34px rgba(19,32,22,.08);
      overflow:hidden;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .stage-card:hover{
      transform:translateY(-3px);
      box-shadow:0 24px 44px rgba(19,32,22,.11);
      border-color:rgba(40,167,69,.32);
    }

    .stage-card.primary{
      width:100%;
      height:100%;
      padding:22px;
      top:0;
      left:0;
      background:
        linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
    }
    .stage-card.secondary{
      width:72%;
      height:31%;
      left:-10px;
      top:22px;
      transform:rotate(-6deg);
      background:linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
    }
    .stage-card.tertiary{
      width:62%;
      height:28%;
      right:-6px;
      bottom:26px;
      transform:rotate(7deg);
      background:linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
    }

    .stage-topline{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
    }

    .live-tag,
    .mini-tag,
    .status-tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:12px;
      font-weight:800;
      letter-spacing:.02em;
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .live-tag{
      color:#12813a;
      background:var(--green-soft);
      border:1px solid rgba(40,167,69,.12);
    }
    .mini-tag{
      color:#53655b;
      background:#f3f6f4;
      border:1px solid #e6ebe8;
    }
    .status-tag{
      color:#146d31;
      background:rgba(40,167,69,.08);
      border:1px solid rgba(40,167,69,.14);
    }

    .stage-body{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
    }

    .panel{
      border-radius:20px;
      border:1px solid rgba(217,228,220,.9);
      background:#fff;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
    }

    .panel.soft{
      background:linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
    }

    .panel-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      padding:14px 16px 0;
      color:var(--muted);
      font-size:13px;
    }

    .panel-title{
      margin:0;
      padding:4px 16px 0;
      font-size:18px;
      line-height:1.3;
    }

    .panel-text{
      margin:0;
      padding:8px 16px 16px;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }

    .panel-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
      padding:16px;
    }

    .mini-box{
      min-height:92px;
      border-radius:18px;
      border:1px solid rgba(217,228,220,.95);
      background:linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
      padding:14px;
      box-shadow:0 8px 18px rgba(19,32,22,.05);
    }

    .mini-box strong{
      display:block;
      font-size:18px;
      margin-bottom:8px;
      letter-spacing:-.02em;
    }
    .mini-box span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }

    .status-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      padding:0 16px 16px;
    }

    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 11px;
      border-radius:999px;
      border:1px solid rgba(217,228,220,.95);
      background:#fff;
      color:var(--muted);
      font-size:13px;
      font-weight:600;
      transition:transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
    }
    .chip:hover{
      transform:translateY(-1px);
      border-color:rgba(40,167,69,.24);
      color:var(--green-deep);
      background:var(--green-soft);
    }

    .chip.active{
      color:var(--green-deep);
      background:rgba(40,167,69,.10);
      border-color:rgba(40,167,69,.20);
    }

    .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
      color:var(--soft);
      font-size:13px;
    }

    .meta-line span{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(217,228,220,.88);
    }

    .step-grid,
    .preview-grid,
    .progress-grid,
    .topic-grid{
      display:grid;
      gap:18px;
    }

    .step-grid{
      grid-template-columns:repeat(4, minmax(0, 1fr));
    }
    .preview-grid{
      grid-template-columns:repeat(4, minmax(0, 1fr));
    }
    .progress-grid{
      grid-template-columns: 1fr 1fr;
    }
    .topic-grid{
      grid-template-columns: 1.1fr .9fr;
    }

    .card{
      background:var(--surface);
      border:1px solid rgba(217,228,220,.95);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-sm);
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow);
      border-color:rgba(40,167,69,.30);
    }

    .step-card{
      padding:22px;
      min-height:210px;
      position:relative;
    }

    .step-num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px;
      height:42px;
      border-radius:14px;
      font-weight:800;
      color:var(--green-deep);
      background:var(--green-soft);
      border:1px solid rgba(40,167,69,.14);
      margin-bottom:14px;
    }

    .step-card h3,
    .preview-card h3,
    .topic-card h3,
    .news-head h3,
    .faq-card summary{
      margin:0;
      font-size:18px;
      line-height:1.35;
      letter-spacing:-.01em;
    }

    .step-card p,
    .preview-card p,
    .topic-card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }

    .step-foot{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }

    .preview-card{
      padding:18px;
      min-height:200px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }

    .preview-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }

    .preview-icon{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, rgba(40,167,69,.12), rgba(99,199,122,.18));
      color:var(--green-deep);
      border:1px solid rgba(40,167,69,.12);
      font-weight:900;
      flex:0 0 auto;
    }

    .preview-card .small{
      color:var(--soft);
      font-size:13px;
      margin-top:8px;
    }

    .preview-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }

    .progress-card{
      padding:22px;
    }

    .progress-card .bar{
      height:10px;
      border-radius:999px;
      background:#edf2ee;
      overflow:hidden;
      margin:12px 0 14px;
      border:1px solid #e1e8e3;
    }

    .progress-card .fill{
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--green) 0%, #68c77f 100%);
      box-shadow:0 8px 16px rgba(40,167,69,.22);
    }

    .progress-list{
      list-style:none;
      padding:0;
      margin:16px 0 0;
      display:grid;
      gap:10px;
    }

    .progress-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }

    .check{
      flex:0 0 auto;
      width:20px;
      height:20px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      background:var(--green);
      font-size:12px;
      margin-top:2px;
      box-shadow:0 8px 16px rgba(40,167,69,.16);
    }

    .progress-stats{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-bottom:16px;
    }

    .metric{
      border-radius:18px;
      border:1px solid rgba(217,228,220,.95);
      background:linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
      padding:16px;
      min-height:98px;
    }

    .metric strong{
      display:block;
      font-size:26px;
      line-height:1;
      letter-spacing:-.04em;
      margin-bottom:8px;
    }

    .metric span{
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }

    .topic-card{
      padding:24px;
      min-height:100%;
    }

    .topic-main{
      display:flex;
      gap:16px;
      align-items:flex-start;
      margin-top:14px;
    }

    .topic-badge{
      flex:0 0 auto;
      width:52px;
      height:52px;
      border-radius:18px;
      display:grid;
      place-items:center;
      font-size:20px;
      color:var(--green-deep);
      background:var(--green-soft);
      border:1px solid rgba(40,167,69,.16);
    }

    .topic-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }

    .topic-mini-grid{
      display:grid;
      gap:14px;
    }

    .topic-mini{
      padding:18px;
      border-radius:20px;
      border:1px solid rgba(217,228,220,.95);
      background:#fff;
      box-shadow:0 10px 20px rgba(19,32,22,.04);
    }

    .topic-mini .row{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      margin-bottom:8px;
    }

    .topic-mini .row strong{
      font-size:16px;
      letter-spacing:-.01em;
    }

    .topic-mini .row span{
      color:var(--green-deep);
      font-size:12px;
      font-weight:800;
      padding:6px 10px;
      border-radius:999px;
      background:var(--green-soft);
      border:1px solid rgba(40,167,69,.12);
      white-space:nowrap;
    }

    .news-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
    }

    .news-list-card,
    .aside-card,
    .faq-card,
    .cta-card{
      border-radius:var(--radius-lg);
      border:1px solid rgba(217,228,220,.95);
      background:linear-gradient(180deg, #fff 0%, #f9fbfa 100%);
      box-shadow:var(--shadow-sm);
      overflow:hidden;
    }

    .news-list-card{
      padding:24px;
    }

    .news-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }

    .news-list li{
      border:1px solid rgba(217,228,220,.95);
      border-radius:18px;
      background:#fff;
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .news-list li:hover{
      transform:translateY(-2px);
      border-color:rgba(40,167,69,.24);
      box-shadow:0 12px 24px rgba(19,32,22,.05);
    }

    .news-list a{
      display:flex;
      justify-content:space-between;
      gap:14px;
      padding:16px 18px;
      align-items:flex-start;
    }

    .news-list .title{
      display:block;
      font-size:16px;
      line-height:1.55;
      font-weight:700;
      margin-bottom:6px;
      color:var(--text);
    }

    .news-list .summary{
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }

    .news-time{
      flex:0 0 auto;
      color:var(--soft);
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      background:#f5f8f6;
      border:1px solid #e4ebe6;
      white-space:nowrap;
      margin-top:2px;
    }

    .aside-card{
      padding:24px;
      display:grid;
      gap:14px;
      align-content:start;
    }

    .aside-box{
      border-radius:20px;
      border:1px solid rgba(217,228,220,.95);
      background:#fff;
      padding:18px;
    }

    .aside-box strong{
      display:block;
      margin-bottom:8px;
      font-size:16px;
    }

    .aside-box p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }

    .aside-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:10px;
    }

    .faq-grid{
      display:grid;
      gap:12px;
      margin-top:18px;
    }

    .faq-card{
      padding:0;
    }

    .faq-card details{
      border-bottom:1px solid rgba(217,228,220,.85);
    }
    .faq-card details:last-child{border-bottom:0}
    .faq-card summary{
      list-style:none;
      cursor:pointer;
      padding:18px 22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .faq-card summary::-webkit-details-marker{display:none}
    .faq-card summary::after{
      content:"+";
      flex:0 0 auto;
      width:28px;
      height:28px;
      display:grid;
      place-items:center;
      border-radius:999px;
      background:var(--green-soft);
      color:var(--green-deep);
      font-size:18px;
      font-weight:800;
      transition:transform var(--transition), background var(--transition), color var(--transition);
    }
    .faq-card details[open] summary{
      color:var(--green-deep);
    }
    .faq-card details[open] summary::after{
      content:"−";
      background:rgba(40,167,69,.12);
      color:var(--green-deep);
    }
    .faq-answer{
      padding:0 22px 18px;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      margin-top:-2px;
    }

    .cta-band{
      padding:18px 0 92px;
    }

    .cta-card{
      padding:30px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      background:
        linear-gradient(135deg, rgba(40,167,69,.08) 0%, rgba(255,255,255,.98) 56%, rgba(99,199,122,.06) 100%);
    }

    .cta-copy{
      max-width:700px;
    }
    .cta-copy h2{
      margin:0 0 10px;
    }
    .cta-copy p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }

    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      flex:0 0 auto;
      justify-content:flex-end;
    }

    .footer{
      border-top:1px solid rgba(217,228,220,.9);
      background:rgba(255,255,255,.78);
      backdrop-filter:blur(8px);
      -webkit-backdrop-filter:blur(8px);
      padding:30px 0 42px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:20px;
      align-items:start;
    }

    .footer-brand{
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .footer-brand p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      max-width:560px;
    }

    .footer-links{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:14px;
    }

    .footer-box{
      border-radius:20px;
      border:1px solid rgba(217,228,220,.9);
      background:#fff;
      padding:18px;
    }

    .footer-box h3{
      margin:0 0 12px;
      font-size:15px;
    }

    .footer-box a{
      display:inline-flex;
      width:fit-content;
      color:var(--muted);
      padding:8px 0;
      transition:color var(--transition), transform var(--transition);
      font-size:14px;
    }
    .footer-box a:hover{
      color:var(--green-deep);
      transform:translateX(2px);
    }

    .copyright{
      margin-top:18px;
      color:var(--soft);
      font-size:13px;
    }

    .subtle-rule{
      height:1px;
      background:linear-gradient(90deg, transparent 0%, rgba(217,228,220,.95) 16%, rgba(217,228,220,.95) 84%, transparent 100%);
      margin:20px 0 0;
    }

    .label-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
    }

    .label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(217,228,220,.95);
      color:var(--muted);
      font-size:13px;
      font-weight:600;
    }

    .label strong{
      color:var(--green-deep);
    }

    .tiny-note{
      color:var(--soft);
      font-size:13px;
      margin-top:10px;
    }

    .sub-title{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--green-deep);
      font-weight:800;
      font-size:14px;
      margin-bottom:10px;
      letter-spacing:.02em;
    }

    .sub-title::before{
      content:"";
      width:10px;
      height:10px;
      border-radius:999px;
      background:var(--green);
      box-shadow:0 0 0 4px rgba(40,167,69,.14);
    }

    .grid-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:16px;
      margin-bottom:16px;
    }

    .grid-head .mini-desc{
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
      max-width:580px;
    }

    .corner-badge{
      position:absolute;
      top:18px;
      right:18px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.92);
      color:var(--green-deep);
      border:1px solid rgba(40,167,69,.14);
      font-size:12px;
      font-weight:800;
      box-shadow:0 8px 16px rgba(19,32,22,.05);
    }

    .timeline{
      display:grid;
      gap:12px;
      margin-top:10px;
    }

    .timeline-item{
      display:grid;
      grid-template-columns:92px 1fr;
      gap:12px;
      align-items:start;
      padding:14px 0;
      border-top:1px solid rgba(217,228,220,.8);
    }

    .timeline-item:first-child{border-top:0;padding-top:0}
    .timeline-item .time{
      color:var(--green-deep);
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .timeline-item .content{
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }

    @media (max-width: 1180px){
      .hero-grid,
      .news-grid,
      .topic-grid,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .hero-stage{
        min-height:420px;
      }
      .dock{
        border-radius:28px;
      }
      .dock-search{
        flex-basis:280px;
      }
      .step-grid,
      .preview-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }
      .progress-grid{
        grid-template-columns:1fr;
      }
    }

    @media (max-width: 920px){
      .dock{
        flex-wrap:wrap;
        border-radius:24px;
      }
      .dock-search{
        order:4;
        flex:1 1 100%;
        max-width:none;
        margin-left:0;
      }
      .dock-cta{
        margin-left:auto;
      }
      .hero-card{
        padding:24px;
      }
      .section{
        padding:60px 0;
      }
      .cta-card{
        flex-direction:column;
        align-items:flex-start;
      }
      .cta-actions{
        justify-content:flex-start;
      }
      .footer-links{
        grid-template-columns:1fr;
      }
    }

    @media (max-width: 680px){
      .site-header{
        top:8px;
        padding-top:8px;
      }
      .dock{
        padding:12px;
        gap:10px;
        border-radius:22px;
      }
      .brand{
        width:100%;
        justify-content:flex-start;
      }
      .dock-nav{
        width:100%;
        order:3;
      }
      .dock-search{
        order:4;
        min-width:0;
      }
      .dock-search input{
        height:42px;
      }
      .dock-search button,
      .dock-cta,
      .btn{
        height:42px;
      }
      .hero-copy h1{
        font-size:clamp(32px, 10vw, 46px);
      }
      .hero-stage{
        min-height:360px;
      }
      .step-grid,
      .preview-grid,
      .topic-grid{
        grid-template-columns:1fr;
      }
      .progress-stats{
        grid-template-columns:1fr;
      }
      .news-list a{
        flex-direction:column;
      }
      .timeline-item{
        grid-template-columns:1fr;
        gap:6px;
      }
      .section{
        padding:50px 0;
      }
      .hero-card{
        padding:18px;
      }
      .cta-card,
      .news-list-card,
      .aside-card,
      .faq-card{
        border-radius:20px;
      }
    }

    @media (max-width: 420px){
      .container{
        width:min(var(--container), calc(100% - 22px));
      }
      .hero-actions,
      .cta-actions{
        width:100%;
      }
      .btn{
        width:100%;
      }
      .point{
        width:100%;
        justify-content:space-between;
      }
      .step-card,
      .preview-card,
      .progress-card,
      .topic-card,
      .news-list-card,
      .aside-card,
      .cta-card{
        padding:18px;
      }
      .faq-card summary,
      .faq-answer{
        padding-left:18px;
        padding-right:18px;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#f5f8f2;
      --bg-soft:#edf4e8;
      --panel:#ffffff;
      --panel-2:#f8fbf6;
      --text:#18231b;
      --muted:#5f6e63;
      --line:#dce6d8;
      --line-strong:#b9cbb6;
      --green:#2bb24c;
      --green-2:#1f9340;
      --green-soft:#e7f7ec;
      --green-deep:#177233;
      --warn:#d8a53d;
      --shadow:0 22px 60px rgba(22, 40, 27, .08);
      --shadow-soft:0 14px 32px rgba(22, 40, 27, .06);
      --radius-xl:30px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:12px;
      --container:1180px;
      --trans:.22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      color:var(--text);
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      line-height:1.65;
      background:
        radial-gradient(circle at 12% 8%, rgba(43,178,76,.08), transparent 22%),
        radial-gradient(circle at 88% 0%, rgba(43,178,76,.06), transparent 18%),
        linear-gradient(180deg, #f8fbf6 0%, #f5f8f2 42%, #f6f8f4 100%);
      overflow-x:hidden;
    }

    ::selection{background:rgba(43,178,76,.18); color:var(--text)}
    a{color:inherit; text-decoration:none}
    img{max-width:100%; display:block}
    button,input,select,textarea{font:inherit}
    button{
      cursor:pointer;
      border:0;
      background:none;
      padding:0;
    }
    input,select{
      border:1px solid var(--line);
      outline:none;
      background:#fff;
      color:var(--text);
      transition:border-color var(--trans), box-shadow var(--trans), transform var(--trans), background var(--trans);
    }
    input:focus,select:focus,button:focus-visible,a:focus-visible{
      box-shadow:0 0 0 4px rgba(43,178,76,.16);
      border-color:rgba(43,178,76,.55);
      outline:none;
    }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:14px;
      z-index:80;
      padding:10px 0 0;
    }
    .dock{
      display:flex;
      align-items:center;
      gap:14px;
      padding:12px 14px;
      border:1px solid rgba(138,161,134,.26);
      background:rgba(255,255,255,.9);
      border-radius:999px;
      box-shadow:var(--shadow);
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:11px;
      font-weight:800;
      color:var(--text);
      letter-spacing:.01em;
      white-space:nowrap;
      flex:0 0 auto;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg, var(--green), #66d47e);
      box-shadow:0 10px 24px rgba(43,178,76,.26);
      font-size:1rem;
      flex:0 0 auto;
    }
    .dock-nav{
      display:flex;
      align-items:center;
      gap:6px;
      justify-content:center;
      flex:1 1 auto;
      min-width:0;
    }
    .nav-link{
      padding:10px 14px;
      border-radius:999px;
      color:var(--muted);
      font-weight:700;
      transition:background var(--trans), color var(--trans), transform var(--trans), box-shadow var(--trans);
      white-space:nowrap;
    }
    .nav-link:hover{
      color:var(--text);
      background:#f2f6f0;
      transform:translateY(-1px);
    }
    .nav-link.active{
      color:var(--green-deep);
      background:var(--green-soft);
      box-shadow:inset 0 0 0 1px rgba(43,178,76,.14);
    }
    .dock-search{
      display:flex;
      align-items:center;
      gap:8px;
      min-width:290px;
      flex:0 1 330px;
    }
    .dock-search input{
      width:100%;
      min-width:0;
      height:42px;
      border-radius:999px;
      padding:0 14px;
      background:#f7faf6;
    }
    .dock-search button,
    .dock-cta,
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      font-weight:700;
      transition:transform var(--trans), background var(--trans), color var(--trans), border-color var(--trans), box-shadow var(--trans), opacity var(--trans);
      white-space:nowrap;
    }
    .dock-search button,
    .dock-cta,
    .btn-primary{
      height:42px;
      padding:0 16px;
      background:linear-gradient(135deg, var(--green), #57c86e);
      color:#fff;
      box-shadow:0 10px 24px rgba(43,178,76,.22);
    }
    .dock-search button:hover,
    .dock-cta:hover,
    .btn-primary:hover{
      background:linear-gradient(135deg, var(--green-2), var(--green));
      transform:translateY(-1px);
    }
    .dock-search button:active,
    .dock-cta:active,
    .btn-primary:active,
    .btn:active{
      transform:translateY(0);
    }

    main{position:relative}
    .hero{
      padding:34px 0 24px;
      scroll-margin-top:110px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.06fr .94fr;
      gap:26px;
      align-items:stretch;
    }
    .hero-copy{
      padding:18px 0 8px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.8);
      border:1px solid rgba(43,178,76,.12);
      color:var(--green-deep);
      font-size:.92rem;
      font-weight:700;
      box-shadow:var(--shadow-soft);
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 4px rgba(43,178,76,.12);
    }
    h1{
      margin:16px 0 16px;
      font-size:clamp(2.5rem, 6vw, 4.9rem);
      line-height:1.02;
      letter-spacing:-.05em;
      font-weight:900;
      max-width:11ch;
    }
    .hero-copy p{
      margin:0;
      max-width:46rem;
      color:var(--muted);
      font-size:1.05rem;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .btn{
      height:46px;
      padding:0 18px;
      border:1px solid transparent;
      font-size:.98rem;
    }
    .btn-secondary{
      background:#fff;
      color:var(--text);
      border-color:var(--line);
      box-shadow:var(--shadow-soft);
    }
    .btn-secondary:hover{
      color:var(--green-deep);
      border-color:rgba(43,178,76,.35);
      transform:translateY(-1px);
      box-shadow:0 16px 30px rgba(22,40,27,.08);
    }
    .btn-ghost{
      background:transparent;
      color:var(--green-deep);
      border-color:rgba(43,178,76,.18);
    }
    .hero-metrics{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .metric{
      min-width:148px;
      padding:14px 16px;
      border-radius:18px;
      background:rgba(255,255,255,.86);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .metric strong{
      display:block;
      font-size:1.5rem;
      line-height:1.1;
      color:var(--green-deep);
      font-weight:900;
    }
    .metric span{
      color:var(--muted);
      font-size:.93rem;
    }

    .hero-stage{
      padding:8px 0;
    }
    .coupon-wall{
      min-height:100%;
      display:grid;
      grid-template-columns:1.08fr .92fr;
      grid-template-rows:repeat(3, minmax(118px, 1fr));
      gap:16px;
      position:relative;
      padding:4px;
    }
    .coupon-wall::before{
      content:"";
      position:absolute;
      inset:18px 12px 12px 12px;
      border-radius:28px;
      background:
        linear-gradient(135deg, rgba(43,178,76,.06), rgba(255,255,255,.35)),
        linear-gradient(180deg, #ffffff, #f7fbf5);
      border:1px solid rgba(173,192,169,.28);
      box-shadow:var(--shadow);
      z-index:0;
    }
    .ticket{
      position:relative;
      z-index:1;
      background:linear-gradient(180deg, #ffffff 0%, #fbfef9 100%);
      border:1px solid var(--line);
      border-radius:24px;
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      padding:18px 18px 16px;
      transition:transform var(--trans), box-shadow var(--trans), border-color var(--trans);
    }
    .ticket:hover{
      transform:translateY(-3px);
      border-color:rgba(43,178,76,.35);
      box-shadow:0 20px 36px rgba(22,40,27,.09);
    }
    .ticket::before,
    .ticket::after{
      content:"";
      position:absolute;
      top:50%;
      width:18px;
      height:18px;
      border-radius:50%;
      transform:translateY(-50%);
      background:var(--bg);
      border:1px solid var(--line);
      z-index:2;
    }
    .ticket::before{left:-9px}
    .ticket::after{right:-9px}
    .ticket-main{
      grid-row:1 / span 3;
      padding:26px 24px 22px;
      background:
        radial-gradient(circle at 100% 0%, rgba(43,178,76,.12), transparent 32%),
        linear-gradient(180deg, #ffffff, #f7fcf5);
    }
    .ticket-main .ticket-kicker,
    .ticket-sm .ticket-kicker{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:6px 10px;
      border-radius:999px;
      background:var(--green-soft);
      color:var(--green-deep);
      font-size:.88rem;
      font-weight:700;
    }
    .ticket-main h3{
      margin:14px 0 10px;
      font-size:clamp(1.5rem, 2.8vw, 2.25rem);
      line-height:1.1;
      letter-spacing:-.03em;
    }
    .ticket-main p,
    .ticket-sm p{
      margin:0;
      color:var(--muted);
      font-size:.98rem;
    }
    .ticket-stats{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      height:34px;
      padding:0 12px;
      border-radius:999px;
      background:#f6faf4;
      border:1px solid var(--line);
      color:var(--text);
      font-size:.92rem;
      font-weight:700;
    }
    .chip strong{color:var(--green-deep)}
    .ticket-main .ticket-foot{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:18px;
      padding-top:16px;
      border-top:1px dashed rgba(125,149,122,.34);
    }
    .ticket-main .ticket-foot .status{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:.95rem;
    }
    .dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 5px rgba(43,178,76,.12);
      flex:0 0 auto;
    }
    .ticket-sm{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:0;
    }
    .ticket-sm h4{
      margin:10px 0 8px;
      font-size:1.08rem;
      line-height:1.35;
    }
    .ticket-sm .ticket-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .ticket-sm .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      height:30px;
      padding:0 10px;
      border-radius:999px;
      font-size:.84rem;
      font-weight:700;
      border:1px solid transparent;
      white-space:nowrap;
    }
    .badge-success{background:var(--green-soft); color:var(--green-deep); border-color:rgba(43,178,76,.12)}
    .badge-muted{background:#f1f4f0; color:#5d6a60; border-color:#e0e7de}
    .badge-warn{background:#fff7e7; color:#9f7416; border-color:#f1d79a}
    .ticket-sm .footline{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-top:14px;
      color:var(--muted);
      font-size:.92rem;
    }
    .ticket-sm .progress-mini{
      width:100%;
      height:8px;
      border-radius:999px;
      background:#edf2ea;
      overflow:hidden;
      margin-top:14px;
      border:1px solid #e2e8de;
    }
    .ticket-sm .progress-mini i{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--green), #61cf7c);
    }

    .section{
      padding:74px 0;
      scroll-margin-top:110px;
    }
    .section-alt{
      background:rgba(236,242,232,.6);
      border-top:1px solid rgba(220,230,216,.7);
      border-bottom:1px solid rgba(220,230,216,.7);
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:24px;
    }
    .section-head .copy{
      max-width:800px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:#fff;
      color:var(--green-deep);
      font-weight:700;
      border:1px solid rgba(43,178,76,.12);
      box-shadow:var(--shadow-soft);
      font-size:.92rem;
    }
    .section-kicker::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 4px rgba(43,178,76,.12);
    }
    .section-title{
      margin:14px 0 0;
      font-size:clamp(1.55rem, 2.8vw, 2.35rem);
      line-height:1.12;
      letter-spacing:-.03em;
    }
    .section-desc{
      margin:10px 0 0;
      color:var(--muted);
      max-width:62rem;
    }

    .steps-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:16px;
    }
    .step-card{
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:22px;
      padding:18px 18px 17px;
      box-shadow:var(--shadow-soft);
      transition:transform var(--trans), border-color var(--trans), box-shadow var(--trans);
      position:relative;
      overflow:hidden;
    }
    .step-card::before{
      content:"";
      position:absolute;
      inset:auto 18px 18px 18px;
      height:1px;
      background:linear-gradient(90deg, rgba(43,178,76,.0), rgba(43,178,76,.22), rgba(43,178,76,.0));
    }
    .step-card:hover{
      transform:translateY(-4px);
      border-color:rgba(43,178,76,.34);
      box-shadow:0 20px 36px rgba(22,40,27,.09);
    }
    .step-num{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, var(--green-soft), #f7fbf5);
      color:var(--green-deep);
      font-weight:900;
      box-shadow:inset 0 0 0 1px rgba(43,178,76,.12);
    }
    .step-card h3{
      margin:14px 0 8px;
      font-size:1.06rem;
      line-height:1.35;
    }
    .step-card p{
      margin:0;
      color:var(--muted);
      font-size:.96rem;
    }

    .topics-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:16px;
    }
    .topics-head .summary{
      color:var(--muted);
      max-width:50rem;
    }
    .toolbar{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      align-items:center;
      justify-content:space-between;
      padding:16px;
      background:rgba(255,255,255,.86);
      border:1px solid var(--line);
      border-radius:22px;
      box-shadow:var(--shadow-soft);
      margin-bottom:16px;
    }
    .filter-chips{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      min-width:0;
    }
    .filter-chip{
      height:38px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#f9fbf7;
      color:var(--text);
      font-weight:700;
      transition:transform var(--trans), border-color var(--trans), background var(--trans), color var(--trans), box-shadow var(--trans);
    }
    .filter-chip:hover{
      transform:translateY(-1px);
      border-color:rgba(43,178,76,.34);
    }
    .filter-chip.active{
      background:var(--green-soft);
      border-color:rgba(43,178,76,.18);
      color:var(--green-deep);
      box-shadow:inset 0 0 0 1px rgba(43,178,76,.06);
    }
    .sort-box{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
      color:var(--muted);
      font-weight:700;
    }
    .sort-box select{
      height:38px;
      border-radius:999px;
      padding:0 14px;
      background:#fff;
      min-width:150px;
      box-shadow:0 6px 18px rgba(22,40,27,.04);
    }
    .results-strip{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:18px;
      padding:12px 16px;
      background:rgba(255,255,255,.86);
      border:1px solid var(--line);
      border-radius:18px;
      color:var(--muted);
    }
    .results-strip strong{
      color:var(--text);
    }
    .preview-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:12px;
      margin-bottom:18px;
    }
    .preview-card{
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:18px;
      padding:14px 14px 13px;
      box-shadow:var(--shadow-soft);
      transition:transform var(--trans), border-color var(--trans);
    }
    .preview-card:hover{
      transform:translateY(-2px);
      border-color:rgba(43,178,76,.28);
    }
    .preview-card .mini-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
      font-weight:800;
    }
    .preview-card .mini-title span:last-child{
      color:var(--green-deep);
      font-size:.86rem;
    }
    .preview-card p{
      margin:0;
      color:var(--muted);
      font-size:.94rem;
    }
    .cards-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:18px;
    }
    .entry-card{
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:24px;
      padding:18px;
      box-shadow:var(--shadow-soft);
      transition:transform var(--trans), border-color var(--trans), box-shadow var(--trans);
      display:flex;
      flex-direction:column;
      min-height:100%;
    }
    .entry-card:hover{
      transform:translateY(-5px);
      border-color:rgba(43,178,76,.34);
      box-shadow:0 22px 38px rgba(22,40,27,.09);
    }
    .entry-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:14px;
    }
    .entry-top .status{
      display:inline-flex;
      align-items:center;
      gap:7px;
      height:30px;
      padding:0 10px;
      border-radius:999px;
      font-size:.84rem;
      font-weight:700;
    }
    .entry-top .status i{
      width:8px;
      height:8px;
      border-radius:50%;
      display:inline-block;
      background:currentColor;
      box-shadow:0 0 0 4px rgba(43,178,76,.12);
    }
    .entry-top .date{
      color:var(--muted);
      font-size:.88rem;
      white-space:nowrap;
    }
    .entry-card h3{
      margin:0 0 10px;
      font-size:1.12rem;
      line-height:1.45;
      letter-spacing:-.02em;
    }
    .entry-card p{
      margin:0;
      color:var(--muted);
      font-size:.97rem;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      height:30px;
      padding:0 10px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fafcf8;
      color:var(--text);
      font-size:.84rem;
      font-weight:700;
    }
    .tag-green{
      background:var(--green-soft);
      border-color:rgba(43,178,76,.12);
      color:var(--green-deep);
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px 14px;
      margin-top:16px;
      padding-top:14px;
      border-top:1px dashed rgba(144,162,140,.32);
      color:var(--muted);
      font-size:.92rem;
    }
    .entry-foot{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-top:auto;
      padding-top:16px;
    }
    .entry-foot .hot{
      color:var(--green-deep);
      font-weight:800;
      font-size:.95rem;
    }
    .btn-sm{
      height:40px;
      padding:0 14px;
      font-size:.92rem;
    }
    .btn-full{
      width:100%;
    }
    .empty-state{
      grid-column:1 / -1;
      padding:28px 20px;
      border-radius:22px;
      background:linear-gradient(180deg, #ffffff, #fbfef8);
      border:1px dashed rgba(120,146,117,.38);
      color:var(--muted);
      text-align:center;
      box-shadow:var(--shadow-soft);
    }
    .pagination{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      margin-top:22px;
      flex-wrap:wrap;
    }
    .page{
      min-width:42px;
      height:42px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--text);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-weight:700;
      box-shadow:var(--shadow-soft);
      transition:transform var(--trans), border-color var(--trans), background var(--trans), color var(--trans);
    }
    .page:hover{
      transform:translateY(-1px);
      border-color:rgba(43,178,76,.28);
    }
    .page.active{
      background:var(--green-soft);
      color:var(--green-deep);
      border-color:rgba(43,178,76,.14);
    }
    .page.disabled{
      opacity:.45;
      pointer-events:none;
    }

    .progress-board{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:18px;
      align-items:stretch;
    }
    .progress-card{
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:26px;
      padding:22px;
      box-shadow:var(--shadow-soft);
    }
    .progress-title{
      margin:0 0 10px;
      font-size:1.2rem;
      line-height:1.35;
    }
    .progress-desc{
      margin:0;
      color:var(--muted);
    }
    .progress-rail{
      margin-top:18px;
      display:grid;
      gap:12px;
    }
    .rail-line{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:8px;
    }
    .rail-seg{
      height:14px;
      border-radius:999px;
      background:#e9efe6;
      overflow:hidden;
      border:1px solid #dce6d8;
    }
    .rail-seg span{
      display:block;
      width:100%;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--green), #67d280);
    }
    .rail-labels{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:8px;
      font-size:.9rem;
      color:var(--muted);
    }
    .rail-labels strong{
      display:block;
      color:var(--text);
      font-size:1.02rem;
    }
    .progress-list{
      display:grid;
      gap:12px;
      margin-top:18px;
    }
    .progress-item{
      display:flex;
      align-items:center;
      gap:12px;
      padding:12px 14px;
      border-radius:18px;
      background:rgba(247,250,245,.95);
      border:1px solid #e3eadf;
    }
    .progress-item .mark{
      width:12px;
      height:12px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 5px rgba(43,178,76,.12);
      flex:0 0 auto;
    }
    .progress-item .mark.gray{
      background:#bfc8bc;
      box-shadow:0 0 0 5px rgba(165,177,163,.14);
    }
    .progress-item .mark.warn{
      background:var(--warn);
      box-shadow:0 0 0 5px rgba(216,165,61,.14);
    }
    .progress-item span{
      color:var(--muted);
      font-size:.94rem;
    }
    .progress-stats{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .stat-card{
      background:linear-gradient(180deg, #fff, #fafdf8);
      border:1px solid var(--line);
      border-radius:22px;
      padding:18px;
      box-shadow:var(--shadow-soft);
      min-height:126px;
    }
    .stat-card small{
      color:var(--muted);
      font-weight:700;
      letter-spacing:.02em;
    }
    .stat-card strong{
      display:block;
      margin-top:10px;
      font-size:2rem;
      line-height:1;
      color:var(--green-deep);
      font-weight:900;
    }
    .stat-card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:.94rem;
    }

    .faq-list{
      display:grid;
      gap:12px;
    }
    .faq-item{
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:20px;
      overflow:hidden;
      box-shadow:var(--shadow-soft);
      transition:border-color var(--trans), transform var(--trans), box-shadow var(--trans);
    }
    .faq-item:hover{
      border-color:rgba(43,178,76,.24);
      transform:translateY(-1px);
    }
    .faq-q{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:18px 20px;
      text-align:left;
      color:var(--text);
      font-weight:800;
      background:none;
    }
    .faq-q .symbol{
      width:30px;
      height:30px;
      border-radius:50%;
      display:grid;
      place-items:center;
      flex:0 0 auto;
      background:var(--green-soft);
      color:var(--green-deep);
      transition:transform var(--trans), background var(--trans);
      font-size:1.15rem;
      line-height:1;
    }
    .faq-item.open .faq-q .symbol{
      transform:rotate(45deg);
      background:#daf1df;
    }
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease, padding .28s ease;
      padding:0 20px;
    }
    .faq-item.open .faq-a{
      max-height:220px;
      padding:0 20px 18px;
    }
    .faq-a p{
      margin:0;
      color:var(--muted);
    }

    .cta-block{
      border-radius:30px;
      padding:28px;
      background:
        radial-gradient(circle at 100% 0%, rgba(255,255,255,.16), transparent 30%),
        linear-gradient(135deg, #1f9340 0%, #2db64d 48%, #58c970 100%);
      color:#fff;
      box-shadow:0 24px 60px rgba(29,121,55,.24);
    }
    .cta-inner{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
    }
    .cta-copy{
      max-width:720px;
    }
    .cta-copy .section-kicker{
      background:rgba(255,255,255,.14);
      color:#fff;
      border-color:rgba(255,255,255,.15);
      box-shadow:none;
    }
    .cta-copy .section-kicker::before{
      background:#fff;
      box-shadow:0 0 0 4px rgba(255,255,255,.16);
    }
    .cta-copy .section-title{
      color:#fff;
    }
    .cta-copy .section-desc{
      color:rgba(255,255,255,.9);
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
    }
    .btn-light{
      background:#fff;
      color:var(--green-deep);
      border:1px solid rgba(255,255,255,.25);
      box-shadow:none;
    }
    .btn-light:hover{
      background:#f4fff7;
      color:var(--green-deep);
    }
    .btn-outline-light{
      background:transparent;
      color:#fff;
      border-color:rgba(255,255,255,.38);
    }
    .btn-outline-light:hover{
      background:rgba(255,255,255,.12);
      transform:translateY(-1px);
    }
    .cta-note{
      margin-top:14px;
      color:rgba(255,255,255,.9);
      font-size:.95rem;
    }

    .footer{
      margin-top:18px;
      padding:34px 0 42px;
      background:linear-gradient(180deg, rgba(245,248,242,.8), rgba(238,244,234,.95));
      border-top:1px solid rgba(220,230,216,.8);
      color:var(--muted);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:28px;
    }
    .footer-brand .brand{
      margin-bottom:12px;
    }
    .footer-brand p{
      margin:0;
      max-width:36rem;
    }
    .copyright{
      margin-top:14px;
      color:var(--muted);
      font-size:.94rem;
    }
    .footer-links{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:14px;
    }
    .footer-box{
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.84);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .footer-box h3{
      margin:0 0 12px;
      color:var(--text);
      font-size:1rem;
    }
    .footer-box a{
      color:var(--muted);
      line-height:1.95;
      transition:color var(--trans);
    }
    .footer-box a:hover{
      color:var(--green-deep);
    }

    .btn[disabled],
    .btn.disabled{
      opacity:.55;
      pointer-events:none;
      filter:saturate(.6);
    }

    .dock-search input::placeholder{color:#8a988e}
    .dock-search input:hover{border-color:#c6d6c2}
    .dock-search button{flex:0 0 auto}
    .dock-cta{flex:0 0 auto}
    .btn-primary{border:1px solid transparent}
    .btn-secondary{border:1px solid var(--line)}
    .btn-secondary:hover{border-color:rgba(43,178,76,.28)}
    .btn-ghost:hover{background:rgba(43,178,76,.08)}

    @media (max-width: 1120px){
      .hero-grid,
      .progress-board,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .coupon-wall{
        min-height:auto;
      }
      .ticket-main{
        grid-row:auto;
        min-height:0;
      }
      .steps-grid,
      .preview-grid,
      .cards-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 860px){
      .dock{
        flex-wrap:wrap;
        border-radius:28px;
      }
      .dock-nav{
        order:3;
        width:100%;
        justify-content:flex-start;
        overflow-x:auto;
        padding-top:2px;
        padding-bottom:2px;
      }
      .dock-search{
        order:2;
        width:100%;
        min-width:0;
        flex:1 1 100%;
      }
      .dock-cta{
        order:4;
        margin-left:auto;
      }
      .section-head,
      .topics-head,
      .cta-inner{
        align-items:flex-start;
        flex-direction:column;
      }
      .toolbar{
        align-items:flex-start;
      }
      .sort-box{
        width:100%;
        justify-content:space-between;
      }
      .preview-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
      }
      .footer-links{
        grid-template-columns:1fr;
      }
    }

    @media (max-width: 680px){
      .hero{
        padding-top:24px;
      }
      .hero-grid{
        gap:18px;
      }
      .hero-copy p,
      .section-desc,
      .topics-head .summary,
      .progress-desc,
      .cta-note{
        font-size:.97rem;
      }
      .steps-grid,
      .cards-grid,
      .preview-grid{
        grid-template-columns:1fr;
      }
      .toolbar{
        padding:14px;
      }
      .filter-chip{
        height:36px;
        padding:0 12px;
      }
      .progress-stats{
        grid-template-columns:1fr;
      }
      .rail-labels,
      .rail-line{
        grid-template-columns:1fr 1fr;
      }
      .ticket-main{
        padding:20px 18px 18px;
      }
      .cta-block{
        padding:22px;
      }
      .footer{
        padding:28px 0 34px;
      }
    }

    @media (max-width: 520px){
      .container{
        width:min(var(--container), calc(100% - 22px));
      }
      .site-header{
        top:8px;
      }
      .dock{
        padding:11px 12px;
      }
      .brand{
        gap:9px;
        font-size:.98rem;
      }
      .brand-mark{
        width:34px;
        height:34px;
      }
      .dock-cta,
      .dock-search button,
      .btn{
        width:100%;
      }
      .dock-cta{
        order:5;
      }
      .dock-search{
        gap:10px;
        flex-direction:column;
      }
      .dock-search button{
        height:40px;
      }
      h1{
        max-width:none;
        font-size:clamp(2.1rem, 11vw, 3.2rem);
      }
      .hero-actions,
      .cta-actions{
        width:100%;
      }
      .hero-actions .btn,
      .cta-actions .btn{
        width:100%;
      }
      .metric{
        min-width:calc(50% - 6px);
        flex:1 1 calc(50% - 6px);
      }
      .coupon-wall{
        gap:12px;
      }
      .ticket{
        padding:16px;
      }
      .ticket-main .ticket-foot{
        align-items:flex-start;
      }
      .page{
        height:40px;
      }
      .faq-q{
        padding:16px 16px;
      }
      .faq-a{
        padding:0 16px;
      }
      .faq-item.open .faq-a{
        padding:0 16px 16px;
      }
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      *,*::before,*::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
        scroll-behavior:auto !important;
      }
    }
