:root{
      --bg0:#ffffff;
      --bg1:#f7f4ff;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#5b6677;
      --muted2:#7a879a;
      --line:rgba(18,32,51,.12);
      --shadow:0 12px 30px rgba(17,24,39,.08);
      --shadow2:0 10px 24px rgba(17,24,39,.10);
      --radius:16px;
      --radius2:22px;

      --brandA:#6d5efc;
      --brandB:#20c7ff;
      --brandC:#2fe7a5;
      --brandD:#ffcc66;
      --brandE:#ff6aa2;

      --grad:linear-gradient(135deg, rgba(109,94,252,.95), rgba(32,199,255,.92) 45%, rgba(47,231,165,.92));
      --grad2:linear-gradient(135deg, rgba(255,204,102,.95), rgba(255,106,162,.88) 55%, rgba(109,94,252,.85));
      --grad3:linear-gradient(135deg, rgba(32,199,255,.20), rgba(109,94,252,.18) 50%, rgba(47,231,165,.16));

      --focus:rgba(109,94,252,.35);
      --btn:#0f172a;
      --btnText:#ffffff;

      --container:1120px;
    }

    *{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 SC", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 12% 0%, rgba(109,94,252,.12), transparent 55%),
        radial-gradient(900px 480px at 90% 10%, rgba(32,199,255,.10), transparent 52%),
        radial-gradient(900px 520px at 85% 90%, rgba(47,231,165,.08), transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fbfafc 40%, #ffffff 100%);
      line-height:1.6;
    }

    a{color:inherit; text-decoration:none}
    a:focus, button:focus, input:focus, select:focus, textarea:focus{
      outline: none;
      box-shadow: 0 0 0 4px var(--focus);
      border-color: rgba(109,94,252,.45) !important;
    }

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

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(18,32,51,.08);
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .brand img{
      width:40px;
      height:40px;
      border-radius:12px;
      object-fit:cover;
      background:#fff;
      box-shadow:0 8px 18px rgba(17,24,39,.10);
    }
    .brand .brandText{
      display:flex;
      flex-direction:column;
      gap:2px;
      min-width:0;
    }
    .brand .name{
      font-weight:800;
      letter-spacing:.2px;
      font-size:15px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand .sub{
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .navLinks{
      display:flex;
      align-items:center;
      gap:14px;
      flex:1;
      justify-content:center;
      flex-wrap:wrap;
    }
    .navLinks a{
      font-size:13px;
      color:var(--muted);
      padding:8px 10px;
      border-radius:12px;
      transition:transform .2s ease, background .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .navLinks a:hover{
      color:var(--text);
      background:rgba(109,94,252,.08);
      transform: translateY(-1px);
    }

    .navRight{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 240px;
      justify-content:flex-end;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(18,32,51,.12);
      background:#fff;
      color:var(--text);
      font-weight:700;
      font-size:13px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(17,24,39,.10);
      border-color: rgba(109,94,252,.25);
      background: linear-gradient(180deg, #fff, rgba(109,94,252,.03));
    }
    .btnPrimary{
      border-color: transparent;
      background:var(--grad);
      color:var(--btnText);
      box-shadow:0 14px 34px rgba(109,94,252,.22);
    }
    .btnPrimary:hover{
      box-shadow:0 18px 46px rgba(109,94,252,.28);
    }
    .btnGhost{
      background:rgba(109,94,252,.06);
      border-color: rgba(109,94,252,.18);
    }
    .iconDot{
      width:9px;height:9px;border-radius:50%;
      background:linear-gradient(135deg, rgba(255,204,102,1), rgba(255,106,162,1));
      box-shadow:0 10px 18px rgba(255,106,162,.20);
    }

    .mobileToggle{
      display:none;
      width:42px;
      height:42px;
      border-radius:14px;
      border:1px solid rgba(18,32,51,.12);
      background:rgba(255,255,255,.9);
      cursor:pointer;
    }
    .mobileToggle .bars{
      width:18px;height:12px; position:relative; margin:0 auto;
    }
    .mobileToggle .bars span{
      position:absolute; left:0; right:0;
      height:2px; background:rgba(17,24,39,.75);
      border-radius:2px;
      transition:transform .25s ease, top .25s ease, opacity .2s ease;
    }
    .mobileToggle .bars span:nth-child(1){top:0}
    .mobileToggle .bars span:nth-child(2){top:5px}
    .mobileToggle .bars span:nth-child(3){top:10px}

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

    .mobilePanel{
      display:none;
      padding:10px 0 16px;
    }
    .mobilePanelInner{
      display:flex;
      flex-direction:column;
      gap:8px;
      padding:12px;
      border-radius:18px;
      background:rgba(255,255,255,.85);
      border:1px solid rgba(18,32,51,.10);
      box-shadow:0 12px 30px rgba(17,24,39,.08);
    }
    .mobilePanelInner a{
      padding:12px 12px;
      border-radius:14px;
      color:var(--text);
      background:rgba(109,94,252,.05);
      border:1px solid rgba(109,94,252,.10);
      font-weight:700;
      font-size:14px;
    }
    .mobilePanelInner a:hover{
      background:rgba(109,94,252,.08);
    }

    .hero{
      position:relative;
      overflow:hidden;
      padding:30px 0 14px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:18px;
      align-items:stretch;
    }
    .heroLeft{
      border-radius: var(--radius2);
      padding:26px 22px;
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(109,94,252,.22), transparent 60%),
        radial-gradient(900px 420px at 88% 18%, rgba(32,199,255,.16), transparent 58%),
        radial-gradient(680px 360px at 65% 95%, rgba(47,231,165,.12), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.95));
      border:1px solid rgba(18,32,51,.10);
      box-shadow: var(--shadow);
      position:relative;
      isolation:isolate;
      min-height: 360px;
    }

    .heroLeft:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        conic-gradient(from 210deg at 50% 30%, rgba(109,94,252,.18), rgba(32,199,255,.18), rgba(47,231,165,.18), rgba(255,106,162,.12), rgba(109,94,252,.18));
      filter: blur(22px);
      opacity:.55;
      z-index:-1;
    }

    .pillRow{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:14px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.7);
      border:1px solid rgba(18,32,51,.10);
      color:var(--muted);
      font-weight:700;
      font-size:12px;
      backdrop-filter: blur(8px);
    }
    .pill b{
      color:var(--text);
      font-weight:900;
    }

    h1{
      font-size:30px;
      line-height:1.25;
      margin:0 0 12px;
      letter-spacing:-.4px;
    }
    .lead{
      color:var(--muted);
      margin:0 0 18px;
      max-width: 60ch;
      font-size:15px;
    }

    .heroActions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      margin:12px 0 18px;
    }
    .btnLink{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(18,32,51,.12);
      background:rgba(255,255,255,.8);
      color:var(--text);
      font-weight:800;
      font-size:13px;
      cursor:pointer;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .btnLink:hover{
      transform: translateY(-1px);
      box-shadow:0 14px 30px rgba(17,24,39,.10);
      background:#fff;
    }
    .arrow{
      width:22px;height:22px;border-radius:11px;
      display:grid; place-items:center;
      background:rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.18);
    }
    .arrow svg{display:block}

    .heroMeta{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:12px;
    }
    .metaCard{
      flex:1;
      min-width: 190px;
      padding:12px 14px;
      border-radius:16px;
      border:1px solid rgba(18,32,51,.10);
      background:rgba(255,255,255,.68);
      backdrop-filter: blur(8px);
    }
    .metaTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:6px;
    }
    .metaLabel{
      color:var(--muted);
      font-size:12px;
      font-weight:800;
    }
    .metaValue{
      font-weight:900;
      letter-spacing:-.2px;
      font-size:18px;
    }
    .metaDesc{
      color:var(--muted);
      font-size:12px;
      margin:0;
    }

    .heroRight{
      border-radius: var(--radius2);
      padding:18px 16px;
      border:1px solid rgba(18,32,51,.10);
      background:
        radial-gradient(680px 320px at 10% 10%, rgba(255,204,102,.18), transparent 58%),
        radial-gradient(720px 340px at 90% 28%, rgba(255,106,162,.12), transparent 56%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.98));
      box-shadow: var(--shadow);
      min-height: 360px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .terminalHeader{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(18,32,51,.10);
      background:rgba(255,255,255,.7);
    }
    .dots{
      display:flex; gap:7px; align-items:center;
    }
    .dots i{width:10px;height:10px;border-radius:50%; display:inline-block; background:#e5e7eb}
    .dots i:nth-child(1){background:#ff6a6a}
    .dots i:nth-child(2){background:#ffcc66}
    .dots i:nth-child(3){background:#2fe7a5}
    .terminalHeader .small{
      font-weight:900;
      color:var(--muted);
      font-size:12px;
      letter-spacing:.2px;
      white-space:nowrap;
    }

    .modelGrid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:10px;
      margin-top:6px;
    }
    .chip{
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(18,32,51,.10);
      background:rgba(255,255,255,.72);
      display:flex;
      flex-direction:column;
      gap:6px;
      min-height: 66px;
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .chip:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(17,24,39,.10);
    }
    .chip .t{
      font-weight:950;
      font-size:13px;
      letter-spacing:-.2px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .chip .badge{
      font-size:11px;
      color:rgba(31,41,55,.75);
      font-weight:900;
      padding:5px 8px;
      border-radius:999px;
      background:rgba(109,94,252,.08);
      border:1px solid rgba(109,94,252,.14);
      white-space:nowrap;
    }
    .chip .d{
      font-size:12px;
      color:var(--muted);
      margin:0;
    }

    .flowCard{
      margin-top:auto;
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.72);
    }
    .flowRow{
      display:flex;
      align-items:flex-start;
      gap:12px;
    }
    .flowIcon{
      width:44px;height:44px;border-radius:16px;
      background:var(--grad3);
      border:1px solid rgba(109,94,252,.14);
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .flowIcon svg{display:block}
    .flowCard h3{
      margin:0;
      font-size:14px;
      letter-spacing:-.2px;
    }
    .flowCard p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:12.5px;
    }

    .section{
      padding:26px 0;
    }
    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
    }
    .sectionKicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(18,32,51,.10);
      background:rgba(255,255,255,.76);
      color:var(--muted);
      font-weight:900;
      font-size:12px;
      backdrop-filter: blur(8px);
    }
    .sectionTitle{
      margin:10px 0 0;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .sectionDesc{
      margin:6px 0 0;
      color:var(--muted);
      max-width:66ch;
      font-size:14px;
    }

    .grid2{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:14px;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .grid4{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:12px;
    }

    .card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.9);
      border:1px solid rgba(18,32,51,.10);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      padding:16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
      border-color: rgba(109,94,252,.22);
    }

    .stat{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .statTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .statIcon{
      width:42px;height:42px;border-radius:16px;
      background: rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.16);
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .statIcon.alt{
      background: rgba(32,199,255,.10);
      border-color: rgba(32,199,255,.16);
    }
    .statIcon.alt2{
      background: rgba(47,231,165,.10);
      border-color: rgba(47,231,165,.16);
    }
    .statIcon.alt3{
      background: rgba(255,204,102,.14);
      border-color: rgba(255,204,102,.20);
    }
    .statTitle{
      font-weight:950;
      letter-spacing:-.2px;
      font-size:14px;
      margin:0;
    }
    .statValue{
      font-weight:1000;
      font-size:26px;
      letter-spacing:-.6px;
      margin:2px 0 0;
    }
    .statNote{
      color:var(--muted);
      font-size:12.5px;
      margin:0;
    }

    .serviceCard{
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 176px;
    }
    .serviceHead{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .serviceCard h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .serviceCard p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
    }
    .tagRow{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:auto;
    }
    .tag{
      font-size:12px;
      font-weight:900;
      color:rgba(31,41,55,.76);
      border:1px solid rgba(18,32,51,.10);
      background:rgba(255,255,255,.75);
      padding:6px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .tag.hot{
      border-color: rgba(109,94,252,.18);
      background: rgba(109,94,252,.08);
    }
    .tag.sun{
      border-color: rgba(255,204,102,.25);
      background: rgba(255,204,102,.14);
    }
    .tag.mint{
      border-color: rgba(47,231,165,.22);
      background: rgba(47,231,165,.12);
    }
    .tag.sky{
      border-color: rgba(32,199,255,.24);
      background: rgba(32,199,255,.12);
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:12px;
    }
    .step{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.84));
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease;
      min-height: 180px;
    }
    .step:before{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(480px 220px at 20% 0%, rgba(109,94,252,.14), transparent 55%);
      opacity:.8;
      pointer-events:none;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .step .num{
      width:38px;height:38px;border-radius:16px;
      background:rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.18);
      display:grid; place-items:center;
      font-weight:1000;
      letter-spacing:-.2px;
      position:relative;
      z-index:1;
    }
    .step h3{
      margin:12px 0 6px;
      font-size:15px;
      letter-spacing:-.2px;
      position:relative; z-index:1;
    }
    .step p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      position:relative; z-index:1;
    }

    .comparisonWrap{
      border-radius: var(--radius2);
      border:1px solid rgba(18,32,51,.10);
      background:
        radial-gradient(900px 340px at 10% 0%, rgba(109,94,252,.14), transparent 55%),
        radial-gradient(820px 340px at 92% 22%, rgba(32,199,255,.10), transparent 52%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.98));
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .comparisonHeader{
      padding:18px 18px 0;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .ratingBox{
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.78);
      display:flex;
      align-items:center;
      gap:12px;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      color: #ffb300;
      font-size:16px;
      letter-spacing:-.5px;
    }
    .ratingText{
      display:flex; flex-direction:column; gap:2px;
    }
    .ratingText b{
      font-size:16px;
      letter-spacing:-.2px;
    }
    .ratingText span{
      color:var(--muted);
      font-size:12.5px;
      font-weight:800;
    }

    table{
      width:100%;
      border-collapse:collapse;
      margin-top:14px;
      font-size:13.5px;
    }
    th, td{
      padding:12px 14px;
      border-top:1px solid rgba(18,32,51,.10);
      border-right:1px solid rgba(18,32,51,.10);
      vertical-align:top;
    }
    th:last-child, td:last-child{border-right:none}
    thead th{
      background: rgba(109,94,252,.08);
      color:var(--text);
      font-weight:1000;
      border-top:none;
    }
    tbody td{
      color:var(--text);
      background: rgba(255,255,255,.92);
    }
    .yes{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:rgba(15,23,42,.92);
      font-weight:900;
    }
    .yes i{
      width:18px;height:18px;border-radius:7px;
      display:inline-grid; place-items:center;
      background: rgba(47,231,165,.14);
      border:1px solid rgba(47,231,165,.22);
      color:#0f5132;
      flex:0 0 auto;
      font-style:normal;
      font-size:12px;
      line-height:1;
    }
    .maybe{
      color:var(--muted);
      font-weight:900;
    }

    .compareFooter{
      padding:12px 18px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .compareNote{
      color:var(--muted);
      font-size:13px;
      max-width: 70ch;
      margin:0;
    }

    .timeline{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .timeItem{
      display:flex;
      gap:12px;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background:rgba(255,255,255,.88);
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .timeItem:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .timeDot{
      width:44px;height:44px;border-radius:18px;
      background: rgba(32,199,255,.12);
      border:1px solid rgba(32,199,255,.20);
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .timeItem:nth-child(2) .timeDot{background: rgba(109,94,252,.12); border-color: rgba(109,94,252,.20)}
    .timeItem:nth-child(3) .timeDot{background: rgba(47,231,165,.12); border-color: rgba(47,231,165,.20)}
    .timeItem:nth-child(4) .timeDot{background: rgba(255,204,102,.16); border-color: rgba(255,204,102,.24)}
    .timeMain h3{
      margin:0;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .timeMain p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
    }

    .caseGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .caseCard{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background:rgba(255,255,255,.9);
      box-shadow:0 10px 22px rgba(17,24,39,.06);
      display:flex;
      flex-direction:column;
      gap:10px;
      transition: transform .2s ease, box-shadow .2s ease;
      min-height: 210px;
      position:relative;
      overflow:hidden;
    }
    .caseCard:before{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(520px 260px at 0% 0%, rgba(109,94,252,.14), transparent 55%);
      opacity:.7;
      pointer-events:none;
    }
    .caseCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .caseTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      position:relative; z-index:1;
    }
    .caseTitle{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
      font-weight:1000;
    }
    .caseMeta{
      color:var(--muted);
      font-size:12.5px;
      font-weight:900;
      white-space:nowrap;
    }
    .caseDesc{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      position:relative; z-index:1;
    }
    .caseList{
      margin:0;
      padding-left:18px;
      color:var(--muted);
      font-size:13px;
      position:relative; z-index:1;
    }
    .caseActions{
      margin-top:auto;
      position:relative; z-index:1;
      display:flex; gap:10px; flex-wrap:wrap;
    }

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .articleCard{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background:rgba(255,255,255,.92);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .articleCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .articleTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .articleTop .k{
      font-size:12px;
      font-weight:1000;
      color:var(--muted);
      border:1px solid rgba(18,32,51,.10);
      background:rgba(109,94,252,.06);
      padding:6px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .articleTop time{
      color:var(--muted2);
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .articleCard a{
      display:block;
      font-weight:1000;
      letter-spacing:-.2px;
      margin-bottom:6px;
      color:var(--text);
    }
    .articleCard a:hover{
      text-decoration:underline;
      text-decoration-thickness:2px;
      text-underline-offset:3px;
    }
    .articleCard p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
    }

    .tabsWrap{
      border-radius: var(--radius2);
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.9);
      box-shadow: var(--shadow);
      padding:14px;
    }
    .tabsHeader{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding:2px 2px 12px;
    }
    .tabBtns{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .tabBtn{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(18,32,51,.10);
      background:#fff;
      font-weight:950;
      font-size:13px;
      cursor:pointer;
      transition:transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
      user-select:none;
    }
    .tabBtn:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(17,24,39,.10);
    }
    .tabBtn[aria-selected="true"]{
      background: rgba(109,94,252,.10);
      border-color: rgba(109,94,252,.24);
    }
    .tabPanel{
      display:none;
      animation: fadeIn .18s ease both;
    }
    .tabPanel.active{display:block}
    @keyframes fadeIn{
      from{opacity:0; transform: translateY(4px)}
      to{opacity:1; transform: translateY(0)}
    }

    .requestGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      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:12.5px;
      color:var(--muted);
      font-weight:900;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(18,32,51,.14);
      background: rgba(255,255,255,.92);
      padding:12px 12px;
      font-size:14px;
      color:var(--text);
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    textarea{min-height:112px; resize: vertical}
    .formActions{
      display:flex;
      gap:12px;
      align-items:center;
      flex-wrap:wrap;
      margin-top:2px;
    }
    .submitBtn{
      border:none;
      cursor:pointer;
      padding:12px 16px;
      border-radius:14px;
      background: var(--grad2);
      color: #0b1220;
      font-weight:1000;
      box-shadow: 0 18px 46px rgba(255,106,162,.18);
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    }
    .submitBtn:hover{
      transform: translateY(-1px);
      box-shadow: 0 22px 56px rgba(255,106,162,.26);
      filter: saturate(1.05);
    }
    .formNote{
      color:var(--muted2);
      font-size:12.5px;
      margin:0;
      font-weight:800;
    }

    .benefitList{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .benefit{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background:rgba(255,255,255,.88);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .benefit:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .benefit .i{
      width:42px;height:42px;border-radius:16px;
      background: rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.18);
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .benefit:nth-child(2) .i{background: rgba(32,199,255,.10); border-color: rgba(32,199,255,.18)}
    .benefit:nth-child(3) .i{background: rgba(47,231,165,.10); border-color: rgba(47,231,165,.18)}
    .benefit:nth-child(4) .i{background: rgba(255,204,102,.14); border-color: rgba(255,204,102,.22)}
    .benefit h3{
      margin:0;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .benefit p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13.5px;
    }

    .accordion{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .accItem{
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.92);
      overflow:hidden;
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
    }
    .accBtn{
      width:100%;
      text-align:left;
      background:transparent;
      border:none;
      cursor:pointer;
      padding:14px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .accBtn .q{
      font-weight:1000;
      letter-spacing:-.2px;
      font-size:14.5px;
    }
    .accBtn .chev{
      width:38px;height:38px;border-radius:16px;
      border:1px solid rgba(18,32,51,.10);
      background:rgba(109,94,252,.06);
      display:grid; place-items:center;
      transition: transform .2s ease;
      flex:0 0 auto;
    }
    .accItem[data-open="true"] .accBtn .chev{transform: rotate(180deg)}
    .accPanel{
      max-height:0;
      overflow:hidden;
      transition: max-height .28s ease;
    }
    .accContent{
      padding:0 14px 14px;
      color:var(--muted);
      font-size:13.5px;
      font-weight:650;
    }

    .reviewsGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .review{
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background:
        radial-gradient(520px 220px at 0% 0%, rgba(32,199,255,.10), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.98));
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      transition: transform .2s ease, box-shadow .2s ease;
      min-height: 210px;
    }
    .review:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .reviewTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:42px;height:42px;border-radius:16px;
      background: rgba(109,94,252,.12);
      border:1px solid rgba(109,94,252,.20);
      display:grid; place-items:center;
      font-weight:1000;
      color:rgba(15,23,42,.92);
      flex:0 0 auto;
    }
    .review:nth-child(2) .avatar{background: rgba(47,231,165,.12); border-color: rgba(47,231,165,.20)}
    .review:nth-child(3) .avatar{background: rgba(255,204,102,.18); border-color: rgba(255,204,102,.26)}
    .reviewName{
      font-weight:1000;
      font-size:14.5px;
      letter-spacing:-.2px;
      margin:0;
    }
    .reviewRole{
      margin:6px 0 0;
      color:var(--muted);
      font-weight:900;
      font-size:12.5px;
    }
    .quote{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      font-weight:700;
    }
    .review .starsMini{
      display:flex; gap:4px;
      color:#ffb300;
      font-size:15px;
      margin-top:auto;
    }

    .logosRow{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .logoPill{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.88);
      color:var(--muted);
      font-weight:950;
      font-size:12.5px;
      white-space:nowrap;
    }

    .networkGrid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .mapCard{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background:
        radial-gradient(820px 340px at 20% 0%, rgba(109,94,252,.14), transparent 55%),
        radial-gradient(820px 340px at 95% 30%, rgba(32,199,255,.10), transparent 52%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.98));
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
      position:relative;
      overflow:hidden;
    }
    .mapCard:after{
      content:"";
      position:absolute;
      inset:-80px -60px auto auto;
      width:220px;height:220px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(47,231,165,.30), rgba(47,231,165,0) 60%);
      filter: blur(2px);
      opacity:.7;
      pointer-events:none;
    }
    .mapViz{
      height: 220px;
      border-radius:16px;
      border:1px dashed rgba(18,32,51,.16);
      background:
        linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.92));
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      overflow:hidden;
    }
    .mapViz svg{
      width:100%;
      height:100%;
      display:block;
    }
    .mapCaption{
      margin:12px 0 0;
      color:var(--muted);
      font-size:13px;
      font-weight:750;
      position:relative;
      z-index:1;
    }

    .miniList{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .miniRow{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.92);
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
    }
    .miniRow h3{
      margin:0;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .miniRow p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13.5px;
      font-weight:720;
    }
    .linkRow{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .chipLink{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.88);
      color:var(--text);
      font-weight:1000;
      font-size:13px;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .chipLink:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
      background:#fff;
    }

    .tagCloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .cloudTag{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.9);
      font-weight:1000;
      color:var(--muted);
      font-size:13px;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      cursor:pointer;
      user-select:none;
    }
    .cloudTag:hover{
      transform: translateY(-2px);
      background: rgba(109,94,252,.07);
      border-color: rgba(109,94,252,.20);
      color: var(--text);
    }

    .footer{
      border-top:1px solid rgba(18,32,51,.10);
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(109,94,252,.10), transparent 55%),
        radial-gradient(900px 420px at 90% 15%, rgba(32,199,255,.08), transparent 55%),
        linear-gradient(180deg, #ffffff, #fbfafc);
      padding:18px 0 20px;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .footerCard{
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.92);
      box-shadow:0 10px 22px rgba(17,24,39,.06);
      padding:16px;
    }
    .footerTop{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .footerLogo img{
      width:44px;height:44px;border-radius:16px; object-fit:cover;
      border:1px solid rgba(18,32,51,.10);
      box-shadow:0 10px 22px rgba(17,24,39,.08);
      background:#fff;
    }
    .footerTitle{
      margin:0;
      font-size:15.5px;
      font-weight:1000;
      letter-spacing:-.2px;
    }
    .footerDesc{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13.5px;
      font-weight:720;
      max-width: 70ch;
    }
    .footerCols{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .footerBlock h3{
      margin:0;
      font-size:13px;
      color:rgba(15,23,42,.95);
      font-weight:1000;
      letter-spacing:-.1px;
    }
    .footerBlock p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.5px;
      font-weight:740;
    }

    .footerLinks{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footerLinks a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.88);
      font-weight:950;
      font-size:13.5px;
      color:var(--text);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .footerLinks a:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }

    .copyright{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding:14px 2px 0;
      color:var(--muted);
      font-weight:850;
      font-size:12.5px;
    }

    .toast{
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom:18px;
      z-index:100;
      background: rgba(15,23,42,.94);
      color:#fff;
      padding:12px 14px;
      border-radius:16px;
      box-shadow: 0 18px 46px rgba(15,23,42,.26);
      border:1px solid rgba(255,255,255,.14);
      display:none;
      gap:10px;
      align-items:flex-start;
      max-width: calc(100vw - 26px);
    }
    .toast.show{display:flex; animation: toastIn .2s ease both}
    @keyframes toastIn{from{opacity:0; transform: translateX(-50%) translateY(10px)} to{opacity:1; transform: translateX(-50%) translateY(0)}}
    .toast b{font-weight:1000}
    .toast .t{color:rgba(255,255,255,.86); font-size:12.5px; font-weight:800; margin-top:2px}

    .floatBtn{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:90;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .floatLink{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 46px rgba(17,24,39,.12);
      font-weight:1000;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease;
      user-select:none;
    }
    .floatLink:hover{
      transform: translateY(-2px);
      box-shadow: 0 24px 60px rgba(17,24,39,.16);
    }
    .floatIcon{
      width:40px;height:40px;border-radius:16px;
      background: var(--grad3);
      border:1px solid rgba(109,94,252,.16);
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .floatIcon svg{display:block}
    .floatSmall{
      color:var(--muted);
      font-size:12.5px;
      font-weight:900;
      margin-top:2px;
    }
    .qrWrap{
      position:fixed;
      right:16px;
      bottom:74px;
      z-index:95;
      display:none;
      width: 240px;
      border-radius: 20px;
      background: rgba(255,255,255,.96);
      border:1px solid rgba(18,32,51,.10);
      box-shadow: 0 22px 64px rgba(17,24,39,.18);
      overflow:hidden;
    }
    .qrWrap.show{display:block; animation: fadeUp .18s ease both}
    @keyframes fadeUp{from{opacity:0; transform: translateY(8px)} to{opacity:1; transform: translateY(0)}}
    .qrHead{
      padding:12px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      border-bottom:1px solid rgba(18,32,51,.08);
      background: linear-gradient(135deg, rgba(109,94,252,.10), rgba(32,199,255,.08));
    }
    .qrHead b{
      font-weight:1000;
      font-size:13.5px;
      letter-spacing:-.2px;
    }
    .qrClose{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(18,32,51,.10);
      background:#fff;
      cursor:pointer;
      display:grid; place-items:center;
      transition: transform .2s ease;
    }
    .qrClose:hover{transform: translateY(-1px)}
    .qrBody{
      padding:12px 14px 14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:center;
    }
    .qrBody img{
      width: 160px;
      height:auto;
      border-radius:16px;
      border:1px solid rgba(18,32,51,.10);
      background:#fff;
    }
    .qrBody .hint{
      color:var(--muted);
      font-size:12.5px;
      font-weight:900;
      margin:0;
      text-align:center;
    }

    .backTop{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(18,32,51,.10);
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 46px rgba(17,24,39,.10);
      font-weight:1000;
      cursor:pointer;
      transition: transform .2s ease;
      user-select:none;
    }
    .backTop:hover{transform: translateY(-2px)}
    .backTop span{color:var(--muted); font-weight:900; font-size:12.5px}

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

    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; }
      .heroLeft, .heroRight{min-height: unset}
      .navLinks{display:none}
      .mobileToggle{display:inline-grid; place-items:center;}
      .mobilePanel{display:block}
      .grid3{grid-template-columns: repeat(2, minmax(0,1fr))}
      .grid4{grid-template-columns: repeat(2, minmax(0,1fr))}
      .steps{grid-template-columns: repeat(2, minmax(0,1fr))}
      .caseGrid{grid-template-columns: repeat(1, minmax(0,1fr))}
      .articles{grid-template-columns: 1fr}
      .reviewsGrid{grid-template-columns: 1fr}
      .requestGrid{grid-template-columns: 1fr}
      .networkGrid{grid-template-columns: 1fr}
      .footerGrid{grid-template-columns: 1fr}
      .footerCols{grid-template-columns: 1fr}
      h1{font-size:26px}
    }