:root{
      --bg0:#fbfbfe;
      --bg1:#f6f3ff;
      --text:#15181f;
      --muted:#5b6472;
      --card:#ffffffcc;
      --card2:#ffffff;
      --border:rgba(20,24,31,.10);
      --shadow:0 14px 40px rgba(20,24,31,.10);
      --shadow2:0 10px 30px rgba(20,24,31,.10);
      --ring:rgba(120,86,255,.35);
      --brand:#6a4bff;
      --brand2:#19c3ff;
      --brand3:#ff4fd8;
      --ok:#12b981;
      --warn:#f59e0b;
      --danger:#ef4444;
      --radius:18px;
      --radius2:22px;
      --container:1180px;
      --pad:20px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Noto Sans SC","Helvetica Neue", Arial, "Microsoft YaHei", "Segoe UI", Roboto, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 20% -10%, rgba(106,75,255,.18), transparent 55%),
        radial-gradient(900px 520px at 85% 10%, rgba(25,195,255,.16), transparent 52%),
        radial-gradient(900px 520px at 40% 35%, rgba(255,79,216,.10), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
      line-height:1.6;
      overflow-x:hidden;
    }

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

    .container{
      width:min(var(--container), calc(100% - 2*var(--pad)));
      margin:0 auto;
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:40;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(251,251,254,.72);
      border-bottom:1px solid rgba(20,24,31,.08);
    }

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

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:260px;
    }
    .brandLogo{
      width:40px; height:40px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(106,75,255,.18), rgba(25,195,255,.18));
      border:1px solid rgba(106,75,255,.25);
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 10px 25px rgba(106,75,255,.15);
      overflow:hidden;
    }
    .brandLogo img{max-width:34px; max-height:34px}
    .brandText{
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .brandName{
      font-weight:800;
      letter-spacing:.2px;
      font-size:14px;
    }
    .brandSub{
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }

    .navRight{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:12px;
      flex:1;
      min-width:0;
    }

    .navLinks{
      display:flex;
      gap:14px;
      align-items:center;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .navLink{
      font-size:13px;
      color:rgba(21,24,31,.82);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .navLink:hover{
      transform:translateY(-1px);
      background:rgba(106,75,255,.08);
      border-color:rgba(106,75,255,.18);
    }

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

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.75);
      color:rgba(21,24,31,.92);
      box-shadow:0 10px 25px rgba(20,24,31,.06);
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      font-weight:700;
      font-size:13px;
      cursor:pointer;
      user-select:none;
    }
    .btn:active{transform:translateY(0px) scale(.99)}
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 16px 35px rgba(20,24,31,.10);
      border-color:rgba(106,75,255,.20);
      background:rgba(255,255,255,.92);
    }

    .btnPrimary{
      border-color:rgba(106,75,255,.28);
      background:linear-gradient(135deg, rgba(106,75,255,.95), rgba(25,195,255,.86));
      color:white;
      box-shadow:0 18px 45px rgba(106,75,255,.22);
      position:relative;
      overflow:hidden;
    }
    .btnPrimary::after{
      content:"";
      position:absolute; inset:-2px;
      background:linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.35), rgba(255,255,255,.0));
      transform:translateX(-120%);
      transition:transform .55s ease;
      pointer-events:none;
    }
    .btnPrimary:hover::after{transform:translateX(120%)}
    .btnPrimary span{position:relative; z-index:1}

    .btnGhost{
      background:rgba(255,255,255,.55);
    }

    .hamburger{
      display:none;
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.75);
      box-shadow:0 10px 25px rgba(20,24,31,.06);
      align-items:center; justify-content:center;
      cursor:pointer;
    }
    .hamburger svg{width:20px; height:20px}
    .mobilePanel{
      display:none;
      padding:10px 0 16px 0;
    }
    .mobileLinks{
      display:flex;
      flex-direction:column;
      gap:10px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.75);
      box-shadow:0 16px 40px rgba(20,24,31,.08);
    }
    .mobileLinks .navLink{border-color:rgba(106,75,255,.14); background:rgba(106,75,255,.06)}

    main{padding:26px 0 28px 0}

    .hero{
      position:relative;
      border-radius:28px;
      overflow:hidden;
      border:1px solid rgba(20,24,31,.08);
      background:
        radial-gradient(1100px 520px at 10% 20%, rgba(106,75,255,.22), transparent 60%),
        radial-gradient(880px 420px at 85% 30%, rgba(25,195,255,.20), transparent 55%),
        radial-gradient(820px 420px at 40% 90%, rgba(255,79,216,.12), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.55));
      box-shadow:var(--shadow);
    }

    .heroInner{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:22px;
      padding:26px;
      align-items:stretch;
    }

    .heroLeft{
      padding:8px 6px 10px 6px;
      display:flex;
      flex-direction:column;
      gap:14px;
      min-width:0;
    }

    .pillRow{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
    }
    .pill{
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.70);
      border:1px solid rgba(20,24,31,.10);
      color:rgba(21,24,31,.85);
      font-weight:700;
      font-size:12px;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .dot{
      width:10px; height:10px;
      border-radius:50%;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow:0 0 0 4px rgba(106,75,255,.12);
    }

    .heroTitle{
      margin:0;
      font-size:36px;
      line-height:1.2;
      letter-spacing:-.6px;
      font-weight:900;
    }
    .gradText{
      background:linear-gradient(90deg, #3a2cff, #00b8ff, #ff4fd8);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      filter:saturate(115%);
    }

    .heroLead{
      margin:0;
      color:var(--muted);
      font-size:15px;
      max-width:62ch;
    }

    .heroCtas{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:2px;
      align-items:center;
    }

    .miniTrust{
      display:flex;
      gap:14px;
      align-items:center;
      flex-wrap:wrap;
      margin-top:2px;
    }
    .trustItem{
      display:flex;
      flex-direction:column;
      gap:4px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.60);
      min-width:150px;
    }
    .trustItem b{font-size:14px}
    .trustItem span{font-size:12px; color:var(--muted)}

    .heroRight{
      display:flex;
      flex-direction:column;
      gap:14px;
      padding:8px 6px 10px 6px;
    }

    .glassPanel{
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.60);
      box-shadow:0 14px 35px rgba(20,24,31,.06);
      overflow:hidden;
    }

    .panelHead{
      padding:14px 14px 10px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(20,24,31,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
    }
    .panelHead strong{font-size:14px}
    .badge{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(106,75,255,.24);
      background:linear-gradient(135deg, rgba(106,75,255,.18), rgba(25,195,255,.12));
      color:rgba(21,24,31,.88);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }

    .panelBody{
      padding:14px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }

    .metric{
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,24,31,.08);
      background:
        radial-gradient(280px 120px at 20% 10%, rgba(106,75,255,.14), transparent 60%),
        radial-gradient(260px 120px at 90% 30%, rgba(25,195,255,.12), transparent 60%),
        rgba(255,255,255,.55);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .metric:hover{
      transform:translateY(-2px);
      border-color:rgba(106,75,255,.22);
      box-shadow:0 18px 45px rgba(106,75,255,.14);
    }
    .metricTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:6px;
    }
    .metricLabel{font-size:12px; color:var(--muted); font-weight:800}
    .metricIcon{
      width:28px; height:28px;
      border-radius:10px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
    }
    .metricIcon svg{width:16px; height:16px}
    .metricValue{
      font-weight:950;
      letter-spacing:-.4px;
      font-size:18px;
    }
    .metricHint{font-size:12px; color:var(--muted); margin-top:2px}

    .heroQuick{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      padding:14px;
      align-items:center;
      justify-content:space-between;
    }
    .quickLeft{
      display:flex;
      flex-direction:column;
      gap:6px;
      min-width:220px;
    }
    .quickLeft b{font-size:14px}
    .quickLeft span{font-size:12px; color:var(--muted)}
    .quickTags{
      display:flex; flex-wrap:wrap; gap:8px;
      justify-content:flex-end;
    }
    .tag{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      font-weight:800;
      font-size:12px;
      color:rgba(21,24,31,.84);
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .tag:hover{
      transform:translateY(-1px);
      border-color:rgba(25,195,255,.25);
      background:rgba(25,195,255,.08);
    }

    section{padding:26px 0}
    .sectionTitleRow{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:12px;
      margin-bottom:16px;
    }
    .sectionTitle{
      margin:0;
      font-size:22px;
      letter-spacing:-.35px;
      font-weight:950;
    }
    .sectionSubtitle{
      margin:0;
      color:var(--muted);
      font-size:13px;
      max-width:62ch;
    }

    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
    }

    .card{
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.66);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
      overflow:hidden;
    }

    .cardPad{padding:16px}
    .cardTitle{
      margin:0 0 8px 0;
      font-size:15px;
      font-weight:950;
      letter-spacing:-.2px;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .cardTitle svg{width:18px; height:18px}
    .cardText{
      margin:0;
      color:var(--muted);
      font-size:13px;
    }

    .serviceGrid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }

    .span4{grid-column: span 4;}
    .span6{grid-column: span 6;}
    .span3{grid-column: span 3;}
    .span8{grid-column: span 8;}
    .span12{grid-column: span 12;}

    .featureList{
      margin:12px 0 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .featureItem{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,31,.08);
      background:rgba(255,255,255,.58);
    }
    .check{
      width:22px; height:22px; border-radius:9px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(135deg, rgba(18,185,129,.20), rgba(25,195,255,.16));
      border:1px solid rgba(18,185,129,.25);
      flex:0 0 auto;
      margin-top:1px;
    }
    .check svg{width:14px; height:14px}
    .featureItem b{font-size:13px}
    .featureItem span{display:block; font-size:12px; color:var(--muted); margin-top:3px}

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .step{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
      position:relative;
      overflow:hidden;
      min-height:168px;
    }
    .step::before{
      content:"";
      position:absolute;
      width:220px; height:220px;
      border-radius:50%;
      left:-120px; top:-140px;
      background:radial-gradient(circle at 30% 30%, rgba(106,75,255,.22), transparent 60%);
      transform:rotate(15deg);
      pointer-events:none;
    }
    .stepTop{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
      position:relative; z-index:1;
    }
    .stepNum{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(135deg, rgba(106,75,255,.18), rgba(25,195,255,.14));
      border:1px solid rgba(106,75,255,.22);
      font-weight:950;
    }
    .stepIcon{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.65);
      display:flex; align-items:center; justify-content:center;
      position:relative; z-index:1;
    }
    .stepIcon svg{width:16px; height:16px}
    .step b{display:block; font-size:14px; position:relative; z-index:1}
    .step p{margin:8px 0 0 0; color:var(--muted); font-size:13px; position:relative; z-index:1}

    .compareWrap{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
    }

    .ratingRow{
      display:flex; gap:14px; align-items:stretch; flex-wrap:wrap;
    }
    .ratingCard{
      flex:1 1 340px;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:
        radial-gradient(520px 220px at 10% 0%, rgba(255,79,216,.12), transparent 55%),
        radial-gradient(520px 220px at 90% 0%, rgba(25,195,255,.12), transparent 55%),
        rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
      overflow:hidden;
    }
    .ratingTop{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .ratingTop b{font-size:16px; letter-spacing:-.2px}
    .stars{
      display:flex; gap:6px; align-items:center;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(245,158,11,.25);
      background:rgba(245,158,11,.08);
    }
    .star svg{width:16px; height:16px}
    .score{
      margin-top:6px;
      display:flex; align-items:baseline; gap:10px; flex-wrap:wrap;
    }
    .score .num{
      font-size:40px;
      font-weight:1000;
      letter-spacing:-1px;
      line-height:1;
      background:linear-gradient(90deg, rgba(255,79,216,.95), rgba(106,75,255,.95), rgba(25,195,255,.90));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .score span{color:var(--muted); font-weight:800; font-size:13px}
    .ratingList{
      margin:12px 0 0 0; padding:0; list-style:none;
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
    }
    .ratingItem{
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,31,.08);
      background:rgba(255,255,255,.58);
      display:flex; gap:10px; align-items:flex-start;
    }
    .ratingItem .dot2{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, rgba(106,75,255,.95), rgba(25,195,255,.88));
      box-shadow:0 0 0 4px rgba(106,75,255,.12);
      margin-top:4px;
      flex:0 0 auto;
    }
    .ratingItem b{font-size:13px}
    .ratingItem span{display:block; margin-top:3px; color:var(--muted); font-size:12px}

    .compareTableCard{
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.64);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
      overflow:hidden;
    }
    .tableHead{
      padding:14px 16px;
      border-bottom:1px solid rgba(20,24,31,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      background:linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.58));
    }
    .tableHead b{font-size:15px}
    .tableHead span{font-size:12px; color:var(--muted)}
    .tableWrap{
      overflow:auto;
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width:760px;
      font-size:13px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,24,31,.08);
      text-align:left;
      vertical-align:top;
    }
    th{
      position:sticky;
      top:0;
      background:rgba(255,255,255,.92);
      z-index:1;
      color:rgba(21,24,31,.92);
      font-weight:950;
      letter-spacing:-.2px;
    }
    .colBrand{
      background:linear-gradient(90deg, rgba(106,75,255,.10), rgba(25,195,255,.08));
      font-weight:950;
    }
    .cellGood{
      display:flex; align-items:center; gap:8px; flex-wrap:wrap;
      color:rgba(21,24,31,.88);
      font-weight:850;
    }
    .pillSmall{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.68);
      font-size:12px;
      color:rgba(21,24,31,.82);
      font-weight:850;
    }
    .pillGood{
      border-color:rgba(18,185,129,.25);
      background:rgba(18,185,129,.10);
    }
    .pillNote{
      border-color:rgba(245,158,11,.25);
      background:rgba(245,158,11,.10);
    }
    .mutedCell{color:var(--muted); font-weight:700}

    .segTitle{
      display:flex; align-items:center; gap:10px;
      margin-bottom:10px;
    }
    .segTitle svg{width:18px; height:18px}
    .segTitle b{font-size:15px; font-weight:950}

    .scenarioGrid{
      display:grid;
      grid-template-columns: repeat(12,1fr);
      gap:14px;
    }
    .scenarioCard{
      grid-column: span 6;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
    }
    .scenarioTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .scenarioTop b{font-size:15px; letter-spacing:-.2px}
    .scenarioIcon{
      width:38px; height:38px;
      border-radius:16px;
      border:1px solid rgba(20,24,31,.10);
      background:
        radial-gradient(26px 26px at 30% 30%, rgba(106,75,255,.20), transparent 60%),
        rgba(255,255,255,.65);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .scenarioIcon svg{width:18px; height:18px}
    .scenarioList{
      margin:0; padding:0; list-style:none;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .scenarioList li{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.56);
      font-weight:850;
      font-size:12px;
      color:rgba(21,24,31,.82);
    }

    .netGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .netCard{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
      min-height:140px;
    }
    .netCard b{font-size:15px; display:block; margin-bottom:8px; font-weight:950}
    .netCard p{margin:0; color:var(--muted); font-size:13px}
    .netCard .mini{
      margin-top:12px;
      display:flex; gap:8px; flex-wrap:wrap;
    }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.58);
      font-weight:850;
      font-size:12px;
      color:rgba(21,24,31,.82);
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
    }
    .timelineRow{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
    }
    .timelineCard{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
      overflow:hidden;
      position:relative;
    }
    .timelineCard::after{
      content:"";
      position:absolute; inset:auto -60px -60px auto;
      width:240px; height:240px; border-radius:50%;
      background:radial-gradient(circle at 35% 35%, rgba(25,195,255,.16), transparent 62%);
      pointer-events:none;
    }
    .timelineCard b{font-size:15px; font-weight:950}
    .timelineCard p{margin:8px 0 0 0; color:var(--muted); font-size:13px}
    .timelineSteps{
      margin:14px 0 0 0;
      padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
      position:relative; z-index:1;
    }
    .tStep{
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,31,.08);
      background:rgba(255,255,255,.58);
    }
    .tStep .num{
      width:30px; height:30px; border-radius:14px;
      border:1px solid rgba(106,75,255,.22);
      background:linear-gradient(135deg, rgba(106,75,255,.16), rgba(25,195,255,.12));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
    }
    .tStep b{font-size:13px}
    .tStep span{display:block; margin-top:3px; color:var(--muted); font-size:12px}

    .caseGrid{
      display:grid;
      grid-template-columns: repeat(12,1fr);
      gap:14px;
    }
    .caseCard{
      grid-column: span 4;
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
      min-height:220px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .cover{
      border-radius:20px;
      border:1px solid rgba(20,24,31,.10);
      overflow:hidden;
      background:
        radial-gradient(260px 140px at 20% 20%, rgba(106,75,255,.22), transparent 60%),
        radial-gradient(240px 140px at 90% 30%, rgba(25,195,255,.20), transparent 60%),
        radial-gradient(240px 140px at 45% 90%, rgba(255,79,216,.12), transparent 60%),
        rgba(255,255,255,.55);
      height:110px;
      position:relative;
    }
    .cover::after{
      content:"";
      position:absolute; inset:-40px -60px auto auto;
      width:240px; height:240px;
      transform:rotate(18deg);
      background:linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.32), rgba(255,255,255,.0));
      opacity:.6;
      animation:shine 7s linear infinite;
      pointer-events:none;
    }
    @keyframes shine{
      0%{transform:translateX(-120px) rotate(18deg)}
      50%{transform:translateX(0px) rotate(18deg)}
      100%{transform:translateX(120px) rotate(18deg)}
    }
    .caseMeta{
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
      color:var(--muted);
      font-size:12px;
      font-weight:800;
    }
    .caseCard b{font-size:15px; font-weight:950; letter-spacing:-.2px}
    .caseCard p{margin:0; color:var(--muted); font-size:13px}
    .caseBullets{
      margin:0; padding:0; list-style:none;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .caseBullets li{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.56);
      font-size:12px;
      font-weight:850;
      color:rgba(21,24,31,.82);
    }
    .caseFooter{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding-top:6px;
    }
    .linkBtn{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.68);
      font-weight:900;
      font-size:13px;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      cursor:pointer;
    }
    .linkBtn:hover{
      transform:translateY(-1px);
      box-shadow:0 16px 40px rgba(20,24,31,.10);
      border-color:rgba(106,75,255,.22);
    }
    .linkBtn svg{width:16px; height:16px}

    .articleGrid{
      display:grid;
      grid-template-columns: repeat(12,1fr);
      gap:14px;
      align-items:start;
    }
    .articleList{
      grid-column: span 7;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
    }
    .articleSide{
      grid-column: span 5;
      display:flex; flex-direction:column; gap:14px;
    }

    .articleItem{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,31,.08);
      background:rgba(255,255,255,.58);
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      margin-bottom:10px;
      transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
      cursor:pointer;
    }
    .articleItem:last-child{margin-bottom:0}
    .articleItem:hover{
      transform:translateY(-2px);
      border-color:rgba(106,75,255,.20);
      box-shadow:0 18px 45px rgba(106,75,255,.12);
    }
    .articleLeft{
      min-width:0;
    }
    .articleTitle{
      font-weight:950; letter-spacing:-.2px;
      margin:0;
      font-size:14px;
    }
    .articleDesc{
      margin:6px 0 0 0;
      color:var(--muted);
      font-size:12px;
    }
    .articleTag{
      font-size:12px;
      font-weight:950;
      color:rgba(21,24,31,.85);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.66);
      white-space:nowrap;
      flex:0 0 auto;
      margin-left:10px;
    }

    .sideCard{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
    }
    .sideCard b{display:block; font-size:15px; font-weight:950; margin-bottom:8px}
    .sideCard p{margin:0; color:var(--muted); font-size:13px}
    .modelCloud{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .cloudItem{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.58);
      font-weight:900;
      font-size:12px;
      color:rgba(21,24,31,.82);
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .cloudItem:hover{
      transform:translateY(-1px);
      border-color:rgba(25,195,255,.25);
      background:rgba(25,195,255,.08);
    }

    .formGrid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:14px;
      align-items:start;
    }

    form{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .fieldRow{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:flex;
      flex-direction:column;
      gap:8px;
      font-size:12px;
      color:rgba(21,24,31,.82);
      font-weight:900;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,24,31,.12);
      background:rgba(255,255,255,.78);
      color:var(--text);
      outline:none;
      transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
      font-size:13px;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(106,75,255,.36);
      box-shadow:0 0 0 6px rgba(106,75,255,.10);
    }

    .formCard{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
    }
    .formHeader{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .formHeader b{font-size:15px; font-weight:1000}
    .formHeader span{color:var(--muted); font-size:12px; font-weight:800}

    .formFoot{
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-top:2px;
    }
    .note{
      color:var(--muted);
      font-size:12px;
      font-weight:800;
    }

    .infoSide{
      display:flex; flex-direction:column; gap:14px;
    }
    .infoCard{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:
        radial-gradient(480px 220px at 10% 0%, rgba(106,75,255,.14), transparent 55%),
        rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
      overflow:hidden;
      position:relative;
    }
    .infoCard::after{
      content:"";
      position:absolute; inset:auto auto -60px -60px;
      width:220px; height:220px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(255,79,216,.12), transparent 62%);
      pointer-events:none;
    }
    .infoCard b{display:block; font-size:15px; font-weight:950; position:relative; z-index:1}
    .infoCard p{margin:8px 0 0 0; color:var(--muted); font-size:13px; position:relative; z-index:1}
    .kefu{
      display:flex; gap:12px; align-items:center; margin-top:12px; flex-wrap:wrap;
      position:relative; z-index:1;
    }
    .kefuImg{
      width:86px; height:86px;
      border-radius:18px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.70);
      overflow:hidden;
      flex:0 0 auto;
    }
    .kefuImg img{width:100%; height:100%; object-fit:cover}
    .kefuMeta b{font-size:13px}
    .kefuMeta span{display:block; font-size:12px; color:var(--muted); margin-top:4px; font-weight:800}

    .faqWrap{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
    }
    details{
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
      padding:14px 16px;
      transition:border-color .15s ease, transform .15s ease;
    }
    details[open]{
      border-color:rgba(106,75,255,.25);
    }
    details summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:950;
      letter-spacing:-.2px;
      font-size:14px;
      padding-right:12px;
    }
    details summary::-webkit-details-marker{display:none}
    .faqIcon{
      width:28px; height:28px;
      border-radius:12px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .faqIcon svg{width:16px; height:16px}
    .faqBody{
      margin-top:10px;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      padding-top:10px;
      border-top:1px dashed rgba(20,24,31,.10);
    }

    .reviewGrid{
      display:grid;
      grid-template-columns: repeat(12,1fr);
      gap:14px;
    }
    .reviewCard{
      grid-column: span 4;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
      display:flex; flex-direction:column; gap:10px;
      min-height:210px;
      position:relative;
      overflow:hidden;
    }
    .reviewCard::before{
      content:"";
      position:absolute; inset:-120px auto auto -120px;
      width:260px; height:260px;
      background:radial-gradient(circle at 30% 30%, rgba(106,75,255,.18), transparent 60%);
      transform:rotate(-10deg);
      pointer-events:none;
    }
    .reviewTop{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      position:relative; z-index:1;
    }
    .avatar{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(20,24,31,.10);
      background:linear-gradient(135deg, rgba(106,75,255,.18), rgba(25,195,255,.12));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      letter-spacing:-.5px;
    }
    .reviewTop b{font-size:13px; font-weight:1000}
    .reviewRole{
      font-size:12px; color:var(--muted); font-weight:900;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.66);
      position:relative; z-index:1;
    }
    .reviewText{
      margin:0;
      color:var(--muted);
      font-size:13px;
      font-weight:750;
      position:relative; z-index:1;
    }
    .reviewFoot{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      position:relative; z-index:1;
    }

    .footer{
      padding:22px 0 28px 0;
      border-top:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.45);
    }
    .footerInner{
      border-radius:24px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.62);
      box-shadow:0 12px 35px rgba(20,24,31,.06);
      padding:16px;
    }
    .footerTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .footerBrand{
      min-width:280px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .footerBrand img{width:44px; height:44px; border-radius:16px; border:1px solid rgba(20,24,31,.10); background:rgba(255,255,255,.7)}
    .footerBrand b{font-size:14px; font-weight:1000; display:block}
    .footerBrand p{margin:6px 0 0 0; color:var(--muted); font-size:13px; font-weight:750}

    .footerLinks{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end;
    }
    .footerLinks a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.68);
      font-weight:950;
      font-size:13px;
      transition:transform .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .footerLinks a:hover{
      transform:translateY(-1px);
      border-color:rgba(106,75,255,.22);
    }

    .friendRow{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
    }
    .friendRow b{
      font-size:12px;
      color:rgba(21,24,31,.86);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.70);
      font-weight:1000;
      white-space:nowrap;
    }
    .friendRow a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.68);
      font-weight:950;
      font-size:13px;
      transition:transform .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .friendRow a:hover{
      transform:translateY(-1px);
      border-color:rgba(25,195,255,.25);
    }

    .footerBottom{
      margin-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      color:var(--muted);
      font-weight:850;
      font-size:12px;
    }

    .toTop{
      position:fixed;
      right:14px;
      bottom:16px;
      z-index:55;
      width:44px;
      height:44px;
      border-radius:16px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.75);
      box-shadow:0 16px 40px rgba(20,24,31,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      opacity:0;
      transform:translateY(10px);
      pointer-events:none;
      transition:opacity .2s ease, transform .2s ease, background .15s ease, border-color .15s ease;
    }
    .toTop.show{
      opacity:1;
      transform:translateY(0);
      pointer-events:auto;
    }
    .toTop:hover{
      background:rgba(255,255,255,.95);
      border-color:rgba(106,75,255,.22);
    }
    .toTop svg{width:18px; height:18px}

    .floatingKefu{
      position:fixed;
      left:14px;
      bottom:16px;
      z-index:54;
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,31,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 16px 40px rgba(20,24,31,.12);
      cursor:pointer;
      transition:transform .15s ease, border-color .15s ease;
    }
    .floatingKefu:hover{
      transform:translateY(-1px);
      border-color:rgba(25,195,255,.25);
    }
    .floatingKefu .bubble{
      width:36px; height:36px;
      border-radius:16px;
      border:1px solid rgba(20,24,31,.10);
      background:linear-gradient(135deg, rgba(106,75,255,.18), rgba(25,195,255,.12));
      display:flex; align-items:center; justify-content:center;
    }
    .floatingKefu svg{width:16px; height:16px}
    .floatingKefu b{font-size:13px}
    .floatingKefu span{display:block; font-size:12px; color:var(--muted); font-weight:850}

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

    @media (max-width: 980px){
      .heroInner{grid-template-columns: 1fr; padding:18px}
      .heroTitle{font-size:30px}
      .panelBody{grid-template-columns:1fr 1fr}
      .steps{grid-template-columns:1fr 1fr}
      .scenarioCard{grid-column: span 12}
      .netGrid{grid-template-columns:1fr}
      .timelineRow{grid-template-columns:1fr}
      .caseCard{grid-column: span 6}
      .reviewCard{grid-column: span 6}
      .articleList{grid-column: span 12}
      .articleSide{grid-column: span 12}
      .formGrid{grid-template-columns:1fr}
      .fieldRow{grid-template-columns:1fr}
      .ratingList{grid-template-columns:1fr 1fr}
      .navLinks{display:none}
      .hamburger{display:flex}
      .mobilePanel{display:block}
      .navRight{justify-content:flex-end}
    }

    @media (max-width: 640px){
      .brand{min-width:unset}
      .brandSub{display:none}
      .heroTitle{font-size:26px}
      .trustItem{min-width:unset; flex:1 1 auto}
      .panelBody{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .caseCard{grid-column: span 12}
      .reviewCard{grid-column: span 12}
      .ratingList{grid-template-columns:1fr}
      table{min-width:700px}
      .floatingKefu{left:10px}
      .toTop{right:10px}
    }