:root{
      --bg0:#fff7fa;
      --bg1:#ffffff;
      --text:#1e1b22;
      --muted:#6b6571;
      --card:#ffffff;
      --stroke:rgba(35,22,34,.12);
      --stroke2:rgba(35,22,34,.08);
      --shadow:0 18px 50px rgba(36,16,30,.10);
      --shadow2:0 10px 26px rgba(36,16,30,.10);
      --brand:#e63a77;        /* 桃红艳丽 */
      --brand2:#ff6b98;
      --brand3:#b01b4a;
      --accent:#7a2cff;
      --ok:#0e8a5a;
      --warn:#b86b00;
      --radius:18px;
      --radius2:14px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 520px at 15% -10%, rgba(230,58,119,.16), transparent 60%),
        radial-gradient(1000px 420px at 82% 0%, rgba(122,44,255,.12), transparent 55%),
        linear-gradient(180deg, var(--bg0) 0%, #fff 38%, #fff 100%);
    }
    a{color:inherit; text-decoration:none}
    img{display:block}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    /* Header */
    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255, 247, 250, .78);
      border-bottom:1px solid rgba(35,22,34,.08);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 220px;
    }
    .brand img{
      width:42px;
      height:42px;
      object-fit:contain;
      border-radius:12px;
      background: rgba(230,58,119,.08);
      padding:6px;
      border:1px solid rgba(230,58,119,.18);
    }
    .brand-title{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-title span{
      font-size:12px;
      color:var(--muted);
    }
    nav{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      justify-content:flex-end;
      max-width: 720px;
    }
    .nav-links a{
      padding:9px 10px;
      border-radius:12px;
      color:rgba(30,27,34,.88);
      border:1px solid transparent;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      font-size:13px;
      white-space:nowrap;
    }
    .nav-links a:hover{
      border-color: rgba(230,58,119,.26);
      background: rgba(230,58,119,.06);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      flex-shrink:0;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid var(--stroke);
      background: #fff;
      color:rgba(30,27,34,.92);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      user-select:none;
      font-weight:600;
      font-size:13px;
    }
    .btn:focus{outline:3px solid rgba(230,58,119,.22); outline-offset:2px}
    .btn:hover{transform: translateY(-1px); box-shadow: 0 10px 22px rgba(35,22,34,.10); border-color: rgba(230,58,119,.30)}
    .btn-primary{
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
      border-color: rgba(230,58,119,.35);
      color:#fff;
      box-shadow: 0 18px 40px rgba(230,58,119,.20);
    }
    .btn-primary:hover{box-shadow: 0 22px 50px rgba(230,58,119,.26); border-color: rgba(255,107,152,.60)}
    .btn-ghost{
      background: rgba(255,255,255,.65);
    }
    .btn .dot{
      width:8px; height:8px; border-radius:50%;
      background: rgba(255,255,255,.95);
      box-shadow: 0 0 0 4px rgba(255,255,255,.22);
    }

    /* Mobile nav */
    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid var(--stroke);
      background:#fff;
      cursor:pointer;
      position:relative;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .burger:hover{transform: translateY(-1px); box-shadow: 0 10px 22px rgba(35,22,34,.10)}
    .burger span{
      position:absolute;
      left:12px; right:12px;
      height:2px;
      background: rgba(30,27,34,.75);
      border-radius:999px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger span:nth-child(1){top:15px}
    .burger span:nth-child(2){top:21px}
    .burger span:nth-child(3){top:27px}
    .burger.is-open span:nth-child(1){top:21px; transform: rotate(45deg)}
    .burger.is-open span:nth-child(2){opacity:0}
    .burger.is-open span:nth-child(3){top:21px; transform: rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:12px 0 16px;
    }
    .mobile-panel .panel-inner{
      border:1px solid rgba(35,22,34,.10);
      background: rgba(255,255,255,.82);
      border-radius: 18px;
      padding:12px;
      box-shadow: 0 18px 46px rgba(35,22,34,.10);
    }
    .mobile-links{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .mobile-links a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(35,22,34,.08);
      background: #fff;
      font-weight:600;
      font-size:14px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .mobile-links a:hover{transform: translateY(-1px); border-color: rgba(230,58,119,.28); background: rgba(230,58,119,.05)}
    .mobile-ctas{
      display:flex;
      gap:10px;
      margin-top:12px;
    }
    .mobile-ctas .btn{flex:1}

    /* Hero */
    .hero{
      padding:26px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      border-radius: 26px;
      border:1px solid rgba(35,22,34,.08);
      background:
        radial-gradient(900px 460px at 0% 0%, rgba(230,58,119,.22), transparent 60%),
        radial-gradient(720px 420px at 90% 20%, rgba(122,44,255,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.68));
      box-shadow: 0 22px 62px rgba(230,58,119,.10);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .hero-left:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(110deg, rgba(230,58,119,.22) 0%, rgba(255,107,152,.08) 35%, rgba(122,44,255,.10) 72%, rgba(255,255,255,0) 100%);
      opacity:.55;
      pointer-events:none;
    }
    .hero-content{
      position:relative;
      z-index:1;
      height:100%;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .badge-row{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(230,58,119,.08);
      border:1px solid rgba(230,58,119,.20);
      font-weight:700;
      font-size:12px;
      color: rgba(176,27,74,.95);
    }
    .badge i{
      width:10px; height:10px;
      border-radius:3px;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
      box-shadow: 0 0 0 4px rgba(230,58,119,.16);
      display:inline-block;
    }
    .hero h1{
      margin:0;
      font-size:34px;
      line-height:1.15;
      letter-spacing:.2px;
    }
    .hero-sub{
      margin:0;
      color: rgba(30,27,34,.80);
      font-size:15px;
      line-height:1.7;
      max-width: 58ch;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:4px;
    }
    .meta-strip{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:6px;
      padding-top:6px;
    }
    .meta-chip{
      flex:0 0 auto;
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(35,22,34,.08);
    }
    .meta-chip b{font-size:13px}
    .meta-chip span{font-size:12px; color:var(--muted)}
    .meta-chip .icon{
      width:34px; height:34px;
      border-radius:12px;
      background: linear-gradient(135deg, rgba(230,58,119,.18), rgba(122,44,255,.12));
      border:1px solid rgba(230,58,119,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(176,27,74,.95);
      font-weight:900;
      letter-spacing:-.2px;
    }

    /* Hero right */
    .hero-right{
      border-radius: 26px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.76);
      box-shadow: 0 20px 58px rgba(35,22,34,.08);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .right-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .right-top h2{
      margin:2px 0 0;
      font-size:15px;
      letter-spacing:.2px;
    }
    .right-top p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
      max-width: 30ch;
    }
    .pulse-ring{
      width:44px; height:44px;
      border-radius: 16px;
      border:1px solid rgba(230,58,119,.26);
      background: rgba(230,58,119,.06);
      display:flex; align-items:center; justify-content:center;
      position:relative;
      flex-shrink:0;
      color: rgba(176,27,74,.95);
      font-weight:900;
    }
    .pulse-ring:after{
      content:"";
      position:absolute;
      inset:-6px;
      border-radius:inherit;
      border:1px solid rgba(230,58,119,.22);
      animation: pulse 2.2s ease-in-out infinite;
      opacity:.9;
    }
    @keyframes pulse{
      0%{transform: scale(.95); opacity:.7}
      60%{transform: scale(1.07); opacity:.25}
      100%{transform: scale(1.12); opacity:0}
    }
    .metrics{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:4px;
    }
    .metric{
      border-radius: 18px;
      padding:14px 14px;
      border:1px solid rgba(35,22,34,.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.68));
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      will-change: transform;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(35,22,34,.10);
      border-color: rgba(230,58,119,.26);
    }
    .metric .k{
      font-size:22px;
      font-weight:900;
      letter-spacing:.2px;
    }
    .metric .d{
      margin-top:6px;
      color: var(--muted);
      font-size:12.5px;
      line-height:1.5;
    }
    .quick-choose{
      border-top:1px solid rgba(35,22,34,.08);
      padding-top:12px;
      margin-top:auto;
    }
    .quick-choose .row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .quick-choose .row b{
      font-size:13px;
    }
    .seg{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .seg button{
      border:1px solid rgba(35,22,34,.10);
      background:#fff;
      border-radius: 999px;
      padding:8px 10px;
      cursor:pointer;
      font-weight:700;
      font-size:12px;
      color: rgba(30,27,34,.80);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .seg button:hover{transform: translateY(-1px); border-color: rgba(230,58,119,.28); background: rgba(230,58,119,.05)}
    .seg button[aria-pressed="true"]{
      background: rgba(230,58,119,.10);
      border-color: rgba(230,58,119,.35);
      color: rgba(176,27,74,.98);
    }
    .choose-out{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top:10px;
    }
    .out-card{
      border-radius: 16px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.70);
      padding:12px 12px;
    }
    .out-card .title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:6px;
    }
    .out-card .title span{
      font-size:12.5px;
      color: rgba(30,27,34,.86);
      font-weight:800;
    }
    .pill{
      font-size:12px;
      padding:7px 10px;
      border-radius: 999px;
      border:1px solid rgba(230,58,119,.25);
      background: rgba(230,58,119,.08);
      color: rgba(176,27,74,.98);
      font-weight:800;
      white-space:nowrap;
    }
    .out-card ul{
      margin:0;
      padding-left:18px;
      color: var(--muted);
      font-size:12.5px;
      line-height:1.7;
    }

    /* Sections */
    main{padding:10px 0 24px}
    section{
      padding:26px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:.2px;
    }
    .section-head p{
      margin:0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.6;
      max-width: 60ch;
    }
    .panel{
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.78);
      border-radius: 26px;
      padding:16px;
      box-shadow: 0 18px 50px rgba(35,22,34,.07);
    }

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

    /* About grid */
    .about-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .about-card{
      border-radius: 22px;
      border:1px solid rgba(35,22,34,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.64));
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .about-card:after{
      content:"";
      position:absolute;
      width:180px; height:180px;
      right:-80px; top:-90px;
      background: radial-gradient(circle at center, rgba(230,58,119,.22), transparent 65%);
      transform: rotate(10deg);
      pointer-events:none;
    }
    .about-card .t{
      position:relative;
      z-index:1;
      display:flex; align-items:center; gap:10px;
      margin-bottom:8px;
    }
    .about-card .t b{
      font-size:14px;
      letter-spacing:.2px;
    }
    .chip-icon{
      width:38px; height:38px;
      border-radius: 16px;
      border:1px solid rgba(230,58,119,.22);
      background: rgba(230,58,119,.08);
      display:flex; align-items:center; justify-content:center;
      color: rgba(176,27,74,.98);
      font-weight:900;
    }
    .about-card p{
      position:relative;
      z-index:1;
      margin:0;
      color: rgba(30,27,34,.78);
      line-height:1.8;
      font-size:13.5px;
    }
    .about-list{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:8px;
      position:relative; z-index:1;
    }
    .about-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color: rgba(30,27,34,.80);
      font-size:13px;
      line-height:1.6;
    }
    .about-list li .check{
      width:18px; height:18px;
      border-radius:6px;
      background: rgba(230,58,119,.12);
      border:1px solid rgba(230,58,119,.24);
      display:flex; align-items:center; justify-content:center;
      color: rgba(176,27,74,.98);
      font-weight:900;
      flex-shrink:0;
      margin-top:2px;
    }

    /* Services */
    .cards-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .service-card{
      border-radius: 22px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.78);
      padding:16px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      will-change: transform;
      min-height: 168px;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .service-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(35,22,34,.10);
      border-color: rgba(230,58,119,.26);
    }
    .service-card .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .service-card .top .t{
      display:flex; align-items:center; gap:10px;
    }
    .service-card .icon{
      width:42px; height:42px;
      border-radius: 18px;
      border:1px solid rgba(230,58,119,.22);
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,.35)),
        linear-gradient(135deg, rgba(230,58,119,.18), rgba(122,44,255,.10));
      display:flex; align-items:center; justify-content:center;
      color: rgba(176,27,74,.98);
      font-weight:900;
      flex-shrink:0;
    }
    .service-card h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:.2px;
    }
    .service-card p{
      margin:0;
      color: rgba(30,27,34,.78);
      line-height:1.75;
      font-size:13.5px;
    }
    .tag-row{
      margin-top:auto;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .tag{
      font-size:12px;
      padding:7px 10px;
      border-radius: 999px;
      border:1px solid rgba(35,22,34,.10);
      background: rgba(255,255,255,.66);
      color: rgba(30,27,34,.78);
      font-weight:700;
      white-space:nowrap;
    }
    .tag.hot{
      border-color: rgba(230,58,119,.28);
      background: rgba(230,58,119,.08);
      color: rgba(176,27,74,.98);
    }

    /* Flow */
    .flow{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .step{
      border-radius: 22px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.78);
      padding:14px;
      position:relative;
      overflow:hidden;
      min-height: 170px;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .step:before{
      content:"";
      position:absolute;
      inset:auto -30px -50px auto;
      width:130px; height:130px;
      background: radial-gradient(circle at center, rgba(230,58,119,.20), transparent 65%);
      pointer-events:none;
    }
    .step .n{
      position:relative;
      z-index:1;
      width:44px; height:44px;
      border-radius: 18px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(230,58,119,.22);
      background: rgba(230,58,119,.08);
      color: rgba(176,27,74,.98);
      font-weight:900;
    }
    .step h3{
      margin:2px 0 0;
      position:relative; z-index:1;
      font-size:15.5px;
      letter-spacing:.2px;
    }
    .step p{
      margin:0;
      position:relative; z-index:1;
      color: rgba(30,27,34,.78);
      font-size:13.5px;
      line-height:1.75;
    }
    .step .mini{
      margin-top:auto;
      position:relative; z-index:1;
      color: var(--muted);
      font-size:12.5px;
      line-height:1.6;
      padding-top:8px;
      border-top:1px dashed rgba(35,22,34,.12);
    }

    /* Comparison */
    .compare-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .compare-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-bottom:6px;
    }
    .rating-card{
      border-radius: 22px;
      border:1px solid rgba(35,22,34,.10);
      background:
        radial-gradient(520px 200px at 20% 0%, rgba(230,58,119,.20), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.66));
      padding:14px;
      min-width: 290px;
      flex: 0 0 auto;
    }
    .rating-card .head{
      display:flex; align-items:center; gap:10px; justify-content:space-between;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      color: rgba(176,27,74,.98);
      font-weight:900;
      letter-spacing:.3px;
    }
    .rating-card .score{
      font-size:34px;
      font-weight:950;
      letter-spacing:.2px;
      margin:8px 0 0;
    }
    .rating-card .desc{
      margin:6px 0 0;
      color: var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .rate-detail{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .rate-detail .badge2{
      border-radius: 999px;
      padding:7px 10px;
      border:1px solid rgba(230,58,119,.20);
      background: rgba(230,58,119,.08);
      color: rgba(176,27,74,.98);
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }

    .table-wrap{
      border-radius: 24px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.78);
      overflow:hidden;
    }
    .compare-table{
      width:100%;
      border-collapse: collapse;
      min-width: 740px;
    }
    .compare-table th,
    .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(35,22,34,.08);
      vertical-align:top;
      font-size:13.5px;
    }
    .compare-table th{
      background: rgba(230,58,119,.08);
      font-weight:950;
      color: rgba(176,27,74,.98);
      text-align:left;
    }
    .compare-table td{
      color: rgba(30,27,34,.84);
    }
    .mark-good{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius: 14px;
      background: rgba(14,138,90,.08);
      border:1px solid rgba(14,138,90,.22);
      color: rgba(14,138,90,.95);
      font-weight:900;
      white-space:nowrap;
    }
    .mark-part{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius: 14px;
      background: rgba(184,107,0,.08);
      border:1px solid rgba(184,107,0,.22);
      color: rgba(184,107,0,.95);
      font-weight:900;
      white-space:nowrap;
    }
    .compare-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:12px;
    }

    /* Target section grid */
    .twocol{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }

    /* Token cards */
    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
    }
    .token-card{
      border-radius: 22px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.78);
      padding:14px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      min-height: 190px;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .token-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(35,22,34,.10);
      border-color: rgba(230,58,119,.26);
    }
    .token-card .k{
      font-weight:950;
      letter-spacing:.2px;
      font-size:15px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .token-card .k .chip{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(230,58,119,.22);
      background: rgba(230,58,119,.08);
      color: rgba(176,27,74,.98);
      font-weight:950;
      white-space:nowrap;
    }
    .token-card p{
      margin:0;
      color: rgba(30,27,34,.78);
      font-size:13.5px;
      line-height:1.75;
    }
    .token-card .bul{
      margin:6px 0 0;
      padding-left:18px;
      color: var(--muted);
      font-size:12.8px;
      line-height:1.7;
    }

    /* Network timeline */
    .timeline{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .timeline .track{
      border-radius: 24px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.78);
      padding:14px;
    }
    .track h3{
      margin:0 0 10px;
      font-size:15.5px;
      letter-spacing:.2px;
    }
    .track ul{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .titem{
      display:flex; gap:10px; align-items:flex-start;
    }
    .titem .dot{
      width:14px; height:14px;
      border-radius: 6px;
      background: rgba(230,58,119,.14);
      border:1px solid rgba(230,58,119,.24);
      margin-top:4px;
      flex-shrink:0;
    }
    .titem b{font-size:13.5px}
    .titem span{
      display:block;
      margin-top:4px;
      color: var(--muted);
      font-size:12.8px;
      line-height:1.6;
    }

    /* Cases */
    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .case-card{
      border-radius: 22px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.78);
      overflow:hidden;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      display:flex;
      flex-direction:column;
      min-height: 290px;
    }
    .case-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(35,22,34,.10);
      border-color: rgba(230,58,119,.26);
    }
    .case-media{
      width:100%;
      aspect-ratio: 16/10;
      background:
        linear-gradient(135deg, rgba(230,58,119,.14), rgba(122,44,255,.10)),
        radial-gradient(400px 160px at 20% 0%, rgba(255,107,152,.30), transparent 65%),
        rgba(255,255,255,.55);
      display:flex;
      align-items:flex-end;
      padding:12px;
      position:relative;
      overflow:hidden;
    }
    .case-media:after{
      content:"";
      position:absolute; inset:-30% -10% auto auto;
      width:260px; height:260px;
      background: radial-gradient(circle at center, rgba(230,58,119,.20), transparent 60%);
      transform: rotate(12deg);
      pointer-events:none;
    }
    .case-media .badge3{
      position:relative; z-index:1;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(35,22,34,.10);
      font-weight:950;
      font-size:12px;
      color: rgba(176,27,74,.98);
      white-space:nowrap;
    }
    .case-body{
      padding:12px 14px 14px;
      display:flex;
      flex-direction:column;
      gap:8px;
      flex:1;
    }
    .case-body h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:.2px;
    }
    .case-body p{
      margin:0;
      color: rgba(30,27,34,.78);
      font-size:13.5px;
      line-height:1.75;
    }
    .case-body .meta{
      margin-top:auto;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }

    /* Articles + list */
    .list-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .article-panel{
      border-radius: 24px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.78);
      padding:14px;
    }
    .article-panel h3{
      margin:0 0 10px;
      font-size:15.5px;
      letter-spacing:.2px;
    }
    .article-list{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .article-item{
      border-radius: 18px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.70);
      padding:12px;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .article-item:hover{
      transform: translateY(-2px);
      border-color: rgba(230,58,119,.26);
      box-shadow: 0 16px 34px rgba(35,22,34,.10);
    }
    .article-item a{
      font-weight:950;
      color: rgba(176,27,74,.98);
    }
    .article-item .meta{
      color: var(--muted);
      font-size:12.6px;
      line-height:1.6;
    }

    /* Form */
    form{
      margin:0;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-weight:900;
      font-size:13px;
      color: rgba(30,27,34,.84);
    }
    .field input, .field select, .field textarea{
      border-radius: 14px;
      border:1px solid rgba(35,22,34,.12);
      background:#fff;
      padding:12px 12px;
      font-size:14px;
      color: rgba(30,27,34,.92);
      transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    }
    .field textarea{min-height:110px; resize: vertical}
    .field input:focus, .field select:focus, .field textarea:focus{
      outline:none;
      border-color: rgba(230,58,119,.40);
      box-shadow: 0 0 0 4px rgba(230,58,119,.14);
    }
    .form-actions{
      grid-column: 1 / -1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:2px;
    }
    .hint{
      color: var(--muted);
      font-size:12.6px;
      line-height:1.6;
      max-width: 60ch;
    }

    /* FAQ */
    .faq-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    details.faq{
      border-radius: 20px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.78);
      padding:12px 14px;
      transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
    }
    details.faq[open]{
      border-color: rgba(230,58,119,.28);
      box-shadow: 0 18px 42px rgba(35,22,34,.10);
      transform: translateY(-2px);
    }
    details.faq summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      font-weight:950;
      color: rgba(30,27,34,.92);
    }
    details.faq summary::-webkit-details-marker{display:none}
    .sum-left{
      display:flex; gap:10px; align-items:flex-start;
    }
    .sum-icon{
      width:30px; height:30px;
      border-radius: 12px;
      border:1px solid rgba(230,58,119,.22);
      background: rgba(230,58,119,.08);
      color: rgba(176,27,74,.98);
      display:flex; align-items:center; justify-content:center;
      flex-shrink:0;
      font-weight:950;
    }
    .chev{
      width:34px; height:34px;
      border-radius: 14px;
      border:1px solid rgba(35,22,34,.10);
      background:#fff;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease;
      flex-shrink:0;
    }
    details.faq[open] .chev{transform: rotate(180deg)}
    .faq .answer{
      margin-top:10px;
      color: rgba(30,27,34,.78);
      line-height:1.8;
      font-size:13.6px;
    }

    /* Reviews */
    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .review-card{
      border-radius: 22px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.78);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 210px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .review-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(35,22,34,.10);
      border-color: rgba(230,58,119,.26);
    }
    .review-top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .avatar{
      width:44px; height:44px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(230,58,119,.18), rgba(122,44,255,.10));
      border:1px solid rgba(230,58,119,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: rgba(176,27,74,.98);
      flex-shrink:0;
    }
    .review-name{
      display:flex; flex-direction:column; gap:3px;
    }
    .review-name b{font-size:13.5px}
    .review-name span{font-size:12.6px; color: var(--muted)}
    .review-stars{
      color: rgba(176,27,74,.98);
      font-weight:950;
      letter-spacing:.2px;
      font-size:13px;
      white-space:nowrap;
    }
    .review-text{
      margin:0;
      color: rgba(30,27,34,.80);
      font-size:13.5px;
      line-height:1.85;
    }
    .review-footer{
      margin-top:auto;
      border-top:1px dashed rgba(35,22,34,.12);
      padding-top:10px;
      color: var(--muted);
      font-size:12.6px;
      line-height:1.6;
    }

    /* Tags cloud */
    .cloud{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .cloud a{
      border-radius: 999px;
      padding:8px 10px;
      border:1px solid rgba(35,22,34,.10);
      background: rgba(255,255,255,.66);
      color: rgba(30,27,34,.80);
      font-weight:800;
      font-size:12.5px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .cloud a:hover{
      transform: translateY(-1px);
      border-color: rgba(230,58,119,.26);
      background: rgba(230,58,119,.06);
    }

    /* Footer */
    footer{
      background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,247,250,.85) 16%, rgba(255,247,250,.98) 100%);
      border-top:1px solid rgba(35,22,34,.08);
      padding:18px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      gap:14px;
      align-items:start;
    }
    .foot-card{
      border-radius: 24px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.80);
      padding:14px;
    }
    .foot-card h3{
      margin:0 0 10px;
      font-size:15.5px;
      letter-spacing:.2px;
    }
    .foot-card p, .foot-card a{
      color: rgba(30,27,34,.78);
      font-size:13.5px;
      line-height:1.8;
    }
    .foot-links{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .foot-links a{
      padding:10px 12px;
      border-radius: 16px;
      border:1px solid rgba(35,22,34,.08);
      background: rgba(255,255,255,.70);
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
      font-weight:900;
      color: rgba(176,27,74,.98);
    }
    .foot-links a:hover{
      transform: translateY(-2px);
      border-color: rgba(230,58,119,.26);
      box-shadow: 0 16px 34px rgba(35,22,34,.10);
    }
    .copyright{
      margin-top:12px;
      color: var(--muted);
      font-size:12.6px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }

    /* Float */
    .floatbar{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .floatbar a, .floatbar button{
      pointer-events:auto;
    }
    .float-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 12px;
      border-radius: 18px;
      border:1px solid rgba(35,22,34,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 44px rgba(35,22,34,.12);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      font-weight:950;
      color: rgba(30,27,34,.92);
      font-size:13px;
      max-width: 170px;
    }
    .float-btn:hover{transform: translateY(-2px); border-color: rgba(230,58,119,.28)}
    .float-btn .badgeDot{
      width:10px; height:10px; border-radius:3px;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
      box-shadow: 0 0 0 4px rgba(230,58,119,.16);
    }
    .float-qr{
      width:56px; height:56px;
      border-radius: 20px;
      border:1px solid rgba(230,58,119,.22);
      background: rgba(230,58,119,.08);
      padding:6px;
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      cursor:pointer;
    }
    .float-qr img{
      width:100%; height:100%;
      object-fit:cover;
      border-radius: 14px;
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero h1{font-size:30px}
      .metrics{grid-template-columns: 1fr 1fr}
      .cards-3{grid-template-columns: 1fr 1fr}
      .flow{grid-template-columns: 1fr 1fr}
      .token-grid{grid-template-columns: 1fr 1fr}
      .timeline{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr 1fr}
      .reviews{grid-template-columns: 1fr 1fr}
      .list-grid{grid-template-columns: 1fr}
      .about-grid{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .compare-table{min-width: 680px}
      .form-grid{grid-template-columns: 1fr}
      .nav-links{display:none}
      .burger{display:inline-block}
      .mobile-panel{display:block}
    }
    @media (max-width: 560px){
      .hero-left{padding:16px}
      .hero-right{padding:14px}
      .cards-3{grid-template-columns: 1fr}
      .flow{grid-template-columns: 1fr}
      .token-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .compare-table{min-width: 620px}
      .floatbar{right:10px; bottom:10px}
      .float-btn{max-width: 150px}
    }

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