:root{
      --bg0:#fff7f7;
      --bg1:#ffffff;
      --ink:#101828;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(16,24,40,.12);
      --card:rgba(255,255,255,.78);
      --card2:rgba(255,255,255,.92);
      --shadow:0 10px 30px rgba(16,24,40,.08);
      --shadow2:0 8px 20px rgba(16,24,40,.10);
      --shadow3:0 18px 50px rgba(16,24,40,.12);
      --brand1:#ff2d55;
      --brand2:#7c3aed;
      --brand3:#06b6d4;
      --brand4:#f97316;
      --good:#16a34a;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:26px;
      --container:1120px;
      --gutter:20px;
      --focus:0 0 0 4px rgba(124,58,237,.18), 0 0 0 1px rgba(124,58,237,.35);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC", "Noto Sans", sans-serif;
      color:var(--ink);
      background:
        radial-gradient(1000px 520px at 18% -10%, rgba(255,45,85,.16) 0%, rgba(255,45,85,0) 55%),
        radial-gradient(1000px 520px at 80% 10%, rgba(124,58,237,.18) 0%, rgba(124,58,237,0) 55%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 45%, #fff 100%);
    }
    a{color:inherit}
    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--gutter);
    }
    header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.68);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(16,24,40,.08);
    }
    .navwrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:180px;
    }
    .brand img{
      width:44px; height:44px; border-radius:12px;
      object-fit:cover;
      box-shadow:0 10px 24px rgba(255,45,85,.16);
      border:1px solid rgba(16,24,40,.08);
      background:#fff;
    }
    .brand .btxt{display:flex; flex-direction:column; line-height:1.1}
    .brand .name{font-weight:850; letter-spacing:.2px}
    .brand .sub{font-size:12px; color:var(--muted2)}
    .navright{
      display:flex; align-items:center; gap:12px; justify-content:flex-end;
      flex:1;
    }
    .menu{
      display:flex; align-items:center; gap:14px;
      padding:6px 8px;
      border-radius:999px;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(16,24,40,.08);
    }
    .menu a{
      text-decoration:none;
      font-size:13px;
      color:rgba(16,24,40,.86);
      padding:8px 10px;
      border-radius:999px;
      transition: background .2s ease, transform .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .menu a:hover{
      background:rgba(124,58,237,.10);
      color:rgba(124,58,237,1);
      transform:translateY(-1px);
    }
    .navcta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      appearance:none;
      border:none;
      cursor:pointer;
      border-radius:999px;
      padding:11px 14px;
      font-weight:750;
      letter-spacing:.2px;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
      text-decoration:none;
      display:inline-flex; align-items:center; gap:10px;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn:active{transform:translateY(1px)}
    .btn-primary{
      background:linear-gradient(135deg, var(--brand1) 0%, #ff4d6d 40%, var(--brand2) 100%);
      color:white;
      box-shadow:0 14px 30px rgba(255,45,85,.20), 0 10px 25px rgba(124,58,237,.18);
      border:1px solid rgba(255,255,255,.22);
    }
    .btn-primary:hover{transform:translateY(-1px); box-shadow:0 18px 40px rgba(255,45,85,.24), 0 12px 30px rgba(124,58,237,.22)}
    .btn-ghost{
      background:rgba(255,255,255,.8);
      color:rgba(16,24,40,.88);
      border:1px solid rgba(16,24,40,.12);
      box-shadow:0 10px 24px rgba(16,24,40,.06);
    }
    .btn-ghost:hover{transform:translateY(-1px); box-shadow:0 14px 30px rgba(16,24,40,.10)}
    .icon-dot{
      width:10px; height:10px; border-radius:50%;
      background:rgba(255,255,255,.9);
      box-shadow:0 0 0 4px rgba(255,255,255,.18);
    }
    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.12);
      background:rgba(255,255,255,.78);
      cursor:pointer;
      align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    }
    .burger:focus{outline:none; box-shadow:var(--focus)}
    .burger:hover{transform:translateY(-1px); box-shadow:0 14px 28px rgba(16,24,40,.10)}
    .burger svg{width:20px; height:20px}
    .mobilePanel{
      display:none;
      padding-bottom:14px;
    }
    .mobilePanel .panelInner{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(16,24,40,.10);
      border-radius:18px;
      padding:12px;
    }
    .mobileLinks{
      display:flex; flex-direction:column; gap:6px;
    }
    .mobileLinks a{
      text-decoration:none;
      padding:12px 12px;
      border-radius:14px;
      font-weight:650;
      color:rgba(16,24,40,.90);
      border:1px solid rgba(16,24,40,.08);
      background:rgba(255,255,255,.68);
    }
    .mobileLinks a:hover{background:rgba(124,58,237,.10); border-color:rgba(124,58,237,.20)}
    main{padding-bottom:10px}
    .hero{
      padding:38px 0 22px;
      position:relative;
      overflow:hidden;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:18px;
      align-items:stretch;
    }
    .heroLeft{
      position:relative;
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(255,45,85,.22) 0%, rgba(255,45,85,0) 55%),
        radial-gradient(800px 380px at 70% 10%, rgba(124,58,237,.20) 0%, rgba(124,58,237,0) 55%),
        linear-gradient(135deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.55) 100%);
      box-shadow:var(--shadow3);
      padding:26px;
      min-height:360px;
    }
    .spark{
      position:absolute; inset:-2px;
      pointer-events:none;
      opacity:.75;
      background:
        linear-gradient(90deg, rgba(255,45,85,.15), rgba(124,58,237,.15), rgba(6,182,212,.12));
      mask-image: radial-gradient(650px 240px at 20% 10%, #000 0%, rgba(0,0,0,.2) 55%, transparent 70%);
    }
    .heroKicker{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.70);
      font-weight:720;
      font-size:12px;
      color:rgba(16,24,40,.86);
    }
    .pill .badge{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow:0 0 0 4px rgba(255,45,85,.12);
    }
    .heroTitle{
      margin:0;
      font-size:34px;
      letter-spacing:-.5px;
      line-height:1.12;
      font-weight:920;
    }
    .heroTitle .em{
      color:rgba(124,58,237,1);
    }
    .heroDesc{
      margin:12px 0 18px;
      color:rgba(16,24,40,.76);
      font-size:15px;
      line-height:1.65;
      max-width:56ch;
    }
    .heroActions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-bottom:16px;
    }
    .miniMeta{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      margin-top:6px;
    }
    .metaChip{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.62);
    }
    .metaChip svg{flex:0 0 auto; width:18px; height:18px; margin-top:1px}
    .metaChip .t1{font-weight:820; font-size:13px}
    .metaChip .t2{font-size:12px; color:var(--muted2); margin-top:2px}
    .heroRight{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.55) 100%);
      box-shadow:var(--shadow);
      padding:18px;
      display:flex; flex-direction:column; gap:12px;
      min-height:360px;
    }
    .rightTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .rightTitle{
      font-size:14px; font-weight:860;
      color:rgba(16,24,40,.88);
      margin:0;
    }
    .rightHint{
      font-size:12px; color:var(--muted2); margin-top:6px; line-height:1.5;
    }
    .liveCard{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.70);
      padding:14px;
      position:relative;
      overflow:hidden;
      flex:1;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:10px;
    }
    .liveCard:before{
      content:"";
      position:absolute;
      inset:-1px;
      background:
        radial-gradient(400px 180px at 15% 10%, rgba(255,45,85,.18), transparent 60%),
        radial-gradient(420px 200px at 85% 15%, rgba(124,58,237,.18), transparent 60%),
        radial-gradient(360px 170px at 40% 85%, rgba(6,182,212,.12), transparent 62%);
      pointer-events:none;
    }
    .liveCard > *{position:relative}
    .scoreRow{
      display:flex; align-items:flex-end; justify-content:space-between; gap:10px;
    }
    .scoreBig{
      font-size:38px; font-weight:950; letter-spacing:-1px;
      color:rgba(16,24,40,.95);
    }
    .scoreBig span{font-size:14px; color:rgba(16,24,40,.60); font-weight:820; margin-left:8px}
    .stars{
      display:flex; gap:4px; align-items:center;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.6);
      border:1px solid rgba(16,24,40,.10);
    }
    .stars svg{width:16px; height:16px; color:#f59e0b}
    .liveList{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top:2px;
    }
    .abilityRow{
      display:flex; gap:10px; align-items:flex-start;
    }
    .abilityRow .dot{
      width:10px; height:10px; border-radius:50%;
      margin-top:6px;
      background:linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow:0 0 0 4px rgba(124,58,237,.12);
      flex:0 0 auto;
    }
    .abilityRow .label{font-weight:860; font-size:13px}
    .abilityRow .desc{color:var(--muted2); font-size:12.5px; margin-top:2px; line-height:1.5}
    .rightCtaRow{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      justify-content:space-between;
      margin-top:6px;
    }
    .linkRow{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .smallLink{
      text-decoration:none;
      font-weight:720;
      font-size:13px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.12);
      background:rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    .smallLink:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 28px rgba(16,24,40,.10);
      border-color:rgba(124,58,237,.28);
      background:rgba(124,58,237,.08);
    }
    .section{
      padding:26px 0;
    }
    .sectionHead{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:14px;
    }
    .h2{
      margin:0;
      font-size:22px;
      font-weight:920;
      letter-spacing:-.3px;
    }
    .subhead{
      margin:8px 0 0;
      color:rgba(16,24,40,.70);
      line-height:1.7;
      font-size:14px;
      max-width:64ch;
    }
    .tagline{
      display:flex; gap:8px; align-items:center; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .tag{
      font-size:12px;
      font-weight:800;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.68);
      color:rgba(16,24,40,.80);
    }
    .tag strong{color:rgba(124,58,237,1)}
    .grid3{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .grid2{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:14px;
    }
    .card{
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 10px 24px rgba(16,24,40,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease;
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 45px rgba(16,24,40,.10);
      border-color:rgba(124,58,237,.22);
    }
    .cardTop{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      margin-bottom:10px;
    }
    .cardIcon{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0)),
        linear-gradient(135deg, rgba(255,45,85,.20), rgba(124,58,237,.18));
      box-shadow:0 16px 36px rgba(124,58,237,.12);
      flex:0 0 auto;
    }
    .cardIcon svg{width:22px; height:22px; color:rgba(16,24,40,.92)}
    .cardTitle{
      margin:0;
      font-size:15px;
      font-weight:900;
      letter-spacing:-.2px;
    }
    .cardDesc{
      margin:8px 0 0;
      color:rgba(16,24,40,.72);
      line-height:1.7;
      font-size:13.5px;
    }
    .list{
      margin:10px 0 0;
      padding-left:18px;
      color:rgba(16,24,40,.78);
      line-height:1.8;
      font-size:13.5px;
    }
    .list li{margin:3px 0}
    .featureStrip{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:12px;
    }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.62);
      font-weight:800;
      font-size:12.5px;
      color:rgba(16,24,40,.82);
    }
    .chip.alt{
      background:linear-gradient(135deg, rgba(255,45,85,.14), rgba(124,58,237,.10));
      border-color:rgba(124,58,237,.22);
    }
    .split{
      display:grid;
      grid-template-columns: .92fr 1.08fr;
      gap:14px;
      align-items:stretch;
    }
    .timeline{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.70);
    }
    .stepNum{
      width:36px; height:36px; border-radius:14px;
      background:linear-gradient(135deg, rgba(255,45,85,.22), rgba(124,58,237,.18));
      border:1px solid rgba(16,24,40,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(16,24,40,.90);
      flex:0 0 auto;
    }
    .step h3{
      margin:0;
      font-size:14px;
      font-weight:920;
      letter-spacing:-.2px;
    }
    .step p{
      margin:6px 0 0;
      color:rgba(16,24,40,.72);
      line-height:1.65;
      font-size:13.5px;
    }
    .tableWrap{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.70);
      overflow:auto;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:720px;
      font-size:13.5px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(16,24,40,.08);
      vertical-align:top;
    }
    th{
      background:linear-gradient(135deg, rgba(255,45,85,.12), rgba(124,58,237,.10));
      font-weight:930;
      text-align:left;
      color:rgba(16,24,40,.92);
    }
    tr:last-child td{border-bottom:none}
    .scoreCell{
      font-weight:920;
      white-space:nowrap;
    }
    .star5{display:inline-flex; gap:4px; align-items:center}
    .star5 svg{width:16px; height:16px; color:#f59e0b}
    .goodMark{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(22,163,74,.08);
      color:rgba(22,163,74,1);
      font-weight:900;
      white-space:nowrap;
    }
    .badMark{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(245,158,11,.10);
      color:rgba(217,119,6,1);
      font-weight:900;
      white-space:nowrap;
    }
    .twoTone{
      background:
        radial-gradient(900px 420px at 5% 0%, rgba(255,45,85,.14) 0%, rgba(255,45,85,0) 55%),
        radial-gradient(900px 420px at 95% 10%, rgba(124,58,237,.14) 0%, rgba(124,58,237,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.76) 0%, rgba(255,255,255,.62) 100%);
    }
    .compareGrid{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
    }
    .compareCards{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .bigReview{
      padding:18px;
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(550px 220px at 20% 0%, rgba(255,45,85,.16), rgba(255,45,85,0) 60%),
        radial-gradient(550px 220px at 85% 15%, rgba(124,58,237,.16), rgba(124,58,237,0) 60%),
        rgba(255,255,255,.72);
      box-shadow:0 16px 46px rgba(16,24,40,.10);
    }
    .reviewTop{
      display:flex; justify-content:space-between; gap:12px; align-items:flex-start;
      margin-bottom:12px;
    }
    .reviewTop .title{
      font-weight:950; letter-spacing:-.3px; font-size:16px;
    }
    .reviewTop .desc{margin-top:8px; color:rgba(16,24,40,.72); line-height:1.65; font-size:13.5px; max-width:42ch}
    .progressRow{
      display:flex; flex-direction:column; gap:10px;
      margin-top:6px;
    }
    .barRow{
      display:flex; align-items:center; gap:10px;
    }
    .barRow .k{font-size:12.5px; color:rgba(16,24,40,.72); width:110px}
    .bar{
      flex:1;
      height:10px;
      border-radius:999px;
      background:rgba(16,24,40,.08);
      overflow:hidden;
      border:1px solid rgba(16,24,40,.08);
    }
    .bar > i{
      display:block;
      height:100%;
      width:80%;
      background:linear-gradient(90deg, var(--brand1), var(--brand2));
      border-radius:999px;
    }
    .barVal{
      width:52px;
      text-align:right;
      font-weight:950;
      font-size:12.5px;
      color:rgba(16,24,40,.80);
    }
    .reviewsGrid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .quote{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 10px 24px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease;
    }
    .quote:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 45px rgba(16,24,40,.10);
      border-color:rgba(255,45,85,.20);
    }
    .quoteTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      width:44px; height:44px; border-radius:16px;
      background:linear-gradient(135deg, rgba(255,45,85,.18), rgba(124,58,237,.18));
      border:1px solid rgba(16,24,40,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      color:rgba(16,24,40,.90);
      flex:0 0 auto;
    }
    .qMeta .role{font-weight:920; font-size:13.5px}
    .qMeta .org{color:var(--muted2); font-size:12.5px; margin-top:4px; line-height:1.4}
    .quoteText{
      margin:0;
      color:rgba(16,24,40,.75);
      line-height:1.75;
      font-size:13.5px;
    }
    .quoteFooter{
      display:flex; gap:10px; align-items:center; justify-content:space-between;
      margin-top:12px;
    }
    .tagMini{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.60);
      font-size:12.5px;
      font-weight:850;
      color:rgba(16,24,40,.80);
    }
    .reviewStars{
      display:flex; gap:4px; align-items:center;
      color:#f59e0b;
      font-weight:950;
      font-size:12.5px;
    }
    .gallery{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .imgCard{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.70);
      overflow:hidden;
      box-shadow:0 10px 24px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease;
      display:flex; flex-direction:column;
    }
    .imgCard:hover{transform:translateY(-3px); box-shadow:0 18px 45px rgba(16,24,40,.10); border-color:rgba(124,58,237,.22)}
    .imgTop{
      padding:12px;
      background:
        radial-gradient(320px 120px at 20% 0%, rgba(255,45,85,.14), transparent 60%),
        radial-gradient(320px 120px at 85% 15%, rgba(124,58,237,.14), transparent 60%),
        rgba(255,255,255,.65);
    }
    .imgTop img{
      width:100%;
      max-height:180px;
      object-fit:contain;
      display:block;
      border-radius:14px;
      background:#fff;
      border:1px solid rgba(16,24,40,.08);
    }
    .imgBody{padding:14px 14px 16px}
    .imgBody .t{font-weight:940; letter-spacing:-.2px}
    .imgBody .d{margin-top:6px; color:rgba(16,24,40,.72); font-size:13.5px; line-height:1.65}
    .articleList{
      display:grid; grid-template-columns:1fr;
      gap:12px;
    }
    .articleItem{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.70);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease;
    }
    .articleItem:hover{transform:translateY(-2px); box-shadow:0 18px 45px rgba(16,24,40,.10); border-color:rgba(255,45,85,.20)}
    .articleLeft .k{display:flex; gap:8px; align-items:center; flex-wrap:wrap}
    .badge2{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.62);
      font-size:12px;
      font-weight:900;
      color:rgba(16,24,40,.82);
    }
    .articleTitle{
      margin:10px 0 0;
      font-weight:950;
      letter-spacing:-.2px;
      font-size:14.5px;
      line-height:1.4;
    }
    .articleDesc{
      margin:8px 0 0;
      color:rgba(16,24,40,.70);
      line-height:1.7;
      font-size:13.5px;
      max-width:62ch;
    }
    .articleRight{
      flex:0 0 auto;
      display:flex; flex-direction:column; align-items:flex-end; gap:10px;
    }
    .articleTime{color:var(--muted2); font-size:12.5px; white-space:nowrap}
    .arrowBtn{
      text-decoration:none;
      display:inline-flex; align-items:center; gap:10px;
      font-weight:900;
      font-size:13px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.12);
      background:rgba(255,255,255,.62);
    }
    .arrowBtn:hover{border-color:rgba(124,58,237,.28); background:rgba(124,58,237,.08)}
    .arrowBtn svg{width:16px; height:16px}
    .formCard{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(820px 340px at 15% 0%, rgba(255,45,85,.16) 0%, rgba(255,45,85,0) 60%),
        radial-gradient(820px 340px at 95% 10%, rgba(124,58,237,.16) 0%, rgba(124,58,237,0) 60%),
        rgba(255,255,255,.72);
      box-shadow:var(--shadow2);
      overflow:hidden;
    }
    .formInner{
      padding:18px;
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:stretch;
    }
    .formIntro{
      padding:10px 6px 6px;
    }
    .formIntro h3{
      margin:0;
      font-size:16px;
      font-weight:950;
      letter-spacing:-.2px;
    }
    .formIntro p{
      margin:10px 0 0;
      color:rgba(16,24,40,.72);
      line-height:1.7;
      font-size:13.5px;
    }
    .formSteps{
      margin-top:14px;
      display:flex; flex-direction:column; gap:10px;
    }
    .formSteps .s{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.66);
    }
    .numBadge{
      width:34px; height:34px; border-radius:14px;
      background:linear-gradient(135deg, rgba(255,45,85,.20), rgba(124,58,237,.18));
      border:1px solid rgba(16,24,40,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      flex:0 0 auto;
    }
    .s .stxt .a{font-weight:920; font-size:13.5px}
    .s .stxt .b{color:var(--muted2); font-size:12.5px; margin-top:4px; line-height:1.5}
    form{
      background:rgba(255,255,255,.62);
      border:1px solid rgba(16,24,40,.10);
      border-radius:18px;
      padding:14px;
      display:flex; flex-direction:column; gap:10px;
      box-shadow:0 12px 30px rgba(16,24,40,.06);
    }
    .row2{display:grid; grid-template-columns:1fr 1fr; gap:10px}
    label{
      display:flex; flex-direction:column; gap:7px;
      font-weight:850;
      font-size:12.5px;
      color:rgba(16,24,40,.82);
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.12);
      background:rgba(255,255,255,.88);
      padding:12px 12px;
      font-size:14px;
      color:rgba(16,24,40,.92);
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease;
    }
    textarea{min-height:92px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      box-shadow:var(--focus);
      border-color:rgba(124,58,237,.35);
    }
    .formActions{
      display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-top:6px;
    }
    .smallNote{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.5;
      max-width:40ch;
    }
    .toast{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      background:rgba(16,24,40,.92);
      color:#fff;
      border:1px solid rgba(255,255,255,.14);
      padding:12px 14px;
      border-radius:16px;
      box-shadow:0 18px 50px rgba(16,24,40,.30);
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
      z-index:80;
      max-width:min(92vw, 520px);
      font-size:13.5px;
      line-height:1.5;
    }
    .toast.show{
      opacity:1;
      transform:translateX(-50%) translateY(-4px);
    }
    .faqGrid{
      display:grid; grid-template-columns:1fr 1fr; gap:14px;
      align-items:start;
    }
    details{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.70);
      padding:12px 14px;
      box-shadow:0 10px 24px rgba(16,24,40,.06);
      transition: border-color .2s ease, transform .18s ease, box-shadow .25s ease;
    }
    details[open]{
      border-color:rgba(124,58,237,.26);
      box-shadow:0 18px 45px rgba(16,24,40,.10);
      transform:translateY(-2px);
    }
    summary{
      cursor:pointer;
      font-weight:920;
      letter-spacing:-.2px;
      list-style:none;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:6px 0;
      user-select:none;
    }
    summary::-webkit-details-marker{display:none}
    .sumLeft{
      display:flex; gap:10px; align-items:flex-start;
    }
    .qmark{
      width:30px; height:30px; border-radius:12px;
      border:1px solid rgba(16,24,40,.10);
      background:linear-gradient(135deg, rgba(255,45,85,.16), rgba(124,58,237,.14));
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      flex:0 0 auto;
    }
    .chev{
      width:22px; height:22px;
      border-radius:10px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.62);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease;
      flex:0 0 auto;
    }
    details[open] .chev{transform:rotate(180deg)}
    .answer{
      color:rgba(16,24,40,.74);
      line-height:1.75;
      font-size:13.5px;
      padding:6px 0 4px;
    }
    .aiBlocs{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:stretch;
    }
    .cloud{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 10px 24px rgba(16,24,40,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .cloud:after{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(520px 220px at 10% 0%, rgba(255,45,85,.14), transparent 60%),
        radial-gradient(520px 220px at 90% 20%, rgba(124,58,237,.14), transparent 60%),
        radial-gradient(420px 220px at 60% 95%, rgba(6,182,212,.10), transparent 62%);
      pointer-events:none;
    }
    .cloud > *{position:relative}
    .cloud h3{margin:0; font-size:16px; font-weight:950; letter-spacing:-.2px}
    .cloud p{margin:10px 0 0; color:rgba(16,24,40,.72); line-height:1.7; font-size:13.5px}
    .tagCloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:14px;
    }
    .tagCloud .t{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.66);
      font-weight:900;
      font-size:12.5px;
      color:rgba(16,24,40,.82);
    }
    .tagCloud .t.hot{
      background:linear-gradient(135deg, rgba(255,45,85,.16), rgba(124,58,237,.12));
      border-color:rgba(255,45,85,.22);
    }
    .twoColList{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      margin-top:10px;
    }
    .checkItem{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.70);
    }
    .checkItem svg{width:18px; height:18px; color:rgba(124,58,237,1); margin-top:2px}
    .checkItem .tt{font-weight:920; font-size:13.5px}
    .checkItem .dd{color:var(--muted2); font-size:12.5px; margin-top:4px; line-height:1.5}
    .pricePanel{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        linear-gradient(135deg, rgba(255,45,85,.10), rgba(124,58,237,.10)),
        rgba(255,255,255,.72);
      box-shadow:0 14px 40px rgba(16,24,40,.08);
    }
    .priceTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .priceTop h3{
      margin:0; font-size:16px; font-weight:960; letter-spacing:-.2px
    }
    .priceTop p{
      margin:8px 0 0; color:rgba(16,24,40,.72); line-height:1.7; font-size:13.5px; max-width:58ch
    }
    .priceGrid{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;
    }
    .priceCard{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.72);
    }
    .priceCard .k{font-weight:950; letter-spacing:-.2px}
    .priceCard .v{
      margin-top:10px;
      font-weight:1000;
      font-size:22px;
      letter-spacing:-.6px;
    }
    .priceCard .u{color:var(--muted2); font-size:12.5px; margin-top:6px; line-height:1.5}
    .priceCard .hint{margin-top:10px; color:rgba(16,24,40,.72); font-size:12.5px; line-height:1.55}
    .networkGrid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .networkCard{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 10px 24px rgba(16,24,40,.06);
    }
    .networkCard .t{font-weight:960; letter-spacing:-.2px}
    .networkCard .d{margin-top:8px; color:rgba(16,24,40,.72); font-size:13.5px; line-height:1.7}
    .networkCard .links{
      margin-top:12px; display:flex; flex-wrap:wrap; gap:8px;
    }
    .miniLink{
      text-decoration:none;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.12);
      background:rgba(255,255,255,.62);
      font-size:12.5px;
      font-weight:900;
      color:rgba(16,24,40,.82);
    }
    .miniLink:hover{border-color:rgba(124,58,237,.28); background:rgba(124,58,237,.08)}
    footer{
      background:
        radial-gradient(900px 360px at 20% 0%, rgba(255,45,85,.16) 0%, rgba(255,45,85,0) 60%),
        radial-gradient(900px 360px at 90% 10%, rgba(124,58,237,.18) 0%, rgba(124,58,237,0) 60%),
        linear-gradient(180deg, rgba(16,24,40,.98) 0%, rgba(16,24,40,.98) 100%);
      color:#fff;
      border-top:1px solid rgba(255,255,255,.10);
      margin-top:18px;
    }
    .footerInner{
      padding:22px 0 16px;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .footerBrand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footerBrand img{
      width:44px; height:44px; border-radius:16px; object-fit:cover;
      border:1px solid rgba(255,255,255,.14);
      background:#fff;
    }
    .footerBrand .ftitle{font-weight:980; letter-spacing:-.2px; margin:0}
    .footerBrand .fdesc{margin:10px 0 0; color:rgba(255,255,255,.82); line-height:1.7; font-size:13.5px; max-width:46ch}
    .footerCol h3{
      margin:0 0 10px;
      font-size:14px;
      font-weight:980;
      color:rgba(255,255,255,.96);
      letter-spacing:-.2px;
    }
    .footerLinks{
      display:flex; flex-direction:column; gap:8px;
    }
    .footerLinks a{
      color:rgba(255,255,255,.86);
      text-decoration:none;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
      font-size:13.5px;
      font-weight:760;
      line-height:1.3;
    }
    .footerLinks a:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,.10);
      border-color:rgba(255,255,255,.18);
    }
    .footerBottom{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.80);
      font-size:12.5px;
    }
    .footerBottom .left{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .footerBottom .right{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .kefuFloat{
      position:fixed;
      right:16px;
      bottom:18px;
      z-index:90;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .floatBtn{
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.12);
      background:rgba(255,255,255,.82);
      box-shadow:0 18px 45px rgba(16,24,40,.18);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    }
    .floatBtn:hover{transform:translateY(-3px); background:#fff; box-shadow:0 24px 60px rgba(16,24,40,.22)}
    .floatBtn:focus{outline:none; box-shadow:var(--focus)}
    .floatBtn svg{width:20px; height:20px}
    .qrPopup{
      width:230px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.88);
      box-shadow:0 20px 60px rgba(16,24,40,.22);
      overflow:hidden;
      transform-origin: 100% 100%;
      opacity:0;
      transform: translateY(10px) scale(.98);
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
    }
    .qrPopup.show{
      opacity:1;
      transform: translateY(0) scale(1);
      pointer-events:auto;
    }
    .qrHead{
      padding:10px 12px;
      border-bottom:1px solid rgba(16,24,40,.08);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      background:linear-gradient(135deg, rgba(255,45,85,.12), rgba(124,58,237,.10));
    }
    .qrHead .t{font-weight:980; font-size:13px}
    .qrHead button{
      border:none; background:rgba(255,255,255,.75);
      border:1px solid rgba(16,24,40,.12);
      border-radius:12px;
      width:32px; height:32px;
      cursor:pointer;
      transition: transform .15s ease;
    }
    .qrHead button:hover{transform:translateY(-1px)}
    .qrBody{
      padding:12px;
    }
    .qrBody img{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background:#fff;
      display:block;
    }
    .qrBody .note{
      margin:10px 0 0;
      color:rgba(16,24,40,.70);
      font-size:12.5px;
      line-height:1.5;
      font-weight:700;
    }
    .toTop{
      position:fixed;
      left:16px;
      bottom:18px;
      z-index:90;
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.12);
      background:rgba(255,255,255,.82);
      box-shadow:0 18px 45px rgba(16,24,40,.18);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, opacity .2s ease, box-shadow .2s ease, background .2s ease;
      opacity:0;
      pointer-events:none;
    }
    .toTop.show{opacity:1; pointer-events:auto}
    .toTop:hover{transform:translateY(-3px); background:#fff; box-shadow:0 24px 60px rgba(16,24,40,.22)}
    .toTop svg{width:20px; height:20px}
    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.on{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 980px){
      .heroGrid{grid-template-columns:1fr; }
      .heroLeft{min-height:auto}
      .heroRight{min-height:auto}
      .grid3{grid-template-columns:1fr}
      .grid2{grid-template-columns:1fr}
      .split{grid-template-columns:1fr}
      .reviewsGrid{grid-template-columns:1fr}
      .compareCards{grid-template-columns:1fr}
      .gallery{grid-template-columns:1fr}
      .faqGrid{grid-template-columns:1fr}
      .aiBlocs{grid-template-columns:1fr}
      .priceGrid{grid-template-columns:1fr}
      .networkGrid{grid-template-columns:1fr}
      .formInner{grid-template-columns:1fr}
      .footerGrid{grid-template-columns:1fr; }
      table{min-width:640px}
    }
    @media (max-width: 820px){
      .menu{display:none}
      .burger{display:flex}
      .mobilePanel{display:block}
      .navwrap{padding:10px 0}
      .heroTitle{font-size:30px}
    }