/* roulang page: index */
:root{
      --color-primary:#74345D;
      --color-primary-deep:#6E2F56;
      --color-primary-dark:#261A22;
      --color-accent:#C08A4D;
      --color-accent-soft:#F3DEC1;
      --color-bg:#FBF7F2;
      --color-bg-alt:#F5EEE8;
      --color-card:#FFFFFF;
      --color-card-warm:#FFFDFC;
      --color-border:#E8DCD3;
      --color-text:#261A22;
      --color-muted:#6F6268;
      --color-deep:#1E151B;
      --color-deep-card:#2B1E27;
      --color-light:#F8EEE8;
      --shadow-soft:0 18px 50px rgba(66,38,48,.10);
      --shadow-hover:0 24px 70px rgba(66,38,48,.16);
      --radius-sm:12px;
      --radius-md:20px;
      --radius-lg:28px;
      --radius-xl:36px;
      --transition:.26s ease;
      --container:1180px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 10% 6%, rgba(192,138,77,.13), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(116,52,93,.12), transparent 30%),
        var(--color-bg);
      line-height:1.8;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    a:hover,a:focus{color:var(--color-primary)}
    img,svg{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(116,52,93,.18);color:var(--color-primary-dark)}
    .site-container{
      width:min(calc(100% - 40px), var(--container));
      margin:0 auto;
    }
    .section{
      padding:96px 0;
      position:relative;
    }
    .section-tight{padding:72px 0}
    .section-eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      background:rgba(116,52,93,.08);
      color:var(--color-primary);
      font-weight:700;
      font-size:14px;
      margin-bottom:18px;
      border:1px solid rgba(116,52,93,.12);
    }
    .section-eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--color-accent);
      box-shadow:0 0 0 5px rgba(192,138,77,.14);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(38px,5.2vw,66px);
      line-height:1.12;
      letter-spacing:-.04em;
      font-weight:800;
      color:var(--color-primary-dark);
      margin-bottom:24px;
    }
    h2{
      font-size:clamp(32px,3.6vw,44px);
      line-height:1.2;
      letter-spacing:-.025em;
      font-weight:760;
      margin-bottom:18px;
      color:var(--color-primary-dark);
    }
    h3{
      font-size:clamp(21px,2vw,26px);
      line-height:1.32;
      font-weight:700;
      margin-bottom:12px;
      color:var(--color-primary-dark);
    }
    p{
      color:var(--color-muted);
      font-size:17px;
      line-height:1.85;
      margin-bottom:18px;
    }
    .lead{
      font-size:18px;
      max-width:740px;
      color:#5f5359;
    }
    .text-light{color:rgba(248,238,232,.82)}
    .text-center{text-align:center}
    .max-center{max-width:760px;margin-left:auto;margin-right:auto}

    .glass-header{
      position:fixed;
      top:18px;
      left:0;
      right:0;
      z-index:1000;
      pointer-events:none;
    }
    .nav-shell{
      width:min(calc(100% - 34px), 1210px);
      margin:0 auto;
      pointer-events:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:12px 14px 12px 18px;
      border:1px solid rgba(116,52,93,.14);
      border-radius:999px;
      background:rgba(255,252,248,.72);
      backdrop-filter:blur(18px) saturate(145%);
      -webkit-backdrop-filter:blur(18px) saturate(145%);
      box-shadow:0 14px 46px rgba(66,38,48,.10);
      transition:var(--transition);
    }
    .glass-header.is-scrolled .nav-shell{
      top:0;
      background:rgba(255,253,250,.95);
      box-shadow:0 16px 48px rgba(66,38,48,.14);
      border-color:rgba(116,52,93,.18);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      background:linear-gradient(135deg,var(--color-primary),#9E557B);
      box-shadow:0 12px 28px rgba(116,52,93,.24);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark:before{
      content:"";
      position:absolute;
      left:10px;
      right:10px;
      top:12px;
      height:5px;
      border-radius:999px;
      background:rgba(255,255,255,.86);
      box-shadow:0 9px 0 rgba(255,255,255,.62), 0 18px 0 rgba(215,163,92,.78);
    }
    .brand-name{
      display:flex;
      flex-direction:column;
      line-height:1.15;
      letter-spacing:-.02em;
    }
    .brand-name strong{
      font-size:17px;
      color:var(--color-primary-dark);
      font-weight:800;
    }
    .brand-name span{
      font-size:12px;
      color:var(--color-muted);
      margin-top:3px;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      margin:0;
      list-style:none;
    }
    .nav-links a{
      display:inline-flex;
      min-height:40px;
      align-items:center;
      padding:0 15px;
      border-radius:999px;
      font-size:15px;
      font-weight:650;
      color:#4B3B43;
    }
    .nav-links a:hover,
    .nav-links a:focus,
    .nav-links a.active{
      color:var(--color-primary);
      background:rgba(116,52,93,.08);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-search{
      display:flex;
      align-items:center;
      gap:8px;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid rgba(116,52,93,.14);
      color:var(--color-muted);
      background:rgba(255,255,255,.56);
      font-size:14px;
    }
    .nav-search i{
      width:13px;height:13px;border:2px solid currentColor;border-radius:50%;position:relative;display:inline-block;
    }
    .nav-search i:after{
      content:"";position:absolute;width:7px;height:2px;background:currentColor;right:-6px;bottom:-4px;transform:rotate(45deg);border-radius:999px;
    }
    .mobile-toggle{
      display:none;
      width:44px;
      height:44px;
      border:0;
      border-radius:999px;
      background:rgba(116,52,93,.10);
      color:var(--color-primary);
      align-items:center;
      justify-content:center;
    }
    .mobile-toggle span,
    .mobile-toggle span:before,
    .mobile-toggle span:after{
      display:block;
      width:20px;
      height:2px;
      border-radius:999px;
      background:currentColor;
      position:relative;
      transition:var(--transition);
    }
    .mobile-toggle span:before,.mobile-toggle span:after{
      content:"";
      position:absolute;
      left:0;
    }
    .mobile-toggle span:before{top:-7px}
    .mobile-toggle span:after{top:7px}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:14px 24px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:720;
      line-height:1;
      transition:var(--transition);
      position:relative;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),#925070);
      box-shadow:0 14px 34px rgba(116,52,93,.23);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(116,52,93,.30);
      background:linear-gradient(135deg,#68294F,#864566);
    }
    .btn-secondary{
      color:var(--color-primary);
      background:rgba(255,255,255,.78);
      border-color:rgba(116,52,93,.18);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      color:var(--color-primary);
      background:rgba(116,52,93,.08);
      transform:translateY(-2px);
      box-shadow:var(--shadow-soft);
    }
    .btn-gold{
      background:linear-gradient(135deg,#D7A35C,#C08A4D);
      color:#2B1E18;
      box-shadow:0 16px 36px rgba(192,138,77,.26);
    }
    .btn-gold:hover,.btn-gold:focus{
      color:#2B1E18;
      transform:translateY(-2px);
      box-shadow:0 20px 44px rgba(192,138,77,.34);
    }
    .btn:focus-visible,
    .mobile-toggle:focus-visible,
    input:focus-visible,
    a:focus-visible{
      outline:3px solid rgba(192,138,77,.42);
      outline-offset:3px;
    }
    .arrow{
      transition:var(--transition);
      display:inline-block;
    }
    .btn:hover .arrow,
    .text-link:hover .arrow{transform:translateX(4px)}

    .hero{
      min-height:860px;
      padding:152px 0 96px;
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      width:560px;
      height:560px;
      right:-160px;
      top:100px;
      background:radial-gradient(circle, rgba(116,52,93,.18), transparent 65%);
      filter:blur(4px);
    }
    .hero:after{
      content:"";
      position:absolute;
      width:420px;
      height:420px;
      left:-170px;
      bottom:40px;
      background:radial-gradient(circle, rgba(192,138,77,.16), transparent 65%);
    }
    .hero-grid{
      align-items:center;
      position:relative;
      z-index:1;
    }
    .hero-copy{
      padding-right:34px;
    }
    .hero-brandline{
      display:inline-flex;
      align-items:center;
      gap:10px;
      margin-bottom:20px;
      padding:9px 14px;
      border-radius:999px;
      color:var(--color-primary);
      background:rgba(255,255,255,.72);
      border:1px solid rgba(116,52,93,.14);
      box-shadow:0 10px 30px rgba(66,38,48,.07);
      font-weight:700;
      font-size:14px;
    }
    .hero-brandline span{
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--color-accent);
      box-shadow:0 0 0 6px rgba(192,138,77,.15);
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin:32px 0 24px;
    }
    .trust-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:28px 0 0;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:34px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(116,52,93,.13);
      background:rgba(255,255,255,.68);
      color:#5D4B54;
      font-size:14px;
      font-weight:650;
    }
    .tag:before{
      content:"";
      width:6px;
      height:6px;
      border-radius:50%;
      background:var(--color-primary);
      opacity:.7;
    }

    .mockup-wrap{
      position:relative;
      min-height:570px;
    }
    .subtitle-panel{
      position:relative;
      margin-left:auto;
      max-width:540px;
      border-radius:var(--radius-xl);
      background:linear-gradient(180deg,rgba(255,255,255,.86),rgba(255,253,250,.74));
      border:1px solid rgba(116,52,93,.14);
      box-shadow:var(--shadow-soft);
      padding:26px;
      overflow:hidden;
      backdrop-filter:blur(14px);
    }
    .subtitle-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, transparent 0 94%, rgba(116,52,93,.05) 94% 95%, transparent 95%),
        linear-gradient(0deg, transparent 0 92%, rgba(116,52,93,.04) 92% 93%, transparent 93%);
      background-size:46px 46px;
      pointer-events:none;
    }
    .panel-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      position:relative;
      z-index:1;
      margin-bottom:22px;
    }
    .panel-title{
      font-weight:800;
      color:var(--color-primary-dark);
      letter-spacing:-.02em;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(52,136,92,.10);
      color:#2F7250;
      font-size:13px;
      font-weight:750;
    }
    .status-pill:before{
      content:"";
      width:7px;height:7px;border-radius:50%;background:#48A16D;
    }
    .player-box{
      position:relative;
      z-index:1;
      border-radius:26px;
      background:linear-gradient(145deg,#2B1E27,#1E151B);
      min-height:255px;
      padding:22px;
      overflow:hidden;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
    }
    .player-box:before{
      content:"";
      position:absolute;
      width:220px;height:220px;border-radius:50%;
      background:rgba(116,52,93,.45);
      right:-70px;top:-70px;filter:blur(4px);
    }
    .caption-line{
      position:absolute;
      left:28px;
      right:28px;
      bottom:34px;
      padding:14px 16px;
      border-radius:14px;
      background:rgba(0,0,0,.45);
      color:#fff;
      text-align:center;
      font-weight:650;
      letter-spacing:.02em;
    }
    .play-circle{
      position:absolute;
      width:74px;height:74px;border-radius:50%;
      left:50%;top:43%;transform:translate(-50%,-50%);
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.22);
      display:flex;align-items:center;justify-content:center;
    }
    .play-circle:after{
      content:"";
      border-left:17px solid rgba(255,255,255,.78);
      border-top:11px solid transparent;
      border-bottom:11px solid transparent;
      margin-left:4px;
    }
    .timeline-card{
      position:relative;
      z-index:1;
      margin-top:18px;
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(116,52,93,.12);
    }
    .timeline-row{
      display:grid;
      grid-template-columns:82px 1fr auto;
      gap:12px;
      align-items:center;
      padding:10px 0;
      border-bottom:1px dashed rgba(116,52,93,.16);
      font-size:14px;
    }
    .timeline-row:last-child{border-bottom:0}
    .timecode{font-weight:800;color:var(--color-primary)}
    .wave{
      height:9px;
      border-radius:999px;
      background:linear-gradient(90deg,rgba(116,52,93,.22),rgba(192,138,77,.55),rgba(116,52,93,.18));
      position:relative;
      overflow:hidden;
    }
    .wave:after{
      content:"";
      position:absolute;
      inset:0;
      background:repeating-linear-gradient(90deg,transparent 0 13px,rgba(255,255,255,.55) 13px 16px);
    }
    .quality{
      padding:5px 9px;
      border-radius:999px;
      background:rgba(192,138,77,.14);
      color:#855F2E;
      font-weight:750;
      font-size:12px;
    }
    .floating-card{
      position:absolute;
      z-index:2;
      border-radius:22px;
      padding:16px 18px;
      background:rgba(255,255,255,.86);
      border:1px solid rgba(116,52,93,.13);
      box-shadow:var(--shadow-soft);
      backdrop-filter:blur(16px);
    }
    .floating-card strong{display:block;color:var(--color-primary-dark);font-size:15px}
    .floating-card span{font-size:13px;color:var(--color-muted)}
    .float-one{left:0;top:64px}
    .float-two{right:8px;bottom:28px}
    .float-three{left:48px;bottom:98px}

    .pain-section{
      background:linear-gradient(180deg,var(--color-bg-alt),#FFF9F4);
      overflow:hidden;
    }
    .pain-line{
      position:relative;
      margin-top:42px;
    }
    .pain-line:before{
      content:"";
      position:absolute;
      left:7%;
      right:7%;
      top:54px;
      height:1px;
      background:linear-gradient(90deg,transparent,rgba(116,52,93,.23),transparent);
    }
    .pain-card{
      position:relative;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(116,52,93,.12);
      border-radius:var(--radius-lg);
      padding:28px 26px;
      min-height:238px;
      box-shadow:0 12px 38px rgba(66,38,48,.07);
      transition:var(--transition);
    }
    .pain-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(116,52,93,.22);
    }
    .pain-no{
      width:50px;height:50px;border-radius:18px;
      display:flex;align-items:center;justify-content:center;
      background:linear-gradient(135deg,var(--color-primary),#955075);
      color:#fff;
      font-weight:850;
      margin-bottom:24px;
      box-shadow:0 12px 26px rgba(116,52,93,.22);
    }
    .pain-card p{font-size:15.5px;margin-bottom:0}

    .solution-grid{
      align-items:center;
      margin-top:34px;
    }
    .solution-note{
      border-radius:var(--radius-xl);
      background:var(--color-card);
      border:1px solid rgba(116,52,93,.12);
      padding:34px;
      box-shadow:var(--shadow-soft);
    }
    .check-list{
      list-style:none;
      margin:26px 0 0;
      padding:0;
    }
    .check-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 0;
      color:#5F5359;
      border-bottom:1px solid rgba(116,52,93,.08);
    }
    .check-list li:last-child{border-bottom:0}
    .check-list li:before{
      content:"✓";
      width:24px;height:24px;border-radius:50%;
      background:rgba(116,52,93,.10);
      color:var(--color-primary);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      font-weight:900;
      margin-top:3px;
    }
    .steps-stack{
      display:grid;
      gap:16px;
      padding-left:14px;
    }
    .step-card{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:16px;
      align-items:start;
      padding:22px;
      border-radius:24px;
      background:linear-gradient(135deg,rgba(255,255,255,.92),rgba(255,250,245,.82));
      border:1px solid rgba(116,52,93,.12);
      box-shadow:0 12px 32px rgba(66,38,48,.07);
      transition:var(--transition);
    }
    .step-card:nth-child(even){margin-left:36px}
    .step-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
    }
    .step-index{
      width:48px;height:48px;border-radius:17px;
      background:rgba(116,52,93,.10);
      color:var(--color-primary);
      display:flex;align-items:center;justify-content:center;
      font-weight:850;
    }
    .step-card h3{font-size:20px;margin-bottom:5px}
    .step-card p{font-size:15px;margin-bottom:0}

    .dark-results{
      background:
        radial-gradient(circle at 12% 20%, rgba(192,138,77,.16), transparent 32%),
        radial-gradient(circle at 86% 70%, rgba(116,52,93,.38), transparent 34%),
        var(--color-deep);
      color:var(--color-light);
      overflow:hidden;
    }
    .dark-results h2{color:#fff}
    .dark-results .section-eyebrow{
      background:rgba(255,255,255,.08);
      color:#F3DEC1;
      border-color:rgba(255,255,255,.10);
    }
    .metric-card{
      position:relative;
      overflow:hidden;
      border-radius:28px;
      padding:30px 28px;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.10);
      min-height:220px;
      transition:var(--transition);
    }
    .metric-card:hover{
      transform:translateY(-5px);
      background:rgba(255,255,255,.075);
      border-color:rgba(215,163,92,.28);
    }
    .metric-card:before{
      content:"";
      position:absolute;
      left:0;right:0;top:0;height:3px;
      background:linear-gradient(90deg,var(--color-accent),transparent);
    }
    .metric-number{
      color:#D7A35C;
      font-size:38px;
      line-height:1;
      font-weight:850;
      margin-bottom:16px;
      letter-spacing:-.03em;
    }
    .metric-card h3{color:#fff;font-size:21px}
    .metric-card p{color:rgba(248,238,232,.74);font-size:15.5px;margin-bottom:0}

    .capability-layout{
      margin-top:38px;
      align-items:stretch;
    }
    .core-card{
      height:100%;
      border-radius:var(--radius-xl);
      padding:38px;
      background:
        linear-gradient(135deg,rgba(116,52,93,.96),rgba(43,30,39,.96)),
        var(--color-primary);
      color:#fff;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow-soft);
    }
    .core-card:before{
      content:"";
      position:absolute;
      width:280px;height:280px;border-radius:50%;
      background:rgba(215,163,92,.18);
      right:-86px;top:-86px;
    }
    .core-card h3{color:#fff;font-size:30px}
    .core-card p{color:rgba(255,255,255,.78)}
    .mini-timeline{
      position:relative;
      z-index:1;
      margin-top:30px;
      display:grid;
      gap:13px;
    }
    .mini-item{
      display:flex;
      align-items:center;
      gap:12px;
      padding:14px 16px;
      border-radius:16px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
      color:rgba(255,255,255,.88);
      font-weight:650;
    }
    .mini-item span{
      width:28px;height:28px;border-radius:50%;
      background:var(--color-accent);
      color:#261A22;
      display:flex;align-items:center;justify-content:center;
      font-size:13px;
      font-weight:850;
    }
    .ability-list{
      display:grid;
      gap:16px;
      height:100%;
    }
    .ability-item{
      display:flex;
      gap:16px;
      padding:22px;
      border-radius:24px;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(116,52,93,.12);
      transition:var(--transition);
    }
    .ability-item:hover{
      transform:translateX(4px);
      box-shadow:var(--shadow-soft);
      border-color:rgba(116,52,93,.22);
    }
    .ability-icon{
      width:42px;height:42px;border-radius:15px;
      background:rgba(192,138,77,.15);
      color:#8B6130;
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      font-weight:850;
    }
    .ability-item h3{font-size:20px;margin-bottom:4px}
    .ability-item p{font-size:15px;margin-bottom:0}

    .category-entry{
      background:linear-gradient(180deg,#FFFDFC,var(--color-bg-alt));
    }
    .entry-panel{
      border-radius:var(--radius-xl);
      padding:44px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(116,52,93,.12);
      box-shadow:var(--shadow-soft);
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:32px;
      align-items:center;
      overflow:hidden;
      position:relative;
    }
    .entry-panel:after{
      content:"";
      position:absolute;
      width:260px;height:260px;border-radius:50%;
      background:rgba(116,52,93,.08);
      right:-80px;bottom:-100px;
    }
    .tag-cloud{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .cloud-tag{
      padding:12px 16px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(116,52,93,.13);
      color:#5A4A52;
      font-weight:700;
      box-shadow:0 10px 24px rgba(66,38,48,.06);
    }
    .cloud-tag.featured{
      background:var(--color-primary);
      color:#fff;
      border-color:var(--color-primary);
    }

    .testimonial-section{
      background:#FFFDFC;
    }
    .quote-card{
      height:100%;
      border-radius:28px;
      padding:30px;
      background:linear-gradient(180deg,#fff,#FFF9F4);
      border:1px solid rgba(116,52,93,.13);
      box-shadow:0 12px 36px rgba(66,38,48,.07);
      position:relative;
      transition:var(--transition);
    }
    .quote-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
    }
    .quote-mark{
      font-size:52px;
      line-height:1;
      color:rgba(116,52,93,.18);
      font-weight:900;
      margin-bottom:2px;
    }
    .quote-card p{
      color:#4C4046;
      font-size:16.5px;
    }
    .quote-meta{
      margin-top:22px;
      display:flex;
      flex-direction:column;
      gap:4px;
      padding-top:18px;
      border-top:1px solid rgba(116,52,93,.10);
    }
    .quote-meta strong{color:var(--color-primary-dark)}
    .quote-meta span{font-size:14px;color:var(--color-muted)}

    .faq-section{
      background:linear-gradient(180deg,var(--color-bg),#FFFDFC);
    }
    .accordion{
      background:transparent;
      margin-top:34px;
    }
    .accordion-item{
      margin-bottom:14px;
      border:1px solid rgba(116,52,93,.12);
      border-radius:22px;
      overflow:hidden;
      background:rgba(255,255,255,.82);
      box-shadow:0 10px 28px rgba(66,38,48,.06);
      transition:var(--transition);
    }
    .accordion-item.is-active{
      border-color:rgba(116,52,93,.28);
      box-shadow:var(--shadow-soft);
    }
    .accordion-title{
      border:0!important;
      color:var(--color-primary-dark)!important;
      font-size:17px;
      font-weight:750;
      padding:21px 56px 21px 24px;
      line-height:1.5;
      min-height:64px;
      display:flex;
      align-items:center;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(116,52,93,.055);
      color:var(--color-primary)!important;
    }
    .accordion-title:before{
      right:24px;
      margin-top:-12px;
      font-size:24px;
      color:var(--color-primary);
      transition:var(--transition);
    }
    .accordion-item.is-active>.accordion-title:before{
      transform:rotate(45deg);
    }
    .accordion-content{
      border:0!important;
      padding:0 24px 24px;
      background:transparent;
      color:var(--color-muted);
      line-height:1.85;
      font-size:16px;
    }

    .cta-section{
      padding:100px 0;
      background:var(--color-bg);
    }
    .cta-box{
      position:relative;
      overflow:hidden;
      border-radius:38px;
      padding:56px;
      background:
        radial-gradient(circle at 12% 20%, rgba(215,163,92,.23), transparent 34%),
        linear-gradient(135deg,#74345D,#1E151B);
      color:#fff;
      box-shadow:0 28px 80px rgba(66,38,48,.22);
    }
    .cta-box:after{
      content:"中文字幕 / 分级提示 / 语境润色 / 合规呈现";
      position:absolute;
      right:30px;
      bottom:24px;
      color:rgba(255,255,255,.10);
      font-size:28px;
      font-weight:850;
      letter-spacing:.08em;
      white-space:nowrap;
    }
    .cta-box h2{color:#fff;max-width:820px}
    .cta-box p{color:rgba(255,255,255,.78);max-width:740px}
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:30px;
      position:relative;
      z-index:1;
    }

    .site-footer{
      background:var(--color-deep);
      color:var(--color-light);
      padding:70px 0 28px;
    }
    .footer-brand{
      display:flex;
      gap:12px;
      align-items:center;
      margin-bottom:18px;
    }
    .footer-brand .brand-mark{
      box-shadow:none;
    }
    .footer-brand strong{color:#fff;font-size:18px}
    .footer-brand span{color:rgba(248,238,232,.64)}
    .footer-desc{
      color:rgba(248,238,232,.72);
      font-size:15px;
      max-width:420px;
    }
    .footer-title{
      color:#fff;
      font-weight:800;
      margin-bottom:16px;
      font-size:16px;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(248,238,232,.70);
      font-size:15px;
    }
    .footer-links a:hover,.footer-links a:focus{
      color:#D7A35C;
    }
    .compliance-note{
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      color:rgba(248,238,232,.72);
      font-size:14px;
      line-height:1.75;
    }
    .footer-bottom{
      margin-top:42px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(248,238,232,.54);
      font-size:14px;
    }

    @media (max-width:1023px){
      .section{padding:78px 0}
      .hero{padding-top:138px;min-height:auto}
      .hero-copy{padding-right:0;margin-bottom:42px}
      .subtitle-panel{max-width:none}
      .float-one{left:10px;top:34px}
      .pain-line:before{display:none}
      .step-card:nth-child(even){margin-left:0}
      .entry-panel{grid-template-columns:1fr}
      .nav-search{display:none}
    }
    @media (max-width:760px){
      .site-container{width:min(calc(100% - 28px), var(--container))}
      .glass-header{top:10px}
      .nav-shell{
        border-radius:28px;
        align-items:flex-start;
        flex-wrap:wrap;
        padding:10px 10px 10px 14px;
      }
      .brand-name strong{font-size:15px}
      .brand-name span{font-size:11px}
      .mobile-toggle{display:flex;margin-left:auto}
      .nav-links{
        display:none;
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:6px;
        padding:12px 0 4px;
      }
      .nav-shell.menu-open .nav-links{display:flex}
      .nav-links a{
        width:100%;
        justify-content:flex-start;
        min-height:46px;
        padding:0 14px;
      }
      .nav-actions{
        display:none;
        width:100%;
        padding:8px 0 2px;
      }
      .nav-shell.menu-open .nav-actions{
        display:flex;
      }
      .nav-actions .btn{width:100%}
      .hero{
        padding:132px 0 68px;
      }
      h1{font-size:clamp(34px,10vw,42px)}
      h2{font-size:30px}
      p,.lead{font-size:16px}
      .hero-actions .btn{width:100%}
      .mockup-wrap{min-height:auto}
      .floating-card{position:relative;left:auto;right:auto;top:auto;bottom:auto;margin-top:12px}
      .subtitle-panel{padding:18px;border-radius:28px}
      .player-box{min-height:220px}
      .timeline-row{grid-template-columns:68px 1fr;gap:10px}
      .timeline-row .quality{grid-column:2;justify-self:start}
      .pain-card,.solution-note,.core-card,.quote-card{padding:24px}
      .step-card{grid-template-columns:1fr}
      .entry-panel{padding:26px;border-radius:28px}
      .cta-box{padding:34px 24px;border-radius:28px}
      .cta-box:after{display:none}
      .cta-actions .btn{width:100%}
      .footer-bottom{display:block}
    }
    @media (max-width:520px){
      .section{padding:62px 0}
      .section-tight{padding:54px 0}
      .brand-mark{width:38px;height:38px;border-radius:14px}
      .hero-brandline{font-size:13px;align-items:flex-start;border-radius:18px}
      .tag{font-size:13px}
      .metric-card{min-height:auto}
      .footer-grid .cell{margin-bottom:26px}
    }

/* roulang page: category1 */
:root{
      --color-primary:#74345D;
      --color-primary-dark:#5A2748;
      --color-primary-soft:#F1E5ED;
      --color-accent:#C08A4D;
      --color-accent-soft:#F8E9D2;
      --color-bg:#FBF7F2;
      --color-bg-2:#F5EEE8;
      --color-card:#FFFDFC;
      --color-dark:#1E151B;
      --color-dark-card:#2B1E27;
      --color-text:#261A22;
      --color-muted:#6F6268;
      --color-border:#E8DCD3;
      --shadow-soft:0 18px 50px rgba(66,38,48,.10);
      --shadow-hover:0 24px 70px rgba(66,38,48,.16);
      --radius-sm:12px;
      --radius-md:20px;
      --radius-lg:28px;
      --radius-xl:36px;
      --container:1220px;
      --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","Helvetica Neue",Arial,sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 8% 8%, rgba(192,138,77,.14), transparent 30%),
        radial-gradient(circle at 92% 18%, rgba(116,52,93,.15), transparent 32%),
        var(--color-bg);
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--color-primary)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(116,52,93,.18)}
    .site-container{
      width:min(calc(100% - 40px),var(--container));
      margin:0 auto;
    }
    .section{
      padding:96px 0;
      position:relative;
    }
    .section.tight{padding:72px 0}
    .section-title{
      max-width:760px;
      margin:0 0 42px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      color:var(--color-primary);
      font-weight:700;
      font-size:14px;
      letter-spacing:.04em;
    }
    .eyebrow::before{
      content:"";
      width:22px;
      height:2px;
      border-radius:999px;
      background:var(--color-accent);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(36px,6vw,62px);
      line-height:1.12;
      letter-spacing:-.04em;
      font-weight:800;
      margin-bottom:22px;
    }
    h2{
      font-size:clamp(30px,4vw,44px);
      line-height:1.22;
      letter-spacing:-.03em;
      font-weight:760;
      margin-bottom:16px;
    }
    h3{
      font-size:22px;
      line-height:1.35;
      font-weight:700;
      margin-bottom:10px;
    }
    p{
      color:var(--color-muted);
      font-size:16px;
    }
    .lead{
      font-size:18px;
      line-height:1.85;
      color:#5B4C53;
      max-width:760px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:46px;
      padding:13px 23px;
      border-radius:999px;
      font-weight:700;
      font-size:15px;
      border:1px solid transparent;
      transition:var(--ease);
      gap:8px;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),#8B416D);
      box-shadow:0 12px 28px rgba(116,52,93,.24);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(116,52,93,.32);
      background:linear-gradient(135deg,var(--color-primary-dark),var(--color-primary));
    }
    .btn-secondary{
      color:var(--color-primary);
      background:rgba(255,255,255,.72);
      border-color:rgba(116,52,93,.18);
    }
    .btn-secondary:hover{
      color:var(--color-primary-dark);
      background:var(--color-primary-soft);
      transform:translateY(-2px);
    }
    .btn-gold{
      background:linear-gradient(135deg,#D8A760,var(--color-accent));
      color:#241818;
      box-shadow:0 14px 34px rgba(192,138,77,.22);
    }
    .btn-gold:hover{color:#241818;transform:translateY(-2px)}
    .btn:focus-visible,a:focus-visible,button:focus-visible,input:focus-visible{
      outline:3px solid rgba(192,138,77,.45);
      outline-offset:3px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      padding:7px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:700;
      color:var(--color-primary);
      background:var(--color-primary-soft);
      border:1px solid rgba(116,52,93,.1);
    }
    .glass-header{
      position:fixed;
      top:18px;
      left:0;
      right:0;
      z-index:50;
      pointer-events:none;
    }
    .nav-shell{
      width:min(calc(100% - 36px),var(--container));
      margin:0 auto;
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
      padding:12px 14px 12px 18px;
      border-radius:999px;
      background:rgba(255,252,248,.72);
      border:1px solid rgba(116,52,93,.14);
      box-shadow:0 14px 44px rgba(66,38,48,.10);
      backdrop-filter:blur(18px) saturate(140%);
      pointer-events:auto;
      transition:var(--ease);
    }
    .glass-header.is-scrolled .nav-shell{
      background:rgba(255,252,248,.92);
      box-shadow:0 16px 48px rgba(66,38,48,.14);
    }
    .brand,.footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      position:relative;
      display:inline-flex;
      width:42px;
      height:42px;
      border-radius:15px;
      background:linear-gradient(145deg,var(--color-primary),#9B527B);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.24),0 10px 22px rgba(116,52,93,.25);
      flex:0 0 auto;
    }
    .brand-mark::before,.brand-mark::after{
      content:"";
      position:absolute;
      left:10px;
      right:10px;
      height:3px;
      border-radius:999px;
      background:#fff;
      opacity:.92;
    }
    .brand-mark::before{top:14px}
    .brand-mark::after{top:24px;width:14px;right:auto}
    .brand-name{display:flex;flex-direction:column;line-height:1.2}
    .brand-name strong{
      font-size:17px;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--color-text);
    }
    .brand-name span{
      font-size:12px;
      color:var(--color-muted);
      margin-top:2px;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:6px;
      list-style:none;
      margin:0;
      padding:0;
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      min-height:42px;
      padding:0 15px;
      border-radius:999px;
      font-size:15px;
      font-weight:650;
      color:#3A2A33;
    }
    .nav-links a:hover,.nav-links a.active{
      color:var(--color-primary);
      background:rgba(116,52,93,.09);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-search{
      height:42px;
      min-width:146px;
      padding:0 14px;
      border-radius:999px;
      display:flex;
      align-items:center;
      gap:9px;
      color:#7A6970;
      background:rgba(255,255,255,.58);
      border:1px solid rgba(116,52,93,.12);
      font-size:13px;
    }
    .nav-search i{
      width:13px;
      height:13px;
      border:2px solid currentColor;
      border-radius:50%;
      position:relative;
      opacity:.78;
    }
    .nav-search i::after{
      content:"";
      width:6px;
      height:2px;
      background:currentColor;
      position:absolute;
      right:-6px;
      bottom:-3px;
      transform:rotate(45deg);
      border-radius:999px;
    }
    .mobile-toggle{
      display:none;
      width:46px;
      height:46px;
      border-radius:999px;
      border:1px solid rgba(116,52,93,.16);
      background:rgba(255,255,255,.7);
      position:relative;
    }
    .mobile-toggle span,
    .mobile-toggle span::before,
    .mobile-toggle span::after{
      position:absolute;
      left:13px;
      right:13px;
      height:2px;
      background:var(--color-primary);
      border-radius:999px;
      content:"";
      transition:var(--ease);
    }
    .mobile-toggle span{top:22px}
    .mobile-toggle span::before{left:0;right:0;top:-7px}
    .mobile-toggle span::after{left:0;right:0;top:7px}
    .mobile-toggle.is-open span{background:transparent}
    .mobile-toggle.is-open span::before{top:0;transform:rotate(45deg)}
    .mobile-toggle.is-open span::after{top:0;transform:rotate(-45deg)}

    .category-hero{
      min-height:540px;
      padding:138px 0 76px;
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 82% 22%, rgba(116,52,93,.18), transparent 30%),
        linear-gradient(135deg,#FFFDFC 0%,#F7EEE8 62%,#EFE1EA 100%);
    }
    .category-hero::before{
      content:"";
      position:absolute;
      width:440px;
      height:440px;
      border-radius:50%;
      right:-170px;
      top:70px;
      background:rgba(192,138,77,.16);
      filter:blur(4px);
    }
    .category-hero::after{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:120px;
      background:linear-gradient(to bottom,transparent,var(--color-bg));
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:2}
    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:20px;
      color:var(--color-muted);
      font-size:14px;
    }
    .breadcrumb a{font-weight:700;color:var(--color-primary)}
    .breadcrumb span{opacity:.7}
    .hero-search-panel{
      position:relative;
      z-index:2;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(116,52,93,.14);
      border-radius:var(--radius-xl);
      padding:28px;
      box-shadow:var(--shadow-soft);
      backdrop-filter:blur(16px);
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:12px;
      background:#fff;
      border:1px solid rgba(116,52,93,.16);
      border-radius:999px;
      padding:9px 10px 9px 20px;
      box-shadow:0 12px 28px rgba(66,38,48,.08);
      margin-bottom:22px;
    }
    .search-box input{
      border:0;
      box-shadow:none;
      margin:0;
      height:44px;
      background:transparent;
      color:var(--color-text);
    }
    .search-box input:focus{
      border:0;
      box-shadow:none;
      background:transparent;
    }
    .search-box:focus-within{
      border-color:var(--color-primary);
      box-shadow:0 0 0 4px rgba(116,52,93,.1),0 18px 34px rgba(66,38,48,.1);
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .floating-card{
      margin-top:24px;
      padding:22px;
      border-radius:24px;
      background:linear-gradient(145deg,var(--color-dark),var(--color-dark-card));
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .floating-card::after{
      content:"字幕分类";
      position:absolute;
      right:20px;
      bottom:12px;
      color:rgba(255,255,255,.08);
      font-size:48px;
      font-weight:800;
      letter-spacing:-.05em;
    }
    .timeline-line{
      height:7px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--color-accent) 0 28%,rgba(255,255,255,.18) 28% 100%);
      margin:18px 0;
    }
    .mini-meta{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      position:relative;
      z-index:1;
    }
    .mini-meta span{
      border:1px solid rgba(255,255,255,.13);
      border-radius:14px;
      padding:10px;
      color:#F8EEE8;
      font-size:13px;
      background:rgba(255,255,255,.06);
    }

    .filter-bar{
      margin-top:-36px;
      position:relative;
      z-index:3;
    }
    .filter-shell{
      background:rgba(255,253,252,.9);
      border:1px solid rgba(116,52,93,.12);
      border-radius:28px;
      padding:18px;
      box-shadow:var(--shadow-soft);
      backdrop-filter:blur(16px);
    }
    .pill-list{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .pill-list a{
      display:inline-flex;
      align-items:center;
      min-height:42px;
      padding:0 16px;
      border-radius:999px;
      background:#fff;
      color:var(--color-muted);
      border:1px solid rgba(116,52,93,.12);
      font-size:14px;
      font-weight:700;
    }
    .pill-list a:hover{
      background:var(--color-primary);
      color:#fff;
      transform:translateY(-2px);
    }
    .pill-list a.current{
      background:linear-gradient(135deg,var(--color-accent),#D7A35C);
      color:#2A1B15;
      border-color:transparent;
    }

    .magazine-layout{
      display:grid;
      grid-template-columns:minmax(0,1.28fr) minmax(320px,.72fr);
      gap:26px;
      align-items:start;
    }
    .feature-topic{
      min-height:520px;
      padding:36px;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg,rgba(116,52,93,.92),rgba(43,30,39,.96)),
        radial-gradient(circle at 82% 14%,rgba(192,138,77,.28),transparent 34%);
      color:#fff;
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
    }
    .feature-topic::before{
      content:"";
      position:absolute;
      inset:28px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:28px;
      pointer-events:none;
    }
    .feature-topic h2{color:#fff;margin-top:68px}
    .feature-topic p{color:#EBDDE5;max-width:640px}
    .feature-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:26px;
      position:relative;
      z-index:1;
    }
    .abstract-board{
      position:absolute;
      right:34px;
      top:34px;
      width:250px;
      padding:16px;
      border-radius:22px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(10px);
    }
    .subtitle-row{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.25);
      margin:12px 0;
    }
    .subtitle-row:nth-child(2){width:72%;background:rgba(192,138,77,.68)}
    .subtitle-row:nth-child(3){width:84%}
    .subtitle-row:nth-child(4){width:56%}
    .compact-list{
      display:grid;
      gap:16px;
    }
    .compact-card,.topic-card,.step-card,.faq-item{
      background:var(--color-card);
      border:1px solid rgba(116,52,93,.12);
      border-radius:24px;
      box-shadow:0 10px 34px rgba(66,38,48,.07);
      transition:var(--ease);
    }
    .compact-card{
      padding:24px;
    }
    .compact-card:hover,.topic-card:hover,.step-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(116,52,93,.22);
    }
    .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:12px;
    }
    .meta-line span{
      font-size:12px;
      font-weight:700;
      color:var(--color-muted);
      background:#F8F1EC;
      border:1px solid rgba(116,52,93,.08);
      border-radius:999px;
      padding:5px 9px;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--color-primary);
      font-weight:800;
      margin-top:8px;
    }
    .text-link::after{
      content:"→";
      transition:var(--ease);
    }
    .text-link:hover::after{transform:translateX(4px)}
    .method-section{
      background:linear-gradient(180deg,var(--color-bg-2),var(--color-bg));
    }
    .steps-line{
      position:relative;
    }
    .steps-line::before{
      content:"";
      position:absolute;
      top:48px;
      left:8%;
      right:8%;
      height:1px;
      background:linear-gradient(90deg,transparent,rgba(116,52,93,.22),transparent);
    }
    .step-card{
      position:relative;
      padding:28px;
      min-height:238px;
    }
    .step-index{
      width:48px;
      height:48px;
      border-radius:17px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,var(--color-primary),#95517A);
      color:#fff;
      font-weight:800;
      box-shadow:0 12px 24px rgba(116,52,93,.22);
      margin-bottom:18px;
    }
    .topic-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:22px;
    }
    .topic-card{
      padding:30px;
      min-height:280px;
      overflow:hidden;
      position:relative;
    }
    .topic-card::after{
      content:"";
      position:absolute;
      width:150px;
      height:150px;
      border-radius:50%;
      right:-54px;
      bottom:-54px;
      background:rgba(116,52,93,.08);
    }
    .topic-card.warm{background:#FFF7EC}
    .topic-card.rose{background:#FFF4F6}
    .topic-card.purple{background:#F7F0F6}
    .topic-stat{
      display:inline-flex;
      margin:18px 0;
      color:#2B1E27;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(116,52,93,.1);
      border-radius:999px;
      padding:8px 12px;
      font-weight:800;
      font-size:13px;
    }
    .classification-note{
      padding:34px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid rgba(116,52,93,.12);
      box-shadow:var(--shadow-soft);
    }
    .note-list{
      margin:22px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .note-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:#4D3E46;
      font-weight:650;
    }
    .note-list li::before{
      content:"";
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--color-accent);
      margin-top:10px;
      flex:0 0 auto;
    }

    .faq-section{background:#FFFDFC}
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border-radius:22px;
      overflow:hidden;
      border:1px solid rgba(116,52,93,.12);
      background:#fff;
      box-shadow:0 8px 26px rgba(66,38,48,.06);
    }
    .accordion-title{
      border:0!important;
      color:var(--color-text)!important;
      font-size:17px;
      font-weight:750;
      padding:22px 56px 22px 24px;
      background:#fff;
      line-height:1.5;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#FBF4F0;
      color:var(--color-primary)!important;
    }
    .accordion-title::before{
      right:24px;
      color:var(--color-primary);
      font-size:22px;
      margin-top:-13px;
    }
    .accordion-content{
      border:0!important;
      background:#fff;
      padding:0 24px 24px;
      color:var(--color-muted);
      line-height:1.85;
    }
    .is-active>.accordion-title{
      background:#FBF4F0;
      box-shadow:inset 4px 0 0 var(--color-primary);
    }

    .cta-band{
      padding:0 0 104px;
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      padding:48px;
      background:
        radial-gradient(circle at 88% 20%,rgba(192,138,77,.28),transparent 32%),
        linear-gradient(135deg,#24171F,#74345D);
      color:#fff;
      box-shadow:0 24px 80px rgba(66,38,48,.20);
    }
    .cta-panel h2{color:#fff}
    .cta-panel p{color:#F1E5ED}
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
      align-items:center;
      height:100%;
    }
    .cta-stats{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .cta-stats span{
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.08);
      color:#F8EEE8;
      border-radius:999px;
      padding:8px 12px;
      font-size:13px;
      font-weight:700;
    }

    .site-footer{
      background:var(--color-dark);
      color:#F8EEE8;
      padding:72px 0 28px;
    }
    .footer-grid{row-gap:34px}
    .footer-brand .brand-name strong{color:#fff}
    .footer-brand .brand-name span{color:#D8C6CF}
    .footer-desc{
      margin-top:18px;
      max-width:520px;
      color:#D8C6CF;
    }
    .footer-title{
      color:#fff;
      font-weight:800;
      margin-bottom:14px;
      font-size:16px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#D8C6CF;
      font-size:14px;
    }
    .footer-links a:hover{color:var(--color-accent)}
    .compliance-note{
      color:#D8C6CF;
      font-size:14px;
      line-height:1.8;
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.1);
    }
    .footer-bottom{
      margin-top:48px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.1);
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      color:#BFAEB7;
      font-size:13px;
    }

    @media (max-width:1023px){
      .nav-shell{
        border-radius:28px;
        align-items:flex-start;
        flex-wrap:wrap;
      }
      .mobile-toggle{display:inline-flex;margin-left:auto}
      .nav-links,.nav-actions{
        display:none;
        width:100%;
      }
      .nav-shell.menu-open .nav-links,
      .nav-shell.menu-open .nav-actions{
        display:flex;
      }
      .nav-shell.menu-open .nav-links{
        flex-direction:column;
        align-items:stretch;
        gap:8px;
        padding-top:12px;
      }
      .nav-shell.menu-open .nav-links a{
        width:100%;
        justify-content:flex-start;
        min-height:48px;
      }
      .nav-shell.menu-open .nav-actions{
        flex-direction:column;
        align-items:stretch;
        padding-bottom:4px;
      }
      .nav-search{width:100%;justify-content:flex-start}
      .nav-actions .btn{width:100%}
      .magazine-layout{grid-template-columns:1fr}
      .topic-grid{grid-template-columns:1fr 1fr}
      .steps-line::before{display:none}
      .cta-actions{justify-content:flex-start;margin-top:24px}
    }
    @media (max-width:639px){
      .site-container{width:min(calc(100% - 28px),var(--container))}
      .glass-header{top:10px}
      .nav-shell{width:calc(100% - 20px);padding:10px 12px;border-radius:24px}
      .brand-name strong{font-size:15px}
      .brand-name span{font-size:11px}
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .category-hero{padding:116px 0 64px;min-height:auto}
      .hero-search-panel{padding:20px;border-radius:26px}
      .search-box{border-radius:22px;align-items:stretch;flex-direction:column;padding:14px}
      .search-box .btn{width:100%}
      .mini-meta{grid-template-columns:1fr}
      .section{padding:66px 0}
      .feature-topic{padding:26px;min-height:auto;border-radius:28px}
      .feature-topic h2{margin-top:150px}
      .abstract-board{left:26px;right:26px;width:auto;top:26px}
      .topic-grid{grid-template-columns:1fr}
      .classification-note{padding:24px}
      .cta-panel{padding:30px 24px;border-radius:28px}
      .cta-actions .btn{width:100%}
      .footer-bottom{flex-direction:column}
    }
