:root{
      --bg0:#fbfaf8;
      --bg1:#f4f6fb;
      --card:#ffffff;
      --text:#171a22;
      --muted:#5a667a;
      --muted2:#7a879b;
      --line:rgba(17,24,39,.10);
      --shadow: 0 14px 40px rgba(16,24,40,.10);
      --shadow2: 0 10px 22px rgba(16,24,40,.10);
      --brand:#165dff;
      --brand2:#7c3aed;
      --brand3:#00bcd4;
      --ok:#14b86a;
      --warn:#ffb020;
      --radius:18px;
      --radius2:26px;
      --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, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 520px at 15% -10%, rgba(22,93,255,.20), transparent 55%),
        radial-gradient(980px 520px at 85% 0%, rgba(124,58,237,.16), transparent 50%),
        radial-gradient(800px 480px at 50% 18%, rgba(0,188,212,.10), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
    }
    a{color:inherit}
    .container{max-width:var(--container); margin:0 auto; padding:0 20px}
    .skip{
      position:absolute; left:10px; top:-60px;
      background:#0b1220; color:#fff; padding:10px 12px; border-radius:12px;
      z-index:999;
      transition:top .2s ease;
      font-weight:700;
    }
    .skip:focus{top:10px; outline:none}
    header{
      position:sticky; top:0; z-index:80;
      backdrop-filter:saturate(160%) blur(10px);
      background:rgba(251,250,248,.70);
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .nav-wrap{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0}
    .brand{
      display:flex; align-items:center; gap:12px; min-width:240px;
    }
    .brand img{width:38px; height:38px; object-fit:contain}
    .brand .name{display:flex; flex-direction:column; line-height:1.05}
    .brand .name strong{font-size:14px; letter-spacing:.2px}
    .brand .name span{font-size:12px; color:var(--muted2)}
    nav .links{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:center;
    }
    .nav-link{
      text-decoration:none;
      font-size:13px;
      color:rgba(23,26,34,.78);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background:rgba(22,93,255,.08);
      border-color:rgba(22,93,255,.18);
      transform:translateY(-1px);
    }
    .nav-actions{display:flex; align-items:center; gap:10px; justify-content:flex-end; min-width:240px}
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:11px 14px;
      border-radius:14px;
      text-decoration:none;
      font-weight:800;
      font-size:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.75);
      color:rgba(23,26,34,.92);
      box-shadow:0 8px 18px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
    }
    .btn:hover{transform:translateY(-1px); box-shadow:0 14px 28px rgba(16,24,40,.10); background:#fff; border-color:rgba(17,24,39,.16)}
    .btn.primary{
      border-color:rgba(22,93,255,.30);
      background:linear-gradient(135deg, rgba(22,93,255,.98), rgba(124,58,237,.92));
      color:#fff;
      box-shadow: 0 18px 34px rgba(22,93,255,.20);
    }
    .btn.primary:hover{box-shadow: 0 22px 46px rgba(22,93,255,.24)}
    .btn .dot{
      width:10px; height:10px; border-radius:50%;
      background:rgba(255,255,255,.95);
      box-shadow: 0 0 0 4px rgba(255,255,255,.18);
    }
    .icon{
      width:18px; height:18px; display:inline-block;
    }
    .menu-btn{
      display:none;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.7);
      cursor:pointer;
      font-weight:900;
      color:rgba(23,26,34,.9);
      transition: transform .18s ease, background .18s ease;
    }
    .menu-btn:hover{transform:translateY(-1px); background:#fff}
    .mobile-panel{
      display:none;
      padding:10px 0 16px;
    }
    .mobile-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .mobile-grid .nav-link{background:rgba(255,255,255,.65); border-color:rgba(17,24,39,.08)}
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 8px 18px rgba(16,24,40,.06);
      font-weight:800;
      font-size:13px;
      color:rgba(23,26,34,.90);
    }
    .pill i{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 0 0 5px rgba(22,93,255,.12);
      display:inline-block;
    }

    main{padding:20px 0 0}
    .hero{
      padding:22px 0 10px;
    }
    .hero-grid{
      display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:stretch;
    }
    .hero-card{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(1200px 520px at 10% 0%, rgba(22,93,255,.14), transparent 55%),
        radial-gradient(1000px 540px at 90% 0%, rgba(124,58,237,.12), transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
      padding:22px 22px 20px;
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(120deg, rgba(22,93,255,.18), transparent 45%),
        linear-gradient(315deg, rgba(124,58,237,.14), transparent 40%);
      pointer-events:none;
      mask-image: radial-gradient(340px 240px at 15% 5%, #000 55%, transparent 70%);
      opacity:.9;
    }
    .hero-top{display:flex; align-items:flex-start; justify-content:space-between; gap:16px; position:relative}
    .hero h1{
      margin:14px 0 10px;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.12;
    }
    .lead{
      margin:0;
      color:rgba(23,26,34,.74);
      font-size:15px;
      line-height:1.7;
      max-width:62ch;
    }
    .hero-cta{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin-top:16px;
    }
    .micro{
      margin-top:12px;
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      color:rgba(23,26,34,.66);
      font-weight:700;
      font-size:12px;
    }
    .micro .sep{width:1px; height:14px; background:rgba(17,24,39,.12)}
    .micro strong{color:rgba(23,26,34,.88)}
    .hero-side{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.74);
      box-shadow: var(--shadow2);
      padding:18px;
      display:flex; flex-direction:column; gap:14px;
      overflow:hidden;
      position:relative;
    }
    .hero-side:after{
      content:"";
      position:absolute; width:240px; height:240px; right:-120px; top:-120px;
      background: radial-gradient(circle at 30% 30%, rgba(0,188,212,.22), transparent 60%);
      pointer-events:none;
    }
    .side-title{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .side-title h3{margin:0; font-size:14px; letter-spacing:.2px}
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(22,93,255,.10);
      color:rgba(22,93,255,.95);
      border:1px solid rgba(22,93,255,.18);
      font-weight:900;
      font-size:12px;
    }
    .badge b{
      width:8px; height:8px; border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 0 4px rgba(22,93,255,.12);
      display:inline-block;
    }
    .data-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      position:relative;
    }
    .data{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.7);
      padding:12px 12px 10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      will-change:transform;
    }
    .data:hover{transform:translateY(-2px); border-color:rgba(22,93,255,.22); box-shadow:0 16px 30px rgba(16,24,40,.10)}
    .data .k{font-size:12px; color:var(--muted2); font-weight:800}
    .data .v{margin-top:6px; font-size:18px; font-weight:1000; letter-spacing:-.3px}
    .data .s{margin-top:6px; font-size:12px; color:rgba(23,26,34,.66); font-weight:700; line-height:1.35}
    .spark{
      height:1px; background:linear-gradient(90deg, rgba(22,93,255,.0), rgba(22,93,255,.45), rgba(124,58,237,.0));
      margin:4px 0 0;
    }

    .section{
      padding:26px 0;
    }
    .section .sec-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:14px;
    }
    .sec-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .sec-head p{
      margin:0;
      color:rgba(23,26,34,.70);
      font-weight:700;
      font-size:13px;
      max-width:56ch;
      line-height:1.6;
    }
    .grid3{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:0 12px 22px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{transform:translateY(-2px); box-shadow:0 18px 38px rgba(16,24,40,.10); border-color:rgba(22,93,255,.20)}
    .card .toprow{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .card h3{margin:10px 0 6px; font-size:16px; letter-spacing:-.2px}
    .card p{margin:0; color:rgba(23,26,34,.72); line-height:1.7; font-weight:700; font-size:13px}
    .tagrow{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
    .tag{
      font-size:12px; font-weight:900;
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      color:rgba(23,26,34,.78);
      white-space:nowrap;
    }
    .tag.brand{
      border-color:rgba(22,93,255,.22);
      background:rgba(22,93,255,.10);
      color:rgba(22,93,255,.95);
    }
    .steps{
      display:grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap:12px;
    }
    .step{
      padding:16px 14px;
      border-radius:var(--radius);
      background:rgba(255,255,255,.76);
      border:1px solid rgba(17,24,39,.10);
      box-shadow:0 12px 20px rgba(16,24,40,.06);
      position:relative;
      overflow:hidden;
    }
    .step:before{
      content:"";
      position:absolute; inset:auto -40px -60px auto;
      width:120px; height:120px;
      background: radial-gradient(circle at 30% 30%, rgba(22,93,255,.22), transparent 60%);
      pointer-events:none;
      transform: rotate(15deg);
      opacity:.9;
    }
    .step .n{
      width:36px; height:36px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      background:rgba(22,93,255,.10);
      color:rgba(22,93,255,.98);
      border:1px solid rgba(22,93,255,.20);
    }
    .step h3{margin:10px 0 6px; font-size:15px}
    .step p{margin:0; color:rgba(23,26,34,.70); line-height:1.7; font-weight:700; font-size:13px}
    .two-col{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start;
    }
    .list{
      margin:10px 0 0; padding:0; list-style:none; display:grid; gap:10px;
    }
    .li{
      display:flex; align-items:flex-start; gap:10px;
      padding:12px 12px;
      border-radius:16px;
      background:rgba(255,255,255,.66);
      border:1px solid rgba(17,24,39,.08);
    }
    .li .check{
      width:20px; height:20px; border-radius:8px;
      background:rgba(20,184,106,.12);
      border:1px solid rgba(20,184,106,.26);
      color:rgba(20,184,106,.95);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
      margin-top:2px;
    }
    .li strong{font-size:13px}
    .li span{display:block; margin-top:4px; font-size:12px; color:rgba(23,26,34,.70); font-weight:700; line-height:1.6}
    .timeline{
      display:grid; gap:10px;
    }
    .t-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.66);
    }
    .t-dot{
      width:12px; height:12px; border-radius:50%;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow:0 0 0 5px rgba(22,93,255,.12);
      margin-top:6px;
      flex:0 0 auto;
    }
    .t-item h3{margin:0; font-size:13.5px}
    .t-item p{margin:6px 0 0; color:rgba(23,26,34,.70); font-size:12px; font-weight:700; line-height:1.65}

    .compare-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.75);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .compare-head{
      padding:16px 16px 10px;
      border-bottom:1px solid rgba(17,24,39,.08);
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
      background:
        radial-gradient(680px 320px at 0% 0%, rgba(22,93,255,.12), transparent 55%),
        radial-gradient(620px 300px at 100% 0%, rgba(124,58,237,.10), transparent 50%);
    }
    .scorebox{
      display:flex; gap:12px; align-items:center; padding:10px 12px;
      border-radius:18px; border:1px solid rgba(22,93,255,.18);
      background:rgba(22,93,255,.08);
      min-width:220px;
      justify-content:flex-start;
    }
    .stars{
      font-size:14px; letter-spacing:1px; font-weight:1000; color:rgba(22,93,255,.98);
    }
    .score{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .score strong{font-size:18px; letter-spacing:-.3px}
    .score span{font-size:12px; color:rgba(23,26,34,.70); font-weight:800; margin-top:4px}
    table{
      width:100%;
      border-collapse:collapse;
      font-size:13px;
    }
    thead th{
      text-align:left;
      padding:12px 16px;
      background:rgba(245,247,255,.85);
      color:rgba(23,26,34,.88);
      font-weight:1000;
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    tbody td{
      padding:12px 16px;
      border-bottom:1px solid rgba(17,24,39,.08);
      color:rgba(23,26,34,.76);
      font-weight:800;
      vertical-align:top;
    }
    tbody tr:hover td{background:rgba(22,93,255,.05)}
    .cell-strong{color:rgba(23,26,34,.95)}
    .score-pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,184,106,.22);
      background:rgba(20,184,106,.10);
      color:rgba(20,184,106,.98);
      font-weight:1000;
      white-space:nowrap;
    }
    .score-pill i{
      width:10px; height:10px; border-radius:50%;
      background:rgba(20,184,106,.95);
      box-shadow:0 0 0 4px rgba(20,184,106,.14);
      display:inline-block;
    }

    .match-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(0,188,212,.12), transparent 58%),
        radial-gradient(720px 360px at 90% 10%, rgba(22,93,255,.12), transparent 55%),
        rgba(255,255,255,.76);
      box-shadow: var(--shadow2);
      padding:14px;
    }
    .match-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      align-items:start;
    }
    .selector{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      padding:14px;
    }
    .selector h3{margin:0 0 10px; font-size:15px}
    .field{
      display:flex; flex-direction:column; gap:8px; margin-top:10px;
    }
    label{font-size:12px; font-weight:900; color:rgba(23,26,34,.76)}
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.92);
      padding:12px 12px;
      outline:none;
      color:rgba(23,26,34,.92);
      font-weight:800;
      font-size:13px;
      transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(22,93,255,.40);
      box-shadow:0 0 0 4px rgba(22,93,255,.14);
    }
    .form-actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-top:12px}
    .helper{
      font-size:12px; color:rgba(23,26,34,.68); font-weight:800; line-height:1.6;
    }
    .primary-wide{
      width:100%;
      padding:12px 14px;
      border-radius:16px;
      border:0;
      cursor:pointer;
      font-weight:1000;
      font-size:14px;
      color:#fff;
      background:linear-gradient(135deg, rgba(22,93,255,.98), rgba(124,58,237,.92));
      box-shadow: 0 18px 34px rgba(22,93,255,.20);
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    }
    .primary-wide:hover{transform:translateY(-1px); box-shadow: 0 24px 48px rgba(22,93,255,.26); filter:saturate(1.02)}
    .secondary{
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.72);
      color:rgba(23,26,34,.92);
      border-radius:16px;
      padding:12px 14px;
      cursor:pointer;
      font-weight:1000;
      font-size:14px;
      transition: transform .18s ease, background .18s ease;
    }
    .secondary:hover{transform:translateY(-1px); background:#fff}

    .side-result{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.70);
      padding:14px;
      overflow:hidden;
    }
    .result-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .result-head h3{margin:0; font-size:15px}
    .status{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(255,176,32,.10);
      border:1px solid rgba(255,176,32,.22);
      color:rgba(168,93,0,.98);
      font-weight:1000;
      font-size:12px;
      white-space:nowrap;
    }
    .status b{width:8px; height:8px; border-radius:50%; background:rgba(255,176,32,.95); box-shadow:0 0 0 4px rgba(255,176,32,.14); display:inline-block}
    .preview{
      margin-top:10px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(245,247,255,.65);
      padding:12px;
    }
    .preview .p-title{font-size:12px; font-weight:1000; color:rgba(23,26,34,.76)}
    .checklist{
      margin-top:10px;
      display:grid; gap:10px;
    }
    .item{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.80);
    }
    .item .left{display:flex; gap:10px; align-items:flex-start}
    .ico{
      width:26px; height:26px; border-radius:12px;
      background:rgba(22,93,255,.10);
      border:1px solid rgba(22,93,255,.18);
      color:rgba(22,93,255,.98);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
      margin-top:1px;
    }
    .item .text strong{display:block; font-size:13px}
    .item .text span{display:block; margin-top:4px; font-size:12px; color:rgba(23,26,34,.68); font-weight:800; line-height:1.5}
    .item .state{
      font-size:12px;
      font-weight:1000;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.8);
      color:rgba(23,26,34,.74);
      white-space:nowrap;
      flex:0 0 auto;
    }
    .state.ok{border-color:rgba(20,184,106,.22); background:rgba(20,184,106,.10); color:rgba(20,184,106,.98)}
    .state.todo{border-color:rgba(22,93,255,.22); background:rgba(22,93,255,.10); color:rgba(22,93,255,.98)}
    .state.wait{border-color:rgba(255,176,32,.22); background:rgba(255,176,32,.10); color:rgba(168,93,0,.98)}

    .faq-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    .faq{
      border-radius:var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 12px 22px rgba(16,24,40,.06);
      overflow:hidden;
    }
    details{
      border-top:1px solid rgba(17,24,39,.08);
      padding:0;
    }
    details:first-of-type{border-top:0}
    summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:1000;
      color:rgba(23,26,34,.92);
      font-size:13.5px;
      outline:none;
    }
    summary::-webkit-details-marker{display:none}
    summary .chev{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(245,247,255,.75);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      flex:0 0 auto;
    }
    details[open] summary .chev{
      transform:rotate(180deg);
      background:rgba(22,93,255,.10);
      border-color:rgba(22,93,255,.22);
    }
    .faq .ans{
      padding:0 14px 14px;
      color:rgba(23,26,34,.72);
      font-weight:800;
      line-height:1.75;
      font-size:13px;
    }

    .reviews{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;
    }
    .review{
      border-radius:var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 12px 22px rgba(16,24,40,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:12px;
    }
    .review:hover{transform:translateY(-2px); box-shadow:0 18px 40px rgba(16,24,40,.10); border-color:rgba(22,93,255,.20)}
    .review .who{display:flex; gap:10px; align-items:center}
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.9), rgba(255,255,255,.0) 55%),
        linear-gradient(135deg, rgba(22,93,255,.35), rgba(124,58,237,.25));
      border:1px solid rgba(22,93,255,.20);
      box-shadow: 0 12px 26px rgba(22,93,255,.14);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:rgba(22,93,255,.95);
      flex:0 0 auto;
    }
    .who strong{font-size:13.5px; display:block}
    .who span{font-size:12px; color:rgba(23,26,34,.68); font-weight:900; margin-top:3px; display:block}
    .review .quote{
      margin:0;
      color:rgba(23,26,34,.72);
      font-weight:800;
      line-height:1.75;
      font-size:13px;
    }
    .quote .hl{color:rgba(22,93,255,.95); font-weight:1000}
    .review .meta{display:flex; gap:10px; flex-wrap:wrap}
    .mini{
      font-size:12px; font-weight:1000;
      padding:8px 10px; border-radius:999px;
      background:rgba(245,247,255,.80);
      border:1px solid rgba(17,24,39,.10);
      color:rgba(23,26,34,.76);
    }

    .cases{
      display:grid; grid-template-columns: 1fr 1fr 1fr; gap:12px;
    }
    .case{
      border-radius:var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.78);
      padding:14px;
      box-shadow:0 12px 22px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:12px;
      min-height:170px;
    }
    .case:hover{transform:translateY(-2px); box-shadow:0 18px 40px rgba(16,24,40,.10); border-color:rgba(22,93,255,.20)}
    .case h3{margin:0; font-size:15px}
    .case p{margin:0; color:rgba(23,26,34,.70); font-weight:800; line-height:1.7; font-size:13px}
    .case .chips{display:flex; gap:8px; flex-wrap:wrap}
    .chip{
      font-size:12px; font-weight:1000;
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      color:rgba(23,26,34,.74);
      white-space:nowrap;
    }

    .article-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.76);
      box-shadow: var(--shadow2);
      padding:14px;
    }
    .article-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    .article{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(245,247,255,.58);
      padding:12px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .article:hover{transform:translateY(-2px); border-color:rgba(22,93,255,.20); background:rgba(245,247,255,.75)}
    .article a{display:block; text-decoration:none}
    .article .meta{
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
      margin-bottom:8px;
    }
    .kpi{
      font-size:12px; font-weight:1000;
      padding:7px 10px; border-radius:999px;
      background:rgba(22,93,255,.10);
      border:1px solid rgba(22,93,255,.20);
      color:rgba(22,93,255,.95);
      white-space:nowrap;
    }
    .time{font-size:12px; font-weight:900; color:rgba(23,26,34,.62)}
    .article h3{margin:0; font-size:14.5px; letter-spacing:-.2px; color:rgba(23,26,34,.92); line-height:1.45}
    .article p{margin:8px 0 0; color:rgba(23,26,34,.70); font-weight:800; line-height:1.7; font-size:13px}

    .price-row{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      align-items:stretch;
    }
    .price-card{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.78);
      box-shadow:var(--shadow2);
      padding:14px;
      overflow:hidden;
      position:relative;
    }
    .price-card:before{
      content:"";
      position:absolute; inset:-2px auto auto -2px;
      width:340px; height:180px;
      background: radial-gradient(circle at 25% 35%, rgba(22,93,255,.14), transparent 60%);
      pointer-events:none;
    }
    .price-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; position:relative;
    }
    .price-head h3{margin:0; font-size:16px}
    .price-head p{margin:6px 0 0; color:rgba(23,26,34,.70); font-weight:800; line-height:1.7; font-size:13px}
    .price-table{
      margin-top:12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(245,247,255,.55);
      overflow:hidden;
    }
    .price-table table{font-size:13px}
    .price-table thead th{padding:10px 12px}
    .price-table tbody td{padding:10px 12px}
    .muted-note{
      margin-top:10px;
      color:rgba(23,26,34,.62);
      font-weight:900;
      font-size:12px;
      line-height:1.6;
      position:relative;
    }

    .network{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      align-items:start;
    }
    .mapish{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(720px 420px at 30% 0%, rgba(22,93,255,.14), transparent 55%),
        rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      padding:14px;
      overflow:hidden;
      position:relative;
    }
    .mapgrid{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:10px;
      margin-top:10px;
    }
    .node{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      padding:12px;
    }
    .node strong{display:block; font-size:13.5px}
    .node span{display:block; margin-top:6px; font-size:12px; color:rgba(23,26,34,.66); font-weight:900; line-height:1.6}
    .nodesmall{
      display:grid; gap:10px; margin-top:12px;
    }
    .linkline{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(245,247,255,.58);
    }
    .linkline .l{display:flex; gap:10px; align-items:flex-start}
    .linkline .b{
      width:28px; height:28px; border-radius:12px;
      background:rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.20);
      color:rgba(124,58,237,.98);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
      margin-top:2px;
    }
    .linkline strong{display:block; font-size:13.5px}
    .linkline span{display:block; margin-top:6px; font-size:12px; color:rgba(23,26,34,.66); font-weight:900; line-height:1.6}
    .linkline a{
      text-decoration:none;
      font-weight:1000;
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.7);
      white-space:nowrap;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .linkline a:hover{transform:translateY(-1px); background:#fff; border-color:rgba(22,93,255,.22)}

    .center-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      justify-content:center;
      margin-top:14px;
    }

    .tagcloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.76);
      box-shadow:var(--shadow2);
    }
    .tw{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(245,247,255,.55);
      font-weight:1000;
      font-size:12.5px;
      color:rgba(23,26,34,.76);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      user-select:none;
    }
    .tw:hover{transform:translateY(-2px); border-color:rgba(22,93,255,.22); background:rgba(245,247,255,.80)}
    .tw i{
      width:8px; height:8px; border-radius:50%;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow:0 0 0 4px rgba(22,93,255,.10);
      display:inline-block;
    }

    .footer{
      margin-top:10px;
      background:rgba(12,18,34,.96);
      color:#fff;
      border-top:1px solid rgba(255,255,255,.10);
    }
    .footer .container{padding:26px 20px}
    .footer-grid{
      display:grid; grid-template-columns: 1.1fr 1fr 1fr; gap:16px; align-items:start;
    }
    .fbrand{
      display:flex; flex-direction:column; gap:12px;
    }
    .fbrand .row{display:flex; align-items:center; gap:12px}
    .fbrand img{width:42px; height:42px; object-fit:contain}
    .fbrand strong{font-size:16px; letter-spacing:-.2px}
    .fbrand p{
      margin:0;
      color:rgba(255,255,255,.76);
      font-weight:800;
      line-height:1.7;
      font-size:13px;
    }
    .fcol h3{margin:0 0 12px; font-size:13.5px; letter-spacing:.2px}
    .f-links{
      display:grid; gap:10px;
    }
    .f-links a{
      color:rgba(255,255,255,.80);
      text-decoration:none;
      font-weight:900;
      font-size:13px;
      line-height:1.4;
    }
    .f-links a:hover{color:#fff; text-decoration:underline}
    .footer-bottom{
      padding:16px 0 0;
      margin-top:18px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
      color:rgba(255,255,255,.72);
      font-weight:900;
      font-size:12px;
    }

    .float-cs{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:120;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-cs .btn{
      box-shadow:0 18px 40px rgba(16,24,40,.18);
      border-color:rgba(255,255,255,.18);
    }
    .cs-panel{
      width:280px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(12,18,34,.92);
      color:#fff;
      box-shadow:0 24px 60px rgba(0,0,0,.30);
      overflow:hidden;
      transform-origin: 100% 100%;
      animation: pop .18s ease both;
    }
    @keyframes pop{from{transform:scale(.98); opacity:.6} to{transform:scale(1); opacity:1}}
    .cs-head{
      padding:12px 12px 10px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .cs-head strong{font-size:13px}
    .cs-close{
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.06);
      color:#fff;
      border-radius:12px;
      width:34px; height:34px;
      cursor:pointer;
      font-weight:1000;
    }
    .cs-body{padding:12px}
    .cs-body p{margin:0; color:rgba(255,255,255,.76); font-weight:800; line-height:1.6; font-size:12.5px}
    .cs-body .qr{
      margin-top:10px;
      border-radius:16px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      padding:10px;
      display:flex; align-items:center; justify-content:center;
    }
    .cs-body img{max-width:100%; height:auto; border-radius:12px; display:block}
    .cs-actions{display:flex; gap:10px; margin-top:10px}
    .cs-actions .btn{
      flex:1;
      padding:10px 12px;
      border-radius:14px;
      box-shadow:none;
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.14);
      color:#fff;
    }
    .cs-actions .btn:hover{background:rgba(255,255,255,.12)}

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

    details summary:focus-visible{
      outline:3px solid rgba(22,93,255,.25);
      outline-offset:2px;
      border-radius:14px;
    }

    .sr-only{
      position:absolute;
      width:1px; height:1px;
      padding:0; margin:-1px;
      overflow:hidden; clip:rect(0,0,0,0);
      border:0;
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; gap:12px}
      .hero h1{font-size:28px}
      nav .links{display:none}
      .menu-btn{display:inline-flex; align-items:center; justify-content:center}
      .mobile-panel{display:block}
      .mobile-panel.hide{display:none}
      .steps{grid-template-columns: repeat(2, 1fr)}
      .grid3{grid-template-columns: 1fr; }
      .two-col{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .cases{grid-template-columns: 1fr}
      .article-grid{grid-template-columns: 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .price-row{grid-template-columns: 1fr}
      .network{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .nav-actions{min-width:auto}
      .brand{min-width:auto}
    }