/* roulang page: index */
:root{
      --bg:#FFF9FB;
      --bg-soft:#F8F1F5;
      --bg-deep:#17111A;
      --surface:#ffffff;
      --surface-2:#fff5f9;
      --surface-3:#fdf0f6;
      --text:#241A22;
      --muted:#6E5968;
      --line:rgba(91,30,69,.12);
      --line-strong:rgba(91,30,69,.22);
      --brand:#5B1E45;
      --brand-2:#7A2E62;
      --brand-3:#A6427A;
      --accent:#FF6B8A;
      --accent-2:#F28BA8;
      --mint:#BFD8CF;
      --sand:#E8D9B5;
      --shadow:0 14px 40px rgba(90, 25, 66, .10);
      --shadow-strong:0 22px 54px rgba(90, 25, 66, .18);
      --shadow-soft:0 10px 28px rgba(90, 25, 66, .08);
      --radius-xl:34px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --gap:24px;
      --container:1220px;
      --transition:220ms ease;
    }
    html{scroll-behavior:smooth;}
    *{box-sizing:border-box;}
    html,body{margin:0;padding:0;}
    body{
      font-family: "PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 20% 0%, rgba(166,66,122,.10), transparent 34%),
        radial-gradient(circle at 80% 12%, rgba(255,107,138,.10), transparent 28%),
        linear-gradient(180deg, #fffdfd 0%, #fff7fb 45%, #f9f1f6 100%);
      line-height:1.75;
      min-height:100vh;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size:38px 38px;
      opacity:.35;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 88%);
      z-index:-1;
    }
    ::selection{background:rgba(166,66,122,.18);color:var(--brand);}
    a{
      color:var(--brand-2);
      text-decoration:none;
      transition:color var(--transition), transform var(--transition), opacity var(--transition), background var(--transition), box-shadow var(--transition);
    }
    a:hover{color:var(--brand);}
    img{max-width:100%;display:block;}
    button,input,textarea,select{
      font:inherit;
    }
    button{
      cursor:pointer;
    }
    .grid-container{
      max-width:var(--container);
      padding-left:1.2rem;
      padding-right:1.2rem;
    }
    .section{
      padding:96px 0;
      position:relative;
    }
    .section.compact{padding:72px 0;}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(91,30,69,.08);
      color:var(--brand);
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
      border:1px solid rgba(91,30,69,.10);
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:999px;
      background:linear-gradient(135deg,var(--accent),var(--brand-3));
      box-shadow:0 0 0 4px rgba(255,107,138,.14);
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:16px;
      margin-bottom:28px;
    }
    .section-head h2{
      margin:10px 0 0;
      font-size:clamp(26px, 3vw, 38px);
      line-height:1.18;
      letter-spacing:-.03em;
      color:#1f1620;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      max-width:56ch;
      font-size:15px;
    }
    .section-note{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-end;
    }
    .note-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(91,30,69,.12);
      box-shadow:0 6px 18px rgba(90,25,66,.06);
      color:#4A3143;
      font-size:13px;
      white-space:nowrap;
    }
    .note-chip strong{color:var(--brand);}
    .button,
    .button:focus,
    .button:hover{
      outline:none;
    }
    .button,
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border:0;
      border-radius:999px;
      padding:14px 20px;
      min-height:48px;
      font-weight:700;
      line-height:1;
      box-shadow:none;
      transition:transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
    }
    .button:active,
    .btn:active{
      transform:translateY(0);
    }
    .primary-btn,
    .button.primary-btn{
      color:#fff;
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 52%, var(--accent) 100%);
      box-shadow:0 14px 28px rgba(122,46,98,.24);
    }
    .primary-btn:hover,
    .button.primary-btn:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(122,46,98,.30);
    }
    .secondary-btn,
    .button.secondary-btn{
      color:var(--brand);
      background:rgba(255,255,255,.70);
      border:1px solid rgba(91,30,69,.16);
      box-shadow:0 10px 22px rgba(90,25,66,.06);
    }
    .secondary-btn:hover,
    .button.secondary-btn:hover{
      background:rgba(255,247,250,.95);
      color:var(--brand);
      transform:translateY(-2px);
      border-color:rgba(166,66,122,.28);
    }
    .soft-btn{
      color:var(--brand);
      background:rgba(91,30,69,.08);
      border:1px solid rgba(91,30,69,.12);
    }
    .soft-btn:hover{background:rgba(91,30,69,.12);color:var(--brand);}
    .button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible,
    .menu-toggle:focus-visible{
      outline:3px solid rgba(166,66,122,.35);
      outline-offset:3px;
      box-shadow:0 0 0 6px rgba(166,66,122,.12);
    }
    .site-header{
      position:fixed;
      top:0;left:0;right:0;
      z-index:1000;
      padding:16px 0;
      transition:background var(--transition), box-shadow var(--transition), border-color var(--transition), backdrop-filter var(--transition), padding var(--transition);
    }
    .site-header.is-scrolled{
      padding:10px 0;
    }
    .header-shell{
      display:flex;
      align-items:center;
      gap:18px;
      padding:14px 18px;
      border-radius:28px;
      border:1px solid rgba(255,255,255,.28);
      background:rgba(255,250,252,.46);
      backdrop-filter: blur(18px) saturate(130%);
      -webkit-backdrop-filter: blur(18px) saturate(130%);
      box-shadow:0 12px 28px rgba(57,18,41,.10);
      transition:background var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .site-header.is-scrolled .header-shell{
      background:rgba(255,248,250,.92);
      border-color:rgba(91,30,69,.10);
      box-shadow:0 16px 32px rgba(57,18,41,.12);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
      color:#1f1620;
      font-weight:800;
      letter-spacing:-.02em;
    }
    .brand:hover{color:var(--brand);}
    .brand-mark{
      width:44px;height:44px;border-radius:15px;
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 55%, var(--accent) 100%);
      box-shadow:0 12px 22px rgba(122,46,98,.22);
      position:relative;
      flex:none;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(255,255,255,.86);
    }
    .brand-mark::before{
      width:14px;height:14px;left:9px;top:10px;
    }
    .brand-mark::after{
      width:10px;height:10px;right:10px;bottom:10px;
      opacity:.82;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-text strong{
      font-size:15px;
      max-width:13em;
    }
    .brand-text small{
      margin-top:4px;
      color:var(--muted);
      font-weight:600;
      font-size:12px;
    }
    .site-nav{
      flex:1;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      padding:11px 14px;
      border-radius:999px;
      color:#3a2934;
      font-weight:700;
      font-size:14px;
      letter-spacing:.01em;
      border:1px solid transparent;
    }
    .nav-link:hover{
      background:rgba(91,30,69,.07);
      color:var(--brand);
      border-color:rgba(91,30,69,.08);
    }
    .nav-link.active,
    .nav-link[aria-current="page"]{
      background:rgba(91,30,69,.12);
      color:var(--brand);
      border-color:rgba(91,30,69,.14);
      box-shadow:0 8px 16px rgba(90,25,66,.06);
    }
    .header-tools{
      display:flex;
      align-items:center;
      gap:12px;
      margin-left:auto;
    }
    .search-pill{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:300px;
      padding:8px 10px 8px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(91,30,69,.12);
      box-shadow:0 8px 18px rgba(90,25,66,.06);
    }
    .search-pill input{
      margin:0;
      padding:0;
      height:28px;
      border:0;
      background:transparent;
      box-shadow:none;
      color:var(--text);
      font-size:14px;
      min-width:0;
    }
    .search-pill input::placeholder{color:#9a8592;}
    .search-pill button{
      border:0;
      border-radius:999px;
      padding:10px 14px;
      color:#fff;
      background:linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
      font-weight:700;
      white-space:nowrap;
      box-shadow:0 10px 18px rgba(122,46,98,.18);
    }
    .search-pill button:hover{transform:translateY(-1px);}
    .menu-toggle{
      display:none;
      align-items:center;
      justify-content:center;
      width:46px;
      height:46px;
      border-radius:16px;
      border:1px solid rgba(91,30,69,.14);
      background:rgba(255,255,255,.78);
      color:var(--brand);
      box-shadow:0 8px 18px rgba(90,25,66,.06);
      font-size:22px;
      font-weight:700;
      line-height:1;
    }
    .mobile-nav{
      display:none;
      margin-top:12px;
      padding:14px;
      border-radius:24px;
      background:rgba(255,251,253,.96);
      border:1px solid rgba(91,30,69,.12);
      box-shadow:0 16px 30px rgba(57,18,41,.12);
    }
    .mobile-nav a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 10px;
      border-radius:16px;
      color:#2d2028;
      font-weight:700;
    }
    .mobile-nav a + a{margin-top:6px;}
    .mobile-nav a:hover{background:rgba(91,30,69,.06);color:var(--brand);}
    .mobile-nav .search-pill{
      margin-top:12px;
      min-width:0;
      width:100%;
    }
    .hero{
      position:relative;
      padding:136px 0 54px;
      overflow:hidden;
    }
    .hero::before,
    .hero::after{
      content:"";
      position:absolute;
      border-radius:999px;
      filter:blur(10px);
      pointer-events:none;
      opacity:.85;
    }
    .hero::before{
      width:460px;height:460px;
      right:-120px;top:60px;
      background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.65), rgba(255,255,255,0) 60%), linear-gradient(135deg, rgba(122,46,98,.34), rgba(255,107,138,.20));
    }
    .hero::after{
      width:320px;height:320px;
      left:-90px;bottom:-110px;
      background:radial-gradient(circle at 40% 40%, rgba(255,255,255,.65), rgba(255,255,255,0) 60%), linear-gradient(135deg, rgba(231,217,181,.34), rgba(191,216,207,.24));
    }
    .hero-panel{
      position:relative;
      border-radius:36px;
      padding:28px;
      border:1px solid rgba(91,30,69,.12);
      background:
        linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,247,250,.86)),
        linear-gradient(135deg, rgba(122,46,98,.08), rgba(255,107,138,.04));
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:auto -16% -12% auto;
      width:340px;height:340px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,107,138,.18), rgba(255,107,138,0) 70%);
      pointer-events:none;
    }
    .hero-copy{
      position:relative;
      z-index:1;
      padding:12px 8px 12px 8px;
    }
    .hero-copy h1{
      margin:18px 0 16px;
      font-size:clamp(34px, 5vw, 60px);
      line-height:1.12;
      letter-spacing:-.04em;
      color:#1d151c;
      font-weight:800;
      max-width:11.2em;
    }
    .hero-copy .lead{
      max-width:42rem;
      font-size:17px;
      color:var(--muted);
      margin:0 0 24px;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-bottom:24px;
    }
    .hero-actions .button{
      min-width:132px;
    }
    .hero-stats{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .hero-stat{
      padding:14px 15px;
      border-radius:18px;
      background:rgba(255,255,255,.86);
      border:1px solid rgba(91,30,69,.10);
      box-shadow:0 8px 18px rgba(90,25,66,.06);
    }
    .hero-stat strong{
      display:block;
      font-size:20px;
      line-height:1;
      color:var(--brand);
      margin-bottom:6px;
    }
    .hero-stat span{
      color:var(--muted);
      font-size:13px;
    }
    .feature-card{
      position:relative;
      height:100%;
      min-height:100%;
      border-radius:30px;
      padding:22px;
      background:
        linear-gradient(145deg, rgba(91,30,69,.95), rgba(122,46,98,.92) 50%, rgba(166,66,122,.96));
      color:#fff;
      box-shadow:0 22px 44px rgba(91,30,69,.24);
      overflow:hidden;
    }
    .feature-card::before,
    .feature-card::after{
      content:"";
      position:absolute;
      border-radius:50%;
      pointer-events:none;
    }
    .feature-card::before{
      width:220px;height:220px;
      right:-60px;top:-40px;
      background:radial-gradient(circle, rgba(255,255,255,.26), rgba(255,255,255,0) 68%);
    }
    .feature-card::after{
      width:180px;height:180px;
      left:-30px;bottom:-60px;
      background:radial-gradient(circle, rgba(255,255,255,.16), rgba(255,255,255,0) 66%);
    }
    .feature-top,
    .card-top,
    .card-foot,
    .meta-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
    }
    .tag,
    .pill,
    .mini-tag{
      display:inline-flex;
      align-items:center;
      padding:7px 11px;
      border-radius:999px;
      font-size:12px;
      font-weight:700;
      line-height:1;
      letter-spacing:.01em;
    }
    .tag{
      background:rgba(255,255,255,.16);
      color:#fff;
      border:1px solid rgba(255,255,255,.18);
    }
    .pill{
      background:rgba(255,255,255,.9);
      color:var(--brand);
    }
    .mini-tag{
      background:rgba(91,30,69,.08);
      color:var(--brand);
      border:1px solid rgba(91,30,69,.08);
    }
    .feature-visual{
      position:relative;
      margin:20px 0 18px;
      border-radius:24px;
      min-height:220px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.04)),
        radial-gradient(circle at 20% 28%, rgba(255,255,255,.50), rgba(255,255,255,0) 28%),
        radial-gradient(circle at 75% 20%, rgba(255,255,255,.18), rgba(255,255,255,0) 26%),
        linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.12));
      border:1px solid rgba(255,255,255,.15);
      overflow:hidden;
    }
    .feature-visual::before,
    .feature-visual::after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(255,255,255,.2);
      filter:blur(2px);
    }
    .feature-visual::before{
      width:128px;height:128px;right:20px;top:20px;
      background:linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.08));
      transform:rotate(18deg);
    }
    .feature-visual::after{
      width:220px;height:220px;left:-70px;bottom:-110px;
      background:radial-gradient(circle, rgba(255,255,255,.26), rgba(255,255,255,0) 62%);
    }
    .feature-overlay{
      position:absolute;
      inset:18px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .metric-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .metric-chip{
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      color:#fff;
      border:1px solid rgba(255,255,255,.18);
      font-size:12px;
      font-weight:700;
    }
    .feature-card h2{
      margin:0 0 10px;
      font-size:28px;
      line-height:1.18;
      color:#fff;
      font-weight:800;
      letter-spacing:-.03em;
    }
    .feature-card p{
      margin:0 0 18px;
      color:rgba(255,255,255,.84);
      font-size:15px;
    }
    .feature-card .button{
      width:100%;
    }
    .crumbs{
      margin-top:18px;
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      color:rgba(36,26,34,.72);
      font-size:13px;
    }
    .crumbs a{
      color:var(--brand-2);
      font-weight:700;
    }
    .crumbs span.sep{
      color:#b89eac;
    }
    .card-wrap{
      position:relative;
      padding:22px;
      border-radius:28px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(91,30,69,.10);
      box-shadow:var(--shadow-soft);
      height:100%;
      overflow:hidden;
    }
    .card-wrap.featured{
      background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,251,.95));
      border-color:rgba(91,30,69,.12);
      box-shadow:var(--shadow);
    }
    .card-wrap.featured::before{
      content:"";
      position:absolute;
      inset:auto -8% -16% auto;
      width:240px;height:240px;
      background:radial-gradient(circle, rgba(255,107,138,.14), rgba(255,107,138,0) 70%);
      border-radius:50%;
      pointer-events:none;
    }
    .card-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:18px;
    }
    .card-title{
      margin:0;
      font-size:22px;
      line-height:1.25;
      letter-spacing:-.03em;
      color:#231822;
      font-weight:800;
    }
    .card-sub{
      margin:12px 0 0;
      color:var(--muted);
      font-size:15px;
      line-height:1.72;
    }
    .thumb{
      position:relative;
      border-radius:22px;
      min-height:180px;
      overflow:hidden;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.46), rgba(255,255,255,0) 28%),
        linear-gradient(135deg, rgba(91,30,69,.95), rgba(166,66,122,.92) 55%, rgba(255,107,138,.88));
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.14);
      margin-bottom:18px;
    }
    .thumb::before,
    .thumb::after{
      content:"";
      position:absolute;
      border-radius:50%;
    }
    .thumb::before{
      width:150px;height:150px;right:-26px;top:-30px;
      background:radial-gradient(circle, rgba(255,255,255,.30), rgba(255,255,255,0) 65%);
    }
    .thumb::after{
      width:210px;height:210px;left:-68px;bottom:-98px;
      background:radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,0) 60%);
    }
    .thumb-label{
      position:absolute;
      left:16px;top:16px;
      z-index:1;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.18);
      color:#fff;
      font-size:12px;
      font-weight:700;
    }
    .thumb-center{
      position:absolute;
      inset:0;
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      padding:18px;
      z-index:1;
      color:#fff;
    }
    .thumb-center .mini-stack{
      display:flex;
      flex-direction:column;
      gap:8px;
      max-width:70%;
    }
    .thumb-center strong{
      font-size:20px;
      line-height:1.2;
      letter-spacing:-.02em;
    }
    .thumb-center span{
      color:rgba(255,255,255,.82);
      font-size:13px;
    }
    .thumb-score{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 10px;
      border-radius:14px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.16);
      font-size:12px;
      white-space:nowrap;
      font-weight:700;
    }
    .meta-list{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin:14px 0 0;
    }
    .meta-list .mini-tag{
      background:rgba(91,30,69,.08);
    }
    .content-card{
      position:relative;
      height:100%;
      border-radius:24px;
      padding:18px;
      background:rgba(255,255,255,.88);
      border:1px solid rgba(91,30,69,.10);
      box-shadow:0 10px 24px rgba(90,25,66,.07);
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      overflow:hidden;
    }
    .content-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(166,66,122,.22);
    }
    .content-card .thumb{
      min-height:150px;
      border-radius:20px;
      margin-bottom:16px;
    }
    .content-card h3{
      margin:0;
      font-size:18px;
      line-height:1.35;
      color:#221822;
      font-weight:800;
    }
    .content-card p{
      margin:10px 0 14px;
      color:var(--muted);
      font-size:14px;
      line-height:1.68;
    }
    .content-card .card-foot a{
      font-weight:700;
      color:var(--brand-2);
    }
    .content-card .card-foot a::after{
      content:"→";
      margin-left:6px;
      transition:transform var(--transition);
      display:inline-block;
    }
    .content-card:hover .card-foot a::after{
      transform:translateX(3px);
    }
    .badge-dot{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(91,30,69,.07);
      color:var(--brand);
      font-size:12px;
      font-weight:700;
    }
    .badge-dot::before{
      content:"";
      width:8px;height:8px;border-radius:999px;
      background:linear-gradient(135deg, var(--brand-2), var(--accent));
    }
    .recommended-grid{
      display:grid;
      grid-template-columns:1.12fr .88fr;
      gap:20px;
    }
    .mini-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
    }
    .mini-grid .content-card{
      min-height:100%;
    }
    .mini-grid .thumb{
      min-height:118px;
    }
    .category-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:20px;
    }
    .category-panel{
      padding:24px;
      border-radius:28px;
      border:1px solid rgba(91,30,69,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,247,250,.92));
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
    }
    .category-panel::after{
      content:"";
      position:absolute;
      right:-40px;top:-60px;
      width:220px;height:220px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,107,138,.14), rgba(255,107,138,0) 68%);
      pointer-events:none;
    }
    .category-panel.alt{
      background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,244,248,.95)),
        linear-gradient(135deg, rgba(191,216,207,.12), rgba(232,217,181,.14));
    }
    .category-panel h3{
      margin:8px 0 10px;
      font-size:24px;
      line-height:1.25;
      color:#221822;
      font-weight:800;
      letter-spacing:-.03em;
    }
    .category-panel p{
      margin:0 0 18px;
      color:var(--muted);
    }
    .category-features{
      list-style:none;
      margin:0 0 18px;
      padding:0;
    }
    .category-features li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      margin-bottom:10px;
      color:#43313c;
    }
    .category-features li::before{
      content:"";
      width:10px;height:10px;border-radius:50%;
      margin-top:9px;
      background:linear-gradient(135deg, var(--brand-2), var(--accent));
      flex:none;
      box-shadow:0 0 0 4px rgba(166,66,122,.10);
    }
    .category-panel .button{
      margin-top:4px;
    }
    .orbit-wrap{
      position:relative;
      padding:26px 22px 20px;
      border-radius:30px;
      border:1px solid rgba(91,30,69,.10);
      background:rgba(255,255,255,.86);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .orbit-wrap::before{
      content:"";
      position:absolute;
      inset:auto -8% -18% auto;
      width:260px;height:260px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(122,46,98,.12), rgba(122,46,98,0) 70%);
      pointer-events:none;
    }
    .orbit,
    .orbit-wrapper,
    .orbit-container,
    .orbit-slide{
      height:100%;
    }
    .orbit-container{
      list-style:none;
      margin:0;
      padding:0;
    }
    .review-card{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:16px;
      align-items:flex-start;
      padding:10px 6px 18px;
      min-height:260px;
    }
    .avatar{
      width:56px;height:56px;border-radius:50%;
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 60%, var(--accent) 100%);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
      box-shadow:0 12px 22px rgba(122,46,98,.22);
      flex:none;
    }
    .review-meta{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      margin-bottom:8px;
      flex-wrap:wrap;
    }
    .review-meta h3{
      margin:0;
      font-size:18px;
      color:#221822;
      font-weight:800;
    }
    .stars{
      display:inline-flex;
      gap:3px;
      color:#f1b24a;
      font-size:14px;
      line-height:1;
      white-space:nowrap;
    }
    .review-card p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .review-tags{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .review-tag{
      padding:7px 10px;
      border-radius:999px;
      background:rgba(91,30,69,.08);
      color:var(--brand);
      font-size:12px;
      font-weight:700;
    }
    .orbit-wrap .orbit-previous,
    .orbit-wrap .orbit-next{
      background:rgba(91,30,69,.10);
      color:var(--brand);
      border-radius:50%;
      width:42px;height:42px;
      line-height:42px;
      text-align:center;
      font-size:24px;
      top:auto;
      bottom:12px;
    }
    .orbit-wrap .orbit-previous:hover,
    .orbit-wrap .orbit-next:hover{
      background:rgba(91,30,69,.16);
      color:var(--brand);
    }
    .orbit-bullets{
      margin:16px 0 0;
    }
    .orbit-bullets button{
      width:10px;height:10px;
      margin:0 4px;
      background:rgba(91,30,69,.18);
    }
    .orbit-bullets button.is-active{
      background:linear-gradient(135deg, var(--brand), var(--accent));
    }
    .trust-strip{
      padding:24px;
      border-radius:30px;
      background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,241,245,.92));
      border:1px solid rgba(91,30,69,.10);
      box-shadow:var(--shadow-soft);
    }
    .trust-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
    }
    .trust-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.8);
      border:1px solid rgba(91,30,69,.10);
      min-height:100%;
    }
    .trust-icon{
      width:42px;height:42px;border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, rgba(91,30,69,.12), rgba(255,107,138,.12));
      color:var(--brand);
      flex:none;
    }
    .trust-icon svg{
      width:22px;height:22px;
      stroke:currentColor;
      fill:none;
      stroke-width:1.8;
      stroke-linecap:round;
      stroke-linejoin:round;
    }
    .trust-item h3{
      margin:0 0 4px;
      font-size:16px;
      line-height:1.28;
      color:#231822;
      font-weight:800;
    }
    .trust-item p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .faq-card{
      padding:24px;
      border-radius:30px;
      background:rgba(255,255,255,.88);
      border:1px solid rgba(91,30,69,.10);
      box-shadow:var(--shadow-soft);
    }
    .accordion{
      background:transparent;
      border:0;
      margin:0;
    }
    .accordion-item{
      border:1px solid rgba(91,30,69,.10);
      border-radius:20px;
      overflow:hidden;
      background:#fff;
      margin-bottom:12px;
      box-shadow:0 10px 22px rgba(90,25,66,.05);
    }
    .accordion-title{
      background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,251,.94));
      color:#231822;
      font-weight:800;
      font-size:16px;
      padding:18px 20px;
      border:0;
      position:relative;
    }
    .accordion-title::before{
      content:"";
      position:absolute;
      left:0;top:0;bottom:0;
      width:4px;
      background:linear-gradient(180deg, var(--brand), var(--accent));
    }
    .accordion-title:hover{
      background:linear-gradient(180deg, rgba(255,247,250,.98), rgba(255,242,246,.94));
      color:var(--brand);
    }
    .accordion-title::after{
      border-color:var(--brand) transparent transparent;
    }
    .is-active > .accordion-title::after{
      border-color:transparent transparent var(--brand);
      top:calc(50% - 8px);
    }
    .accordion-content{
      border:0;
      padding:0 20px 18px;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      background:#fff;
    }
    .accordion-content p{margin:12px 0 0;}
    .contact-section{
      padding:0 0 96px;
    }
    .contact-grid{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:20px;
      align-items:stretch;
    }
    .contact-intro,
    .contact-form-card{
      padding:26px;
      border-radius:30px;
      background:rgba(255,255,255,.88);
      border:1px solid rgba(91,30,69,.10);
      box-shadow:var(--shadow-soft);
    }
    .contact-intro h2,
    .cta-band h2{
      margin:10px 0 14px;
      font-size:clamp(24px, 3vw, 34px);
      line-height:1.18;
      color:#231822;
      font-weight:800;
      letter-spacing:-.03em;
    }
    .contact-intro p{
      color:var(--muted);
      margin:0 0 18px;
      font-size:15px;
    }
    .contact-points{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .contact-points li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#43313c;
      font-size:14px;
    }
    .contact-points li::before{
      content:"";
      width:9px;height:9px;border-radius:50%;
      margin-top:9px;
      background:linear-gradient(135deg, var(--brand-2), var(--accent));
      box-shadow:0 0 0 4px rgba(166,66,122,.10);
      flex:none;
    }
    .contact-form-card form{
      display:grid;
      gap:14px;
    }
    .field label{
      display:block;
      margin:0 0 8px;
      color:#3a2934;
      font-size:14px;
      font-weight:700;
    }
    .field input,
    .field textarea,
    .field select{
      width:100%;
      margin:0;
      padding:14px 16px;
      border-radius:18px;
      border:1px solid rgba(91,30,69,.14);
      background:rgba(255,255,255,.96);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
      color:var(--text);
      transition:border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }
    .field input::placeholder,
    .field textarea::placeholder{
      color:#aa98a3;
    }
    .field input:focus,
    .field textarea:focus,
    .field select:focus{
      border-color:rgba(166,66,122,.38);
      box-shadow:0 0 0 5px rgba(166,66,122,.12);
      background:#fff;
    }
    .field textarea{
      min-height:132px;
      resize:vertical;
    }
    .form-note{
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      margin-top:-2px;
    }
    .cta-band{
      position:relative;
      padding:28px;
      border-radius:34px;
      overflow:hidden;
      background:linear-gradient(135deg, rgba(91,30,69,.96), rgba(122,46,98,.94) 46%, rgba(166,66,122,.96));
      color:#fff;
      box-shadow:0 24px 50px rgba(91,30,69,.24);
    }
    .cta-band::before,
    .cta-band::after{
      content:"";
      position:absolute;
      border-radius:50%;
      pointer-events:none;
    }
    .cta-band::before{
      width:280px;height:280px;
      right:-90px;top:-80px;
      background:radial-gradient(circle, rgba(255,255,255,.26), rgba(255,255,255,0) 68%);
    }
    .cta-band::after{
      width:220px;height:220px;
      left:-70px;bottom:-120px;
      background:radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,0) 70%);
    }
    .cta-band .grid-x{
      position:relative;
      z-index:1;
    }
    .cta-band h2{
      color:#fff;
      margin-top:0;
    }
    .cta-band p{
      margin:0;
      color:rgba(255,255,255,.85);
      font-size:15px;
      line-height:1.75;
      max-width:56ch;
    }
    .cta-band .button.secondary-btn{
      background:rgba(255,255,255,.92);
      color:var(--brand);
      border-color:rgba(255,255,255,.18);
    }
    .cta-band .button.secondary-btn:hover{
      background:#fff;
      color:var(--brand);
    }
    .footer{
      position:relative;
      padding:54px 0 34px;
      background:linear-gradient(180deg, #241520, #161016);
      color:rgba(255,255,255,.92);
      overflow:hidden;
    }
    .footer::before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 20% 0%, rgba(166,66,122,.22), transparent 26%),
                 radial-gradient(circle at 84% 6%, rgba(255,107,138,.16), transparent 24%);
      pointer-events:none;
    }
    .footer-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.25fr .9fr .9fr .95fr;
      gap:22px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
      color:#fff;
    }
    .footer-brand .brand-mark{width:42px;height:42px;}
    .footer h3{
      margin:0 0 14px;
      font-size:16px;
      color:#fff;
      font-weight:800;
    }
    .footer p,
    .footer li,
    .footer a{
      color:rgba(255,255,255,.76);
      font-size:14px;
      line-height:1.8;
    }
    .footer a:hover{
      color:#fff;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:8px;
    }
    .footer-links a{
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .footer-links a::before{
      content:"";
      width:6px;height:6px;border-radius:50%;
      background:rgba(255,255,255,.38);
      flex:none;
    }
    .footer-bottom{
      position:relative;
      z-index:1;
      margin-top:28px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.64);
      font-size:13px;
    }
    .footer-bottom strong{color:#fff;}
    .muted{color:var(--muted);}
    .small-label{
      display:inline-flex;
      align-items:center;
      gap:6px;
      font-size:12px;
      font-weight:700;
      color:var(--brand);
      background:rgba(91,30,69,.08);
      padding:7px 10px;
      border-radius:999px;
    }
    .grid-gap{margin-bottom:22px;}
    .divider{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(91,30,69,.14), transparent);
      margin:24px 0;
    }
    .inset{
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(91,30,69,.10);
    }
    .hide-on-desktop{display:none;}
    @media (max-width: 1199px){
      .search-pill{min-width:240px;}
      .hero-stats{grid-template-columns:repeat(2,minmax(0,1fr));}
      .recommended-grid{grid-template-columns:1fr;}
      .mini-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
      .contact-grid{grid-template-columns:1fr;}
      .footer-grid{grid-template-columns:1fr 1fr;}
    }
    @media (max-width: 1023px){
      .site-nav{display:none;}
      .search-pill{display:none;}
      .menu-toggle{display:inline-flex;}
      .header-tools{margin-left:0;}
      .brand{min-width:0;}
      .header-shell{justify-content:space-between;}
      .mobile-nav.is-open{display:block;}
      .hero{padding-top:126px;}
      .hero-copy h1{max-width:100%;}
      .hero-panel{padding:22px;}
      .hero .grid-x>.cell{margin-bottom:18px;}
      .category-grid{grid-template-columns:1fr;}
      .trust-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
    }
    @media (max-width: 767px){
      .site-header{padding:10px 0;}
      .header-shell{padding:12px 14px;border-radius:24px;}
      .brand-text strong{font-size:14px;}
      .brand-text small{font-size:11px;}
      .hero{
        padding:112px 0 40px;
      }
      .hero-panel{border-radius:28px;padding:18px;}
      .hero-copy h1{font-size:clamp(32px, 8vw, 40px);}
      .hero-copy .lead{font-size:15px;}
      .hero-stats{grid-template-columns:1fr 1fr;}
      .feature-card h2{font-size:24px;}
      .feature-visual{min-height:190px;}
      .section{padding:70px 0;}
      .section.compact{padding:54px 0;}
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .section-note{justify-content:flex-start;}
      .mini-grid{grid-template-columns:1fr;}
      .trust-grid{grid-template-columns:1fr;}
      .footer-grid{grid-template-columns:1fr;}
      .footer-bottom{flex-direction:column;}
      .review-card{grid-template-columns:1fr;gap:12px;}
      .avatar{width:52px;height:52px;}
      .orbit-wrap{padding:18px 16px 56px;}
      .orbit-wrap .orbit-previous,
      .orbit-wrap .orbit-next{
        bottom:14px;
      }
      .contact-intro,.contact-form-card,.cta-band,.faq-card,.trust-strip{border-radius:24px;}
      .card-wrap,.category-panel{border-radius:24px;}
      .button,.btn{padding:13px 18px;min-height:46px;}
      .footer{padding:46px 0 28px;}
    }
    @media (max-width: 520px){
      .grid-container{padding-left:1rem;padding-right:1rem;}
      .hero-stats{grid-template-columns:1fr;}
      .hero-actions{flex-direction:column;}
      .hero-actions .button{width:100%;}
      .cta-band .grid-x,
      .contact-grid{
        display:block;
      }
      .contact-form-card{margin-top:14px;}
      .trust-item{padding:16px;}
      .content-card{padding:16px;}
      .card-wrap{padding:18px;}
      .category-panel{padding:20px;}
      .accordion-title{padding:16px 18px;}
      .accordion-content{padding:0 18px 16px;}
    }

