/* roulang page: index */
:root{
      --plum:#3f1835;
      --plum-2:#5a2549;
      --plum-3:#7b3b63;
      --wine:#6c243d;
      --rose:#c58a91;
      --rose-soft:#f2dfe0;
      --sand:#f3eadf;
      --ivory:#fffaf2;
      --almond:#ead7c5;
      --copper:#b87a45;
      --copper-2:#d6a36b;
      --charcoal:#261f25;
      --muted:#776670;
      --line:rgba(63,24,53,.14);
      --deep-line:rgba(255,250,242,.16);
      --shadow:0 18px 45px rgba(63,24,53,.10);
      --shadow-strong:0 28px 70px rgba(63,24,53,.18);
      --radius:20px;
      --radius-sm:14px;
      --container:1240px;
      --ease:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Source Han Sans SC",Arial,sans-serif;
      color:var(--charcoal);
      background:
        radial-gradient(circle at 12% 8%, rgba(197,138,145,.18), transparent 28%),
        radial-gradient(circle at 84% 12%, rgba(184,122,69,.12), transparent 24%),
        linear-gradient(180deg,var(--ivory) 0%,#f8efe7 48%,#fffaf4 100%);
      line-height:1.72;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      z-index:-1;
      opacity:.34;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(63,24,53,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63,24,53,.025) 1px, transparent 1px);
      background-size:38px 38px;
      mask-image:linear-gradient(180deg,rgba(0,0,0,.85),rgba(0,0,0,.25));
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    button{cursor:pointer}
    .site-container{
      width:min(calc(100% - 40px), var(--container));
      margin:0 auto;
    }
    .skip-link{
      position:absolute;
      left:-999px;
      top:12px;
      z-index:999;
      background:var(--plum);
      color:#fff;
      padding:10px 14px;
      border-radius:10px;
    }
    .skip-link:focus{left:12px;outline:3px solid var(--copper-2)}
    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      backdrop-filter:blur(18px);
      background:rgba(255,250,242,.82);
      border-bottom:1px solid var(--line);
      transition:var(--ease);
    }
    .site-header.is-scrolled{
      background:rgba(255,250,242,.96);
      box-shadow:0 10px 30px rgba(63,24,53,.08);
    }
    .nav-wrap{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      position:relative;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:245px;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:var(--ivory);
      font-weight:800;
      letter-spacing:.04em;
      background:
        linear-gradient(145deg,var(--plum),var(--wine)),
        var(--plum);
      box-shadow:0 12px 26px rgba(63,24,53,.22);
      position:relative;
      overflow:hidden;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      width:20px;
      height:80px;
      background:rgba(255,255,255,.16);
      transform:rotate(34deg);
      right:2px;
      top:-20px;
    }
    .brand-text strong{
      display:block;
      font-size:17px;
      line-height:1.18;
      color:var(--plum);
      letter-spacing:.01em;
    }
    .brand-text span{
      display:block;
      color:var(--muted);
      font-size:12px;
      margin-top:2px;
    }
    .nav-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.62);
      color:var(--plum);
      border-radius:14px;
      align-items:center;
      justify-content:center;
    }
    .nav-toggle span,.nav-toggle span:before,.nav-toggle span:after{
      width:18px;
      height:2px;
      background:var(--plum);
      display:block;
      border-radius:2px;
      position:relative;
      transition:var(--ease);
    }
    .nav-toggle span:before,.nav-toggle span:after{content:"";position:absolute;left:0}
    .nav-toggle span:before{top:-6px}
    .nav-toggle span:after{top:6px}
    .nav-toggle.is-open span{background:transparent}
    .nav-toggle.is-open span:before{top:0;transform:rotate(45deg)}
    .nav-toggle.is-open span:after{top:0;transform:rotate(-45deg)}
    .main-nav{
      display:flex;
      align-items:center;
      gap:6px;
      flex:1;
      justify-content:center;
    }
    .nav-item{
      position:relative;
    }
    .nav-link{
      display:flex;
      flex-direction:column;
      gap:1px;
      padding:11px 15px;
      border-radius:14px;
      color:var(--plum);
      font-weight:700;
      line-height:1.2;
    }
    .nav-link small{
      color:var(--muted);
      font-size:11px;
      font-weight:500;
    }
    .nav-link:hover,.nav-link.active{
      background:var(--rose-soft);
      color:var(--wine);
    }
    .nav-link:focus-visible,.btn:focus-visible,.nav-toggle:focus-visible,.faq-question:focus-visible,input:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(184,122,69,.42);
      outline-offset:3px;
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:220px;
      justify-content:flex-end;
    }
    .nav-note{
      padding:8px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      color:var(--muted);
      font-size:13px;
      background:rgba(255,255,255,.52);
      white-space:nowrap;
    }
    .mega-trigger{
      border:0;
      border-radius:14px;
      padding:11px 14px;
      color:var(--ivory);
      background:linear-gradient(135deg,var(--plum),var(--wine));
      box-shadow:0 12px 24px rgba(63,24,53,.18);
    }
    .mega-panel{
      position:absolute;
      top:calc(100% + 10px);
      left:50%;
      transform:translateX(-50%) translateY(8px);
      width:min(920px,calc(100vw - 40px));
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:var(--ease);
      background:rgba(255,250,242,.98);
      border:1px solid var(--line);
      border-radius:24px;
      box-shadow:var(--shadow-strong);
      padding:20px;
    }
    .mega-panel.is-open,.nav-wrap:hover .mega-panel{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
      transform:translateX(-50%) translateY(0);
    }
    .mega-grid{
      display:grid;
      grid-template-columns:1fr 1.1fr .95fr;
      gap:16px;
    }
    .mega-card{
      border-radius:18px;
      padding:18px;
      background:#fff7ef;
      border:1px solid var(--line);
    }
    .mega-card.dark{
      background:linear-gradient(145deg,var(--plum),#2d1026);
      color:var(--ivory);
      min-height:178px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .mega-card h3{
      font-size:17px;
      margin:0 0 8px;
      color:inherit;
    }
    .mega-card p,.mega-list li{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .mega-card.dark p{color:rgba(255,250,242,.78)}
    .mega-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .mega-list a{
      display:block;
      padding:10px 12px;
      border-radius:12px;
      background:rgba(63,24,53,.05);
      color:var(--plum);
      font-weight:700;
    }
    .mega-list a:hover{background:var(--rose-soft);transform:translateX(3px)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 18px;
      border-radius:14px;
      font-weight:800;
      border:1px solid transparent;
      transition:var(--ease);
      line-height:1.2;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--plum),var(--wine));
      color:var(--ivory);
      box-shadow:0 16px 32px rgba(63,24,53,.22);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 22px 44px rgba(63,24,53,.28);
      filter:saturate(1.05);
    }
    .btn-secondary{
      border-color:rgba(63,24,53,.24);
      color:var(--plum);
      background:rgba(255,255,255,.54);
    }
    .btn-secondary:hover{
      color:var(--wine);
      background:var(--rose-soft);
      transform:translateY(-2px);
    }
    .btn-copper{
      background:linear-gradient(135deg,var(--copper),var(--copper-2));
      color:#2a160d;
      box-shadow:0 16px 32px rgba(184,122,69,.22);
    }
    .btn-copper:hover{transform:translateY(-2px);color:#1d0f08}
    .section{
      padding:82px 0;
      position:relative;
    }
    .section-tight{padding:56px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(197,138,145,.18);
      color:var(--wine);
      font-size:13px;
      font-weight:800;
      margin-bottom:14px;
    }
    .section-kicker:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--copper);
      box-shadow:0 0 0 5px rgba(184,122,69,.14);
    }
    .section-title{
      font-size:clamp(28px,3.2vw,44px);
      line-height:1.22;
      color:var(--plum);
      margin:0 0 14px;
      letter-spacing:-.03em;
      font-weight:800;
    }
    .section-lead{
      max-width:760px;
      color:var(--muted);
      font-size:17px;
      margin:0;
    }
    .hero{
      padding:72px 0 78px;
      overflow:hidden;
    }
    .hero-grid{
      align-items:center;
    }
    .hero-copy{
      position:relative;
      z-index:2;
    }
    .hero .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--wine);
      font-weight:800;
      padding:8px 13px;
      background:rgba(255,255,255,.62);
      border:1px solid var(--line);
      border-radius:999px;
      box-shadow:0 10px 22px rgba(63,24,53,.06);
      margin-bottom:20px;
    }
    .hero h1{
      color:var(--plum);
      font-size:clamp(40px,6vw,72px);
      line-height:1.13;
      letter-spacing:-.055em;
      margin:0 0 22px;
      font-weight:900;
    }
    .hero h1 span{
      color:var(--wine);
      position:relative;
      white-space:nowrap;
    }
    .hero p{
      color:#5e4d58;
      font-size:18px;
      max-width:660px;
      margin:0 0 26px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:26px 0 24px;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border:1px solid rgba(63,24,53,.13);
      background:rgba(255,250,242,.72);
      color:var(--muted);
      border-radius:999px;
      padding:7px 11px;
      font-size:13px;
      font-weight:700;
    }
    .tag strong{color:var(--plum)}
    .hero-art{
      min-height:560px;
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .cover-stack{
      width:min(450px,100%);
      aspect-ratio:4/5;
      border-radius:34px;
      background:
        linear-gradient(145deg,rgba(63,24,53,.96),rgba(108,36,61,.94)),
        var(--plum);
      box-shadow:var(--shadow-strong);
      position:relative;
      overflow:hidden;
      padding:28px;
      color:var(--ivory);
      border:1px solid rgba(255,250,242,.16);
    }
    .cover-stack:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(255,250,242,.14);
      border-radius:26px;
      pointer-events:none;
    }
    .cover-stack:after{
      content:"";
      position:absolute;
      width:480px;
      height:480px;
      border:1px solid rgba(214,163,107,.35);
      border-radius:46% 54% 52% 48%;
      left:90px;
      bottom:-160px;
      transform:rotate(-18deg);
    }
    .cover-label{
      position:relative;
      z-index:2;
      display:flex;
      justify-content:space-between;
      align-items:center;
      font-size:13px;
      color:rgba(255,250,242,.72);
    }
    .cover-title{
      position:absolute;
      z-index:2;
      left:34px;
      right:34px;
      bottom:36px;
    }
    .cover-title h2{
      margin:0 0 14px;
      font-size:34px;
      line-height:1.15;
      color:#fff8ed;
    }
    .cover-title p{
      margin:0;
      color:rgba(255,250,242,.76);
      font-size:15px;
    }
    .floating-note{
      position:absolute;
      z-index:3;
      right:0;
      top:72px;
      width:210px;
      padding:16px;
      border-radius:18px;
      background:rgba(255,250,242,.92);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      color:var(--plum);
    }
    .floating-note.bottom{
      left:0;
      right:auto;
      top:auto;
      bottom:62px;
      background:#fff3e5;
    }
    .floating-note b{
      display:block;
      margin-bottom:5px;
      color:var(--wine);
    }
    .floating-note span{
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
      display:block;
    }
    .pain-layout{
      display:grid;
      grid-template-columns:.86fr 1.14fr;
      gap:28px;
      align-items:stretch;
      margin-top:34px;
    }
    .pain-panel{
      border-radius:26px;
      padding:30px;
      background:linear-gradient(145deg,#fff6ee,#f1dfd4);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      min-height:320px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .pain-panel h3{
      color:var(--plum);
      font-size:26px;
      line-height:1.25;
      margin:0 0 12px;
    }
    .pain-panel p{color:var(--muted);margin:0}
    .pain-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .emotion-card,.category-card,.result-card,.testimonial,.faq-item,.path-step{
      border:1px solid var(--line);
      background:rgba(255,250,242,.76);
      border-radius:var(--radius);
      box-shadow:0 12px 30px rgba(63,24,53,.06);
      transition:var(--ease);
    }
    .emotion-card{
      padding:22px;
      min-height:158px;
    }
    .emotion-card:hover,.category-card:hover,.result-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow);
      border-color:rgba(184,122,69,.26);
    }
    .emotion-icon{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      margin-bottom:14px;
      color:var(--plum);
      background:var(--rose-soft);
      font-weight:900;
    }
    .emotion-card h3{
      margin:0 0 8px;
      color:var(--plum);
      font-size:19px;
    }
    .emotion-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }
    .category-section{
      background:linear-gradient(180deg,rgba(63,24,53,.03),rgba(255,250,242,.2));
    }
    .category-grid{
      margin-top:34px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
    }
    .category-card{
      padding:28px;
      overflow:hidden;
      position:relative;
    }
    .category-card.featured{
      min-height:350px;
      background:
        linear-gradient(145deg,rgba(63,24,53,.95),rgba(90,37,73,.91)),
        var(--plum);
      color:var(--ivory);
    }
    .category-card.featured:after{
      content:"";
      position:absolute;
      right:-72px;
      bottom:-95px;
      width:320px;
      height:320px;
      border-radius:50%;
      border:1px solid rgba(214,163,107,.35);
    }
    .category-card h3{
      font-size:28px;
      margin:0 0 12px;
      color:inherit;
      position:relative;
      z-index:1;
    }
    .category-card p{
      color:var(--muted);
      margin:0 0 20px;
      position:relative;
      z-index:1;
    }
    .category-card.featured p{color:rgba(255,250,242,.78)}
    .category-meta{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:22px;
      position:relative;
      z-index:1;
    }
    .category-meta span{
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      color:inherit;
      font-size:13px;
      border:1px solid rgba(255,255,255,.15);
    }
    .category-card:not(.featured) .category-meta span{
      background:var(--rose-soft);
      color:var(--wine);
      border-color:transparent;
    }
    .path-wrap{
      margin-top:38px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      position:relative;
    }
    .path-step{
      padding:22px;
      position:relative;
      min-height:228px;
      background:#fff8ef;
    }
    .path-step:before{
      content:attr(data-step);
      display:inline-grid;
      place-items:center;
      width:38px;
      height:38px;
      border-radius:13px;
      background:var(--plum);
      color:#fff8ef;
      font-weight:900;
      margin-bottom:18px;
      box-shadow:0 12px 24px rgba(63,24,53,.16);
    }
    .path-step h3{
      margin:0 0 10px;
      color:var(--plum);
      font-size:19px;
    }
    .path-step p{margin:0;color:var(--muted);font-size:15px}
    .results{
      background:linear-gradient(145deg,#32142b,#54203f);
      color:var(--ivory);
      overflow:hidden;
    }
    .results .section-title{color:#fff7ed}
    .results .section-lead{color:rgba(255,250,242,.74)}
    .result-grid{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:18px;
      margin-top:36px;
    }
    .result-card{
      background:rgba(255,250,242,.08);
      border-color:var(--deep-line);
      color:var(--ivory);
      box-shadow:none;
      padding:24px;
    }
    .result-card.large{grid-column:span 5;min-height:260px}
    .result-card.mid{grid-column:span 4}
    .result-card.small{grid-column:span 3}
    .metric{
      font-size:44px;
      line-height:1;
      font-weight:900;
      color:var(--copper-2);
      letter-spacing:-.04em;
      margin-bottom:12px;
    }
    .result-card h3{margin:0 0 10px;color:#fff7ed;font-size:20px}
    .result-card p{margin:0;color:rgba(255,250,242,.72)}
    .quote-mark{
      font-size:54px;
      color:rgba(214,163,107,.55);
      line-height:.8;
      margin-bottom:8px;
    }
    .testimonial-grid{
      margin-top:36px;
      display:grid;
      grid-template-columns:1.1fr .9fr 1fr;
      gap:18px;
      align-items:stretch;
    }
    .testimonial{
      padding:26px;
      background:#fff8ef;
    }
    .testimonial:nth-child(2){
      transform:translateY(24px);
      background:#f4e3da;
    }
    .testimonial p{
      margin:0 0 18px;
      color:#4d3f49;
      font-size:16px;
    }
    .reader{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .avatar{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:var(--plum);
      color:var(--ivory);
      font-weight:900;
    }
    .reader b{display:block;color:var(--plum);line-height:1.2}
    .reader span{display:block;color:var(--muted);font-size:13px}
    .insight-strip{
      margin-top:34px;
      border-radius:26px;
      padding:28px;
      border:1px solid var(--line);
      background:
        linear-gradient(90deg,rgba(197,138,145,.18),rgba(255,250,242,.76)),
        #fff8ef;
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:18px;
    }
    .insight-item{
      padding-left:18px;
      border-left:3px solid rgba(184,122,69,.48);
    }
    .insight-item b{
      display:block;
      color:var(--plum);
      font-size:18px;
      margin-bottom:6px;
    }
    .insight-item span{
      color:var(--muted);
      font-size:14px;
    }
    .faq-wrap{
      margin-top:34px;
      display:grid;
      grid-template-columns:.86fr 1.14fr;
      gap:24px;
      align-items:start;
    }
    .faq-aside{
      padding:28px;
      border-radius:26px;
      background:linear-gradient(145deg,#fff8ef,#f2dfd6);
      border:1px solid var(--line);
      position:sticky;
      top:100px;
    }
    .faq-aside h3{margin:0 0 10px;color:var(--plum);font-size:26px}
    .faq-aside p{margin:0 0 18px;color:var(--muted)}
    .faq-list{display:grid;gap:12px}
    .faq-item{
      overflow:hidden;
      background:rgba(255,250,242,.86);
    }
    .faq-question{
      width:100%;
      border:0;
      background:transparent;
      color:var(--plum);
      padding:19px 22px;
      text-align:left;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      font-weight:800;
    }
    .faq-question:after{
      content:"+";
      width:28px;
      height:28px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:var(--rose-soft);
      color:var(--wine);
      flex:0 0 auto;
      transition:var(--ease);
    }
    .faq-item.is-open .faq-question:after{
      content:"−";
      background:var(--plum);
      color:var(--ivory);
    }
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
    }
    .faq-answer p{
      margin:0;
      padding:0 22px 20px;
      color:var(--muted);
    }
    .cta-band{
      padding:0 0 90px;
    }
    .cta-box{
      border-radius:34px;
      padding:44px;
      background:
        linear-gradient(135deg,rgba(63,24,53,.96),rgba(108,36,61,.94)),
        var(--plum);
      color:var(--ivory);
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow-strong);
      display:grid;
      grid-template-columns:1fr auto;
      gap:28px;
      align-items:center;
    }
    .cta-box:before{
      content:"";
      position:absolute;
      right:-90px;
      top:-120px;
      width:330px;
      height:330px;
      border-radius:50%;
      border:1px solid rgba(214,163,107,.32);
      background:rgba(214,163,107,.08);
    }
    .cta-box h2{
      position:relative;
      margin:0 0 10px;
      color:#fff8ed;
      font-size:clamp(28px,3.5vw,46px);
      line-height:1.18;
    }
    .cta-box p{
      position:relative;
      margin:0;
      color:rgba(255,250,242,.76);
      max-width:720px;
    }
    .cta-actions{
      position:relative;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .site-footer{
      background:#21101d;
      color:rgba(255,250,242,.78);
      padding:56px 0 26px;
      border-top:1px solid rgba(255,250,242,.08);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .8fr .8fr 1fr;
      gap:28px;
      margin-bottom:34px;
    }
    .footer-brand strong{
      display:block;
      color:#fff8ed;
      font-size:20px;
      margin-bottom:10px;
    }
    .footer-brand p,.footer-col p{
      margin:0;
      color:rgba(255,250,242,.66);
      font-size:14px;
    }
    .footer-col h3{
      color:#fff8ed;
      font-size:16px;
      margin:0 0 14px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,250,242,.72);
      font-size:14px;
    }
    .footer-links a:hover{color:var(--copper-2);padding-left:4px}
    .footer-bottom{
      padding-top:22px;
      border-top:1px solid rgba(255,250,242,.1);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      font-size:13px;
      color:rgba(255,250,242,.54);
    }
    .notice{
      border:1px solid rgba(214,163,107,.25);
      background:rgba(214,163,107,.08);
      color:rgba(255,250,242,.72);
      padding:12px 14px;
      border-radius:14px;
      font-size:13px;
      margin-top:14px;
    }
    @media (max-width:1024px){
      .brand{min-width:auto}
      .nav-actions{min-width:auto}
      .nav-note{display:none}
      .hero-art{min-height:480px}
      .floating-note{right:8px}
      .floating-note.bottom{left:8px}
      .path-wrap{grid-template-columns:repeat(2,1fr)}
      .result-card.large{grid-column:span 6}
      .result-card.mid{grid-column:span 6}
      .result-card.small{grid-column:span 6}
      .testimonial-grid{grid-template-columns:1fr 1fr}
      .testimonial:nth-child(2){transform:none}
      .footer-grid{grid-template-columns:1fr 1fr}
      .mega-grid{grid-template-columns:1fr 1fr}
      .mega-card.dark{grid-column:span 2}
    }
    @media (max-width:768px){
      .site-container{width:min(calc(100% - 28px), var(--container))}
      .nav-wrap{min-height:68px}
      .brand-text strong{font-size:15px}
      .brand-text span{font-size:11px}
      .nav-toggle{display:flex}
      .main-nav{
        position:absolute;
        top:calc(100% + 1px);
        left:0;
        right:0;
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        background:rgba(255,250,242,.98);
        border:1px solid var(--line);
        border-radius:0 0 22px 22px;
        box-shadow:var(--shadow);
      }
      .main-nav.is-open{display:flex}
      .nav-link{padding:13px 14px}
      .nav-actions{display:none}
      .mega-panel{
        position:static;
        transform:none;
        width:100%;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        display:none;
        margin-top:10px;
        box-shadow:none;
      }
      .main-nav.is-open + .mega-panel{display:block}
      .mega-grid,.mega-card.dark{grid-template-columns:1fr;grid-column:auto}
      .hero{padding:48px 0 56px}
      .hero-art{min-height:420px;margin-top:30px}
      .cover-stack{width:min(390px,92%)}
      .floating-note{display:none}
      .pain-layout,.category-grid,.faq-wrap,.cta-box{grid-template-columns:1fr}
      .pain-grid{grid-template-columns:1fr}
      .insight-strip{grid-template-columns:1fr}
      .testimonial-grid{grid-template-columns:1fr}
      .faq-aside{position:relative;top:auto}
      .cta-actions{justify-content:flex-start}
      .section{padding:62px 0}
      .cta-band{padding-bottom:64px}
    }
    @media (max-width:520px){
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .brand-text strong{max-width:205px}
      .hero h1{font-size:38px}
      .hero p,.section-lead{font-size:16px}
      .hero-actions,.cta-actions{flex-direction:column}
      .btn{width:100%}
      .cover-title h2{font-size:27px}
      .cover-stack{padding:22px;border-radius:28px}
      .path-wrap{grid-template-columns:1fr}
      .result-grid{display:grid;grid-template-columns:1fr}
      .result-card.large,.result-card.mid,.result-card.small{grid-column:auto}
      .cta-box{padding:30px 22px;border-radius:26px}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{flex-direction:column}
    }

/* roulang page: category2 */
:root{
      --color-plum:#3b142b;
      --color-plum-2:#5b1f3d;
      --color-wine:#6f243d;
      --color-rose:#b76e79;
      --color-mist:#ead5d8;
      --color-sand:#f3e7d8;
      --color-ivory:#fbf6ee;
      --color-linen:#f7efe5;
      --color-copper:#b8834c;
      --color-copper-dark:#8d6238;
      --color-charcoal:#241d22;
      --color-muted:#77656f;
      --color-soft:#9b8990;
      --color-border:rgba(91,31,61,.16);
      --shadow-soft:0 18px 48px rgba(59,20,43,.10);
      --shadow-card:0 14px 34px rgba(59,20,43,.08);
      --shadow-hover:0 20px 44px rgba(59,20,43,.16);
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1240px;
      --ease:all .25s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Source Han Sans SC",Arial,sans-serif;
      color:var(--color-charcoal);
      background:
        radial-gradient(circle at 10% 5%, rgba(183,110,121,.16), transparent 30%),
        radial-gradient(circle at 92% 12%, rgba(184,131,76,.13), transparent 32%),
        linear-gradient(135deg,var(--color-ivory) 0%, var(--color-linen) 46%, #f4e7e3 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.32;
      background-image:
        linear-gradient(rgba(59,20,43,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,20,43,.025) 1px, transparent 1px);
      background-size:42px 42px;
      z-index:-1;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition:var(--ease);
    }
    a:hover{color:var(--color-wine)}
    img{max-width:100%;display:block}
    button,input,textarea{
      font:inherit;
    }
    button{
      cursor:pointer;
      border:0;
      background:none;
    }
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible{
      outline:3px solid rgba(184,131,76,.45);
      outline-offset:3px;
      border-radius:10px;
    }

    .site-container{
      width:min(calc(100% - 40px), var(--container));
      margin:0 auto;
    }
    .section{
      padding:86px 0;
      position:relative;
    }
    .section-tight{padding:58px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(184,131,76,.28);
      border-radius:999px;
      background:rgba(255,250,243,.72);
      color:var(--color-wine);
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
    }
    .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:999px;
      background:var(--color-copper);
      box-shadow:0 0 0 5px rgba(184,131,76,.14);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(38px,5.4vw,72px);
      line-height:1.13;
      letter-spacing:-.045em;
      color:#24111d;
      margin-bottom:22px;
      font-weight:800;
    }
    h2{
      font-size:clamp(28px,3.2vw,46px);
      line-height:1.2;
      letter-spacing:-.03em;
      color:#2c1724;
      margin-bottom:16px;
      font-weight:800;
    }
    h3{
      font-size:21px;
      line-height:1.35;
      color:#331b2a;
      font-weight:750;
      margin-bottom:12px;
    }
    .lead{
      font-size:18px;
      color:var(--color-muted);
      max-width:760px;
      margin-bottom:0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:34px;
    }
    .section-head .lead{max-width:560px}

    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(251,246,238,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(91,31,61,.12);
      transition:var(--ease);
    }
    .site-header.is-scrolled{
      background:rgba(251,246,238,.96);
      box-shadow:0 10px 28px rgba(59,20,43,.08);
    }
    .nav-wrap{
      min-height:82px;
      display:flex;
      align-items:center;
      gap:24px;
      position:relative;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:13px;
      min-width:290px;
      color:var(--color-charcoal);
    }
    .brand-mark{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      border-radius:16px;
      background:linear-gradient(135deg,var(--color-plum),var(--color-wine));
      color:#fff4e8;
      font-weight:800;
      font-size:22px;
      box-shadow:0 12px 26px rgba(59,20,43,.22);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.2;
    }
    .brand-text strong{
      font-size:17px;
      letter-spacing:-.02em;
      color:#25121e;
    }
    .brand-text span{
      font-size:12px;
      color:var(--color-muted);
      margin-top:3px;
    }
    .main-nav{
      display:flex;
      align-items:center;
      gap:6px;
      flex:1;
      justify-content:center;
    }
    .nav-item{position:relative}
    .nav-link{
      display:flex;
      flex-direction:column;
      gap:2px;
      padding:12px 15px;
      border-radius:14px;
      color:#402b36;
      font-size:15px;
      font-weight:750;
    }
    .nav-link small{
      color:var(--color-soft);
      font-weight:500;
      font-size:11px;
    }
    .nav-link:hover{
      background:rgba(183,110,121,.12);
      color:var(--color-plum);
    }
    .nav-link.active{
      color:#fff8ef;
      background:linear-gradient(135deg,var(--color-plum),var(--color-wine));
      box-shadow:0 10px 22px rgba(91,31,61,.18);
    }
    .nav-link.active small{color:rgba(255,248,239,.78)}
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .nav-note{
      font-size:12px;
      color:var(--color-muted);
      padding:8px 10px;
      border:1px solid var(--color-border);
      border-radius:999px;
      background:rgba(255,250,243,.68);
      white-space:nowrap;
    }
    .mega-trigger,
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:14px;
      padding:12px 18px;
      font-size:15px;
      font-weight:800;
      transition:var(--ease);
      line-height:1.2;
    }
    .mega-trigger{
      color:#fff8ef;
      background:var(--color-plum);
      box-shadow:0 10px 24px rgba(59,20,43,.18);
    }
    .mega-trigger:hover,
    .mega-trigger.is-open{
      transform:translateY(-2px);
      background:#2f1023;
      color:#fff;
      box-shadow:0 14px 30px rgba(59,20,43,.24);
    }
    .nav-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--color-border);
      background:rgba(255,250,243,.82);
      margin-left:auto;
      position:relative;
    }
    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after{
      content:"";
      position:absolute;
      width:20px;
      height:2px;
      left:12px;
      background:var(--color-plum);
      border-radius:999px;
      transition:var(--ease);
    }
    .nav-toggle span{top:21px}
    .nav-toggle span::before{top:-7px;left:0}
    .nav-toggle span::after{top:7px;left:0}
    .nav-toggle.is-open span{background:transparent}
    .nav-toggle.is-open span::before{transform:rotate(45deg);top:0}
    .nav-toggle.is-open span::after{transform:rotate(-45deg);top:0}
    .mega-panel{
      position:absolute;
      top:76px;
      left:50%;
      transform:translateX(-50%) translateY(10px);
      width:min(940px, calc(100vw - 40px));
      background:rgba(255,250,243,.96);
      border:1px solid rgba(91,31,61,.14);
      box-shadow:0 24px 60px rgba(59,20,43,.18);
      border-radius:22px;
      padding:18px;
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:var(--ease);
    }
    .mega-panel.is-open,
    .nav-wrap:hover .mega-panel{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
      transform:translateX(-50%) translateY(0);
    }
    .mega-grid{
      display:grid;
      grid-template-columns:1fr 1fr 1.05fr;
      gap:14px;
    }
    .mega-card{
      padding:20px;
      border-radius:18px;
      background:#fffaf3;
      border:1px solid rgba(91,31,61,.11);
    }
    .mega-card h3{
      font-size:16px;
      margin-bottom:10px;
    }
    .mega-card p{
      color:var(--color-muted);
      font-size:14px;
      margin:0;
    }
    .mega-card.dark{
      background:linear-gradient(135deg,#351326,#6c243c);
      color:#fff8ef;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:18px;
    }
    .mega-card.dark h3{color:#fff8ef}
    .mega-card.dark p{color:rgba(255,248,239,.78)}
    .mega-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:9px;
    }
    .mega-list a{
      display:block;
      padding:10px 12px;
      border-radius:12px;
      background:rgba(183,110,121,.10);
      color:#432335;
      font-size:14px;
      font-weight:700;
    }
    .mega-list a:hover{
      background:rgba(184,131,76,.17);
      transform:translateX(3px);
    }

    .btn-primary{
      color:#fff8ef;
      background:linear-gradient(135deg,var(--color-plum),var(--color-wine));
      box-shadow:0 14px 30px rgba(91,31,61,.22);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 20px 38px rgba(91,31,61,.28);
    }
    .btn-secondary{
      color:var(--color-plum);
      border:1px solid rgba(91,31,61,.22);
      background:rgba(255,250,243,.76);
    }
    .btn-secondary:hover{
      background:rgba(183,110,121,.13);
      transform:translateY(-2px);
    }
    .btn-copper{
      color:#24140f;
      background:linear-gradient(135deg,#d9b37d,var(--color-copper));
      box-shadow:0 12px 24px rgba(184,131,76,.22);
    }
    .btn-copper:hover{
      color:#180d09;
      transform:translateY(-2px);
      box-shadow:0 18px 32px rgba(184,131,76,.30);
    }

    .hero-deep{
      padding:88px 0 60px;
      position:relative;
      overflow:hidden;
    }
    .hero-deep::after{
      content:"";
      position:absolute;
      width:520px;
      height:520px;
      border-radius:50%;
      right:-180px;
      top:60px;
      background:radial-gradient(circle, rgba(91,31,61,.18), transparent 68%);
      pointer-events:none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.02fr) minmax(360px,.82fr);
      gap:50px;
      align-items:center;
    }
    .hero-copy{
      position:relative;
      z-index:1;
    }
    .hero-copy .lead{
      font-size:19px;
      max-width:720px;
      margin-bottom:28px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin:28px 0 24px;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(91,31,61,.08);
      color:#5d3146;
      font-size:13px;
      font-weight:700;
      border:1px solid rgba(91,31,61,.10);
    }
    .hero-cover{
      position:relative;
      min-height:520px;
      border-radius:32px;
      padding:24px;
      background:
        linear-gradient(145deg, rgba(59,20,43,.96), rgba(111,36,61,.86)),
        radial-gradient(circle at 30% 20%, rgba(217,179,125,.42), transparent 35%);
      box-shadow:0 28px 70px rgba(59,20,43,.28);
      overflow:hidden;
      color:#fff8ef;
    }
    .hero-cover::before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(255,248,239,.18);
      border-radius:26px;
      pointer-events:none;
    }
    .cover-moon{
      position:absolute;
      right:34px;
      top:34px;
      width:118px;
      height:118px;
      border-radius:50%;
      background:linear-gradient(135deg,#e7cda4,#a66f43);
      opacity:.86;
      box-shadow:0 0 0 24px rgba(231,205,164,.06);
    }
    .cover-lines{
      position:absolute;
      inset:0;
      opacity:.16;
      background:
        repeating-linear-gradient(115deg, transparent 0 20px, rgba(255,248,239,.8) 21px, transparent 22px),
        linear-gradient(180deg, transparent, rgba(0,0,0,.28));
    }
    .cover-panel{
      position:absolute;
      left:28px;
      right:28px;
      bottom:28px;
      padding:24px;
      border-radius:22px;
      background:rgba(255,248,239,.10);
      border:1px solid rgba(255,248,239,.20);
      backdrop-filter:blur(12px);
    }
    .cover-panel h2{
      color:#fff8ef;
      font-size:30px;
      margin-bottom:10px;
    }
    .cover-panel p{
      color:rgba(255,248,239,.78);
      margin-bottom:18px;
    }
    .cover-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
    }
    .cover-stat{
      padding:13px 12px;
      border-radius:14px;
      background:rgba(255,248,239,.10);
    }
    .cover-stat strong{
      display:block;
      color:#f3c98e;
      font-size:20px;
      line-height:1.1;
    }
    .cover-stat span{
      font-size:12px;
      color:rgba(255,248,239,.72);
    }

    .intro-strip{
      margin-top:34px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .strip-card{
      padding:18px;
      border-radius:18px;
      background:rgba(255,250,243,.78);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-card);
    }
    .strip-card span{
      display:block;
      color:var(--color-copper-dark);
      font-weight:850;
      font-size:22px;
      margin-bottom:4px;
    }
    .strip-card p{
      color:var(--color-muted);
      margin:0;
      font-size:14px;
    }

    .chapter-wrap{
      display:grid;
      grid-template-columns:300px minmax(0,1fr);
      gap:32px;
      align-items:start;
    }
    .chapter-nav{
      position:sticky;
      top:112px;
      padding:22px;
      border-radius:22px;
      background:#fffaf3;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-card);
    }
    .chapter-nav h3{
      font-size:18px;
      margin-bottom:14px;
    }
    .chapter-nav ul{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .chapter-nav a{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:11px 12px;
      border-radius:13px;
      background:rgba(91,31,61,.055);
      color:#513043;
      font-weight:750;
      font-size:14px;
    }
    .chapter-nav a:hover{
      background:rgba(183,110,121,.15);
      transform:translateX(3px);
    }
    .chapter-nav small{color:var(--color-soft)}
    .chapter-main{
      display:grid;
      gap:20px;
    }
    .chapter-card{
      display:grid;
      grid-template-columns:88px minmax(0,1fr);
      gap:22px;
      padding:26px;
      border-radius:24px;
      background:rgba(255,250,243,.82);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-card);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .chapter-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
    }
    .chapter-card::after{
      content:"";
      position:absolute;
      left:0;
      top:0;
      bottom:0;
      width:5px;
      background:linear-gradient(180deg,var(--color-copper),var(--color-rose));
    }
    .chapter-num{
      width:70px;
      height:70px;
      border-radius:20px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--color-plum),var(--color-wine));
      color:#fff8ef;
      font-size:22px;
      font-weight:850;
      box-shadow:0 14px 28px rgba(91,31,61,.18);
    }
    .chapter-card p{
      color:var(--color-muted);
      margin-bottom:15px;
    }
    .chapter-meta{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .mini-pill{
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      color:#6b3a4e;
      background:rgba(183,110,121,.12);
      border:1px solid rgba(183,110,121,.16);
    }

    .quote-section{
      background:
        linear-gradient(135deg, rgba(59,20,43,.96), rgba(87,31,55,.92)),
        radial-gradient(circle at 85% 0, rgba(184,131,76,.24), transparent 34%);
      color:#fff8ef;
      border-radius:0;
    }
    .quote-grid{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:34px;
      align-items:center;
    }
    .quote-section h2,
    .quote-section h3{color:#fff8ef}
    .quote-section .lead{color:rgba(255,248,239,.72)}
    .quote-block{
      position:relative;
      padding:34px;
      border-radius:26px;
      background:rgba(255,248,239,.08);
      border:1px solid rgba(255,248,239,.16);
      box-shadow:0 24px 56px rgba(0,0,0,.18);
    }
    .quote-block::before{
      content:"“";
      position:absolute;
      left:24px;
      top:-22px;
      font-size:110px;
      line-height:1;
      color:rgba(217,179,125,.34);
      font-family:Georgia,serif;
    }
    .quote-block p{
      position:relative;
      font-size:22px;
      line-height:1.75;
      color:#fff7ec;
      margin-bottom:18px;
    }
    .quote-sign{
      color:#e2c197;
      font-weight:800;
    }
    .insight-list{
      display:grid;
      gap:14px;
    }
    .insight-item{
      padding:18px 20px;
      border-radius:18px;
      background:rgba(255,248,239,.08);
      border:1px solid rgba(255,248,239,.14);
    }
    .insight-item strong{
      color:#f0cc9a;
      display:block;
      margin-bottom:6px;
    }
    .insight-item span{
      color:rgba(255,248,239,.72);
      font-size:15px;
    }

    .theme-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:stretch;
    }
    .theme-card{
      padding:28px;
      border-radius:24px;
      background:#fffaf3;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-card);
      transition:var(--ease);
    }
    .theme-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
    }
    .theme-card.featured{
      min-height:380px;
      background:
        linear-gradient(135deg, rgba(255,250,243,.94), rgba(245,224,213,.92)),
        radial-gradient(circle at 20% 0, rgba(184,131,76,.16), transparent 34%);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .theme-card p{
      color:var(--color-muted);
      margin-bottom:0;
    }
    .theme-stack{
      display:grid;
      gap:24px;
    }
    .point-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:24px;
    }
    .point{
      padding:16px;
      border-radius:16px;
      background:rgba(91,31,61,.06);
      border:1px solid rgba(91,31,61,.09);
    }
    .point strong{
      color:var(--color-wine);
      display:block;
      margin-bottom:5px;
    }
    .point span{
      color:var(--color-muted);
      font-size:14px;
    }

    .timeline{
      position:relative;
      display:grid;
      gap:18px;
      max-width:920px;
      margin:34px auto 0;
    }
    .timeline::before{
      content:"";
      position:absolute;
      left:25px;
      top:20px;
      bottom:20px;
      width:2px;
      background:linear-gradient(180deg,var(--color-copper),rgba(183,110,121,.28));
    }
    .timeline-item{
      display:grid;
      grid-template-columns:52px minmax(0,1fr);
      gap:18px;
      position:relative;
    }
    .timeline-dot{
      width:52px;
      height:52px;
      border-radius:18px;
      display:grid;
      place-items:center;
      background:#fffaf3;
      border:1px solid rgba(184,131,76,.38);
      color:var(--color-copper-dark);
      font-weight:850;
      box-shadow:0 10px 24px rgba(59,20,43,.10);
      z-index:1;
    }
    .timeline-content{
      padding:22px;
      border-radius:20px;
      background:rgba(255,250,243,.82);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-card);
    }
    .timeline-content p{
      color:var(--color-muted);
      margin-bottom:0;
    }

    .reading-panel{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }
    .reading-card{
      padding:26px;
      border-radius:22px;
      background:#fffaf3;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-card);
      min-height:250px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:var(--ease);
    }
    .reading-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
    }
    .reading-card .icon{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:rgba(184,131,76,.16);
      color:var(--color-copper-dark);
      font-weight:900;
      margin-bottom:18px;
    }
    .reading-card p{
      color:var(--color-muted);
    }
    .reading-card a{
      color:var(--color-wine);
      font-weight:850;
    }
    .reading-card a:hover{
      color:var(--color-plum);
      padding-left:4px;
    }

    .related-wrap{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
    }
    .related-card{
      padding:28px;
      border-radius:24px;
      border:1px solid var(--color-border);
      background:#fffaf3;
      box-shadow:var(--shadow-card);
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .related-card.dark{
      background:linear-gradient(135deg,var(--color-plum),var(--color-wine));
      color:#fff8ef;
    }
    .related-card.dark h3{color:#fff8ef}
    .related-card.dark p{color:rgba(255,248,239,.74)}
    .related-card p{
      color:var(--color-muted);
      margin:0;
    }

    .faq-wrap{
      max-width:920px;
      margin:34px auto 0;
      display:grid;
      gap:14px;
    }
    .faq-item{
      border:1px solid var(--color-border);
      border-radius:18px;
      background:rgba(255,250,243,.82);
      box-shadow:0 8px 24px rgba(59,20,43,.06);
      overflow:hidden;
    }
    .faq-question{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:20px 22px;
      color:#2d1724;
      font-weight:850;
      text-align:left;
    }
    .faq-question span:last-child{
      width:28px;
      height:28px;
      border-radius:10px;
      display:grid;
      place-items:center;
      background:rgba(91,31,61,.08);
      color:var(--color-wine);
      transition:var(--ease);
      flex:0 0 auto;
    }
    .faq-item.is-open .faq-question span:last-child{
      transform:rotate(45deg);
      background:var(--color-plum);
      color:#fff8ef;
    }
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
      background:rgba(183,110,121,.055);
    }
    .faq-answer p{
      padding:0 22px 20px;
      margin:0;
      color:var(--color-muted);
    }

    .cta-band{
      padding:52px;
      border-radius:32px;
      background:
        linear-gradient(135deg, rgba(59,20,43,.98), rgba(111,36,61,.92)),
        radial-gradient(circle at 88% 10%, rgba(217,179,125,.28), transparent 34%);
      color:#fff8ef;
      display:grid;
      grid-template-columns:1fr auto;
      gap:30px;
      align-items:center;
      box-shadow:0 26px 66px rgba(59,20,43,.22);
      overflow:hidden;
      position:relative;
    }
    .cta-band::before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(255,248,239,.12);
      border-radius:24px;
      pointer-events:none;
    }
    .cta-band h2{
      color:#fff8ef;
      margin-bottom:12px;
    }
    .cta-band p{
      color:rgba(255,248,239,.74);
      margin:0;
      max-width:720px;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
      position:relative;
      z-index:1;
    }

    .site-footer{
      background:#21131c;
      color:#fff8ef;
      padding:64px 0 28px;
      margin-top:40px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .7fr .7fr .9fr;
      gap:34px;
      align-items:start;
    }
    .footer-brand strong{
      display:block;
      font-size:22px;
      margin-bottom:12px;
      color:#fff8ef;
    }
    .footer-brand p,
    .footer-col p{
      color:rgba(255,248,239,.68);
      margin-bottom:14px;
      font-size:14px;
    }
    .notice{
      padding:14px;
      border-radius:16px;
      background:rgba(255,248,239,.08);
      border:1px solid rgba(255,248,239,.12);
      color:rgba(255,248,239,.72);
      font-size:13px;
    }
    .footer-col h3{
      color:#f2c995;
      font-size:16px;
      margin-bottom:14px;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,248,239,.68);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#f2c995;
      padding-left:4px;
    }
    .footer-bottom{
      margin-top:38px;
      padding-top:20px;
      border-top:1px solid rgba(255,248,239,.12);
      display:flex;
      justify-content:space-between;
      gap:18px;
      color:rgba(255,248,239,.54);
      font-size:13px;
    }

    @media (max-width:1100px){
      .brand{min-width:auto}
      .nav-note{display:none}
      .hero-grid,
      .quote-grid,
      .theme-grid{
        grid-template-columns:1fr;
      }
      .hero-cover{min-height:440px}
      .intro-strip,
      .reading-panel{
        grid-template-columns:repeat(2,1fr);
      }
      .chapter-wrap{
        grid-template-columns:1fr;
      }
      .chapter-nav{
        position:relative;
        top:auto;
      }
      .chapter-nav ul{
        grid-template-columns:repeat(2,1fr);
      }
      .footer-grid{
        grid-template-columns:1fr 1fr;
      }
    }

    @media (max-width:860px){
      .site-container{width:min(calc(100% - 28px), var(--container))}
      .nav-wrap{
        min-height:72px;
        flex-wrap:wrap;
        gap:12px;
        padding:12px 0;
      }
      .brand-text strong{font-size:15px}
      .brand-text span{font-size:11px}
      .nav-toggle{display:block}
      .main-nav{
        order:5;
        width:100%;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:8px;
        padding:10px 0 4px;
      }
      .main-nav.is-open{display:flex}
      .nav-link{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding:13px 14px;
        background:rgba(255,250,243,.72);
        border:1px solid var(--color-border);
      }
      .nav-actions{
        display:none;
        order:6;
        width:100%;
        justify-content:space-between;
      }
      .nav-actions.is-open{display:flex}
      .mega-panel{
        position:static;
        order:7;
        width:100%;
        transform:none;
        display:none;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        padding:14px;
      }
      .mega-panel.is-open{
        display:block;
        transform:none;
      }
      .nav-wrap:hover .mega-panel{
        transform:none;
      }
      .mega-grid{
        grid-template-columns:1fr;
      }
      .section{
        padding:64px 0;
      }
      .hero-deep{
        padding:56px 0 42px;
      }
      .hero-grid{
        gap:30px;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .point-row,
      .related-wrap{
        grid-template-columns:1fr;
      }
      .cta-band{
        grid-template-columns:1fr;
        padding:34px 24px;
      }
      .cta-actions{
        justify-content:flex-start;
      }
    }

    @media (max-width:560px){
      h1{font-size:36px}
      h2{font-size:28px}
      .brand-mark{
        width:40px;
        height:40px;
        border-radius:14px;
      }
      .brand-text span{
        max-width:190px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
      }
      .hero-copy .lead{
        font-size:16px;
      }
      .hero-actions,
      .cta-actions{
        flex-direction:column;
      }
      .btn,
      .mega-trigger{
        width:100%;
        min-height:48px;
      }
      .hero-cover{
        min-height:410px;
        border-radius:24px;
        padding:18px;
      }
      .cover-panel{
        left:18px;
        right:18px;
        bottom:18px;
        padding:20px;
      }
      .cover-panel h2{
        font-size:24px;
      }
      .cover-stats,
      .intro-strip,
      .reading-panel,
      .chapter-nav ul{
        grid-template-columns:1fr;
      }
      .chapter-card{
        grid-template-columns:1fr;
        padding:22px;
      }
      .chapter-num{
        width:58px;
        height:58px;
        border-radius:18px;
      }
      .quote-block{
        padding:26px 22px;
      }
      .quote-block p{
        font-size:18px;
      }
      .timeline::before{
        left:21px;
      }
      .timeline-item{
        grid-template-columns:44px 1fr;
        gap:14px;
      }
      .timeline-dot{
        width:44px;
        height:44px;
        border-radius:15px;
      }
      .footer-grid{
        grid-template-columns:1fr;
      }
      .footer-bottom{
        flex-direction:column;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#f5eee8;
      --bg-soft:#fbf7f2;
      --panel:#fffaf6;
      --panel-2:#f3e8e2;
      --primary:#5f2247;
      --primary-2:#7e3152;
      --primary-deep:#351626;
      --accent:#b67d56;
      --accent-2:#d6a47f;
      --text:#2b2228;
      --muted:#6c5f67;
      --line:#e4d5cc;
      --shadow:0 18px 40px rgba(67, 32, 49, .10);
      --shadow-strong:0 24px 54px rgba(67, 32, 49, .16);
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --space-1:8px;
      --space-2:12px;
      --space-3:16px;
      --space-4:20px;
      --space-5:28px;
      --space-6:36px;
      --space-7:52px;
      --space-8:72px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at 15% 12%, rgba(182,125,86,.12), transparent 0 18%),
        radial-gradient(circle at 84% 18%, rgba(95,34,71,.09), transparent 0 22%),
        linear-gradient(180deg, #f9f4ee 0%, #f4ebe3 100%);
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Source Han Sans SC",sans-serif;
      line-height:1.7;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.32;
      background:
        linear-gradient(135deg, rgba(255,255,255,.55) 0%, transparent 18%, transparent 82%, rgba(255,255,255,.45) 100%),
        repeating-linear-gradient(0deg, rgba(90,67,77,.018) 0, rgba(90,67,77,.018) 1px, transparent 1px, transparent 6px);
      mix-blend-mode:multiply;
      z-index:-1;
    }
    ::selection{background:rgba(95,34,71,.2); color:var(--primary-deep)}
    a{
      color:var(--primary);
      text-decoration:none;
      transition:color .2s ease, transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    a:hover{color:var(--primary-2)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    .site-container{
      width:min(1320px, calc(100% - 2rem));
      margin:0 auto;
    }
    .section-pad{padding:clamp(3.8rem, 5vw, 5.8rem) 0}
    .section-soft{
      background:linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.42));
      border-top:1px solid rgba(228,213,204,.55);
      border-bottom:1px solid rgba(228,213,204,.55);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.55rem;
      font-size:.82rem;
      letter-spacing:.08em;
      text-transform:uppercase;
      color:var(--accent);
      font-weight:700;
      margin-bottom:.9rem;
    }
    .eyebrow::before{
      content:"";
      width:1.6rem;
      height:1px;
      background:currentColor;
      opacity:.8;
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(2.2rem, 4vw, 4.2rem);
      line-height:1.16;
      letter-spacing:-.02em;
      margin-bottom:1rem;
      color:var(--primary-deep);
      font-weight:800;
    }
    h2{
      font-size:clamp(1.55rem, 2.3vw, 2.55rem);
      line-height:1.22;
      margin-bottom:.65rem;
      color:var(--primary-deep);
      font-weight:800;
    }
    h3{
      font-size:1.13rem;
      line-height:1.35;
      color:var(--primary-deep);
      font-weight:800;
    }
    p{font-size:1.02rem;color:var(--text)}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:1.25rem;
      margin-bottom:1.5rem;
    }
    .section-head p{
      margin:0;
      max-width:44rem;
      color:var(--muted);
    }
    .section-kicker{
      font-size:.92rem;
      color:var(--muted);
      margin-bottom:.25rem;
    }
    .lead{
      font-size:1.08rem;
      color:var(--muted);
      max-width:42rem;
    }
    .pill-row,.chip-row,.filter-row{
      display:flex;
      flex-wrap:wrap;
      gap:.7rem;
    }
    .pill,.chip,.filter-pill,.stat-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.4rem;
      padding:.58rem .92rem;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.68);
      color:var(--primary-deep);
      font-size:.9rem;
      font-weight:700;
      box-shadow:0 6px 20px rgba(87,45,62,.05);
    }
    .pill.accent,.chip.accent,.filter-pill.active,.stat-pill.accent{
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      color:#fff;
      border-color:transparent;
      box-shadow:0 14px 24px rgba(95,34,71,.18);
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.55rem;
      border-radius:14px;
      padding:.95rem 1.25rem;
      font-weight:800;
      border:1px solid transparent;
      cursor:pointer;
      text-decoration:none;
      line-height:1;
      transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
      will-change:transform;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(0)}
    .btn:focus-visible,
    .nav-link:focus-visible,
    .mega-trigger:focus-visible,
    .nav-toggle:focus-visible,
    .faq-trigger:focus-visible{
      outline:3px solid rgba(182,125,86,.42);
      outline-offset:2px;
    }
    .btn-primary{
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      color:#fff;
      box-shadow:0 16px 28px rgba(95,34,71,.22);
    }
    .btn-primary:hover{color:#fff; box-shadow:0 22px 34px rgba(95,34,71,.28)}
    .btn-secondary{
      background:rgba(255,255,255,.72);
      color:var(--primary-deep);
      border-color:rgba(95,34,71,.18);
      box-shadow:0 10px 20px rgba(67,32,49,.06);
    }
    .btn-secondary:hover{
      color:var(--primary);
      background:rgba(95,34,71,.06);
      border-color:rgba(95,34,71,.22);
    }
    .btn-copper{
      background:linear-gradient(135deg, #c08a62, #ad6f49);
      color:#fff;
      box-shadow:0 16px 26px rgba(173,111,73,.24);
    }
    .btn-copper:hover{color:#fff; box-shadow:0 22px 30px rgba(173,111,73,.30)}
    .surface-card,
    .info-card,
    .story-card,
    .rail-card,
    .faq-item,
    .quote-card,
    .timeline-card,
    .feature-card{
      background:rgba(255,250,246,.84);
      border:1px solid rgba(228,213,204,.95);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(250,245,240,.92);
      backdrop-filter:saturate(140%) blur(8px);
      border-bottom:1px solid rgba(227,212,202,.82);
      box-shadow:0 10px 28px rgba(70,38,49,.05);
    }
    .site-header.is-scrolled{
      box-shadow:0 18px 32px rgba(70,38,49,.10);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      gap:1rem;
      padding:.95rem 0;
      position:relative;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:.9rem;
      min-width:0;
      flex:0 0 auto;
    }
    .brand-mark{
      width:2.75rem;
      height:2.75rem;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:800;
      background:linear-gradient(145deg, var(--primary), var(--primary-2));
      box-shadow:0 12px 26px rgba(95,34,71,.24);
      flex:0 0 auto;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
      gap:.1rem;
    }
    .brand-text strong{
      display:block;
      font-size:1.03rem;
      line-height:1.2;
      color:var(--primary-deep);
      white-space:nowrap;
    }
    .brand-text span{
      display:block;
      font-size:.85rem;
      color:var(--muted);
      white-space:nowrap;
    }
    .main-nav{
      display:flex;
      align-items:stretch;
      gap:.7rem;
      margin-left:auto;
      margin-right:1rem;
    }
    .nav-item{
      display:flex;
      align-items:stretch;
    }
    .nav-link{
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:.1rem;
      padding:.82rem 1rem;
      min-width:8.8rem;
      border-radius:16px;
      color:var(--primary-deep);
      border:1px solid transparent;
      background:rgba(255,255,255,.0);
      font-weight:800;
      line-height:1.1;
      box-shadow:none;
    }
    .nav-link small{
      font-size:.74rem;
      color:var(--muted);
      font-weight:700;
    }
    .nav-link:hover{
      background:rgba(95,34,71,.06);
      border-color:rgba(95,34,71,.12);
      color:var(--primary);
    }
    .nav-link.active{
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      color:#fff;
      box-shadow:0 12px 24px rgba(95,34,71,.16);
    }
    .nav-link.active small{color:rgba(255,255,255,.88)}
    .nav-actions{
      display:flex;
      align-items:center;
      gap:.8rem;
      flex:0 0 auto;
    }
    .nav-note{
      font-size:.82rem;
      color:var(--muted);
      padding:.55rem .8rem;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.65);
      white-space:nowrap;
    }
    .mega-trigger,.nav-toggle{
      appearance:none;
      border:0;
      font-weight:800;
      border-radius:14px;
      cursor:pointer;
      transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
    }
    .mega-trigger{
      background:linear-gradient(135deg, var(--primary-deep), var(--primary));
      color:#fff;
      padding:.85rem 1.1rem;
      box-shadow:0 14px 26px rgba(53,22,38,.18);
    }
    .mega-trigger:hover{transform:translateY(-2px); box-shadow:0 18px 30px rgba(53,22,38,.24)}
    .nav-toggle{
      display:none;
      width:3rem;
      height:3rem;
      background:rgba(255,255,255,.72);
      border:1px solid var(--line);
      padding:0;
      position:relative;
    }
    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after{
      content:"";
      position:absolute;
      left:50%;
      width:1.25rem;
      height:2px;
      background:var(--primary-deep);
      border-radius:999px;
      transform:translateX(-50%);
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .nav-toggle span{top:50%; transform:translate(-50%,-50%)}
    .nav-toggle span::before{top:-7px}
    .nav-toggle span::after{top:7px}
    .site-header.is-nav-open .nav-toggle span{background:transparent}
    .site-header.is-nav-open .nav-toggle span::before{top:0; transform:translateX(-50%) rotate(45deg)}
    .site-header.is-nav-open .nav-toggle span::after{top:0; transform:translateX(-50%) rotate(-45deg)}
    .mega-panel{
      position:absolute;
      left:0;
      right:0;
      top:100%;
      padding:0 0 1.2rem;
      opacity:0;
      visibility:hidden;
      transform:translateY(-10px);
      pointer-events:none;
      transition:opacity .22s ease, visibility .22s ease, transform .22s ease;
    }
    .site-header.mega-open .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
      pointer-events:auto;
    }
    .site-header:hover .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
      pointer-events:auto;
    }
    .mega-panel .mega-grid{
      display:grid;
      grid-template-columns:1.1fr .95fr 1fr;
      gap:1rem;
      padding:1rem;
      margin-top:.25rem;
      border:1px solid rgba(228,213,204,.95);
      border-radius:24px;
      background:rgba(250,245,240,.97);
      box-shadow:var(--shadow-strong);
    }
    .mega-card{
      border-radius:20px;
      border:1px solid rgba(228,213,204,.92);
      background:rgba(255,255,255,.76);
      padding:1.1rem 1.1rem 1rem;
    }
    .mega-card h3{
      margin-bottom:.7rem;
      font-size:1.02rem;
    }
    .mega-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:.65rem;
    }
    .mega-list a{
      display:block;
      padding:.78rem .85rem;
      border-radius:14px;
      background:rgba(95,34,71,.05);
      border:1px solid transparent;
      color:var(--primary-deep);
      font-weight:700;
      line-height:1.45;
    }
    .mega-list a:hover{
      background:rgba(95,34,71,.08);
      border-color:rgba(95,34,71,.14);
      color:var(--primary);
    }
    .mega-card p{
      margin:0;
      color:var(--muted);
      font-size:.96rem;
    }
    .mega-card.dark{
      background:linear-gradient(145deg, var(--primary-deep), var(--primary));
      color:#fff;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:1.2rem;
    }
    .mega-card.dark h3,
    .mega-card.dark p{color:#fff}
    .mega-card.dark .btn{align-self:flex-start}
    .hero-shell{
      padding:clamp(2rem, 4vw, 3.5rem) 0 2.5rem;
    }
    .hero-layout{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:clamp(1.4rem, 3vw, 2.2rem);
      align-items:center;
    }
    .hero-copy{
      padding:clamp(0.2rem, 1vw, 1rem) 0;
    }
    .hero-copy .lead{
      margin-bottom:1.5rem;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.85rem;
      margin:1.6rem 0 1.1rem;
    }
    .hero-meta{
      display:flex;
      flex-wrap:wrap;
      gap:.7rem;
      margin-top:1rem;
    }
    .hero-visual{
      position:relative;
      min-height:520px;
      border-radius:32px;
      overflow:hidden;
      padding:1.4rem;
      background:
        radial-gradient(circle at 20% 18%, rgba(214,164,127,.26), transparent 0 18%),
        radial-gradient(circle at 82% 22%, rgba(255,255,255,.13), transparent 0 16%),
        linear-gradient(145deg, #662544 0%, #7f3450 52%, #301923 100%);
      box-shadow:0 28px 60px rgba(67,32,49,.20);
      border:1px solid rgba(255,255,255,.1);
    }
    .hero-visual::before,
    .hero-visual::after{
      content:"";
      position:absolute;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
      pointer-events:none;
    }
    .hero-visual::before{
      width:280px;
      height:280px;
      top:-90px;
      right:-70px;
    }
    .hero-visual::after{
      width:340px;
      height:340px;
      bottom:-160px;
      left:-110px;
    }
    .visual-label{
      position:relative;
      z-index:1;
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      padding:.55rem .82rem;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.18);
      color:#fff;
      font-size:.86rem;
      font-weight:700;
      letter-spacing:.05em;
    }
    .visual-panel{
      position:relative;
      z-index:1;
      margin-top:1rem;
      border-radius:26px;
      background:rgba(255,248,242,.95);
      color:var(--primary-deep);
      padding:1.1rem;
      box-shadow:0 18px 40px rgba(28,14,21,.16);
      border:1px solid rgba(255,255,255,.5);
    }
    .visual-panel + .visual-panel{
      margin-top:.95rem;
      margin-left:1.4rem;
      margin-right:.8rem;
    }
    .visual-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:1rem;
      margin-bottom:.8rem;
    }
    .visual-head strong{
      font-size:1.05rem;
      line-height:1.25;
    }
    .visual-head span{
      font-size:.82rem;
      color:var(--muted);
      white-space:nowrap;
    }
    .visual-panel p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
    }
    .visual-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:.7rem;
      margin-top:1rem;
    }
    .visual-mini{
      border-radius:18px;
      background:linear-gradient(180deg, rgba(95,34,71,.08), rgba(95,34,71,.03));
      border:1px solid rgba(95,34,71,.1);
      padding:.85rem .9rem;
    }
    .visual-mini b{
      display:block;
      font-size:.88rem;
      color:var(--primary-deep);
      margin-bottom:.2rem;
    }
    .visual-mini small{
      color:var(--muted);
      line-height:1.45;
      font-size:.82rem;
    }
    .section-title{
      display:flex;
      flex-direction:column;
      gap:.15rem;
      margin-bottom:1.4rem;
    }
    .section-title p{
      max-width:58rem;
      margin:0;
      color:var(--muted);
    }
    .why-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:1rem;
    }
    .info-card{
      padding:1.2rem 1.15rem 1.1rem;
      position:relative;
      overflow:hidden;
    }
    .info-card::after{
      content:"";
      position:absolute;
      width:120px;
      height:120px;
      right:-60px;
      top:-45px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(182,125,86,.12), transparent 68%);
      pointer-events:none;
    }
    .info-card .icon-dot{
      width:2.45rem;
      height:2.45rem;
      border-radius:14px;
      display:grid;
      place-items:center;
      margin-bottom:1rem;
      background:linear-gradient(135deg, rgba(95,34,71,.1), rgba(182,125,86,.14));
      color:var(--primary);
      font-weight:900;
      border:1px solid rgba(95,34,71,.08);
    }
    .info-card p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
    }
    .info-card strong{display:block;margin-bottom:.45rem}
    .content-layout{
      display:grid;
      grid-template-columns:1.55fr .85fr;
      gap:1.2rem;
      align-items:start;
    }
    .feature-card{
      padding:1.35rem;
    }
    .feature-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:1rem;
      margin-bottom:1rem;
    }
    .feature-top .chip-row{gap:.45rem}
    .feature-card p{
      color:var(--muted);
      margin-bottom:1rem;
    }
    .feature-badges{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
      margin-top:1rem;
    }
    .story-mosaic{
      display:grid;
      grid-template-columns:1fr;
      gap:1rem;
    }
    .story-card{
      padding:1.1rem 1.15rem;
      display:flex;
      flex-direction:column;
      gap:.8rem;
      min-height:100%;
    }
    .story-card.featured{
      background:linear-gradient(180deg, rgba(95,34,71,.07), rgba(255,250,246,.96));
      border-color:rgba(95,34,71,.14);
    }
    .story-card .story-meta{
      display:flex;
      flex-wrap:wrap;
      gap:.45rem;
    }
    .story-card p{
      margin:0;
      color:var(--muted);
      font-size:.96rem;
    }
    .story-card footer{
      margin-top:auto;
      display:flex;
      justify-content:space-between;
      gap:1rem;
      align-items:center;
    }
    .story-card footer span{
      color:var(--accent);
      font-weight:800;
      font-size:.9rem;
    }
    .story-rail{
      display:grid;
      gap:1rem;
      position:sticky;
      top:108px;
    }
    .rail-card{
      padding:1.05rem 1.05rem .95rem;
    }
    .rail-card h3{
      margin-bottom:.8rem;
    }
    .clean-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:.7rem;
    }
    .clean-list li{
      padding-left:1rem;
      position:relative;
      color:var(--muted);
      font-size:.95rem;
      line-height:1.55;
    }
    .clean-list li::before{
      content:"";
      width:.45rem;
      height:.45rem;
      border-radius:50%;
      background:var(--accent);
      position:absolute;
      left:0;
      top:.58rem;
    }
    .rail-highlight{
      background:linear-gradient(145deg, var(--primary-deep), var(--primary));
      color:#fff;
    }
    .rail-highlight h3,
    .rail-highlight p,
    .rail-highlight li{color:#fff}
    .rail-highlight .clean-list li::before{background:#f0c3a0}
    .rail-highlight .btn{
      margin-top:.9rem;
      align-self:flex-start;
    }
    .timeline-wrap{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:1.2rem;
      align-items:start;
    }
    .timeline-card{
      padding:1.25rem;
    }
    .timeline{
      list-style:none;
      margin:1rem 0 0;
      padding:0 0 0 1rem;
      border-left:1px solid rgba(95,34,71,.16);
      display:grid;
      gap:1rem;
    }
    .timeline li{
      position:relative;
      padding-left:1rem;
    }
    .timeline li::before{
      content:"";
      position:absolute;
      left:-1.45rem;
      top:.32rem;
      width:.78rem;
      height:.78rem;
      border-radius:50%;
      background:linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow:0 0 0 6px rgba(95,34,71,.08);
    }
    .timeline strong{
      display:block;
      margin-bottom:.25rem;
      color:var(--primary-deep);
      font-size:1rem;
    }
    .timeline p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
    }
    .stats-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:1rem;
    }
    .stat-card{
      padding:1.15rem;
      background:rgba(255,250,246,.9);
      border:1px solid rgba(228,213,204,.95);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
    }
    .stat-card strong{
      display:block;
      font-size:1.65rem;
      line-height:1;
      color:var(--primary-deep);
      margin-bottom:.4rem;
    }
    .stat-card span{
      display:block;
      font-size:.92rem;
      color:var(--muted);
    }
    .note-card{
      margin-top:1rem;
      background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(244,232,225,.95));
      border:1px solid rgba(228,213,204,.9);
      border-radius:var(--radius-lg);
      padding:1.1rem 1.1rem 1rem;
    }
    .note-card p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
    }
    .quotes-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:1rem;
    }
    .quote-card{
      padding:1.2rem 1.15rem 1.05rem;
      position:relative;
      overflow:hidden;
    }
    .quote-card::after{
      content:"“";
      position:absolute;
      right:.65rem;
      top:-.05rem;
      font-size:5rem;
      line-height:1;
      color:rgba(95,34,71,.08);
      font-family:serif;
    }
    .quote-top{
      display:flex;
      align-items:center;
      gap:.8rem;
      margin-bottom:1rem;
    }
    .avatar{
      width:2.7rem;
      height:2.7rem;
      border-radius:50%;
      display:grid;
      place-items:center;
      font-weight:900;
      color:#fff;
      background:linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow:0 10px 20px rgba(95,34,71,.18);
      flex:0 0 auto;
    }
    .quote-top strong{
      display:block;
      color:var(--primary-deep);
    }
    .quote-top span{
      display:block;
      font-size:.84rem;
      color:var(--muted);
    }
    .quote-card p{
      margin:0;
      color:var(--text);
      font-size:.97rem;
      line-height:1.8;
    }
    .quote-card .signature{
      margin-top:1rem;
      color:var(--accent);
      font-size:.88rem;
      font-weight:800;
    }
    .faq-wrap{
      display:grid;
      gap:.9rem;
      max-width:920px;
    }
    .faq-item{
      overflow:hidden;
      background:rgba(255,250,246,.92);
      transition:background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .faq-item.open{
      background:rgba(250,243,238,.98);
      border-color:rgba(95,34,71,.16);
      box-shadow:0 20px 34px rgba(67,32,49,.09);
    }
    .faq-trigger{
      width:100%;
      text-align:left;
      border:0;
      background:transparent;
      padding:1.05rem 1.15rem;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:1rem;
      cursor:pointer;
      color:var(--primary-deep);
      font-weight:800;
    }
    .faq-trigger span{
      flex:1;
      line-height:1.55;
    }
    .faq-trigger i{
      font-style:normal;
      color:var(--accent);
      font-size:1.1rem;
      line-height:1.2;
      flex:0 0 auto;
      transition:transform .2s ease;
    }
    .faq-item.open .faq-trigger i{transform:rotate(45deg)}
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
    }
    .faq-answer p{
      margin:0;
      padding:0 1.15rem 1rem;
      color:var(--muted);
      font-size:.95rem;
      line-height:1.8;
    }
    .cta-banner{
      margin-top:1.25rem;
      border-radius:32px;
      overflow:hidden;
      background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,.12), transparent 0 20%),
        linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 58%, #6c2f4f 100%);
      color:#fff;
      box-shadow:0 26px 60px rgba(52, 23, 36, .20);
    }
    .cta-inner{
      padding:clamp(1.4rem, 4vw, 2.4rem);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1.3rem;
    }
    .cta-inner h2,
    .cta-inner p{color:#fff;margin:0}
    .cta-inner p{
      max-width:44rem;
      opacity:.92;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.8rem;
      flex:0 0 auto;
    }
    .cta-actions .btn-secondary{
      background:rgba(255,255,255,.92);
      border-color:transparent;
    }
    .cta-actions .btn-secondary:hover{background:#fff}
    .site-footer{
      background:linear-gradient(180deg, #2a1220 0%, #1d0c16 100%);
      color:rgba(255,247,242,.92);
      margin-top:0;
      padding:3.2rem 0 1.1rem;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .8fr .8fr 1fr;
      gap:1rem;
      padding-bottom:1.5rem;
    }
    .footer-brand strong{
      display:block;
      font-size:1.05rem;
      margin-bottom:.55rem;
      color:#fff;
    }
    .footer-brand p{
      margin:0 0 .9rem;
      color:rgba(255,247,242,.76);
      font-size:.96rem;
    }
    .notice{
      border-radius:16px;
      padding:.9rem 1rem;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.05);
      color:rgba(255,247,242,.8);
      font-size:.9rem;
      line-height:1.65;
    }
    .footer-col h3{
      color:#fff;
      font-size:1rem;
      margin-bottom:.85rem;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:.55rem;
    }
    .footer-links a{
      color:rgba(255,247,242,.78);
      font-size:.94rem;
    }
    .footer-links a:hover{color:#fff}
    .footer-col p{
      margin:0;
      color:rgba(255,247,242,.74);
      font-size:.95rem;
      line-height:1.75;
    }
    .footer-bottom{
      padding-top:1rem;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:.6rem 1rem;
      color:rgba(255,247,242,.62);
      font-size:.88rem;
    }
    .section-label{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      color:var(--accent);
      font-weight:800;
      font-size:.9rem;
      margin-bottom:.8rem;
    }
    .section-label::before{
      content:"";
      width:.55rem;
      height:.55rem;
      border-radius:50%;
      background:currentColor;
      box-shadow:0 0 0 6px rgba(182,125,86,.08);
    }
    .reassure{
      padding:1rem 1.15rem;
      border-radius:18px;
      border:1px solid rgba(228,213,204,.9);
      background:rgba(255,255,255,.66);
      color:var(--muted);
      font-size:.94rem;
      line-height:1.75;
    }
    .subtle-rule{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(95,34,71,.15), transparent);
      margin:1.2rem 0;
    }
    .sticky-note{
      font-size:.88rem;
      color:var(--muted);
      background:rgba(255,255,255,.62);
      border:1px solid rgba(228,213,204,.95);
      border-radius:16px;
      padding:.75rem .9rem;
    }
    .grid-gap-lg{gap:1.2rem}
    .align-end{align-items:end}
    .hide-md{display:block}
    .hide-lg{display:block}
    @media (max-width: 1150px){
      .main-nav{margin-right:.2rem}
      .nav-link{min-width:7.8rem}
      .hero-layout,.content-layout,.timeline-wrap,.footer-grid,.why-grid,.quotes-grid{
        grid-template-columns:1fr;
      }
      .story-rail{position:static}
      .footer-grid{grid-template-columns:1fr 1fr}
      .mega-panel .mega-grid{grid-template-columns:1fr}
      .hero-visual{min-height:460px}
    }
    @media (max-width: 900px){
      .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
      .main-nav,
      .nav-actions{
        display:none;
        width:100%;
      }
      .site-header.is-nav-open .nav-wrap{
        align-items:flex-start;
        flex-wrap:wrap;
      }
      .site-header.is-nav-open .main-nav{
        display:flex;
        flex-direction:column;
        gap:.55rem;
        margin:0;
        order:4;
        width:100%;
        padding:.4rem 0 .35rem;
      }
      .site-header.is-nav-open .nav-actions{
        display:flex;
        flex-wrap:wrap;
        width:100%;
        order:5;
        padding-bottom:.25rem;
      }
      .nav-link{
        width:100%;
      }
      .mega-panel{
        position:static;
        opacity:0;
        visibility:hidden;
        transform:none;
        pointer-events:none;
        max-height:0;
        overflow:hidden;
        padding:0;
      }
      .site-header.mega-open .mega-panel{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        max-height:1200px;
        padding:0 0 .8rem;
      }
      .mega-panel .mega-grid{margin-top:.8rem}
      .hero-shell{padding-top:1.8rem}
      .hero-visual{min-height:420px}
      .cta-inner{
        flex-direction:column;
        align-items:flex-start;
      }
      .cta-actions{width:100%}
      .cta-actions .btn{flex:1 1 11rem}
      .stats-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width: 640px){
      .site-container{width:min(100% - 1.1rem, 1320px)}
      .brand-text span{display:none}
      .hero-visual{min-height:390px; padding:1rem}
      .visual-panel + .visual-panel{margin-left:.6rem; margin-right:0}
      .visual-grid,.stats-grid{grid-template-columns:1fr}
      .section-head{flex-direction:column; align-items:flex-start}
      .hero-actions,.cta-actions{flex-direction:column}
      .btn{width:100%}
      .why-grid{grid-template-columns:1fr}
      .quotes-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{flex-direction:column}
      h1{font-size:2.05rem}
      h2{font-size:1.5rem}
      .pill-row,.chip-row,.filter-row{gap:.5rem}
      .pill,.chip,.filter-pill{padding:.5rem .82rem; font-size:.84rem}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      *,*::before,*::after{
        animation:none !important;
        transition:none !important;
      }
    }
