:root{
      --bg0:#fbfaf8;
      --bg1:#ffffff;
      --text:#1f2937;
      --muted:#5b6777;
      --muted2:#6b7280;
      --line:rgba(15,23,42,.10);
      --card:rgba(255,255,255,.78);
      --shadow:0 18px 50px rgba(16,24,40,.10);
      --shadow2:0 10px 28px rgba(16,24,40,.12);
      --brand1:#7c3aed;
      --brand2:#22c55e;
      --brand3:#06b6d4;
      --brand4:#f59e0b;
      --brand5:#ec4899;
      --cta:#0f172a;
      --cta2:#0b1220;
      --ok:#16a34a;
      --warn:#d97706;
      --danger:#ef4444;
      --radius:18px;
      --radius2:26px;
      --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 Neue", Arial, "Noto Sans", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 15% -10%, rgba(124,58,237,.18), transparent 55%),
        radial-gradient(900px 540px at 75% 0%, rgba(34,197,94,.16), transparent 55%),
        radial-gradient(800px 520px at 55% 25%, rgba(6,182,212,.12), transparent 55%),
        linear-gradient(180deg, #fdfbf7 0%, #fbfaf8 40%, #f6f7fb 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(251,250,248,.68);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .topbar-inner{
      height:66px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:240px;
    }
    .brand .logo-wrap{
      width:40px; height:40px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,197,94,.18));
      border:1px solid rgba(15,23,42,.10);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand img{width:36px; height:36px; object-fit:contain; display:block}
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .brand-text strong{font-size:14px; letter-spacing:.2px}
    .brand .brand-text span{font-size:12px; color:var(--muted)}
    .nav{
      display:flex; align-items:center; gap:16px; flex-wrap:nowrap;
    }
    .nav a{
      font-size:13px;
      color:rgba(31,41,55,.85);
      padding:10px 8px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background:rgba(124,58,237,.06);
      border-color:rgba(124,58,237,.20);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
      min-width:240px;
      justify-content:flex-end;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.65);
      color:var(--cta);
      font-weight:650;
      font-size:13px;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(15,23,42,.10);
      border-color: rgba(124,58,237,.22);
      background: rgba(255,255,255,.85);
    }
    .btn:active{transform: translateY(0px)}
    .btn-primary{
      background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(236,72,153,.92));
      border-color: rgba(124,58,237,.25);
      color:#fff;
      box-shadow: 0 18px 46px rgba(124,58,237,.22);
    }
    .btn-primary:hover{
      box-shadow: 0 22px 55px rgba(124,58,237,.26);
      border-color: rgba(236,72,153,.28);
      background: linear-gradient(135deg, rgba(124,58,237,1), rgba(236,72,153,1));
    }
    .btn-ghost{
      background: rgba(255,255,255,.5);
    }
    .icon-dot{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2) 35%), linear-gradient(135deg, var(--brand2), var(--brand1));
      box-shadow: 0 0 0 4px rgba(34,197,94,.10);
      flex:0 0 auto;
    }

    .hamburger{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.65);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .2s ease, background .2s ease;
      flex:0 0 auto;
    }
    .hamburger:hover{transform: translateY(-1px); background: rgba(255,255,255,.85)}
    .hamburger .bars{
      width:18px; height:12px; position:relative;
    }
    .hamburger .bars span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px; background: rgba(31,41,55,.85);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger .bars span:nth-child(1){top:0}
    .hamburger .bars span:nth-child(2){top:5px}
    .hamburger .bars span:nth-child(3){top:10px}
    .hamburger[aria-expanded="true"] .bars span:nth-child(1){top:5px; transform: rotate(45deg)}
    .hamburger[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
    .hamburger[aria-expanded="true"] .bars span:nth-child(3){top:5px; transform: rotate(-45deg)}

    .mobile-drawer{
      display:none;
      border-top:1px solid rgba(15,23,42,.08);
      background: rgba(251,250,248,.92);
    }
    .mobile-drawer .inner{
      padding:12px 18px 18px;
      display:flex; flex-direction:column; gap:10px;
    }
    .mobile-drawer a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.65);
      font-weight:650;
      font-size:14px;
    }
    .mobile-drawer a:active{transform: translateY(1px)}

    main{padding-bottom:18px}
    .hero{
      padding:26px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      position:relative;
      overflow:hidden;
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(900px 360px at 10% 10%, rgba(124,58,237,.26), transparent 55%),
        radial-gradient(800px 340px at 65% 0%, rgba(34,197,94,.20), transparent 58%),
        radial-gradient(900px 380px at 40% 35%, rgba(6,182,212,.14), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.60));
      box-shadow: var(--shadow);
      padding:22px 20px 18px;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        conic-gradient(from 220deg, rgba(124,58,237,.16), rgba(34,197,94,.18), rgba(6,182,212,.16), rgba(236,72,153,.16));
      filter: blur(22px);
      opacity:.55;
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      display:flex;
      flex-direction:column;
      gap:14px;
      padding:4px 0 0;
    }
    .pill-row{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      color:rgba(31,41,55,.88);
      font-size:12px;
      font-weight:650;
    }
    .pill svg{opacity:.95}
    .hero h1{
      margin:0;
      font-size:30px;
      letter-spacing:-.4px;
      line-height:1.2;
    }
    .hero-sub{
      margin:0;
      color:var(--muted);
      font-size:14.5px;
      line-height:1.7;
      max-width:62ch;
    }
    .hero-cta{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:12px;
      margin-top:2px;
    }
    .mini-trust{
      display:flex; gap:14px; flex-wrap:wrap; align-items:center;
      margin-top:8px;
    }
    .mini-trust .item{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.58);
      border-radius:16px;
      min-width:160px;
    }
    .mini-trust .badge{
      width:34px; height:34px;
      border-radius:12px;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,197,94,.18));
      border:1px solid rgba(15,23,42,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .mini-trust strong{font-size:13px}
    .mini-trust span{display:block; font-size:12px; color:var(--muted); margin-top:2px}

    .hero-side{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 40px rgba(16,24,40,.08);
      padding:16px 16px 14px;
      overflow:hidden;
      position:relative;
    }
    .hero-side:after{
      content:"";
      position:absolute;
      right:-120px; top:-120px;
      width:260px; height:260px;
      background: radial-gradient(circle at 30% 30%, rgba(236,72,153,.22), rgba(124,58,237,.10), transparent 60%);
      transform: rotate(12deg);
      pointer-events:none;
    }
    .side-head{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .side-title{
      display:flex; flex-direction:column;
    }
    .side-title strong{font-size:14px}
    .side-title span{font-size:12.5px; color:var(--muted); margin-top:4px; line-height:1.45}
    .status{
      display:flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      white-space:nowrap;
      font-size:12px;
      font-weight:700;
      color:rgba(31,41,55,.88);
    }
    .pulse{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand2), var(--brand3));
      box-shadow: 0 0 0 0 rgba(34,197,94,.25);
      animation: pulse 1.7s infinite;
    }
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(34,197,94,.26)}
      70%{box-shadow:0 0 0 10px rgba(34,197,94,0)}
      100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
    }

    .metric-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:6px;
    }
    .metric{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px 12px 10px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      transform: translateZ(0);
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(16,24,40,.12);
      border-color: rgba(124,58,237,.22);
    }
    .metric .num{
      font-size:20px;
      font-weight:900;
      letter-spacing:-.4px;
      display:flex; align-items:baseline; gap:6px;
    }
    .metric .num em{font-style:normal; font-size:12px; color:var(--muted); font-weight:800}
    .metric .lab{
      margin-top:6px;
      font-size:12.5px;
      color:var(--muted);
      line-height:1.4;
      min-height:34px;
    }

    .section{
      padding:18px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:12px;
    }
    .section-head h2{
      margin:0;
      font-size:20px;
      letter-spacing:-.2px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.6;
      max-width:66ch;
    }

    .cards-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .card{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 40px rgba(16,24,40,.06);
      padding:14px 14px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(124,58,237,.22);
    }
    .card:before{
      content:"";
      position:absolute; inset:-40px -80px auto auto;
      width:180px; height:120px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.20), transparent 60%);
      opacity:.8;
      pointer-events:none;
    }
    .card .top{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .card .kicon{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,197,94,.18));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .card h3{
      position:relative;
      margin:0;
      font-size:15px;
      letter-spacing:-.1px;
    }
    .card p{
      position:relative;
      margin:6px 0 0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.65;
      min-height:68px;
    }
    .card ul{
      position:relative;
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .tag{
      font-size:12px;
      color:rgba(31,41,55,.86);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.60);
      padding:7px 9px;
      border-radius:999px;
      font-weight:700;
      white-space:nowrap;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }

    .workflow{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(800px 300px at 10% 0%, rgba(34,197,94,.16), transparent 60%),
        radial-gradient(900px 360px at 85% 20%, rgba(124,58,237,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.54));
      box-shadow: 0 18px 55px rgba(16,24,40,.08);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:10px;
      margin-top:10px;
    }
    .step{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px 12px 10px;
      position:relative;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:132px;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(16,24,40,.12);
      border-color: rgba(34,197,94,.22);
    }
    .step .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .step .n{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(34,197,94,.18), rgba(6,182,212,.18));
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
    }
    .step h3{
      margin:0;
      font-size:14px;
      letter-spacing:-.1px;
    }
    .step p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
      min-height:56px;
    }

    .table-wrap{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(16,24,40,.07);
      overflow:hidden;
    }
    .table-toolbar{
      padding:14px 14px 12px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      background:
        radial-gradient(700px 240px at 10% 0%, rgba(236,72,153,.14), transparent 58%),
        radial-gradient(700px 240px at 85% 10%, rgba(124,58,237,.14), transparent 58%),
        rgba(255,255,255,.45);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .table-toolbar .left strong{display:block; font-size:15px}
    .table-toolbar .left span{display:block; color:var(--muted); margin-top:6px; font-size:13px; line-height:1.5}
    .score-badge{
      display:flex; align-items:center; gap:12px;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
    }
    .stars{
      display:flex; gap:3px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      background: conic-gradient(from 180deg, #ffd166, #f59e0b);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      box-shadow: 0 8px 18px rgba(245,158,11,.25);
    }
    .score-badge .right strong{font-size:16px}
    .score-badge .right span{display:block; color:var(--muted); font-size:12.5px; margin-top:2px}
    table{
      width:100%;
      border-collapse:collapse;
      font-size:13.5px;
      color:rgba(31,41,55,.92);
      background:rgba(255,255,255,.52);
    }
    thead th{
      text-align:left;
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.55);
      position:sticky;
      top:0;
      z-index:1;
    }
    tbody td{
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
    }
    tbody tr:hover td{
      background: rgba(124,58,237,.05);
    }
    .good{font-weight:900; color:#0f766e}
    .mid{font-weight:900; color:#b45309}
    .bad{font-weight:900; color:#b91c1c}
    .check{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:900;
    }
    .check i{
      width:18px; height:18px; border-radius:6px;
      background: rgba(34,197,94,.16);
      border:1px solid rgba(34,197,94,.30);
      display:inline-flex; align-items:center; justify-content:center;
      color:#0f766e;
      flex:0 0 auto;
      font-style:normal;
    }
    .x{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:900;
      color:#b91c1c;
    }
    .x i{
      width:18px; height:18px; border-radius:6px;
      background: rgba(239,68,68,.12);
      border:1px solid rgba(239,68,68,.28);
      display:inline-flex; align-items:center; justify-content:center;
      color:#b91c1c;
      flex:0 0 auto;
      font-style:normal;
    }

    .pricing-snap{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(650px 240px at 10% 0%, rgba(34,197,94,.14), transparent 58%),
        radial-gradient(700px 240px at 85% 0%, rgba(124,58,237,.14), transparent 58%),
        rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(16,24,40,.07);
      padding:16px;
      overflow:hidden;
    }
    .price-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:12px;
      align-items:start;
      margin-top:10px;
    }
    .price-note{
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      margin:0;
    }
    .price-cards{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .token-card{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px;
    }
    .token-card .row{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .token-card strong{font-size:14px}
    .token-card .sub{display:block; color:var(--muted); font-size:12.5px; margin-top:4px; line-height:1.5}
    .chip-row{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:10px;
    }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      font-weight:800;
      font-size:12.5px;
      white-space:nowrap;
    }

    .accordion{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      overflow:hidden;
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
    }
    .acc-item{
      border-top:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
    }
    .acc-item:first-child{border-top:none}
    .acc-btn{
      width:100%;
      text-align:left;
      padding:14px 14px;
      border:0;
      background: transparent;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .acc-btn strong{
      font-size:14.2px;
      line-height:1.5;
    }
    .acc-btn .meta{
      display:flex; align-items:center; gap:10px;
      color:var(--muted);
      font-weight:800;
      font-size:12.5px;
      white-space:nowrap;
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .25s ease;
    }
    .acc-item[aria-expanded="true"] .chev{transform: rotate(180deg)}
    .acc-panel{
      max-height:0;
      overflow:hidden;
      transition: max-height .3s ease;
    }
    .acc-panel-inner{
      padding:0 14px 14px;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.75;
    }

    .comments-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .comment{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      padding:14px;
      box-shadow: 0 14px 40px rgba(16,24,40,.06);
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .comment:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(6,182,212,.22);
    }
    .comment:before{
      content:"";
      position:absolute;
      left:-40px; top:-60px;
      width:140px; height:120px;
      background: radial-gradient(circle at 30% 30%, rgba(6,182,212,.18), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .comment .who{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .avatar{
      width:40px; height:40px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(6,182,212,.16), rgba(124,58,237,.16));
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(31,41,55,.88);
      flex:0 0 auto;
    }
    .comment .role{
      display:flex; flex-direction:column; line-height:1.2;
      flex:1;
      padding-top:2px;
    }
    .comment .role strong{font-size:13.5px}
    .comment .role span{font-size:12.5px; color:var(--muted); margin-top:4px}
    .comment .text{
      position:relative;
      margin:0;
      color:var(--muted);
      font-size:13.4px;
      line-height:1.75;
      min-height:96px;
    }

    .cases-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .case{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:14px;
      overflow:hidden;
      position:relative;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .case:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(236,72,153,.22);
    }
    .case .meta{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .case .meta .type{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:900;
      font-size:12.5px;
      color:rgba(31,41,55,.88);
    }
    .case .meta .type i{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand5), var(--brand1));
      box-shadow: 0 0 0 4px rgba(236,72,153,.12);
    }
    .case h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.1px;
      line-height:1.4;
      min-height:40px;
    }
    .case p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.4px;
      line-height:1.7;
      min-height:76px;
    }
    .case .acts{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
      align-items:center;
      justify-content:space-between;
    }
    .link-btn{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      font-weight:900;
      font-size:13px;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      cursor:pointer;
    }
    .link-btn:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.86);
      border-color: rgba(124,58,237,.22);
    }
    .link-btn svg{opacity:.9}

    .articles{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      overflow:hidden;
    }
    .articles .list{
      padding:10px;
      display:grid;
      grid-template-columns: 1fr;
      gap:8px;
    }
    .article{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .article:hover{
      transform: translateY(-2px);
      border-color: rgba(6,182,212,.22);
      box-shadow: 0 16px 34px rgba(16,24,40,.12);
    }
    .article .left{
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .article strong{
      font-size:14.2px;
      line-height:1.4;
      letter-spacing:-.1px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:52ch;
    }
    .article span{
      color:var(--muted);
      font-size:12.8px;
      line-height:1.4;
    }
    .article a{
      flex:0 0 auto;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.60);
      font-weight:900;
      font-size:13px;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .article a:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.88);
      border-color: rgba(124,58,237,.22);
    }

    .form-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(800px 300px at 0% 0%, rgba(124,58,237,.16), transparent 60%),
        radial-gradient(900px 320px at 95% 10%, rgba(34,197,94,.14), transparent 60%),
        rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(16,24,40,.07);
      padding:16px;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    label{
      display:block;
      font-size:12.8px;
      color:rgba(31,41,55,.86);
      font-weight:900;
      margin-bottom:8px;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.74);
      color:var(--text);
      font-size:14px;
      outline:none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    textarea{min-height:112px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(124,58,237,.35);
      box-shadow: 0 0 0 4px rgba(124,58,237,.14);
      background: rgba(255,255,255,.92);
    }
    .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.8px;
      line-height:1.5;
      max-width:62ch;
    }
    .error{
      color:#b91c1c;
      font-weight:900;
      font-size:12.6px;
      display:none;
      margin-top:10px;
    }
    .toast{
      position:fixed;
      left:50%;
      bottom:18px;
      transform: translateX(-50%);
      background: rgba(15,23,42,.92);
      color:#fff;
      padding:12px 14px;
      border-radius:16px;
      box-shadow: 0 18px 50px rgba(0,0,0,.25);
      z-index:1000;
      display:none;
      width:min(520px, calc(100vw - 28px));
      font-size:13.5px;
      line-height:1.5;
    }
    .toast.show{display:block}
    .toast strong{display:block; margin-bottom:4px}
    .toast .small{color:rgba(255,255,255,.82); font-size:12.8px}

    .timeline{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:16px;
      overflow:hidden;
    }
    .timeline .row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .tl-col{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px;
    }
    .tl-col strong{font-size:14.2px}
    .tl-list{margin-top:10px; display:flex; flex-direction:column; gap:10px}
    .tl-item{
      display:flex; gap:10px; align-items:flex-start;
    }
    .dot{
      width:14px; height:14px; border-radius:6px;
      background: linear-gradient(135deg, rgba(124,58,237,.9), rgba(34,197,94,.85));
      box-shadow: 0 0 0 4px rgba(124,58,237,.14);
      margin-top:3px;
      flex:0 0 auto;
    }
    .tl-item .t{
      flex:1;
      color:var(--muted);
      font-size:13.4px;
      line-height:1.65;
    }
    .tl-item .t b{color:rgba(31,41,55,.92)}
    .net-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:12px;
      align-items:start;
    }
    .maplike{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(900px 320px at 20% 0%, rgba(6,182,212,.14), transparent 60%),
        radial-gradient(800px 280px at 85% 20%, rgba(124,58,237,.14), transparent 60%),
        rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .maplike:before{
      content:"";
      position:absolute; inset:-60px -80px auto auto;
      width:260px; height:210px;
      background: radial-gradient(circle at 30% 30%, rgba(236,72,153,.14), transparent 60%);
      pointer-events:none;
    }
    .points{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:10px;
    }
    .point{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px;
    }
    .point .k{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .point strong{font-size:14px}
    .point span{color:var(--muted); font-size:12.8px; display:block; margin-top:6px; line-height:1.55}
    .network-list{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:16px;
    }
    .net-rows{display:flex; flex-direction:column; gap:10px; margin-top:10px}
    .net-row{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px;
    }
    .net-row .l{
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .net-row strong{font-size:14px}
    .net-row span{color:var(--muted); font-size:12.8px; line-height:1.55}
    .net-row .r{
      flex:0 0 auto;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      font-weight:900;
      font-size:12.5px;
      color:rgba(31,41,55,.88);
      white-space:nowrap;
    }

    .tagcloud{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:16px;
    }
    .cloud{
      margin-top:10px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .cloud .c{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.56));
      font-weight:900;
      font-size:13px;
      color:rgba(31,41,55,.88);
      transition: transform .2s ease, border-color .2s ease;
    }
    .cloud .c:hover{transform: translateY(-2px); border-color: rgba(6,182,212,.24)}
    .footer{
      margin-top:18px;
      background:
        radial-gradient(1000px 420px at 10% 0%, rgba(124,58,237,.20), transparent 60%),
        radial-gradient(900px 380px at 90% 0%, rgba(34,197,94,.18), transparent 60%),
        linear-gradient(180deg, rgba(15,23,42,.98), rgba(11,18,32,.98));
      color:#e5e7eb;
      border-top:1px solid rgba(255,255,255,.10);
    }
    .footer .foot-inner{
      padding:22px 0 14px;
    }
    .foot-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
      padding-bottom:14px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .foot-brand{
      display:flex; flex-direction:column; gap:10px;
      min-width:260px;
      max-width:520px;
    }
    .foot-brand .row{
      display:flex; align-items:center; gap:12px;
    }
    .foot-brand .row .logo{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
    }
    .foot-brand .row img{width:38px; height:38px; object-fit:contain}
    .foot-brand strong{font-size:15px}
    .foot-brand p{
      margin:0;
      color:rgba(229,231,235,.88);
      font-size:13.5px;
      line-height:1.7;
    }
    .foot-links{
      display:grid;
      grid-template-columns: repeat(2, minmax(160px, 1fr));
      gap:10px 14px;
      align-items:start;
      min-width:340px;
    }
    .foot-links a{
      display:inline-flex;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      color: rgba(229,231,235,.92);
      font-weight:800;
      font-size:13px;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .foot-links a:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.10);
      border-color: rgba(124,58,237,.35);
    }
    .foot-bottom{
      padding-top:14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .copy{
      color:rgba(229,231,235,.82);
      font-size:12.8px;
      line-height:1.5;
    }
    .friends{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      color:rgba(229,231,235,.82);
      font-size:12.8px;
      justify-content:flex-end;
    }
    .friends a{
      color:#fff;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      font-weight:900;
      font-size:12.5px;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .friends a:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.10);
      border-color: rgba(34,197,94,.38);
    }

    .float-cs{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:100;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .cs-btn{
      display:flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(220px 90px at 10% 0%, rgba(124,58,237,.20), transparent 60%),
        radial-gradient(220px 90px at 85% 10%, rgba(34,197,94,.16), transparent 60%),
        rgba(255,255,255,.85);
      box-shadow: 0 18px 55px rgba(16,24,40,.18);
      cursor:pointer;
      transition: transform .2s ease;
      user-select:none;
      max-width:240px;
    }
    .cs-btn:hover{transform: translateY(-2px)}
    .cs-btn .ic{
      width:42px; height:42px; border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .cs-btn strong{display:block; font-size:13.5px}
    .cs-btn span{display:block; font-size:12.5px; color:var(--muted); margin-top:4px; line-height:1.35}
    .cs-panel{
      display:none;
      width:min(340px, calc(100vw - 32px));
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 55px rgba(16,24,40,.22);
      overflow:hidden;
    }
    .cs-panel.show{display:block}
    .cs-panel .head{
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      background:
        radial-gradient(420px 140px at 10% 0%, rgba(124,58,237,.18), transparent 60%),
        radial-gradient(420px 140px at 90% 0%, rgba(34,197,94,.14), transparent 60%),
        rgba(255,255,255,.72);
    }
    .cs-panel .head strong{font-size:14px}
    .cs-panel .head button{
      width:38px; height:38px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      cursor:pointer;
      transition: transform .2s ease, background .2s ease;
    }
    .cs-panel .head button:hover{transform: translateY(-1px); background: rgba(255,255,255,.92)}
    .cs-panel .body{
      padding:12px 14px 14px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .cs-panel .qrcode{
      width:110px; height:110px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      overflow:hidden;
      background: rgba(255,255,255,.70);
      flex:0 0 auto;
      display:flex; align-items:center; justify-content:center;
    }
    .cs-panel img{
      width:100%; height:100%;
      object-fit:contain;
      display:block;
    }
    .cs-panel .info{
      flex:1;
      min-width:0;
      color:var(--muted);
      font-size:13.4px;
      line-height:1.65;
    }
    .cs-panel .actions{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:10px;
    }

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

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

    .divider{
      margin:16px 0 6px;
      height:1px;
      background: linear-gradient(90deg, transparent, rgba(15,23,42,.10), transparent);
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .nav{display:none}
      .hamburger{display:flex}
      .mobile-drawer{display:block}
      .cards-grid{grid-template-columns: 1fr 1fr}
      .steps{grid-template-columns: 1fr 1fr}
      .comments-grid{grid-template-columns: 1fr 1fr}
      .cases-grid{grid-template-columns: 1fr 1fr}
      .two-col{grid-template-columns: 1fr}
      .price-grid{grid-template-columns: 1fr}
      .timeline .row{grid-template-columns: 1fr}
      .net-grid{grid-template-columns: 1fr}
      .foot-links{grid-template-columns: 1fr 1fr}
    }
    @media (max-width: 640px){
      .topbar-inner{height:62px}
      .brand{min-width:auto}
      .brand .brand-text span{display:none}
      .cards-grid{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr}
      .comments-grid{grid-template-columns: 1fr}
      .cases-grid{grid-template-columns: 1fr}
      .metric-grid{grid-template-columns: 1fr 1fr}
      .form-grid{grid-template-columns: 1fr}
      .foot-links{grid-template-columns: 1fr}
      .friends{justify-content:flex-start}
      .hero h1{font-size:26px}
    }

    @media (prefers-reduced-motion: reduce){
      *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important}
      .reveal{opacity:1; transform:none}
    }