/* roulang page: category1 */
:root{
      --berry:#681f4d;
      --berry-deep:#321327;
      --berry-soft:#a94779;
      --rose:#ff718d;
      --rose-pale:#fff0f4;
      --paper:#fffafc;
      --surface:#ffffff;
      --ink:#241b24;
      --muted:#766b75;
      --line:#eadce4;
      --mint:#c7ded5;
      --champagne:#eee0bd;
      --shadow:0 20px 50px rgba(79,28,61,.12);
      --shadow-soft:0 10px 28px rgba(79,28,61,.08);
      --radius-xl:30px;
      --radius-lg:22px;
      --radius-md:16px;
      --ease:all .22s ease;
    }
    *,*::before,*::after{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      line-height:1.75;
      background:
        radial-gradient(circle at 8% 12%,rgba(255,185,202,.25),transparent 25rem),
        linear-gradient(135deg,#fffafd 0%,#f8f0f5 100%);
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(255,113,141,.5);outline-offset:3px
    }
    .grid-container{max-width:1240px;padding-left:24px;padding-right:24px}
    .site-header{position:absolute;z-index:20;top:0;left:0;width:100%;padding:18px 0}
    .site-header.is-scrolled{position:fixed;padding:10px 0;background:rgba(255,250,252,.94);backdrop-filter:blur(15px);box-shadow:0 8px 25px rgba(57,22,43,.12)}
    .nav-shell{display:flex;align-items:center;gap:28px;padding:11px 16px;border:1px solid rgba(255,255,255,.38);border-radius:22px;background:rgba(60,17,45,.42);backdrop-filter:blur(16px) saturate(130%);box-shadow:0 10px 30px rgba(38,10,28,.12)}
    .is-scrolled .nav-shell{background:rgba(255,255,255,.78);border-color:var(--line)}
    .brand{display:flex;align-items:center;gap:10px;min-width:230px}
    .brand-mark,.footer-brand .brand-mark{width:34px;height:34px;border-radius:50%;display:inline-block;background:linear-gradient(135deg,var(--rose),#c75aa1 55%,var(--berry));box-shadow:0 5px 14px rgba(255,113,141,.35);position:relative}
    .brand-mark:after{content:"";position:absolute;width:10px;height:10px;border-radius:50%;background:#fff3f6;right:6px;top:6px}
    .brand-text{display:flex;flex-direction:column;line-height:1.2}
    .brand-text strong{font-size:15px;letter-spacing:.02em}
    .brand-text small{font-size:11px;opacity:.7;margin-top:4px}
    .site-header:not(.is-scrolled) .brand,.site-header:not(.is-scrolled) .nav-link{color:#fff9fc}
    .site-nav{display:flex;align-items:center;gap:6px;flex:1}
    .nav-link{padding:9px 14px;border-radius:999px;font-size:14px;color:var(--muted)}
    .nav-link:hover,.nav-link.active{background:rgba(255,113,141,.15);color:var(--rose)}
    .site-header:not(.is-scrolled) .nav-link:hover,.site-header:not(.is-scrolled) .nav-link.active{background:rgba(255,255,255,.15);color:#fff}
    .nav-actions{display:flex;align-items:center;gap:10px}
    .search-mini{display:flex;align-items:center;gap:8px;border:1px solid rgba(255,255,255,.34);border-radius:999px;padding:7px 13px;color:#fff;background:rgba(255,255,255,.1)}
    .is-scrolled .search-mini{border-color:var(--line);color:var(--muted);background:#fff}
    .search-mini input{width:110px;border:0;background:transparent;color:inherit;outline:0;font-size:13px}
    .search-mini input::placeholder{color:currentColor;opacity:.7}
    .button{border-radius:999px;border:0;font-weight:700;transition:var(--ease);padding:12px 20px;line-height:1.2}
    .button.primary{background:linear-gradient(120deg,var(--berry),var(--berry-soft));color:#fff;box-shadow:0 9px 22px rgba(104,31,77,.22)}
    .button.primary:hover{transform:translateY(-2px);box-shadow:0 13px 28px rgba(104,31,77,.3)}
    .button.secondary{background:var(--rose-pale);color:var(--berry);border:1px solid #f0cbd8}
    .button.secondary:hover{background:#ffe2ea;transform:translateY(-2px)}
    .menu-toggle{display:none;color:var(--berry);font-weight:700;background:transparent;border:0}
    .page-hero{padding:160px 0 76px;background:linear-gradient(125deg,#3a142e 0%,#702052 52%,#b34f7b 100%);color:#fff;position:relative;overflow:hidden}
    .page-hero:before,.page-hero:after{content:"";position:absolute;border:1px solid rgba(255,255,255,.14);border-radius:50%;width:480px;height:480px;right:-160px;top:-190px}
    .page-hero:after{width:350px;height:350px;right:220px;top:150px;border-color:rgba(255,190,207,.2)}
    .crumbs{font-size:13px;opacity:.72;margin-bottom:25px}
    .crumbs a:hover{color:#ffd9e3}
    .hero-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:60px;align-items:end;position:relative;z-index:1}
    .eyebrow{display:inline-flex;align-items:center;gap:8px;padding:6px 12px;border-radius:999px;background:rgba(255,255,255,.14);font-size:12px;letter-spacing:.08em}
    .eyebrow i{width:7px;height:7px;border-radius:50%;background:#ffc1d0}
    h1,h2,h3{margin:0;color:inherit;line-height:1.2}
    h1{font-size:clamp(38px,5vw,60px);letter-spacing:-.04em;margin:19px 0 20px;max-width:760px}
    .hero-copy{font-size:17px;line-height:1.85;max-width:700px;color:rgba(255,255,255,.78)}
    .stats-column{display:grid;gap:12px}
    .stat-box{padding:19px 20px;border-radius:18px;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.1);backdrop-filter:blur(12px)}
    .stat-box strong{font-size:24px;display:block;color:#fff}
    .stat-box span{font-size:12px;color:rgba(255,255,255,.7)}
    .section{padding:82px 0}
    .section-head{display:flex;justify-content:space-between;align-items:end;gap:25px;margin-bottom:30px}
    .section-head h2{font-size:34px;color:var(--berry-deep)}
    .section-head p{max-width:590px;color:var(--muted);margin:0}
    .browse-layout{display:grid;grid-template-columns:250px minmax(0,1fr);gap:30px}
    .filter-panel{align-self:start;position:sticky;top:100px;padding:24px;border-radius:var(--radius-lg);background:rgba(255,255,255,.78);border:1px solid var(--line);box-shadow:var(--shadow-soft)}
    .filter-panel h3{font-size:18px;color:var(--berry-deep);margin-bottom:18px}
    .filter-group{padding:17px 0;border-top:1px solid var(--line)}
    .filter-group:first-of-type{border-top:0;padding-top:0}
    .filter-label{display:block;color:var(--muted);font-size:12px;margin-bottom:9px}
    .filter-options{display:flex;flex-wrap:wrap;gap:7px}
    .filter-option{border:1px solid var(--line);border-radius:999px;padding:6px 10px;background:#fff;color:var(--muted);font-size:12px;cursor:pointer}
    .filter-option:hover,.filter-option.active{background:var(--rose-pale);border-color:#e9a9bd;color:var(--berry)}
    .results-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px}
    .result-count{font-size:14px;color:var(--muted)}
    .sort-select{border:1px solid var(--line);border-radius:999px;padding:8px 13px;color:var(--berry);background:#fff}
    .media-list{display:grid;gap:18px}
    .media-card{display:grid;grid-template-columns:190px minmax(0,1fr) auto;gap:22px;align-items:center;padding:18px;border:1px solid var(--line);border-radius:var(--radius-lg);background:rgba(255,255,255,.87);box-shadow:var(--shadow-soft);transition:var(--ease)}
    .media-card:hover{transform:translateY(-4px);border-color:#d89ab3;box-shadow:var(--shadow)}
    .cover{height:130px;border-radius:16px;position:relative;overflow:hidden;background:linear-gradient(135deg,#f9b8c7,#8c3268);display:flex;align-items:flex-end;padding:14px;color:#fff}
    .cover:before{content:"";position:absolute;width:160px;height:160px;border:1px solid rgba(255,255,255,.35);border-radius:50%;right:-55px;top:-35px}
    .cover span{position:relative;font-size:12px;font-weight:700;letter-spacing:.08em}
    .tag{display:inline-block;border-radius:999px;background:var(--rose-pale);color:var(--berry);padding:5px 10px;font-size:11px;font-weight:700;margin-bottom:8px}
    .media-card h3{font-size:20px;color:var(--berry-deep);margin-bottom:7px}
    .media-card p{font-size:14px;color:var(--muted);margin:0;line-height:1.65}
    .meta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px;color:#8d7582;font-size:12px}
    .meta-row b{color:var(--berry)}
    .card-action{text-align:right;min-width:92px}
    .text-link{display:inline-flex;align-items:center;gap:5px;color:var(--berry);font-weight:700;font-size:13px}
    .text-link:hover{color:var(--rose);gap:9px}
    .small-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:18px}
    .small-card{padding:21px;border:1px solid var(--line);border-radius:20px;background:#fff;transition:var(--ease)}
    .small-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft)}
    .small-card h3{font-size:18px;color:var(--berry-deep);margin:4px 0 7px}
    .small-card p{font-size:13px;color:var(--muted);margin:0}
    .mini-cover{height:76px;border-radius:14px;background:linear-gradient(135deg,#e7b9ca,#71315b);margin-bottom:15px;position:relative;overflow:hidden}
    .mini-cover:after{content:"索引入口";position:absolute;bottom:10px;left:13px;color:#fff;font-size:12px}
    .pagination{justify-content:center;margin:42px 0 0}
    .pagination li a,.pagination li.current{border-radius:10px;margin:0 4px;color:var(--berry);background:#fff;border:1px solid var(--line);padding:8px 13px}
    .pagination li.current{background:var(--berry);color:#fff;border-color:var(--berry)}
    .trust-strip{padding:28px;border-radius:var(--radius-xl);background:linear-gradient(110deg,#fff,#fff3f6);border:1px solid var(--line);display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
    .trust-item{display:flex;gap:12px;align-items:flex-start}
    .trust-icon{width:34px;height:34px;border-radius:12px;background:var(--mint);color:var(--berry-deep);display:grid;place-items:center;font-weight:800;flex:none}
    .trust-item h3{font-size:15px;color:var(--berry-deep)}
    .trust-item p{font-size:12px;color:var(--muted);line-height:1.5;margin:3px 0 0}
    .faq-wrap{max-width:880px;margin:auto}
    .accordion{background:transparent}
    .accordion-item{border:1px solid var(--line)!important;border-radius:16px!important;margin-bottom:10px;overflow:hidden;background:#fff}
    .accordion-title{border:0!important;color:var(--berry-deep);font-size:15px;font-weight:700;padding:19px 23px}
    .accordion-title:hover{background:var(--rose-pale)}
    .accordion-content{border:0!important;border-left:4px solid var(--rose)!important;color:var(--muted);font-size:14px;line-height:1.8;padding:0 24px 20px}
    .cta{padding:48px 50px;border-radius:var(--radius-xl);background:linear-gradient(120deg,var(--berry-deep),var(--berry-soft));color:#fff;display:flex;justify-content:space-between;align-items:center;gap:30px;box-shadow:var(--shadow)}
    .cta h2{font-size:30px}.cta p{margin:10px 0 0;color:rgba(255,255,255,.75)}
    .cta-actions{display:flex;gap:10px;flex:none}.cta .button.secondary{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.3);color:#fff}
    .footer{padding:65px 0 25px;background:linear-gradient(135deg,#261022,#130b17);color:#fff}
    .footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:42px}
    .footer-brand{display:flex;align-items:center;gap:10px}.footer-brand .brand-text strong{color:#fff}
    .footer p{color:rgba(255,255,255,.63);font-size:13px;line-height:1.8;max-width:310px;margin-top:18px}
    .footer h3{font-size:15px;color:#fff;margin-bottom:16px}
    .footer-links{list-style:none;margin:0;padding:0}.footer-links li{margin:9px 0}.footer-links a{color:rgba(255,255,255,.63);font-size:13px}.footer-links a:hover{color:#ffb5c5}
    .footer-bottom{display:flex;justify-content:space-between;gap:20px;border-top:1px solid rgba(255,255,255,.13);margin-top:45px;padding-top:20px;color:rgba(255,255,255,.48);font-size:12px}
    @media(max-width:900px){
      .brand{min-width:auto}.site-nav{gap:0}.nav-link{padding:8px 9px;font-size:13px}.search-mini{display:none}
      .hero-layout{grid-template-columns:1fr}.stats-column{grid-template-columns:repeat(4,1fr)}
      .browse-layout{grid-template-columns:1fr}.filter-panel{position:static}.trust-strip{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media(max-width:640px){
      .grid-container{padding-left:18px;padding-right:18px}.site-header{padding-top:10px}.nav-shell{padding:10px 12px}
      .brand-text strong{font-size:12px;max-width:150px}.brand-text small{display:none}.brand-mark{width:29px;height:29px}
      .site-nav{display:none}.menu-toggle{display:block;margin-left:auto}.nav-actions .button{display:none}
      .page-hero{padding:130px 0 55px}.hero-copy{font-size:15px}.stats-column{grid-template-columns:repeat(2,1fr)}
      .section{padding:58px 0}.section-head{display:block}.section-head h2{font-size:28px;margin-bottom:10px}
      .media-card{grid-template-columns:105px 1fr;gap:15px}.cover{height:105px}.card-action{grid-column:2;text-align:left}.media-card h3{font-size:17px}
      .small-grid{grid-template-columns:1fr}.trust-strip{grid-template-columns:1fr;padding:21px}.cta{display:block;padding:32px 25px}.cta h2{font-size:25px}.cta-actions{margin-top:22px}.cta-actions .button{flex:1;padding-left:10px;padding-right:10px}
      .footer-grid{grid-template-columns:1fr 1fr;gap:28px}.footer-grid>div:first-child{grid-column:1/-1}.footer-bottom{display:block}.footer-bottom div+div{margin-top:8px}
    }
    @media(max-width:420px){h1{font-size:34px}.stats-column{gap:8px}.stat-box{padding:14px}.stat-box strong{font-size:20px}}

/* roulang page: category2 */
:root{
      --plum-950:#151017;
      --plum-900:#211622;
      --plum-800:#351d31;
      --plum-700:#5B1E45;
      --plum-600:#7A2E62;
      --berry:#A6427A;
      --rose:#FF6B8A;
      --rose-soft:#F28BA8;
      --cream:#FFF9FB;
      --wash:#F8F1F5;
      --mist:#EFE2E9;
      --champagne:#E8D9B5;
      --mint:#BFD8CF;
      --text:#251923;
      --muted:#776574;
      --line:rgba(122,46,98,.16);
      --line-strong:rgba(122,46,98,.28);
      --white:rgba(255,255,255,.92);
      --shadow-sm:0 10px 24px rgba(91,30,69,.10);
      --shadow-md:0 20px 55px rgba(91,30,69,.16);
      --shadow-lg:0 34px 90px rgba(91,30,69,.24);
      --radius-xl:34px;
      --radius-lg:26px;
      --radius-md:20px;
      --radius-sm:14px;
      --ease:220ms ease;
      --container:1220px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      color:var(--text);
      line-height:1.75;
      background:
        radial-gradient(circle at 14% 10%, rgba(255,107,138,.20), transparent 32%),
        radial-gradient(circle at 86% 4%, rgba(166,66,122,.16), transparent 28%),
        linear-gradient(180deg,#fff9fb 0%,#f8f1f5 48%,#fff9fb 100%);
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.32;
      background-image:
        linear-gradient(rgba(91,30,69,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(91,30,69,.035) 1px,transparent 1px);
      background-size:32px 32px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.8),transparent 72%);
      z-index:-1;
    }
    a{
      color:var(--plum-700);
      text-decoration:none;
      transition:color var(--ease),transform var(--ease),background var(--ease),border-color var(--ease),box-shadow var(--ease);
    }
    a:hover{color:var(--berry)}
    a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
      outline:3px solid rgba(255,107,138,.46);
      outline-offset:3px;
    }
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    .grid-container{
      max-width:var(--container);
      padding-left:24px;
      padding-right:24px;
    }
    .section{
      padding:88px 0;
      position:relative;
    }
    .section-tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:999px;
      color:var(--plum-700);
      background:rgba(255,255,255,.68);
      border:1px solid var(--line);
      font-weight:700;
      font-size:14px;
      box-shadow:var(--shadow-sm);
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:50%;
      background:linear-gradient(135deg,var(--rose),var(--berry));
      box-shadow:0 0 0 5px rgba(255,107,138,.12);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-weight:800;
      letter-spacing:-.04em;
      line-height:1.14;
      font-size:clamp(34px,5.1vw,58px);
      margin-bottom:22px;
    }
    h2{
      font-weight:800;
      letter-spacing:-.025em;
      line-height:1.2;
      font-size:clamp(26px,3.4vw,38px);
      margin-bottom:16px;
    }
    h3{
      font-weight:750;
      line-height:1.28;
      font-size:22px;
      margin-bottom:12px;
    }
    p{color:var(--muted);font-size:16px}
    .lead{
      font-size:18px;
      color:rgba(255,255,255,.82);
      max-width:680px;
      line-height:1.85;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:34px;
    }
    .section-head p{max-width:620px;margin-bottom:0}

    .top-shell{
      position:relative;
      min-height:620px;
      color:#fff;
      overflow:hidden;
      background:
        radial-gradient(circle at 80% 16%, rgba(255,107,138,.38), transparent 30%),
        radial-gradient(circle at 18% 20%, rgba(232,217,181,.18), transparent 22%),
        linear-gradient(135deg,#151017 0%,#351d31 36%,#7A2E62 72%,#A6427A 100%);
    }
    .top-shell::before{
      content:"";
      position:absolute;
      width:720px;
      height:720px;
      right:-210px;
      top:-230px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,255,255,.18),transparent 62%);
      filter:blur(2px);
    }
    .top-shell::after{
      content:"";
      position:absolute;
      inset:auto -8% -24% 0;
      height:260px;
      background:rgba(255,255,255,.08);
      transform:skewY(-5deg);
      transform-origin:left bottom;
    }

    .site-header{
      position:fixed;
      top:16px;
      left:0;
      width:100%;
      z-index:50;
      transition:top var(--ease),background var(--ease),box-shadow var(--ease);
    }
    .nav-wrap{
      max-width:var(--container);
      margin:0 auto;
      padding:0 24px;
    }
    .nav-panel{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:12px 16px;
      border:1px solid rgba(255,255,255,.22);
      border-radius:999px;
      background:rgba(255,255,255,.12);
      backdrop-filter:blur(18px) saturate(145%);
      box-shadow:0 18px 55px rgba(21,16,23,.16);
    }
    .site-header.is-scrolled{
      top:8px;
    }
    .site-header.is-scrolled .nav-panel{
      background:rgba(255,249,251,.94);
      border-color:var(--line);
      box-shadow:var(--shadow-md);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      color:#fff;
    }
    .site-header.is-scrolled .brand{color:var(--plum-800)}
    .brand:hover{color:#fff;transform:translateY(-1px)}
    .site-header.is-scrolled .brand:hover{color:var(--plum-700)}
    .brand-mark{
      flex:0 0 auto;
      width:42px;
      height:42px;
      border-radius:50%;
      background:
        radial-gradient(circle at 32% 24%,#fff 0 10%,transparent 12%),
        linear-gradient(135deg,var(--rose),var(--berry) 54%,var(--plum-700));
      box-shadow:0 12px 26px rgba(255,107,138,.32);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.15;
      min-width:0;
    }
    .brand-text strong{
      display:block;
      max-width:300px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      font-size:16px;
      letter-spacing:-.02em;
    }
    .brand-text small{
      font-size:12px;
      opacity:.74;
      margin-top:3px;
      color:inherit;
    }
    .site-nav{
      display:flex;
      align-items:center;
      gap:6px;
      margin-left:auto;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 15px;
      border-radius:999px;
      color:rgba(255,255,255,.86);
      font-weight:700;
      font-size:14px;
      white-space:nowrap;
    }
    .site-header.is-scrolled .nav-link{color:var(--plum-800)}
    .nav-link:hover{
      color:#fff;
      background:rgba(255,255,255,.14);
      transform:translateY(-1px);
    }
    .site-header.is-scrolled .nav-link:hover{
      color:var(--plum-700);
      background:rgba(166,66,122,.08);
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,var(--rose),var(--berry));
      box-shadow:0 12px 24px rgba(166,66,122,.28);
    }
    .site-header.is-scrolled .nav-link.active{color:#fff}
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .search-pill{
      width:210px;
      height:42px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.20);
      background:rgba(255,255,255,.13);
      color:#fff;
    }
    .site-header.is-scrolled .search-pill{
      background:#fff;
      color:var(--plum-800);
      border-color:var(--line);
    }
    .search-pill i{opacity:.75}
    .search-pill input{
      width:100%;
      border:0;
      background:transparent;
      box-shadow:none;
      color:inherit;
      height:38px;
      margin:0;
      padding:0;
      font-size:14px;
    }
    .search-pill input::placeholder{color:rgba(255,255,255,.64)}
    .site-header.is-scrolled .search-pill input::placeholder{color:rgba(37,25,35,.48)}
    .search-pill input:focus{box-shadow:none;background:transparent}
    .menu-toggle{
      display:none;
      border:0;
      width:44px;
      height:44px;
      border-radius:50%;
      background:rgba(255,255,255,.14);
      color:#fff;
      cursor:pointer;
    }
    .site-header.is-scrolled .menu-toggle{
      background:rgba(166,66,122,.08);
      color:var(--plum-700);
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      line-height:1;
      cursor:pointer;
      transition:transform var(--ease),box-shadow var(--ease),background var(--ease),border-color var(--ease),color var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--rose),var(--berry) 56%,var(--plum-700));
      box-shadow:0 16px 34px rgba(166,66,122,.30);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 22px 46px rgba(166,66,122,.38);
    }
    .btn-secondary{
      color:var(--plum-700);
      background:rgba(255,255,255,.72);
      border-color:var(--line);
    }
    .btn-secondary:hover{
      color:var(--plum-700);
      background:#fff;
      transform:translateY(-2px);
      box-shadow:var(--shadow-sm);
    }
    .btn-ghost{
      color:#fff;
      background:rgba(255,255,255,.13);
      border-color:rgba(255,255,255,.22);
    }
    .btn-ghost:hover{
      color:#fff;
      background:rgba(255,255,255,.20);
      transform:translateY(-2px);
    }

    .mobile-menu{
      display:none;
      margin-top:10px;
      padding:16px;
      border-radius:24px;
      background:rgba(255,249,251,.98);
      border:1px solid var(--line);
      box-shadow:var(--shadow-md);
    }
    .mobile-menu.is-open{display:block}
    .mobile-menu a{
      display:flex;
      padding:13px 14px;
      border-radius:16px;
      font-weight:800;
      color:var(--plum-800);
    }
    .mobile-menu a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--rose),var(--berry));
    }

    .category-hero{
      position:relative;
      z-index:1;
      padding:150px 0 92px;
    }
    .hero-layout{
      display:grid;
      grid-template-columns:minmax(0,1.1fr) 360px;
      gap:36px;
      align-items:center;
    }
    .breadcrumb{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:10px;
      margin:18px 0 22px;
      font-size:14px;
      color:rgba(255,255,255,.72);
    }
    .breadcrumb a{color:rgba(255,255,255,.78);font-weight:700}
    .breadcrumb a:hover{color:#fff}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .privacy-cover{
      min-height:420px;
      position:relative;
      padding:26px;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(145deg,rgba(255,255,255,.18),rgba(255,255,255,.06)),
        radial-gradient(circle at 20% 20%,rgba(255,107,138,.28),transparent 32%),
        radial-gradient(circle at 80% 70%,rgba(232,217,181,.20),transparent 28%);
      border:1px solid rgba(255,255,255,.24);
      box-shadow:var(--shadow-lg);
      backdrop-filter:blur(18px);
      overflow:hidden;
    }
    .privacy-cover::before{
      content:"";
      position:absolute;
      inset:24px;
      border-radius:28px;
      border:1px dashed rgba(255,255,255,.24);
      pointer-events:none;
    }
    .cover-visual{
      position:absolute;
      inset:76px 34px 122px;
      border-radius:30px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.28),rgba(255,255,255,.06)),
        repeating-linear-gradient(45deg,rgba(255,255,255,.12) 0 10px,rgba(255,255,255,.03) 10px 20px);
      overflow:hidden;
    }
    .cover-visual::after{
      content:"";
      position:absolute;
      width:180px;
      height:180px;
      border-radius:50%;
      right:-42px;
      bottom:-46px;
      background:linear-gradient(135deg,var(--rose),var(--champagne));
      opacity:.78;
      filter:blur(.2px);
    }
    .cover-row{
      position:relative;
      z-index:2;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .cover-title{
      position:absolute;
      left:26px;
      right:26px;
      bottom:28px;
      z-index:2;
    }
    .cover-title strong{
      display:block;
      color:#fff;
      font-size:24px;
      line-height:1.25;
      letter-spacing:-.02em;
      margin-bottom:8px;
    }
    .cover-title span{color:rgba(255,255,255,.72);font-size:14px}
    .side-metrics{
      display:grid;
      gap:12px;
      margin-top:18px;
    }
    .metric-chip{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:14px 16px;
      border-radius:20px;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.20);
      color:#fff;
    }
    .metric-chip b{font-size:22px;line-height:1}
    .metric-chip span{font-size:13px;color:rgba(255,255,255,.70)}

    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(166,66,122,.10);
      color:var(--plum-700);
      font-size:13px;
      font-weight:800;
      border:1px solid var(--line);
    }
    .badge.light{
      color:#fff;
      background:rgba(255,255,255,.13);
      border-color:rgba(255,255,255,.20);
    }
    .badge.mint{
      color:#244a41;
      background:rgba(191,216,207,.70);
      border-color:rgba(36,74,65,.10);
    }
    .tagbar{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:26px;
    }
    .tagbar a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:42px;
      padding:0 16px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--plum-800);
      font-weight:800;
      box-shadow:0 8px 18px rgba(91,30,69,.06);
    }
    .tagbar a:hover,
    .tagbar a.active{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(135deg,var(--rose),var(--berry));
      transform:translateY(-2px);
      box-shadow:0 14px 30px rgba(166,66,122,.20);
    }

    .summary-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:stretch;
    }
    .summary-card,
    .card{
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.78);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      backdrop-filter:blur(10px);
    }
    .summary-card{
      padding:30px;
      position:relative;
      overflow:hidden;
    }
    .summary-card::after{
      content:"";
      position:absolute;
      width:240px;
      height:240px;
      right:-90px;
      top:-100px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,107,138,.18),transparent 68%);
    }
    .summary-card p{font-size:17px}
    .quick-list{
      display:grid;
      gap:14px;
    }
    .quick-item{
      display:flex;
      align-items:flex-start;
      gap:14px;
      padding:18px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 22px rgba(91,30,69,.07);
    }
    .quick-icon{
      width:42px;height:42px;border-radius:16px;
      display:grid;place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--rose),var(--berry));
      flex:0 0 auto;
      box-shadow:0 10px 18px rgba(166,66,122,.20);
    }
    .quick-item h3{font-size:18px;margin-bottom:4px}
    .quick-item p{font-size:14px;margin-bottom:0}

    .magazine-grid{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:22px;
      align-items:stretch;
    }
    .mag-card{
      position:relative;
      overflow:hidden;
      min-height:260px;
      padding:24px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease);
    }
    .mag-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-md);
      border-color:rgba(166,66,122,.32);
    }
    .mag-card.wide{grid-column:span 7;min-height:340px}
    .mag-card.tall{grid-column:span 5;min-height:420px}
    .mag-card.small{grid-column:span 4}
    .mag-card.mid{grid-column:span 6}
    .mag-cover{
      height:132px;
      margin:-4px -4px 18px;
      border-radius:22px;
      background:
        radial-gradient(circle at 25% 30%,rgba(255,255,255,.88),transparent 10%),
        linear-gradient(135deg,rgba(255,107,138,.72),rgba(166,66,122,.78)),
        repeating-linear-gradient(90deg,rgba(255,255,255,.16) 0 12px,transparent 12px 24px);
      position:relative;
      overflow:hidden;
    }
    .mag-card.wide .mag-cover{height:170px}
    .mag-card.tall .mag-cover{height:220px}
    .mag-cover::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,transparent,rgba(21,16,23,.18));
      transition:opacity var(--ease);
    }
    .mag-card:hover .mag-cover::after{opacity:.65}
    .mag-card h3{font-size:21px}
    .mag-card p{font-size:15px;margin-bottom:18px}
    .card-meta{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:12px;
    }
    .card-action{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-top:auto;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      font-weight:850;
      color:var(--plum-700);
    }
    .text-link i{transition:transform var(--ease)}
    .text-link:hover i{transform:translateX(3px)}

    .scroll-row{
      display:flex;
      gap:18px;
      overflow-x:auto;
      padding:6px 2px 18px;
      scroll-snap-type:x mandatory;
      scrollbar-color:rgba(166,66,122,.35) transparent;
    }
    .feature-card{
      flex:0 0 360px;
      scroll-snap-align:start;
      padding:24px;
      border-radius:var(--radius-lg);
      background:
        linear-gradient(180deg,#fff,rgba(255,255,255,.76));
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:transform var(--ease),box-shadow var(--ease);
    }
    .feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
    .feature-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:16px;
    }
    .feature-num{
      font-size:34px;
      line-height:1;
      font-weight:900;
      color:rgba(166,66,122,.20);
    }

    .rule-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:24px;
    }
    .rule-card{
      padding:30px;
      border-radius:var(--radius-xl);
      background:rgba(255,255,255,.78);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      position:relative;
      overflow:hidden;
    }
    .rule-card.dark{
      color:#fff;
      background:
        radial-gradient(circle at 88% 10%,rgba(255,107,138,.30),transparent 32%),
        linear-gradient(135deg,var(--plum-900),var(--plum-700));
      border-color:rgba(255,255,255,.16);
    }
    .rule-card.dark p{color:rgba(255,255,255,.74)}
    .rule-list{
      list-style:none;
      padding:0;
      margin:20px 0 0;
      display:grid;
      gap:12px;
    }
    .rule-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
    }
    .rule-card.dark .rule-list li{color:rgba(255,255,255,.78)}
    .rule-list i{
      margin-top:5px;
      color:var(--rose);
    }

    .proof-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      padding:18px;
      border-radius:var(--radius-xl);
      background:rgba(255,255,255,.66);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .proof-item{
      padding:18px;
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(122,46,98,.10);
    }
    .proof-item i{
      color:var(--berry);
      font-size:22px;
      margin-bottom:10px;
    }
    .proof-item strong{display:block;font-size:17px;color:var(--text)}
    .proof-item span{display:block;margin-top:5px;font-size:13px;color:var(--muted);line-height:1.55}

    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:22px;
      overflow:hidden;
      border:1px solid var(--line);
      background:rgba(255,255,255,.82);
      box-shadow:0 10px 22px rgba(91,30,69,.07);
    }
    .accordion-title{
      border:0 !important;
      color:var(--plum-800);
      font-weight:850;
      font-size:16px;
      padding:20px 54px 20px 22px;
      background:transparent;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(166,66,122,.06);
      color:var(--plum-700);
    }
    .accordion-title::before{color:var(--berry);font-weight:900}
    .accordion-content{
      border:0 !important;
      padding:0 22px 22px;
      background:transparent;
      color:var(--muted);
      line-height:1.8;
    }
    .is-active>.accordion-title{
      background:linear-gradient(90deg,rgba(255,107,138,.12),rgba(166,66,122,.05));
    }

    .feedback-wrap{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:26px;
      align-items:stretch;
    }
    .feedback-card{
      padding:30px;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .form-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    label{
      display:block;
      color:var(--plum-800);
      font-weight:800;
      font-size:14px;
      margin-bottom:8px;
    }
    input[type="text"],input[type="email"],select,textarea{
      width:100%;
      border:1px solid var(--line);
      border-radius:18px;
      background:#fff9fb;
      color:var(--text);
      box-shadow:none;
      padding:13px 14px;
      margin-bottom:16px;
      min-height:48px;
      transition:border-color var(--ease),box-shadow var(--ease),background var(--ease);
    }
    textarea{min-height:126px;resize:vertical}
    input:focus,select:focus,textarea:focus{
      border-color:rgba(166,66,122,.44);
      box-shadow:0 0 0 4px rgba(255,107,138,.14);
      background:#fff;
    }
    .form-note{
      font-size:13px;
      color:var(--muted);
      margin-bottom:16px;
    }

    .cta-band{
      position:relative;
      overflow:hidden;
      padding:38px;
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 92% 8%,rgba(232,217,181,.28),transparent 26%),
        linear-gradient(135deg,var(--plum-900),var(--plum-700) 58%,var(--berry));
      color:#fff;
      box-shadow:var(--shadow-lg);
    }
    .cta-band::after{
      content:"";
      position:absolute;
      width:300px;height:300px;border-radius:50%;
      right:-100px;bottom:-150px;
      background:rgba(255,255,255,.12);
    }
    .cta-content{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .cta-band h2{margin-bottom:8px}
    .cta-band p{color:rgba(255,255,255,.74);max-width:680px;margin-bottom:0}

    .footer{
      padding:72px 0 28px;
      background:
        radial-gradient(circle at 12% 0%,rgba(255,107,138,.20),transparent 30%),
        linear-gradient(135deg,#151017,#2A1728 55%,#451f39);
      color:rgba(255,255,255,.78);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .75fr .75fr .75fr;
      gap:34px;
      margin-bottom:40px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      margin-bottom:18px;
    }
    .footer-brand:hover{color:#fff;transform:translateY(-1px)}
    .footer p{
      color:rgba(255,255,255,.64);
      margin-bottom:0;
      max-width:420px;
    }
    .footer h3{
      color:#fff;
      font-size:16px;
      margin-bottom:14px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(255,255,255,.66);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      text-decoration:underline;
      text-underline-offset:4px;
    }
    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.58);
      font-size:14px;
    }

    @media (max-width:1120px){
      .search-pill{display:none}
      .hero-layout{grid-template-columns:1fr;gap:26px}
      .privacy-cover{max-width:620px}
      .mag-card.wide,.mag-card.tall,.mag-card.mid{grid-column:span 6}
      .mag-card.small{grid-column:span 6}
      .proof-strip{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:900px){
      .site-nav,.nav-actions .btn{display:none}
      .menu-toggle{display:grid;place-items:center}
      .brand-text strong{max-width:230px}
      .summary-grid,.rule-grid,.feedback-wrap{grid-template-columns:1fr}
      .section-head{display:block}
      .section-head p{margin-top:10px}
      .cta-content{display:block}
      .cta-content .hero-actions{margin-top:22px}
    }
    @media (max-width:720px){
      .grid-container{padding-left:18px;padding-right:18px}
      .site-header{top:10px}
      .nav-wrap{padding:0 12px}
      .nav-panel{min-height:64px;border-radius:26px;padding:10px 12px}
      .brand-mark{width:38px;height:38px}
      .brand-text strong{max-width:178px;font-size:14px}
      .brand-text small{display:none}
      .category-hero{padding:120px 0 70px}
      .lead{font-size:16px}
      .hero-actions{flex-direction:column}
      .hero-actions .btn{width:100%}
      .privacy-cover{min-height:360px;padding:20px;border-radius:28px}
      .cover-visual{inset:66px 24px 116px}
      .metric-chip b{font-size:19px}
      .section{padding:66px 0}
      .section-tight{padding:50px 0}
      .summary-card,.feedback-card,.rule-card,.cta-band{padding:24px}
      .magazine-grid{grid-template-columns:1fr}
      .mag-card.wide,.mag-card.tall,.mag-card.mid,.mag-card.small{grid-column:auto;min-height:auto}
      .mag-card.tall .mag-cover,.mag-card.wide .mag-cover,.mag-cover{height:150px}
      .feature-card{flex-basis:82vw}
      .form-row{grid-template-columns:1fr;gap:0}
      .proof-strip{grid-template-columns:1fr}
      .footer{padding-top:56px}
      .footer-grid{grid-template-columns:1fr;gap:26px}
      .footer-bottom{display:block}
      .footer-bottom div+div{margin-top:8px}
    }
    @media (max-width:480px){
      h1{font-size:32px}
      h2{font-size:25px}
      .tagbar{overflow-x:auto;flex-wrap:nowrap;padding-bottom:8px}
      .tagbar a{flex:0 0 auto}
      .quick-item{padding:16px}
      .cta-band{border-radius:26px}
    }
