:root{
      --bg0:#ffffff;
      --bg1:#fbfaf7;
      --text:#14151a;
      --muted:#5a616e;
      --line:rgba(20,21,26,.10);
      --card:rgba(255,255,255,.78);
      --shadow:0 10px 30px rgba(20,21,26,.08);
      --shadow2:0 6px 18px rgba(20,21,26,.10);
      --ring:rgba(58,110,255,.20);
      --brand:#2f5bff;
      --brand2:#21c49a;
      --brand3:#ff6a2b;
      --brand4:#8a5cff;
      --btnText:#ffffff;
      --radius:18px;
      --radius2:14px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC", "Apple Color Emoji","Segoe UI Emoji";
      background:
        radial-gradient(1200px 500px at 10% -10%, rgba(47,91,255,.10), transparent 55%),
        radial-gradient(900px 450px at 95% 0%, rgba(33,196,154,.11), transparent 55%),
        radial-gradient(900px 450px at 30% 110%, rgba(255,106,43,.08), transparent 55%),
        linear-gradient(180deg, var(--bg1), #ffffff 35%, #ffffff);
      color:var(--text);
      line-height:1.6;
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(251,250,247,.72);
      border-bottom:1px solid rgba(20,21,26,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
    }
    .brand img{
      width:40px;
      height:40px;
      object-fit:contain;
      filter:saturate(1.05);
    }
    .brand .brandText{
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .brand .name{
      font-weight:800;
      letter-spacing:.2px;
      font-size:14px;
      color:#101219;
      white-space:nowrap;
    }
    .brand .sub{
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }

    .navRight{
      display:flex;
      align-items:center;
      gap:12px;
      justify-content:flex-end;
      flex:1;
      min-width:0;
    }
    .menu{
      display:flex;
      gap:6px;
      align-items:center;
      flex-wrap:nowrap;
      overflow:hidden;
      mask-image: linear-gradient(90deg, #000 85%, transparent 100%);
    }
    .menu a{
      font-size:13px;
      color:#252a33;
      padding:9px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .menu a:hover{
      background:rgba(47,91,255,.08);
      border-color:rgba(47,91,255,.18);
      transform: translateY(-1px);
    }
    .navCtas{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:11px 14px;
      border-radius:999px;
      border:1px solid rgba(20,21,26,.12);
      background:rgba(255,255,255,.65);
      color:#1d2430;
      font-weight:700;
      font-size:13px;
      box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: var(--shadow2);
      background:rgba(255,255,255,.85);
      border-color:rgba(20,21,26,.18);
    }
    .btnPrimary{
      background: linear-gradient(135deg, rgba(47,91,255,1), rgba(33,196,154,1));
      border-color: rgba(47,91,255,.30);
      color:var(--btnText);
      box-shadow: 0 10px 24px rgba(47,91,255,.22);
    }
    .btnPrimary:hover{
      box-shadow: 0 14px 30px rgba(47,91,255,.28);
      border-color: rgba(255,255,255,.22);
    }
    .iconDot{
      width:10px;height:10px;border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 55%), linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 0 0 6px rgba(47,91,255,.12);
    }

    .hamburger{
      display:none;
      width:42px;height:42px;
      border-radius:12px;
      border:1px solid rgba(20,21,26,.12);
      background:rgba(255,255,255,.70);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .hamburger:hover{transform: translateY(-1px); box-shadow: var(--shadow2);}
    .hamburger span{
      width:18px;height:2px;background:#222835; display:block; position:relative;
    }
    .hamburger span:before,.hamburger span:after{
      content:""; position:absolute; left:0; width:18px; height:2px; background:#222835;
      transform-origin:center;
      transition: transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .hamburger span:before{top:-6px}
    .hamburger span:after{top:6px}

    .mobilePanel{
      display:none;
      padding:12px 0 18px;
    }
    .mobilePanel .panelInner{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,21,26,.10);
      border-radius:16px;
      padding:10px;
      box-shadow: var(--shadow);
    }
    .mobilePanel .panelLinks{
      display:flex;
      flex-direction:column;
      gap:6px;
      padding:6px;
    }
    .mobilePanel a{
      padding:11px 12px;
      border-radius:12px;
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.65);
      font-weight:700;
      color:#232a35;
      font-size:13px;
    }
    .mobilePanel a:active{transform: translateY(1px)}
    .mobileCtas{
      display:flex;
      gap:10px;
      padding:6px;
      flex-wrap:wrap;
    }

    main{padding:28px 0 56px}
    section{scroll-margin-top:90px}

    .hero{
      padding:18px 0 14px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .heroLeft{
      position:relative;
      border-radius: var(--radius);
      border:1px solid rgba(20,21,26,.08);
      background:
        radial-gradient(700px 240px at 10% 0%, rgba(47,91,255,.14), transparent 60%),
        radial-gradient(700px 240px at 85% 15%, rgba(33,196,154,.14), transparent 60%),
        radial-gradient(600px 260px at 20% 105%, rgba(255,106,43,.10), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.55));
      box-shadow: var(--shadow);
      overflow:hidden;
      padding:28px;
      min-height: 360px;
    }
    .heroLeft:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(115deg, rgba(47,91,255,.26), rgba(33,196,154,.18) 35%, rgba(255,106,43,.14) 70%, rgba(138,92,255,.20));
      opacity:.25;
      filter: blur(18px);
      pointer-events:none;
    }
    .heroLeftInner{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      height:100%;
    }
    .heroKicker{
      display:flex;
      align-items:center;
      gap:10px;
      color:#1d2330;
      font-weight:800;
      letter-spacing:.2px;
      font-size:13px;
    }
    .pillRow{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:16px 0 14px;
    }
    .pill{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,21,26,.10);
      background: rgba(255,255,255,.65);
      font-weight:800;
      font-size:12px;
      color:#222a35;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .pill i{
      width:10px;height:10px;border-radius:3px;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      display:inline-block;
      box-shadow: 0 0 0 5px rgba(47,91,255,.10);
    }

    h1{
      margin:0;
      font-size:40px;
      line-height:1.15;
      letter-spacing:-.6px;
      max-width: 20ch;
    }
    .lead{
      margin:14px 0 18px;
      color:var(--muted);
      font-size:15px;
      max-width: 64ch;
    }
    .heroActions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-top:auto;
      padding-top:18px;
    }
    .ghostBtn{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,21,26,.12);
    }
    .miniTrust{
      display:flex;
      gap:10px;
      align-items:flex-start;
      margin-top:14px;
    }
    .miniTrust .badge{
      width:36px;height:36px;border-radius:14px;
      background: rgba(47,91,255,.10);
      border:1px solid rgba(47,91,255,.18);
      display:flex;align-items:center;justify-content:center;
      color:#1b2d7a;
      font-weight:900;
    }
    .miniTrust b{display:block; font-size:13px; margin-bottom:2px}
    .miniTrust span{color:var(--muted); font-size:12px}

    .heroRight{
      border-radius: var(--radius);
      border:1px solid rgba(20,21,26,.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.45));
      box-shadow: var(--shadow);
      padding:18px;
      overflow:hidden;
      position:relative;
      min-height: 360px;
    }
    .heroRight:after{
      content:"";
      position:absolute;
      inset:-80px -60px auto auto;
      width:220px;height:220px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), rgba(255,255,255,0) 55%), linear-gradient(135deg, rgba(255,106,43,.35), rgba(138,92,255,.22));
      opacity:.55;
      filter: blur(10px);
      pointer-events:none;
    }
    .heroRightInner{position:relative; z-index:1; height:100%; display:flex; flex-direction:column}
    .statGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:6px;
    }
    .statCard{
      border-radius:16px;
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.72);
      padding:14px 12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      cursor: default;
      min-height: 112px;
    }
    .statCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(20,21,26,.12);
      border-color: rgba(47,91,255,.22);
    }
    .statTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .statIcon{
      width:34px;height:34px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      border:1px solid rgba(20,21,26,.08);
      background: linear-gradient(135deg, rgba(47,91,255,.12), rgba(33,196,154,.12));
      color:#1a2a6a;
      font-weight:1000;
      font-size:14px;
    }
    .statValue{
      font-weight:1000;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .statLabel{
      color:var(--muted);
      font-size:12px;
      font-weight:800;
      line-height:1.3;
    }

    .rightBlock{
      margin-top:14px;
      border-radius:16px;
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.70);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .rightBlock h2{
      margin:0;
      font-size:14px;
      letter-spacing:.2px;
    }
    .sparkRow{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .spark{
      display:flex;
      align-items:center;
      gap:8px;
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.65);
      padding:9px 10px;
      border-radius:999px;
      font-weight:900;
      font-size:12px;
      color:#1f2733;
    }
    .spark b{font-size:12px}
    .sparkDot{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--brand3), var(--brand4));
      box-shadow: 0 0 0 5px rgba(255,106,43,.12);
    }

    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin:46px 0 16px;
    }
    .sectionHead h2{
      margin:0;
      font-size:26px;
      letter-spacing:-.4px;
    }
    .sectionHead p{
      margin:0;
      color:var(--muted);
      max-width: 56ch;
      font-size:14px;
      font-weight:650;
    }

    .cards3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .card{
      border-radius: var(--radius);
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
      padding:18px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 160px;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 35px rgba(20,21,26,.12);
      border-color: rgba(47,91,255,.20);
    }
    .cardTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom:12px;
    }
    .cardIcon{
      width:44px;height:44px;border-radius:16px;
      border:1px solid rgba(20,21,26,.08);
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), rgba(255,255,255,0) 58%),
        linear-gradient(135deg, rgba(47,91,255,.18), rgba(33,196,154,.14));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#1b2a6c;
      font-size:16px;
    }
    .tag{
      font-size:12px;
      font-weight:900;
      color:#243046;
      border:1px solid rgba(20,21,26,.10);
      background: rgba(255,255,255,.60);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .card h3{
      margin:0 0 8px;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      font-weight:650;
    }
    .card ul{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .card li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:#2a3240;
      font-weight:750;
      font-size:13px;
    }
    .check{
      width:18px;height:18px; border-radius:7px;
      display:inline-flex; align-items:center; justify-content:center;
      background: rgba(33,196,154,.12);
      border:1px solid rgba(33,196,154,.22);
      color:#0f6b4b;
      flex:0 0 auto;
      margin-top:1px;
      font-weight:1000;
      font-size:12px;
    }

    .twoCol{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .listCard{
      padding:18px;
      border-radius: var(--radius);
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
    }
    .listCard h3{
      margin:0 0 10px;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .stepGrid{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top:8px;
    }
    .step{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(20,21,26,.10);
      border-color: rgba(47,91,255,.20);
    }
    .stepNum{
      width:36px;height:36px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;
      background: linear-gradient(135deg, rgba(47,91,255,.16), rgba(138,92,255,.14));
      border:1px solid rgba(47,91,255,.20);
      color:#1b2a6c;
      flex:0 0 auto;
    }
    .step b{display:block; font-size:14px; margin-bottom:4px}
    .step span{display:block; color:var(--muted); font-size:13px; font-weight:650}

    .compareWrap{
      border-radius: var(--radius);
      border:1px solid rgba(20,21,26,.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.55));
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .compareTop{
      padding:16px 18px 10px;
      display:flex; justify-content:space-between; align-items:flex-end; gap:12px;
      flex-wrap:wrap;
      border-bottom:1px solid rgba(20,21,26,.08);
      background:
        radial-gradient(700px 180px at 10% 0%, rgba(47,91,255,.12), transparent 55%),
        radial-gradient(700px 180px at 85% 15%, rgba(33,196,154,.12), transparent 55%),
        rgba(255,255,255,.35);
    }
    .compareTop .left h3{
      margin:0;
      font-size:18px;
      letter-spacing:-.2px;
    }
    .scoreCard{
      border:1px solid rgba(20,21,26,.10);
      background: rgba(255,255,255,.70);
      border-radius:16px;
      padding:12px 14px;
      min-width: 220px;
    }
    .scoreTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .stars{
      display:flex; gap:2px; align-items:center;
    }
    .star{
      width:16px;height:16px;
      background: linear-gradient(135deg, #ffb020, #ff6a2b);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      filter: drop-shadow(0 4px 10px rgba(255,106,43,.25));
      opacity:.98;
    }
    .scoreValue{
      font-weight:1000;
      font-size:28px;
      letter-spacing:-.7px;
    }
    .scoreSub{
      color:var(--muted);
      font-size:12px;
      font-weight:750;
    }

    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      font-size:13px;
    }
    thead th{
      text-align:left;
      padding:12px 14px;
      background: rgba(20,21,26,.03);
      border-bottom:1px solid rgba(20,21,26,.08);
      font-weight:900;
      color:#1f2733;
    }
    tbody td{
      padding:12px 14px;
      border-bottom:1px solid rgba(20,21,26,.07);
      color:#2a3240;
      font-weight:700;
      vertical-align:top;
    }
    tbody tr:hover td{
      background: rgba(47,91,255,.04);
    }
    .cellNote{
      color:var(--muted);
      font-weight:650;
      margin-top:5px;
    }
    .badgeGood{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(33,196,154,.26);
      background: rgba(33,196,154,.10);
      color:#0f6b4b;
      font-weight:950;
      white-space:nowrap;
    }
    .badgeNeutral{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,21,26,.12);
      background: rgba(255,255,255,.65);
      color:#2a3240;
      font-weight:950;
      white-space:nowrap;
    }

    .segRow{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      margin:12px 0 0;
    }
    .seg{
      display:flex; gap:8px; align-items:center; flex-wrap:wrap;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.65);
    }
    .seg b{font-size:13px}
    .seg span{color:var(--muted); font-size:12px; font-weight:750}

    .timeline{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .timeItem{
      display:grid;
      grid-template-columns: 1fr auto;
      gap:12px;
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.70);
      transition: transform .16s ease, box-shadow .16s ease;
    }
    .timeItem:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 35px rgba(20,21,26,.10);
    }
    .timeLeft b{display:block; font-size:14px; margin-bottom:5px}
    .timeLeft span{color:var(--muted); font-weight:650; font-size:13px}
    .timeDot{
      width:44px;height:44px;border-radius:18px;
      border:1px solid rgba(47,91,255,.20);
      background: linear-gradient(135deg, rgba(47,91,255,.18), rgba(33,196,154,.14));
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;
      color:#1b2a6c;
    }

    .gridCards{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .smallCard{
      border-radius:16px;
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.72);
      padding:14px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
      min-height: 118px;
    }
    .smallCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(20,21,26,.10);
      border-color: rgba(33,196,154,.20);
    }
    .smallCard .top{
      display:flex; justify-content:space-between; align-items:flex-start; gap:10px;
      margin-bottom:8px;
    }
    .miniGlyph{
      width:32px;height:32px;border-radius:14px;
      border:1px solid rgba(20,21,26,.08);
      background: linear-gradient(135deg, rgba(255,106,43,.14), rgba(138,92,255,.12));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:#2a1648;
      font-size:14px;
    }
    .smallCard b{
      display:block;
      font-size:14px;
      margin-bottom:6px;
      letter-spacing:-.2px;
    }
    .smallCard span{
      color:var(--muted);
      font-weight:650;
      font-size:12.5px;
      display:block;
    }

    .caseGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .caseCard{
      border-radius: var(--radius);
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
      overflow:hidden;
    }
    .caseMedia{
      border-radius:16px;
      border:1px solid rgba(20,21,26,.08);
      background: linear-gradient(135deg, rgba(47,91,255,.10), rgba(33,196,154,.10));
      padding:10px;
      display:flex;
      gap:10px;
      align-items:stretch;
    }
    .caseMedia .imgBox{
      width:50%;
      border-radius:14px;
      overflow:hidden;
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.65);
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .caseMedia img{
      width:100%;
      height:auto;
      display:block;
      object-fit:cover;
    }
    .caseBody b{display:block; font-size:15px; margin-bottom:6px}
    .caseBody p{margin:0; color:var(--muted); font-weight:650; font-size:13px}
    .caseMeta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:auto;
    }

    .metaChip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,21,26,.10);
      background: rgba(255,255,255,.62);
      font-weight:900;
      font-size:12px;
      color:#252a33;
      white-space:nowrap;
    }
    .metaChip i{
      width:10px;height:10px;border-radius:4px; display:inline-block;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
    }

    .articleGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .articleList{
      border-radius: var(--radius);
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
      padding:16px;
    }
    .articleList h3{margin:0 0 10px; font-size:16px; letter-spacing:-.2px}
    .artItem{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.62);
      display:flex;
      gap:12px;
      align-items:flex-start;
      justify-content:space-between;
      margin-top:10px;
      transition: transform .16s ease, box-shadow .16s ease;
    }
    .artItem:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(20,21,26,.10);
    }
    .artItem:first-of-type{margin-top:0}
    .artLeft b{display:block; font-size:13.5px; margin-bottom:5px}
    .artLeft span{display:block; color:var(--muted); font-weight:650; font-size:12.5px}
    .artRight{
      flex:0 0 auto;
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:6px;
      color:var(--muted);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }
    .arrow{
      width:36px;height:36px;border-radius:14px;
      border:1px solid rgba(20,21,26,.10);
      background: rgba(255,255,255,.65);
      display:flex;align-items:center;justify-content:center;
      transition: transform .15s ease, border-color .15s ease;
    }
    .artItem:hover .arrow{transform: translateX(2px); border-color: rgba(47,91,255,.25);}
    .sidePanel{
      border-radius: var(--radius);
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.72);
      padding:16px;
      box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
      position:sticky;
      top:88px;
    }
    .sidePanel h3{margin:0 0 10px; font-size:16px; letter-spacing:-.2px}
    .tagCloud{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:10px;
    }
    .tagCloud a{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(20,21,26,.10);
      background: rgba(255,255,255,.62);
      font-weight:900;
      font-size:12px;
      color:#262d38;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .tagCloud a:hover{
      transform: translateY(-2px);
      border-color: rgba(33,196,154,.25);
      background: rgba(33,196,154,.08);
    }
    .sideCall{
      margin-top:14px;
      border-radius:16px;
      border:1px solid rgba(20,21,26,.08);
      background:
        radial-gradient(420px 160px at 20% 0%, rgba(47,91,255,.12), transparent 60%),
        radial-gradient(420px 160px at 85% 10%, rgba(33,196,154,.12), transparent 60%),
        rgba(255,255,255,.62);
      padding:14px;
    }
    .sideCall b{display:block; margin-bottom:6px; font-size:14px}
    .sideCall span{color:var(--muted); font-weight:650; font-size:13px}
    .sideCall .btn{margin-top:12px; width:100%}

    .faqWrap{
      border-radius: var(--radius);
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .faqHead{
      padding:16px 18px;
      border-bottom:1px solid rgba(20,21,26,.08);
      background:
        radial-gradient(700px 180px at 10% 0%, rgba(255,106,43,.10), transparent 55%),
        radial-gradient(700px 180px at 85% 15%, rgba(138,92,255,.11), transparent 55%),
        rgba(255,255,255,.35);
    }
    .faqHead h3{
      margin:0;
      font-size:18px;
      letter-spacing:-.2px;
    }
    .faqHead p{
      margin:8px 0 0;
      color:var(--muted);
      font-weight:650;
      font-size:13px;
      max-width: 70ch;
    }
    details.faq{
      padding:0;
      border-bottom:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.72);
    }
    details.faq:last-child{border-bottom:none}
    details.faq summary{
      list-style:none;
      padding:14px 18px;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      user-select:none;
    }
    details.faq summary::-webkit-details-marker{display:none}
    .qText{
      font-weight:950;
      color:#1f2733;
      font-size:14px;
      line-height:1.35;
      padding-right:10px;
    }
    .chev{
      width:36px;height:36px;border-radius:14px;
      border:1px solid rgba(20,21,26,.10);
      background: rgba(255,255,255,.62);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      transform: rotate(0deg);
      transition: transform .18s ease, border-color .18s ease;
      margin-top:-2px;
    }
    details[open] .chev{
      transform: rotate(180deg);
      border-color: rgba(47,91,255,.25);
    }
    .aText{
      padding:0 18px 16px;
      color:var(--muted);
      font-weight:650;
      font-size:13.5px;
      display:block;
    }
    .aText a{color:var(--brand)}
    .faqHint{
      padding:14px 18px 18px;
      color:var(--muted);
      font-weight:650;
      font-size:13px;
    }

    form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .field label{
      font-size:12px;
      color:#2a3444;
      font-weight:950;
    }
    .field input,.field select,.field textarea{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,21,26,.12);
      background: rgba(255,255,255,.75);
      color:#1f2733;
      outline:none;
      font-size:13.5px;
      font-weight:750;
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease, background .15s ease;
    }
    .field textarea{min-height:108px; resize:vertical}
    .field input:focus,.field select:focus,.field textarea:focus{
      border-color: rgba(47,91,255,.35);
      box-shadow: 0 0 0 5px var(--ring);
      background: rgba(255,255,255,.92);
    }
    .span2{grid-column: span 2}
    .formActions{
      display:flex;
      gap:12px;
      align-items:center;
      grid-column: span 2;
      flex-wrap:wrap;
      margin-top:4px;
    }
    .formNote{
      color:var(--muted);
      font-weight:650;
      font-size:12.5px;
      flex:1;
      min-width: 220px;
    }

    .footer{
      border-top:1px solid rgba(20,21,26,.08);
      background: rgba(251,250,247,.86);
      color:#1f2733;
      padding:22px 0 18px;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .footerCard{
      border-radius: var(--radius);
      border:1px solid rgba(20,21,26,.08);
      background: rgba(255,255,255,.70);
      padding:16px;
      box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
    }
    .footerCard h3{margin:0 0 10px; font-size:15px}
    .footerCard p{margin:0; color:var(--muted); font-weight:650; font-size:13.5px}
    .footerLinks{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .footerLinks a{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(20,21,26,.10);
      background: rgba(255,255,255,.64);
      font-weight:900;
      font-size:12px;
      transition: transform .15s ease, border-color .15s ease;
    }
    .footerLinks a:hover{
      transform: translateY(-2px);
      border-color: rgba(47,91,255,.25);
    }
    .footerBottom{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:var(--muted);
      font-weight:750;
      font-size:12.5px;
    }

    .floatBtn{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .floatGroup{
      pointer-events:auto;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .floatTip{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,21,26,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      color:#222a35;
      font-weight:950;
      font-size:12.5px;
      max-width: 220px;
      display:none;
    }
    .floatBtn .btn{
      padding:12px 13px;
    }

    .qrPopover{
      position:absolute;
      right:0;
      bottom:58px;
      width:180px;
      border-radius:18px;
      background: rgba(255,255,255,.88);
      border:1px solid rgba(20,21,26,.12);
      box-shadow: var(--shadow2);
      overflow:hidden;
      transform-origin: 90% 100%;
      opacity:0;
      transform: scale(.98) translateY(6px);
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .qrPopover.open{
      opacity:1;
      transform: scale(1) translateY(0);
      pointer-events:auto;
    }
    .qrPopover .qrTop{
      padding:10px 12px;
      border-bottom:1px solid rgba(20,21,26,.08);
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
    }
    .qrPopover .qrTop b{
      font-size:13px;
      font-weight:1000;
      letter-spacing:-.2px;
    }
    .qrPopover .qrTop button{
      width:34px;height:34px;border-radius:12px;
      border:1px solid rgba(20,21,26,.10);
      background: rgba(255,255,255,.65);
      cursor:pointer;
      font-weight:1000;
    }
    .qrPopover img{
      width:100%;
      height:auto;
      display:block;
      padding:10px;
      background: rgba(255,255,255,.6);
    }

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

    .backTop{
      position:fixed;
      left:14px;
      bottom:14px;
      z-index:60;
      width:44px;height:44px;
      border-radius:16px;
      border:1px solid rgba(20,21,26,.12);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      display:flex;align-items:center;justify-content:center;
      cursor:pointer;
      font-weight:1000;
      color:#1f2733;
      opacity:0;
      pointer-events:none;
      transform: translateY(8px);
      transition: opacity .2s ease, transform .2s ease;
    }
    .backTop.show{
      opacity:1;
      pointer-events:auto;
      transform: translateY(0);
    }

    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; }
      .heroLeft,.heroRight{min-height:auto}
      .cards3{grid-template-columns: 1fr}
      .twoCol{grid-template-columns: 1fr}
      .gridCards{grid-template-columns: 1fr 1fr}
      .caseGrid{grid-template-columns: 1fr}
      .articleGrid{grid-template-columns: 1fr}
      .sidePanel{position:relative; top:auto}
      .footerGrid{grid-template-columns: 1fr}
      h1{font-size:34px; max-width: 22ch}
    }
    @media (max-width: 860px){
      .menu{display:none}
      .hamburger{display:flex}
      .mobilePanel{display:block}
      .navCtas .btn{display:none}
      .navCtas .btn[data-mobile]{display:inline-flex}
    }
    @media (max-width: 560px){
      .heroLeft{padding:20px}
      .heroRight{padding:14px}
      h1{font-size:30px}
      .statGrid{grid-template-columns: 1fr 1fr}
      .gridCards{grid-template-columns: 1fr}
      form{grid-template-columns: 1fr}
      .span2{grid-column: span 1}
      .formActions{grid-column: span 1}
      .formNote{min-width:0}
      .floatTip{display:none}
    }