/* roulang page: index */
:root{
      --bg: #faf5f5;
      --bg-2: #f4ecee;
      --surface: rgba(255,255,255,.82);
      --surface-strong: #ffffff;
      --surface-dark: #2a1821;
      --surface-dark-2: #381f2b;
      --text: #24131a;
      --muted: #705865;
      --muted-2: #9b8790;
      --border: rgba(124,35,70,.12);
      --border-strong: rgba(124,35,70,.2);
      --brand-1: #6e2342;
      --brand-2: #9f2f65;
      --brand-3: #c64a8d;
      --brand-4: #7f4cff;
      --mint: #2bc4ad;
      --mint-soft: rgba(43,196,173,.14);
      --shadow-sm: 0 8px 24px rgba(55, 24, 35, .06);
      --shadow-md: 0 18px 50px rgba(55, 24, 35, .10);
      --shadow-lg: 0 28px 80px rgba(55, 24, 35, .16);
      --radius-sm: 16px;
      --radius-md: 22px;
      --radius-lg: 28px;
      --radius-xl: 36px;
      --transition: all .24s ease;
      --container: 1240px;
    }

    *{ box-sizing: border-box; }
    html{ scroll-behavior: smooth; }
    body{
      margin:0;
      color:var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "Heiti SC", system-ui, sans-serif;
      line-height:1.7;
      background:
        radial-gradient(circle at 10% 15%, rgba(198,74,141,.10), transparent 26%),
        radial-gradient(circle at 90% 12%, rgba(127,76,255,.10), transparent 22%),
        radial-gradient(circle at 76% 90%, rgba(43,196,173,.08), transparent 26%),
        linear-gradient(180deg, #fffdfd 0%, var(--bg) 42%, #f8f0f2 100%);
      min-height:100vh;
      overflow-x:hidden;
    }

    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.42;
      background-image:
        linear-gradient(rgba(124,35,70,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,35,70,.03) 1px, transparent 1px);
      background-size: 22px 22px;
      mask-image: radial-gradient(circle at center, black 58%, transparent 100%);
      z-index:0;
    }

    a{
      color:inherit;
      text-decoration:none;
      transition:var(--transition);
    }
    a:hover{ color:inherit; }
    img{ max-width:100%; display:block; }
    button, input, select, textarea{
      font:inherit;
    }
    ::selection{
      background: rgba(198,74,141,.18);
      color: var(--text);
    }

    .site-wrap{
      position:relative;
      z-index:1;
    }

    .container-fluid-max{
      max-width: var(--container);
      margin-inline:auto;
      padding-inline: 18px;
    }

    .top-announcement{
      position: relative;
      z-index: 3;
      background: linear-gradient(90deg, rgba(110,35,66,.96), rgba(159,47,101,.95), rgba(127,76,255,.92));
      color:#fff;
      padding: 10px 0;
      font-size: .92rem;
      box-shadow: 0 8px 28px rgba(55,24,35,.12);
    }
    .top-announcement .badge{
      background: rgba(255,255,255,.14);
      color:#fff;
      border:1px solid rgba(255,255,255,.16);
      border-radius: 999px;
      padding: .42rem .78rem;
      font-weight: 600;
      letter-spacing:.01em;
    }

    .site-header{
      position: sticky;
      top:0;
      z-index: 1030;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      background: rgba(250,245,245,.78);
      border-bottom: 1px solid rgba(124,35,70,.08);
      transition: var(--transition);
    }
    .site-header.is-scrolled{
      background: rgba(250,245,245,.92);
      box-shadow: 0 12px 34px rgba(55,24,35,.07);
      border-bottom-color: rgba(124,35,70,.12);
    }

    .navbar{
      padding: 14px 0;
    }

    .navbar-brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      padding:0;
    }
    .brand-mark{
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.32), transparent 28%),
        linear-gradient(135deg, var(--brand-1), var(--brand-2) 52%, var(--brand-4));
      color:#fff;
      display:grid;
      place-items:center;
      box-shadow: 0 14px 32px rgba(124,35,70,.26);
      flex: none;
      font-size: 1.05rem;
    }
    .brand-copy{
      min-width:0;
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brand-title{
      font-size: 1.02rem;
      font-weight: 800;
      letter-spacing: .01em;
      color: var(--text);
      white-space: nowrap;
      overflow:hidden;
      text-overflow: ellipsis;
    }
    .brand-sub{
      font-size: .78rem;
      color: var(--muted);
      margin-top: 3px;
      white-space: nowrap;
      overflow:hidden;
      text-overflow: ellipsis;
    }

    .nav-shell{
      display:flex;
      align-items:center;
      gap: 14px;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap: 8px;
    }
    .nav-link-pill{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: .72rem 1rem;
      border-radius: 999px;
      color: var(--muted);
      font-weight: 700;
      font-size: .94rem;
      border: 1px solid transparent;
    }
    .nav-link-pill:hover{
      background: rgba(255,255,255,.7);
      color: var(--brand-1);
      border-color: rgba(124,35,70,.10);
      box-shadow: 0 8px 22px rgba(55,24,35,.06);
    }
    .nav-link-pill.active{
      background: linear-gradient(135deg, rgba(110,35,66,.12), rgba(198,74,141,.14));
      color: var(--brand-1);
      border-color: rgba(124,35,70,.12);
      box-shadow: inset 0 0 0 1px rgba(124,35,70,.06);
    }

    .nav-status{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: .58rem .9rem;
      border-radius: 999px;
      background: rgba(43,196,173,.10);
      color: #15806f;
      border: 1px solid rgba(43,196,173,.16);
      font-size: .85rem;
      font-weight: 700;
      white-space: nowrap;
    }
    .dot-live{
      width:8px;
      height:8px;
      border-radius:50%;
      background: var(--mint);
      box-shadow: 0 0 0 5px rgba(43,196,173,.16);
      flex:none;
    }

    .btn{
      border-radius: 999px;
      padding: .82rem 1.15rem;
      font-weight: 700;
      transition: var(--transition);
      border: 1px solid transparent;
      box-shadow: none;
    }
    .btn:focus,
    .btn:active{
      box-shadow: none !important;
    }
    .btn:focus-visible,
    .nav-link-pill:focus-visible,
    .form-control:focus,
    .form-select:focus,
    .accordion-button:focus{
      outline: none;
      box-shadow: 0 0 0 .22rem rgba(198,74,141,.18) !important;
      border-color: rgba(198,74,141,.54) !important;
    }

    .btn-brand{
      color:#fff;
      background: linear-gradient(135deg, var(--brand-1), var(--brand-2) 52%, var(--brand-4));
      border-color: rgba(255,255,255,.04);
      box-shadow: 0 14px 26px rgba(124,35,70,.22);
    }
    .btn-brand:hover{
      color:#fff;
      transform: translateY(-1px);
      box-shadow: 0 18px 34px rgba(124,35,70,.28);
    }
    .btn-outline-brand{
      color: var(--brand-1);
      background: rgba(255,255,255,.6);
      border-color: rgba(124,35,70,.16);
    }
    .btn-outline-brand:hover{
      color: var(--brand-1);
      background: rgba(110,35,66,.06);
      border-color: rgba(124,35,70,.22);
      transform: translateY(-1px);
    }

    .hero{
      position:relative;
      padding: 28px 0 14px;
    }
    .hero-shell{
      position:relative;
      padding: 18px;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 10% 10%, rgba(198,74,141,.18), transparent 24%),
        radial-gradient(circle at 85% 15%, rgba(127,76,255,.16), transparent 22%),
        linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,248,250,.88));
      border: 1px solid rgba(124,35,70,.08);
      box-shadow: var(--shadow-lg);
      overflow:hidden;
    }
    .hero-shell::after{
      content:"";
      position:absolute;
      inset:auto -16% -26% auto;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(198,74,141,.18), transparent 62%);
      filter: blur(2px);
      pointer-events:none;
    }

    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: .46rem .85rem;
      border-radius: 999px;
      background: rgba(110,35,66,.08);
      color: var(--brand-1);
      border: 1px solid rgba(124,35,70,.10);
      font-weight: 800;
      font-size: .88rem;
      margin-bottom: 14px;
    }

    .hero-title{
      font-size: clamp(2.1rem, 5vw, 4.25rem);
      line-height: 1.1;
      letter-spacing: -.03em;
      font-weight: 900;
      margin-bottom: 16px;
      max-width: 12ch;
    }
    .hero-title .grad{
      background: linear-gradient(135deg, var(--brand-1), var(--brand-3) 60%, var(--brand-4));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    .hero-copy{
      color: var(--muted);
      font-size: 1.03rem;
      max-width: 56ch;
      margin-bottom: 22px;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap: 12px;
      align-items:center;
      margin-bottom: 20px;
    }

    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
    }
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: .58rem .84rem;
      border-radius: 999px;
      background: rgba(255,255,255,.8);
      border: 1px solid rgba(124,35,70,.10);
      color: var(--text);
      box-shadow: 0 10px 18px rgba(55,24,35,.04);
      font-size: .9rem;
      font-weight: 700;
    }
    .badge-soft i{ color: var(--brand-2); }

    .hero-panel{
      position:relative;
      min-height: 100%;
      border-radius: 30px;
      padding: 22px;
      background:
        linear-gradient(160deg, rgba(110,35,66,.98), rgba(159,47,101,.94) 50%, rgba(127,76,255,.92));
      color: #fff;
      overflow:hidden;
      box-shadow: 0 22px 55px rgba(124,35,70,.24);
    }
    .hero-panel::before,
    .hero-panel::after{
      content:"";
      position:absolute;
      border-radius:50%;
      filter: blur(2px);
      pointer-events:none;
    }
    .hero-panel::before{
      width: 210px;
      height: 210px;
      background: radial-gradient(circle, rgba(255,255,255,.16), transparent 68%);
      top:-45px;
      right:-35px;
    }
    .hero-panel::after{
      width: 160px;
      height: 160px;
      background: radial-gradient(circle, rgba(43,196,173,.20), transparent 68%);
      bottom:-40px;
      left:-35px;
    }

    .panel-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      margin-bottom: 16px;
      position:relative;
      z-index:1;
    }
    .panel-mini{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: .38rem .7rem;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.14);
      font-size:.82rem;
      font-weight:700;
    }
    .panel-mini .point{
      width:7px;
      height:7px;
      border-radius:50%;
      background: #fff;
      opacity:.9;
    }

    .visual-core{
      position:relative;
      z-index:1;
      min-height: 290px;
      border-radius: 28px;
      padding: 18px;
      background:
        radial-gradient(circle at 18% 20%, rgba(255,255,255,.22), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(255,255,255,.12), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
      border: 1px solid rgba(255,255,255,.14);
      overflow:hidden;
    }
    .floating-orb{
      position:absolute;
      border-radius:50%;
      filter: blur(1px);
      opacity:.95;
    }
    .orb-1{
      width:110px;
      height:110px;
      background: radial-gradient(circle, rgba(255,255,255,.36), rgba(255,255,255,.04) 68%);
      top:20px;
      right:12px;
    }
    .orb-2{
      width:74px;
      height:74px;
      background: radial-gradient(circle, rgba(43,196,173,.36), rgba(43,196,173,.04) 70%);
      bottom:34px;
      left:18px;
    }
    .orb-3{
      width:54px;
      height:54px;
      background: radial-gradient(circle, rgba(255,255,255,.24), rgba(255,255,255,.01) 72%);
      top:110px;
      left:38%;
    }

    .metric-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
      position:relative;
      z-index:1;
      margin-top: 6px;
    }
    .metric-card{
      padding: 14px 14px 13px;
      border-radius: 20px;
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.15);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
      backdrop-filter: blur(6px);
      min-height: 100px;
    }
    .metric-value{
      font-size: 1.65rem;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.03em;
      margin-bottom: 8px;
      color:#fff;
    }
    .metric-label{
      font-size: .9rem;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .metric-note{
      font-size: .8rem;
      color: rgba(255,255,255,.82);
      line-height: 1.45;
    }

    .section{
      padding: 26px 0;
      position:relative;
    }
    .section-title-wrap{
      margin-bottom: 18px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: .38rem .74rem;
      border-radius:999px;
      background: rgba(110,35,66,.08);
      border: 1px solid rgba(124,35,70,.10);
      color: var(--brand-1);
      font-weight: 800;
      font-size: .84rem;
      margin-bottom: 10px;
    }
    .section-title{
      font-size: clamp(1.45rem, 3vw, 2.2rem);
      font-weight: 900;
      line-height: 1.18;
      letter-spacing: -.02em;
      margin-bottom: 8px;
    }
    .section-desc{
      color: var(--muted);
      max-width: 66ch;
      margin:0;
    }

    .dash-grid{
      display:grid;
      grid-template-columns: repeat(12, minmax(0,1fr));
      gap: 16px;
    }
    .dash-card{
      grid-column: span 3;
      padding: 18px;
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.78);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      min-height: 150px;
    }
    .dash-card:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--border-strong);
    }
    .dash-card .icon-box{
      width:46px;
      height:46px;
      border-radius: 15px;
      display:grid;
      place-items:center;
      color:#fff;
      background: linear-gradient(135deg, var(--brand-1), var(--brand-3));
      box-shadow: 0 12px 24px rgba(124,35,70,.22);
      margin-bottom: 14px;
    }
    .dash-value{
      font-size: 1.8rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: -.03em;
    }
    .dash-label{
      font-weight: 800;
      margin-bottom: 5px;
    }
    .dash-note{
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.55;
    }

    .feature-card{
      height: 100%;
      padding: 20px;
      border-radius: var(--radius-md);
      background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,250,251,.86));
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
      overflow:hidden;
    }
    .feature-card:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--border-strong);
    }
    .feature-card.big{
      min-height: 100%;
      background:
        radial-gradient(circle at 15% 18%, rgba(198,74,141,.14), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,249,251,.94));
    }
    .feature-badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding: .35rem .68rem;
      border-radius: 999px;
      background: rgba(110,35,66,.08);
      color: var(--brand-1);
      font-size: .8rem;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .feature-title{
      font-size: 1.2rem;
      font-weight: 900;
      line-height: 1.3;
      margin-bottom: 10px;
      letter-spacing: -.02em;
    }
    .feature-text{
      color: var(--muted);
      margin-bottom: 14px;
    }
    .feature-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap: 10px;
    }
    .feature-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color: var(--text);
      font-size: .95rem;
    }
    .feature-list i{
      color: var(--mint);
      margin-top: 4px;
      flex:none;
    }

    .mosaic{
      display:grid;
      grid-template-columns: repeat(12, minmax(0,1fr));
      gap: 16px;
    }
    .mosaic .m-card:nth-child(1){ grid-column: span 5; }
    .mosaic .m-card:nth-child(2){ grid-column: span 4; }
    .mosaic .m-card:nth-child(3){ grid-column: span 3; }
    .mosaic .m-card:nth-child(4){ grid-column: span 4; }
    .mosaic .m-card:nth-child(5){ grid-column: span 4; }
    .mosaic .m-card:nth-child(6){ grid-column: span 4; }

    .m-card{
      padding: 20px;
      border-radius: var(--radius-md);
      background: var(--surface-strong);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      min-height: 190px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
      overflow:hidden;
    }
    .m-card:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--border-strong);
    }
    .m-card.highlight{
      background:
        linear-gradient(160deg, rgba(110,35,66,.98), rgba(159,47,101,.95) 55%, rgba(127,76,255,.9));
      color:#fff;
      border-color: rgba(255,255,255,.08);
    }
    .m-card.highlight .feature-text,
    .m-card.highlight .mini-list li,
    .m-card.highlight .muted-spot{
      color: rgba(255,255,255,.86);
    }
    .m-card .card-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom: 12px;
    }
    .m-card .round-icon{
      width:46px;
      height:46px;
      border-radius: 16px;
      display:grid;
      place-items:center;
      background: linear-gradient(135deg, rgba(110,35,66,.12), rgba(198,74,141,.18));
      color: var(--brand-1);
      flex:none;
    }
    .m-card.highlight .round-icon{
      background: rgba(255,255,255,.14);
      color:#fff;
    }
    .m-card .mini-list{
      list-style:none;
      padding:0;
      margin: 0;
      display:grid;
      gap: 8px;
    }
    .m-card .mini-list li{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:.92rem;
      color: var(--muted);
    }
    .m-card .mini-list i{ color: var(--mint); }
    .m-card .mini-action{
      margin-top: 16px;
    }

    .compare-wrap{
      display:grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 16px;
      align-items:stretch;
    }
    .compare-card{
      padding: 22px;
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.82);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .compare-card.good{
      background: linear-gradient(180deg, rgba(43,196,173,.10), rgba(255,255,255,.9));
      border-color: rgba(43,196,173,.16);
    }
    .compare-card.bad{
      background: linear-gradient(180deg, rgba(198,74,141,.10), rgba(255,255,255,.9));
      border-color: rgba(198,74,141,.14);
    }
    .compare-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom: 12px;
    }
    .compare-name{
      font-size:1.05rem;
      font-weight:900;
      margin:0;
    }
    .compare-score{
      padding:.28rem .65rem;
      border-radius:999px;
      font-size:.78rem;
      font-weight:800;
      background: rgba(110,35,66,.08);
      color: var(--brand-1);
    }
    .compare-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:12px;
    }
    .compare-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color: var(--text);
    }
    .compare-list i{
      margin-top: 4px;
      flex:none;
    }
    .compare-list .ok{ color: #14997d; }
    .compare-list .no{ color: #d14571; }

    .compare-divider{
      display:grid;
      place-items:center;
      color: var(--brand-1);
      font-size: 1.35rem;
      font-weight: 900;
    }
    .compare-divider .stack{
      width:58px;
      height:58px;
      border-radius:50%;
      background: linear-gradient(135deg, rgba(110,35,66,.12), rgba(127,76,255,.16));
      display:grid;
      place-items:center;
      border: 1px solid rgba(124,35,70,.12);
      box-shadow: var(--shadow-sm);
    }

    .accordion-shell{
      border-radius: var(--radius-md);
      overflow:hidden;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.88);
      box-shadow: var(--shadow-sm);
    }
    .accordion-item{
      border:0;
      border-bottom: 1px solid rgba(124,35,70,.08);
      background: transparent;
    }
    .accordion-item:last-child{ border-bottom:0; }
    .accordion-button{
      background: transparent;
      color: var(--text);
      font-weight: 800;
      box-shadow:none !important;
      padding: 18px 20px;
      border-radius:0 !important;
    }
    .accordion-button:not(.collapsed){
      color: var(--brand-1);
      background: rgba(110,35,66,.05);
    }
    .accordion-button::after{
      filter: hue-rotate(300deg) saturate(0.9);
      opacity: .75;
    }
    .accordion-body{
      padding: 0 20px 18px 20px;
      color: var(--muted);
    }

    .cta-section{
      padding: 26px 0 34px;
    }
    .cta-shell{
      border-radius: var(--radius-xl);
      overflow:hidden;
      background:
        radial-gradient(circle at 10% 20%, rgba(198,74,141,.18), transparent 25%),
        radial-gradient(circle at 90% 10%, rgba(127,76,255,.18), transparent 22%),
        linear-gradient(135deg, #fff, #fff8fb);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
    }
    .cta-left{
      padding: 28px;
    }
    .cta-right{
      padding: 28px;
      background: linear-gradient(180deg, rgba(110,35,66,.98), rgba(159,47,101,.95) 55%, rgba(127,76,255,.92));
      color:#fff;
      height:100%;
    }
    .cta-title{
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      line-height:1.18;
      font-weight: 900;
      letter-spacing:-.02em;
      margin-bottom: 10px;
    }
    .cta-text{
      color: var(--muted);
      margin-bottom: 18px;
      max-width: 58ch;
    }

    .form-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
    }
    .form-floating > .form-control,
    .form-floating > .form-select{
      height: 60px;
      padding-top: 1.55rem;
      padding-bottom: .9rem;
    }
    .form-floating > label{
      color: var(--muted);
      padding-left: 1rem;
    }
    .form-control,
    .form-select{
      border-radius: 16px;
      border: 1px solid rgba(124,35,70,.14);
      background: rgba(255,255,255,.96);
      color: var(--text);
      box-shadow:none;
    }
    .form-control::placeholder{
      color: #a58b96;
    }

    .promise-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .promise-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color: rgba(255,255,255,.92);
      line-height:1.55;
    }
    .promise-list i{
      color: #bfeee7;
      margin-top: 5px;
      flex:none;
    }

    .site-footer{
      padding: 28px 0 34px;
      color: var(--muted);
    }
    .footer-shell{
      border-top: 1px solid rgba(124,35,70,.10);
      padding-top: 24px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom: 10px;
    }
    .footer-title{
      font-size: 1rem;
      font-weight: 900;
      color: var(--text);
    }
    .footer-desc{
      max-width: 48ch;
      margin-bottom: 14px;
      color: var(--muted);
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap: 12px 16px;
    }
    .footer-links a{
      color: var(--muted);
      font-weight:700;
    }
    .footer-links a:hover{
      color: var(--brand-1);
    }
    .footer-meta{
      font-size:.88rem;
      color: var(--muted-2);
      line-height:1.7;
    }
    .footer-note{
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px dashed rgba(124,35,70,.10);
      font-size: .84rem;
      color: var(--muted-2);
    }

    .offcanvas{
      background: rgba(250,245,245,.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .offcanvas-header{
      border-bottom: 1px solid rgba(124,35,70,.08);
    }
    .offcanvas-title{
      font-weight: 900;
    }
    .mobile-menu-link{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding: .95rem 0;
      border-bottom: 1px solid rgba(124,35,70,.08);
      font-weight: 800;
      color: var(--text);
    }
    .mobile-menu-link:hover{
      color: var(--brand-1);
    }

    .sticky-cta{
      position: fixed;
      bottom: 16px;
      left: 16px;
      right: 16px;
      z-index: 1030;
      display:none;
    }
    .sticky-cta .btn{
      width:100%;
      border-radius: 18px;
      padding: 1rem 1.1rem;
    }

    .soft-divider{
      width:100%;
      height:1px;
      background: linear-gradient(90deg, transparent, rgba(124,35,70,.14), transparent);
      margin: 0;
    }

    @media (max-width: 1199.98px){
      .dash-card{ grid-column: span 4; }
      .mosaic .m-card:nth-child(1){ grid-column: span 12; }
      .mosaic .m-card:nth-child(2),
      .mosaic .m-card:nth-child(3),
      .mosaic .m-card:nth-child(4),
      .mosaic .m-card:nth-child(5),
      .mosaic .m-card:nth-child(6){ grid-column: span 6; }
    }

    @media (max-width: 991.98px){
      .hero-title{ max-width: 100%; }
      .compare-wrap{
        grid-template-columns: 1fr;
      }
      .compare-divider{
        display:none;
      }
      .dash-card{ grid-column: span 6; }
      .mosaic .m-card:nth-child(1),
      .mosaic .m-card:nth-child(2),
      .mosaic .m-card:nth-child(3),
      .mosaic .m-card:nth-child(4),
      .mosaic .m-card:nth-child(5),
      .mosaic .m-card:nth-child(6){ grid-column: span 12; }
      .cta-right{ border-top: 1px solid rgba(255,255,255,.12); }
    }

    @media (max-width: 767.98px){
      .top-announcement{
        font-size: .84rem;
        padding: 8px 0;
      }
      .navbar{
        padding: 12px 0;
      }
      .hero{
        padding-top: 18px;
      }
      .hero-shell{
        padding: 16px;
        border-radius: 26px;
      }
      .hero-panel{
        padding: 18px;
      }
      .visual-core{
        min-height: 250px;
      }
      .metric-grid{
        grid-template-columns: 1fr;
      }
      .dash-grid{
        gap: 12px;
      }
      .dash-card{
        grid-column: span 12;
      }
      .form-grid{
        grid-template-columns: 1fr;
      }
      .cta-left,
      .cta-right{
        padding: 22px;
      }
      .nav-shell .nav-links,
      .nav-shell .nav-status{
        display:none;
      }
      .sticky-cta{
        display:block;
      }
    }

    @media (max-width: 575.98px){
      .container-fluid-max{
        padding-inline: 14px;
      }
      .hero-title{
        font-size: clamp(1.9rem, 10vw, 2.6rem);
      }
      .hero-copy,
      .section-desc{
        font-size: .97rem;
      }
      .hero-actions{
        gap:10px;
      }
      .btn{
        width:100%;
        justify-content:center;
      }
      .hero-actions .btn{
        width: calc(50% - 5px);
      }
      .badge-soft{
        width:100%;
        justify-content:flex-start;
      }
      .m-card,
      .feature-card,
      .compare-card{
        border-radius: 20px;
      }
      .accordion-button{
        padding: 16px 16px;
      }
      .accordion-body{
        padding: 0 16px 16px 16px;
      }
    }

/* roulang page: category1 */
:root{
  --bg:#fff8fb;
  --bg-2:#fff1f6;
  --surface:#ffffff;
  --surface-2:#fff8fb;
  --text:#2b1b24;
  --muted:#7a5d69;
  --muted-2:#9c8190;
  --line:rgba(106,34,70,.14);
  --brand-1:#7f163f;
  --brand-2:#a2346a;
  --brand-3:#8a3df0;
  --brand-4:#ea6bb0;
  --accent:#2fb8c2;
  --accent-2:#87d8de;
  --shadow:0 14px 40px rgba(80,22,47,.10);
  --shadow-2:0 18px 44px rgba(80,22,47,.16);
  --shadow-soft:0 8px 24px rgba(80,22,47,.08);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;
  --transition:.28s cubic-bezier(.2,.7,.2,1);
  --container:1280px;
  --gap:24px;
}
*,
*::before,
*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
  line-height:1.7;
  background:
    radial-gradient(circle at top left, rgba(162,52,106,.10), transparent 34%),
    radial-gradient(circle at top right, rgba(138,61,240,.08), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(47,184,194,.07), transparent 20%),
    linear-gradient(180deg, #fffafc 0%, #fff5f8 44%, #fff9fb 100%);
  min-height:100vh;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.02), rgba(255,255,255,.02)),
    radial-gradient(rgba(120,44,86,.055) 1px, transparent 1px);
  background-size:auto, 18px 18px;
  opacity:.5;
  mix-blend-mode:multiply;
  z-index:-1;
}
a{color:inherit;text-decoration:none;transition:all var(--transition)}
a:hover{color:inherit}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}
::selection{background:rgba(162,52,106,.18);color:var(--text)}
.container-fluid-max{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}
.section-block{
  padding:28px 0;
}
.section-title{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:18px;
}
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(162,52,106,.08);
  color:var(--brand-1);
  font-size:.88rem;
  font-weight:700;
  letter-spacing:.02em;
}
.section-title h2{
  margin:0;
  font-size:clamp(1.4rem, 2vw, 2rem);
  line-height:1.15;
  font-weight:800;
  letter-spacing:-.02em;
}
.section-title p{
  margin:0;
  color:var(--muted);
  max-width:70ch;
}
.site-header{
  position:sticky;
  top:0;
  z-index:1030;
  background:rgba(255,248,251,.74);
  backdrop-filter:saturate(170%) blur(14px);
  border-bottom:1px solid rgba(126,22,63,.10);
  box-shadow:0 8px 24px rgba(85,21,48,.04);
  transition:all var(--transition);
}
.site-header.is-scrolled{
  background:rgba(255,248,251,.92);
  box-shadow:0 12px 28px rgba(85,21,48,.08);
}
.navbar{
  padding:14px 0;
}
.navbar-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-mark,
.footer-brand .brand-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg, var(--brand-1), var(--brand-2) 50%, var(--brand-3));
  box-shadow:0 10px 24px rgba(127,22,63,.24);
  flex:none;
}
.brand-mark i{font-size:1rem}
.brand-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.brand-title{
  font-size:1.02rem;
  font-weight:800;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-sub{
  font-size:.82rem;
  color:var(--muted);
  line-height:1.2;
  margin-top:2px;
}
.nav-shell{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.nav-link-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(127,22,63,.12);
  background:rgba(255,255,255,.78);
  color:var(--text);
  font-weight:700;
  font-size:.94rem;
  box-shadow:0 8px 20px rgba(70,18,40,.04);
}
.nav-link-pill:hover,
.nav-link-pill:focus-visible{
  transform:translateY(-1px);
  border-color:rgba(162,52,106,.24);
  box-shadow:0 12px 22px rgba(70,18,40,.08);
}
.nav-link-pill.active{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg, var(--brand-1), var(--brand-2) 50%, var(--brand-3));
  box-shadow:0 12px 24px rgba(127,22,63,.22);
}
.nav-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(47,184,194,.10);
  border:1px solid rgba(47,184,194,.18);
  color:#17656c;
  font-size:.92rem;
  font-weight:700;
  white-space:nowrap;
}
.dot-live{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(47,184,194,.12);
}
.btn-brand,
.btn-brand-outline,
.btn-soft{
  border-radius:999px;
  padding:.82rem 1.15rem;
  font-weight:800;
  transition:all var(--transition);
}
.btn-brand{
  color:#fff;
  border:0;
  background:linear-gradient(135deg, var(--brand-1), var(--brand-2) 48%, var(--brand-3));
  box-shadow:0 12px 24px rgba(127,22,63,.22);
}
.btn-brand:hover,
.btn-brand:focus-visible{
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 16px 30px rgba(127,22,63,.30);
}
.btn-brand:active{transform:translateY(0)}
.btn-brand-outline{
  color:var(--brand-1);
  border:1px solid rgba(127,22,63,.18);
  background:rgba(255,255,255,.82);
}
.btn-brand-outline:hover,
.btn-brand-outline:focus-visible{
  color:var(--brand-1);
  border-color:rgba(127,22,63,.28);
  box-shadow:0 10px 24px rgba(78,18,40,.08);
  transform:translateY(-1px);
}
.btn-soft{
  color:var(--text);
  border:1px solid rgba(127,22,63,.12);
  background:rgba(255,255,255,.76);
}
.btn-soft:hover{border-color:rgba(127,22,63,.22);transform:translateY(-1px)}
.btn:focus-visible,
.form-control:focus,
.form-select:focus{
  box-shadow:0 0 0 .22rem rgba(162,52,106,.18);
  border-color:rgba(162,52,106,.42);
}
.navbar-toggler{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(127,22,63,.12);
}
.navbar-toggler:focus-visible{
  outline:0;
  box-shadow:0 0 0 .22rem rgba(162,52,106,.18);
}
.navbar-toggler-icon{
  width:20px;
  height:20px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28127,22,63,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.hero-wrap{
  position:relative;
  padding:26px 0 10px;
}
.hero-shell,
.panel-shell,
.form-shell,
.footer-shell,
.section-shell{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(127,22,63,.10);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
}
.hero-shell{
  position:relative;
  overflow:hidden;
  padding:clamp(22px, 3vw, 34px);
}
.hero-shell::before,
.panel-shell::before,
.form-shell::before{
  content:"";
  position:absolute;
  inset:auto auto -90px -90px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(162,52,106,.18), rgba(162,52,106,0) 68%);
  pointer-events:none;
}
.hero-shell::after{
  content:"";
  position:absolute;
  right:-80px;
  top:-70px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(138,61,240,.16), rgba(138,61,240,0) 70%);
  pointer-events:none;
}
.breadcrumb-custom{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  font-size:.92rem;
  color:var(--muted);
  margin-bottom:18px;
}
.breadcrumb-custom a{
  color:var(--muted);
}
.breadcrumb-custom a:hover{color:var(--brand-1)}
.breadcrumb-custom .sep{
  color:rgba(122,93,105,.55);
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.badge-soft{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:.88rem;
  font-weight:700;
  border:1px solid rgba(127,22,63,.10);
  background:rgba(255,255,255,.72);
  color:var(--text);
}
.badge-soft strong{color:var(--brand-1)}
.badge-soft.hot{
  background:rgba(162,52,106,.10);
  color:var(--brand-1);
}
.badge-soft.info{
  background:rgba(47,184,194,.12);
  color:#17656c;
}
.hero-title{
  margin:0;
  font-size:clamp(2rem, 4vw, 3.9rem);
  line-height:1.04;
  font-weight:900;
  letter-spacing:-.04em;
  max-width:12ch;
}
.hero-copy{
  color:var(--muted);
  font-size:1.02rem;
  max-width:56ch;
  margin:16px 0 0;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}
.hero-note{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:18px;
  color:var(--muted);
  font-size:.95rem;
  flex-wrap:wrap;
}
.hero-note .mini-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(47,184,194,.12);
}
.hero-panel{
  position:relative;
  border-radius:var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(127,22,63,.96), rgba(162,52,106,.92) 52%, rgba(138,61,240,.92)),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  color:#fff;
  padding:22px;
  overflow:hidden;
  min-height:100%;
  box-shadow:0 20px 42px rgba(90,18,48,.22);
}
.hero-panel::before{
  content:"";
  position:absolute;
  inset:-30% -20% auto auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.22), rgba(255,255,255,0) 68%);
}
.hero-panel .panel-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:.86rem;
  font-weight:700;
  margin-bottom:16px;
}
.panel-title{
  margin:0;
  font-size:1.45rem;
  line-height:1.18;
  font-weight:900;
}
.panel-desc{
  margin:10px 0 0;
  color:rgba(255,255,255,.86);
  font-size:.95rem;
}
.panel-stats{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:20px;
}
.panel-stat{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:14px;
  backdrop-filter:blur(6px);
}
.panel-stat .num{
  display:block;
  font-size:1.55rem;
  font-weight:900;
  line-height:1;
}
.panel-stat .label{
  display:block;
  margin-top:6px;
  font-size:.86rem;
  color:rgba(255,255,255,.84);
}
.panel-track{
  margin-top:16px;
  background:rgba(255,255,255,.12);
  border-radius:999px;
  height:10px;
  overflow:hidden;
}
.panel-track span{
  display:block;
  height:100%;
  width:76%;
  border-radius:inherit;
  background:linear-gradient(90deg, rgba(255,255,255,.55), rgba(255,255,255,.95));
}
.panel-list{
  margin:16px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.panel-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:.94rem;
  color:rgba(255,255,255,.92);
}
.panel-list i{
  color:#b7f4f7;
  margin-top:4px;
}
.stat-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}
.stat-card{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.82);
  border:1px solid rgba(127,22,63,.10);
  box-shadow:var(--shadow-soft);
  padding:18px;
  min-height:140px;
  transition:all var(--transition);
}
.stat-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-2);
  border-color:rgba(162,52,106,.18);
}
.stat-card::after{
  content:"";
  position:absolute;
  inset:auto -20px -30px auto;
  width:110px;
  height:110px;
  background:radial-gradient(circle, rgba(162,52,106,.10), rgba(162,52,106,0) 70%);
}
.stat-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.88rem;
  color:var(--muted);
  font-weight:700;
}
.stat-value{
  margin-top:10px;
  font-size:2rem;
  line-height:1;
  font-weight:900;
  letter-spacing:-.03em;
  color:var(--text);
}
.stat-desc{
  margin-top:8px;
  color:var(--muted);
  font-size:.92rem;
}
.stat-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:12px;
  padding:6px 10px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:700;
  color:var(--brand-1);
  background:rgba(162,52,106,.08);
}
.section-shell{
  padding:22px;
}
.filter-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.filter-left{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.filter-title{
  margin:0;
  font-size:1.28rem;
  font-weight:900;
}
.filter-sub{
  color:var(--muted);
  margin:0;
  font-size:.95rem;
}
.filter-tags,
.sort-tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  overflow-x:auto;
  padding-bottom:2px;
}
.filter-tags::-webkit-scrollbar,
.sort-tags::-webkit-scrollbar{
  height:6px;
}
.filter-tags::-webkit-scrollbar-thumb,
.sort-tags::-webkit-scrollbar-thumb{
  background:rgba(127,22,63,.18);
  border-radius:999px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(127,22,63,.12);
  background:rgba(255,255,255,.82);
  color:var(--text);
  font-weight:700;
  font-size:.9rem;
  cursor:pointer;
  transition:all var(--transition);
}
.chip:hover,
.chip:focus-visible{
  transform:translateY(-1px);
  border-color:rgba(162,52,106,.22);
  box-shadow:0 12px 24px rgba(70,18,40,.08);
}
.chip.active{
  background:linear-gradient(135deg, rgba(127,22,63,.96), rgba(162,52,106,.96) 52%, rgba(138,61,240,.96));
  color:#fff;
  border-color:transparent;
}
.content-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 330px;
  gap:22px;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.content-card{
  overflow:hidden;
  border-radius:24px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(127,22,63,.10);
  box-shadow:var(--shadow-soft);
  transition:all var(--transition);
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.content-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-2);
  border-color:rgba(162,52,106,.18);
}
.content-thumb{
  position:relative;
  min-height:168px;
  padding:18px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  overflow:hidden;
  isolation:isolate;
}
.content-thumb::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.20), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.16), transparent 20%),
    linear-gradient(135deg, rgba(127,22,63,.88), rgba(162,52,106,.84) 52%, rgba(138,61,240,.86));
  z-index:-2;
}
.content-thumb::after{
  content:"";
  position:absolute;
  inset:auto -30px -40px auto;
  width:170px;
  height:170px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
  z-index:-1;
}
.thumb-alt-2::before{background:linear-gradient(135deg, rgba(96,26,53,.92), rgba(177,58,110,.88) 56%, rgba(88,106,245,.82))}
.thumb-alt-3::before{background:linear-gradient(135deg, rgba(114,30,72,.92), rgba(187,82,119,.88) 56%, rgba(99,53,232,.86))}
.thumb-alt-4::before{background:linear-gradient(135deg, rgba(87,28,67,.92), rgba(162,52,106,.88) 58%, rgba(39,182,194,.82))}
.thumb-alt-5::before{background:linear-gradient(135deg, rgba(108,26,64,.92), rgba(159,70,123,.90) 58%, rgba(138,61,240,.84))}
.thumb-alt-6::before{background:linear-gradient(135deg, rgba(99,20,56,.92), rgba(182,58,98,.88) 56%, rgba(47,184,194,.84))}
.card-tag{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.15);
  color:#fff;
  border:1px solid rgba(255,255,255,.20);
  font-size:.84rem;
  font-weight:700;
  backdrop-filter:blur(4px);
}
.thumb-score{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:var(--brand-1);
  font-size:.85rem;
  font-weight:900;
  box-shadow:0 10px 22px rgba(40,12,26,.10);
}
.content-body{
  padding:18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.content-body h3{
  margin:0;
  font-size:1.1rem;
  line-height:1.28;
  font-weight:900;
}
.content-body p{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}
.meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  color:var(--muted-2);
  font-size:.85rem;
}
.meta-row span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 9px;
  border-radius:999px;
  background:rgba(127,22,63,.05);
}
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tag-mini{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:.82rem;
  color:var(--brand-1);
  background:rgba(162,52,106,.08);
}
.card-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:auto;
  color:var(--brand-1);
  font-weight:800;
}
.card-link:hover{gap:10px}
.side-panel{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.side-card{
  border-radius:24px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(127,22,63,.10);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.side-card .side-head{
  padding:18px 18px 14px;
  border-bottom:1px solid rgba(127,22,63,.08);
}
.side-card .side-head h3{
  margin:0;
  font-size:1.05rem;
  font-weight:900;
}
.side-card .side-head p{
  margin:7px 0 0;
  color:var(--muted);
  font-size:.92rem;
}
.side-card .side-body{
  padding:18px;
}
.ring-box{
  display:grid;
  grid-template-columns:100px 1fr;
  gap:14px;
  align-items:center;
}
.ring{
  width:100px;
  aspect-ratio:1;
  border-radius:50%;
  background:
    radial-gradient(circle at center, #fff 56%, transparent 57%),
    conic-gradient(var(--brand-2) 0 66%, rgba(127,22,63,.10) 66% 100%);
  display:grid;
  place-items:center;
  box-shadow:inset 0 0 0 1px rgba(127,22,63,.08);
}
.ring span{
  text-align:center;
  font-weight:900;
  color:var(--brand-1);
}
.side-stats{
  display:grid;
  gap:10px;
}
.side-stat{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(127,22,63,.04);
  color:var(--text);
}
.side-stat .left{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:.9rem;
}
.side-stat .num{
  font-weight:900;
  color:var(--text);
}
.quick-list{
  display:grid;
  gap:10px;
}
.quick-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px 0;
  border-bottom:1px dashed rgba(127,22,63,.12);
}
.quick-item:last-child{border-bottom:0;padding-bottom:0}
.quick-item i{
  color:var(--accent);
  margin-top:4px;
}
.quick-item strong{
  display:block;
  font-weight:800;
}
.quick-item span{
  display:block;
  color:var(--muted);
  font-size:.9rem;
}
.compare-wrap{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.compare-card{
  border-radius:24px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(127,22,63,.10);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.compare-card .compare-head{
  padding:18px;
  border-bottom:1px solid rgba(127,22,63,.08);
}
.compare-card .compare-head h3{
  margin:0;
  font-size:1.06rem;
  font-weight:900;
}
.compare-card .compare-head p{
  margin:7px 0 0;
  color:var(--muted);
  font-size:.92rem;
}
.compare-card .compare-body{
  padding:18px;
}
.compare-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.compare-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--text);
}
.compare-list i{
  margin-top:4px;
  font-size:.95rem;
}
.compare-list .bad{
  color:#b32c4d;
}
.compare-list .good{
  color:#198754;
}
.accordion.custom-accordion{
  display:grid;
  gap:12px;
}
.accordion-item{
  border:1px solid rgba(127,22,63,.10);
  border-radius:18px !important;
  overflow:hidden;
  background:rgba(255,255,255,.84);
  box-shadow:var(--shadow-soft);
}
.accordion-button{
  background:transparent;
  box-shadow:none !important;
  color:var(--text);
  font-weight:800;
  padding:18px 18px;
}
.accordion-button:not(.collapsed){
  color:var(--brand-1);
  background:rgba(162,52,106,.06);
}
.accordion-button::after{
  background-size:1rem;
}
.accordion-body{
  color:var(--muted);
  padding:0 18px 18px;
}
.subscribe-wrap{
  display:grid;
  grid-template-columns:minmax(0, 1.12fr) .88fr;
  gap:18px;
  align-items:stretch;
}
.form-shell{
  padding:22px;
  position:relative;
  overflow:hidden;
}
.form-shell .form-title{
  margin:0;
  font-size:1.35rem;
  font-weight:900;
}
.form-shell .form-desc{
  margin:8px 0 0;
  color:var(--muted);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:20px;
}
.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.form-field.full{grid-column:1 / -1}
.form-label{
  font-weight:800;
  font-size:.92rem;
  color:var(--text);
}
.form-control,
.form-select{
  min-height:50px;
  border-radius:16px;
  border:1px solid rgba(127,22,63,.14);
  background:rgba(255,255,255,.92);
  padding:.8rem 1rem;
  color:var(--text);
  box-shadow:none;
}
.form-control::placeholder{
  color:#a48a97;
}
textarea.form-control{
  min-height:118px;
  resize:vertical;
}
.form-helper{
  margin-top:10px;
  font-size:.88rem;
  color:var(--muted);
}
.promise-card{
  border-radius:24px;
  padding:22px;
  background:linear-gradient(135deg, rgba(127,22,63,.96), rgba(162,52,106,.94) 48%, rgba(138,61,240,.92));
  color:#fff;
  box-shadow:0 18px 38px rgba(90,18,48,.20);
  position:relative;
  overflow:hidden;
}
.promise-card::before{
  content:"";
  position:absolute;
  inset:auto -20px -30px auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
}
.promise-card h3{
  margin:0;
  font-weight:900;
  font-size:1.32rem;
}
.promise-card p{
  margin:10px 0 0;
  color:rgba(255,255,255,.88);
}
.promise-list{
  display:grid;
  gap:10px;
  padding:0;
  margin:18px 0 0;
  list-style:none;
}
.promise-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(255,255,255,.94);
}
.promise-list i{
  color:#b7f4f7;
  margin-top:4px;
}
.site-footer{
  margin-top:34px;
  padding:0 0 24px;
}
.footer-shell{
  padding:24px;
  background:rgba(255,250,252,.84);
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.footer-title{
  font-size:1.02rem;
  font-weight:900;
  color:var(--text);
}
.footer-meta{
  color:var(--muted);
  font-size:.92rem;
}
.footer-desc{
  color:var(--muted);
  margin:0;
  max-width:44ch;
}
.footer-links{
  display:grid;
  gap:10px;
}
.footer-links a{
  color:var(--muted);
  font-weight:700;
}
.footer-links a:hover{
  color:var(--brand-1);
  transform:translateX(2px);
}
.footer-note{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(127,22,63,.10);
  color:var(--muted);
  font-size:.88rem;
}
.offcanvas{
  background:linear-gradient(180deg, rgba(255,248,251,.98), rgba(255,244,248,.98));
}
.offcanvas-header{
  border-bottom:1px solid rgba(127,22,63,.10);
}
.mobile-menu .nav-link-pill{
  width:100%;
  justify-content:flex-start;
}
.mobile-stack{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.backdrop-tone{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.mobile-only{display:none}
@media (max-width: 1199.98px){
  .stat-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .content-grid{grid-template-columns:1fr}
  .side-panel{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 991.98px){
  .nav-status{display:none}
  .hero-title{max-width:100%}
  .hero-shell{padding:22px}
  .card-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .compare-wrap,
  .subscribe-wrap{
    grid-template-columns:1fr;
  }
  .side-panel{grid-template-columns:1fr}
}
@media (max-width: 767.98px){
  .nav-links{display:none}
  .hero-wrap{padding-top:18px}
  .hero-shell,
  .section-shell,
  .footer-shell,
  .form-shell{
    border-radius:22px;
  }
  .hero-actions .btn{width:100%}
  .hero-shell{padding:18px}
  .panel-stats,
  .stat-grid,
  .card-grid,
  .form-grid{
    grid-template-columns:1fr;
  }
  .panel-title{font-size:1.25rem}
  .hero-copy{font-size:.98rem}
  .content-thumb{min-height:150px}
  .filter-wrap{align-items:flex-start}
  .filter-tags,.sort-tags{width:100%}
  .mobile-only{display:inline-flex}
}
@media (max-width: 575.98px){
  .container-fluid-max{width:min(100% - 20px, var(--container))}
  .navbar{padding:12px 0}
  .brand-sub{display:none}
  .brand-title{font-size:.98rem}
  .hero-title{font-size:1.9rem}
  .section-block{padding:20px 0}
  .hero-note{font-size:.88rem}
  .content-body{padding:16px}
  .side-card .side-body,
  .side-card .side-head,
  .compare-card .compare-body,
  .compare-card .compare-head,
  .form-shell,
  .footer-shell{
    padding-left:16px;
    padding-right:16px;
  }
}
