:root{
      --bg0:#f6faf7;
      --bg1:#ffffff;
      --text:#0f172a;
      --muted:#5b657a;
      --muted2:#7a879f;
      --line:rgba(15,23,42,.10);
      --card:rgba(255,255,255,.78);
      --card2:#ffffff;
      --green:#18c66a;
      --green2:#10b981;
      --lime:#b9f53d;
      --teal:#15d6a8;
      --shadow: 0 18px 50px rgba(15, 23, 42, .10);
      --shadow2: 0 12px 28px rgba(15, 23, 42, .10);
      --ring: 0 0 0 3px rgba(16,185,129,.18);
      --radius:16px;
      --radius2:22px;
      --max:1180px;
      --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, "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(900px 450px at 10% -10%, rgba(24,198,106,.20), transparent 60%),
        radial-gradient(700px 420px at 95% 0%, rgba(185,245,61,.20), transparent 55%),
        linear-gradient(180deg, var(--bg0), #fff 45%, #f8faf9 100%);
    }
    a{color:inherit; text-decoration:none}
    .container{
      max-width:var(--max);
      margin:0 auto;
      padding:0 var(--pad);
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(246,250,247,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .navRow{
      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:42px; height:42px;
      object-fit:contain;
      border-radius:12px;
      background:rgba(16,185,129,.08);
      padding:6px;
      border:1px solid rgba(16,185,129,.18);
    }
    .brandText{display:flex; flex-direction:column; line-height:1.1}
    .brandName{
      font-weight:860;
      letter-spacing:.2px;
      font-size:14px;
    }
    .brandSub{
      margin-top:3px;
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }
    .navActions{
      display:flex; align-items:center; gap:10px;
    }
    .navLinks{
      display:flex; align-items:center; gap:16px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navLinks a{
      font-size:13px;
      color:rgba(15,23,42,.82);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .navLinks a:hover{
      transform: translateY(-1px);
      background:rgba(16,185,129,.07);
      border-color:rgba(16,185,129,.20);
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(16,185,129,.35);
      background: linear-gradient(180deg, rgba(16,185,129,.12), rgba(16,185,129,.05));
      color:rgba(6,95,70,.98);
      font-weight:750;
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow:var(--ring)}
    .btn:hover{transform: translateY(-1px); box-shadow:0 10px 22px rgba(16,185,129,.18); border-color:rgba(16,185,129,.55)}
    .btnPrimary{
      background: linear-gradient(180deg, #18c66a, #0fb86a);
      color:#06251a;
      border-color: rgba(7, 160, 90, .45);
      box-shadow: 0 14px 30px rgba(24,198,106,.22);
    }
    .btnPrimary:hover{
      box-shadow: 0 18px 38px rgba(24,198,106,.30);
      border-color: rgba(7, 160, 90, .62);
      transform: translateY(-1px) scale(1.01);
    }
    .btnGhost{
      background: rgba(255,255,255,.7);
      border-color: rgba(15,23,42,.12);
      color: rgba(15,23,42,.88);
      font-weight:740;
    }
    .menuBtn{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.72);
      align-items:center;
      justify-content:center;
      transition: transform .18s ease;
    }
    .menuBtn:hover{transform: translateY(-1px)}
    .hamburger{
      width:18px; height:12px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: rgba(15,23,42,.86);
      transition: transform .22s ease, top .22s ease, opacity .18s ease;
    }
    .hamburger span:nth-child(1){top:0}
    .hamburger span:nth-child(2){top:5px}
    .hamburger span:nth-child(3){top:10px}
    .menuOpen .hamburger span:nth-child(1){top:5px; transform: rotate(45deg)}
    .menuOpen .hamburger span:nth-child(2){opacity:0}
    .menuOpen .hamburger span:nth-child(3){top:5px; transform: rotate(-45deg)}
    .mobilePanel{
      display:none;
      padding:0 0 14px 0;
    }
    .mobileLinks{
      display:flex; flex-direction:column; gap:8px;
      background: rgba(255,255,255,.82);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:10px;
      box-shadow: 0 16px 40px rgba(15,23,42,.10);
    }
    .mobileLinks a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(16,185,129,.06);
      font-weight:720;
      font-size:13px;
    }

    main{padding:22px 0 0}
    .hero{
      position:relative;
      padding:26px 0 10px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:18px;
      align-items:stretch;
    }
    .heroLeft{
      border-radius:var(--radius2);
      padding:22px 20px 18px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.55));
      border:1px solid rgba(16,185,129,.18);
      box-shadow: 0 18px 45px rgba(15,23,42,.08);
      overflow:hidden;
      position:relative;
    }
    .heroLeft:before{
      content:"";
      position:absolute;
      inset:-120px -80px auto -80px;
      height:260px;
      background:
        radial-gradient(closest-side, rgba(16,185,129,.35), transparent 70%),
        radial-gradient(closest-side, rgba(185,245,61,.24), transparent 60%);
      filter: blur(1px);
      pointer-events:none;
      transform: rotate(-8deg);
    }
    .heroKicker{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      position:relative;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 11px;
      border-radius:999px;
      border:1px solid rgba(16,185,129,.22);
      background: rgba(16,185,129,.08);
      font-size:12px;
      font-weight:760;
      color: rgba(6,95,70,.98);
      letter-spacing:.2px;
    }
    .dot{
      width:8px; height:8px;
      border-radius:50%;
      background: var(--green);
      box-shadow: 0 0 0 3px rgba(16,185,129,.16);
    }
    .heroTitle{
      position:relative;
      margin:14px 0 10px;
      font-size:34px;
      letter-spacing:-.7px;
      line-height:1.16;
      font-weight:920;
    }
    .heroTitle .em{
      color:#0c8a4f;
      text-shadow: 0 1px 0 rgba(255,255,255,.8);
    }
    .heroDesc{
      position:relative;
      color: var(--muted);
      font-size:14px;
      line-height:1.7;
      margin:0 0 16px;
      max-width:64ch;
    }
    .heroBtns{
      position:relative;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      margin-bottom:16px;
    }
    .metaRow{
      position:relative;
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:10px;
    }
    .metaChip{
      flex: 0 0 auto;
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      min-width: 150px;
    }
    .metaIcon{
      width:34px; height:34px; border-radius:14px;
      background: linear-gradient(180deg, rgba(16,185,129,.18), rgba(16,185,129,.06));
      border:1px solid rgba(16,185,129,.20);
      display:flex; align-items:center; justify-content:center;
      color: rgba(6,95,70,.98);
    }
    .metaText b{
      display:block; font-size:13px; letter-spacing:.2px;
    }
    .metaText span{
      display:block; font-size:12px; color:var(--muted2); margin-top:2px;
    }

    .heroRight{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.52));
      box-shadow: 0 18px 45px rgba(15,23,42,.08);
      padding:18px;
      overflow:hidden;
      position:relative;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:14px;
    }
    .heroRight:after{
      content:"";
      position:absolute;
      inset:auto -120px -140px auto;
      width:320px; height:320px;
      background:
        radial-gradient(closest-side, rgba(24,198,106,.28), transparent 62%),
        radial-gradient(closest-side, rgba(21,214,168,.22), transparent 58%);
      pointer-events:none;
      transform: rotate(18deg);
    }
    .miniGrid{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .miniCard{
      border-radius:18px;
      padding:14px 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:88px;
    }
    .miniCard:hover{
      transform: translateY(-2px);
      border-color: rgba(16,185,129,.28);
      box-shadow: 0 18px 40px rgba(16,185,129,.14);
    }
    .miniTop{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .tag{
      font-size:12px; font-weight:820;
      color: rgba(6,95,70,.98);
      padding:6px 10px;
      border-radius:999px;
      background: rgba(16,185,129,.09);
      border:1px solid rgba(16,185,129,.18);
      white-space:nowrap;
    }
    .spark{
      width:38px; height:38px;
      border-radius:16px;
      background: linear-gradient(180deg, rgba(24,198,106,.18), rgba(24,198,106,.06));
      border:1px solid rgba(24,198,106,.20);
      display:flex; align-items:center; justify-content:center;
      color: rgba(6,95,70,.98);
    }
    .miniCard b{
      display:block;
      margin-top:10px;
      font-size:14px;
      letter-spacing:.2px;
    }
    .miniCard span{
      display:block;
      margin-top:6px;
      font-size:12px;
      color:var(--muted2);
      line-height:1.35;
    }
    .trustBox{
      position:relative;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:14px 14px;
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .trustBadge{
      width:44px; height:44px;
      border-radius:18px;
      background: linear-gradient(180deg, rgba(185,245,61,.18), rgba(24,198,106,.07));
      border:1px solid rgba(16,185,129,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(6,95,70,.98);
      flex:0 0 auto;
    }
    .trustBox b{display:block; font-size:14px}
    .trustBox p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.6}

    .section{
      padding:18px 0;
    }
    .sectionHead{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin:8px 0 14px;
    }
    .sectionTitle{
      margin:0;
      font-size:20px;
      letter-spacing:-.3px;
      font-weight:900;
    }
    .sectionSub{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      max-width:70ch;
    }
    .sectionRightNote{
      color:var(--muted2);
      font-size:12px;
      white-space:nowrap;
    }
    .cards3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .card{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:16px 14px;
      box-shadow: 0 10px 26px rgba(15,23,42,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card:hover{
      transform: translateY(-2px);
      border-color: rgba(16,185,129,.28);
      box-shadow: 0 16px 36px rgba(16,185,129,.12);
    }
    .cardTop{
      display:flex; align-items:center; gap:12px; justify-content:space-between;
    }
    .cardIcon{
      width:42px; height:42px; border-radius:18px;
      background: linear-gradient(180deg, rgba(16,185,129,.18), rgba(16,185,129,.06));
      border:1px solid rgba(16,185,129,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(6,95,70,.98);
      flex:0 0 auto;
    }
    .card h3{
      margin:0;
      font-size:15px;
      font-weight:900;
      letter-spacing:-.2px;
    }
    .card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .flow{
      display:grid;
      gap:12px;
    }
    .step{
      display:flex; gap:12px;
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 26px rgba(15,23,42,.05);
      transition: transform .2s ease, border-color .2s ease;
    }
    .step:hover{transform: translateY(-2px); border-color: rgba(16,185,129,.28)}
    .stepNum{
      width:44px; height:44px;
      border-radius:18px;
      background: rgba(16,185,129,.09);
      border:1px solid rgba(16,185,129,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: rgba(6,95,70,.98);
      flex:0 0 auto;
    }
    .step b{display:block; font-size:14px}
    .step span{display:block; margin-top:6px; color:var(--muted); font-size:13px; line-height:1.6}

    .bgPanel{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(800px 300px at 10% 0%, rgba(16,185,129,.20), transparent 60%),
        radial-gradient(500px 240px at 90% 10%, rgba(185,245,61,.18), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      box-shadow: 0 18px 45px rgba(15,23,42,.08);
      padding:16px;
    }
    .twoColWide{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:12px;
      align-items:start;
    }

    .tableWrap{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 26px rgba(15,23,42,.05);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:720px;
      font-size:13px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
    }
    th{
      position:sticky;
      top:0;
      background: rgba(240,255,245,.92);
      z-index:1;
      text-align:left;
      font-weight:900;
      color: rgba(6,95,70,.98);
      border-bottom:1px solid rgba(16,185,129,.20);
    }
    tr:last-child td{border-bottom:none}
    .good{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(16,185,129,.22);
      background: rgba(16,185,129,.09);
      font-weight:850;
      color: rgba(6,95,70,.98);
      white-space:nowrap;
    }
    .neutral{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.7);
      font-weight:820;
      color: rgba(15,23,42,.84);
      white-space:nowrap;
    }

    .tokenGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .tokenCard{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:16px 14px;
      box-shadow: 0 10px 26px rgba(15,23,42,.05);
    }
    .tokenCard h3{margin:0; font-size:15px; font-weight:920}
    .tokenCard p{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    .priceBox{
      margin-top:12px;
      display:grid;
      gap:10px;
    }
    .priceRow{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.75);
    }
    .priceRow b{font-size:13px}
    .priceRow span{display:block; color:var(--muted2); margin-top:4px; font-size:12px; line-height:1.4}
    .priceVal{
      flex:0 0 auto;
      text-align:right;
      font-weight:950;
      color: rgba(6,95,70,.98);
      font-size:13px;
      white-space:nowrap;
    }
    .priceVal small{
      display:block;
      font-weight:800;
      color:var(--muted2);
      margin-top:3px;
      font-size:12px;
    }

    .logosGrid{
      display:grid;
      grid-template-columns: repeat(5, 1fr);
      gap:10px;
      align-items:stretch;
    }
    .logoChip{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:12px 10px;
      display:flex; align-items:center; justify-content:center;
      min-height:52px;
      color: rgba(15,23,42,.84);
      font-weight:850;
      font-size:12px;
      letter-spacing:.2px;
      position:relative;
      overflow:hidden;
    }
    .logoChip:before{
      content:"";
      position:absolute;
      inset:-1px auto auto -1px;
      width:64px; height:64px;
      background: radial-gradient(closest-side, rgba(16,185,129,.18), transparent 70%);
      transform: rotate(20deg);
      pointer-events:none;
    }

    .listGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .checkList{
      margin:0; padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .checkList li{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 26px rgba(15,23,42,.04);
    }
    .tick{
      width:26px; height:26px;
      border-radius:10px;
      background: rgba(16,185,129,.10);
      border:1px solid rgba(16,185,129,.20);
      display:flex; align-items:center; justify-content:center;
      color: rgba(6,95,70,.98);
      flex:0 0 auto;
      margin-top:1px;
    }
    .checkList b{display:block; font-size:13px}
    .checkList span{display:block; margin-top:4px; color:var(--muted); font-size:12px; line-height:1.55}

    .casesGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .caseCard{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      overflow:hidden;
      box-shadow: 0 10px 26px rgba(15,23,42,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column;
    }
    .caseCard:hover{
      transform: translateY(-2px);
      border-color: rgba(16,185,129,.28);
      box-shadow: 0 16px 36px rgba(16,185,129,.12);
    }
    .caseTop{
      padding:14px 14px 10px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .caseTitle{
      font-weight:950;
      font-size:14px;
      margin:0;
      letter-spacing:-.2px;
    }
    .caseMeta{
      color:var(--muted2);
      font-size:12px;
      margin-top:6px;
      line-height:1.5;
    }
    .caseBody{
      padding:0 14px 14px;
      display:flex; flex-direction:column; gap:10px;
    }
    .badgeRow{display:flex; flex-wrap:wrap; gap:8px}
    .miniBadge{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      font-weight:850;
      font-size:12px;
      color: rgba(15,23,42,.84);
    }
    .caseFooter{
      margin-top:auto;
      padding:12px 14px 14px;
      border-top:1px solid rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .linkBtn{
      display:inline-flex; align-items:center; gap:10px;
      font-weight:900;
      font-size:13px;
      color: rgba(6,95,70,.98);
      border:1px solid rgba(16,185,129,.28);
      background: rgba(16,185,129,.08);
      padding:10px 12px;
      border-radius:14px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .linkBtn:hover{transform: translateY(-1px); background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.45)}
    .caseScore{
      text-align:right;
      font-weight:950;
      color: rgba(15,23,42,.88);
      font-size:13px;
    }
    .caseScore small{
      display:block;
      color:var(--muted2);
      margin-top:4px;
      font-weight:850;
      font-size:12px;
    }

    .reviewsGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .reviewCard{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 26px rgba(15,23,42,.05);
      padding:16px 14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .reviewCard:hover{transform: translateY(-2px); border-color: rgba(16,185,129,.28); box-shadow: 0 16px 36px rgba(16,185,129,.12)}
    .reviewTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:44px; height:44px;
      border-radius:18px;
      background: linear-gradient(180deg, rgba(16,185,129,.18), rgba(16,185,129,.06));
      border:1px solid rgba(16,185,129,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: rgba(6,95,70,.98);
      flex:0 0 auto;
    }
    .stars{
      display:flex; gap:3px; align-items:center;
      color: rgba(6,95,70,.98);
      font-weight:950;
      font-size:12px;
      white-space:nowrap;
    }
    .reviewCard p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .reviewPerson{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-top:auto;
      padding-top:10px;
      border-top:1px solid rgba(15,23,42,.08);
    }
    .reviewPerson b{font-size:13px}
    .reviewPerson span{font-size:12px; color:var(--muted2); margin-top:4px; display:block}

    .articleList{
      display:grid;
      gap:12px;
    }
    .articleItem{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:14px 14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      transition: transform .2s ease, border-color .2s ease;
    }
    .articleItem:hover{transform: translateY(-2px); border-color: rgba(16,185,129,.28)}
    .articleLeft{min-width:0}
    .articleItem b{
      display:block; font-size:14px; font-weight:950; letter-spacing:-.2px;
    }
    .articleItem span{
      display:block; margin-top:6px; color:var(--muted); font-size:13px; line-height:1.6;
    }
    .articleItem a{
      flex:0 0 auto;
      align-self:flex-start;
    }

    .accordion{
      display:grid;
      gap:10px;
    }
    details.accItem{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 26px rgba(15,23,42,.04);
      padding:0 12px;
      overflow:hidden;
      transition: border-color .2s ease, transform .2s ease;
    }
    details.accItem[open]{border-color: rgba(16,185,129,.30)}
    summary{
      cursor:pointer;
      list-style:none;
      padding:14px 4px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      user-select:none;
      outline:none;
    }
    summary::-webkit-details-marker{display:none}
    .qText{
      font-weight:950;
      font-size:14px;
      letter-spacing:-.2px;
      line-height:1.5;
      padding-right:10px;
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:-2px;
      transition: transform .2s ease, border-color .2s ease;
    }
    details[open] .chev{transform: rotate(180deg); border-color: rgba(16,185,129,.25)}
    .accBody{
      padding:0 4px 14px;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .faqTools{
      display:flex; gap:10px; flex-wrap:wrap;
      align-items:center;
      justify-content:flex-end;
    }
    .seg{
      display:flex; gap:6px;
      padding:6px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
    }
    .seg button{
      appearance:none;
      border:none;
      background:transparent;
      padding:10px 12px;
      border-radius:12px;
      font-weight:900;
      font-size:12px;
      color: rgba(15,23,42,.74);
      cursor:pointer;
      transition: background .18s ease, color .18s ease, transform .18s ease;
    }
    .seg button:hover{transform: translateY(-1px)}
    .seg button[aria-pressed="true"]{
      background: rgba(16,185,129,.10);
      color: rgba(6,95,70,.98);
      border:1px solid rgba(16,185,129,.22);
    }

    .formCard{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(700px 300px at 10% 0%, rgba(16,185,129,.18), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62));
      box-shadow: 0 18px 45px rgba(15,23,42,.08);
      padding:16px;
    }
    form{
      display:grid;
      gap:12px;
      grid-template-columns: 1fr 1fr;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    label{
      font-size:12px;
      color: rgba(15,23,42,.78);
      font-weight:900;
      letter-spacing:.2px;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.80);
      color: rgba(15,23,42,.92);
      font-size:13px;
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{border-color: rgba(16,185,129,.45); box-shadow: var(--ring)}
    .full{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;
    }
    .finePrint{
      color:var(--muted2);
      font-size:12px;
      line-height:1.6;
      max-width:58ch;
    }
    .toast{
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      background: rgba(255,255,255,.92);
      border:1px solid rgba(15,23,42,.12);
      box-shadow: 0 18px 45px rgba(15,23,42,.18);
      border-radius:16px;
      padding:12px 14px;
      z-index:100;
      display:none;
      align-items:center;
      gap:10px;
      max-width: calc(100vw - 26px);
    }
    .toast .tDot{
      width:10px; height:10px; border-radius:50%;
      background: var(--green);
      box-shadow: 0 0 0 3px rgba(16,185,129,.18);
      flex:0 0 auto;
    }
    .toast b{font-size:13px}
    .toast span{color:var(--muted); font-size:12px; line-height:1.5}

    .footer{
      margin-top:20px;
      border-top:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
    }
    .footerInner{
      padding:16px 0 10px;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .footerBrand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footerBrand img{
      width:40px; height:40px;
      border-radius:16px;
      object-fit:contain;
      background: rgba(16,185,129,.08);
      border:1px solid rgba(16,185,129,.18);
      padding:6px;
      flex:0 0 auto;
    }
    .footerBrand b{display:block; font-size:14px}
    .footerBrand p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    .footerCols{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .footerCol{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:12px 12px;
    }
    .footerCol b{
      display:block; font-size:13px; margin-bottom:8px; font-weight:950;
    }
    .footerCol a{
      display:block;
      color: rgba(15,23,42,.82);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      font-size:13px;
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
      white-space:nowrap;
    }
    .footerCol a:hover{
      background: rgba(16,185,129,.08);
      border-color: rgba(16,185,129,.18);
      transform: translateY(-1px);
    }
    .copyrightRow{
      margin-top:12px;
      padding:12px 0 18px;
      border-top:1px solid rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
      color:var(--muted2);
      font-size:12px;
    }
    .footerLinksRow{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .footerLinksRow a{
      color: rgba(15,23,42,.80);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:10px 12px;
      border-radius:14px;
      font-weight:900;
      font-size:12px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .footerLinksRow a:hover{transform: translateY(-1px); border-color: rgba(16,185,129,.28); background: rgba(16,185,129,.08)}

    .floatHelp{
      position:fixed;
      right: 14px;
      bottom: 14px;
      z-index:90;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .helpBtn{
      display:flex; align-items:center; gap:10px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 45px rgba(15,23,42,.18);
      padding:10px 12px;
      cursor:pointer;
      transition: transform .18s ease;
      user-select:none;
    }
    .helpBtn:hover{transform: translateY(-2px)}
    .helpIcon{
      width:38px; height:38px;
      border-radius:16px;
      background: rgba(16,185,129,.10);
      border:1px solid rgba(16,185,129,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(6,95,70,.98);
      flex:0 0 auto;
      font-weight:950;
    }
    .helpText b{display:block; font-size:13px}
    .helpText span{display:block; margin-top:3px; color:var(--muted2); font-size:12px}
    .helpPop{
      position:relative;
    }
    .qrPanel{
      position:absolute;
      right:0;
      bottom:58px;
      width:230px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.94);
      box-shadow: 0 24px 60px rgba(15,23,42,.22);
      padding:12px;
      display:none;
      animation: popIn .18s ease;
    }
    @keyframes popIn{
      from{opacity:0; transform: translateY(6px) scale(.98)}
      to{opacity:1; transform: translateY(0) scale(1)}
    }
    .qrPanel b{display:block; font-size:13px; margin-bottom:8px}
    .qrPanel img{
      width:100%;
      height:auto;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      object-fit:contain;
    }
    .qrPanel .qrHint{
      margin-top:8px;
      color:var(--muted);
      font-size:12px;
      line-height:1.6;
    }

    .toTop{
      position:fixed;
      right: 14px;
      bottom: 100px;
      z-index:90;
      width:44px; height:44px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.88);
      box-shadow: 0 18px 45px rgba(15,23,42,.18);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, opacity .18s ease;
      opacity:0;
      pointer-events:none;
    }
    .toTop.show{opacity:1; pointer-events:auto}
    .toTop:hover{transform: translateY(-2px)}

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

    @media (max-width: 980px){
      .heroGrid{grid-template-columns:1fr; gap:12px}
      .heroTitle{font-size:30px}
      .cards3{grid-template-columns: 1fr; }
      .split{grid-template-columns: 1fr}
      .twoColWide{grid-template-columns: 1fr}
      .tokenGrid{grid-template-columns:1fr}
      .logosGrid{grid-template-columns: repeat(3, 1fr)}
      .casesGrid{grid-template-columns:1fr}
      .reviewsGrid{grid-template-columns:1fr}
      .listGrid{grid-template-columns:1fr}
      .footerGrid{grid-template-columns:1fr}
      .footerCols{grid-template-columns:1fr}
      .navLinks{display:none}
      .menuBtn{display:flex}
      .mobilePanel{display:block}
    }
    @media (max-width: 520px){
      .heroTitle{font-size:26px}
      .metaChip{min-width: 0; flex:1 1 auto}
      form{grid-template-columns: 1fr}
      .field{grid-column:auto}
      .heroLeft{padding:18px 14px}
      .heroRight{padding:14px}
      .logosGrid{grid-template-columns: repeat(2, 1fr)}
    }