/* roulang page: index */
:root{
      --bg:#0E0D12;
      --bg-2:#15131A;
      --bg-3:#1D1A24;
      --panel:#201B27;
      --panel-2:#292233;
      --primary:#C72C5B;
      --primary-2:#F04E7B;
      --secondary:#8A4DF7;
      --secondary-2:#A855F7;
      --amber:#F6A623;
      --text:#F6F0F4;
      --muted:#B9AEB8;
      --soft:#8E808C;
      --light:#F7F3F6;
      --light-text:#231D24;
      --light-muted:#6B5E68;
      --line:rgba(255,255,255,.09);
      --line-2:rgba(255,255,255,.14);
      --shadow:0 22px 60px rgba(0,0,0,.34);
      --shadow-soft:0 14px 34px rgba(0,0,0,.24);
      --radius-lg:26px;
      --radius:20px;
      --radius-sm:14px;
      --container:1240px;
      --ease:all .28s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 18% 6%, rgba(199,44,91,.24), transparent 34%),
        radial-gradient(circle at 84% 14%, rgba(138,77,247,.21), transparent 34%),
        linear-gradient(180deg,#0E0D12 0%,#15131A 48%,#0E0D12 100%);
      line-height:1.75;
      overflow-x:hidden;
      padding-bottom:92px;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:#fff}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(199,44,91,.45);color:#fff}
    .site-wrap{min-height:100vh;position:relative}
    .container{
      width:min(calc(100% - 36px), var(--container));
      margin:0 auto;
    }
    .skip-link{
      position:absolute;left:-999px;top:12px;background:#fff;color:#111;padding:10px 14px;border-radius:10px;z-index:9999;
    }
    .skip-link:focus{left:12px}
    .topline{
      border-bottom:1px solid var(--line);
      background:rgba(14,13,18,.82);
      backdrop-filter:blur(14px);
      position:sticky;
      top:0;
      z-index:1000;
    }
    .nav-bar{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:15px;
      background:linear-gradient(135deg,var(--primary),var(--secondary));
      box-shadow:0 12px 30px rgba(199,44,91,.34);
      display:grid;place-items:center;
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark:before{
      content:"";
      width:19px;height:24px;border-radius:8px;
      background:rgba(255,255,255,.9);
      box-shadow:8px 5px 0 rgba(255,255,255,.35);
      transform:rotate(-8deg);
    }
    .brand-text{
      max-width:330px;
      line-height:1.18;
      font-size:17px;
      color:#fff;
      white-space:normal;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:7px;
      flex:1;
    }
    .nav-link{
      position:relative;
      padding:10px 14px;
      border-radius:999px;
      color:var(--muted);
      font-weight:800;
      font-size:14px;
    }
    .nav-link:hover{
      background:rgba(255,255,255,.07);
      color:#fff;
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(199,44,91,.26),rgba(138,77,247,.20));
      border:1px solid rgba(255,255,255,.10);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .mega-holder{position:relative}
    .mega-toggle{
      border:1px solid var(--line-2);
      background:rgba(255,255,255,.06);
      color:#fff;
      border-radius:999px;
      padding:11px 16px;
      font-size:14px;
      font-weight:900;
      transition:var(--ease);
    }
    .mega-toggle:hover,.mega-holder:focus-within .mega-toggle{
      border-color:rgba(240,78,123,.55);
      background:rgba(199,44,91,.16);
      transform:translateY(-1px);
    }
    .mega-panel{
      position:absolute;
      right:0;
      top:calc(100% + 14px);
      width:620px;
      max-width:calc(100vw - 36px);
      padding:16px;
      border-radius:24px;
      background:rgba(27,23,34,.96);
      border:1px solid var(--line-2);
      box-shadow:var(--shadow);
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:var(--ease);
      backdrop-filter:blur(18px);
    }
    .mega-holder:hover .mega-panel,.mega-holder:focus-within .mega-panel,.mega-panel.open{
      opacity:1;visibility:visible;transform:translateY(0);
    }
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .mega-card{
      padding:14px;
      border-radius:18px;
      background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
      border:1px solid var(--line);
      min-height:112px;
    }
    .mega-card:hover{border-color:rgba(199,44,91,.45);transform:translateY(-3px)}
    .mega-icon{
      width:34px;height:34px;border-radius:12px;
      display:grid;place-items:center;
      background:rgba(199,44,91,.18);
      color:#fff;
      margin-bottom:9px;
      font-weight:900;
    }
    .mega-card strong{display:block;font-size:14px;color:#fff;margin-bottom:4px}
    .mega-card span{display:block;color:var(--muted);font-size:12px;line-height:1.55}
    .mobile-menu-btn{
      display:none;
      width:44px;height:44px;border:1px solid var(--line-2);
      border-radius:14px;background:rgba(255,255,255,.06);color:#fff;
    }
    .mobile-panel{
      display:none;
      border-top:1px solid var(--line);
      padding:12px 0 18px;
    }
    .mobile-panel a{
      display:block;
      padding:12px 14px;
      border-radius:14px;
      color:var(--muted);
      font-weight:800;
      margin:4px 0;
      background:rgba(255,255,255,.035);
    }
    .mobile-panel a.active{color:#fff;background:rgba(199,44,91,.18)}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      border:none;
      border-radius:999px;
      padding:13px 20px;
      font-weight:900;
      line-height:1;
      transition:var(--ease);
      min-height:46px;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--secondary));
      box-shadow:0 16px 34px rgba(199,44,91,.28);
    }
    .btn-primary:hover,.btn-primary:focus{
      transform:translateY(-3px);
      box-shadow:0 22px 42px rgba(138,77,247,.32);
      color:#fff;
    }
    .btn-secondary{
      color:#fff;
      background:rgba(255,255,255,.065);
      border:1px solid var(--line-2);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      color:#fff;
      background:rgba(199,44,91,.16);
      border-color:rgba(240,78,123,.48);
      transform:translateY(-2px);
    }
    .btn-light{
      color:#1d1720;
      background:#fff;
      box-shadow:0 14px 28px rgba(0,0,0,.18);
    }
    .btn-light:hover{color:#111;transform:translateY(-2px)}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:7px 11px;
      border:1px solid rgba(246,166,35,.32);
      background:rgba(246,166,35,.10);
      color:#FFD48A;
      border-radius:999px;
      font-size:13px;
      font-weight:900;
      margin-bottom:16px;
    }
    .dot{
      width:8px;height:8px;border-radius:999px;background:#49E49A;
      box-shadow:0 0 0 6px rgba(73,228,154,.12);
    }
    .section{padding:74px 0}
    .section-tight{padding:46px 0}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:28px;
      margin-bottom:26px;
    }
    .section-title{
      margin:0;
      font-size:clamp(25px,3vw,38px);
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.035em;
      color:#fff;
    }
    .section-desc{
      max-width:680px;
      color:var(--muted);
      margin:10px 0 0;
      font-size:16px;
      line-height:1.8;
    }
    .hero{
      padding:54px 0 78px;
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:18px auto auto 50%;
      transform:translateX(-50%);
      width:950px;height:420px;
      background:radial-gradient(circle,rgba(240,78,123,.20),transparent 62%);
      pointer-events:none;
      filter:blur(6px);
    }
    .hero-stage{
      position:relative;
      display:grid;
      grid-template-columns:1fr minmax(420px,560px) 1fr;
      gap:24px;
      align-items:center;
    }
    .hero-side{
      display:grid;
      gap:16px;
    }
    .value-pill{
      padding:18px;
      border-radius:22px;
      background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
    }
    .value-pill:after{
      content:"";
      position:absolute;right:-36px;top:-36px;width:86px;height:86px;border-radius:999px;
      background:rgba(199,44,91,.17);
    }
    .value-pill b{display:block;color:#fff;font-size:16px;margin-bottom:5px}
    .value-pill span{display:block;color:var(--muted);font-size:13px;line-height:1.65}
    .product-stage{
      min-height:560px;
      border-radius:34px;
      padding:28px;
      background:
        linear-gradient(135deg,rgba(199,44,91,.18),rgba(138,77,247,.12)),
        rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .product-stage:before{
      content:"";
      position:absolute;inset:-2px;
      background:
        radial-gradient(circle at 30% 10%,rgba(255,255,255,.16),transparent 24%),
        radial-gradient(circle at 80% 60%,rgba(168,85,247,.22),transparent 32%);
      pointer-events:none;
    }
    .stage-inner{position:relative;z-index:1;text-align:center}
    h1{
      margin:10px auto 18px;
      font-size:clamp(32px,4.2vw,54px);
      line-height:1.08;
      letter-spacing:-.05em;
      font-weight:950;
      color:#fff;
      max-width:900px;
    }
    .hero-intro{
      color:#D6CBD4;
      font-size:17px;
      line-height:1.85;
      max-width:780px;
      margin:0 auto 22px;
    }
    .hero-actions{
      display:flex;flex-wrap:wrap;justify-content:center;gap:12px;
      margin:22px 0 20px;
    }
    .hero-data{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin:24px auto 0;
      max-width:520px;
    }
    .mini-stat{
      border-radius:18px;
      background:rgba(14,13,18,.55);
      border:1px solid var(--line);
      padding:13px 10px;
    }
    .mini-stat strong{display:block;color:#fff;font-size:22px;line-height:1.1}
    .mini-stat span{display:block;color:var(--muted);font-size:12px;margin-top:4px}
    .cover-stack{
      margin:28px auto 0;
      width:min(420px,100%);
      height:205px;
      position:relative;
    }
    .cover-card{
      position:absolute;
      width:138px;height:184px;
      border-radius:20px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.18);
      box-shadow:0 20px 42px rgba(0,0,0,.28);
      background:linear-gradient(160deg,#3E2534,#BD315C 48%,#6F3DF0);
      transition:var(--ease);
    }
    .cover-card:nth-child(1){left:0;top:18px;transform:rotate(-8deg)}
    .cover-card:nth-child(2){left:50%;top:0;transform:translateX(-50%) scale(1.08);z-index:2;background:linear-gradient(160deg,#271C2F,#C72C5B 52%,#A855F7)}
    .cover-card:nth-child(3){right:0;top:22px;transform:rotate(8deg);background:linear-gradient(160deg,#2E1B25,#7B3FF2 50%,#F04E7B)}
    .cover-card:before{
      content:"";
      position:absolute;inset:18px 24px 54px;border-radius:60px 60px 18px 18px;
      background:rgba(255,255,255,.22);
      filter:blur(.2px);
    }
    .cover-card:after{
      content:"授权封面";
      position:absolute;left:10px;right:10px;bottom:10px;
      padding:8px 8px;border-radius:13px;
      background:linear-gradient(180deg,transparent,rgba(0,0,0,.72));
      color:#fff;font-size:12px;font-weight:900;
    }
    .badge-row{
      display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin-top:18px;
    }
    .badge{
      display:inline-flex;align-items:center;gap:6px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.06);
      padding:7px 10px;
      color:#DCD2DA;
      font-size:12px;
      font-weight:800;
    }
    .channel-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr 1fr;
      gap:18px;
      align-items:stretch;
    }
    .feature-card{
      border-radius:var(--radius-lg);
      padding:24px;
      background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .feature-card:hover{
      transform:translateY(-6px);
      border-color:rgba(199,44,91,.44);
      box-shadow:var(--shadow);
    }
    .feature-card.large{min-height:270px}
    .feature-icon{
      width:52px;height:52px;border-radius:18px;
      display:grid;place-items:center;
      color:#fff;
      font-size:22px;
      font-weight:900;
      background:linear-gradient(135deg,var(--primary),var(--secondary));
      box-shadow:0 12px 30px rgba(199,44,91,.25);
      margin-bottom:16px;
    }
    .feature-card h3{
      margin:0 0 10px;
      color:#fff;
      font-size:22px;
      font-weight:900;
      line-height:1.25;
    }
    .feature-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.75}
    .progress-line{
      height:8px;border-radius:999px;background:rgba(255,255,255,.08);
      overflow:hidden;margin-top:18px;
    }
    .progress-line i{
      display:block;height:100%;border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--secondary));
    }
    .data-strip{
      border-radius:30px;
      padding:22px;
      background:
        linear-gradient(135deg,rgba(199,44,91,.15),rgba(138,77,247,.13)),
        rgba(255,255,255,.045);
      border:1px solid var(--line-2);
      box-shadow:var(--shadow-soft);
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .data-item{
      padding:18px;
      border-radius:20px;
      background:rgba(14,13,18,.45);
      border:1px solid var(--line);
    }
    .data-item strong{
      display:block;
      color:#fff;
      font-size:30px;
      line-height:1.05;
      font-weight:950;
    }
    .data-item span{display:block;color:var(--muted);font-size:13px;margin-top:7px}
    .lead-panel{
      display:grid;
      grid-template-columns:1fr .95fr;
      gap:24px;
      align-items:stretch;
      border-radius:32px;
      padding:24px;
      background:linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .lead-copy{
      padding:18px;
    }
    .step-list{display:grid;gap:12px;margin-top:22px}
    .step-item{
      display:flex;gap:12px;align-items:flex-start;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.055);
      border:1px solid var(--line);
    }
    .step-num{
      width:30px;height:30px;border-radius:12px;
      display:grid;place-items:center;
      background:rgba(199,44,91,.22);
      color:#fff;font-weight:950;flex:0 0 auto;
    }
    .step-item b{display:block;color:#fff;margin-bottom:2px}
    .step-item span{display:block;color:var(--muted);font-size:13px;line-height:1.6}
    .lead-form{
      padding:22px;
      border-radius:26px;
      background:rgba(14,13,18,.58);
      border:1px solid var(--line-2);
    }
    .lead-form label{
      color:#F4EAF1;
      font-weight:900;
      font-size:14px;
      margin-bottom:7px;
    }
    .lead-form input,.lead-form select,.lead-form textarea{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.075);
      color:#fff;
      box-shadow:none;
      min-height:48px;
      padding:12px 14px;
      margin-bottom:14px;
      transition:var(--ease);
    }
    .lead-form select option{color:#1d1720}
    .lead-form textarea{min-height:96px;resize:vertical}
    .lead-form input:focus,.lead-form select:focus,.lead-form textarea:focus{
      outline:none;
      border-color:rgba(240,78,123,.70);
      box-shadow:0 0 0 4px rgba(199,44,91,.12);
      background:rgba(255,255,255,.10);
    }
    .form-note{
      color:var(--muted);
      font-size:12px;
      line-height:1.65;
      margin-top:10px;
    }
    .track-wrap{
      position:relative;
    }
    .track-controls{
      display:flex;gap:10px;align-items:center;
    }
    .track-btn{
      width:42px;height:42px;border-radius:14px;
      border:1px solid var(--line-2);
      background:rgba(255,255,255,.06);
      color:#fff;
      transition:var(--ease);
    }
    .track-btn:hover{background:rgba(199,44,91,.18);border-color:rgba(199,44,91,.5)}
    .resource-track{
      display:grid;
      grid-auto-flow:column;
      grid-auto-columns:210px;
      gap:16px;
      overflow-x:auto;
      scroll-snap-type:x mandatory;
      padding:8px 2px 18px;
      scrollbar-width:thin;
      scrollbar-color:var(--primary) transparent;
    }
    .resource-track::-webkit-scrollbar{height:8px}
    .resource-track::-webkit-scrollbar-thumb{background:rgba(199,44,91,.65);border-radius:999px}
    .resource-card{
      scroll-snap-align:start;
      height:300px;
      border-radius:22px;
      overflow:hidden;
      position:relative;
      border:1px solid rgba(255,255,255,.12);
      background:linear-gradient(160deg,#2A1C26,#823252 48%,#5134A7);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
    }
    .resource-card:nth-child(2n){background:linear-gradient(160deg,#241B2E,#7B3FF2 48%,#C72C5B)}
    .resource-card:nth-child(3n){background:linear-gradient(160deg,#30202D,#C72C5B 48%,#A855F7)}
    .resource-card:hover{
      transform:translateY(-6px) scale(1.025);
      border-color:rgba(240,78,123,.6);
      box-shadow:0 24px 60px rgba(0,0,0,.38);
    }
    .resource-card:before{
      content:"";
      position:absolute;
      left:36px;right:36px;top:26px;height:150px;
      border-radius:80px 80px 28px 28px;
      background:
        radial-gradient(circle at 50% 28%,rgba(255,255,255,.28),transparent 20%),
        linear-gradient(180deg,rgba(255,255,255,.22),rgba(255,255,255,.05));
      filter:blur(.1px);
      transition:var(--ease);
    }
    .resource-card:hover:before{transform:scale(1.06)}
    .resource-layer{
      position:absolute;left:0;right:0;bottom:0;
      padding:74px 15px 15px;
      background:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.88) 72%);
    }
    .resource-meta{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:8px}
    .tag{
      display:inline-flex;align-items:center;
      border-radius:999px;
      padding:5px 8px;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.12);
      color:#fff;
      font-size:11px;
      font-weight:900;
      line-height:1;
    }
    .tag.hot{background:rgba(199,44,91,.28);border-color:rgba(240,78,123,.35)}
    .tag.safe{background:rgba(246,166,35,.16);border-color:rgba(246,166,35,.28);color:#FFD48A}
    .resource-card h3{
      margin:0 0 5px;
      color:#fff;
      font-size:16px;
      line-height:1.25;
      font-weight:950;
    }
    .resource-card p{
      margin:0 0 11px;
      color:#CFC4CD;
      font-size:12px;
      line-height:1.55;
    }
    .link-btn{
      display:inline-flex;align-items:center;gap:6px;
      color:#fff;
      font-size:12px;
      font-weight:950;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(199,44,91,.42);
      border:1px solid rgba(255,255,255,.16);
    }
    .link-btn:hover{background:rgba(168,85,247,.48);color:#fff}
    .flow-line{
      margin-top:18px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
    }
    .flow-step{
      padding:12px;
      border-radius:16px;
      background:rgba(255,255,255,.05);
      border:1px solid var(--line);
      color:var(--muted);
      font-weight:800;
      font-size:13px;
      text-align:center;
    }
    .info-area{
      display:grid;
      grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);
      gap:22px;
      align-items:start;
    }
    .news-list{
      border-radius:26px;
      background:rgba(255,255,255,.055);
      border:1px solid var(--line);
      overflow:hidden;
    }
    .news-item{
      display:grid;
      grid-template-columns:110px 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px 20px;
      border-bottom:1px solid var(--line);
    }
    .news-item:last-child{border-bottom:none}
    .news-date{
      color:#FFD0DD;
      font-weight:950;
      font-size:13px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(199,44,91,.16);
      text-align:center;
    }
    .news-item a{
      color:#fff;
      font-size:16px;
      font-weight:950;
      line-height:1.45;
    }
    .news-item a:hover{color:#FF7FA2}
    .news-item p{
      margin:4px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .news-arrow{color:var(--soft);font-weight:950}
    .recommend-box{
      border-radius:26px;
      padding:22px;
      background:linear-gradient(180deg,rgba(199,44,91,.14),rgba(255,255,255,.04));
      border:1px solid var(--line-2);
      box-shadow:var(--shadow-soft);
    }
    .recommend-box h3{margin:0 0 12px;color:#fff;font-size:22px;font-weight:950}
    .check-list{
      list-style:none;
      padding:0;margin:16px 0 0;
      display:grid;gap:10px;
    }
    .check-list li{
      display:flex;gap:10px;align-items:flex-start;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }
    .check-list li:before{
      content:"✓";
      width:22px;height:22px;border-radius:8px;
      display:grid;place-items:center;
      background:rgba(73,228,154,.14);
      color:#68F0AC;
      font-weight:950;
      flex:0 0 auto;
      margin-top:2px;
    }
    .proof-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:stretch;
    }
    .tag-cloud{
      border-radius:28px;
      padding:22px;
      background:rgba(255,255,255,.055);
      border:1px solid var(--line);
    }
    .tag-cloud h3,.quote-panel h3{margin:0 0 14px;color:#fff;font-size:22px;font-weight:950}
    .cloud{
      display:flex;flex-wrap:wrap;gap:9px;
    }
    .cloud span{
      border-radius:999px;
      padding:8px 11px;
      color:#E7DDE5;
      background:rgba(255,255,255,.07);
      border:1px solid var(--line);
      font-size:13px;
      font-weight:800;
    }
    .quote-panel{
      display:grid;
      gap:12px;
    }
    .quote-card{
      border-radius:22px;
      padding:18px;
      background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
      border:1px solid var(--line);
    }
    .quote-card p{margin:0;color:#E9DFE7;font-size:14px;line-height:1.75}
    .quote-card span{display:block;color:var(--soft);font-size:12px;margin-top:8px}
    .faq-wrap{
      border-radius:30px;
      padding:8px;
      background:rgba(255,255,255,.05);
      border:1px solid var(--line);
    }
    .accordion{background:transparent;margin:0}
    .accordion-item{
      border-radius:22px!important;
      overflow:hidden;
      margin:8px;
      background:rgba(14,13,18,.48);
      border:1px solid var(--line);
      transition:var(--ease);
    }
    .accordion-item.is-active{
      border-color:rgba(199,44,91,.55);
      box-shadow:0 14px 34px rgba(199,44,91,.12);
    }
    .accordion-title{
      background:transparent!important;
      color:#fff!important;
      border:none!important;
      font-weight:950;
      font-size:16px;
      padding:18px 48px 18px 18px;
    }
    .accordion-title:before{
      color:#FF8BAC;
      font-size:22px;
      right:18px;
      margin-top:-12px;
      transition:var(--ease);
    }
    .is-active>.accordion-title:before{transform:rotate(45deg)}
    .accordion-content{
      background:rgba(255,255,255,.035)!important;
      color:var(--muted)!important;
      border:none!important;
      padding:0 18px 18px;
      line-height:1.8;
      font-size:14px;
    }
    .privacy-panel{
      border-radius:32px;
      padding:28px;
      background:
        linear-gradient(135deg,rgba(246,166,35,.11),rgba(199,44,91,.08)),
        rgba(255,255,255,.045);
      border:1px solid rgba(246,166,35,.22);
      display:grid;
      grid-template-columns:1fr .8fr;
      gap:24px;
      align-items:center;
    }
    .privacy-panel h2{margin:0 0 10px;color:#fff;font-size:30px;font-weight:950;line-height:1.2}
    .privacy-panel p{margin:0;color:#D7CCD4;line-height:1.85}
    .privacy-mini{
      display:grid;gap:10px;
    }
    .privacy-mini div{
      padding:13px 14px;border-radius:17px;
      background:rgba(14,13,18,.38);
      border:1px solid var(--line);
      color:#F4EAF1;
      font-weight:850;
      font-size:14px;
    }
    .floating-cta{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      z-index:1100;
      width:min(calc(100% - 28px),980px);
      border-radius:999px;
      padding:10px 12px 10px 18px;
      background:rgba(24,20,30,.92);
      border:1px solid rgba(255,255,255,.14);
      box-shadow:0 18px 52px rgba(0,0,0,.42);
      backdrop-filter:blur(18px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .floating-cta p{
      margin:0;color:#EDE3EA;font-size:14px;font-weight:800;
      white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
    }
    .floating-actions{display:flex;gap:8px;align-items:center;flex:0 0 auto}
    .floating-actions .btn{min-height:42px;padding:11px 16px;font-size:13px}
    footer{
      border-top:1px solid var(--line);
      background:#0B0A0E;
      padding:56px 0 34px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr 1fr;
      gap:24px;
    }
    .footer-brand{
      display:flex;align-items:center;gap:12px;margin-bottom:14px;
      color:#fff;font-weight:950;font-size:18px;line-height:1.25;
    }
    .footer-about{color:var(--muted);font-size:14px;line-height:1.8;margin:0}
    .footer-col h3{margin:0 0 14px;color:#fff;font-size:15px;font-weight:950}
    .footer-col a,.footer-col span{
      display:block;
      color:var(--muted);
      font-size:14px;
      margin:8px 0;
      line-height:1.7;
    }
    .footer-col a:hover{color:#FF7FA2;transform:translateX(3px)}
    .copyright{
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid var(--line);
      color:#817680;
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    @media (max-width:1100px){
      .hero-stage{grid-template-columns:1fr;gap:18px}
      .hero-side{grid-template-columns:repeat(2,1fr);order:2}
      .product-stage{order:1;min-height:auto}
      .channel-grid{grid-template-columns:1fr 1fr}
      .feature-card.large{grid-column:span 2;min-height:220px}
      .data-strip{grid-template-columns:repeat(2,1fr)}
      .lead-panel,.privacy-panel,.proof-grid,.info-area{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:860px){
      body{padding-bottom:84px}
      .desktop-nav,.nav-actions{display:none}
      .mobile-menu-btn{display:grid;place-items:center}
      .mobile-panel.open{display:block}
      .nav-bar{min-height:68px}
      .brand-text{font-size:15px;max-width:250px}
      .section{padding:56px 0}
      .section-head{align-items:flex-start;flex-direction:column;gap:14px}
      .channel-grid{grid-template-columns:1fr}
      .feature-card.large{grid-column:auto}
      .hero-side{grid-template-columns:1fr}
      .hero{padding:36px 0 58px}
      .product-stage{border-radius:28px;padding:22px}
      .cover-stack{height:190px}
      .cover-card{width:125px;height:166px}
      .flow-line{grid-template-columns:1fr 1fr}
      .news-item{grid-template-columns:1fr auto;gap:8px}
      .news-date{grid-column:1 / -1;justify-self:start}
      .floating-cta{border-radius:24px;bottom:10px;padding:10px}
      .floating-cta p{font-size:12px;white-space:normal;line-height:1.35}
      .floating-actions .btn-secondary{display:none}
    }
    @media (max-width:560px){
      .container{width:min(calc(100% - 24px), var(--container))}
      h1{font-size:32px}
      .hero-intro{font-size:15px}
      .hero-actions{flex-direction:column}
      .btn{width:100%}
      .hero-data,.data-strip{grid-template-columns:1fr}
      .cover-stack{height:170px}
      .cover-card{width:108px;height:146px;border-radius:17px}
      .resource-track{grid-auto-columns:72vw}
      .lead-panel{padding:14px;border-radius:26px}
      .lead-copy,.lead-form{padding:16px}
      .flow-line{grid-template-columns:1fr}
      .privacy-panel{padding:20px}
      .footer-grid{grid-template-columns:1fr}
      .copyright{display:block}
      .floating-actions .btn{padding:10px 12px;min-height:40px}
      .floating-cta{align-items:center}
    }

/* roulang page: category2 */
:root{
      --bg:#0e0d12;
      --bg-2:#15131a;
      --bg-3:#1d1a24;
      --panel:#211d2a;
      --panel-soft:rgba(255,255,255,.055);
      --primary:#c72c5b;
      --primary-2:#ff4f83;
      --purple:#7b3ff2;
      --purple-2:#a855f7;
      --amber:#f6a623;
      --text:#f6f0f4;
      --muted:#b9aeb8;
      --muted-2:#827683;
      --line:rgba(255,255,255,.09);
      --line-strong:rgba(255,255,255,.16);
      --light:#f7f3f6;
      --light-text:#231d24;
      --light-muted:#6b5e68;
      --radius-sm:12px;
      --radius:20px;
      --radius-lg:28px;
      --shadow:0 18px 50px rgba(0,0,0,.28);
      --shadow-strong:0 26px 80px rgba(0,0,0,.42);
      --container:1220px;
      --ease:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      background:
        radial-gradient(circle at 12% 3%,rgba(199,44,91,.25),transparent 30%),
        radial-gradient(circle at 86% 10%,rgba(123,63,242,.22),transparent 34%),
        linear-gradient(180deg,var(--bg),#121018 42%,#0c0b10 100%);
      color:var(--text);
      line-height:1.75;
      font-size:16px;
      padding-bottom:92px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--text)}
    img{max-width:100%;display:block}
    button,input,textarea{font-family:inherit}
    button{cursor:pointer}
    :focus-visible{outline:3px solid rgba(255,79,131,.45);outline-offset:3px}
    .container{
      width:min(calc(100% - 32px),var(--container));
      margin:0 auto;
    }
    .topline{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(14,13,18,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
    }
    .nav-bar{
      min-height:74px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      font-weight:900;
      letter-spacing:.01em;
    }
    .brand-mark{
      width:38px;
      height:38px;
      flex:0 0 38px;
      border-radius:14px;
      background:
        linear-gradient(135deg,var(--primary),var(--purple)),
        radial-gradient(circle at 30% 20%,rgba(255,255,255,.65),transparent 30%);
      box-shadow:0 12px 28px rgba(199,44,91,.35);
      position:relative;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:10px;
      border-radius:8px;
      border:1px solid rgba(255,255,255,.55);
      transform:rotate(10deg);
    }
    .brand-text{
      font-size:17px;
      line-height:1.25;
      color:var(--text);
      max-width:310px;
      white-space:normal;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:6px;
      padding:7px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.035);
    }
    .nav-link{
      padding:10px 15px;
      border-radius:999px;
      font-weight:700;
      font-size:14px;
      color:var(--muted);
    }
    .nav-link:hover{
      color:var(--text);
      background:rgba(255,255,255,.06);
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(199,44,91,.95),rgba(123,63,242,.95));
      box-shadow:0 10px 26px rgba(199,44,91,.28);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:none;
      border-radius:999px;
      padding:12px 18px;
      min-height:44px;
      font-weight:800;
      font-size:14px;
      line-height:1;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      box-shadow:0 14px 34px rgba(199,44,91,.34);
    }
    .btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 46px rgba(168,85,247,.36);
      filter:brightness(1.06);
      color:#fff;
    }
    .btn-secondary{
      border:1px solid var(--line-strong);
      color:var(--text);
      background:rgba(255,255,255,.055);
    }
    .btn-secondary:hover{
      border-color:rgba(255,79,131,.45);
      background:rgba(199,44,91,.14);
      transform:translateY(-2px);
      color:#fff;
    }
    .btn-ghost{
      color:var(--muted);
      border:1px solid transparent;
      background:transparent;
    }
    .btn-ghost:hover{color:#fff;border-color:var(--line)}
    .mega-holder{position:relative}
    .mega-toggle{
      border:1px solid var(--line);
      background:rgba(255,255,255,.04);
      color:var(--text);
      border-radius:999px;
      padding:11px 15px;
      font-size:14px;
      font-weight:800;
      transition:var(--ease);
    }
    .mega-toggle:hover{border-color:rgba(255,79,131,.35);background:rgba(199,44,91,.12)}
    .mega-panel{
      position:absolute;
      right:0;
      top:calc(100% + 14px);
      width:620px;
      padding:16px;
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(20,18,27,.97);
      box-shadow:var(--shadow-strong);
      opacity:0;
      visibility:hidden;
      transform:translateY(8px);
      transition:var(--ease);
    }
    .mega-holder:hover .mega-panel,
    .mega-holder.is-open .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .mega-card{
      display:flex;
      flex-direction:column;
      gap:8px;
      padding:15px;
      border:1px solid var(--line);
      border-radius:18px;
      background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
      color:var(--muted);
    }
    .mega-card:hover{
      transform:translateY(-3px);
      border-color:rgba(255,79,131,.4);
      background:rgba(199,44,91,.12);
      color:#fff;
    }
    .mega-icon{
      display:inline-flex;
      width:32px;
      height:32px;
      align-items:center;
      justify-content:center;
      border-radius:12px;
      background:linear-gradient(135deg,rgba(199,44,91,.95),rgba(123,63,242,.9));
      color:#fff;
      font-weight:900;
    }
    .mega-card strong{color:var(--text);font-size:15px}
    .mega-card span:last-child{font-size:13px;line-height:1.55}
    .mobile-menu-btn{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--line);
      color:#fff;
      background:rgba(255,255,255,.06);
      font-size:22px;
    }
    .mobile-panel{
      display:none;
      padding:0 0 16px;
      border-top:1px solid var(--line);
    }
    .mobile-panel a{
      display:block;
      padding:13px 14px;
      margin-top:8px;
      border:1px solid var(--line);
      border-radius:14px;
      color:var(--muted);
      background:rgba(255,255,255,.04);
      font-weight:800;
    }
    .mobile-panel a.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(199,44,91,.9),rgba(123,63,242,.88));
    }

    .section{padding:78px 0}
    .section.compact{padding:54px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      color:#ffdce7;
      background:rgba(199,44,91,.14);
      font-size:13px;
      font-weight:800;
    }
    .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:#58f0a7;
      box-shadow:0 0 0 5px rgba(88,240,167,.11);
    }
    .hero{
      position:relative;
      padding:76px 0 54px;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      width:640px;
      height:640px;
      right:-220px;
      top:-210px;
      background:radial-gradient(circle,rgba(168,85,247,.28),transparent 62%);
      pointer-events:none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.02fr) minmax(390px,.98fr);
      gap:34px;
      align-items:center;
    }
    .hero h1{
      margin:18px 0 18px;
      font-size:clamp(32px,4.4vw,56px);
      line-height:1.08;
      font-weight:900;
      letter-spacing:-.04em;
      color:#fff;
    }
    .hero-sub{
      max-width:720px;
      color:var(--muted);
      font-size:18px;
      line-height:1.85;
      margin:0 0 24px;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:25px 0}
    .quick-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .tag,.badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.055);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .tag.hot{color:#fff;background:rgba(199,44,91,.18);border-color:rgba(255,79,131,.34)}
    .badge.purple{color:#eadcff;background:rgba(123,63,242,.18);border-color:rgba(168,85,247,.34)}
    .badge.amber{color:#ffe4b4;background:rgba(246,166,35,.14);border-color:rgba(246,166,35,.34)}
    .coupon-wall{
      position:relative;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      padding:18px;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:
        linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035)),
        radial-gradient(circle at 10% 10%,rgba(199,44,91,.18),transparent 45%);
      box-shadow:var(--shadow-strong);
    }
    .coupon-main{
      grid-column:1/-1;
      position:relative;
      padding:24px;
      min-height:205px;
      border-radius:24px;
      background:
        linear-gradient(135deg,rgba(199,44,91,.95),rgba(123,63,242,.92)),
        repeating-linear-gradient(90deg,rgba(255,255,255,.15) 0 1px,transparent 1px 16px);
      overflow:hidden;
      box-shadow:0 22px 54px rgba(199,44,91,.3);
    }
    .coupon-main:before,.coupon-main:after{
      content:"";
      position:absolute;
      top:50%;
      width:34px;
      height:34px;
      border-radius:50%;
      background:#17131d;
      transform:translateY(-50%);
    }
    .coupon-main:before{left:-17px}
    .coupon-main:after{right:-17px}
    .coupon-label{
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.18);
      font-weight:900;
      font-size:13px;
    }
    .coupon-title{
      display:block;
      margin:18px 0 7px;
      font-size:31px;
      line-height:1.18;
      font-weight:900;
      color:#fff;
    }
    .coupon-desc{color:rgba(255,255,255,.84);margin:0 0 18px;font-weight:600}
    .coupon-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:11px 16px;
      border-radius:999px;
      color:#381120;
      background:#fff;
      font-weight:900;
      box-shadow:0 12px 28px rgba(0,0,0,.18);
    }
    .coupon-btn:hover{transform:translateY(-2px);color:#381120}
    .mini-coupon{
      padding:17px;
      border-radius:20px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.055);
      transition:var(--ease);
    }
    .mini-coupon:hover{
      transform:translateY(-4px);
      border-color:rgba(255,79,131,.36);
      background:rgba(199,44,91,.12);
    }
    .mini-coupon strong{display:block;color:#fff;margin-bottom:6px;font-size:16px}
    .mini-coupon span{display:block;color:var(--muted);font-size:13px;line-height:1.55}

    .kpi-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:26px;
    }
    .kpi-card{
      padding:16px;
      border:1px solid var(--line);
      border-radius:20px;
      background:rgba(255,255,255,.045);
    }
    .kpi-card strong{
      display:block;
      color:#fff;
      font-size:24px;
      line-height:1;
      margin-bottom:7px;
    }
    .kpi-card span{color:var(--muted);font-size:13px;font-weight:700}

    .section-head{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:24px;
      align-items:end;
      margin-bottom:26px;
    }
    .section-head h2{
      margin:10px 0 8px;
      font-size:clamp(25px,3vw,38px);
      line-height:1.2;
      font-weight:900;
      letter-spacing:-.025em;
    }
    .section-head p{
      max-width:740px;
      margin:0;
      color:var(--muted);
      font-size:16px;
    }
    .track-wrap{
      position:relative;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:18px;
      background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
      overflow:hidden;
    }
    .track-controls{display:flex;gap:10px;justify-content:flex-end}
    .round-btn{
      width:42px;
      height:42px;
      border-radius:50%;
      border:1px solid var(--line-strong);
      background:rgba(255,255,255,.055);
      color:#fff;
      transition:var(--ease);
      font-size:20px;
      line-height:1;
    }
    .round-btn:hover{background:rgba(199,44,91,.22);border-color:rgba(255,79,131,.42);transform:translateY(-2px)}
    .resource-track{
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding:4px 2px 12px;
      scroll-snap-type:x mandatory;
      scrollbar-width:thin;
      scrollbar-color:rgba(255,79,131,.5) rgba(255,255,255,.08);
    }
    .cover-card{
      flex:0 0 210px;
      position:relative;
      aspect-ratio:3/4;
      border-radius:22px;
      overflow:hidden;
      border:1px solid var(--line);
      background:#211929;
      box-shadow:0 16px 42px rgba(0,0,0,.22);
      scroll-snap-align:start;
      transition:var(--ease);
    }
    .cover-art{
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 38% 25%,rgba(255,255,255,.24),transparent 12%),
        radial-gradient(circle at 50% 42%,rgba(255,218,228,.18),transparent 17%),
        linear-gradient(135deg,rgba(199,44,91,.55),rgba(123,63,242,.38) 55%,rgba(20,17,25,.92));
      transform:scale(1);
      transition:transform .35s ease;
    }
    .cover-art.alt1{background:linear-gradient(145deg,rgba(168,85,247,.48),rgba(199,44,91,.42),rgba(16,14,20,.95)),radial-gradient(circle at 55% 28%,rgba(255,255,255,.2),transparent 18%)}
    .cover-art.alt2{background:linear-gradient(145deg,rgba(246,166,35,.28),rgba(199,44,91,.45),rgba(22,19,29,.96)),radial-gradient(circle at 38% 30%,rgba(255,255,255,.18),transparent 17%)}
    .cover-art.alt3{background:linear-gradient(145deg,rgba(199,44,91,.36),rgba(123,63,242,.52),rgba(13,12,18,.98)),radial-gradient(circle at 50% 26%,rgba(255,255,255,.2),transparent 16%)}
    .cover-card:hover{
      transform:translateY(-6px) scale(1.015);
      border-color:rgba(255,79,131,.55);
      box-shadow:0 24px 64px rgba(199,44,91,.22);
    }
    .cover-card:hover .cover-art{transform:scale(1.07)}
    .cover-info{
      position:absolute;
      inset:auto 0 0;
      padding:54px 15px 15px;
      background:linear-gradient(180deg,transparent,rgba(0,0,0,.84));
    }
    .cover-info h3{
      margin:8px 0 6px;
      color:#fff;
      font-size:17px;
      line-height:1.3;
      font-weight:900;
    }
    .cover-info p{
      margin:0 0 11px;
      color:rgba(255,255,255,.72);
      font-size:13px;
      line-height:1.55;
    }
    .cover-action{
      display:inline-flex;
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.2);
      color:#fff;
      font-size:12px;
      font-weight:900;
    }
    .cover-action:hover{background:rgba(199,44,91,.85);color:#fff}

    .dashboard-grid{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:24px;
      align-items:start;
    }
    .timeline-panel,.format-panel,.safe-panel,.lead-panel{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.026));
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .panel-title{
      padding:20px 22px;
      border-bottom:1px solid var(--line);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .panel-title h2,.panel-title h3{
      margin:0;
      font-size:22px;
      line-height:1.25;
      font-weight:900;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border-radius:999px;
      color:#dcffe8;
      background:rgba(88,240,167,.1);
      border:1px solid rgba(88,240,167,.24);
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .timeline{padding:12px 22px 22px}
    .time-item{
      position:relative;
      display:grid;
      grid-template-columns:86px 1fr;
      gap:16px;
      padding:18px 0;
      border-bottom:1px solid var(--line);
    }
    .time-item:last-child{border-bottom:none}
    .time-date{
      color:#ffd6e2;
      font-weight:900;
      font-size:14px;
    }
    .time-content strong{
      display:block;
      color:#fff;
      margin-bottom:5px;
      font-size:16px;
    }
    .time-content p{
      margin:0 0 10px;
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
    }
    .progress-line{
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
    }
    .progress-line span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--purple-2));
    }
    .board-cards{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
      padding:22px;
    }
    .board-card{
      padding:18px;
      min-height:150px;
      border:1px solid var(--line);
      border-radius:22px;
      background:rgba(255,255,255,.05);
      transition:var(--ease);
    }
    .board-card:hover{
      transform:translateY(-4px);
      border-color:rgba(168,85,247,.36);
      background:rgba(123,63,242,.12);
    }
    .board-card .num{
      display:block;
      color:#fff;
      font-size:29px;
      font-weight:900;
      line-height:1;
      margin:12px 0 8px;
    }
    .board-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.55;
    }

    .format-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0 12px;
    }
    .format-table th{
      text-align:left;
      color:#ffe1ea;
      font-size:14px;
      padding:0 14px 4px;
    }
    .format-table td{
      padding:16px 14px;
      color:var(--muted);
      background:rgba(255,255,255,.05);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      vertical-align:top;
      font-size:14px;
    }
    .format-table td:first-child{
      border-left:1px solid var(--line);
      border-radius:16px 0 0 16px;
      color:#fff;
      font-weight:900;
    }
    .format-table td:last-child{
      border-right:1px solid var(--line);
      border-radius:0 16px 16px 0;
    }
    .format-mobile{display:none}
    .safe-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
      align-items:stretch;
    }
    .check-list{
      list-style:none;
      margin:0;
      padding:22px;
    }
    .check-list li{
      display:flex;
      gap:12px;
      padding:14px 0;
      border-bottom:1px solid var(--line);
      color:var(--muted);
    }
    .check-list li:last-child{border-bottom:none}
    .check-icon{
      width:28px;
      height:28px;
      flex:0 0 28px;
      border-radius:10px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:rgba(246,166,35,.14);
      color:#ffd083;
      font-weight:900;
    }
    .safe-note{
      padding:22px;
      border-left:1px solid var(--line);
      background:
        radial-gradient(circle at 100% 0,rgba(246,166,35,.14),transparent 38%),
        rgba(255,255,255,.03);
    }
    .safe-note h3{margin:0 0 12px;font-size:24px;font-weight:900}
    .safe-note p{margin:0 0 16px;color:var(--muted)}
    .notice-box{
      padding:15px;
      border-radius:18px;
      color:#ffe4b4;
      border:1px solid rgba(246,166,35,.28);
      background:rgba(246,166,35,.1);
      font-size:14px;
      line-height:1.65;
    }

    .lead-panel{
      padding:26px;
      background:
        radial-gradient(circle at 15% 12%,rgba(199,44,91,.24),transparent 34%),
        linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.028));
    }
    .lead-grid{
      display:grid;
      grid-template-columns:1fr 360px;
      gap:24px;
      align-items:center;
    }
    .lead-panel h2{
      margin:10px 0 10px;
      font-size:clamp(26px,3vw,38px);
      font-weight:900;
      line-height:1.2;
    }
    .lead-panel p{color:var(--muted);margin:0 0 20px}
    .guide-card{
      padding:18px;
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(0,0,0,.18);
    }
    .guide-step{
      display:flex;
      align-items:center;
      gap:12px;
      padding:12px 0;
      border-bottom:1px solid var(--line);
      color:var(--muted);
      font-weight:700;
    }
    .guide-step:last-child{border-bottom:none}
    .step-no{
      width:32px;
      height:32px;
      border-radius:12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,var(--primary),var(--purple));
      color:#fff;
      font-weight:900;
    }

    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      border:none;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line);
      border-radius:20px;
      background:rgba(255,255,255,.05);
      overflow:hidden;
      transition:var(--ease);
    }
    .accordion-item.is-active{
      border-color:rgba(255,79,131,.42);
      box-shadow:0 16px 44px rgba(199,44,91,.14);
    }
    .accordion-title{
      border:none!important;
      padding:19px 54px 19px 20px;
      color:#fff;
      font-weight:900;
      font-size:16px;
      background:transparent;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(199,44,91,.12);
      color:#fff;
    }
    .accordion-title:before{
      right:20px;
      color:var(--primary-2);
      font-size:22px;
      margin-top:-14px;
    }
    .accordion-content{
      border:none!important;
      background:rgba(0,0,0,.12);
      color:var(--muted);
      padding:0 20px 20px;
      line-height:1.75;
    }

    footer{
      padding:62px 0 30px;
      border-top:1px solid var(--line);
      background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(0,0,0,.22));
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .8fr .8fr 1fr;
      gap:24px;
      margin-bottom:32px;
    }
    .footer-col{
      padding:18px;
      border:1px solid var(--line);
      border-radius:20px;
      background:rgba(255,255,255,.035);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-size:18px;
      font-weight:900;
      margin-bottom:12px;
    }
    .footer-about{margin:0;color:var(--muted);font-size:14px;line-height:1.75}
    .footer-col h3{
      margin:0 0 12px;
      color:#fff;
      font-size:16px;
      font-weight:900;
    }
    .footer-col a,.footer-col span{
      display:block;
      color:var(--muted);
      font-size:14px;
      padding:5px 0;
    }
    .footer-col a:hover{color:#fff;transform:translateX(3px)}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:16px;
      padding-top:22px;
      border-top:1px solid var(--line);
      color:var(--muted-2);
      font-size:13px;
    }
    .sticky-cta{
      position:fixed;
      left:50%;
      bottom:18px;
      z-index:1001;
      transform:translateX(-50%);
      width:min(calc(100% - 32px),980px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:12px 14px 12px 20px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:999px;
      background:rgba(20,18,27,.92);
      backdrop-filter:blur(18px);
      box-shadow:0 18px 54px rgba(0,0,0,.36);
    }
    .sticky-cta strong{color:#fff;font-size:15px}
    .sticky-cta span{color:var(--muted);font-size:13px}
    .sticky-actions{display:flex;gap:10px;align-items:center}

    @media (max-width:1100px){
      .desktop-nav{display:none}
      .mobile-menu-btn{display:inline-flex;align-items:center;justify-content:center}
      .mobile-panel.is-open{display:block}
      .hero-grid,.dashboard-grid,.lead-grid{grid-template-columns:1fr}
      .coupon-wall{max-width:680px}
      .footer-grid{grid-template-columns:1fr 1fr}
      .mega-holder{display:none}
    }
    @media (max-width:768px){
      body{padding-bottom:86px}
      .container{width:min(calc(100% - 24px),var(--container))}
      .nav-bar{min-height:66px}
      .brand-text{font-size:14px;max-width:220px}
      .brand-mark{width:34px;height:34px;flex-basis:34px}
      .nav-actions .btn{display:none}
      .hero{padding:44px 0 32px}
      .hero-sub{font-size:16px}
      .section{padding:54px 0}
      .section-head{grid-template-columns:1fr}
      .track-controls{justify-content:flex-start}
      .coupon-wall{grid-template-columns:1fr}
      .coupon-title{font-size:25px}
      .kpi-row{grid-template-columns:1fr 1fr}
      .cover-card{flex-basis:190px}
      .board-cards,.safe-grid{grid-template-columns:1fr}
      .safe-note{border-left:none;border-top:1px solid var(--line)}
      .time-item{grid-template-columns:1fr;gap:6px}
      .format-table{display:none}
      .format-mobile{display:grid;gap:12px}
      .format-mobile .board-card{min-height:auto}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column}
      .sticky-cta{
        width:100%;
        left:0;
        bottom:0;
        transform:none;
        border-radius:22px 22px 0 0;
        padding:10px 12px;
      }
      .sticky-cta span{display:none}
      .sticky-actions .btn-secondary{display:none}
      .sticky-actions .btn{padding:12px 14px}
    }
    @media (max-width:520px){
      .hero h1{font-size:31px}
      .hero-actions{display:grid;grid-template-columns:1fr}
      .hero-actions .btn{width:100%}
      .quick-tags{gap:8px}
      .tag,.badge{font-size:12px}
      .kpi-row{grid-template-columns:1fr}
      .coupon-main{padding:20px}
      .cover-card{flex-basis:72vw}
      .panel-title{flex-direction:column;align-items:flex-start}
      .lead-panel{padding:20px}
      .sticky-cta strong{font-size:13px;line-height:1.3}
    }

/* roulang page: category1 */
:root{
      --bg:#0e0d12;
      --bg-2:#15131a;
      --bg-3:#1d1a24;
      --panel:#211c28;
      --panel-2:#2a2231;
      --primary:#c72c5b;
      --primary-2:#f0527c;
      --accent:#8b4cf6;
      --accent-2:#a855f7;
      --amber:#f6a623;
      --text:#f6f0f4;
      --muted:#b9aeb8;
      --soft:#8f8290;
      --light:#f7f3f6;
      --dark-text:#231d24;
      --dark-muted:#6b5e68;
      --border:rgba(255,255,255,.09);
      --border-strong:rgba(255,255,255,.16);
      --shadow:0 20px 58px rgba(0,0,0,.34);
      --shadow-soft:0 14px 36px rgba(0,0,0,.24);
      --radius-lg:26px;
      --radius-md:20px;
      --radius-sm:14px;
      --container:1200px;
      --ease:all .25s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      line-height:1.75;
      background:
        radial-gradient(circle at 18% 0%,rgba(199,44,91,.28),transparent 32%),
        radial-gradient(circle at 85% 14%,rgba(123,63,242,.23),transparent 34%),
        linear-gradient(180deg,#0e0d12 0%,#15131a 46%,#0e0d12 100%);
      min-height:100vh;
      padding-bottom:92px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:#fff}
    img{max-width:100%;display:block}
    button,input,select,textarea{font-family:inherit}
    button{cursor:pointer}
    .container{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
    }
    .section{padding:76px 0}
    .section-tight{padding:48px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      background:rgba(255,255,255,.06);
      color:#ffe8ef;
      font-weight:700;
      font-size:13px;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:99px;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      box-shadow:0 0 16px rgba(240,82,124,.8);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .section-title{
      max-width:760px;
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(32px,5vw,54px);
      line-height:1.12;
      letter-spacing:-.045em;
      font-weight:900;
      margin:18px 0 18px;
    }
    h2{
      font-size:clamp(25px,3.2vw,36px);
      line-height:1.2;
      letter-spacing:-.03em;
      font-weight:900;
      margin-bottom:12px;
    }
    h3{
      font-size:20px;
      line-height:1.35;
      font-weight:850;
      margin-bottom:10px;
    }
    p{color:var(--muted);font-size:16px}
    .lead{
      color:#d7cdd5;
      font-size:18px;
      max-width:760px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      line-height:1;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      box-shadow:0 14px 30px rgba(199,44,91,.28);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(168,85,247,.32);
      filter:brightness(1.06);
    }
    .btn-secondary{
      color:#ffeaf1;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.16);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      color:#fff;
      background:rgba(199,44,91,.18);
      border-color:rgba(240,82,124,.4);
      transform:translateY(-2px);
    }
    .btn:focus,.nav-link:focus,.mega-toggle:focus,.mobile-menu-btn:focus{
      outline:3px solid rgba(168,85,247,.35);
      outline-offset:3px;
    }
    .tag,.badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:7px 11px;
      font-size:13px;
      font-weight:750;
      line-height:1;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.07);
      color:#f5dfe7;
    }
    .badge-hot{background:rgba(199,44,91,.18);border-color:rgba(240,82,124,.35);color:#ffd8e3}
    .badge-purple{background:rgba(123,63,242,.17);border-color:rgba(168,85,247,.36);color:#eee4ff}
    .badge-safe{background:rgba(246,166,35,.13);border-color:rgba(246,166,35,.35);color:#ffe2ab}
    .topline{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(18px);
      background:rgba(14,13,18,.78);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav-bar{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
      color:#fff;
      font-weight:900;
    }
    .brand-mark{
      width:38px;
      height:38px;
      flex:0 0 38px;
      border-radius:14px;
      background:
        radial-gradient(circle at 32% 22%,#fff 0 8%,transparent 9%),
        linear-gradient(135deg,var(--primary),var(--accent));
      box-shadow:0 14px 34px rgba(199,44,91,.38);
      position:relative;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:9px 10px;
      border:2px solid rgba(255,255,255,.42);
      border-radius:9px;
    }
    .brand-text{
      font-size:17px;
      letter-spacing:-.02em;
      max-width:280px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      flex:1 1 auto;
    }
    .nav-link{
      padding:10px 13px;
      border-radius:999px;
      color:#cfc5cd;
      font-size:14px;
      font-weight:800;
      border:1px solid transparent;
    }
    .nav-link:hover{
      color:#fff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.08);
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(199,44,91,.32),rgba(123,63,242,.28));
      border-color:rgba(255,255,255,.15);
      box-shadow:inset 0 0 0 1px rgba(240,82,124,.16);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .mega-holder{position:relative}
    .mega-toggle{
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:#f7edf3;
      font-weight:800;
      min-height:42px;
      padding:10px 15px;
      border-radius:999px;
      transition:var(--ease);
    }
    .mega-toggle:hover{
      background:rgba(199,44,91,.18);
      border-color:rgba(240,82,124,.36);
    }
    .mega-panel{
      position:absolute;
      right:0;
      top:calc(100% + 14px);
      width:620px;
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:var(--ease);
      padding:14px;
      border:1px solid rgba(255,255,255,.11);
      border-radius:24px;
      background:rgba(23,20,29,.96);
      box-shadow:var(--shadow);
    }
    .mega-holder:hover .mega-panel,
    .mega-holder.open .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .mega-card{
      min-height:132px;
      padding:14px;
      border-radius:18px;
      background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
      border:1px solid rgba(255,255,255,.09);
      display:flex;
      flex-direction:column;
      gap:7px;
    }
    .mega-card:hover{
      transform:translateY(-3px);
      border-color:rgba(240,82,124,.4);
      box-shadow:0 16px 34px rgba(0,0,0,.24);
    }
    .mega-icon{
      width:34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:12px;
      background:linear-gradient(135deg,rgba(199,44,91,.9),rgba(123,63,242,.9));
      font-size:15px;
      font-weight:900;
    }
    .mega-card strong{font-size:16px;color:#fff}
    .mega-card span:last-child{font-size:13px;color:var(--muted);line-height:1.55}
    .mobile-menu-btn{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:#fff;
      font-size:22px;
      line-height:1;
    }
    .mobile-panel{
      display:none;
      padding:0 0 16px;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .mobile-panel a{
      display:block;
      padding:12px 14px;
      margin-top:8px;
      border-radius:14px;
      color:#ddd2dc;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.07);
      font-weight:800;
    }
    .mobile-panel a.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(199,44,91,.32),rgba(123,63,242,.25));
      border-color:rgba(240,82,124,.28);
    }

    .category-hero{
      padding:58px 0 42px;
      position:relative;
    }
    .category-hero::before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(180deg,rgba(255,255,255,.028) 1px,transparent 1px);
      background-size:48px 48px;
      mask-image:linear-gradient(180deg,#000,transparent 76%);
    }
    .hero-shell{
      position:relative;
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
      gap:28px;
      align-items:stretch;
    }
    .hero-copy{
      padding:34px;
      border:1px solid rgba(255,255,255,.10);
      border-radius:var(--radius-lg);
      background:linear-gradient(145deg,rgba(33,28,40,.88),rgba(21,19,26,.72));
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-copy::after{
      content:"";
      position:absolute;
      right:-80px;
      bottom:-100px;
      width:260px;
      height:260px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(199,44,91,.32),transparent 68%);
      pointer-events:none;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      margin:24px 0 22px;
      position:relative;
      z-index:1;
    }
    .quick-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .visual-board{
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.11);
      background:
        radial-gradient(circle at 70% 16%,rgba(168,85,247,.25),transparent 36%),
        linear-gradient(180deg,rgba(42,34,49,.94),rgba(18,16,23,.94));
      box-shadow:var(--shadow);
      padding:18px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      min-height:430px;
    }
    .portrait-card{
      position:relative;
      overflow:hidden;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(145deg,rgba(199,44,91,.35),rgba(123,63,242,.34)),
        radial-gradient(circle at 50% 22%,rgba(255,255,255,.42),transparent 13%),
        linear-gradient(180deg,#3b2638,#15131a);
      min-height:394px;
      grid-row:span 2;
      transform:rotate(-1.5deg);
    }
    .portrait-card::before{
      content:"";
      position:absolute;
      inset:30px 35px 90px;
      border-radius:45% 45% 38% 38%;
      background:linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,.04));
      filter:blur(.2px);
    }
    .portrait-card::after{
      content:"";
      position:absolute;
      inset:auto 0 0;
      height:55%;
      background:linear-gradient(180deg,transparent,rgba(0,0,0,.86));
    }
    .portrait-info{
      position:absolute;
      left:16px;
      right:16px;
      bottom:16px;
      z-index:2;
    }
    .portrait-info strong{display:block;font-size:19px;margin-bottom:7px}
    .mini-panel{
      padding:16px;
      border-radius:20px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.06);
      min-height:140px;
    }
    .mini-panel .num{
      display:block;
      color:#fff;
      font-weight:900;
      font-size:30px;
      line-height:1.1;
      letter-spacing:-.04em;
      margin:8px 0;
    }
    .mini-panel p{font-size:13px;line-height:1.55;margin:0}
    .status-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:10px 0;
      border-bottom:1px solid rgba(255,255,255,.08);
      color:#e8dde5;
      font-size:14px;
      font-weight:750;
    }
    .status-row:last-child{border-bottom:0}
    .status-dot{
      width:9px;height:9px;border-radius:50%;
      background:var(--primary-2);
      box-shadow:0 0 14px rgba(240,82,124,.8);
    }

    .filter-wrap{
      border:1px solid rgba(255,255,255,.10);
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.045);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .filter-header{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      padding:18px 20px;
      border-bottom:1px solid rgba(255,255,255,.08);
      background:rgba(0,0,0,.12);
    }
    .filter-header strong{font-size:18px}
    .filter-tags{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      padding:18px 20px 6px;
    }
    .filter-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:38px;
      padding:9px 13px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      color:#d9ced7;
      background:rgba(255,255,255,.055);
      font-weight:800;
      font-size:14px;
    }
    .filter-chip:hover{
      color:#fff;
      border-color:rgba(240,82,124,.34);
      background:rgba(199,44,91,.14);
      transform:translateY(-1px);
    }
    .filter-chip.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(199,44,91,.42),rgba(123,63,242,.28));
      border-color:rgba(240,82,124,.45);
    }
    .filter-layout{
      display:grid;
      grid-template-columns:270px minmax(0,1fr);
      gap:0;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .side-filter{
      padding:22px;
      border-right:1px solid rgba(255,255,255,.08);
      background:rgba(14,13,18,.32);
    }
    .side-group{margin-bottom:22px}
    .side-group h3{
      font-size:14px;
      color:#fff;
      display:flex;
      align-items:center;
      gap:8px;
      margin-bottom:12px;
    }
    .side-group h3::before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:var(--primary-2);
    }
    .side-group a,
    .side-group span{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:#c7bbc5;
      font-weight:700;
      font-size:14px;
      padding:9px 10px;
      border-radius:12px;
      margin-bottom:6px;
      background:rgba(255,255,255,.035);
      border:1px solid transparent;
    }
    .side-group a:hover{
      color:#fff;
      border-color:rgba(255,255,255,.10);
      background:rgba(199,44,91,.12);
    }
    .resource-area{padding:22px}
    .resource-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }
    .cover-card{
      position:relative;
      min-height:360px;
      border-radius:22px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.10);
      background:#241e2b;
      box-shadow:0 14px 32px rgba(0,0,0,.24);
      transition:var(--ease);
    }
    .cover-card:hover{
      transform:translateY(-6px);
      border-color:rgba(240,82,124,.45);
      box-shadow:0 24px 48px rgba(0,0,0,.36);
    }
    .cover-art{
      position:absolute;
      inset:0;
      transition:transform .35s ease;
      background:
        radial-gradient(circle at 48% 20%,rgba(255,255,255,.52),transparent 11%),
        linear-gradient(145deg,rgba(199,44,91,.55),rgba(123,63,242,.42)),
        linear-gradient(180deg,#493141,#141219);
    }
    .cover-card:nth-child(2) .cover-art{background:radial-gradient(circle at 50% 18%,rgba(255,255,255,.48),transparent 10%),linear-gradient(145deg,rgba(123,63,242,.48),rgba(199,44,91,.35)),linear-gradient(180deg,#343147,#141219)}
    .cover-card:nth-child(3) .cover-art{background:radial-gradient(circle at 44% 17%,rgba(255,255,255,.45),transparent 10%),linear-gradient(145deg,rgba(246,166,35,.28),rgba(199,44,91,.5)),linear-gradient(180deg,#4a2c35,#15131a)}
    .cover-card:nth-child(4) .cover-art{background:radial-gradient(circle at 52% 20%,rgba(255,255,255,.45),transparent 10%),linear-gradient(145deg,rgba(80,65,92,.8),rgba(199,44,91,.38)),linear-gradient(180deg,#30293a,#15131a)}
    .cover-card:nth-child(5) .cover-art{background:radial-gradient(circle at 48% 18%,rgba(255,255,255,.46),transparent 10%),linear-gradient(145deg,rgba(199,44,91,.48),rgba(36,31,43,.72)),linear-gradient(180deg,#4e2a3e,#15131a)}
    .cover-card:nth-child(6) .cover-art{background:radial-gradient(circle at 52% 19%,rgba(255,255,255,.44),transparent 10%),linear-gradient(145deg,rgba(168,85,247,.42),rgba(246,166,35,.18)),linear-gradient(180deg,#392d47,#15131a)}
    .cover-card:hover .cover-art{transform:scale(1.06)}
    .cover-art::after{
      content:"";
      position:absolute;
      inset:18% 24% 18%;
      border-radius:42% 42% 18% 18%;
      background:linear-gradient(180deg,rgba(255,255,255,.16),rgba(255,255,255,.03));
      filter:blur(.2px);
    }
    .cover-layer{
      position:absolute;
      inset:0;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:14px;
      background:linear-gradient(180deg,rgba(0,0,0,.16),rgba(0,0,0,.06) 40%,rgba(0,0,0,.88) 100%);
      z-index:2;
    }
    .cover-top{
      display:flex;
      justify-content:space-between;
      gap:8px;
      align-items:flex-start;
    }
    .cover-bottom strong{
      display:block;
      color:#fff;
      font-size:18px;
      line-height:1.35;
      margin-bottom:8px;
    }
    .cover-bottom p{
      font-size:13px;
      line-height:1.55;
      margin-bottom:12px;
      color:#d8ccd4;
    }
    .mini-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:9px 12px;
      border-radius:999px;
      color:#fff;
      background:rgba(199,44,91,.74);
      border:1px solid rgba(255,255,255,.18);
      font-size:13px;
      font-weight:850;
    }
    .mini-cta:hover{background:linear-gradient(135deg,var(--primary),var(--accent));color:#fff}
    .info-cards{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
      margin-top:22px;
    }
    .note-card{
      padding:22px;
      border-radius:var(--radius-md);
      background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
      border:1px solid rgba(255,255,255,.10);
      box-shadow:var(--shadow-soft);
    }
    .note-card ul{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .note-card li{
      color:#d4c8d1;
      padding-left:26px;
      position:relative;
      font-weight:650;
    }
    .note-card li::before{
      content:"✓";
      position:absolute;
      left:0;
      top:0;
      color:#fff;
      width:18px;
      height:18px;
      border-radius:50%;
      display:grid;
      place-items:center;
      font-size:11px;
      background:linear-gradient(135deg,var(--primary),var(--accent));
    }

    .track-shell{
      position:relative;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.045);
      padding:20px;
      box-shadow:var(--shadow-soft);
    }
    .track{
      display:grid;
      grid-auto-flow:column;
      grid-auto-columns:220px;
      gap:16px;
      overflow-x:auto;
      padding:4px 4px 12px;
      scroll-snap-type:x mandatory;
      scrollbar-width:thin;
      scrollbar-color:rgba(199,44,91,.65) rgba(255,255,255,.06);
    }
    .track-card{
      scroll-snap-align:start;
      min-height:312px;
      border-radius:20px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.10);
      background:#221d29;
      position:relative;
      transition:var(--ease);
    }
    .track-card:hover{
      transform:translateY(-5px) scale(1.015);
      border-color:rgba(168,85,247,.45);
      box-shadow:0 20px 42px rgba(0,0,0,.36);
    }
    .track-art{
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 50% 18%,rgba(255,255,255,.44),transparent 10%),linear-gradient(145deg,rgba(199,44,91,.42),rgba(123,63,242,.38)),#17141d;
      transition:transform .35s ease;
    }
    .track-card:nth-child(even) .track-art{background:radial-gradient(circle at 48% 20%,rgba(255,255,255,.42),transparent 10%),linear-gradient(145deg,rgba(168,85,247,.42),rgba(55,44,67,.86)),#17141d}
    .track-card:hover .track-art{transform:scale(1.08)}
    .track-layer{
      position:absolute;
      inset:0;
      padding:14px;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      background:linear-gradient(180deg,rgba(0,0,0,.03),rgba(0,0,0,.22) 45%,rgba(0,0,0,.86));
    }
    .track-layer strong{font-size:17px;margin-bottom:6px}
    .track-layer span{font-size:13px;color:#ded4dc;line-height:1.5}
    .process-line{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      margin-top:18px;
    }
    .process-step{
      padding:14px;
      border-radius:18px;
      background:rgba(0,0,0,.18);
      border:1px solid rgba(255,255,255,.09);
      color:#dace d7;
      font-weight:800;
    }
    .process-step b{
      display:inline-grid;
      place-items:center;
      width:26px;
      height:26px;
      margin-right:7px;
      border-radius:9px;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      color:#fff;
      font-size:13px;
    }

    .proof-section{
      background:linear-gradient(180deg,rgba(247,243,246,.98),rgba(238,230,236,.96));
      color:var(--dark-text);
      border-radius:34px 34px 0 0;
      margin-top:28px;
    }
    .proof-section p{color:var(--dark-muted)}
    .proof-grid{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:22px;
      align-items:stretch;
    }
    .light-card{
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(35,29,36,.08);
      box-shadow:0 18px 44px rgba(61,44,58,.10);
      padding:24px;
    }
    .metric-list{
      display:grid;
      gap:13px;
    }
    .metric-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:15px;
      padding:14px;
      border-radius:18px;
      background:#f7f3f6;
      border:1px solid rgba(35,29,36,.06);
    }
    .metric-item strong{
      color:var(--dark-text);
      font-size:22px;
      letter-spacing:-.04em;
    }
    .metric-item span{color:var(--dark-muted);font-weight:750}
    .check-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .check-card{
      padding:18px;
      border-radius:20px;
      background:#fff;
      border:1px solid rgba(35,29,36,.08);
      box-shadow:0 14px 30px rgba(61,44,58,.08);
    }
    .check-card h3{color:var(--dark-text)}
    .check-card p{font-size:14px;margin:0}

    .faq-wrap{
      max-width:980px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid rgba(255,255,255,.10);
      border-radius:18px;
      overflow:hidden;
      background:rgba(255,255,255,.045);
      transition:var(--ease);
    }
    .accordion-item.is-active{
      border-color:rgba(240,82,124,.5);
      box-shadow:0 16px 40px rgba(199,44,91,.12);
    }
    .accordion-title{
      border:0!important;
      color:#fff;
      font-weight:850;
      font-size:17px;
      padding:18px 48px 18px 18px;
      background:rgba(255,255,255,.035);
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(199,44,91,.13);
      color:#fff;
    }
    .accordion-title::before{
      color:var(--primary-2);
      font-size:24px;
      margin-top:-14px;
    }
    .accordion-content{
      border:0!important;
      background:rgba(0,0,0,.12);
      color:#d9ced7;
      padding:18px;
      line-height:1.75;
    }

    .lead-box{
      display:grid;
      grid-template-columns:1fr auto;
      gap:22px;
      align-items:center;
      padding:28px;
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 86% 0%,rgba(168,85,247,.25),transparent 34%),
        linear-gradient(135deg,rgba(199,44,91,.24),rgba(255,255,255,.055));
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
    }
    .lead-box p{margin:0}

    footer{
      background:#0b0a0e;
      border-top:1px solid rgba(255,255,255,.08);
      padding:54px 0 30px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .75fr .75fr .9fr;
      gap:28px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-about{font-size:14px;max-width:420px}
    .footer-col h3{
      color:#fff;
      font-size:16px;
      margin-bottom:14px;
    }
    .footer-col a,.footer-col span{
      display:block;
      color:#aFA4ae;
      font-size:14px;
      margin-bottom:9px;
      line-height:1.65;
    }
    .footer-col a:hover{color:#fff;transform:translateX(3px)}
    .copyright{
      margin-top:34px;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:#8c818b;
      font-size:13px;
    }
    .fixed-cta{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      z-index:60;
      width:min(980px,calc(100% - 34px));
      padding:12px 14px 12px 18px;
      border-radius:999px;
      background:rgba(21,19,26,.92);
      backdrop-filter:blur(18px);
      border:1px solid rgba(255,255,255,.13);
      box-shadow:0 18px 54px rgba(0,0,0,.38);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .fixed-cta span{
      color:#f1e7ef;
      font-weight:800;
      font-size:14px;
    }
    .fixed-cta small{
      color:var(--muted);
      display:block;
      font-weight:650;
      margin-top:2px;
    }
    .fixed-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }

    @media (max-width:1100px){
      .brand-text{max-width:210px}
      .desktop-nav{gap:2px}
      .nav-link{padding:9px 10px}
      .nav-actions .btn{display:none}
      .hero-shell,.filter-layout,.proof-grid{grid-template-columns:1fr}
      .side-filter{border-right:0;border-bottom:1px solid rgba(255,255,255,.08)}
      .resource-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:820px){
      body{padding-bottom:86px}
      .container{width:min(100% - 28px,var(--container))}
      .section{padding:58px 0}
      .desktop-nav,.nav-actions{display:none}
      .mobile-menu-btn{display:inline-grid;place-items:center}
      .mobile-panel.open{display:block}
      .nav-bar{min-height:68px}
      .brand-text{max-width:230px;font-size:15px}
      .hero-copy{padding:24px}
      .visual-board{grid-template-columns:1fr;min-height:auto}
      .portrait-card{min-height:340px;grid-row:auto}
      .filter-header,.section-head,.lead-box{align-items:flex-start;flex-direction:column;display:flex}
      .filter-tags{flex-wrap:nowrap;overflow-x:auto;padding-bottom:16px}
      .filter-chip{flex:0 0 auto}
      .resource-grid,.info-cards,.check-grid{grid-template-columns:1fr}
      .process-line{grid-template-columns:1fr 1fr}
      .track{grid-auto-columns:72vw}
      .footer-grid{grid-template-columns:1fr}
      .fixed-cta{
        bottom:10px;
        border-radius:22px;
        align-items:flex-start;
      }
      .fixed-actions .btn-secondary{display:none}
    }
    @media (max-width:520px){
      h1{font-size:31px}
      .lead{font-size:16px}
      .hero-actions{flex-direction:column;align-items:stretch}
      .hero-actions .btn{width:100%}
      .visual-board,.filter-wrap,.track-shell{padding:12px;border-radius:22px}
      .cover-card{min-height:340px}
      .process-line{grid-template-columns:1fr}
      .light-card,.note-card,.lead-box{padding:20px;border-radius:22px}
      .fixed-cta{
        width:calc(100% - 18px);
        padding:10px 11px;
      }
      .fixed-cta span{font-size:13px}
      .fixed-actions .btn{min-height:40px;padding:10px 13px;font-size:13px}
      .copyright{display:block}
      .copyright span{display:block;margin-bottom:8px}
    }
