:root{
      --bg0:#f7faff;
      --bg1:#ffffff;
      --text:#0f172a;
      --muted:#5b6b86;
      --subtle:#7a879f;
      --line:rgba(15,23,42,.10);
      --line2:rgba(15,23,42,.14);

      --blue:#0b63ff;
      --blue2:#2a7bff;
      --indigo:#2b2cff;
      --aqua:#14b8ff;
      --navy:#0b1b3b;

      --card:#ffffff;
      --card2:rgba(255,255,255,.78);
      --shadow:0 10px 30px rgba(11,99,255,.10);
      --shadow2:0 8px 22px rgba(15,23,42,.08);
      --ring:0 0 0 4px rgba(11,99,255,.16);

      --radius:16px;
      --radius2:22px;

      --container:1120px;
      --padX:20px;

      --ease:cubic-bezier(.2,.8,.2,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 18% 0%, rgba(11,99,255,.16), transparent 55%),
        radial-gradient(900px 520px at 90% 16%, rgba(20,184,255,.12), transparent 55%),
        linear-gradient(180deg, #f6faff 0%, #ffffff 46%, #f7fbff 100%);
    }

    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    button,input,select,textarea{font:inherit}
    .container{
      width:min(var(--container), calc(100% - 2*var(--padX)));
      margin:0 auto;
    }

    /* Top nav */
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(247,250,255,.72);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .navwrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:240px;
    }
    .brand img{
      width:34px; height:34px; border-radius:12px;
      box-shadow:0 6px 18px rgba(11,99,255,.20);
      border:1px solid rgba(11,99,255,.18);
      background:#fff;
    }
    .brand .brandmeta{display:flex; flex-direction:column; line-height:1.1}
    .brand .brandname{font-weight:800; letter-spacing:.2px}
    .brand .brandsub{font-size:12px; color:var(--muted); margin-top:3px}
    .navright{display:flex; align-items:center; gap:10px}
    .navlinks{
      display:flex; align-items:center; gap:14px;
    }
    .navlinks a{
      font-size:13px; color:rgba(15,23,42,.78);
      padding:10px 10px;
      border-radius:12px;
      transition:background .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
      white-space:nowrap;
    }
    .navlinks a:hover{
      background:rgba(11,99,255,.08);
      color:#0b3a8a;
      transform:translateY(-1px);
    }

    .ctaRow{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      color:var(--text);
      box-shadow:0 10px 24px rgba(15,23,42,.06);
      transition:transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
      cursor:pointer;
      user-select:none;
      font-weight:700;
      font-size:13px;
      white-space:nowrap;
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 30px rgba(11,99,255,.14);
      border-color:rgba(11,99,255,.22);
    }
    .btn:focus-visible{outline:none; box-shadow:var(--ring), 0 14px 30px rgba(11,99,255,.14)}
    .btnPrimary{
      border:none;
      background:linear-gradient(135deg, var(--blue) 0%, #3a82ff 42%, #2ad0ff 100%);
      color:#fff;
      box-shadow:0 18px 40px rgba(11,99,255,.25);
    }
    .btnPrimary:hover{
      box-shadow:0 22px 54px rgba(11,99,255,.30);
    }
    .btnGhost{
      background:rgba(255,255,255,.85);
    }

    .hamburger{
      display:none;
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      cursor:pointer;
      align-items:center; justify-content:center;
      box-shadow:0 10px 24px rgba(15,23,42,.06);
      transition:transform .18s var(--ease), box-shadow .18s var(--ease);
    }
    .hamburger:hover{transform:translateY(-1px); box-shadow:0 14px 30px rgba(11,99,255,.14)}
    .hamburger:focus-visible{outline:none; box-shadow:var(--ring), 0 14px 30px rgba(11,99,255,.14)}
    .burgerLines{
      width:18px; height:12px; position:relative;
    }
    .burgerLines span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:99px;
      background:rgba(15,23,42,.78);
      transition:transform .22s var(--ease), top .22s var(--ease), opacity .22s var(--ease);
    }
    .burgerLines span:nth-child(1){top:0}
    .burgerLines span:nth-child(2){top:5px}
    .burgerLines span:nth-child(3){top:10px}
    .hamburger[aria-expanded="true"] .burgerLines span:nth-child(1){top:5px; transform:rotate(45deg)}
    .hamburger[aria-expanded="true"] .burgerLines span:nth-child(2){opacity:0}
    .hamburger[aria-expanded="true"] .burgerLines span:nth-child(3){top:5px; transform:rotate(-45deg)}

    /* Mobile menu */
    .mobileMenu{
      display:none;
      border-top:1px solid rgba(15,23,42,.08);
      padding:12px 0 16px;
    }
    .mobileMenu .menuGrid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mobileMenu a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      box-shadow:0 10px 24px rgba(15,23,42,.06);
      font-weight:700;
      font-size:13px;
      color:rgba(15,23,42,.86);
      transition:transform .18s var(--ease), border-color .18s var(--ease);
    }
    .mobileMenu a:hover{transform:translateY(-1px); border-color:rgba(11,99,255,.22)}

    /* Hero */
    .hero{
      padding:42px 0 18px;
      position:relative;
      overflow:hidden;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:22px;
      align-items:start;
    }
    .heroLeft{
      padding:18px 0;
    }
    .eyebrow{
      display:flex; align-items:center; gap:10px;
      color:rgba(15,23,42,.78);
      font-weight:800;
      letter-spacing:.2px;
      font-size:13px;
      margin-bottom:12px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(11,99,255,.10);
      border:1px solid rgba(11,99,255,.18);
      color:#0b3a8a;
    }
    .dot{
      width:8px; height:8px; border-radius:50%;
      background:linear-gradient(135deg, var(--blue) 0%, #2ad0ff 100%);
      box-shadow:0 0 0 4px rgba(11,99,255,.16);
    }
    h1{
      margin:0;
      font-size:38px;
      line-height:1.15;
      letter-spacing:-.4px;
    }
    .heroLead{
      margin-top:12px;
      color:rgba(15,23,42,.74);
      font-size:15.5px;
      line-height:1.8;
      max-width:56ch;
    }

    .heroActions{
      margin-top:18px;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
    }
    .heroMetaRow{
      margin-top:16px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      color:rgba(15,23,42,.62);
      font-size:13px;
    }
    .miniTag{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
    }
    .miniIcon{
      width:22px; height:22px;
      border-radius:10px;
      background:rgba(11,99,255,.10);
      border:1px solid rgba(11,99,255,.18);
      display:flex; align-items:center; justify-content:center;
      color:#0b3a8a;
      font-weight:900;
      font-size:12px;
    }

    .heroRight{
      position:relative;
    }
    .glowCard{
      background:linear-gradient(180deg, rgba(255,255,255,.84) 0%, rgba(255,255,255,.68) 100%);
      border:1px solid rgba(11,99,255,.18);
      border-radius:var(--radius2);
      box-shadow: var(--shadow);
      overflow:hidden;
      padding:16px;
    }
    .glowCard::before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:120px;
      background:linear-gradient(90deg, rgba(11,99,255,.22), rgba(20,184,255,.18), rgba(43,44,255,.14));
      filter:blur(18px);
      pointer-events:none;
    }
    .glowTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      position:relative;
    }
    .statusBlock{
      display:flex; flex-direction:column; gap:6px;
    }
    .statusTitle{
      font-weight:900;
      letter-spacing:.2px;
      color:rgba(15,23,42,.92);
      font-size:14px;
    }
    .statusDesc{
      color:rgba(15,23,42,.66);
      font-size:13px;
      line-height:1.6;
      max-width:34ch;
    }
    .trend{
      text-align:right;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.65);
    }
    .trend strong{
      display:block;
      font-size:18px;
      letter-spacing:-.2px;
      color:#0b3a8a;
    }
    .trend span{
      font-size:12px;
      color:rgba(15,23,42,.62);
      display:block;
      margin-top:4px;
    }

    .metricGrid{
      margin-top:14px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      position:relative;
    }
    .metric{
      padding:14px 14px;
      border-radius:18px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:0 10px 20px rgba(15,23,42,.05);
      transition:transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
    }
    .metric:hover{
      transform:translateY(-2px);
      border-color:rgba(11,99,255,.22);
      box-shadow:0 16px 30px rgba(11,99,255,.14);
    }
    .metric .k{
      display:flex; align-items:center; gap:10px;
      color:rgba(15,23,42,.72);
      font-weight:800;
      font-size:13px;
    }
    .badgeIcon{
      width:30px; height:30px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(11,99,255,.16), rgba(20,184,255,.12));
      border:1px solid rgba(11,99,255,.20);
      display:flex; align-items:center; justify-content:center;
      color:#0b3a8a;
      font-weight:900;
    }
    .metric .v{
      margin-top:10px;
      font-weight:950;
      letter-spacing:-.5px;
      font-size:24px;
      color:#0b1b3b;
    }
    .metric .s{
      margin-top:6px;
      color:rgba(15,23,42,.62);
      font-size:12.5px;
      line-height:1.5;
    }

    .heroFlow{
      margin-top:14px;
      border-top:1px dashed rgba(15,23,42,.14);
      padding-top:14px;
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:10px;
    }
    .stepChip{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.65);
      position:relative;
      overflow:hidden;
    }
    .stepChip::after{
      content:"";
      position:absolute;
      inset:auto -40px -40px auto;
      width:90px; height:90px;
      background:radial-gradient(circle at 30% 30%, rgba(11,99,255,.22), transparent 60%);
      transform:rotate(10deg);
      pointer-events:none;
    }
    .stepChip .n{
      font-weight:900;
      color:#0b3a8a;
      font-size:13px;
      display:flex; align-items:center; gap:8px;
    }
    .stepChip .n b{
      width:22px; height:22px; border-radius:11px;
      background:rgba(11,99,255,.12);
      border:1px solid rgba(11,99,255,.18);
      display:flex; align-items:center; justify-content:center;
      color:#0b3a8a;
      letter-spacing:-.2px;
    }
    .stepChip .t{
      margin-top:8px;
      color:rgba(15,23,42,.68);
      font-size:12.5px;
      line-height:1.45;
    }

    /* Sections */
    section{
      padding:34px 0;
    }
    .sectionTitleRow{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom:18px;
    }
    h2{
      margin:0;
      font-size:24px;
      letter-spacing:-.25px;
      line-height:1.25;
    }
    .sectionLead{
      margin:6px 0 0;
      color:rgba(15,23,42,.68);
      line-height:1.8;
      font-size:14.5px;
      max-width:64ch;
    }
    .subAction{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end;
      color:rgba(15,23,42,.62);
      font-size:13px;
    }
    .linkBtn{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.85);
      box-shadow:0 10px 24px rgba(15,23,42,.06);
      font-weight:800;
      color:#0b3a8a;
      transition:transform .18s var(--ease), border-color .18s var(--ease);
      cursor:pointer;
      white-space:nowrap;
    }
    .linkBtn:hover{transform:translateY(-1px); border-color:rgba(11,99,255,.22)}
    .chev{
      width:22px; height:22px; border-radius:11px;
      border:1px solid rgba(11,99,255,.20);
      background:rgba(11,99,255,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
    }

    .fadeIn{
      opacity:0;
      transform:translateY(10px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
      will-change:opacity, transform;
    }
    .fadeIn.is-visible{
      opacity:1;
      transform:translateY(0);
    }

    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }

    .card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:var(--radius);
      box-shadow:0 10px 24px rgba(15,23,42,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .card::before{
      content:"";
      position:absolute;
      inset:auto -60px -70px auto;
      width:160px; height:160px;
      background:radial-gradient(circle at 30% 30%, rgba(11,99,255,.16), transparent 60%);
      pointer-events:none;
    }
    .cardHeader{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom:10px;
      position:relative;
    }
    .cardHeader h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.1px;
      line-height:1.35;
    }
    .cardHeader .icon{
      width:42px; height:42px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(11,99,255,.18);
      background:linear-gradient(135deg, rgba(11,99,255,.14), rgba(20,184,255,.10));
      color:#0b3a8a;
      box-shadow:0 12px 26px rgba(11,99,255,.14);
      font-weight:900;
    }
    .card p{
      margin:0;
      color:rgba(15,23,42,.68);
      line-height:1.8;
      font-size:13.8px;
      position:relative;
    }

    .list{
      margin:10px 0 0;
      padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
      position:relative;
    }
    .list li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.65);
    }
    .check{
      width:22px; height:22px; border-radius:11px;
      background:rgba(11,99,255,.12);
      border:1px solid rgba(11,99,255,.18);
      display:flex; align-items:center; justify-content:center;
      color:#0b3a8a;
      font-weight:900;
      flex:0 0 auto;
      margin-top:1px;
    }
    .list strong{
      display:block;
      font-size:13.2px;
      color:rgba(15,23,42,.86);
    }
    .list span{
      display:block;
      margin-top:4px;
      color:rgba(15,23,42,.62);
      font-size:12.7px;
      line-height:1.5;
    }

    /* Flow steps */
    .flowGrid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .flowStep{
      padding:16px 14px;
      border-radius:18px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:0 10px 24px rgba(15,23,42,.06);
      position:relative;
      overflow:hidden;
      transition:transform .18s var(--ease), border-color .18s var(--ease);
    }
    .flowStep:hover{transform:translateY(-2px); border-color:rgba(11,99,255,.22)}
    .flowStep::after{
      content:"";
      position:absolute;
      inset:-40px -40px auto auto;
      width:90px; height:90px;
      background:radial-gradient(circle at 35% 35%, rgba(11,99,255,.22), transparent 60%);
      pointer-events:none;
      transform:rotate(-10deg);
    }
    .flowNum{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
      position:relative;
    }
    .flowNum .n{
      font-weight:950;
      font-size:14px;
      color:#0b3a8a;
      display:flex; align-items:center; gap:10px;
    }
    .flowNum .n b{
      width:30px; height:30px; border-radius:15px;
      background:rgba(11,99,255,.12);
      border:1px solid rgba(11,99,255,.20);
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 12px 26px rgba(11,99,255,.12);
    }
    .flowNum .tag{
      font-size:12px;
      color:rgba(15,23,42,.62);
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.65);
      white-space:nowrap;
    }
    .flowStep h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.1px;
      position:relative;
    }
    .flowStep p{
      margin-top:8px;
      color:rgba(15,23,42,.68);
      font-size:13.5px;
      line-height:1.75;
      position:relative;
    }

    /* Compare table */
    .compareWrap{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 14px 34px rgba(15,23,42,.06);
      overflow:hidden;
    }
    .tableTop{
      padding:14px 16px;
      border-bottom:1px solid rgba(15,23,42,.10);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      background:linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.70));
    }
    .tableTop strong{
      font-size:14px;
      letter-spacing:.1px;
    }
    .stars{
      display:flex; align-items:center; gap:8px;
      color:#0b3a8a;
      font-weight:900;
      white-space:nowrap;
    }
    .starRow{
      display:flex; gap:4px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      display:inline-block;
      background:conic-gradient(from 180deg, #ffd54a, #ffb300);
      -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.27 18.18 21 16.54 13.97 22 9.24 14.81 8.63 12 2 9.19 8.63 2 9.24 7.46 13.97 5.82 21z"/>') center/contain no-repeat;
      mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.27 18.18 21 16.54 13.97 22 9.24 14.81 8.63 12 2 9.19 8.63 2 9.24 7.46 13.97 5.82 21z"/>') center/contain no-repeat;
    }
    .score{
      font-weight:950;
      color:#0b1b3b;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      font-size:13.5px;
      color:rgba(15,23,42,.78);
    }
    thead th{
      background:rgba(11,99,255,.08);
      color:#0b3a8a;
      font-weight:950;
      text-align:left;
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.10);
    }
    tbody td{
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
    }
    tbody tr:last-child td{border-bottom:none}
    .tdStrong{
      font-weight:950;
      color:#0b1b3b;
    }
    .tdGood{
      color:#0b3a8a;
      font-weight:900;
    }
    .tdNeutral{
      color:rgba(15,23,42,.62);
      font-weight:800;
    }
    .tdWrap{
      white-space:normal;
      line-height:1.6;
    }
    .hScroll{
      overflow:auto;
      -webkit-overflow-scrolling:touch;
    }
    .hScroll:focus{outline:none}

    /* Case grid */
    .caseGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .caseCard{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 10px 24px rgba(15,23,42,.06);
      transition:transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
      display:flex;
      flex-direction:column;
      gap:12px;
      min-height:220px;
    }
    .caseCard:hover{
      transform:translateY(-2px);
      border-color:rgba(11,99,255,.22);
      box-shadow:0 16px 34px rgba(11,99,255,.14);
    }
    .caseTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .caseTitle{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.15px;
      line-height:1.35;
      color:rgba(15,23,42,.92);
      font-weight:950;
    }
    .caseMeta{
      color:rgba(15,23,42,.62);
      font-size:12.8px;
      line-height:1.5;
      margin-top:6px;
    }
    .caseTags{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .tagChip{
      font-size:12.3px;
      font-weight:800;
      color:rgba(15,23,42,.70);
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.62);
      white-space:nowrap;
    }
    .caseBottom{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding-top:6px;
      border-top:1px dashed rgba(15,23,42,.14);
    }
    .caseBottom .metricSmall{
      display:flex; flex-direction:column; gap:4px;
      color:rgba(15,23,42,.62);
      font-size:12.6px;
      line-height:1.35;
    }
    .caseBottom .metricSmall b{
      color:#0b3a8a;
      font-size:14px;
      letter-spacing:-.2px;
    }

    /* Reviews */
    .reviewGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .quote{
      display:flex; flex-direction:column; gap:12px;
    }
    .quoteText{
      color:rgba(15,23,42,.72);
      line-height:1.85;
      font-size:13.8px;
      margin:0;
    }
    .quoteFoot{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-top:auto;
      padding-top:12px;
      border-top:1px dashed rgba(15,23,42,.14);
    }
    .person{
      display:flex; align-items:center; gap:10px;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(11,99,255,.18);
      background:linear-gradient(135deg, rgba(11,99,255,.14), rgba(20,184,255,.10));
      display:flex; align-items:center; justify-content:center;
      color:#0b3a8a;
      font-weight:950;
      letter-spacing:-.4px;
    }
    .person b{display:block; font-size:13.5px; letter-spacing:-.1px}
    .person span{display:block; font-size:12.2px; color:rgba(15,23,42,.62); margin-top:3px}
    .rating{
      display:flex; align-items:center; gap:6px;
      font-weight:950; color:#0b3a8a;
      white-space:nowrap;
      font-size:12.8px;
    }
    .rating .starMini{
      width:16px; height:16px;
      background:conic-gradient(from 180deg, #ffd54a, #ffb300);
      -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.27 18.18 21 16.54 13.97 22 9.24 14.81 8.63 12 2 9.19 8.63 2 9.24 7.46 13.97 5.82 21z"/>') center/contain no-repeat;
      mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.27 18.18 21 16.54 13.97 22 9.24 14.81 8.63 12 2 9.19 8.63 2 9.24 7.46 13.97 5.82 21z"/>') center/contain no-repeat;
    }

    /* Timeline / network */
    .timeline{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .timelineItem{
      display:grid;
      grid-template-columns: 120px 1fr;
      gap:14px;
      padding:14px 14px;
      border-radius:var(--radius);
      background:rgba(255,255,255,.74);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:0 10px 24px rgba(15,23,42,.06);
      align-items:start;
    }
    .timeBadge{
      font-weight:950;
      color:#0b3a8a;
      display:flex; flex-direction:column; gap:8px;
    }
    .timeBadge b{
      font-size:14px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(11,99,255,.18);
      background:rgba(11,99,255,.10);
      width:max-content;
      box-shadow:0 12px 26px rgba(11,99,255,.12);
    }
    .timeBadge span{
      font-size:12.7px;
      color:rgba(15,23,42,.62);
      line-height:1.5;
      padding-left:4px;
    }
    .timelineItem h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.15px;
    }
    .timelineItem p{
      margin:8px 0 0;
      color:rgba(15,23,42,.68);
      line-height:1.8;
      font-size:13.6px;
    }

    /* Pricing / token reference */
    .tokenGrid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    .priceCard{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 24px rgba(15,23,42,.06);
      position:relative;
      overflow:hidden;
      transition:transform .18s var(--ease), border-color .18s var(--ease);
    }
    .priceCard:hover{transform:translateY(-2px); border-color:rgba(11,99,255,.22)}
    .priceCard .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .priceCard h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.15px;
      line-height:1.35;
      font-weight:950;
    }
    .priceCard p{
      margin:10px 0 0;
      color:rgba(15,23,42,.68);
      line-height:1.85;
      font-size:13.6px;
      position:relative;
    }
    .priceRow{
      margin-top:14px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding-top:12px;
      border-top:1px dashed rgba(15,23,42,.14);
      position:relative;
    }
    .priceRow b{
      font-size:18px;
      letter-spacing:-.3px;
      color:#0b3a8a;
      font-weight:1000;
    }
    .smallNote{
      color:rgba(15,23,42,.62);
      font-size:12.6px;
      line-height:1.45;
      text-align:right;
    }

    /* FAQ */
    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    details{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 24px rgba(15,23,42,.06);
      padding:0;
      overflow:hidden;
      transition:border-color .2s var(--ease), transform .2s var(--ease);
    }
    details[open]{border-color:rgba(11,99,255,.22)}
    summary{
      cursor:pointer;
      list-style:none;
      padding:14px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:950;
      font-size:14px;
      color:rgba(15,23,42,.88);
    }
    summary::-webkit-details-marker{display:none}
    .sumRight{
      display:flex; align-items:center; gap:10px;
      color:rgba(15,23,42,.60);
      font-weight:900;
      font-size:12.5px;
      white-space:nowrap;
    }
    .plus{
      width:26px; height:26px;
      border-radius:12px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      display:flex; align-items:center; justify-content:center;
      transition:transform .22s var(--ease), border-color .22s var(--ease);
    }
    details[open] .plus{transform:rotate(45deg); border-color:rgba(11,99,255,.22)}
    .faqBody{
      padding:0 14px 14px;
      color:rgba(15,23,42,.70);
      line-height:1.85;
      font-size:13.6px;
    }

    /* Articles */
    .articleList{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .article{
      padding:14px 14px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 24px rgba(15,23,42,.06);
      transition:transform .18s var(--ease), border-color .18s var(--ease);
      display:flex; flex-direction:column; gap:10px;
    }
    .article:hover{transform:translateY(-2px); border-color:rgba(11,99,255,.22)}
    .articleTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .article b{
      font-size:14.5px;
      letter-spacing:-.1px;
      line-height:1.45;
    }
    .article span{
      color:rgba(15,23,42,.62);
      font-size:12.4px;
      line-height:1.5;
    }
    .article a{
      margin-top:auto;
      display:inline-flex; align-items:center; gap:10px;
      color:#0b3a8a;
      font-weight:950;
      font-size:13.2px;
    }
    .article a .chev{width:24px; height:24px}

    /* Form */
    .formWrap{
      display:grid;
      grid-template-columns: 1fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .formCard{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 14px 34px rgba(15,23,42,.06);
      overflow:hidden;
      position:relative;
    }
    .formCard::before{
      content:"";
      position:absolute;
      inset:-120px auto auto -140px;
      width:360px; height:360px;
      background:radial-gradient(circle at 30% 30%, rgba(11,99,255,.18), transparent 60%);
      pointer-events:none;
      filter:blur(1px);
    }
    .formCard > *{position:relative}
    form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .field{
      display:flex; flex-direction:column; gap:7px;
    }
    .field label{
      font-weight:900;
      font-size:13px;
      color:rgba(15,23,42,.86);
    }
    .field input, .field select, .field textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.88);
      padding:12px 12px;
      outline:none;
      transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
      color:rgba(15,23,42,.90);
    }
    .field textarea{min-height:110px; resize:vertical}
    .field input:focus, .field select:focus, .field textarea:focus{
      border-color:rgba(11,99,255,.30);
      box-shadow:0 0 0 4px rgba(11,99,255,.14);
    }
    .span2{grid-column:1 / -1}
    .formActions{
      grid-column:1 / -1;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:2px;
      padding-top:10px;
      border-top:1px dashed rgba(15,23,42,.14);
    }
    .fineprint{
      color:rgba(15,23,42,.62);
      font-size:12.7px;
      line-height:1.55;
      max-width:52ch;
    }
    .toast{
      position:fixed;
      right:18px; bottom:18px;
      z-index:200;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(15,23,42,.12);
      box-shadow:0 18px 50px rgba(15,23,42,.18);
      border-radius:18px;
      padding:12px 14px;
      display:none;
      max-width:340px;
    }
    .toast strong{display:block; font-size:13.5px}
    .toast span{display:block; margin-top:4px; color:rgba(15,23,42,.62); font-size:12.6px; line-height:1.5}
    .toast.show{display:block; animation:pop .22s var(--ease)}
    @keyframes pop{
      from{transform:translateY(10px); opacity:0}
      to{transform:translateY(0); opacity:1}
    }

    /* Side info */
    .sideCard{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.66));
      box-shadow:0 14px 34px rgba(15,23,42,.06);
      overflow:hidden;
      position:relative;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .sideCard::after{
      content:"";
      position:absolute;
      inset:auto -90px -90px auto;
      width:240px; height:240px;
      background:radial-gradient(circle at 30% 30%, rgba(20,184,255,.20), transparent 60%);
      pointer-events:none;
    }
    .sideCard > *{position:relative}
    .sideCard h3{
      margin:0; font-size:16px; letter-spacing:-.15px; font-weight:1000;
    }
    .sideCard p{
      margin:0;
      color:rgba(15,23,42,.68);
      line-height:1.85;
      font-size:13.7px;
    }
    .contactBlocks{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:auto;
    }
    .contactItem{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .contactItem b{
      display:block;
      font-size:13.3px; letter-spacing:-.1px;
    }
    .contactItem span{
      display:block;
      color:rgba(15,23,42,.62);
      font-size:12.6px;
      line-height:1.45;
      margin-top:5px;
    }
    .qr{
      width:72px; height:72px;
      border-radius:18px;
      border:1px solid rgba(11,99,255,.20);
      background:#fff;
      box-shadow:0 14px 34px rgba(11,99,255,.14);
      overflow:hidden;
      flex:0 0 auto;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:6px;
    }

    /* Pricing network badges */
    .tagCloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding-top:4px;
    }
    .cloudItem{
      font-size:12.7px;
      font-weight:900;
      color:rgba(15,23,42,.74);
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      transition:transform .18s var(--ease), border-color .18s var(--ease);
      cursor:default;
      white-space:nowrap;
    }
    .cloudItem:hover{transform:translateY(-1px); border-color:rgba(11,99,255,.22)}

    /* Footer */
    footer{
      padding:22px 0 30px;
      background:linear-gradient(180deg, rgba(11,99,255,.06), rgba(11,99,255,.02));
      border-top:1px solid rgba(15,23,42,.10);
      color:#0f172a;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .footCard{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 24px rgba(15,23,42,.06);
    }
    .footCard h3{
      margin:0;
      font-size:15.5px; letter-spacing:-.15px; font-weight:1000;
    }
    .footCard p{
      margin:10px 0 0;
      color:rgba(15,23,42,.68);
      line-height:1.85;
      font-size:13.6px;
    }
    .footLinks{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .footLinks a{
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      color:#0b3a8a;
      font-weight:900;
      font-size:12.6px;
      transition:transform .18s var(--ease), border-color .18s var(--ease);
      white-space:nowrap;
    }
    .footLinks a:hover{transform:translateY(-1px); border-color:rgba(11,99,255,.22)}
    .copyRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:12px;
      padding-top:12px;
      border-top:1px dashed rgba(15,23,42,.14);
      color:rgba(15,23,42,.62);
      font-size:12.6px;
      flex-wrap:wrap;
    }
    .sysLinks{
      display:flex; gap:12px; flex-wrap:wrap;
    }
    .sysLinks a{
      color:#0b3a8a;
      font-weight:900;
      font-size:12.6px;
      opacity:.92;
    }

    /* Floating customer */
    .floatBar{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:120;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .floatBtn{
      pointer-events:auto;
      display:flex; align-items:center; gap:10px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.88);
      box-shadow:0 18px 44px rgba(15,23,42,.16);
      cursor:pointer;
      transition:transform .18s var(--ease), border-color .18s var(--ease);
      user-select:none;
    }
    .floatBtn:hover{transform:translateY(-2px); border-color:rgba(11,99,255,.22)}
    .floatIcon{
      width:38px; height:38px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(11,99,255,.18), rgba(20,184,255,.12));
      border:1px solid rgba(11,99,255,.20);
      display:flex; align-items:center; justify-content:center;
      color:#0b3a8a;
      font-weight:1000;
      box-shadow:0 14px 34px rgba(11,99,255,.14);
    }
    .floatText b{display:block; font-size:13.4px; letter-spacing:-.1px}
    .floatText span{display:block; margin-top:3px; font-size:12.4px; color:rgba(15,23,42,.62); line-height:1.35}
    .qrPopover{
      pointer-events:auto;
      display:none;
      width:220px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.92);
      box-shadow:0 20px 60px rgba(15,23,42,.20);
      overflow:hidden;
    }
    .qrPopover.show{display:block; animation:pop .22s var(--ease)}
    .qrHead{
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.10);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      background:linear-gradient(180deg, rgba(11,99,255,.08), rgba(255,255,255,.85));
    }
    .qrHead b{font-size:13.5px; letter-spacing:-.1px}
    .closeX{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:rgba(15,23,42,.70);
    }
    .qrBody{
      padding:14px;
      display:flex; flex-direction:column; gap:10px;
    }
    .qrBody .qrImg{
      width:100%;
      border-radius:18px;
      border:1px solid rgba(11,99,255,.18);
      background:#fff;
      padding:8px;
      display:flex; align-items:center; justify-content:center;
    }
    .qrBody p{
      margin:0;
      color:rgba(15,23,42,.62);
      font-size:12.7px;
      line-height:1.6;
    }

    /* Back to top */
    .toTop{
      pointer-events:auto;
      position:fixed;
      right:16px;
      bottom:142px;
      z-index:110;
      display:none;
    }
    .toTop button{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.92);
      box-shadow:0 18px 44px rgba(15,23,42,.16);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition:transform .18s var(--ease), border-color .18s var(--ease);
      font-weight:1000;
      color:#0b3a8a;
    }
    .toTop button:hover{transform:translateY(-2px); border-color:rgba(11,99,255,.22)}
    .toTop.show{display:block; animation:pop .22s var(--ease)}

    /* Responsive */
    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; gap:16px}
      h1{font-size:34px}
      .heroFlow{grid-template-columns:1fr 1fr 1fr}
      .grid3{grid-template-columns:1fr}
      .grid2{grid-template-columns:1fr}
      .flowGrid{grid-template-columns:1fr 1fr}
      .caseGrid{grid-template-columns:1fr}
      .reviewGrid{grid-template-columns:1fr}
      .faqGrid{grid-template-columns:1fr}
      .articleList{grid-template-columns:1fr}
      .tokenGrid{grid-template-columns:1fr}
      .formWrap{grid-template-columns:1fr}
      .footerGrid{grid-template-columns:1fr}
      .timelineItem{grid-template-columns:1fr}
      .timelineItem .timeBadge b{width:100%}
      .navlinks{display:none}
      .ctaRow{display:none}
      .hamburger{display:flex}
      .mobileMenu{display:block}
      .mobileMenu.is-open{display:block}
      .mobileMenu{padding-left:0; padding-right:0}
    }
    @media (max-width: 520px){
      h1{font-size:30px}
      .metricGrid{grid-template-columns:1fr}
      .heroFlow{grid-template-columns:1fr}
      form{grid-template-columns:1fr}
    }