/* roulang page: index */
:root{
      --primary:#7C3AED;
      --primary-2:#EC4899;
      --primary-3:#F97316;
      --accent:#F59E0B;
      --rose:#E11D48;
      --violet:#8B5CF6;
      --mint:#10B981;
      --ink:#24182F;
      --text:#2A2233;
      --muted:#75677F;
      --soft:#FFF7FB;
      --soft-2:#F8F5FF;
      --soft-3:#FFF9F1;
      --line:rgba(124,58,237,.14);
      --line-2:#E9DDF5;
      --white:rgba(255,255,255,.88);
      --shadow:0 22px 60px rgba(76,29,149,.14);
      --shadow-sm:0 12px 30px rgba(76,29,149,.08);
      --shadow-hover:0 28px 70px rgba(76,29,149,.20);
      --radius-xl:34px;
      --radius-lg:26px;
      --radius-md:20px;
      --radius-pill:999px;
      --gradient:linear-gradient(135deg,var(--primary) 0%,var(--primary-2) 52%,var(--primary-3) 100%);
      --gradient-soft:linear-gradient(135deg,rgba(124,58,237,.12),rgba(236,72,153,.10),rgba(249,115,22,.12));
      --section:86px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      line-height:1.75;
      background:
        radial-gradient(circle at 8% 8%,rgba(236,72,153,.14),transparent 26%),
        radial-gradient(circle at 86% 14%,rgba(249,115,22,.13),transparent 24%),
        radial-gradient(circle at 50% 80%,rgba(124,58,237,.10),transparent 28%),
        linear-gradient(180deg,var(--soft),var(--soft-2) 48%,var(--soft-3));
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    a:hover{color:var(--primary-2)}
    img,svg{max-width:100%;display:block}
    button,input{font:inherit}
    ::selection{background:rgba(236,72,153,.22);color:var(--ink)}
    .container{max-width:1200px}
    .section-pad{padding:var(--section) 0}
    .section-head{margin-bottom:34px}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:var(--radius-pill);
      color:var(--primary);
      background:rgba(124,58,237,.09);
      border:1px solid var(--line);
      font-size:13px;
      font-weight:800;
      margin-bottom:14px;
    }
    .section-kicker::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--gradient);
      box-shadow:0 0 0 5px rgba(236,72,153,.10);
    }
    h1,h2,h3{color:var(--ink);font-weight:900;letter-spacing:-.03em}
    h1{font-size:clamp(32px,5vw,55px);line-height:1.14;margin:0 0 18px}
    h2{font-size:clamp(25px,3vw,38px);line-height:1.2;margin:0}
    h3{font-size:20px;line-height:1.32;margin:0 0 8px}
    p{margin:0;color:var(--muted)}
    .lead-text{font-size:17px;max-width:650px;color:#5f5069}
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      padding:12px 0;
      background:rgba(255,250,253,.78);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(124,58,237,.12);
    }
    .search-navbar{
      display:grid;
      grid-template-columns:270px minmax(280px,1fr) auto;
      align-items:center;
      gap:18px;
    }
    .brand-logo{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
      font-weight:900;
      color:var(--ink);
    }
    .brand-mark{
      width:42px;height:42px;border-radius:16px;
      background:var(--gradient);
      box-shadow:0 12px 28px rgba(236,72,153,.24);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark::before,.brand-mark::after{
      content:"";
      position:absolute;
      border-radius:50%;
      background:rgba(255,255,255,.75);
    }
    .brand-mark::before{width:13px;height:13px;top:9px;left:10px}
    .brand-mark::after{width:8px;height:8px;right:10px;bottom:11px}
    .brand-text{
      display:block;
      font-size:16px;
      line-height:1.18;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .nav-search{
      position:relative;
      display:flex;
      align-items:center;
      background:rgba(255,255,255,.82);
      border:1px solid var(--line);
      border-radius:var(--radius-pill);
      padding:7px 8px 7px 44px;
      box-shadow:0 10px 28px rgba(76,29,149,.07);
      transition:all .22s ease;
    }
    .nav-search:focus-within{
      border-color:rgba(236,72,153,.35);
      box-shadow:0 0 0 .25rem rgba(236,72,153,.15),0 16px 34px rgba(76,29,149,.10);
      background:#fff;
    }
    .search-icon{
      position:absolute;left:17px;top:50%;transform:translateY(-50%);
      color:var(--primary);
      width:18px;height:18px;
    }
    .nav-search input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--ink);
      font-size:15px;
      min-width:0;
    }
    .nav-search input::placeholder{color:#9a8aa5}
    .search-submit{
      border:0;
      border-radius:var(--radius-pill);
      background:var(--gradient);
      color:#fff;
      padding:8px 16px;
      font-weight:800;
      font-size:13px;
      box-shadow:0 10px 22px rgba(236,72,153,.22);
      transition:all .22s ease;
      white-space:nowrap;
    }
    .search-submit:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(236,72,153,.30)}
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      white-space:nowrap;
    }
    .nav-link-pill{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:9px 14px;
      border-radius:var(--radius-pill);
      font-size:14px;
      font-weight:800;
      color:#57445f;
    }
    .nav-link-pill:hover{background:rgba(124,58,237,.08);color:var(--primary)}
    .nav-link-pill.active{
      color:#fff;
      background:linear-gradient(135deg,#5B21B6,#EC4899);
      box-shadow:0 10px 22px rgba(124,58,237,.20);
    }
    .gradient-btn,.ghost-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:13px 22px;
      border-radius:var(--radius-pill);
      font-weight:900;
      border:1px solid transparent;
      transition:all .22s ease;
      cursor:pointer;
    }
    .gradient-btn{
      background:var(--gradient);
      color:#fff;
      box-shadow:0 18px 38px rgba(236,72,153,.26),inset 0 1px 0 rgba(255,255,255,.32);
    }
    .gradient-btn:hover{color:#fff;transform:translateY(-2px);box-shadow:0 24px 48px rgba(236,72,153,.33)}
    .ghost-btn{
      background:rgba(255,255,255,.72);
      color:var(--primary);
      border-color:rgba(124,58,237,.18);
      box-shadow:0 12px 24px rgba(76,29,149,.07);
    }
    .ghost-btn:hover{background:rgba(248,245,255,.95);border-color:rgba(236,72,153,.28);transform:translateY(-2px)}
    a:focus-visible,button:focus-visible,input:focus-visible{
      outline:0;
      box-shadow:0 0 0 .25rem rgba(236,72,153,.18),0 0 0 1px rgba(124,58,237,.25);
    }
    .hero-kv{
      margin-top:34px;
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      padding:58px;
      background:
        radial-gradient(circle at 78% 18%,rgba(255,255,255,.40),transparent 22%),
        radial-gradient(circle at 26% 14%,rgba(236,72,153,.20),transparent 25%),
        linear-gradient(135deg,rgba(124,58,237,.14),rgba(255,255,255,.78) 43%,rgba(249,115,22,.14));
      border:1px solid rgba(255,255,255,.68);
      box-shadow:var(--shadow);
    }
    .hero-kv::before{
      content:"";
      position:absolute;
      width:360px;height:360px;
      border:34px solid rgba(236,72,153,.09);
      border-radius:50%;
      right:-120px;top:-110px;
    }
    .hero-kv::after{
      content:"";
      position:absolute;
      width:260px;height:72px;
      border-radius:999px;
      background:rgba(255,255,255,.38);
      transform:rotate(-18deg);
      right:230px;bottom:70px;
      filter:blur(.2px);
    }
    .hero-content,.hero-panel{position:relative;z-index:1}
    .brand-chip-row{display:flex;flex-wrap:wrap;gap:10px;margin:24px 0 28px}
    .filter-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.72);
      color:#684b73;
      padding:8px 13px;
      border-radius:var(--radius-pill);
      font-size:13px;
      font-weight:800;
      transition:all .22s ease;
    }
    .filter-chip::before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:var(--accent);
    }
    .filter-chip:hover,.filter-chip.active{
      background:linear-gradient(135deg,rgba(124,58,237,.14),rgba(236,72,153,.12));
      border-color:rgba(236,72,153,.30);
      color:var(--primary);
      transform:translateY(-1px);
    }
    .hero-actions{display:flex;gap:13px;flex-wrap:wrap}
    .hero-panel{
      background:rgba(255,255,255,.76);
      border:1px solid rgba(124,58,237,.13);
      border-radius:30px;
      padding:24px;
      box-shadow:0 24px 58px rgba(76,29,149,.12);
      backdrop-filter:blur(10px);
    }
    .panel-top{
      display:flex;align-items:center;justify-content:space-between;
      padding-bottom:16px;margin-bottom:16px;
      border-bottom:1px solid rgba(124,58,237,.10);
    }
    .status-dot{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:900;color:var(--primary)}
    .status-dot::before{content:"";width:10px;height:10px;border-radius:50%;background:var(--mint);box-shadow:0 0 0 6px rgba(16,185,129,.10)}
    .mini-tag{font-size:12px;font-weight:900;color:#9a5410;background:rgba(245,158,11,.13);border:1px solid rgba(245,158,11,.22);border-radius:999px;padding:5px 10px}
    .stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:20px}
    .stat-badge,.data-card{
      border-radius:22px;
      background:linear-gradient(180deg,rgba(255,255,255,.86),rgba(255,247,251,.72));
      border:1px solid rgba(124,58,237,.12);
      padding:16px;
      box-shadow:var(--shadow-sm);
      transition:all .22s ease;
    }
    .stat-badge:hover,.data-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover)}
    .stat-number{font-size:28px;line-height:1;font-weight:950;color:var(--ink);letter-spacing:-.04em}
    .stat-label{font-size:12px;font-weight:800;color:var(--muted);margin-top:6px}
    .progress-wrap{
      padding:18px;
      border-radius:24px;
      background:linear-gradient(135deg,rgba(124,58,237,.08),rgba(236,72,153,.07));
      border:1px solid rgba(236,72,153,.14);
    }
    .progress-label{display:flex;justify-content:space-between;gap:10px;margin-bottom:10px;font-size:13px;font-weight:900;color:#5a4166}
    .progress{
      height:12px;
      border-radius:999px;
      background:rgba(124,58,237,.10);
      overflow:hidden;
    }
    .progress-bar{
      background:var(--gradient);
      border-radius:999px;
      box-shadow:0 0 18px rgba(236,72,153,.38);
    }
    .flow-line{
      position:relative;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .flow-line::before{
      content:"";
      position:absolute;
      left:8%;right:8%;top:35px;height:2px;
      background:linear-gradient(90deg,rgba(124,58,237,.20),rgba(236,72,153,.28),rgba(249,115,22,.20));
      z-index:0;
    }
    .step-card{
      position:relative;
      z-index:1;
      padding:22px;
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.75);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:all .22s ease;
    }
    .step-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:rgba(236,72,153,.26)}
    .step-num{
      width:42px;height:42px;border-radius:16px;
      display:flex;align-items:center;justify-content:center;
      color:#fff;font-weight:950;
      background:var(--gradient);
      box-shadow:0 12px 24px rgba(236,72,153,.24);
      margin-bottom:18px;
    }
    .step-icon{font-size:24px;margin-bottom:10px}
    .reward-layout{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .activity-card{
      position:relative;
      overflow:hidden;
      padding:28px;
      border-radius:var(--radius-xl);
      border:1px solid rgba(124,58,237,.13);
      background:rgba(255,255,255,.76);
      box-shadow:var(--shadow-sm);
      transition:all .22s ease;
    }
    .activity-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:rgba(236,72,153,.28)}
    .activity-card.large{
      min-height:330px;
      background:
        radial-gradient(circle at 88% 20%,rgba(249,115,22,.18),transparent 25%),
        linear-gradient(135deg,rgba(124,58,237,.14),rgba(255,255,255,.82));
    }
    .activity-card.large::after{
      content:"";
      position:absolute;right:-32px;bottom:-34px;
      width:190px;height:190px;border-radius:50%;
      background:conic-gradient(from 160deg,rgba(124,58,237,.25),rgba(236,72,153,.18),rgba(249,115,22,.20),rgba(124,58,237,.25));
    }
    .small-card-stack{display:grid;gap:22px}
    .badge-soft{
      display:inline-flex;align-items:center;gap:7px;
      padding:7px 12px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      color:var(--primary);
      background:rgba(124,58,237,.09);
      border:1px solid var(--line);
      margin-bottom:14px;
    }
    .badge-soft.orange{color:#a35a06;background:rgba(245,158,11,.13);border-color:rgba(245,158,11,.22)}
    .badge-soft.green{color:#087f5b;background:rgba(16,185,129,.11);border-color:rgba(16,185,129,.20)}
    .status-row{display:flex;flex-wrap:wrap;gap:9px;margin-top:22px}
    .status-chip{
      display:inline-flex;
      padding:7px 11px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      color:#654a70;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(124,58,237,.12);
    }
    .progress-panel-section .progress-board{
      border-radius:var(--radius-xl);
      padding:30px;
      background:
        radial-gradient(circle at 14% 20%,rgba(236,72,153,.18),transparent 25%),
        linear-gradient(135deg,#2b1740,#43205d 54%,#5b235b);
      color:#fff;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .progress-board::after{
      content:"";
      position:absolute;right:-80px;top:-80px;width:240px;height:240px;border-radius:50%;
      background:rgba(255,255,255,.08);
    }
    .progress-board h2,.progress-board p{color:#fff}
    .progress-board p{opacity:.78}
    .board-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px;margin-top:28px}
    .board-item{
      position:relative;z-index:1;
      padding:20px;
      border-radius:24px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(8px);
    }
    .board-num{font-size:30px;font-weight:950;line-height:1}
    .board-name{font-size:13px;font-weight:800;opacity:.78;margin-top:8px}
    .category-mix{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:22px;
      align-items:stretch;
    }
    .category-side{
      border-radius:var(--radius-xl);
      padding:26px;
      background:linear-gradient(135deg,rgba(124,58,237,.13),rgba(249,115,22,.11));
      border:1px solid rgba(124,58,237,.14);
      box-shadow:var(--shadow-sm);
    }
    .category-card{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:22px;
      border-radius:26px;
      background:rgba(255,255,255,.78);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:all .22s ease;
    }
    .category-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:rgba(236,72,153,.26)}
    .category-icon{
      width:54px;height:54px;border-radius:20px;
      flex:0 0 auto;
      display:flex;align-items:center;justify-content:center;
      color:#fff;font-size:24px;
      background:var(--gradient);
      box-shadow:0 14px 28px rgba(236,72,153,.24);
    }
    .category-list{display:grid;gap:16px}
    .heat-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      flex:0 0 auto;
      font-size:12px;
      font-weight:950;
      color:#a34b10;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(249,115,22,.12);
      border:1px solid rgba(249,115,22,.20);
    }
    .custom-accordion .accordion-item{
      border:1px solid var(--line);
      border-radius:24px;
      overflow:hidden;
      margin-bottom:14px;
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 24px rgba(76,29,149,.06);
    }
    .custom-accordion .accordion-button{
      background:transparent;
      color:var(--ink);
      font-weight:900;
      padding:19px 22px;
      border-radius:24px!important;
      box-shadow:none;
    }
    .custom-accordion .accordion-button:not(.collapsed){
      background:linear-gradient(135deg,rgba(124,58,237,.10),rgba(236,72,153,.08));
      color:var(--primary);
    }
    .custom-accordion .accordion-button::after{
      filter:hue-rotate(245deg) saturate(1.4);
    }
    .custom-accordion .accordion-button:focus{box-shadow:0 0 0 .25rem rgba(236,72,153,.13)}
    .custom-accordion .accordion-body{padding:0 22px 22px;color:var(--muted)}
    .bottom-cta-card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      padding:42px;
      background:
        radial-gradient(circle at 86% 20%,rgba(249,115,22,.20),transparent 26%),
        var(--gradient);
      color:#fff;
      box-shadow:var(--shadow);
    }
    .bottom-cta-card::before{
      content:"";
      position:absolute;left:-65px;bottom:-80px;width:220px;height:220px;border-radius:50%;
      background:rgba(255,255,255,.10);
    }
    .bottom-cta-card h2,.bottom-cta-card p{color:#fff}
    .bottom-cta-card p{opacity:.83}
    .bottom-cta-card .ghost-btn{background:rgba(255,255,255,.18);color:#fff;border-color:rgba(255,255,255,.35);box-shadow:none}
    .bottom-cta-card .gradient-btn{background:#fff;color:var(--primary);box-shadow:0 18px 34px rgba(36,24,47,.18)}
    .site-footer{
      margin-top:30px;
      padding:54px 0 26px;
      color:rgba(255,255,255,.76);
      background:
        radial-gradient(circle at 20% 0%,rgba(236,72,153,.24),transparent 28%),
        linear-gradient(135deg,#21112d,#321747 52%,#4b1d53);
    }
    .footer-brand{
      display:flex;align-items:center;gap:12px;
      color:#fff;font-weight:950;margin-bottom:14px;
    }
    .footer-logo-dot{
      width:38px;height:38px;border-radius:15px;background:var(--gradient);
      box-shadow:0 12px 24px rgba(236,72,153,.25);
    }
    .footer-title{font-size:18px;line-height:1.2}
    .footer-links{display:grid;gap:10px}
    .footer-links a{
      color:rgba(255,255,255,.72);
      font-weight:700;
      font-size:14px;
    }
    .footer-links a:hover{color:#ffd0e4;transform:translateX(2px)}
    .footer-heading{color:#fff;font-size:15px;font-weight:950;margin-bottom:14px}
    .footer-note{
      border-top:1px solid rgba(255,255,255,.12);
      margin-top:34px;
      padding-top:20px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      font-size:13px;
      color:rgba(255,255,255,.62);
    }
    @media (max-width:1199.98px){
      .search-navbar{grid-template-columns:240px minmax(260px,1fr);gap:14px}
      .nav-links{grid-column:1/-1;justify-content:center}
      .hero-kv{padding:44px}
    }
    @media (max-width:991.98px){
      :root{--section:62px}
      .search-navbar{grid-template-columns:1fr}
      .brand-logo{justify-content:center}
      .nav-links{overflow-x:auto;justify-content:flex-start;padding-bottom:3px}
      .nav-link-pill{flex:0 0 auto}
      .hero-kv{padding:34px}
      .hero-panel{margin-top:28px}
      .flow-line{grid-template-columns:1fr 1fr}
      .flow-line::before{display:none}
      .reward-layout,.category-mix{grid-template-columns:1fr}
      .board-grid{grid-template-columns:1fr}
    }
    @media (max-width:767.98px){
      .site-header{position:relative}
      .container{padding-left:18px;padding-right:18px}
      .brand-text{max-width:280px}
      .nav-search{padding-left:42px}
      .search-submit{padding:8px 12px}
      .hero-kv{margin-top:22px;padding:26px;border-radius:24px}
      .hero-actions .gradient-btn,.hero-actions .ghost-btn{width:100%}
      .stat-grid{grid-template-columns:1fr 1fr;gap:12px}
      .flow-line{grid-template-columns:1fr}
      .activity-card{padding:22px;border-radius:24px}
      .category-card{align-items:flex-start;flex-direction:column}
      .bottom-cta-card{padding:28px;border-radius:24px}
      .footer-note{display:block}
    }
    @media (max-width:479.98px){
      h1{font-size:31px}
      .stat-grid{grid-template-columns:1fr}
      .brand-text{max-width:230px}
      .nav-links{gap:6px}
      .nav-link-pill{padding:8px 12px;font-size:13px}
      .hero-kv::before,.hero-kv::after{display:none}
      .section-head{margin-bottom:24px}
    }

/* roulang page: category1 */
:root{
      --brand-purple:#7C3AED;
      --brand-pink:#EC4899;
      --brand-orange:#F97316;
      --warm-orange:#F59E0B;
      --rose:#E11D48;
      --violet:#8B5CF6;
      --mint:#10B981;
      --ink:#24182F;
      --muted:#75677F;
      --soft-bg:#FFF7FB;
      --soft-bg-2:#F8F5FF;
      --soft-bg-3:#FFF9F1;
      --card:#FFFFFF;
      --line:rgba(124,58,237,.14);
      --line-strong:rgba(236,72,153,.24);
      --shadow:0 22px 60px rgba(76,29,149,.14);
      --shadow-sm:0 12px 30px rgba(76,29,149,.08);
      --radius-xl:34px;
      --radius-lg:26px;
      --radius-md:20px;
      --radius-pill:999px;
      --ease:all .22s ease;
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--ink);
      line-height:1.75;
      background:
        radial-gradient(circle at 8% 3%, rgba(236,72,153,.16), transparent 30%),
        radial-gradient(circle at 86% 8%, rgba(249,115,22,.15), transparent 28%),
        radial-gradient(circle at 50% 45%, rgba(124,58,237,.10), transparent 36%),
        linear-gradient(180deg,var(--soft-bg),var(--soft-bg-2) 52%,var(--soft-bg-3));
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--brand-pink)}
    img,svg{max-width:100%}
    button,input{font:inherit}
    ::selection{background:rgba(236,72,153,.22)}
    .container{max-width:var(--container)}
    .section-space{padding:82px 0}
    .section-space-sm{padding:56px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:var(--radius-pill);
      color:var(--brand-purple);
      background:rgba(124,58,237,.08);
      border:1px solid var(--line);
      font-size:13px;
      font-weight:800;
      margin-bottom:14px;
    }
    .section-kicker::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--brand-purple),var(--brand-pink),var(--brand-orange));
      box-shadow:0 0 0 5px rgba(236,72,153,.10);
    }
    .section-title{
      font-size:36px;
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.03em;
      margin:0 0 14px;
    }
    .section-desc{
      color:var(--muted);
      font-size:16px;
      max-width:760px;
      margin:0;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      padding:14px 0;
      background:rgba(255,247,251,.78);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(124,58,237,.10);
    }
    .search-navbar{
      display:grid;
      grid-template-columns:auto minmax(320px,1fr) auto;
      gap:18px;
      align-items:center;
    }
    .brand-logo{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
      color:var(--ink);
      font-weight:900;
    }
    .brand-mark,.footer-logo-dot{
      width:38px;
      height:38px;
      flex:0 0 38px;
      border-radius:15px;
      background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,.95), transparent 21%),
        linear-gradient(135deg,var(--brand-purple),var(--brand-pink),var(--brand-orange));
      box-shadow:0 12px 26px rgba(236,72,153,.25);
    }
    .brand-text{
      display:block;
      max-width:245px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
      font-size:17px;
      letter-spacing:-.02em;
    }
    .nav-search{
      height:50px;
      display:flex;
      align-items:center;
      gap:10px;
      padding:6px 7px 6px 16px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.86);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      min-width:0;
    }
    .search-icon{
      width:21px;
      height:21px;
      flex:0 0 21px;
      color:var(--brand-purple);
    }
    .nav-search input{
      flex:1;
      min-width:0;
      border:0;
      outline:0;
      background:transparent;
      color:var(--ink);
      font-size:15px;
    }
    .nav-search input::placeholder{color:#9a8ca4}
    .nav-search:focus-within{
      border-color:rgba(236,72,153,.45);
      box-shadow:0 0 0 .25rem rgba(236,72,153,.15), var(--shadow-sm);
    }
    .search-submit{
      border:0;
      border-radius:var(--radius-pill);
      padding:9px 18px;
      color:#fff;
      font-weight:800;
      background:linear-gradient(135deg,var(--brand-purple),var(--brand-pink),var(--brand-orange));
      box-shadow:0 10px 22px rgba(236,72,153,.22);
      transition:var(--ease);
    }
    .search-submit:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(236,72,153,.30)}
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
    }
    .nav-link-pill{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:9px 14px;
      border-radius:var(--radius-pill);
      color:var(--muted);
      font-size:14px;
      font-weight:800;
    }
    .nav-link-pill:hover{
      color:var(--brand-purple);
      background:rgba(124,58,237,.08);
    }
    .nav-link-pill.active{
      color:#fff;
      background:linear-gradient(135deg,var(--brand-purple),var(--brand-pink));
      box-shadow:0 10px 22px rgba(124,58,237,.20);
    }
    .category-hero{
      position:relative;
      margin-top:34px;
      padding:54px 0 38px;
      overflow:hidden;
    }
    .category-hero-card{
      position:relative;
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 16% 14%, rgba(255,255,255,.72), transparent 22%),
        radial-gradient(circle at 88% 20%, rgba(249,115,22,.24), transparent 24%),
        linear-gradient(135deg,rgba(124,58,237,.95),rgba(236,72,153,.88) 56%,rgba(249,115,22,.88));
      color:#fff;
      padding:42px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .category-hero-card::before{
      content:"";
      position:absolute;
      width:280px;
      height:280px;
      right:-80px;
      top:-80px;
      border-radius:50%;
      border:44px solid rgba(255,255,255,.14);
    }
    .category-hero-card::after{
      content:"";
      position:absolute;
      width:160px;
      height:160px;
      left:48%;
      bottom:-70px;
      border-radius:50%;
      background:rgba(255,255,255,.13);
      filter:blur(2px);
    }
    .hero-content{position:relative;z-index:2}
    .hero-tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.22);
      font-weight:800;
      font-size:13px;
      margin-bottom:16px;
    }
    .hero-tag span{
      width:8px;
      height:8px;
      border-radius:50%;
      background:#fff;
      box-shadow:0 0 0 5px rgba(255,255,255,.16);
    }
    h1{
      max-width:780px;
      font-size:48px;
      line-height:1.14;
      font-weight:950;
      letter-spacing:-.05em;
      margin:0 0 16px;
    }
    .hero-lead{
      max-width:680px;
      color:rgba(255,255,255,.88);
      font-size:17px;
      margin:0 0 26px;
    }
    .hero-search-panel{
      position:relative;
      z-index:2;
      padding:18px;
      border-radius:26px;
      background:rgba(255,255,255,.18);
      border:1px solid rgba(255,255,255,.25);
      backdrop-filter:blur(10px);
    }
    .page-search{
      display:flex;
      gap:10px;
      align-items:center;
      padding:8px;
      background:rgba(255,255,255,.96);
      border-radius:var(--radius-pill);
      box-shadow:0 14px 30px rgba(76,29,149,.16);
    }
    .page-search input{
      flex:1;
      min-width:0;
      border:0;
      outline:0;
      padding:0 10px 0 16px;
      background:transparent;
      color:var(--ink);
    }
    .hero-mini-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:14px;
    }
    .mini-stat{
      padding:14px;
      border-radius:20px;
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.18);
    }
    .mini-stat strong{
      display:block;
      font-size:22px;
      line-height:1.1;
    }
    .mini-stat span{
      display:block;
      margin-top:4px;
      color:rgba(255,255,255,.78);
      font-size:12px;
      font-weight:700;
    }
    .gradient-btn,.ghost-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:var(--radius-pill);
      padding:12px 21px;
      min-height:46px;
      border:0;
      font-weight:900;
      transition:var(--ease);
      cursor:pointer;
    }
    .gradient-btn{
      color:#fff;
      background:linear-gradient(135deg,var(--brand-purple),var(--brand-pink),var(--brand-orange));
      box-shadow:0 14px 28px rgba(236,72,153,.24);
    }
    .gradient-btn:hover{color:#fff;transform:translateY(-2px);box-shadow:0 18px 34px rgba(236,72,153,.32)}
    .ghost-btn{
      color:var(--brand-purple);
      background:rgba(255,255,255,.86);
      border:1px solid rgba(124,58,237,.16);
    }
    .ghost-btn:hover{color:var(--brand-purple);background:#fff;transform:translateY(-2px);border-color:rgba(236,72,153,.32)}
    .filter-strip{
      padding:20px 0 8px;
    }
    .filter-shell{
      padding:18px;
      border-radius:28px;
      background:rgba(255,255,255,.72);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .filter-row{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .filter-label{
      color:var(--muted);
      font-size:13px;
      font-weight:900;
      margin-right:4px;
    }
    .filter-chip{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border:1px solid var(--line);
      border-radius:var(--radius-pill);
      padding:9px 14px;
      background:rgba(255,255,255,.72);
      color:var(--muted);
      font-size:13px;
      font-weight:850;
      transition:var(--ease);
      cursor:pointer;
      white-space:nowrap;
    }
    .filter-chip::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:rgba(124,58,237,.30);
    }
    .filter-chip:hover{
      transform:translateY(-2px);
      color:var(--brand-purple);
      border-color:var(--line-strong);
      box-shadow:0 10px 24px rgba(76,29,149,.08);
    }
    .filter-chip.active{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(135deg,var(--brand-purple),var(--brand-pink),var(--brand-orange));
      box-shadow:0 12px 26px rgba(236,72,153,.20);
    }
    .filter-chip.active::before{background:#fff}
    .category-content-layout{padding:42px 0 78px}
    .task-list{
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    .task-card{
      position:relative;
      display:grid;
      grid-template-columns:64px minmax(0,1fr) 190px;
      gap:18px;
      align-items:center;
      padding:20px;
      border-radius:28px;
      background:rgba(255,255,255,.82);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
      overflow:hidden;
    }
    .task-card::after{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background:linear-gradient(90deg,rgba(236,72,153,.06),transparent 36%);
      opacity:0;
      transition:var(--ease);
    }
    .task-card:hover{
      transform:translateY(-4px);
      border-color:var(--line-strong);
      box-shadow:var(--shadow);
    }
    .task-card:hover::after{opacity:1}
    .task-index{
      position:relative;
      z-index:1;
      width:54px;
      height:54px;
      border-radius:20px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:18px;
      font-weight:950;
      background:linear-gradient(135deg,var(--brand-purple),var(--brand-pink));
      box-shadow:0 14px 26px rgba(124,58,237,.18);
    }
    .task-body{position:relative;z-index:1;min-width:0}
    .task-body h3{
      margin:0 0 7px;
      font-size:20px;
      line-height:1.3;
      font-weight:950;
      letter-spacing:-.02em;
    }
    .task-body p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:15px;
      line-height:1.65;
    }
    .tag-group{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .soft-tag,.stat-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:var(--radius-pill);
      padding:6px 10px;
      font-size:12px;
      font-weight:850;
      border:1px solid var(--line);
      color:var(--brand-purple);
      background:rgba(124,58,237,.07);
    }
    .soft-tag.orange{color:#9A4B00;background:rgba(245,158,11,.12);border-color:rgba(245,158,11,.22)}
    .soft-tag.green{color:#067A58;background:rgba(16,185,129,.10);border-color:rgba(16,185,129,.20)}
    .task-action{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap:12px;
      align-items:stretch;
    }
    .heat-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:var(--muted);
      font-size:12px;
      font-weight:850;
    }
    .heat-num{
      color:var(--rose);
      font-size:16px;
      font-weight:950;
    }
    .progress{
      height:9px;
      border-radius:var(--radius-pill);
      background:rgba(124,58,237,.10);
      overflow:hidden;
    }
    .progress-bar{
      border-radius:var(--radius-pill);
      background:linear-gradient(90deg,var(--brand-purple),var(--brand-pink),var(--brand-orange));
    }
    .side-stack{
      display:flex;
      flex-direction:column;
      gap:18px;
      position:sticky;
      top:98px;
    }
    .data-card,.activity-card{
      border-radius:28px;
      background:rgba(255,255,255,.80);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      padding:22px;
      transition:var(--ease);
    }
    .data-card:hover,.activity-card:hover{
      transform:translateY(-3px);
      border-color:var(--line-strong);
      box-shadow:var(--shadow);
    }
    .data-card h3,.activity-card h3{
      margin:0 0 14px;
      font-size:19px;
      font-weight:950;
    }
    .heat-meter{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin:14px 0 16px;
    }
    .heat-box{
      padding:15px;
      border-radius:20px;
      background:linear-gradient(180deg,rgba(248,245,255,.95),rgba(255,247,251,.95));
      border:1px solid var(--line);
    }
    .heat-box strong{
      display:block;
      font-size:26px;
      line-height:1.1;
      font-weight:950;
      color:var(--brand-purple);
    }
    .heat-box span{
      color:var(--muted);
      font-size:12px;
      font-weight:800;
    }
    .side-tip{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .rule-list{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .rule-list li{
      display:flex;
      gap:10px;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }
    .rule-dot{
      width:20px;
      height:20px;
      flex:0 0 20px;
      border-radius:9px;
      margin-top:3px;
      background:linear-gradient(135deg,var(--brand-purple),var(--brand-pink));
      box-shadow:0 8px 16px rgba(236,72,153,.16);
    }
    .update-card{
      background:
        radial-gradient(circle at 78% 16%, rgba(249,115,22,.20), transparent 30%),
        linear-gradient(135deg,#2a173b,#5b207c 58%,#9f276b);
      color:#fff;
      border-color:rgba(255,255,255,.12);
    }
    .update-card .side-tip{color:rgba(255,255,255,.78)}
    .update-card .progress{background:rgba(255,255,255,.18)}
    .update-card .stat-badge{
      color:#fff;
      background:rgba(255,255,255,.14);
      border-color:rgba(255,255,255,.18);
    }
    .custom-accordion{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .custom-accordion .accordion-item{
      border:1px solid var(--line);
      border-radius:24px;
      overflow:hidden;
      background:rgba(255,255,255,.78);
      box-shadow:var(--shadow-sm);
    }
    .custom-accordion .accordion-button{
      padding:20px 22px;
      color:var(--ink);
      background:transparent;
      font-weight:950;
      box-shadow:none;
    }
    .custom-accordion .accordion-button:not(.collapsed){
      color:var(--brand-purple);
      background:linear-gradient(90deg,rgba(124,58,237,.08),rgba(236,72,153,.07));
    }
    .custom-accordion .accordion-button::after{
      filter:hue-rotate(238deg) saturate(1.6);
    }
    .custom-accordion .accordion-body{
      padding:0 22px 22px;
      color:var(--muted);
      line-height:1.8;
    }
    .bottom-cta{
      padding:0 0 88px;
    }
    .cta-card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      padding:42px;
      background:
        radial-gradient(circle at 16% 24%, rgba(236,72,153,.18), transparent 28%),
        radial-gradient(circle at 82% 28%, rgba(249,115,22,.18), transparent 26%),
        linear-gradient(135deg,rgba(255,255,255,.90),rgba(248,245,255,.88));
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .cta-card::after{
      content:"";
      position:absolute;
      right:-48px;
      bottom:-64px;
      width:220px;
      height:220px;
      border-radius:50%;
      background:linear-gradient(135deg,rgba(124,58,237,.18),rgba(236,72,153,.12));
    }
    .cta-content{position:relative;z-index:1}
    .cta-card h2{
      margin:0 0 12px;
      font-size:34px;
      line-height:1.18;
      font-weight:950;
    }
    .cta-card p{
      margin:0;
      max-width:690px;
      color:var(--muted);
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .site-footer{
      padding:54px 0 28px;
      color:rgba(255,255,255,.82);
      background:
        radial-gradient(circle at 18% 0%, rgba(236,72,153,.30), transparent 28%),
        linear-gradient(135deg,#24182F,#3a1b58 55%,#5c2259);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
    }
    .footer-title{
      color:#fff;
      font-size:19px;
      font-weight:950;
    }
    .site-footer p{
      max-width:620px;
      margin:0;
      color:rgba(255,255,255,.72);
    }
    .footer-heading{
      color:#fff;
      font-weight:950;
      margin-bottom:13px;
    }
    .footer-links{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footer-links a{
      color:rgba(255,255,255,.72);
      font-weight:700;
    }
    .footer-links a:hover{color:#FFD1E8;transform:translateX(3px)}
    .footer-note{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.60);
      font-size:13px;
    }
    a:focus-visible,button:focus-visible,input:focus-visible{
      outline:0;
      box-shadow:0 0 0 .25rem rgba(236,72,153,.18);
    }
    @media (max-width:1199px){
      .search-navbar{grid-template-columns:1fr;gap:12px}
      .brand-logo{justify-content:center}
      .brand-text{max-width:520px}
      .nav-links{justify-content:center}
      h1{font-size:42px}
      .task-card{grid-template-columns:58px minmax(0,1fr) 170px}
    }
    @media (max-width:991px){
      .section-space{padding:62px 0}
      .category-hero-card{padding:34px}
      h1{font-size:38px}
      .side-stack{position:static;margin-top:22px}
      .task-card{grid-template-columns:58px minmax(0,1fr)}
      .task-action{grid-column:1 / -1}
      .heat-row{justify-content:flex-start}
    }
    @media (max-width:767px){
      .site-header{padding:12px 0}
      .brand-text{max-width:calc(100vw - 92px);font-size:16px}
      .nav-search{height:auto;min-height:50px}
      .search-submit{padding:9px 14px}
      .nav-links{
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:2px;
      }
      .category-hero{margin-top:18px;padding:34px 0 24px}
      .category-hero-card{padding:26px 20px;border-radius:24px}
      h1{font-size:32px;letter-spacing:-.035em}
      .hero-lead{font-size:15px}
      .page-search{border-radius:20px;align-items:stretch;flex-direction:column}
      .page-search input{padding:10px 12px}
      .page-search .gradient-btn{width:100%}
      .hero-mini-stats{grid-template-columns:1fr}
      .filter-shell{border-radius:22px}
      .filter-row{flex-wrap:nowrap;overflow-x:auto;padding-bottom:4px}
      .filter-label{flex:0 0 auto}
      .category-content-layout{padding:32px 0 58px}
      .task-card{grid-template-columns:48px minmax(0,1fr);gap:14px;padding:16px;border-radius:22px}
      .task-index{width:46px;height:46px;border-radius:17px}
      .task-body h3{font-size:18px}
      .section-title{font-size:28px}
      .cta-card{padding:28px 20px;border-radius:24px}
      .cta-card h2{font-size:27px}
      .cta-actions .gradient-btn,.cta-actions .ghost-btn{width:100%}
      .footer-note{flex-direction:column}
    }
    @media (max-width:520px){
      .container{padding-left:16px;padding-right:16px}
      .brand-mark{width:34px;height:34px;flex-basis:34px;border-radius:13px}
      .nav-search{padding-left:13px}
      .nav-link-pill{padding:8px 12px}
      h1{font-size:30px}
      .mini-stat strong{font-size:20px}
      .heat-meter{grid-template-columns:1fr}
      .task-card{grid-template-columns:1fr}
      .task-index{width:42px;height:42px}
    }
