:root{
      --bg0:#f7f7fb;
      --bg1:#ffffff;
      --text:#101828;
      --muted:#5a6476;
      --muted2:#7b8598;
      --line:#e7eaf0;
      --card:#ffffff;
      --shadow: 0 10px 30px rgba(16,24,40,.08);
      --shadow2: 0 6px 18px rgba(16,24,40,.10);
      --brand:#0b5cff;
      --brand2:#6a5cff;
      --brand3:#00b3a6;
      --accent:#ff3b6a;
      --focus: rgba(11,92,255,.18);
      --radius:18px;
      --radius2:14px;
      --max:1120px;
      --pad:16px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 10% -10%, rgba(11,92,255,.18), transparent 55%),
        radial-gradient(900px 600px at 95% 0%, rgba(106,92,255,.14), transparent 52%),
        radial-gradient(900px 560px at 85% 75%, rgba(0,179,166,.10), transparent 50%),
        linear-gradient(180deg, var(--bg0), #ffffff 45%, #ffffff);
      line-height:1.5;
    }

    a{color:inherit; text-decoration:none}
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
      outline:3px solid var(--focus);
      outline-offset:2px;
      border-radius:12px;
    }

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

    .skip{
      position:absolute;
      left:-9999px;
      top:8px;
      background:var(--card);
      padding:10px 12px;
      border:1px solid var(--line);
      border-radius:12px;
      z-index:9999;
    }
    .skip:focus{left:var(--pad);}

    header{
      position:sticky;
      top:0;
      z-index:50;
      background: rgba(247,247,251,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(231,234,240,.65);
    }

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

    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 210px;
    }
    .logo{
      width:38px;
      height:38px;
      border-radius:12px;
      overflow:hidden;
      box-shadow: 0 8px 20px rgba(11,92,255,.18);
      background: linear-gradient(135deg, rgba(11,92,255,.18), rgba(106,92,255,.14));
      display:grid;
      place-items:center;
      border:1px solid rgba(231,234,240,.9);
    }
    .logo img{
      width:100%;
      height:auto;
      display:block;
    }
    .brand strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand span{
      display:block;
      font-size:12px;
      color:var(--muted);
      margin-top:2px;
    }

    .navlinks{
      display:flex;
      gap:14px;
      align-items:center;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navlinks a{
      padding:8px 10px;
      border-radius:12px;
      color:var(--muted);
      font-size:13px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .navlinks a:hover{
      background:rgba(11,92,255,.06);
      border-color:rgba(11,92,255,.12);
      color:var(--text);
      transform: translateY(-1px);
    }

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

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius:14px;
      padding:11px 14px;
      border:1px solid rgba(231,234,240,.9);
      background: #fff;
      color:var(--text);
      font-weight:700;
      font-size:13px;
      letter-spacing:.2px;
      box-shadow: 0 12px 25px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,24,40,.10);
      border-color: rgba(11,92,255,.22);
    }
    .btn:active{transform: translateY(-1px)}
    .btnPrimary{
      border:1px solid rgba(11,92,255,.35);
      background: linear-gradient(135deg, rgba(11,92,255,1), rgba(106,92,255,1));
      color:#fff;
      box-shadow: 0 18px 45px rgba(11,92,255,.25);
    }
    .btnPrimary:hover{box-shadow: 0 22px 55px rgba(11,92,255,.32);}
    .btnGhost{
      background: rgba(255,255,255,.7);
    }

    .icon{
      width:18px; height:18px; display:inline-block;
    }

    .burger{
      display:none;
      width:44px; height:40px;
      border-radius:14px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.7);
      box-shadow: 0 12px 25px rgba(16,24,40,.06);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      transition: transform .18s ease, border-color .18s ease;
    }
    .burger:hover{transform: translateY(-1px); border-color: rgba(11,92,255,.22);}
    .burger .lines{
      width:18px; height:14px; position:relative;
    }
    .burger .lines span{
      position:absolute; left:0; right:0;
      height:2px; background: var(--text);
      border-radius:2px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
      opacity:.88;
    }
    .burger .lines span:nth-child(1){top:1px}
    .burger .lines span:nth-child(2){top:6px}
    .burger .lines span:nth-child(3){top:11px}
    .burger[data-open="true"] .lines span:nth-child(1){top:6px; transform: rotate(45deg)}
    .burger[data-open="true"] .lines span:nth-child(2){opacity:0}
    .burger[data-open="true"] .lines span:nth-child(3){top:6px; transform: rotate(-45deg)}

    .mobilePanel{
      display:none;
      padding:0 0 14px 0;
    }
    .mobilePanel .panelInner{
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.72);
      border-radius: 18px;
      padding:12px;
      box-shadow: 0 20px 60px rgba(16,24,40,.08);
    }
    .mobilePanel a{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border-radius:14px;
      color:var(--text);
      border:1px solid transparent;
      background: transparent;
      transition: background .18s ease, border-color .18s ease;
      margin-bottom:8px;
      font-weight:650;
      font-size:14px;
    }
    .mobilePanel a:hover{
      background: rgba(11,92,255,.06);
      border-color: rgba(11,92,255,.12);
    }

    main{padding: 18px 0 0;}

    .hero{
      position:relative;
      padding: 26px 0 18px;
    }

    .heroGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:start;
    }

    .heroCard{
      border-radius: 26px;
      background:
        radial-gradient(900px 300px at 20% 0%, rgba(255,59,106,.12), transparent 60%),
        radial-gradient(800px 360px at 90% 20%, rgba(11,92,255,.18), transparent 62%),
        radial-gradient(760px 300px at 60% 90%, rgba(0,179,166,.12), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
      border:1px solid rgba(231,234,240,.9);
      box-shadow: 0 30px 90px rgba(16,24,40,.08);
      padding: 20px;
      overflow:hidden;
      min-height: 360px;
      position:relative;
    }

    .heroCard::after{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(120deg, rgba(11,92,255,.0), rgba(11,92,255,.10), rgba(106,92,255,.0));
      transform: translateX(-45%);
      opacity:.8;
      pointer-events:none;
      animation: sheen 7s ease-in-out infinite;
    }
    @keyframes sheen{
      0%, 38% { transform: translateX(-55%) skewX(-18deg); opacity:.0;}
      55% { transform: translateX(-15%) skewX(-18deg); opacity:.8;}
      72% { transform: translateX(30%) skewX(-18deg); opacity:.0;}
      100% { transform: translateX(55%) skewX(-18deg); opacity:0;}
    }

    .heroTop{
      display:flex;
      gap:14px;
      align-items:flex-start;
      justify-content:space-between;
      position:relative;
      z-index:1;
    }

    .badgeRow{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      background: rgba(11,92,255,.08);
      border:1px solid rgba(11,92,255,.16);
      color:var(--text);
      font-weight:700;
      font-size:12px;
      letter-spacing:.2px;
    }
    .pill b{color:var(--brand); font-weight:900}
    .pill .dot{
      width:8px; height:8px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 8px 20px rgba(11,92,255,.25);
    }

    .hero h1{
      margin:14px 0 10px;
      font-size: 34px;
      line-height:1.2;
      letter-spacing:-.6px;
      position:relative;
      z-index:1;
    }
    .hero .lead{
      color:var(--muted);
      font-size:15px;
      max-width: 620px;
      position:relative;
      z-index:1;
    }
    .heroActions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:16px;
      position:relative;
      z-index:1;
      align-items:center;
    }

    .quickGrid{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      position:relative;
      z-index:1;
    }
    .metric{
      border-radius: 16px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.65);
      padding:12px 12px;
      min-height: 92px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .metric:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 45px rgba(16,24,40,.10);
      border-color: rgba(11,92,255,.20);
    }
    .metric .k{
      font-size:22px;
      font-weight:950;
      letter-spacing:-.5px;
      margin-bottom:6px;
      display:flex;
      align-items:baseline;
      gap:8px;
    }
    .metric .k i{
      font-style:normal;
      font-size:12px;
      padding:4px 8px;
      border-radius:999px;
      background: rgba(106,92,255,.10);
      border:1px solid rgba(106,92,255,.16);
      color:var(--brand2);
      font-weight:900;
      letter-spacing:.1px;
    }
    .metric p{
      margin:0;
      color:var(--muted);
      font-size:13px;
    }

    .sidePanel{
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .sideCard{
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.78);
      border-radius: 22px;
      padding:14px;
      box-shadow: 0 18px 50px rgba(16,24,40,.06);
    }

    .sideCard h3{
      margin:0 0 8px;
      font-size:14px;
      letter-spacing:.2px;
    }

    .list{
      margin:0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 10px;
      border-radius: 16px;
      border:1px solid rgba(231,234,240,.75);
      background: rgba(255,255,255,.6);
      transition: transform .18s ease, border-color .18s ease;
    }
    .list li:hover{
      transform: translateY(-2px);
      border-color: rgba(11,92,255,.18);
    }
    .check{
      width:18px; height:18px;
      border-radius:6px;
      background: rgba(11,92,255,.12);
      border:1px solid rgba(11,92,255,.18);
      display:grid;
      place-items:center;
      margin-top:1px;
      flex:0 0 auto;
    }
    .check svg{width:12px; height:12px}
    .list b{font-size:13px}
    .list span{color:var(--muted); font-size:12.5px; display:block; margin-top:3px}

    section{
      padding: 26px 0;
    }

    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
    }

    .sectionHead h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .sectionHead p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      max-width: 520px;
    }

    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }

    .card{
      border:1px solid rgba(231,234,240,.9);
      border-radius: var(--radius);
      background: rgba(255,255,255,.76);
      box-shadow: 0 20px 60px rgba(16,24,40,.05);
      padding:16px;
      overflow:hidden;
    }

    .cardTitle{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .cardTitle h3{
      margin:0;
      font-size:15px;
      letter-spacing:.2px;
    }

    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.7);
      color:var(--muted);
      font-size:12px;
      font-weight:750;
      white-space:nowrap;
    }
    .tag i{
      width:8px; height:8px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand3), var(--brand2));
      box-shadow: 0 10px 25px rgba(106,92,255,.18);
      display:inline-block;
    }

    .capabilities{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .cap{
      padding:14px;
      border-radius: 18px;
      border:1px solid rgba(231,234,240,.9);
      background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.62));
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 132px;
    }
    .cap:hover{
      transform: translateY(-3px);
      border-color: rgba(11,92,255,.20);
      box-shadow: 0 18px 45px rgba(16,24,40,.09);
    }
    .cap .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .cap .glyph{
      width:36px; height:36px;
      border-radius:14px;
      background:
        radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.7), transparent 55%),
        linear-gradient(135deg, rgba(11,92,255,.18), rgba(106,92,255,.10));
      border:1px solid rgba(11,92,255,.18);
      display:grid;
      place-items:center;
    }
    .cap h4{
      margin:0;
      font-size:14px;
      letter-spacing:.1px;
    }
    .cap p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      max-width: 280px;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
      align-items:stretch;
    }
    .step{
      padding:14px;
      border-radius: 18px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.7);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      position:relative;
      overflow:hidden;
      min-height: 168px;
    }
    .step:hover{
      transform: translateY(-3px);
      border-color: rgba(11,92,255,.20);
      box-shadow: 0 18px 45px rgba(16,24,40,.09);
    }
    .step .num{
      width:42px; height:42px;
      border-radius:16px;
      display:grid;
      place-items:center;
      font-weight:950;
      letter-spacing:-.5px;
      background: rgba(11,92,255,.10);
      border:1px solid rgba(11,92,255,.18);
      color: var(--brand);
      margin-bottom:10px;
      position:relative;
      z-index:1;
    }
    .step h4{
      margin:0 0 8px;
      font-size:14px;
      position:relative;
      z-index:1;
    }
    .step p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      position:relative;
      z-index:1;
    }
    .step::after{
      content:"";
      position:absolute;
      inset:auto -40px -60px auto;
      width:160px; height:160px;
      background: radial-gradient(circle at 30% 30%, rgba(11,92,255,.16), transparent 60%);
      transform: rotate(18deg);
      pointer-events:none;
    }

    .twoCol{
      display:grid;
      grid-template-columns: 1fr .95fr;
      gap:14px;
      align-items:start;
    }

    .timeline{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .titem{
      display:grid;
      grid-template-columns: 90px 1fr;
      gap:10px;
      padding:12px;
      border-radius: 16px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.72);
    }
    .titem b{
      font-size:13px;
      color:var(--text);
    }
    .titem span{
      color:var(--muted);
      font-size:13px;
      display:block;
      margin-top:3px;
    }
    .dotline{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-size:12.5px;
    }
    .dotline i{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 14px 30px rgba(11,92,255,.20);
      display:inline-block;
    }

    .compareWrap{
      overflow:hidden;
    }
    .compareTable{
      width:100%;
      border-collapse:collapse;
      border-radius:16px;
      overflow:hidden;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(231,234,240,.9);
    }
    .compareTable thead th{
      text-align:left;
      font-size:13px;
      color:var(--muted);
      font-weight:850;
      padding:12px 12px;
      border-bottom:1px solid rgba(231,234,240,.9);
      background: linear-gradient(180deg, rgba(247,247,251,.92), rgba(255,255,255,.65));
      white-space:nowrap;
    }
    .compareTable tbody td{
      padding:12px 12px;
      border-bottom:1px solid rgba(231,234,240,.75);
      color:var(--text);
      font-size:13.5px;
      vertical-align:top;
    }
    .compareTable tbody tr:last-child td{border-bottom:none}
    .badgeGood{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(0,179,166,.22);
      background: rgba(0,179,166,.10);
      color:#0b4b44;
      font-weight:850;
      font-size:12px;
      white-space:nowrap;
    }
    .badgeMid{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(255,59,106,.18);
      background: rgba(255,59,106,.10);
      color:#6b0d2a;
      font-weight:850;
      font-size:12px;
      white-space:nowrap;
    }

    .tokenRow{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .tokenCard{
      border-radius: 18px;
      border:1px solid rgba(231,234,240,.9);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      padding:14px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height: 168px;
    }
    .tokenCard:hover{
      transform: translateY(-3px);
      border-color: rgba(11,92,255,.20);
      box-shadow: 0 18px 45px rgba(16,24,40,.09);
    }
    .tokenCard h4{margin:0 0 8px; font-size:14px}
    .tokenCard p{margin:0; color:var(--muted); font-size:13px}
    .tokenBig{
      margin-top:10px;
      display:flex;
      align-items:flex-end;
      gap:10px;
    }
    .tokenBig b{
      font-size:26px;
      letter-spacing:-.7px;
    }
    .tokenBig span{
      color:var(--muted2);
      font-size:12.5px;
      padding-bottom:3px;
    }
    .tokenFoot{
      margin-top:12px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .faqWrap{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    details{
      border-radius: 18px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.74);
      padding:12px 14px;
      box-shadow: 0 12px 30px rgba(16,24,40,.04);
      transition: border-color .18s ease, transform .18s ease;
    }
    details[open]{
      border-color: rgba(11,92,255,.22);
      transform: translateY(-2px);
    }
    summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      font-weight:860;
      font-size:14px;
    }
    summary::-webkit-details-marker{display:none}
    .sumLeft{
      display:flex; align-items:center; gap:12px;
    }
    .sumIcon{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(11,92,255,.08);
      display:grid;
      place-items:center;
    }
    .sumIcon svg{width:16px; height:16px}
    .chev{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.6);
      display:grid;
      place-items:center;
      transition: transform .18s ease;
      flex:0 0 auto;
    }
    details[open] .chev{transform: rotate(180deg)}
    .faqBody{
      color:var(--muted);
      font-size:13.5px;
      margin-top:10px;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .review{
      border-radius:18px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.75);
      padding:14px;
      min-height: 175px;
      box-shadow: 0 18px 55px rgba(16,24,40,.05);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .review:hover{
      transform: translateY(-3px);
      border-color: rgba(11,92,255,.20);
      box-shadow: 0 22px 65px rgba(16,24,40,.08);
    }
    .review .who{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .avatar{
      width:38px; height:38px;
      border-radius:16px;
      border:1px solid rgba(231,234,240,.9);
      background:
        radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.8), transparent 55%),
        linear-gradient(135deg, rgba(11,92,255,.18), rgba(0,179,166,.14));
      display:grid;
      place-items:center;
      font-weight:950;
      color:var(--brand);
      letter-spacing:-.2px;
    }
    .stars{
      display:flex; gap:2px; align-items:center;
      color:#f2b01e;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .review h4{
      margin:0;
      font-size:14px;
    }
    .review p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
    }
    .review .meta{
      margin-top:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:var(--muted2);
      font-size:12.5px;
    }

    .caseGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      align-items:stretch;
    }
    .caseCard{
      border-radius:18px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.75);
      padding:14px;
      min-height: 205px;
      box-shadow: 0 18px 55px rgba(16,24,40,.05);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .caseCard:hover{
      transform: translateY(-3px);
      border-color: rgba(11,92,255,.20);
      box-shadow: 0 22px 65px rgba(16,24,40,.08);
    }
    .caseTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .caseTop b{
      font-size:14px;
      letter-spacing:.1px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.65);
      color:var(--muted);
      font-size:12px;
      font-weight:850;
      white-space:nowrap;
    }
    .caseCard p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
    }
    .caseFoot{
      margin-top:auto;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      justify-content:space-between;
    }

    .articleGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .articleList{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .articleItem{
      border-radius:18px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.75);
      padding:12px 12px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .articleItem:hover{
      transform: translateY(-2px);
      border-color: rgba(11,92,255,.20);
      box-shadow: 0 18px 45px rgba(16,24,40,.08);
    }
    .articleItem b{
      font-size:13.5px;
      letter-spacing:.1px;
    }
    .articleItem span{
      display:block;
      color:var(--muted);
      font-size:12.5px;
      margin-top:4px;
    }

    .articleMeta{
      color:var(--muted2);
      font-size:12px;
      white-space:nowrap;
      padding-top:2px;
    }

    form{
      margin:0;
    }
    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    label{
      font-weight:850;
      font-size:13px;
      color:var(--text);
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(231,234,240,.95);
      background: rgba(255,255,255,.9);
      padding:12px 12px;
      font-size:14px;
      color:var(--text);
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    textarea{min-height: 110px; resize: vertical}
    input::placeholder, textarea::placeholder{color:#9aa3b2}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(11,92,255,.35);
      box-shadow: 0 0 0 4px rgba(11,92,255,.12);
      outline:none;
    }

    .formFoot{
      grid-column: 1 / -1;
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      margin-top:2px;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12.5px;
      max-width: 420px;
    }

    .networkGrid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
    }
    .networkCard{
      border-radius:18px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.75);
      padding:14px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height: 170px;
    }
    .networkCard:hover{
      transform: translateY(-3px);
      border-color: rgba(11,92,255,.20);
      box-shadow: 0 22px 65px rgba(16,24,40,.08);
    }
    .networkCard h4{margin:0 0 8px; font-size:14px}
    .networkCard p{margin:0; color:var(--muted); font-size:13.5px}
    .netPoints{
      margin-top:10px;
      display:flex; flex-wrap:wrap; gap:10px;
    }

    .tagSoft{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(247,247,251,.7);
      color:var(--muted);
      font-size:12px;
      font-weight:850;
    }
    .tagSoft i{
      width:8px; height:8px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand3));
      display:inline-block;
      box-shadow: 0 14px 25px rgba(11,92,255,.16);
    }

    .labelsCloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:10px;
    }

    .priceGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }

    .priceCard{
      border-radius:18px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.74);
      padding:14px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height: 190px;
    }
    .priceCard:hover{
      transform: translateY(-3px);
      border-color: rgba(11,92,255,.20);
      box-shadow: 0 22px 65px rgba(16,24,40,.08);
    }
    .priceCard h4{margin:0 0 8px; font-size:14px}
    .priceCard p{margin:0; color:var(--muted); font-size:13.5px}
    .priceList{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:9px;
    }
    .priceList li{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:10px;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(231,234,240,.75);
      background: rgba(255,255,255,.6);
    }
    .priceList b{
      font-size:13px;
    }
    .priceList span{
      color:var(--muted2);
      font-size:12.5px;
      text-align:right;
    }

    .footer{
      margin-top: 10px;
      padding: 22px 0 28px;
      background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(247,247,251,.95));
      border-top:1px solid rgba(231,234,240,.85);
    }
    .footerInner{
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.72);
      border-radius: 22px;
      padding: 16px;
      box-shadow: 0 20px 60px rgba(16,24,40,.05);
    }
    .footerTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .footerBrand{
      min-width: 260px;
    }
    .footerBrand h3{
      margin:0 0 6px;
      font-size:14px;
      letter-spacing:.2px;
    }
    .footerBrand p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      max-width: 480px;
    }
    .footerLinks{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      align-items:flex-start;
      justify-content:flex-end;
      flex: 1;
    }
    .footerLinks a{
      color:var(--muted);
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.65);
      border-radius: 14px;
      padding:10px 12px;
      font-weight:800;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease, color .18s ease;
      white-space:nowrap;
    }
    .footerLinks a:hover{
      transform: translateY(-2px);
      border-color: rgba(11,92,255,.20);
      color:var(--text);
    }
    .footerBottom{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:var(--muted2);
      font-size:12.5px;
      padding-top:12px;
      border-top:1px solid rgba(231,234,240,.9);
    }

    .floatHelp{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .floatHelp .item{
      pointer-events:auto;
      border-radius: 18px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.80);
      box-shadow: 0 22px 70px rgba(16,24,40,.12);
      overflow:hidden;
      width: 210px;
      transform: translateY(6px);
      opacity:0;
      animation: floatIn .6s ease forwards;
    }
    @keyframes floatIn{
      to { transform: translateY(0); opacity:1;}
    }
    .floatHelp .item:nth-child(1){animation-delay:.05s}
    .floatHelp .item:nth-child(2){animation-delay:.12s}

    .helpHeader{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:12px 12px;
      background:
        radial-gradient(220px 120px at 10% 0%, rgba(11,92,255,.16), transparent 55%),
        radial-gradient(240px 140px at 90% 30%, rgba(0,179,166,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.76));
    }
    .helpHeader b{font-size:13.5px}
    .helpHeader span{font-size:12.5px; color:var(--muted)}
    .helpBody{
      padding:12px;
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .helpQR{
      width:78px; height:78px;
      border-radius:16px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.75);
      overflow:hidden;
      flex: 0 0 auto;
      display:grid;
      place-items:center;
    }
    .helpQR img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .helpActions{
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1;
      min-width:0;
    }
    .helpActions a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.75);
      font-weight:900;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .helpActions a:hover{
      transform: translateY(-2px);
      border-color: rgba(11,92,255,.20);
    }

    .toTop{
      pointer-events:auto;
      width:54px; height:54px;
      border-radius:20px;
      border:1px solid rgba(231,234,240,.9);
      background: rgba(255,255,255,.86);
      box-shadow: 0 22px 70px rgba(16,24,40,.12);
      display:grid;
      place-items:center;
      cursor:pointer;
      transition: transform .18s ease, border-color .18s ease;
      opacity:0;
      transform: translateY(10px);
      animation: floatIn2 .6s ease forwards;
      animation-delay:.18s;
    }
    @keyframes floatIn2{to{opacity:1; transform: translateY(0)}}
    .toTop:hover{transform: translateY(-2px); border-color: rgba(11,92,255,.22);}
    .toTop svg{width:20px; height:20px}

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

    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; }
      .heroCard{min-height: unset;}
      .quickGrid{grid-template-columns: repeat(2, minmax(0,1fr));}
      .capabilities{grid-template-columns: repeat(2, minmax(0,1fr))}
      .steps{grid-template-columns: repeat(2, minmax(0,1fr))}
      .twoCol{grid-template-columns: 1fr;}
      .reviews{grid-template-columns: repeat(2, minmax(0,1fr))}
      .caseGrid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .articleGrid{grid-template-columns: 1fr}
      .tokenRow{grid-template-columns: 1fr}
      .networkGrid{grid-template-columns: 1fr 1fr}
      .priceGrid{grid-template-columns: 1fr}
      .formGrid{grid-template-columns: 1fr}
      .footerLinks{justify-content:flex-start}
      .floatHelp .item{width: 196px;}
    }

    @media (max-width: 720px){
      .navlinks{display:none}
      .navcta{display:none}
      .burger{display:flex}
      .mobilePanel{display:block}
      .hero h1{font-size: 28px}
      .quickGrid{grid-template-columns: 1fr}
      .capabilities{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .caseGrid{grid-template-columns: 1fr}
      .networkGrid{grid-template-columns: 1fr}
      .tokenRow{grid-template-columns: 1fr}
      .titem{grid-template-columns: 1fr}
      .compareTable{display:block; overflow:auto}
      .compareTable thead th:nth-child(1), .compareTable tbody td:nth-child(1){min-width: 190px}
      .compareTable thead th, .compareTable tbody td{min-width: 210px}
      .floatHelp .item{width: 186px}
    }

    @media (prefers-reduced-motion: reduce){
      *{animation:none !important; transition:none !important; scroll-behavior:auto !important;}
      html{scroll-behavior:auto}
    }