:root{
      --bg:#fff7fb;
      --paper:#ffffff;
      --ink:#1f2430;
      --muted:#5c667a;
      --muted2:#7a869c;
      --line:rgba(25,35,55,.12);
      --shadow:0 14px 40px rgba(20,26,40,.10);
      --shadow2:0 10px 26px rgba(20,26,40,.10);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;

      --hot1:#ff2ea6;
      --hot2:#ff6a2b;
      --hot3:#7c3aed;
      --hot4:#00b3ff;
      --hot5:#19c37d;

      --grad: linear-gradient(120deg, rgba(255,46,166,.95), rgba(255,106,43,.92), rgba(124,58,237,.90));
      --grad2: linear-gradient(135deg, rgba(0,179,255,.95), rgba(25,195,125,.9));
      --grad3: radial-gradient(1200px 500px at 20% -10%, rgba(255,46,166,.20), transparent 55%),
               radial-gradient(900px 480px at 85% 10%, rgba(0,179,255,.18), transparent 55%),
               radial-gradient(680px 420px at 60% 70%, rgba(124,58,237,.15), transparent 55%);

      --focus: 0 0 0 4px rgba(255,46,166,.20), 0 0 0 1px rgba(255,46,166,.35);
      --btn:#111827;
      --btnText:#fff;
      --chipBg: rgba(255,46,166,.08);
      --chipText:#6b133d;

      --container: 1120px;
      --pad: 20px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--ink);
      background:
        var(--grad3),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 40%, #ffffff 100%);
      background-attachment: fixed;
      line-height:1.55;
    }

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

    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--pad);
    }

    .topbarWrap{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(160%) blur(12px);
      background: rgba(255,255,255,.72);
      border-bottom:1px solid rgba(20,26,40,.08);
    }
    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .brandImg{
      width:40px;
      height:40px;
      border-radius:12px;
      box-shadow: 0 10px 22px rgba(255,46,166,.18);
      background: rgba(255,255,255,.75);
      padding:6px;
      border:1px solid rgba(255,46,166,.20);
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .brandImg img{ width:100%; height:auto; }
    .brandText{
      display:flex;
      flex-direction:column;
      gap:2px;
      line-height:1.1;
    }
    .brandName{
      font-weight:800;
      letter-spacing:.2px;
      font-size:15px;
    }
    .brandSub{
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:220px;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:nowrap;
      justify-content:flex-end;
    }
    .nav a{
      font-size:13px;
      color:rgba(31,36,48,.86);
      padding:10px 10px;
      border-radius:12px;
      transition: transform .15s ease, background .15s ease, color .15s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background: rgba(255,46,166,.10);
      transform: translateY(-1px);
      color:#2a1c2a;
    }

    .navRight{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .primaryBtn{
      background: var(--btn);
      color:var(--btnText);
      border:1px solid rgba(255,255,255,.08);
      padding:10px 14px;
      border-radius:14px;
      font-weight:700;
      font-size:13px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      box-shadow: 0 14px 30px rgba(17,24,39,.16);
      transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    }
    .primaryBtn:hover{
      transform: translateY(-1px);
      filter: saturate(1.05);
      box-shadow: 0 18px 44px rgba(17,24,39,.20);
    }
    .primaryBtn:focus{ outline:none; box-shadow: var(--focus); }
    .secondaryBtn{
      background: rgba(255,255,255,.76);
      color:rgba(31,36,48,.95);
      border:1px solid rgba(20,26,40,.14);
      padding:10px 12px;
      border-radius:14px;
      font-weight:700;
      font-size:13px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .secondaryBtn:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.92);
      border-color: rgba(255,46,166,.30);
    }
    .secondaryBtn:focus{ outline:none; box-shadow: var(--focus); }

    .burger{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(20,26,40,.14);
      background: rgba(255,255,255,.78);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease;
    }
    .burger:hover{ transform: translateY(-1px); border-color: rgba(255,46,166,.30); }
    .burger:focus{ outline:none; box-shadow: var(--focus); }
    .burgerIcon{
      width:18px; height:12px; position:relative;
    }
    .burgerIcon span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: rgba(31,36,48,.85);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burgerIcon span:nth-child(1){ top:0; }
    .burgerIcon span:nth-child(2){ top:5px; }
    .burgerIcon span:nth-child(3){ top:10px; }
    .burger[data-open="true"] .burgerIcon span:nth-child(1){ top:5px; transform: rotate(45deg); }
    .burger[data-open="true"] .burgerIcon span:nth-child(2){ opacity:0; }
    .burger[data-open="true"] .burgerIcon span:nth-child(3){ top:5px; transform: rotate(-45deg); }

    .mobileNav{
      display:none;
      padding-bottom:14px;
    }
    .mobileNavInner{
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.72);
      border-radius:16px;
      padding:10px;
      box-shadow: 0 16px 40px rgba(20,26,40,.08);
    }
    .mobileLinks{
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .mobileLinks a{
      padding:12px 12px;
      border-radius:14px;
      font-weight:700;
      font-size:14px;
      color: rgba(31,36,48,.92);
      border:1px solid rgba(20,26,40,.08);
      background: rgba(255,255,255,.78);
      transition: transform .15s ease, background .15s ease;
    }
    .mobileLinks a:hover{
      transform: translateY(-1px);
      background: rgba(255,46,166,.08);
    }

    .hero{
      padding:34px 0 18px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:18px;
      align-items:stretch;
    }
    .heroCard{
      border-radius:26px;
      padding:22px;
      background:
        radial-gradient(1000px 380px at 20% -20%, rgba(255,46,166,.26), transparent 60%),
        radial-gradient(820px 420px at 95% 10%, rgba(0,179,255,.22), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.74));
      border:1px solid rgba(255,46,166,.18);
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .heroCard::after{
      content:"";
      position:absolute;
      inset:-2px;
      background: linear-gradient(120deg, rgba(255,46,166,.22), rgba(0,179,255,.14), rgba(124,58,237,.18));
      opacity:.22;
      pointer-events:none;
      mask: radial-gradient(600px 240px at 20% 0%, #000 30%, transparent 70%);
    }

    .kicker{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:10px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,46,166,.10);
      border:1px solid rgba(255,46,166,.20);
      color: rgba(107,19,61,.98);
      font-weight:800;
      font-size:13px;
    }
    .badgeDot{
      width:10px; height:10px;
      border-radius:50%;
      background: var(--grad);
      box-shadow: 0 8px 18px rgba(255,46,166,.30);
    }
    .kickerMeta{
      color:var(--muted);
      font-size:13px;
      font-weight:650;
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .sep{
      width:5px; height:5px;
      background: rgba(31,36,48,.22);
      border-radius:50%;
      display:inline-block;
    }

    h1{
      margin:0;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.12;
    }
    .heroLead{
      margin:12px 0 16px;
      color: rgba(31,36,48,.80);
      font-size:15px;
      max-width:64ch;
    }

    .heroActions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin:16px 0 14px;
    }

    .heroMetaRow{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:8px;
    }
    .metaPill{
      border-radius:999px;
      padding:10px 12px;
      background: rgba(255,255,255,.74);
      border:1px solid rgba(20,26,40,.10);
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 190px;
    }
    .metaIcon{
      width:34px; height:34px;
      border-radius:12px;
      background: rgba(255,46,166,.10);
      border:1px solid rgba(255,46,166,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .metaIcon svg{ width:18px; height:18px; }
    .metaText{
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .metaTitle{
      font-weight:900;
      font-size:13px;
    }
    .metaSub{
      color:var(--muted);
      font-weight:650;
      font-size:12px;
    }

    .sidePanel{
      border-radius:26px;
      padding:18px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.66));
      border:1px solid rgba(20,26,40,.12);
      box-shadow: var(--shadow2);
      overflow:hidden;
      position:relative;
    }
    .sidePanel::before{
      content:"";
      position:absolute;
      inset:-140px -120px auto auto;
      width:320px; height:320px;
      background: radial-gradient(circle at 30% 30%, rgba(255,46,166,.35), transparent 60%),
                  radial-gradient(circle at 70% 70%, rgba(0,179,255,.26), transparent 55%);
      transform: rotate(18deg);
      opacity:.85;
      pointer-events:none;
    }
    .sidePanelHeader{
      position:relative;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
    }
    .sidePanelTitle{
      font-weight:950;
      letter-spacing:-.3px;
      font-size:16px;
      margin:0;
    }
    .sidePanelNote{
      color:var(--muted);
      font-weight:650;
      font-size:12px;
      margin-top:4px;
    }
    .dataGrid{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .metric{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,26,40,.10);
      border-radius:16px;
      padding:12px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height: 92px;
    }
    .metric:hover{
      transform: translateY(-3px);
      border-color: rgba(255,46,166,.28);
      box-shadow: 0 16px 36px rgba(20,26,40,.10);
    }
    .metricTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:8px;
      margin-bottom:8px;
    }
    .metricTag{
      font-size:12px;
      font-weight:900;
      color: rgba(107,19,61,.98);
      background: rgba(255,46,166,.10);
      border:1px solid rgba(255,46,166,.18);
      padding:6px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .metricValue{
      font-size:22px;
      font-weight:950;
      letter-spacing:-.6px;
      line-height:1.1;
      margin:0;
    }
    .metricDesc{
      margin:0;
      color:var(--muted);
      font-size:12.5px;
      font-weight:650;
    }

    .glowLine{
      height:2px;
      background: linear-gradient(90deg, rgba(255,46,166,.0), rgba(255,46,166,.7), rgba(0,179,255,.7), rgba(124,58,237,.0));
      margin:14px 0;
      border-radius:2px;
    }

    .quickActions{
      position:relative;
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:12px;
    }
    .quickRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,26,40,.10);
      border-radius:16px;
      padding:12px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .quickRow:hover{
      transform: translateY(-2px);
      border-color: rgba(0,179,255,.26);
    }
    .quickLeft{
      display:flex;
      align-items:flex-start;
      gap:10px;
      min-width:0;
    }
    .quickDot{
      width:36px; height:36px;
      border-radius:14px;
      background: rgba(0,179,255,.10);
      border:1px solid rgba(0,179,255,.20);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .quickDot svg{ width:18px; height:18px; }
    .quickTitle{
      font-weight:950;
      font-size:13px;
      margin:0;
    }
    .quickSub{
      margin:3px 0 0;
      color:var(--muted);
      font-weight:650;
      font-size:12.5px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
      max-width: 240px;
    }

    .section{
      padding:22px 0;
    }
    .sectionHeader{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
      flex-wrap:wrap;
    }
    .sectionTitle{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
      font-weight:950;
    }
    .sectionDesc{
      margin:8px 0 0;
      color:rgba(31,36,48,.80);
      font-weight:650;
      font-size:14px;
      max-width:70ch;
    }
    .sectionRightHint{
      color:var(--muted);
      font-weight:700;
      font-size:13px;
      display:flex;
      align-items:center;
      gap:10px;
      white-space:nowrap;
    }
    .hintPip{
      width:9px; height:9px; border-radius:50%;
      background: var(--grad2);
      box-shadow: 0 10px 26px rgba(0,179,255,.26);
    }

    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .grid2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,26,40,.10);
      border-radius:20px;
      padding:16px;
      box-shadow: 0 10px 26px rgba(20,26,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,46,166,.24);
      box-shadow: 0 18px 44px rgba(20,26,40,.10);
    }
    .cardTitle{
      font-weight:950;
      margin:0 0 8px;
      letter-spacing:-.2px;
      font-size:15px;
    }
    .cardText{
      margin:0;
      color:rgba(31,36,48,.80);
      font-weight:650;
      font-size:13.5px;
    }
    .cardTopRow{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .iconBadge{
      width:44px; height:44px;
      border-radius:16px;
      background: rgba(255,46,166,.10);
      border:1px solid rgba(255,46,166,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .iconBadge.alt{
      background: rgba(0,179,255,.10);
      border-color: rgba(0,179,255,.20);
    }
    .iconBadge.green{
      background: rgba(25,195,125,.10);
      border-color: rgba(25,195,125,.20);
    }
    .iconBadge.purple{
      background: rgba(124,58,237,.10);
      border-color: rgba(124,58,237,.20);
    }
    .iconBadge svg{ width:20px; height:20px; }

    .tagCloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .tag{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.76);
      font-weight:800;
      font-size:12.5px;
      color: rgba(31,36,48,.86);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      cursor:default;
    }
    .tag:hover{
      transform: translateY(-2px);
      border-color: rgba(255,46,166,.26);
      background: rgba(255,46,166,.06);
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(5, 1fr);
      gap:12px;
    }
    .step{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,26,40,.10);
      border-radius:20px;
      padding:14px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease;
      min-height: 172px;
    }
    .step:hover{
      transform: translateY(-3px);
      border-color: rgba(0,179,255,.25);
    }
    .stepNum{
      font-weight:1000;
      font-size:12px;
      color: rgba(107,19,61,.98);
      background: rgba(255,46,166,.10);
      border:1px solid rgba(255,46,166,.20);
      padding:6px 10px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      gap:10px;
    }
    .stepNum::before{
      content:"";
      width:10px; height:10px; border-radius:50%;
      background: var(--grad);
      box-shadow: 0 10px 26px rgba(255,46,166,.28);
    }
    .stepTitle{
      margin:10px 0 8px;
      font-weight:1000;
      font-size:14px;
      letter-spacing:-.2px;
    }
    .stepText{
      margin:0;
      color:rgba(31,36,48,.80);
      font-weight:650;
      font-size:13.5px;
    }
    .stepHint{
      margin-top:12px;
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-weight:800;
      font-size:12px;
    }
    .stepHint svg{ width:16px; height:16px; }

    .compareWrap{
      border-radius:26px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 16px 44px rgba(20,26,40,.08);
      overflow:hidden;
    }
    .compareHeader{
      padding:16px 16px 12px;
      background:
        radial-gradient(820px 280px at 15% -10%, rgba(255,46,166,.22), transparent 60%),
        radial-gradient(740px 260px at 95% 0%, rgba(0,179,255,.20), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.72));
      border-bottom:1px solid rgba(20,26,40,.08);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .ratingBox{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .stars{
      width:46px; height:46px;
      border-radius:18px;
      background: rgba(255,46,166,.10);
      border:1px solid rgba(255,46,166,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 14px 30px rgba(255,46,166,.14);
      flex:0 0 auto;
    }
    .stars svg{ width:22px; height:22px; }
    .ratingText{
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .ratingTop{
      font-weight:1000;
      letter-spacing:-.3px;
      font-size:16px;
    }
    .ratingSub{
      color:var(--muted);
      font-weight:800;
      font-size:12.5px;
    }
    .compareScore{
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:4px;
      min-width: 160px;
    }
    .scoreNum{
      font-weight:1100;
      font-size:30px;
      letter-spacing:-1px;
      line-height:1;
      margin:0;
      background: linear-gradient(120deg, rgba(255,46,166,1), rgba(0,179,255,1));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .scoreLabel{
      color:var(--muted);
      font-weight:850;
      font-size:12.5px;
    }

    .compareTableWrap{
      overflow:auto;
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 820px;
    }
    thead th{
      text-align:left;
      font-size:13px;
      color: rgba(31,36,48,.90);
      font-weight:1000;
      padding:14px 14px;
      background: rgba(255,255,255,.80);
      border-bottom:1px solid rgba(20,26,40,.10);
      white-space:nowrap;
    }
    tbody td{
      padding:14px 14px;
      border-bottom:1px solid rgba(20,26,40,.08);
      color: rgba(31,36,48,.84);
      font-weight:700;
      font-size:13.5px;
      vertical-align:middle;
    }
    tbody tr:hover td{
      background: rgba(255,46,166,.05);
    }
    .pillYes{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(25,195,125,.10);
      border:1px solid rgba(25,195,125,.20);
      color:#0f6a3e;
      font-weight:1000;
      white-space:nowrap;
    }
    .pillNo{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(255,106,43,.10);
      border:1px solid rgba(255,106,43,.20);
      color:#7a2b10;
      font-weight:1000;
      white-space:nowrap;
    }

    .formCard{
      border-radius:26px;
      border:1px solid rgba(20,26,40,.10);
      background:
        radial-gradient(900px 320px at 15% -10%, rgba(255,46,166,.22), transparent 60%),
        radial-gradient(700px 300px at 90% 0%, rgba(0,179,255,.20), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.70));
      box-shadow: 0 20px 60px rgba(20,26,40,.10);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    label{
      font-weight:900;
      font-size:13px;
      color: rgba(31,36,48,.90);
    }
    input, select, textarea{
      border:1px solid rgba(20,26,40,.14);
      border-radius:14px;
      background: rgba(255,255,255,.86);
      padding:12px 12px;
      font-size:14px;
      font-weight:700;
      color: rgba(31,36,48,.95);
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
    }
    textarea{ min-height: 120px; resize: vertical; }
    input:focus, select:focus, textarea:focus{
      outline:none;
      box-shadow: var(--focus);
      border-color: rgba(255,46,166,.40);
    }
    .formActions{
      grid-column: 1 / -1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:4px;
    }
    .formHint{
      color:var(--muted);
      font-weight:750;
      font-size:12.5px;
      max-width:56ch;
    }
    .submitBtn{
      background: var(--grad);
      color:white;
      border:0;
      padding:12px 16px;
      border-radius:16px;
      font-weight:1000;
      font-size:14px;
      cursor:pointer;
      transition: transform .15s ease, filter .15s ease;
      display:inline-flex;
      align-items:center;
      gap:10px;
      box-shadow: 0 18px 46px rgba(255,46,166,.22);
    }
    .submitBtn:hover{ transform: translateY(-1px); filter:saturate(1.06); }
    .submitBtn:focus{ outline:none; box-shadow: var(--focus); }
    .tinyNote{
      margin:10px 0 0;
      color: rgba(31,36,48,.62);
      font-weight:700;
      font-size:12.5px;
    }

    .faqGrid{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    details.faq{
      border-radius:18px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,26,40,.10);
      padding:12px 14px;
      box-shadow: 0 10px 26px rgba(20,26,40,.05);
      transition: border-color .18s ease, transform .18s ease;
    }
    details.faq[open]{
      border-color: rgba(255,46,166,.28);
    }
    details.faq summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:1000;
      font-size:14.5px;
      color: rgba(31,36,48,.95);
    }
    details.faq summary::-webkit-details-marker{ display:none; }
    .faqSummaryLeft{
      display:flex;
      align-items:flex-start;
      gap:12px;
      min-width:0;
    }
    .faqQIcon{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(255,46,166,.10);
      border:1px solid rgba(255,46,166,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .faqQIcon svg{ width:18px; height:18px; }
    .faqBody{
      margin-top:10px;
      color: rgba(31,36,48,.78);
      font-weight:700;
      font-size:13.5px;
      padding-left:46px;
    }

    .reviewsGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review{
      border-radius:20px;
      padding:16px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(20,26,40,.06);
      transition: transform .18s ease, border-color .18s ease;
      min-height: 190px;
    }
    .review:hover{
      transform: translateY(-3px);
      border-color: rgba(0,179,255,.25);
    }
    .reviewTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .avatar{
      width:42px; height:42px;
      border-radius:16px;
      background: rgba(0,179,255,.10);
      border:1px solid rgba(0,179,255,.20);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .avatar svg{ width:20px; height:20px; }
    .reviewMeta{
      display:flex;
      flex-direction:column;
      gap:2px;
      min-width:0;
    }
    .reviewName{
      font-weight:1000;
      font-size:14px;
      margin:0;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width: 220px;
    }
    .reviewRole{
      margin:0;
      color:var(--muted);
      font-weight:750;
      font-size:12.5px;
    }
    .starsRow{
      display:flex;
      gap:2px;
      align-items:center;
      opacity:.95;
      flex:0 0 auto;
    }
    .starsRow svg{ width:15px; height:15px; }
    .reviewText{
      margin:8px 0 0;
      color: rgba(31,36,48,.80);
      font-weight:700;
      font-size:13.5px;
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .timelineItem{
      display:grid;
      grid-template-columns: 52px 1fr;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:20px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(20,26,40,.05);
    }
    .timeDot{
      width:52px; height:52px;
      border-radius:20px;
      background: rgba(255,46,166,.10);
      border:1px solid rgba(255,46,166,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      position:relative;
      overflow:hidden;
    }
    .timeDot::after{
      content:"";
      position:absolute;
      inset:-20px -20px auto auto;
      width:70px; height:70px;
      background: radial-gradient(circle at 30% 30%, rgba(255,46,166,.35), transparent 60%),
                  radial-gradient(circle at 70% 70%, rgba(0,179,255,.25), transparent 60%);
      opacity:.9;
      transform: rotate(20deg);
    }
    .timeDot svg{ width:22px; height:22px; position:relative; }
    .timelineTitle{
      margin:2px 0 6px;
      font-weight:1000;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .timelineText{
      margin:0;
      color: rgba(31,36,48,.80);
      font-weight:700;
      font-size:13.5px;
    }
    .timelineChips{
      margin-top:10px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.76);
      color: rgba(31,36,48,.84);
      font-weight:900;
      font-size:12.5px;
      white-space:nowrap;
    }

    .articleGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .articleCard{
      border-radius:20px;
      padding:14px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(20,26,40,.05);
      transition: transform .18s ease, border-color .18s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 175px;
    }
    .articleCard:hover{
      transform: translateY(-3px);
      border-color: rgba(255,46,166,.26);
    }
    .articleTitle{
      font-weight:1000;
      margin:0;
      font-size:14.8px;
      letter-spacing:-.2px;
    }
    .articleMeta{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      color:var(--muted);
      font-weight:850;
      font-size:12.5px;
      margin-top:auto;
    }
    .articleLink{
      margin-top:6px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:1000;
      font-size:13.5px;
      color: rgba(31,36,48,.95);
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.80);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .articleLink:hover{
      transform: translateY(-1px);
      background: rgba(255,46,166,.06);
      border-color: rgba(255,46,166,.22);
    }

    .caseGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .case{
      border-radius:20px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(20,26,40,.06);
      padding:14px;
      transition: transform .18s ease, border-color .18s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 220px;
    }
    .case:hover{
      transform: translateY(-3px);
      border-color: rgba(0,179,255,.25);
    }
    .caseHeader{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .caseTitle{
      margin:0;
      font-weight:1000;
      font-size:14.8px;
      letter-spacing:-.2px;
    }
    .caseBadge{
      padding:8px 10px;
      border-radius:999px;
      font-weight:1000;
      font-size:12px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.78);
      color: rgba(31,36,48,.86);
      white-space:nowrap;
    }
    .caseText{
      margin:0;
      color: rgba(31,36,48,.80);
      font-weight:700;
      font-size:13.5px;
    }
    .caseList{
      margin:0;
      padding-left:18px;
      color: rgba(31,36,48,.78);
      font-weight:700;
      font-size:13.3px;
    }
    .caseList li{ margin:6px 0; }

    .pricingRow{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:stretch;
    }
    .priceCard{
      flex: 1 1 240px;
      border-radius:20px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.78);
      padding:14px;
      box-shadow: 0 10px 26px rgba(20,26,40,.05);
      transition: transform .18s ease, border-color .18s ease;
      min-height: 170px;
    }
    .priceCard:hover{
      transform: translateY(-3px);
      border-color: rgba(124,58,237,.25);
    }
    .priceTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:8px;
    }
    .priceTitle{
      margin:0;
      font-weight:1000;
      font-size:14.8px;
      letter-spacing:-.2px;
    }
    .priceChip{
      padding:8px 10px;
      border-radius:999px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      color: rgba(56,24,124,.95);
      font-weight:1000;
      font-size:12.5px;
      white-space:nowrap;
    }
    .priceValue{
      font-size:26px;
      letter-spacing:-.8px;
      font-weight:1100;
      margin:8px 0 0;
      background: linear-gradient(120deg, rgba(124,58,237,1), rgba(0,179,255,1));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      line-height:1.1;
    }
    .priceDesc{
      margin:6px 0 0;
      color:var(--muted);
      font-weight:800;
      font-size:12.8px;
    }
    .priceBullets{
      margin:10px 0 0;
      padding-left:18px;
      color: rgba(31,36,48,.80);
      font-weight:750;
      font-size:13.2px;
    }

    .networkGrid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .node{
      border-radius:20px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.78);
      padding:14px;
      box-shadow: 0 10px 26px rgba(20,26,40,.05);
      transition: transform .18s ease, border-color .18s ease;
      min-height: 138px;
    }
    .node:hover{
      transform: translateY(-3px);
      border-color: rgba(255,46,166,.24);
    }
    .nodeTitle{
      margin:0;
      font-weight:1000;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .nodeText{
      margin:8px 0 0;
      color:rgba(31,36,48,.80);
      font-weight:750;
      font-size:13.2px;
    }
    .nodePills{
      margin-top:10px;
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }

    .footer{
      padding:26px 0 18px;
      background:
        radial-gradient(900px 280px at 10% 0%, rgba(255,46,166,.16), transparent 55%),
        radial-gradient(760px 260px at 95% 0%, rgba(0,179,255,.14), transparent 55%),
        linear-gradient(180deg, rgba(17,24,39,.98), rgba(17,24,39,.96));
      color: rgba(255,255,255,.92);
      border-top: 1px solid rgba(255,255,255,.10);
      margin-top: 10px;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:18px;
      align-items:flex-start;
    }
    .footBrand{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footLogoRow{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .footLogo{
      width:44px; height:44px;
      border-radius:16px;
      background: rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      padding:8px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .footLogo img{ width:100%; height:auto; }
    .footTitle{
      font-weight:1100;
      letter-spacing:-.2px;
      font-size:16px;
      margin:0;
    }
    .footDesc{
      margin:0;
      color: rgba(255,255,255,.78);
      font-weight:720;
      font-size:13.5px;
      max-width:52ch;
    }
    .footColTitle{
      font-weight:1100;
      font-size:14px;
      margin:0 0 10px;
      color: rgba(255,255,255,.93);
    }
    .footLinks{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .footLinks a{
      color: rgba(255,255,255,.78);
      font-weight:800;
      font-size:13.2px;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.06);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      width: fit-content;
    }
    .footLinks a:hover{
      transform: translateY(-1px);
      background: rgba(255,46,166,.12);
      border-color: rgba(255,46,166,.26);
      color: rgba(255,255,255,.96);
    }
    .footBottom{
      margin-top:18px;
      padding-top:14px;
      border-top: 1px solid rgba(255,255,255,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .copy{
      color: rgba(255,255,255,.75);
      font-weight:800;
      font-size:12.8px;
    }
    .footRight{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-end;
    }
    .socialLink{
      color: rgba(255,255,255,.88);
      font-weight:900;
      font-size:12.8px;
      padding:9px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      transition: transform .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .socialLink:hover{
      transform: translateY(-1px);
      border-color: rgba(0,179,255,.30);
    }

    .floatingKefu{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .kefuBtn{
      width:54px;
      height:54px;
      border-radius:20px;
      background: rgba(255,255,255,.85);
      border:1px solid rgba(20,26,40,.14);
      box-shadow: 0 18px 44px rgba(20,26,40,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease;
      position:relative;
      overflow:hidden;
    }
    .kefuBtn:hover{
      transform: translateY(-2px);
      border-color: rgba(255,46,166,.28);
    }
    .kefuBtn:focus{ outline:none; box-shadow: var(--focus); }
    .kefuBtn svg{ width:22px; height:22px; }
    .kefuBtn::after{
      content:"";
      position:absolute;
      inset:-30px -30px auto auto;
      width:90px; height:90px;
      background: radial-gradient(circle at 30% 30%, rgba(255,46,166,.35), transparent 60%),
                  radial-gradient(circle at 70% 70%, rgba(0,179,255,.26), transparent 60%);
      opacity:.55;
      transform: rotate(18deg);
      pointer-events:none;
    }
    .kefuPanel{
      width: 320px;
      max-width: calc(100vw - 32px);
      border-radius:22px;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(20,26,40,.12);
      box-shadow: 0 26px 70px rgba(20,26,40,.18);
      overflow:hidden;
      transform-origin: 90% 100%;
      animation: popIn .18s ease both;
    }
    @keyframes popIn{
      from{ opacity:0; transform: translateY(8px) scale(.98); }
      to{ opacity:1; transform: translateY(0) scale(1); }
    }
    .kefuHead{
      padding:12px 14px;
      border-bottom:1px solid rgba(20,26,40,.08);
      background: linear-gradient(120deg, rgba(255,46,166,.10), rgba(0,179,255,.08));
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .kefuHead strong{
      font-weight:1100;
      font-size:14px;
      letter-spacing:-.2px;
    }
    .kefuClose{
      width:34px;
      height:34px;
      border-radius:14px;
      border:1px solid rgba(20,26,40,.12);
      background: rgba(255,255,255,.85);
      cursor:pointer;
      transition: transform .15s ease;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .kefuClose:hover{ transform: translateY(-1px); }
    .kefuClose:focus{ outline:none; box-shadow: var(--focus); }
    .kefuClose svg{ width:16px; height:16px; }
    .kefuBody{
      padding:12px 14px 14px;
      display:grid;
      grid-template-columns: 96px 1fr;
      gap:12px;
      align-items:center;
    }
    .qrWrap{
      width:96px;
      height:96px;
      border-radius:22px;
      border:1px solid rgba(20,26,40,.10);
      background: rgba(255,255,255,.78);
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
    }
    .qrWrap img{
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .kefuText{
      display:flex;
      flex-direction:column;
      gap:8px;
      min-width:0;
    }
    .kefuText p{
      margin:0;
      color: rgba(31,36,48,.80);
      font-weight:750;
      font-size:13px;
    }
    .kefuLinks{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:2px;
    }
    .kefuSmallBtn{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,26,40,.12);
      background: rgba(255,255,255,.85);
      font-weight:1000;
      font-size:12.8px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      cursor:pointer;
      color: rgba(31,36,48,.95);
    }
    .kefuSmallBtn:hover{
      transform: translateY(-1px);
      border-color: rgba(255,46,166,.25);
      background: rgba(255,46,166,.06);
    }

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

    @media (max-width: 980px){
      .heroGrid{ grid-template-columns: 1fr; }
      .reviewsGrid{ grid-template-columns: 1fr; }
      .grid3{ grid-template-columns: 1fr; }
      .grid2{ grid-template-columns: 1fr; }
      .steps{ grid-template-columns: 1fr; }
      .articleGrid{ grid-template-columns: 1fr; }
      .caseGrid{ grid-template-columns: 1fr; }
      .networkGrid{ grid-template-columns: repeat(2, 1fr); }
      .formGrid{ grid-template-columns: 1fr; }
      .footerGrid{ grid-template-columns: 1fr; }
      .compareScore{ align-items:flex-start; }
      table{ min-width: 720px; }
      .nav{ display:none; }
      .burger{ display:flex; }
      .mobileNav{ display:block; }
      .heroCard{ padding:18px; }
      h1{ font-size:30px; }
    }