:root{
      --bg0:#fff7fa;
      --bg1:#fff;
      --text:#1f2430;
      --muted:#5b6272;
      --muted2:#7b8192;
      --line:rgba(31,36,48,.10);
      --shadow: 0 18px 45px rgba(216, 63, 116, .12);
      --shadow2: 0 10px 26px rgba(0,0,0,.08);
      --pink:#e21b66;
      --pink2:#ff4d8b;
      --rose:#ff6aa7;
      --ink:#141923;
      --brandGrad: linear-gradient(135deg, #e21b66 0%, #ff4d8b 55%, #ff8abf 100%);
      --brandSoft: linear-gradient(180deg, rgba(226,27,102,.12) 0%, rgba(255,77,139,.06) 100%);
      --cardGrad: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.72) 100%);
      --focus: 0 0 0 4px rgba(226,27,102,.18);
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-sm: 10px;
      --container: 1120px;
      --padX: 18px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 600px at 10% -10%, rgba(226,27,102,.18), transparent 60%),
        radial-gradient(900px 540px at 90% 0%, rgba(255,77,139,.14), transparent 55%),
        radial-gradient(850px 520px at 50% 18%, rgba(255,138,191,.18), transparent 58%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 40%, #fff 100%);
      overflow-x:hidden;
    }

    a{ color:inherit; text-decoration:none; }
    img{ max-width:100%; height:auto; display:block; }

    .container{
      width: min(var(--container), 100%);
      margin: 0 auto;
      padding: 0 var(--padX);
    }

    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
      background:#fff; border:1px solid var(--line); border-radius:12px; z-index:9999;
      box-shadow: var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.62);
      border-bottom: 1px solid rgba(31,36,48,.07);
    }

    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding: 12px 0;
      gap:14px;
    }

    .brand{
      display:flex; align-items:center; gap:12px; min-width: 220px;
    }
    .brand img{
      width:44px; height:44px;
      border-radius:14px;
      box-shadow: 0 10px 22px rgba(226,27,102,.18);
      background:#fff;
      padding:7px;
      border:1px solid rgba(226,27,102,.20);
      object-fit:contain;
    }
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .brand-name{
      font-weight:800; letter-spacing:.2px;
      font-size:14.5px;
    }
    .brand .brand-sub{
      font-size:12px;
      color:var(--muted);
      margin-top:3px;
      white-space:nowrap;
    }

    .nav-right{
      display:flex; align-items:center; gap:10px;
      flex-wrap:wrap; justify-content:flex-end;
    }

    nav ul{
      list-style:none; margin:0; padding:0;
      display:flex; align-items:center; gap:16px;
    }
    nav a.nav-link{
      font-size:13.5px;
      color:rgba(20,25,35,.86);
      padding:8px 10px;
      border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      position:relative;
      outline:none;
    }
    nav a.nav-link:hover{
      background: rgba(226,27,102,.08);
      color: var(--ink);
      transform: translateY(-1px);
    }
    nav a.nav-link:focus-visible{
      box-shadow: var(--focus);
    }

    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding: 11px 14px;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.10);
      background:#fff;
      color: var(--ink);
      font-weight:700;
      font-size:13.5px;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(0,0,0,.08);
      border-color: rgba(226,27,102,.22);
    }
    .btn:active{ transform: translateY(0px); }
    .btn:focus-visible{ box-shadow: var(--focus); outline:none; }

    .btn-primary{
      background: var(--brandGrad);
      border-color: rgba(226,27,102,.35);
      color:#fff;
      box-shadow: 0 14px 36px rgba(226,27,102,.20);
    }
    .btn-primary:hover{
      box-shadow: 0 18px 46px rgba(226,27,102,.26);
    }

    .btn-ghost{
      background: rgba(255,255,255,.55);
    }

    .icon{
      width:18px; height:18px; display:inline-block;
    }

    .mobile-toggle{
      display:none;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(31,36,48,.10);
      background:#fff;
      cursor:pointer;
    }
    .mobile-toggle:focus-visible{ box-shadow: var(--focus); outline:none; }
    .hamburger{
      width:18px; height:14px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0; height:2px; background: rgba(20,25,35,.8);
      border-radius:999px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:nth-child(1){ top:1px; }
    .hamburger span:nth-child(2){ top:6px; }
    .hamburger span:nth-child(3){ top:11px; }

    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(1){ top:6px; transform: rotate(45deg); }
    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(2){ opacity:0; }
    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(3){ top:6px; transform: rotate(-45deg); }

    .mobile-drawer{
      display:none;
      padding: 6px 0 14px;
    }
    .mobile-drawer .drawer-panel{
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.78);
      border-radius: 18px;
      padding: 10px;
      box-shadow: 0 18px 45px rgba(0,0,0,.08);
    }
    .mobile-drawer ul{
      list-style:none; padding:0; margin:0;
      display:flex; flex-direction:column;
      gap:8px;
    }
    .mobile-drawer a.nav-link{
      display:flex; align-items:center; justify-content:space-between;
      padding: 11px 12px;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.08);
      background:#fff;
      font-weight:700;
      font-size:13.5px;
    }
    .mobile-drawer a.nav-link:focus-visible{ box-shadow: var(--focus); outline:none; }

    main{ padding-bottom: 30px; }

    .hero{
      position:relative;
      padding: 54px 0 22px;
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 22px;
      align-items: start;
    }

    .hero::before{
      content:"";
      position:absolute; inset:-40px -10px auto -10px;
      height: 420px;
      background:
        radial-gradient(600px 220px at 18% 35%, rgba(226,27,102,.22), transparent 62%),
        radial-gradient(520px 220px at 86% 18%, rgba(255,77,139,.18), transparent 58%),
        radial-gradient(420px 160px at 55% 0%, rgba(255,138,191,.16), transparent 55%);
      pointer-events:none;
      z-index:-1;
    }

    .hero-left{
      padding: 18px 0;
    }

    .pill-row{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
      margin-bottom: 14px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(226,27,102,.18);
      background: rgba(255,255,255,.60);
      box-shadow: 0 10px 22px rgba(226,27,102,.08);
      font-size: 12.8px;
      color: rgba(20,25,35,.86);
      font-weight: 700;
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: var(--brandGrad);
      box-shadow: 0 0 0 4px rgba(226,27,102,.12);
    }

    .hero h1{
      margin: 0 0 10px;
      font-size: 40px;
      line-height: 1.12;
      letter-spacing: -0.6px;
    }
    .hero .subtitle{
      color: var(--muted);
      font-size: 15.5px;
      line-height: 1.7;
      max-width: 56ch;
      margin: 0 0 18px;
    }

    .hero-actions{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin-top: 16px;
    }

    .micro-list{
      display:flex; gap:14px; flex-wrap:wrap;
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px dashed rgba(31,36,48,.12);
    }
    .micro{
      display:flex; align-items:flex-start; gap:10px;
      min-width: 170px;
    }
    .micro b{
      display:block;
      font-size: 13.5px;
      margin-top:1px;
    }
    .micro span{
      display:block;
      font-size: 12.8px;
      color: var(--muted2);
      line-height: 1.5;
      margin-top:3px;
    }
    .check{
      width:18px; height:18px;
      border-radius: 6px;
      background: rgba(226,27,102,.14);
      border: 1px solid rgba(226,27,102,.22);
      display:flex; align-items:center; justify-content:center;
      color: var(--pink);
      margin-top: 2px;
      flex:0 0 auto;
    }

    .hero-right{
      position:relative;
    }

    .stat-card{
      border-radius: var(--radius-lg);
      border: 1px solid rgba(226,27,102,.18);
      background: var(--cardGrad);
      box-shadow: 0 18px 55px rgba(226,27,102,.14);
      overflow:hidden;
    }

    .stat-card .topbar{
      padding: 14px 16px;
      background: linear-gradient(180deg, rgba(226,27,102,.16), rgba(255,255,255,.0));
      border-bottom: 1px solid rgba(226,27,102,.12);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:10px;
      font-weight:900;
      letter-spacing:.2px;
      color: var(--ink);
      font-size: 13px;
    }
    .badge .spark{
      width:26px; height:26px; border-radius:12px;
      background: rgba(226,27,102,.12);
      border:1px solid rgba(226,27,102,.20);
      display:flex; align-items:center; justify-content:center;
    }
    .tiny{
      color: var(--muted2);
      font-size: 12.5px;
      font-weight:700;
    }

    .stat-grid{
      padding: 14px 16px 16px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
    }
    .stat{
      border-radius: 16px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.75);
      padding: 12px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 86px;
      display:flex; flex-direction:column;
      justify-content:space-between;
    }
    .stat:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 35px rgba(0,0,0,.08);
      border-color: rgba(226,27,102,.22);
    }
    .stat .num{
      font-weight: 950;
      letter-spacing:-.4px;
      font-size: 22px;
    }
    .stat .label{
      color: var(--muted2);
      font-size: 12.8px;
      font-weight:700;
      line-height:1.4;
      margin-top:4px;
    }

    .stat-foot{
      padding: 0 16px 16px;
    }
    .signal{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      border-radius: 16px;
      border: 1px dashed rgba(226,27,102,.22);
      background: rgba(255,255,255,.64);
      padding: 12px 12px;
    }
    .signal .left{
      display:flex; align-items:center; gap:12px;
      min-width: 0;
    }
    .orb{
      width:34px; height:34px; border-radius: 14px;
      background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.9), rgba(255,255,255,.0) 55%),
                  linear-gradient(135deg, rgba(226,27,102,.36), rgba(255,77,139,.12));
      border:1px solid rgba(226,27,102,.20);
      box-shadow: 0 16px 36px rgba(226,27,102,.14);
      position:relative;
      overflow:hidden;
    }
    .orb::after{
      content:"";
      position:absolute; inset:-30% -10% auto auto;
      width: 60px; height: 60px;
      background: radial-gradient(circle, rgba(255,255,255,.65), transparent 60%);
      transform: rotate(25deg);
      opacity:.7;
      animation: floatGlow 3.6s ease-in-out infinite;
    }
    @keyframes floatGlow{
      0%,100%{ transform: translate(0,0) rotate(25deg); opacity:.6; }
      50%{ transform: translate(-6px,8px) rotate(25deg); opacity:.95; }
    }

    .signal b{
      display:block;
      font-size: 13.5px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .signal span{
      display:block;
      color: var(--muted2);
      font-size: 12.6px;
      font-weight:700;
      margin-top:2px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .signal .right{
      display:flex; align-items:center; gap:10px; flex:0 0 auto;
    }
    .mini-meter{
      width: 92px; height: 10px;
      border-radius: 999px;
      background: rgba(31,36,48,.10);
      overflow:hidden;
      border:1px solid rgba(31,36,48,.08);
    }
    .mini-meter i{
      display:block; height:100%;
      width: 62%;
      background: var(--brandGrad);
      border-radius: 999px;
      animation: meter 2.4s ease-in-out infinite;
    }
    @keyframes meter{
      0%,100%{ transform: translateX(-2%); filter:saturate(1); }
      50%{ transform: translateX(3%); filter:saturate(1.2); }
    }

    section{
      padding: 44px 0;
    }
    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom: 18px;
    }
    .section-title h2{
      margin:0;
      font-size: 26px;
      letter-spacing: -0.3px;
    }
    .section-title p{
      margin:0;
      color: var(--muted);
      font-size: 14.5px;
      line-height:1.6;
      max-width: 62ch;
    }

    .grid-2{
      display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px;
      align-items:stretch;
    }
    .grid-3{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px;
      align-items:stretch;
    }
    .grid-4{
      display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px;
      align-items:stretch;
    }

    .card{
      border-radius: var(--radius-lg);
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 12px 32px rgba(0,0,0,.05);
      overflow:hidden;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      position:relative;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 46px rgba(0,0,0,.08);
      border-color: rgba(226,27,102,.22);
    }
    .card-inner{ padding: 16px; }
    .card h3{
      margin: 0 0 8px;
      font-size: 16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color: var(--muted);
      font-size: 13.8px;
      line-height:1.7;
    }

    .kpi{
      display:flex; align-items:flex-start; gap:12px;
      margin-bottom: 10px;
    }
    .kpi .kicon{
      width:40px; height:40px;
      border-radius: 16px;
      border:1px solid rgba(226,27,102,.20);
      background: rgba(226,27,102,.10);
      display:flex; align-items:center; justify-content:center;
      color: var(--pink);
      box-shadow: 0 14px 30px rgba(226,27,102,.14);
      flex:0 0 auto;
    }
    .kpi .kmeta b{
      display:block;
      font-size: 14.5px;
      letter-spacing:-.2px;
    }
    .kpi .kmeta span{
      display:block;
      color: var(--muted2);
      font-weight:800;
      font-size: 12.6px;
      margin-top:3px;
      line-height:1.35;
    }

    .feature-list{
      display:grid; gap:10px;
      margin-top: 12px;
    }
    .feature-list .item{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.08);
      background: rgba(255,255,255,.62);
    }
    .feature-list .item b{
      font-size: 13.6px;
    }
    .feature-list .item span{
      display:block;
      color: var(--muted2);
      margin-top:3px;
      font-size: 12.6px;
      line-height:1.45;
      font-weight:700;
    }
    .tag-row{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top: 14px;
    }
    .tag{
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(226,27,102,.18);
      background: rgba(255,255,255,.62);
      color: rgba(20,25,35,.86);
      font-weight:800;
      font-size: 12.5px;
      white-space:nowrap;
    }

    .flow{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 16px;
      align-items:start;
    }
    .timeline{
      border-radius: var(--radius-lg);
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      padding: 16px;
      overflow:hidden;
    }
    .timeline .step{
      display:grid;
      grid-template-columns: 54px 1fr;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(31,36,48,.12);
    }
    .timeline .step:last-child{ border-bottom:none; padding-bottom: 0; }
    .step .num{
      width:54px; height:54px;
      border-radius: 18px;
      border:1px solid rgba(226,27,102,.20);
      background: linear-gradient(180deg, rgba(226,27,102,.12), rgba(255,255,255,.70));
      box-shadow: 0 18px 45px rgba(226,27,102,.12);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: var(--pink);
    }
    .step h3{
      margin: 2px 0 6px;
      font-size: 15.5px;
    }
    .step p{
      margin:0;
      color: var(--muted);
      font-size: 13.5px;
      line-height:1.65;
    }

    .match-card{
      padding: 16px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(226,27,102,.18);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow: 0 22px 55px rgba(226,27,102,.12);
      position:relative;
      overflow:hidden;
    }
    .match-card::before{
      content:"";
      position:absolute; inset:-2px -2px auto -2px;
      height: 150px;
      background: radial-gradient(420px 120px at 20% 40%, rgba(226,27,102,.24), transparent 60%);
      pointer-events:none;
    }

    .match-card h3{
      margin: 0 0 8px;
      font-size: 16px;
      letter-spacing:-.2px;
      position:relative;
    }
    .match-card p{
      margin: 0 0 14px;
      color: var(--muted);
      font-size: 13.8px;
      line-height:1.7;
      position:relative;
    }

    .form{
      display:grid; gap:10px;
      position:relative;
    }
    .row-2{
      display:grid; gap:10px; grid-template-columns: 1fr 1fr;
    }
    label{
      display:block;
      font-size: 12.8px;
      color: rgba(20,25,35,.86);
      font-weight:900;
      margin-bottom: 6px;
    }
    input, select, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.12);
      background: rgba(255,255,255,.86);
      color: var(--ink);
      font-size: 14px;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    textarea{ min-height: 108px; resize: vertical; }
    input:focus, select:focus, textarea:focus{
      box-shadow: var(--focus);
      border-color: rgba(226,27,102,.35);
      background:#fff;
    }

    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top: 4px;
    }
    .hint{
      color: var(--muted2);
      font-size: 12.6px;
      font-weight:700;
      line-height:1.5;
      max-width: 45ch;
    }

    .table-wrap{
      border-radius: var(--radius-lg);
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      overflow:hidden;
      box-shadow: 0 12px 32px rgba(0,0,0,.05);
    }
    .table-scroll{
      overflow:auto;
      -webkit-overflow-scrolling: touch;
    }
    table{
      width:100%;
      border-collapse: collapse;
      min-width: 760px;
    }
    thead th{
      text-align:left;
      font-size: 13px;
      color: rgba(20,25,35,.88);
      padding: 14px 14px;
      background: linear-gradient(180deg, rgba(226,27,102,.14), rgba(255,255,255,.0));
      border-bottom:1px solid rgba(31,36,48,.10);
      font-weight:950;
      letter-spacing:.1px;
    }
    tbody td{
      padding: 12px 14px;
      border-bottom:1px solid rgba(31,36,48,.08);
      color: var(--muted);
      font-size: 13.5px;
      font-weight:700;
    }
    tbody tr:hover td{
      background: rgba(226,27,102,.05);
      color: rgba(20,25,35,.86);
    }
    .td-strong{
      color: var(--ink) !important;
      font-weight:950 !important;
    }

    .score-card{
      border-radius: var(--radius-lg);
      border:1px solid rgba(226,27,102,.18);
      background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.60));
      padding: 16px;
      box-shadow: 0 22px 55px rgba(226,27,102,.12);
      overflow:hidden;
      position:relative;
    }
    .score-card::after{
      content:"";
      position:absolute; inset:auto -60px -80px auto;
      width: 240px; height: 240px;
      background: radial-gradient(circle at 30% 30%, rgba(226,27,102,.30), rgba(226,27,102,.0) 62%);
      pointer-events:none;
      transform: rotate(10deg);
    }
    .score-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; position:relative;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
    }
    .star{
      width:18px; height:18px; display:inline-block;
      background: conic-gradient(from 180deg, var(--pink), #ffb3d3, var(--pink));
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 17.27L18.18 21 16.54 13.97 22 9.24 14.81 8.63 12 2 9.19 8.63 2 9.24 7.46 13.97 5.82 21z'/%3E%3C/svg%3E") center/contain no-repeat;
              mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 17.27L18.18 21 16.54 13.97 22 9.24 14.81 8.63 12 2 9.19 8.63 2 9.24 7.46 13.97 5.82 21z'/%3E%3C/svg%3E") center/contain no-repeat;
      opacity:.95;
    }
    .score-big{
      text-align:right;
    }
    .score-big b{
      display:block;
      font-size: 34px;
      letter-spacing:-1px;
      font-weight:1000;
      color: var(--ink);
    }
    .score-big span{
      display:block;
      font-size: 13px;
      color: var(--muted2);
      font-weight:900;
      margin-top:4px;
    }
    .score-note{
      margin-top: 10px;
      color: var(--muted);
      font-size: 13.5px;
      line-height:1.7;
      font-weight:750;
      position:relative;
    }

    .comments{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px;
    }
    .comment{
      padding: 16px;
    }
    .comment .head{
      display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px;
    }
    .avatar{
      width:42px; height:42px; border-radius: 16px;
      border:1px solid rgba(226,27,102,.20);
      background: linear-gradient(180deg, rgba(226,27,102,.12), rgba(255,255,255,.70));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color: var(--pink);
      box-shadow: 0 14px 30px rgba(226,27,102,.14);
      flex:0 0 auto;
    }
    .who b{ display:block; font-size: 13.7px; }
    .who span{ display:block; color: var(--muted2); font-size: 12.5px; font-weight:800; margin-top:3px; }
    .comment p{ color: var(--muted); margin-top: 6px; font-weight:750; }

    .split{
      display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:start;
    }

    .post-list{
      display:grid; gap:10px;
    }
    .post{
      padding: 14px 14px;
      border-radius: 16px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .post:hover{
      transform: translateY(-2px);
      border-color: rgba(226,27,102,.22);
      box-shadow: 0 16px 34px rgba(0,0,0,.07);
    }
    .post .meta{
      min-width: 0;
    }
    .post b{
      display:block;
      font-size: 13.8px;
      letter-spacing:-.2px;
      margin-bottom:4px;
    }
    .post span{
      display:block;
      color: var(--muted2);
      font-size: 12.6px;
      font-weight:800;
      line-height:1.45;
    }
    .post a{
      flex:0 0 auto;
      border-radius: 999px;
      border:1px solid rgba(226,27,102,.18);
      background: rgba(255,255,255,.70);
      padding: 8px 10px;
      font-weight:950;
      font-size: 12.6px;
      color: var(--pink);
      white-space:nowrap;
    }
    .post a:focus-visible{ box-shadow: var(--focus); outline:none; }

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    details.faq-item{
      border-radius: var(--radius-lg);
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      padding: 12px 14px;
      box-shadow: 0 12px 32px rgba(0,0,0,.05);
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
      overflow:hidden;
    }
    details.faq-item[open]{
      border-color: rgba(226,27,102,.22);
      box-shadow: 0 18px 46px rgba(0,0,0,.08);
    }
    details.faq-item summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:950;
      color: rgba(20,25,35,.94);
      padding: 2px 0;
      outline:none;
    }
    details.faq-item summary::-webkit-details-marker{ display:none; }
    .qtext{
      font-size: 13.8px;
      line-height:1.5;
      padding-right: 6px;
    }
    .caret{
      width:26px; height:26px; border-radius: 12px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease;
      margin-top: -2px;
    }
    details[open] .caret{ transform: rotate(180deg); border-color: rgba(226,27,102,.22); }
    .caret svg{ width:14px; height:14px; }
    details.faq-item .answer{
      margin-top: 10px;
      color: var(--muted);
      font-size: 13.5px;
      line-height:1.75;
      font-weight:750;
      animation: fadeIn .22s ease both;
    }
    @keyframes fadeIn{
      from{ opacity:0; transform: translateY(-4px); }
      to{ opacity:1; transform: translateY(0); }
    }

    .ads-grid{
      display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px;
    }
    .small-card{
      padding:16px;
      border-radius: var(--radius-lg);
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 32px rgba(0,0,0,.05);
    }
    .small-card h3{ margin: 0 0 8px; font-size: 15.5px; }
    .small-card ul{ margin:0; padding:0; list-style:none; display:grid; gap:9px; }
    .small-card li{
      display:flex; gap:10px; align-items:flex-start;
      color: var(--muted);
      font-size: 13.4px;
      font-weight:800;
      line-height:1.55;
    }
    .small-card li i{
      width:18px; height:18px; border-radius: 7px;
      background: rgba(226,27,102,.12);
      border:1px solid rgba(226,27,102,.20);
      display:flex; align-items:center; justify-content:center;
      color: var(--pink);
      font-style:normal;
      flex:0 0 auto;
      margin-top:2px;
      font-weight:1000;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
      align-items:stretch;
    }
    .case{
      display:flex; flex-direction:column;
      min-height: 260px;
    }
    .case .thumb{
      padding: 14px;
      background: linear-gradient(180deg, rgba(226,27,102,.08), rgba(255,255,255,0));
      border-bottom: 1px solid rgba(31,36,48,.08);
      position:relative;
      overflow:hidden;
      min-height: 98px;
    }
    .case .thumb::before{
      content:"";
      position:absolute; inset:-60px -60px auto auto;
      width: 140px; height: 140px;
      background: radial-gradient(circle at 30% 30%, rgba(226,27,102,.26), rgba(226,27,102,0) 60%);
      transform: rotate(12deg);
    }
    .case .thumb .shape{
      width: 44px; height: 44px;
      border-radius: 18px;
      border:1px solid rgba(226,27,102,.20);
      background: rgba(226,27,102,.10);
      display:flex; align-items:center; justify-content:center;
      color: var(--pink);
      font-weight:1000;
      position:relative;
      z-index:1;
      box-shadow: 0 16px 36px rgba(226,27,102,.12);
    }
    .case .body{ padding: 14px 16px 16px; display:flex; flex-direction:column; gap:10px; flex:1; }
    .case .body b{ font-size: 15px; letter-spacing:-.2px; }
    .case .body p{ margin:0; color: var(--muted); font-size: 13.6px; line-height:1.7; font-weight:750; }
    .case .meta-row{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:12px; }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
      color: rgba(20,25,35,.86);
      font-weight:950;
      font-size: 12.4px;
      white-space:nowrap;
    }
    .chip .mini{
      width:10px; height:10px; border-radius:50%;
      background: var(--brandGrad);
      box-shadow: 0 0 0 4px rgba(226,27,102,.12);
    }
    .link-pill{
      color: var(--pink);
      font-weight:1000;
      font-size: 12.6px;
      border-radius: 999px;
      border:1px solid rgba(226,27,102,.20);
      background: rgba(255,255,255,.70);
      padding: 8px 10px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .link-pill:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(226,27,102,.16);
      border-color: rgba(226,27,102,.30);
    }
    .link-pill:focus-visible{ box-shadow: var(--focus); outline:none; }

    .price-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:stretch;
    }
    .price-card .head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .price-card h3{ margin:0; font-size: 16px; }
    .price-card .price{
      font-weight:1000;
      color: var(--pink);
      font-size: 22px;
      letter-spacing:-.6px;
      text-align:right;
      white-space:nowrap;
    }
    .price-card .small{
      margin-top: 6px;
      color: var(--muted2);
      font-weight:850;
      font-size: 12.8px;
      text-align:right;
      line-height:1.4;
    }
    .price-card .desc{
      color: var(--muted);
      font-size: 13.6px;
      line-height:1.7;
      font-weight:760;
      margin-top: 8px;
    }

    .network{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px;
      align-items:stretch;
    }
    .network .net{
      padding: 16px;
      border-radius: var(--radius-lg);
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 32px rgba(0,0,0,.05);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .network .net:hover{
      transform: translateY(-3px);
      border-color: rgba(226,27,102,.22);
      box-shadow: 0 18px 46px rgba(0,0,0,.08);
    }
    .net .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:10px;
    }
    .net .top b{ font-size: 15.5px; letter-spacing:-.2px; }
    .net .top span{
      color: var(--muted2); font-size: 12.6px; font-weight:900;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
      padding: 6px 10px;
      border-radius: 999px;
      white-space:nowrap;
    }
    .net ul{
      list-style:none; margin:0; padding:0; display:grid; gap:10px;
    }
    .net li{
      display:flex; align-items:flex-start; gap:10px;
      color: var(--muted);
      font-size: 13.4px;
      font-weight:800;
      line-height:1.55;
    }
    .net li i{
      width:18px; height:18px; border-radius: 7px;
      background: rgba(226,27,102,.12);
      border:1px solid rgba(226,27,102,.20);
      display:flex; align-items:center; justify-content:center;
      color: var(--pink);
      font-style:normal;
      flex:0 0 auto;
      margin-top:2px;
      font-weight:1000;
    }

    footer{
      background: linear-gradient(180deg, rgba(226,27,102,.08), rgba(255,255,255,.0) 40%), #fff;
      border-top: 1px solid rgba(31,36,48,.08);
      padding: 26px 0 18px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .foot-card{
      border-radius: var(--radius-lg);
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      padding: 16px;
      box-shadow: 0 12px 32px rgba(0,0,0,.05);
    }
    .foot-card h3{
      margin:0 0 10px;
      font-size: 15.5px;
      letter-spacing:-.2px;
    }
    .foot-card p{
      margin:0;
      color: var(--muted);
      font-size: 13.6px;
      line-height:1.7;
      font-weight:760;
    }
    .foot-links{
      display:grid; gap:10px;
      margin-top: 12px;
    }
    .foot-links a{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
      font-weight:950;
      color: rgba(20,25,35,.90);
      font-size: 13px;
    }
    .foot-links a:hover{
      border-color: rgba(226,27,102,.22);
      box-shadow: 0 16px 34px rgba(226,27,102,.14);
      transform: translateY(-2px);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .kefu-row{
      display:flex; gap:12px; align-items:flex-start;
      margin-top: 12px;
    }
    .kefu-row img{
      width: 92px;
      border-radius: 18px;
      border:1px solid rgba(31,36,48,.10);
      background:#fff;
      box-shadow: 0 18px 46px rgba(0,0,0,.08);
    }
    .kefu-row .kefu-meta b{ display:block; font-size: 13.8px; }
    .kefu-row .kefu-meta span{
      display:block;
      color: var(--muted2);
      font-size: 12.6px;
      font-weight:900;
      margin-top:4px;
      line-height:1.6;
    }

    .bottom{
      margin-top: 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      color: var(--muted2);
      font-size: 12.6px;
      font-weight:900;
    }

    .brandline{
      display:flex; align-items:center; gap:10px;
      flex-wrap:wrap;
    }
    .brandline .sep{
      width: 6px; height: 6px; border-radius:50%;
      background: rgba(226,27,102,.35);
      display:inline-block;
    }

    .return-top{
      position:fixed; right: 16px; bottom: 92px;
      z-index: 60;
      display:none;
    }

    .floating-kefu{
      position:fixed; right: 16px; bottom: 16px;
      z-index: 70;
      display:flex; gap:10px; align-items:center;
    }
    .kefu-btn{
      border-radius: 999px;
      padding: 12px 14px;
      border:1px solid rgba(226,27,102,.22);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 46px rgba(0,0,0,.10);
      cursor:pointer;
      display:flex; align-items:center; gap:10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      user-select:none;
    }
    .kefu-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(226,27,102,.34);
      box-shadow: 0 24px 60px rgba(0,0,0,.12);
    }
    .kefu-btn:focus-visible{ outline:none; box-shadow: var(--focus); }
    .kefu-btn .bubble{
      width: 34px; height: 34px;
      border-radius: 14px;
      background: var(--brandGrad);
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 18px 46px rgba(226,27,102,.22);
      border:1px solid rgba(255,255,255,.45);
      font-weight:1000;
    }
    .kefu-btn b{
      font-size: 13.4px;
      letter-spacing:-.2px;
    }
    .kefu-pop{
      position: fixed;
      right: 16px;
      bottom: 68px;
      z-index: 80;
      width: min(320px, calc(100vw - 32px));
      border-radius: 18px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.92);
      box-shadow: 0 28px 80px rgba(0,0,0,.18);
      overflow:hidden;
      transform-origin: 90% 100%;
      animation: popIn .18s ease both;
    }
    @keyframes popIn{
      from{ opacity:0; transform: translateY(10px) scale(.98); }
      to{ opacity:1; transform: translateY(0) scale(1); }
    }
    .kefu-pop .hd{
      padding: 12px 14px;
      background: linear-gradient(180deg, rgba(226,27,102,.14), rgba(255,255,255,0));
      border-bottom: 1px solid rgba(31,36,48,.10);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .kefu-pop .hd b{ font-size: 13.8px; }
    .kefu-close{
      width: 34px; height: 34px;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.10);
      background:#fff;
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
    }
    .kefu-close:focus-visible{ outline:none; box-shadow: var(--focus); }
    .kefu-close svg{ width: 16px; height: 16px; }
    .kefu-pop .bd{
      padding: 12px 14px 14px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .kefu-pop img{
      width: 86px;
      border-radius: 16px;
      border:1px solid rgba(31,36,48,.10);
      background:#fff;
      box-shadow: 0 18px 46px rgba(0,0,0,.08);
      flex:0 0 auto;
    }
    .kefu-pop .meta b{ display:block; font-size: 13.8px; }
    .kefu-pop .meta span{
      display:block;
      margin-top: 4px;
      color: var(--muted2);
      font-size: 12.6px;
      font-weight:900;
      line-height:1.6;
    }
    .kefu-pop .actions{
      margin-top: 10px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .kefu-pop .actions a{
      flex:1;
      min-width: 120px;
      display:inline-flex; align-items:center; justify-content:center;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.80);
      color: var(--ink);
      font-weight:1000;
      font-size: 13px;
    }
    .kefu-pop .actions a.primary{
      border-color: rgba(226,27,102,.22);
      background: var(--brandGrad);
      color:#fff;
      box-shadow: 0 18px 46px rgba(226,27,102,.20);
    }

    .reveal{
      opacity:0; transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.in{
      opacity:1; transform: translateY(0);
    }

    .anchor-jump{
      scroll-margin-top: 84px;
    }

    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .hero h1{ font-size: 34px; }
      .flow{ grid-template-columns: 1fr; }
      .faq{ grid-template-columns: 1fr; }
      .comments{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .grid-3{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .grid-4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .ads-grid{ grid-template-columns: 1fr; }
      .price-grid{ grid-template-columns: 1fr; }
      .network{ grid-template-columns: 1fr; }
      .split{ grid-template-columns: 1fr; }
      .footer-grid{ grid-template-columns: 1fr; }
      nav{ display:none; }
      .mobile-toggle{ display:inline-flex; align-items:center; gap:10px; }
      .mobile-drawer{ display:block; }
      header{ position:sticky; }
      .mobile-drawer[hidden]{ display:none; }
      .mobile-drawer:not([hidden]){ display:block; }
      .return-top{ bottom: 92px; }
    }

    @media (prefers-reduced-motion: reduce){
      html{ scroll-behavior:auto; }
      .reveal{ transition:none; }
      .mini-meter i, .orb::after{ animation:none; }
      .card:hover, .stat:hover, .post:hover, .net:hover, .link-pill:hover{ transform:none; }
    }